Compare commits

...

9 Commits

Author SHA1 Message Date
陈精华
8b33a233dd !15 2.2.1版
Merge pull request !15 from 陈精华/master
2020-08-11 17:49:37 +08:00
陈精华
9e2962bb62 2.2.1版 2020-08-11 10:42:25 +08:00
陈精华
fc73deb3fd 修复上传到demo中的压缩文件及pdf预览异常 2020-08-11 10:42:01 +08:00
陈精华
40ac4b1eb9 !14 2.2.1迭代
Merge pull request !14 from 陈精华/master
2020-06-09 16:42:56 +08:00
陈精华
3d6da5f5a0 预览接口同时支持get和post请求,重新提交gitignore影响的目录文件 2020-06-09 16:35:11 +08:00
陈精华
7c4fc42247 2.2.1迭代,docker镜像底层使用ubuntu 2020-06-09 16:22:00 +08:00
陈精华
0c2a92080e !13 【开源贡献活动】修复电子发票预览图片方式正常pdf预览出现文字缺失异常 #I1I5SZ
Merge pull request !13 from 点蚊子熏烟/master
2020-06-08 14:07:36 +08:00
chenheng
b1fd13bcbb 【开源贡献活动】解决maven打包导致pdf.js bcmap异常问题,升级pdf.js到最新版本2.4.567 2020-06-05 16:34:59 +08:00
lidan
cd37ff4b41 支持 SimText 原样格式输出 2020-06-01 10:22:42 +08:00
143 changed files with 89030 additions and 57962 deletions

19
.gitignore vendored
View File

@@ -24,19 +24,8 @@ nbdist/
.nb-gradle/ .nb-gradle/
/*.iml /*.iml
**/target/ ### VS Code ###
.classpath .vscode/
.project
**/.settings
**/build/
**/.externalToolBuilders/
*.iml
**/.idea/
**/disconf
**/rpc.properties
/producer/tmp
/.temfile
.temfile
convertedFile/
jodconverter-web/src/main/cache/ jodconverter-web/src/main/cache/
jodconverter-web/src/main/file/ jodconverter-web/src/main/file/

View File

@@ -1,38 +1,29 @@
FROM centos:centos7.6.1810 FROM ubuntu:20.04
MAINTAINER chenjh "842761733@qq.com" MAINTAINER chenjh "842761733@qq.com"
ADD jodconverter-web/target/kkFileView-*.tar.gz /opt/ ADD jodconverter-web/target/kkFileView-*.tar.gz /opt/
COPY fonts/* /usr/share/fonts/chienes/ COPY fonts/* /usr/share/fonts/chienes/
RUN mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup &&\ RUN echo "deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse" > /etc/apt/sources.list &&\
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo &&\ apt-get clean && apt-get update &&\
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo &&\ apt-get install -y locales && apt-get install -y language-pack-zh-hans &&\
yum makecache &&\ localedef -i zh_CN -c -f UTF-8 -A /usr/share/locale/locale.alias zh_CN.UTF-8 && locale-gen zh_CN.UTF-8 &&\
yum install -y kde-l10n-Chinese &&\ apt-get install -y tzdata && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime &&\
yum install -y glibc-common &&\ apt-get install -y libxrender1 && apt-get install -y libxt6 && apt-get install -y libxext-dev && apt-get install -y libfreetype6-dev &&\
yum install -y fontconfig &&\ apt-get install -y wget && apt-get install -y ttf-mscorefonts-installer && apt-get install -y fontconfig &&\
yum install -y mkfontscale &&\ cd /tmp &&\
localedef -c -f UTF-8 -i zh_CN zh_CN.utf8 &&\ wget https://kkfileview.keking.cn/server-jre-8u251-linux-x64.tar.gz &&\
echo "LANG=zh_CN.UTF-8" > /etc/locale.conf &&\ wget https://kkfileview.keking.cn/Apache_OpenOffice_4.1.6_Linux_x86-64_install-deb_zh-CN.tar.gz -cO openoffice_deb.tar.gz &&\
source /etc/locale.conf &&\ tar -zxf /tmp/server-jre-8u251-linux-x64.tar.gz && mv /tmp/jdk1.8.0_251 /usr/local/ &&\
export LANG=zh_CN.UTF-8 &&\ tar -zxf /tmp/openoffice_deb.tar.gz && cd /tmp/zh-CN/DEBS &&\
LANG="zh_CN.UTF-8" &&\ dpkg -i *.deb && dpkg -i desktop-integration/openoffice4.1-debian-menus_4.1.6-9790_all.deb &&\
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime &&\ rm -rf /tmp/* && rm -rf /var/lib/apt/lists/* &&\
yum install -y java-1.8.0-openjdk.x86_64 &&\
yum install -y wget &&\
yum install -y libXext.x86_64 &&\
yum groupinstall -y "X Window System" &&\
cd /tmp &&\
wget https://kkfileview.keking.cn/Apache_OpenOffice_4.1.6_Linux_x86-64_install-rpm_zh-CN.tar.gz -cO openoffice_rpm.tar.gz &&\
tar zxf /tmp/openoffice_rpm.tar.gz &&\
cd /tmp/zh-CN/RPMS &&\
rpm -Uvih *.rpm &&\
rpm -Uvih desktop-integration/openoffice4.1.6-redhat-menus-4.1.6-9790.noarch.rpm &&\
rm -f /tmp/openoffice_rpm.tar.gz &&\
rm -rf /tmp/zh-CN &&\
cd /usr/share/fonts/chienes &&\ cd /usr/share/fonts/chienes &&\
mkfontscale &&\ mkfontscale &&\
mkfontdir &&\ mkfontdir &&\
fc-cache -fv fc-cache -fv
ENV JAVA_HOME /usr/local/jdk1.8.0_251
ENV CLASSPATH $JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
ENV PATH $PATH:$JAVA_HOME/bin
ENV LANG zh_CN.UTF-8 ENV LANG zh_CN.UTF-8
ENV LC_ALL zh_CN.UTF-8 ENV LC_ALL zh_CN.UTF-8
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-2.2.0/bin ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-2.2.1/bin
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider","-Dspring.config.location=/opt/kkFileView-2.2.0/config/application.properties","-jar","/opt/kkFileView-2.2.0/bin/kkFileView-2.2.0.jar"] ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider","-Dspring.config.location=/opt/kkFileView-2.2.1/config/application.properties","-jar","/opt/kkFileView-2.2.1/bin/kkFileView-2.2.1.jar"]

View File

@@ -12,7 +12,7 @@
<groupId>cn.keking</groupId> <groupId>cn.keking</groupId>
<artifactId>kkFileView</artifactId> <artifactId>kkFileView</artifactId>
<version>2.2.0</version> <version>2.2.1</version>
<properties> <properties>
@@ -200,13 +200,14 @@
<includes> <includes>
<include>**/*</include> <include>**/*</include>
</includes> </includes>
<filtering>true</filtering> <filtering>false</filtering>
</resource> </resource>
<resource> <resource>
<directory>src/main/config</directory> <directory>src/main/config</directory>
<excludes> <excludes>
<exclude>${build.exclude.resource}</exclude> <exclude>${build.exclude.resource}</exclude>
</excludes> </excludes>
<filtering>true</filtering>
</resource> </resource>
</resources> </resources>
<plugins> <plugins>

View File

@@ -19,6 +19,10 @@ install_ubuntu() {
wget https://kkfileview.keking.cn/Apache_OpenOffice_4.1.6_Linux_x86-64_install-deb_zh-CN.tar.gz -cO openoffice_deb.tar.gz && tar zxf /tmp/openoffice_deb.tar.gz && cd /tmp/zh-CN/DEBS wget https://kkfileview.keking.cn/Apache_OpenOffice_4.1.6_Linux_x86-64_install-deb_zh-CN.tar.gz -cO openoffice_deb.tar.gz && tar zxf /tmp/openoffice_deb.tar.gz && cd /tmp/zh-CN/DEBS
echo $? echo $?
if [ $? -eq 0 ];then if [ $? -eq 0 ];then
apt-get install -y libxrender1
apt-get install -y libxt6
apt-get install -y libxext-dev
apt-get install -y libfreetype6-dev
dpkg -i *.deb dpkg -i *.deb
echo 'install desktop service ...' echo 'install desktop service ...'
dpkg -i desktop-integration/openoffice4.1-debian-menus_4.1.6-9790_all.deb dpkg -i desktop-integration/openoffice4.1-debian-menus_4.1.6-9790_all.deb

View File

@@ -6,4 +6,4 @@ echo Starting kkFileView...
echo Please check log file in ../log/kkFileView.log for more information echo Please check log file in ../log/kkFileView.log for more information
echo You can get help in our official homesite: https://kkFileView.keking.cn echo You can get help in our official homesite: https://kkFileView.keking.cn
echo If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers echo If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers
java -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=..\config\application.properties -jar kkFileView-2.2.0.jar -> ..\log\kkFileView.log java -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=..\config\application.properties -jar kkFileView-2.2.1.jar -> ..\log\kkFileView.log

View File

@@ -29,4 +29,4 @@ echo "Starting kkFileView..."
echo "Please execute ./showlog.sh to check log for more information" echo "Please execute ./showlog.sh to check log for more information"
echo "You can get help in our official homesite: https://kkFileView.keking.cn" echo "You can get help in our official homesite: https://kkFileView.keking.cn"
echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers" echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers"
nohup java -Dfile.encoding=UTF-8 -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=../config/application.properties -jar kkFileView-2.2.0.jar > ../log/kkFileView.log 2>&1 & nohup java -Dfile.encoding=UTF-8 -Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider -Dspring.config.location=../config/application.properties -jar kkFileView-2.2.1.jar > ../log/kkFileView.log 2>&1 &

View File

@@ -56,9 +56,10 @@ public class DownloadUtils {
} }
try { try {
URL url = new URL(urlStr); URL url = new URL(urlStr);
OutputStream os = new FileOutputStream(new File(realPath));
if (url.getProtocol() != null && url.getProtocol().toLowerCase().startsWith("http")) { if (url.getProtocol() != null && url.getProtocol().toLowerCase().startsWith("http")) {
saveToOutputStreamFromUrl(urlStr, os); byte[] bytes = getBytesFromUrl(urlStr);
OutputStream os = new FileOutputStream(new File(realPath));
saveBytesToOutStream(bytes, os);
} else if (url.getProtocol() != null && "ftp".equals(url.getProtocol().toLowerCase())) { } else if (url.getProtocol() != null && "ftp".equals(url.getProtocol().toLowerCase())) {
String ftpUsername = fileUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_USERNAME); String ftpUsername = fileUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_USERNAME);
String ftpPassword = fileUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_PASSWORD); String ftpPassword = fileUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_PASSWORD);
@@ -88,21 +89,24 @@ public class DownloadUtils {
} }
} }
public boolean saveToOutputStreamFromUrl(String urlStr, OutputStream os) throws IOException { public byte[] getBytesFromUrl(String urlStr) throws IOException {
InputStream is = getInputStreamFromUrl(urlStr); InputStream is = getInputStreamFromUrl(urlStr);
if (is != null) { if (is != null) {
copyStream(is, os); return getBytesFromStream(is);
} else { } else {
urlStr = URLUtil.normalize(urlStr, true, true); urlStr = URLUtil.normalize(urlStr, true, true);
is = getInputStreamFromUrl(urlStr); is = getInputStreamFromUrl(urlStr);
if (is != null) { if (is == null) {
copyStream(is, os); logger.error("文件下载异常url{}", urlStr);
} else { throw new IOException("文件下载异常url" + urlStr);
os.close();
return false;
} }
return getBytesFromStream(is);
} }
return true; }
public void saveBytesToOutStream(byte[] b, OutputStream os) throws IOException {
os.write(b);
os.close();
} }
private InputStream getInputStreamFromUrl(String urlStr) { private InputStream getInputStreamFromUrl(String urlStr) {
@@ -119,14 +123,17 @@ public class DownloadUtils {
} }
} }
private void copyStream(InputStream is, OutputStream os) throws IOException { private byte[] getBytesFromStream(InputStream is) throws IOException {
byte[] bs = new byte[1024]; ByteArrayOutputStream baos = new ByteArrayOutputStream();
int len; byte[] buffer = new byte[1024];
while (-1 != (len = is.read(bs))) { int len = 0;
os.write(bs, 0, len); while ((len = is.read(buffer)) != -1) {
baos.write(buffer, 0, len);
} }
byte[] b = baos.toByteArray();
is.close(); is.close();
os.close(); baos.close();
return b;
} }
/** /**

View File

@@ -12,7 +12,6 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.ui.Model; import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
@@ -20,6 +19,7 @@ import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import java.io.*; import java.io.*;
import java.net.URLDecoder;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
@@ -50,7 +50,7 @@ public class OnlinePreviewController {
} }
@RequestMapping(value = "/onlinePreview", method = RequestMethod.GET) @RequestMapping(value = "/onlinePreview")
public String onlinePreview(String url, Model model, HttpServletRequest req) { public String onlinePreview(String url, Model model, HttpServletRequest req) {
FileAttribute fileAttribute = fileUtils.getFileAttribute(url); FileAttribute fileAttribute = fileUtils.getFileAttribute(url);
req.setAttribute("fileKey", req.getParameter("fileKey")); req.setAttribute("fileKey", req.getParameter("fileKey"));
@@ -61,18 +61,22 @@ public class OnlinePreviewController {
return filePreview.filePreviewHandle(url, model, fileAttribute); return filePreview.filePreviewHandle(url, model, fileAttribute);
} }
@RequestMapping(value = "picturesPreview")
@RequestMapping(value = "/picturesPreview") public String picturesPreview(Model model, HttpServletRequest req) throws UnsupportedEncodingException {
public String picturesPreview(Model model, HttpServletRequest req) {
String urls = req.getParameter("urls"); String urls = req.getParameter("urls");
String currentUrl = req.getParameter("currentUrl"); String currentUrl = req.getParameter("currentUrl");
logger.info("预览文件url{}urls{}", currentUrl, urls); logger.info("预览文件url{}urls{}", currentUrl, urls);
String[] imgs = urls.split("\\|"); // 路径转码
List<String> imgurls = Arrays.asList(imgs); String decodedUrl = URLDecoder.decode(urls, "utf-8");
String decodedCurrentUrl = URLDecoder.decode(currentUrl, "utf-8");
// 抽取文件并返回文件列表
String[] imgs = decodedUrl.split("\\|");
List imgurls = Arrays.asList(imgs);
model.addAttribute("imgurls", imgurls); model.addAttribute("imgurls", imgurls);
model.addAttribute("currentUrl", currentUrl); model.addAttribute("currentUrl",decodedCurrentUrl);
return "picture"; return "picture";
} }
/** /**
* 根据url获取文件内容 * 根据url获取文件内容
* 当pdfjs读取存在跨域问题的文件时将通过此接口读取 * 当pdfjs读取存在跨域问题的文件时将通过此接口读取
@@ -84,7 +88,8 @@ public class OnlinePreviewController {
public void getCorsFile(String urlPath, HttpServletResponse response) { public void getCorsFile(String urlPath, HttpServletResponse response) {
logger.info("下载跨域pdf文件url{}", urlPath); logger.info("下载跨域pdf文件url{}", urlPath);
try { try {
downloadUtils.saveToOutputStreamFromUrl(urlPath, response.getOutputStream()); byte[] bytes = downloadUtils.getBytesFromUrl(urlPath);
downloadUtils.saveBytesToOutStream(bytes, response.getOutputStream());
} catch (IOException e) { } catch (IOException e) {
logger.error("下载跨域pdf文件异常url{}", urlPath, e); logger.error("下载跨域pdf文件异常url{}", urlPath, e);
} }
@@ -94,7 +99,7 @@ public class OnlinePreviewController {
* 通过api接口入队 * 通过api接口入队
* @param url 请编码后在入队 * @param url 请编码后在入队
*/ */
@GetMapping("/addTask") @RequestMapping("/addTask")
@ResponseBody @ResponseBody
public String addQueueTask(String url) { public String addQueueTask(String url) {
logger.info("添加转码队列url{}", url); logger.info("添加转码队列url{}", url);

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 694 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

View File

@@ -60,7 +60,12 @@ page_rotate_ccw.title=Wire i tung lacam
page_rotate_ccw.label=Wire i tung lacam page_rotate_ccw.label=Wire i tung lacam
page_rotate_ccw_label=Wire i tung lacam page_rotate_ccw_label=Wire i tung lacam
cursor_text_select_tool.title=Cak gitic me yero coc
cursor_text_select_tool_label=Gitic me yero coc
cursor_hand_tool.title=Cak gitic me cing cursor_hand_tool.title=Cak gitic me cing
cursor_hand_tool_label=Gitic cing
# Document properties dialog box # Document properties dialog box
document_properties.title=Jami me gin acoya document_properties.title=Jami me gin acoya
@@ -86,6 +91,27 @@ document_properties_creator=Lacwec:
document_properties_producer=Layub PDF: document_properties_producer=Layub PDF:
document_properties_version=Kit PDF: document_properties_version=Kit PDF:
document_properties_page_count=Kwan me pot buk: document_properties_page_count=Kwan me pot buk:
document_properties_page_size=Dit pa potbuk:
document_properties_page_size_unit_inches=i
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=atir
document_properties_page_size_orientation_landscape=arii
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Waraga
document_properties_page_size_name_legal=Cik
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized_yes=Eyo
document_properties_linearized_no=Pe
document_properties_close=Lor document_properties_close=Lor
print_progress_message=Yubo coc me agoya print_progress_message=Yubo coc me agoya
@@ -98,7 +124,9 @@ print_progress_close=Juki
# (the _label strings are alt text for the buttons, the .title strings are # (the _label strings are alt text for the buttons, the .title strings are
# tooltips) # tooltips)
toggle_sidebar.title=Lok gintic ma inget toggle_sidebar.title=Lok gintic ma inget
toggle_sidebar_notification.title=Lok lanyut me nget (wiyewiye tye i gin acoya/attachments)
toggle_sidebar_label=Lok gintic ma inget toggle_sidebar_label=Lok gintic ma inget
document_outline.title=Nyut Wiyewiye me Gin acoya (dii-kiryo me yaro/kano jami weng)
document_outline_label=Pek pa gin acoya document_outline_label=Pek pa gin acoya
attachments.title=Nyut twec attachments.title=Nyut twec
attachments_label=Twec attachments_label=Twec

View File

@@ -1,130 +0,0 @@
# Copyright 2012 Mozilla Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=Krataafa baako a etwa mu
previous_label=Ekyiri-baako
next.title=Krataafa a edi so baako
next_label=Dea-ɛ-di-so-baako
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document.
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document.
zoom_out.title=Zuum pue
zoom_out_label=Zuum ba abɔnten
zoom_in.title=Zuum mu
zoom_in_label=Zuum mu
zoom.title=Zuum
presentation_mode.title=Sesa Yɛkyerɛ Tebea mu
presentation_mode_label=Yɛkyerɛ Tebea
open_file.title=Bue Fael
open_file_label=Bue
print.title=Prente
print_label=Prente
download.title=Twe
download_label=Twe
bookmark.title=Seisei nhwɛ (fa anaaso bue tokuro foforo mu)
bookmark_label=Seisei nhwɛ
# Secondary toolbar and context menu
# Document properties dialog box
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_title=Ti asɛm:
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
# will be replaced by the creation/modification date, and time, of the PDF file.
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value.
# Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are
# tooltips)
toggle_sidebar.title= anaaso dum saedbaa
toggle_sidebar_label= anaaso dum saedbaa
document_outline_label=Dɔkomɛnt bɔbea
thumbs.title=Kyerɛ mfoniwaa
thumbs_label=Mfoniwaa
findbar.title=Hu dɔkomɛnt no mu
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=Krataafa {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=Krataafa ne mfoniwaa {{page}}
# Find panel button title and messages
find_previous.title=San hu fres ekyiri baako
find_previous_label=Ekyiri baako
find_next.title=San hu fres no enim baako
find_next_label=Ndiso
find_highlight=Hyɛ bibiara nso
find_match_case_label=Fa susu kaase
find_reached_top=Edu krataafa ne soro, atoa so efiri ase
find_reached_bottom=Edu krataafa n'ewiei, atoa so efiri soro
find_not_found=Ennhu fres
# Error panel labels
error_more_info=Infɔmehyɛn bio a wɔka ho
error_less_info=Te infɔmehyɛn bio a wɔka ho so
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID.
error_version_info=PDF.js v{{vɛɛhyen}} (nsi: {{si}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=Nkrato: {{message}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=Staake: {{stack}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=Fael: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=Laen: {{line}}
rendering_error=Mfomso bae bere a rekyerɛ krataafa no.
# Predefined zoom values
page_scale_width=Krataafa tɛtrɛtɛ
page_scale_fit=Krataafa ehimtwa
page_scale_auto=Zuum otomatik
page_scale_actual=Kɛseyɛ ankasa
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value.
# Loading indicator messages
loading_error_indicator=Mfomso
loading_error=Mfomso bae bere a wɔreloode PDF no.
invalid_file_error=PDF fael no nndi mu anaaso ho atɔ kyima.
missing_file_error=PDF fael no ayera.
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[{{type}} Tɛkst-nyiano]
password_ok=OK
printing_not_supported=Kɔkɔbɔ: Brawsa yi nnhyɛ daa mma prent ho kwan.
printing_not_ready=Kɔkɔbɔ: Wɔnntwee PDF fael no nyinara mmbaee ama wo ɛ tumi aprente.
web_fonts_disabled=Ɔedum wɛb-mfɔnt: nntumi mmfa PDF mfɔnt a wɔhyɛ mu nndi dwuma.
document_colors_not_allowed=Wɔmma ho kwan PDF adɔkomɛnt de wɔn ara wɔn ahosu bɛdi dwuma: adum 'Ma ho kwan ma nkrataafa mpaw wɔn ara wɔn ahosu' brawsa yi mu.

View File

@@ -65,6 +65,20 @@ cursor_text_select_tool_label=أداة اختيار النص
cursor_hand_tool.title=فعّل أداة اليد cursor_hand_tool.title=فعّل أداة اليد
cursor_hand_tool_label=أداة اليد cursor_hand_tool_label=أداة اليد
scroll_vertical.title=استخدم التمرير الرأسي
scroll_vertical_label=التمرير الرأسي
scroll_horizontal.title=استخدم التمرير الأفقي
scroll_horizontal_label=التمرير الأفقي
scroll_wrapped.title=استخدم التمرير الملتف
scroll_wrapped_label=التمرير الملتف
spread_none.title=لا تدمج هوامش الصفحات مع بعضها البعض
spread_none_label=بلا هوامش
spread_odd.title=ادمج هوامش الصفحات الفردية
spread_odd_label=هوامش الصفحات الفردية
spread_even.title=ادمج هوامش الصفحات الزوجية
spread_even_label=هوامش الصفحات الزوجية
# Document properties dialog box # Document properties dialog box
document_properties.title=خصائص المستند document_properties.title=خصائص المستند
document_properties_label=خصائص المستند document_properties_label=خصائص المستند
@@ -89,6 +103,28 @@ document_properties_creator=المنشئ:
document_properties_producer=منتج PDF: document_properties_producer=منتج PDF:
document_properties_version=إصدارة PDF: document_properties_version=إصدارة PDF:
document_properties_page_count=عدد الصفحات: document_properties_page_count=عدد الصفحات:
document_properties_page_size=مقاس الورقة:
document_properties_page_size_unit_inches=بوصة
document_properties_page_size_unit_millimeters=ملم
document_properties_page_size_orientation_portrait=طوليّ
document_properties_page_size_orientation_landscape=عرضيّ
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=خطاب
document_properties_page_size_name_legal=قانونيّ
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}، {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=العرض السريع عبر الوِب:
document_properties_linearized_yes=نعم
document_properties_linearized_no=لا
document_properties_close=أغلق document_properties_close=أغلق
print_progress_message=يُحضّر المستند للطباعة print_progress_message=يُحضّر المستند للطباعة
@@ -129,8 +165,30 @@ find_next.title=ابحث عن التّواجد التّالي للعبارة
find_next_label=التالي find_next_label=التالي
find_highlight=أبرِز الكل find_highlight=أبرِز الكل
find_match_case_label=طابق حالة الأحرف find_match_case_label=طابق حالة الأحرف
find_entire_word_label=كلمات كاملة
find_reached_top=تابعت من الأسفل بعدما وصلت إلى بداية المستند find_reached_top=تابعت من الأسفل بعدما وصلت إلى بداية المستند
find_reached_bottom=تابعت من الأعلى بعدما وصلت إلى نهاية المستند find_reached_bottom=تابعت من الأعلى بعدما وصلت إلى نهاية المستند
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} من أصل مطابقة واحدة
find_match_count[two]={{current}} من أصل مطابقتين
find_match_count[few]={{current}} من أصل {{total}} مطابقات
find_match_count[many]={{current}} من أصل {{total}} مطابقة
find_match_count[other]={{current}} من أصل {{total}} مطابقة
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=فقط
find_match_count_limit[one]=أكثر من مطابقة واحدة
find_match_count_limit[two]=أكثر من مطابقتين
find_match_count_limit[few]=أكثر من {{limit}} مطابقات
find_match_count_limit[many]=أكثر من {{limit}} مطابقة
find_match_count_limit[other]=أكثر من {{limit}} مطابقة
find_not_found=لا وجود للعبارة find_not_found=لا وجود للعبارة
# Error panel labels # Error panel labels
@@ -156,7 +214,7 @@ rendering_error=حدث خطأ أثناء عرض الصفحة.
page_scale_width=عرض الصفحة page_scale_width=عرض الصفحة
page_scale_fit=ملائمة الصفحة page_scale_fit=ملائمة الصفحة
page_scale_auto=تقريب تلقائي page_scale_auto=تقريب تلقائي
page_scale_actual=الحجم الحقيقي page_scale_actual=الحجم الفعلي
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value. # numerical scale value.
page_scale_percent={{scale}}٪ page_scale_percent={{scale}}٪
@@ -168,6 +226,10 @@ invalid_file_error=ملف PDF تالف أو غير صحيح.
missing_file_error=ملف PDF غير موجود. missing_file_error=ملف PDF غير موجود.
unexpected_response_error=استجابة خادوم غير متوقعة. unexpected_response_error=استجابة خادوم غير متوقعة.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}، {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -1,167 +0,0 @@
# Copyright 2012 Mozilla Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=পূৰ্বৱৰ্ত পৃষ্ঠ
previous_label=পূৰ্বৱৰ্ত
next.title=পৰৱৰ্ত পৃষ্ঠ
next_label=পৰৱৰ্ত
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document.
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document.
zoom_out.title=জুম আউট
zoom_out_label=জুম আউট
zoom_in.title=জুম ইন
zoom_in_label=জুম ইন
zoom.title=জুম কৰক
presentation_mode.title=উপস্থপন অৱস্থ ওক
presentation_mode_label=উপস্থপন অৱস্থ
open_file.title=ইল লক
open_file_label=লক
print.title=প্ৰিন্ট কৰক
print_label=প্ৰিন্ট কৰক
download.title=উনল' কৰক
download_label=উনল' কৰক
bookmark.title=বৰ্তম দৃশ্য (কপি কৰক অথব নতুন উইন্ড লক)
bookmark_label=বৰ্তম দৃশ্য
# Secondary toolbar and context menu
tools.title=সঁজুলিসমূহ
tools_label=সঁজুলিসমূহ
first_page.title=প্ৰথম পৃষ্ঠ ওক
first_page.label=প্ৰথম পৃষ্ঠ ওক
first_page_label=প্ৰথম পৃষ্ঠ ওক
last_page.title=সৰ্বশ পৃষ্ঠ ওক
last_page.label=সৰ্বশ পৃষ্ঠ ওক
last_page_label=সৰ্বশ পৃষ্ঠ ওক
page_rotate_cw.title=ঘড় িশত ঘুৰওক
page_rotate_cw.label=ঘড় িশত ঘুৰওক
page_rotate_cw_label=ঘড় িশত ঘুৰওক
page_rotate_ccw.title=ঘড় ওল িশত ঘুৰওক
page_rotate_ccw.label=ঘড় ওল িশত ঘুৰওক
page_rotate_ccw_label=ঘড় ওল িশত ঘুৰওক
# Document properties dialog box
document_properties.title=দস্তজৰ িষ্ট্যসমূহ
document_properties_label=দস্তজৰ িষ্ট্যসমূহ
document_properties_file_name=ইল :
document_properties_file_size=ইলৰ আক:
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
document_properties_kb={{size_kb}} KB ({{size_b}} bytes)
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_mb={{size_mb}} MB ({{size_b}} bytes)
document_properties_title=ৰ্ষক:
document_properties_author=খক:
document_properties_subject=িষয়:
document_properties_keywords=িৰ্ডসমূহ:
document_properties_creation_date=সৃষ্টি ি:
document_properties_modification_date=পৰিবৰ্তনৰ ি:
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
# will be replaced by the creation/modification date, and time, of the PDF file.
document_properties_date_string={{date}}, {{time}}
document_properties_creator=সৃষ্টিকৰ্ত:
document_properties_producer=PDF উৎপদক:
document_properties_version=PDF স্কৰণ:
document_properties_page_count=পৃষ্ঠ গণন:
document_properties_close=বন্ধ কৰক
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value.
# Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are
# tooltips)
toggle_sidebar.title=ষব টগল কৰক
toggle_sidebar_label=ষব টগল কৰক
document_outline_label=দস্ত আউটলইন
attachments.title=এটচমন্টসমূহ খুৱওক
attachments_label=এটচমন্টসমূহ
thumbs.title=ম্বনইলসমূহ খুৱওক
thumbs_label=ম্বনইলসমূহ
findbar.title=দস্তজত সন্ধ কৰক
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=পৃষ্ঠ {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=পৃষ্ঠ ম্বনইল {{page}}
# Find panel button title and messages
find_previous.title=ক্যশৰ পূৰ্বৱৰ্ত উপস্থিি সন্ধ কৰক
find_previous_label=পূৰ্বৱৰ্ত
find_next.title=ক্যশৰ পৰৱৰ্ত উপস্থিি সন্ধ কৰক
find_next_label=পৰৱৰ্ত
find_highlight=সকল উজ্জ্বল কৰক
find_match_case_label=ফল িওক
find_reached_top=তলৰ পৰ আৰম্ভ কৰি, দস্তজৰ ওপৰল অহ
find_reached_bottom=ওপৰৰ পৰ আৰম্ভ কৰি, দস্তজৰ তলল অহ
find_not_found=ক্য নগল
# Error panel labels
error_more_info=অধি তথ্য
error_less_info=কম তথ্য
error_close=বন্ধ কৰক
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID.
error_version_info=PDF.js v{{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=ৰ্ত: {{message}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=স্ট: {{stack}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=ইল: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=: {{line}}
rendering_error=এই পৃষ্ঠ ণ্ড কৰ এট ত্ৰুটি ি
# Predefined zoom values
page_scale_width=পৃষ্ঠ প্ৰস্থ
page_scale_fit=পৃষ্ঠ
page_scale_auto=স্বচি জুম
page_scale_actual=প্ৰকৃত আক
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value.
# Loading indicator messages
loading_error_indicator=ত্ৰুটি
loading_error=PDF ' কৰ এট ত্ৰুটি ি
invalid_file_error=অব অথব ক্ষতিগ্ৰস্থ PDF file
missing_file_error=সন্ধনহি PDF ইল
unexpected_response_error=অপ্ৰত্যি ৰ্ভ প্ৰতিক্ৰি
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[{{type}} ]
password_label=এই PDF ইল িবল ছৱৰ্ড সুমুৱওক
password_invalid=অব ছৱৰ্ড অনুগ্ৰহ কৰি পুনৰ ষ্ট কৰক
password_ok=ি আছ
printing_not_supported=সতৰ্কবৰ্ত: প্ৰিন্টি এই ব্ৰউছ দ্ব সম্পূৰ্ণভ সমৰ্থি নহয়
printing_not_ready=সতৰ্কবৰ্ত: PDF প্ৰিন্টি সম্পূৰ্ণভ ' নহয়
web_fonts_disabled= ফন্টসমূহ অসমৰ্থব কৰ আছ: অন্তৰ্ভুক্ত PDF ফন্টসমূহ ব্যৱহ কৰিবল অক্ষম
document_colors_not_allowed=PDF দস্তজসমূহৰ িহতৰ িজস্ব ৰঙ ব্যৱহ কৰ অনুমতি : ব্ৰউছৰত 'পৃষ্ঠসমূহক িহতৰ িজস্ব ৰঙ িৰ্বচন কৰ অনুমতি িয়ক' অসমৰ্থব কৰ আছ

View File

@@ -33,8 +33,6 @@ zoom_out_label=Reducir
zoom_in.title=Aumentar zoom_in.title=Aumentar
zoom_in_label=Aumentar zoom_in_label=Aumentar
zoom.title=Tamañu zoom.title=Tamañu
presentation_mode.title=
presentation_mode_label=
open_file.title=Abrir ficheru open_file.title=Abrir ficheru
open_file_label=Abrir open_file_label=Abrir
print.title=Imprentar print.title=Imprentar
@@ -54,13 +52,15 @@ last_page.title=Dir a la postrer páxina
last_page.label=Dir a la cabera páxina last_page.label=Dir a la cabera páxina
last_page_label=Dir a la postrer páxina last_page_label=Dir a la postrer páxina
page_rotate_cw.title=Xirar en sen horariu page_rotate_cw.title=Xirar en sen horariu
page_rotate_cw.label=
page_rotate_cw_label=Xirar en sen horariu page_rotate_cw_label=Xirar en sen horariu
page_rotate_ccw.title=Xirar en sen antihorariu page_rotate_ccw.title=Xirar en sen antihorariu
page_rotate_ccw.label=
page_rotate_ccw_label=Xirar en sen antihorariu page_rotate_ccw_label=Xirar en sen antihorariu
scroll_vertical_label=Desplazamientu vertical
scroll_horizontal_label=Desplazamientu horizontal
# Document properties dialog box # Document properties dialog box
document_properties.title=Propiedaes del documentu document_properties.title=Propiedaes del documentu
document_properties_label=Propiedaes del documentu document_properties_label=Propiedaes del documentu
@@ -85,6 +85,22 @@ document_properties_creator=Creador:
document_properties_producer=Productor PDF: document_properties_producer=Productor PDF:
document_properties_version=Versión PDF: document_properties_version=Versión PDF:
document_properties_page_count=Númberu de páxines: document_properties_page_count=Númberu de páxines:
document_properties_page_size_unit_inches=in
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized_yes=
document_properties_linearized_no=Non
document_properties_close=Zarrar document_properties_close=Zarrar
print_progress_message=Tresnando documentu pa imprentar print_progress_message=Tresnando documentu pa imprentar
@@ -116,14 +132,25 @@ thumb_page_title=Páxina {{page}}
thumb_page_canvas=Miniatura de la páxina {{page}} thumb_page_canvas=Miniatura de la páxina {{page}}
# Find panel button title and messages # Find panel button title and messages
find_input.title=Guetar
find_input.placeholder=Guetar nel documentu
find_previous.title=Alcontrar l'anterior apaición de la fras find_previous.title=Alcontrar l'anterior apaición de la fras
find_previous_label=Anterior find_previous_label=Anterior
find_next.title=Alcontrar la siguiente apaición d'esta fras find_next.title=Alcontrar la siguiente apaición d'esta fras
find_next_label=Siguiente find_next_label=Siguiente
find_highlight=Remarcar toos find_highlight=Remarcar toos
find_match_case_label=Coincidencia de mayús./minús. find_match_case_label=Coincidencia de mayús./minús.
find_entire_word_label=Pallabres enteres
find_reached_top=Algamóse'l principiu del documentu, siguir dende'l final find_reached_top=Algamóse'l principiu del documentu, siguir dende'l final
find_reached_bottom=Algamóse'l final del documentu, siguir dende'l principiu find_reached_bottom=Algamóse'l final del documentu, siguir dende'l principiu
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_not_found=Frase non atopada find_not_found=Frase non atopada
# Error panel labels # Error panel labels
@@ -161,6 +188,9 @@ invalid_file_error=Ficheru PDF inválidu o corruptu.
missing_file_error=Nun hai ficheru PDF. missing_file_error=Nun hai ficheru PDF.
unexpected_response_error=Rempuesta inesperada del sirvidor. unexpected_response_error=Rempuesta inesperada del sirvidor.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -42,7 +42,7 @@ print_label=Yazdır
download.title=Yüklə download.title=Yüklə
download_label=Yüklə download_label=Yüklə
bookmark.title=Hazırkı görünüş (köçür ya yeni pəncərədə ) bookmark.title=Hazırkı görünüş (köçür ya yeni pəncərədə )
bookmark_label=Hazırki görünüş bookmark_label=Hazırkı görünüş
# Secondary toolbar and context menu # Secondary toolbar and context menu
tools.title=Alətlər tools.title=Alətlər
@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Yazı seçmə aləti
cursor_hand_tool.title=Əl alətini aktivləşdir cursor_hand_tool.title=Əl alətini aktivləşdir
cursor_hand_tool_label=Əl aləti cursor_hand_tool_label=Əl aləti
scroll_vertical.title=Şaquli sürüşdürmə işlət
scroll_vertical_label=Şaquli sürüşdürmə
scroll_horizontal.title=Üfüqi sürüşdürmə işlət
scroll_horizontal_label=Üfüqi sürüşdürmə
scroll_wrapped.title=Bükülü sürüşdürmə işlət
scroll_wrapped_label=Bükülü sürüşdürmə
spread_none.title=Yan-yana birləşdirilmiş səhifələri işlətmə
spread_none_label=Birləşdirmə
spread_odd.title=Yan-yana birləşdirilmiş səhifələri tək nömrəli səhifələrdən başlat
spread_odd_label=Tək nömrəli
spread_even.title=Yan-yana birləşdirilmiş səhifələri cüt nömrəli səhifələrdən başlat
spread_even_label=Cüt nömrəli
# Document properties dialog box # Document properties dialog box
document_properties.title=Sənəd xüsusiyyətləri document_properties.title=Sənəd xüsusiyyətləri
document_properties_label=Sənəd xüsusiyyətləri document_properties_label=Sənəd xüsusiyyətləri
@@ -89,6 +103,28 @@ document_properties_creator=Yaradan:
document_properties_producer=PDF yaradıcısı: document_properties_producer=PDF yaradıcısı:
document_properties_version=PDF versiyası: document_properties_version=PDF versiyası:
document_properties_page_count=Səhifə sayı: document_properties_page_count=Səhifə sayı:
document_properties_page_size=Səhifə Ölçüsü:
document_properties_page_size_unit_inches=inç
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=portret
document_properties_page_size_orientation_landscape=albom
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Məktub
document_properties_page_size_name_legal=Hüquqi
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Fast Web View:
document_properties_linearized_yes=Bəli
document_properties_linearized_no=Xeyr
document_properties_close=Qapat document_properties_close=Qapat
print_progress_message=Sənəd çap üçün hazırlanır print_progress_message=Sənəd çap üçün hazırlanır
@@ -112,6 +148,8 @@ thumbs_label=Kiçik şəkillər
findbar.title=Sənəddə Tap findbar.title=Sənəddə Tap
findbar_label=Tap findbar_label=Tap
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Səhifə {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
@@ -129,8 +167,30 @@ find_next.title=Bir sonrakı uyğun gələn sözü tapır
find_next_label=İrəli find_next_label=İrəli
find_highlight=İşarələ find_highlight=İşarələ
find_match_case_label=Böyük/kiçik hərfə həssaslıq find_match_case_label=Böyük/kiçik hərfə həssaslıq
find_entire_word_label=Tam sözlər
find_reached_top=Sənədin yuxarısına çatdı, aşağıdan davam edir find_reached_top=Sənədin yuxarısına çatdı, aşağıdan davam edir
find_reached_bottom=Sənədin sonuna çatdı, yuxarıdan davam edir find_reached_bottom=Sənədin sonuna çatdı, yuxarıdan davam edir
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} / {{total}} uyğunluq
find_match_count[two]={{current}} / {{total}} uyğunluq
find_match_count[few]={{current}} / {{total}} uyğunluq
find_match_count[many]={{current}} / {{total}} uyğunluq
find_match_count[other]={{current}} / {{total}} uyğunluq
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]={{limit}}-dan çox uyğunluq
find_match_count_limit[one]={{limit}}-dən çox uyğunluq
find_match_count_limit[two]={{limit}}-dən çox uyğunluq
find_match_count_limit[few]={{limit}} uyğunluqdan daha çox
find_match_count_limit[many]={{limit}} uyğunluqdan daha çox
find_match_count_limit[other]={{limit}} uyğunluqdan daha çox
find_not_found=Uyğunlaşma tapılmadı find_not_found=Uyğunlaşma tapılmadı
# Error panel labels # Error panel labels
@@ -156,7 +216,7 @@ rendering_error=Səhifə göstərilərkən səhv yarandı.
page_scale_width=Səhifə genişliyi page_scale_width=Səhifə genişliyi
page_scale_fit=Səhifəni sığdır page_scale_fit=Səhifəni sığdır
page_scale_auto=Avtomatik yaxınlaşdır page_scale_auto=Avtomatik yaxınlaşdır
page_scale_actual=Hazırki Həcm page_scale_actual=Hazırkı Həcm
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value. # numerical scale value.
page_scale_percent={{scale}}% page_scale_percent={{scale}}%
@@ -168,13 +228,17 @@ invalid_file_error=Səhv və ya zədələnmiş olmuş PDF fayl.
missing_file_error=PDF fayl yoxdur. missing_file_error=PDF fayl yoxdur.
unexpected_response_error=Gözlənilməz server cavabı. unexpected_response_error=Gözlənilməz server cavabı.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note" # Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[{{type}} Annotasiyası] text_annotation_type.alt=[{{type}} Annotasiyası]
password_label=Bu PDF faylı açmaq üçün şifrəni daxil edin. password_label=Bu PDF faylı açmaq üçün parolu daxil edin.
password_invalid=Şifrə yanlışdır. Bir daha sınayın. password_invalid=Parol səhvdir. Bir daha yoxlayın.
password_ok=Tamam password_ok=Tamam
password_cancel=Ləğv et password_cancel=Ləğv et

View File

@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Прылада выбару тэксту
cursor_hand_tool.title=Уключыць ручную прыладу cursor_hand_tool.title=Уключыць ручную прыладу
cursor_hand_tool_label=Ручная прылада cursor_hand_tool_label=Ручная прылада
scroll_vertical.title=Ужываць вертыкальную пракрутку
scroll_vertical_label=Вертыкальная пракрутка
scroll_horizontal.title=Ужываць гарызантальную пракрутку
scroll_horizontal_label=Гарызантальная пракрутка
scroll_wrapped.title=Ужываць маштабавальную пракрутку
scroll_wrapped_label=Маштабавальная пракрутка
spread_none.title=Не выкарыстоўваць разгорнутыя старонкі
spread_none_label=Без разгорнутых старонак
spread_odd.title=Разгорнутыя старонкі пачынаючы з няцотных нумароў
spread_odd_label=Няцотныя старонкі злева
spread_even.title=Разгорнутыя старонкі пачынаючы з цотных нумароў
spread_even_label=Цотныя старонкі злева
# Document properties dialog box # Document properties dialog box
document_properties.title=Уласцівасці дакумента document_properties.title=Уласцівасці дакумента
document_properties_label=Уласцівасці дакумента document_properties_label=Уласцівасці дакумента
@@ -89,6 +103,28 @@ document_properties_creator=Стваральнік:
document_properties_producer=Вырабнік PDF: document_properties_producer=Вырабнік PDF:
document_properties_version=Версія PDF: document_properties_version=Версія PDF:
document_properties_page_count=Колькасць старонак: document_properties_page_count=Колькасць старонак:
document_properties_page_size=Памер старонкі:
document_properties_page_size_unit_inches=цаляў
document_properties_page_size_unit_millimeters=мм
document_properties_page_size_orientation_portrait=кніжная
document_properties_page_size_orientation_landscape=альбомная
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Letter
document_properties_page_size_name_legal=Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Хуткі прагляд у Інтэрнэце:
document_properties_linearized_yes=Так
document_properties_linearized_no=Не
document_properties_close=Закрыць document_properties_close=Закрыць
print_progress_message=Падрыхтоўка дакумента да друку print_progress_message=Падрыхтоўка дакумента да друку
@@ -112,6 +148,8 @@ thumbs_label=Мініяцюры
findbar.title=Пошук у дакуменце findbar.title=Пошук у дакуменце
findbar_label=Знайсці findbar_label=Знайсці
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Старонка {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
@@ -129,8 +167,30 @@ find_next.title=Знайсці наступны выпадак выразу
find_next_label=Наступны find_next_label=Наступны
find_highlight=Падфарбаваць усе find_highlight=Падфарбаваць усе
find_match_case_label=Адрозніваць вялікія/малыя літары find_match_case_label=Адрозніваць вялікія/малыя літары
find_entire_word_label=Словы цалкам
find_reached_top=Дасягнуты пачатак дакумента, працяг з канца find_reached_top=Дасягнуты пачатак дакумента, працяг з канца
find_reached_bottom=Дасягнуты канец дакумента, працяг з пачатку find_reached_bottom=Дасягнуты канец дакумента, працяг з пачатку
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} з {{total}} супадзення
find_match_count[two]={{current}} з {{total}} супадзенняў
find_match_count[few]={{current}} з {{total}} супадзенняў
find_match_count[many]={{current}} з {{total}} супадзенняў
find_match_count[other]={{current}} з {{total}} супадзенняў
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Больш за {{limit}} супадзенняў
find_match_count_limit[one]=Больш за {{limit}} супадзенне
find_match_count_limit[two]=Больш за {{limit}} супадзенняў
find_match_count_limit[few]=Больш за {{limit}} супадзенняў
find_match_count_limit[many]=Больш за {{limit}} супадзенняў
find_match_count_limit[other]=Больш за {{limit}} супадзенняў
find_not_found=Выраз не знойдзены find_not_found=Выраз не знойдзены
# Error panel labels # Error panel labels
@@ -168,6 +228,10 @@ invalid_file_error=Няспраўны або пашкоджаны файл PDF.
missing_file_error=Адсутны файл PDF. missing_file_error=Адсутны файл PDF.
unexpected_response_error=Нечаканы адказ сервера. unexpected_response_error=Нечаканы адказ сервера.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -53,10 +53,10 @@ first_page_label=Към първата страница
last_page.title=Към последната страница last_page.title=Към последната страница
last_page.label=Към последната страница last_page.label=Към последната страница
last_page_label=Към последната страница last_page_label=Към последната страница
page_rotate_cw.title=Завъртане по часовниковата стрелка page_rotate_cw.title=Завъртане по час. стрелка
page_rotate_cw.label=Завъртане по часовниковата стрелка page_rotate_cw.label=Завъртане по часовниковата стрелка
page_rotate_cw_label=Завъртане по часовниковата стрелка page_rotate_cw_label=Завъртане по часовниковата стрелка
page_rotate_ccw.title=Завъртане обратно на часовниковата стрелка page_rotate_ccw.title=Завъртане обратно на час. стрелка
page_rotate_ccw.label=Завъртане обратно на часовниковата стрелка page_rotate_ccw.label=Завъртане обратно на часовниковата стрелка
page_rotate_ccw_label=Завъртане обратно на часовниковата стрелка page_rotate_ccw_label=Завъртане обратно на часовниковата стрелка
@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Инструмент за избор на текс
cursor_hand_tool.title=Включване на инструмента ръка cursor_hand_tool.title=Включване на инструмента ръка
cursor_hand_tool_label=Инструмент ръка cursor_hand_tool_label=Инструмент ръка
scroll_vertical.title=Използване на вертикално плъзгане
scroll_vertical_label=Вертикално плъзгане
scroll_horizontal.title=Използване на хоризонтално
scroll_horizontal_label=Хоризонтално плъзгане
scroll_wrapped.title=Използване на мащабируемо плъзгане
scroll_wrapped_label=Мащабируемо плъзгане
spread_none.title=Режимът на сдвояване е изключен
spread_none_label=Без сдвояване
spread_odd.title=Сдвояване, започвайки от нечетните страници
spread_odd_label=Нечетните отляво
spread_even.title=Сдвояване, започвайки от четните страници
spread_even_label=Четните отляво
# Document properties dialog box # Document properties dialog box
document_properties.title=Свойства на документа document_properties.title=Свойства на документа
document_properties_label=Свойства на документа document_properties_label=Свойства на документа
@@ -87,8 +101,30 @@ document_properties_modification_date=Дата на промяна:
document_properties_date_string={{date}}, {{time}} document_properties_date_string={{date}}, {{time}}
document_properties_creator=Създател: document_properties_creator=Създател:
document_properties_producer=PDF произведен от: document_properties_producer=PDF произведен от:
document_properties_version=PDF версия: document_properties_version=Издание на PDF:
document_properties_page_count=Брой страници: document_properties_page_count=Брой страници:
document_properties_page_size=Размер на страницата:
document_properties_page_size_unit_inches=инч
document_properties_page_size_unit_millimeters=мм
document_properties_page_size_orientation_portrait=портрет
document_properties_page_size_orientation_landscape=пейзаж
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Letter
document_properties_page_size_name_legal=Правни въпроси
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Бърз преглед:
document_properties_linearized_yes=Да
document_properties_linearized_no=Не
document_properties_close=Затваряне document_properties_close=Затваряне
print_progress_message=Подготвяне на документа за отпечатване print_progress_message=Подготвяне на документа за отпечатване
@@ -128,9 +164,31 @@ find_previous_label=Предишна
find_next.title=Намиране на следващо съвпадение на фразата find_next.title=Намиране на следващо съвпадение на фразата
find_next_label=Следваща find_next_label=Следваща
find_highlight=Открояване на всички find_highlight=Открояване на всички
find_match_case_label=Чувствителност към регистъра find_match_case_label=Съвпадение на регистъра
find_entire_word_label=Цели думи
find_reached_top=Достигнато е началото на документа, продължаване от края find_reached_top=Достигнато е началото на документа, продължаване от края
find_reached_bottom=Достигнат е краят на документа, продължаване от началото find_reached_bottom=Достигнат е краят на документа, продължаване от началото
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} от {{total}} съвпадение
find_match_count[two]={{current}} от {{total}} съвпадения
find_match_count[few]={{current}} от {{total}} съвпадения
find_match_count[many]={{current}} от {{total}} съвпадения
find_match_count[other]={{current}} от {{total}} съвпадения
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Повече от {{limit}} съвпадения
find_match_count_limit[one]=Повече от {{limit}} съвпадение
find_match_count_limit[two]=Повече от {{limit}} съвпадения
find_match_count_limit[few]=Повече от {{limit}} съвпадения
find_match_count_limit[many]=Повече от {{limit}} съвпадения
find_match_count_limit[other]=Повече от {{limit}} съвпадения
find_not_found=Фразата не е намерена find_not_found=Фразата не е намерена
# Error panel labels # Error panel labels
@@ -139,7 +197,7 @@ error_less_info=По-малко информация
error_close=Затваряне error_close=Затваряне
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID. # replaced by the PDF.JS version and build ID.
error_version_info=PDF.js версия {{version}} (build: {{build}}) error_version_info=Издание на PDF.js {{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error. # english string describing the error.
error_message=Съобщение: {{message}} error_message=Съобщение: {{message}}
@@ -178,7 +236,7 @@ password_invalid=Невалидна парола. Моля, опитайте о
password_ok=Добре password_ok=Добре
password_cancel=Отказ password_cancel=Отказ
printing_not_supported=Внимание: Този браузър няма пълна поддръжка на отпечатване. printing_not_supported=Внимание: Този четец няма пълна поддръжка на отпечатване.
printing_not_ready=Внимание: Този PDF файл не е напълно зареден за печат. printing_not_ready=Внимание: Този PDF файл не е напълно зареден за печат.
web_fonts_disabled=Уеб-шрифтовете са забранени: разрешаване на използването на вградените PDF шрифтове. web_fonts_disabled=Уеб-шрифтовете са забранени: разрешаване на използването на вградените PDF шрифтове.
document_colors_not_allowed=На PDF-документите не е разрешено да използват собствени цветове: Разрешаване на страниците да избират собствени цветове е изключено в браузъра. document_colors_not_allowed=На документите от вид PDF не е разрешено да използват собствени цветове: Разрешаване на страниците да избират собствени цветове е изключено в четеца.

View File

@@ -1,177 +0,0 @@
# Copyright 2012 Mozilla Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=পূর্ববর্ত পৃষ্ঠ
previous_label=পূর্ববর্ত
next.title=পরবর্ত পৃষ্ঠ
next_label=পরবর্ত
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
page.title=
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document.
of_pages={{pagesCount}}
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document.
page_of_pages=({{pagesCount}} এর {{pageNumber}})
zoom_out.title= প্রদর্শন
zoom_out_label= প্রদর্শন
zoom_in.title=বড় প্রদর্শন
zoom_in_label=বড় প্রদর্শন
zoom.title=প্রদর্শন
presentation_mode.title=উপস্থপন স্যুইচ করুন
presentation_mode_label=উপস্থপন
open_file.title=ইল খুলুন
open_file_label=খুলুন
print.title=প্রিন্ট করুন
print_label=প্রিন্ট করুন
download.title=উনল করুন
download_label=উনল করুন
bookmark.title=বর্তম প্রদর্শন (কপি করুন অথব নতুন উইন্ড খুলুন)
bookmark_label=বর্তম প্রদর্শন
# Secondary toolbar and context menu
tools.title=সরঞ্জ
tools_label=সরঞ্জ
first_page.title=প্রথম পৃষ্ঠ চলুন
first_page.label=প্রথম পৃষ্ঠ চলুন
first_page_label=প্রথম পৃষ্ঠ চলুন
last_page.title=সর্বশ পৃষ্ঠ চলুন
last_page.label=সর্বশ পৃষ্ঠ চলুন
last_page_label=সর্বশ পৃষ্ঠ চলুন
page_rotate_cw.title=নদি হব
page_rotate_cw.label=নদি হব
page_rotate_cw_label=নদি হব
page_rotate_ccw.title=ঁদি হব
page_rotate_ccw.label=ঁদি হব
page_rotate_ccw_label=ঁদি হব
# Document properties dialog box
document_properties.title=নথি িষ্ট্য
document_properties_label=নথি িষ্ট্য
document_properties_file_name=ইল :
document_properties_file_size=ইল :
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
document_properties_kb={{size_kb}} KB ({{size_b}} bytes)
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_mb={{size_mb}} ইট ({{size_b}} bytes)
document_properties_title=ি:
document_properties_author=খক:
document_properties_subject=িষয়:
document_properties_keywords=ির্দশক শব্দ:
document_properties_creation_date=ির্ম ি:
document_properties_modification_date=পরিবর্তন ি:
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
# will be replaced by the creation/modification date, and time, of the PDF file.
document_properties_date_string={{date}}, {{time}}
document_properties_creator=ির্ম:
document_properties_producer=PDF ির্ম:
document_properties_version=PDF স্করণ:
document_properties_page_count= পৃষ্ঠ:
document_properties_close=বন্ধ করুন
print_progress_message=ডকুমন্ট প্রিন্টি- জন্য ি কর হচ্ছ...
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value.
print_progress_percent={{progress}}%
print_progress_close=ি
# Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are
# tooltips)
toggle_sidebar.title=ইডব টগল করুন
toggle_sidebar_label=ইডব টগল করুন
document_outline.title=ডকুমন্ট আউটলইন (দুব ক্লি করুন //collapse সমস্ত আইটেম)
document_outline_label=ডকুমন্ট আউটলইন
attachments.title=যুক্তিসমূহ
attachments_label=যুক্ত বস্তু
thumbs.title=ম্ব-ইল প্রদর্শন
thumbs_label=ম্ব-ইল প্রদর্শন
findbar.title=নথি খুঁজুন
findbar_label=অনুসন্ধ করুন
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=পৃষ্ঠ {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=পৃষ্ঠ {{page}}- ম্ব-ইল
# Find panel button title and messages
find_previous.title=িহ্নি ক্তি পূর্ববর্ত উপস্থিি অনুসন্ধ করুন
find_previous_label=পূর্ববর্ত
find_next.title=িহ্নি ক্তি পরবর্ত উপস্থিি অনুসন্ধ করুন
find_next_label=পরবর্ত
find_highlight=সমগ্র উজ্জ্বল করুন
find_match_case_label=হরফ ঁদ হব
find_reached_top=পৃষ্ঠ প্ররম্ভ , আরম্ভ কর হব
find_reached_bottom=পৃষ্ঠ অন্তি প্রন্ত , প্রথম আরম্ভ কর হব
find_not_found=ক্তি ওয় য়নি
# Error panel labels
error_more_info=অতিিক্ত তথ্য
error_less_info=কম তথ্য
error_close=বন্ধ করুন
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID.
error_version_info=PDF.js v{{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=Message: {{message}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=Stack: {{stack}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=File: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=Line: {{line}}
rendering_error=পৃষ্ঠ প্রদর্শনক একটি সমস্য ি
# Predefined zoom values
page_scale_width=পৃষ্ঠ প্রস্থ অনুয
page_scale_fit=পৃষ্ঠ অনুয
page_scale_auto=স্বয়ক্রি ির্ধরণ
page_scale_actual=প্রকৃত
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value.
page_scale_percent={{scale}}%
# Loading indicator messages
loading_error_indicator=ত্রুটি
loading_error=PDF কর সময় সমস্য ি
invalid_file_error=অব ক্ষতিগ্রস্ত িিএফ ইল
missing_file_error=অনুপস্থি PDF ইল
unexpected_response_error=র্ভ অপ্রত্যি ওয়
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[{{type}} Annotation]
password_label=এই PDF ইল জন্য সওয়র্ড ি
password_invalid=সওয়র্ড সঠি নয় অনুগ্রহ কর পুনর প্রচষ্ট করুন
password_ok=OK
password_cancel=ি করুন
printing_not_supported=সতর্কবর্ত: এই ব্রউজ দ্ব প্রিন্ট ব্যবস্থ সম্পূর্ণরূপ সমর্থি নয়
printing_not_ready=সতর্কব: িিএফ সম্পূর্ণরূপ মুদ্রণ জন্য কর হয় .
web_fonts_disabled=ওয় ফন্ট িষ্ক্রিয় কর হয়: এমব িিএফ ফন্ট ব্যবহ করত অক্ষম.
document_colors_not_allowed=িিএফ নথি িজস্ব ব্যবহ কর জন্য অনুমতিপ্রপ্ত নয়: ব্রউজ িষ্ক্রিয় কর হয় ' িজস্ব ির্বচন কর অনুমতি প্রদ কর '

View File

@@ -13,9 +13,9 @@
# limitations under the License. # limitations under the License.
# Main toolbar buttons (tooltips and alt text for images) # Main toolbar buttons (tooltips and alt text for images)
previous.title=পূর্ববর্ত ৃষ্ঠ previous.title=পূর্ববর্ত
previous_label=পূর্ববর্ত previous_label=পূর্ববর্ত
next.title=পরবর্ত ৃষ্ঠ next.title=পরবর্ত
next_label=পরবর্ত next_label=পরবর্ত
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. # LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
@@ -60,9 +60,23 @@ page_rotate_ccw.title=ঘড়ির কাঁটার বিপরীতে
page_rotate_ccw.label=ঘড়ি ঁট িপর page_rotate_ccw.label=ঘড়ি ঁট িপর
page_rotate_ccw_label=ঘড়ি ঁট িপর page_rotate_ccw_label=ঘড়ি ঁট িপর
cursor_text_select_tool.title= ির্বচক টুল সক্রি করুন
cursor_text_select_tool_label= ির্বচক টুল
cursor_hand_tool.title=হ্যন্ড টুল সক্রিয় করুন cursor_hand_tool.title=হ্যন্ড টুল সক্রিয় করুন
cursor_hand_tool_label=হ্যন্ড টুল cursor_hand_tool_label=হ্যন্ড টুল
scroll_vertical.title=উলম্ব স্ক্রলি ব্যবহ করুন
scroll_vertical_label=উলম্ব স্ক্রলি
scroll_horizontal.title=অনুভূমি স্ক্রলি ব্যবহ করুন
scroll_horizontal_label=অনুভূমি স্ক্রলি
scroll_wrapped.title=Wrapped স্ক্রি ব্যবহ করুন
scroll_wrapped_label=Wrapped স্ক্রি
spread_none.title= স্প্রডগুল গদ করব
spread_none_label=Spreads
spread_odd_label=ি Spreads
spread_even_label= Spreads
# Document properties dialog box # Document properties dialog box
document_properties.title=নথি িষ্ট্য document_properties.title=নথি িষ্ট্য
document_properties_label=নথি িষ্ট্য document_properties_label=নথি িষ্ট্য
@@ -87,6 +101,28 @@ document_properties_creator=প্রস্তুতকারক:
document_properties_producer=িিএফ প্রস্তুতকরক: document_properties_producer=িিএফ প্রস্তুতকরক:
document_properties_version=িিএফ ষ্করণ: document_properties_version=িিএফ ষ্করণ:
document_properties_page_count= : document_properties_page_count= :
document_properties_page_size= ইজ:
document_properties_page_size_unit_inches=এর মধ্য
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=উলম্ব
document_properties_page_size_orientation_landscape=অনুভূমি
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=
document_properties_page_size_name_legal=
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Fast Web View:
document_properties_linearized_yes=হ্য
document_properties_linearized_no=
document_properties_close=বন্ধ document_properties_close=বন্ধ
print_progress_message=মুদ্রণ জন্য নথি প্রস্তুত কর হচ্ছ print_progress_message=মুদ্রণ জন্য নথি প্রস্তুত কর হচ্ছ
@@ -110,13 +146,15 @@ thumbs_label=থাম্বনেইল সমূহ
findbar.title=নথি মধ্য খুঁজুন findbar.title=নথি মধ্য খুঁজুন
findbar_label=খুঁজুন findbar_label=খুঁজুন
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas= {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
thumb_page_title=ৃষ্ঠ {{page}} thumb_page_title= {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number. # number.
thumb_page_canvas={{page}} ৃষ্ঠ ম্বনইল thumb_page_canvas={{page}} ম্বনইল
# Find panel button title and messages # Find panel button title and messages
find_input.title=খুঁজুন find_input.title=খুঁজুন
@@ -127,8 +165,30 @@ find_next.title=বাক্যাংশের পরবর্তী উপস
find_next_label=পরবর্ত find_next_label=পরবর্ত
find_highlight=সব ইলইট কর হব find_highlight=সব ইলইট কর হব
find_match_case_label=অক্ষর ঁদ find_match_case_label=অক্ষর ঁদ
find_reached_top=পৃষ্ঠ শুরুত , আরম্ভ কর হয় find_entire_word_label=সম্পূর্ণ শব্দ
find_reached_bottom=ৃষ্ঠ , উপর আরম্ভ কর হয় find_reached_top= ুরুত , আরম্ভ কর হয়
find_reached_bottom= , উপর আরম্ভ কর হয়
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{total}} এর {{current}} ি
find_match_count[two]={{total}} এর {{current}} ি
find_match_count[few]={{total}} এর {{current}} ি
find_match_count[many]={{total}} এর {{current}} ি
find_match_count[other]={{total}} এর {{current}} ি
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]={{limit}} এর ি ি
find_match_count_limit[one]={{limit}} এর ি ি
find_match_count_limit[two]={{limit}} এর ি ি
find_match_count_limit[few]={{limit}} এর ি ি
find_match_count_limit[many]={{limit}} এর ি ি
find_match_count_limit[other]={{limit}} এর ি ি
find_not_found=ক্য ওয় য়নি find_not_found=ক্য ওয় য়নি
# Error panel labels # Error panel labels
@@ -148,11 +208,11 @@ error_stack=Stack: {{stack}}
error_file=নথি: {{file}} error_file=নথি: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=ইন: {{line}} error_line=ইন: {{line}}
rendering_error=ৃষ্ঠ উপস্থপন সময় ত্রুটি ি rendering_error= উপস্থপন সময় ত্রুটি ি
# Predefined zoom values # Predefined zoom values
page_scale_width=ৃষ্ঠ প্রস্থ page_scale_width= প্রস্থ
page_scale_fit=ৃষ্ঠ ি করুন page_scale_fit= ি করুন
page_scale_auto=স্বয়ক্রি জুম page_scale_auto=স্বয়ক্রি জুম
page_scale_actual=প্রকৃত আক page_scale_actual=প্রকৃত আক
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
@@ -166,6 +226,10 @@ invalid_file_error=অকার্যকর অথবা ক্ষতিগ্
missing_file_error=িঁজ PDF ইল missing_file_error=িঁজ PDF ইল
unexpected_response_error=অপ্রত্য র্ভ প্রতিক্রি unexpected_response_error=অপ্রত্য র্ভ প্রতিক্রি
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -13,18 +13,20 @@
# limitations under the License. # limitations under the License.
# Main toolbar buttons (tooltips and alt text for images) # Main toolbar buttons (tooltips and alt text for images)
previous.title=Previous Page previous.title=དྲངོསསྔོན
previous_label=Previous previous_label=སྔོན
next.title=Next Page next.title=དྲངོསརྗེས
next_label=Next next_label=རྗེས
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. # LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
page.title=ཤོགངོས
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number # LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document. # representing the total number of pages in the document.
of_pages=of {{pagesCount}} of_pages=of {{pagesCount}}
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" # LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page, # will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document. # respectively a number representing the total number of pages in the document.
page_of_pages=({{pageNumber}} of {{pagesCount}})
zoom_out.title=Zoom Out zoom_out.title=Zoom Out
zoom_out_label=Zoom Out zoom_out_label=Zoom Out
@@ -58,6 +60,24 @@ page_rotate_ccw.title=Rotate Counterclockwise
page_rotate_ccw.label=Rotate Counterclockwise page_rotate_ccw.label=Rotate Counterclockwise
page_rotate_ccw_label=Rotate Counterclockwise page_rotate_ccw_label=Rotate Counterclockwise
cursor_text_select_tool.title=Enable Text Selection Tool
cursor_text_select_tool_label=Text Selection Tool
cursor_hand_tool.title=Enable Hand Tool
cursor_hand_tool_label=Hand Tool
scroll_vertical.title=Use Vertical Scrolling
scroll_vertical_label=Vertical Scrolling
scroll_horizontal.title=Use Horizontal Scrolling
scroll_horizontal_label=Horizontal Scrolling
scroll_wrapped.title=Use Wrapped Scrolling
scroll_wrapped_label=Wrapped Scrolling
spread_none.title=Do not join page spreads
spread_none_label=No Spreads
spread_odd.title=Join page spreads starting with odd-numbered pages
spread_odd_label=Odd Spreads
spread_even.title=Join page spreads starting with even-numbered pages
spread_even_label=Even Spreads
# Document properties dialog box # Document properties dialog box
document_properties.title=Document Properties document_properties.title=Document Properties
@@ -83,15 +103,41 @@ document_properties_creator=Creator:
document_properties_producer=PDF Producer: document_properties_producer=PDF Producer:
document_properties_version=PDF Version: document_properties_version=PDF Version:
document_properties_page_count=Page Count: document_properties_page_count=Page Count:
document_properties_page_size=Page Size:
document_properties_page_size_unit_inches=in
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=portrait
document_properties_page_size_orientation_landscape=landscape
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Letter
document_properties_page_size_name_legal=Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Fast Web View:
document_properties_linearized_yes=Yes
document_properties_linearized_no=No
document_properties_close=Close document_properties_close=Close
print_progress_message=Preparing document for printing
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by # LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value. # a numerical per cent value.
print_progress_percent={{progress}}%
print_progress_close=Cancel
# Tooltips and alt text for side panel toolbar buttons # Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are # (the _label strings are alt text for the buttons, the .title strings are
# tooltips) # tooltips)
toggle_sidebar.title=Toggle Sidebar toggle_sidebar.title=Toggle Sidebar
toggle_sidebar_notification.title=Toggle Sidebar (document contains outline/attachments)
toggle_sidebar_label=Toggle Sidebar toggle_sidebar_label=Toggle Sidebar
document_outline.title=Show Document Outline (double-click to expand/collapse all items) document_outline.title=Show Document Outline (double-click to expand/collapse all items)
document_outline_label=Document Outline document_outline_label=Document Outline
@@ -100,6 +146,7 @@ attachments_label=Attachments
thumbs.title=Show Thumbnails thumbs.title=Show Thumbnails
thumbs_label=Thumbnails thumbs_label=Thumbnails
findbar.title=Find in Document findbar.title=Find in Document
findbar_label=Find
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
@@ -110,14 +157,38 @@ thumb_page_title=Page {{page}}
thumb_page_canvas=Thumbnail of Page {{page}} thumb_page_canvas=Thumbnail of Page {{page}}
# Find panel button title and messages # Find panel button title and messages
find_input.title=Find
find_input.placeholder=Find in document
find_previous.title=Find the previous occurrence of the phrase find_previous.title=Find the previous occurrence of the phrase
find_previous_label=Previous find_previous_label=Previous
find_next.title=Find the next occurrence of the phrase find_next.title=Find the next occurrence of the phrase
find_next_label=Next find_next_label=Next
find_highlight=Highlight all find_highlight=Highlight all
find_match_case_label=Match case find_match_case_label=Match case
find_entire_word_label=Whole words
find_reached_top=Reached top of document, continued from bottom find_reached_top=Reached top of document, continued from bottom
find_reached_bottom=Reached end of document, continued from top find_reached_bottom=Reached end of document, continued from top
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} of {{total}} match
find_match_count[two]={{current}} of {{total}} matches
find_match_count[few]={{current}} of {{total}} matches
find_match_count[many]={{current}} of {{total}} matches
find_match_count[other]={{current}} of {{total}} matches
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=More than {{limit}} matches
find_match_count_limit[one]=More than {{limit}} match
find_match_count_limit[two]=More than {{limit}} matches
find_match_count_limit[few]=More than {{limit}} matches
find_match_count_limit[many]=More than {{limit}} matches
find_match_count_limit[other]=More than {{limit}} matches
find_not_found=Phrase not found find_not_found=Phrase not found
# Error panel labels # Error panel labels
@@ -155,6 +226,9 @@ invalid_file_error=Invalid or corrupted PDF file.
missing_file_error=Missing PDF file. missing_file_error=Missing PDF file.
unexpected_response_error=Unexpected server response. unexpected_response_error=Unexpected server response.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).
@@ -163,8 +237,9 @@ text_annotation_type.alt=[{{type}} Annotation]
password_label=Enter the password to open this PDF file. password_label=Enter the password to open this PDF file.
password_invalid=Invalid password. Please try again. password_invalid=Invalid password. Please try again.
password_ok=OK password_ok=OK
password_cancel=Cancel
printing_not_supported=Warning: Printing is not fully supported by this browser. printing_not_supported=Warning: Printing is not fully supported by this browser.
printing_not_ready=Warning: The PDF is not fully loaded for printing. printing_not_ready=Warning: The PDF is not fully loaded for printing.
web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts. web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts.
document_colors_not_allowed=PDF documents are not allowed to use their own colours: Allow pages to choose their own colours is deactivated in the browser. document_colors_not_allowed=PDF documents are not allowed to use their own colors: Allow pages to choose their own colors is deactivated in the browser.

View File

@@ -60,6 +60,24 @@ page_rotate_ccw.title=C'hwelañ gant roud gin ar bizied
page_rotate_ccw.label=C'hwelañ gant roud gin ar bizied page_rotate_ccw.label=C'hwelañ gant roud gin ar bizied
page_rotate_ccw_label=C'hwelañ gant roud gin ar bizied page_rotate_ccw_label=C'hwelañ gant roud gin ar bizied
cursor_text_select_tool.title=Gweredekaat an ostilh diuzañ testenn
cursor_text_select_tool_label=Ostilh diuzañ testenn
cursor_hand_tool.title=Gweredekaat an ostilh dorn
cursor_hand_tool_label=Ostilh dorn
scroll_vertical.title=Arverañ an dibunañ a-blom
scroll_vertical_label=Dibunañ a-serzh
scroll_horizontal.title=Arverañ an dibunañ a-blaen
scroll_horizontal_label=Dibunañ a-blaen
scroll_wrapped.title=Arverañ an dibunañ paket
scroll_wrapped_label=Dibunañ paket
spread_none.title=Chom hep stagañ ar skignadurioù
spread_none_label=Skignadenn ebet
spread_odd.title=Lakaat ar pajennadoù en ur gregiñ gant ar pajennoù ampar
spread_odd_label=Pajennoù ampar
spread_even.title=Lakaat ar pajennadoù en ur gregiñ gant ar pajennoù par
spread_even_label=Pajennoù par
# Document properties dialog box # Document properties dialog box
document_properties.title=Perzhioù an teul document_properties.title=Perzhioù an teul
@@ -85,6 +103,28 @@ document_properties_creator=Krouer :
document_properties_producer=Kenderc'her PDF : document_properties_producer=Kenderc'her PDF :
document_properties_version=Handelv PDF : document_properties_version=Handelv PDF :
document_properties_page_count=Niver a bajennoù : document_properties_page_count=Niver a bajennoù :
document_properties_page_size=Ment ar bajenn:
document_properties_page_size_unit_inches=in
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=poltred
document_properties_page_size_orientation_landscape=gweledva
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Lizher
document_properties_page_size_name_legal=Lezennel
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Gwel Web Herrek:
document_properties_linearized_yes=Ya
document_properties_linearized_no=Ket
document_properties_close=Serriñ document_properties_close=Serriñ
print_progress_message=O prientiñ an teul evit moullañ... print_progress_message=O prientiñ an teul evit moullañ...
@@ -125,8 +165,30 @@ find_next.title=Kavout an tamm frazenn war-lerc'h o klotañ ganti
find_next_label=War-lerc'h find_next_label=War-lerc'h
find_highlight=Usskediñ pep tra find_highlight=Usskediñ pep tra
find_match_case_label=Teurel evezh ouzh ar pennlizherennoù find_match_case_label=Teurel evezh ouzh ar pennlizherennoù
find_entire_word_label=Gerioù a-bezh
find_reached_top=Tizhet eo bet derou ar bajenn, kenderc'hel diouzh an diaz find_reached_top=Tizhet eo bet derou ar bajenn, kenderc'hel diouzh an diaz
find_reached_bottom=Tizhet eo bet dibenn ar bajenn, kenderc'hel diouzh ar c'hrec'h find_reached_bottom=Tizhet eo bet dibenn ar bajenn, kenderc'hel diouzh ar c'hrec'h
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]=Klotadenn {{current}} war {{total}}
find_match_count[two]=Klotadenn {{current}} war {{total}}
find_match_count[few]=Klotadenn {{current}} war {{total}}
find_match_count[many]=Klotadenn {{current}} war {{total}}
find_match_count[other]=Klotadenn {{current}} war {{total}}
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Muioc'h eget {{limit}} a glotadennoù
find_match_count_limit[one]=Muioc'h eget {{limit}} a glotadennoù
find_match_count_limit[two]=Muioc'h eget {{limit}} a glotadennoù
find_match_count_limit[few]=Muioc'h eget {{limit}} a glotadennoù
find_match_count_limit[many]=Muioc'h eget {{limit}} a glotadennoù
find_match_count_limit[other]=Muioc'h eget {{limit}} a glotadennoù
find_not_found=N'haller ket kavout ar frazenn find_not_found=N'haller ket kavout ar frazenn
# Error panel labels # Error panel labels
@@ -164,6 +226,10 @@ invalid_file_error=Restr PDF didalvoudek pe kontronet.
missing_file_error=Restr PDF o vankout. missing_file_error=Restr PDF o vankout.
unexpected_response_error=Respont dic'hortoz a-berzh an dafariad unexpected_response_error=Respont dic'hortoz a-berzh an dafariad
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -0,0 +1,211 @@
# Copyright 2012 Mozilla Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=आगलनि ि
previous_label=आगलनि
next.title=उननि ि
next_label=उननि
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
page.title=ि
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document.
of_pages={{pagesCount}} ि
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document.
page_of_pages=({{pagesCount}} ि {{pageNumber}})
zoom_out.title=ियै जुम
zoom_out_label=ियै जुम
zoom_in.title=गेदेरै जुम
zoom_in_label=गेदेरै जुम
zoom.title=जुम
presentation_mode.title=िन्थिफुंन 'डआव
presentation_mode_label=िन्थिफुंन '
open_file.title=इलख खेव
open_file_label=खेव
print.title=
print_label=
download.title=उनल'
download_label=उनल'
bookmark.title=ि नुथ ( उइन्ड'आव कपि एब खेव)
bookmark_label=ि नुथ
# Secondary toolbar and context menu
tools.title=टुल
tools_label=टुल
first_page.title=िि िइआव
first_page.label=िि िइआव
first_page_label=िि िइआव
last_page.title=बथ िइआव
last_page.label=बथ िइआव
last_page_label=बथ िइआव
page_rotate_cw.title=घरि ििंन र्से िि
page_rotate_cw.label=घरि ििंन र्से िि
page_rotate_cw_label=घरि ििंन र्से िि
page_rotate_ccw.title=घरि ििंन उल्थ र्से िि
page_rotate_ccw.label=घरि ििंन उल्थ र्से िि
page_rotate_ccw_label=घरि ििंन उल्थ र्से िि
# Document properties dialog box
document_properties.title=रम िइनि आखुथ...
document_properties_label=रम िइनि आखुथ...
document_properties_file_name=इलनि मुं:
document_properties_file_size=इलनि महर:
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
document_properties_kb={{size_kb}} KB ({{size_b}} इट)
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_mb={{size_mb}} MB ({{size_b}} इट)
document_properties_title=िमुं:
document_properties_author=िरगिि:
document_properties_subject=आयद:
document_properties_keywords= :
document_properties_creation_date=रजि अक्ट':
document_properties_modification_date=सुद्रयन अक्ट':
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
# will be replaced by the creation/modification date, and time, of the PDF file.
document_properties_date_string={{date}}, {{time}}
document_properties_creator=रजिग्र:
document_properties_producer=PDF िहुनग्र:
document_properties_version=PDF ि:
document_properties_page_count=िइनि ि:
document_properties_page_size_unit_inches=in
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait='र्ट्रेट
document_properties_page_size_orientation_landscape=लेण्डस्केप
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=यज
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized_yes=नंग
document_properties_linearized_no=नङ
document_properties_close=बन्द
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value.
print_progress_percent={{progress}}%
print_progress_close=नेवसि
# Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are
# tooltips)
toggle_sidebar.title=टग्गल इडब
toggle_sidebar_label=टग्गल इडब
document_outline_label=रम ि ि ंख
attachments.title=ंज यख िन्थि
attachments_label=ंज
thumbs.title=मनेइलख िन्थि
thumbs_label=मनेइल
findbar.title=रम िइआव िरन िहुन
findbar_label=यगिरन िहुन
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=ि {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=ि {{page}} ि मनेइल
# Find panel button title and messages
find_input.title=यगिरन िहुन
find_input.placeholder=रम िइआव िरन िहुन...
find_previous.title=थ्र न्दबनि िंनि नुजियख ि
find_previous_label=आगलनि
find_next.title=थ्र न्दबनि उननि नुजियख ि
find_next_label=उननि
find_highlight=सैख इलइट
find_match_case_label=बन केस
find_reached_top= िफ्र यननै रम िइनि िआव हैब
find_reached_bottom=ि िफ्र यननै रम िइनि िआव हैब
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_not_found=थ्र न्द खै
# Error panel labels
error_more_info= रमयथिग्र
error_less_info=खम रमयथिग्र
error_close=बन्द
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID.
error_version_info=PDF.js v{{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=: {{message}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=स्टेक: {{stack}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=इल: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=ि: {{line}}
rendering_error=िइख यन सम नसे न्थि
# Predefined zoom values
page_scale_width=िइनि गुव
page_scale_fit=ि बन
page_scale_auto=वन जुम
page_scale_actual= महर
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value.
page_scale_percent={{scale}}%
# Loading indicator messages
loading_error_indicator=न्थि
loading_error=PDF ' मन सम नसे न्थि
invalid_file_error=यजयै एब ज्रि PDF इल
missing_file_error= PDF इल
unexpected_response_error=ििंथियै र्भ िनन
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[{{type}} बेखेवन]
password_label=बे PDF इलख खेवन सवर्ड बह
password_invalid=यजयै सवर्ड अनननै ि
password_ok=OK
password_cancel=नेवसि
printing_not_supported=ंग्रंथि: यन बे ब्रउजरज आबुङै हेफ
printing_not_ready=ंग्रंथि: PDF यनयनि फुरयै ' खै
web_fonts_disabled=वेब फन्टख रब मब: अरजबह PDF फन्टख यन खै
document_colors_not_allowed=PDF रम िइख िरनि िि यन गनयथि : 'िरनि िि िखन िइख गनयथि '- ब्रउजरआव रब मन

View File

@@ -89,6 +89,23 @@ document_properties_creator=Kreator:
document_properties_producer=PDF stvaratelj: document_properties_producer=PDF stvaratelj:
document_properties_version=PDF verzija: document_properties_version=PDF verzija:
document_properties_page_count=Broj stranica: document_properties_page_count=Broj stranica:
document_properties_page_size=Veličina stranice:
document_properties_page_size_unit_inches=u
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=uspravno
document_properties_page_size_orientation_landscape=vodoravno
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Pismo
document_properties_page_size_name_legal=Pravni
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
document_properties_close=Zatvori document_properties_close=Zatvori
print_progress_message=Pripremam dokument za štampu print_progress_message=Pripremam dokument za štampu

View File

@@ -28,10 +28,10 @@ of_pages=de {{pagesCount}}
# respectively a number representing the total number of pages in the document. # respectively a number representing the total number of pages in the document.
page_of_pages=({{pageNumber}} de {{pagesCount}}) page_of_pages=({{pageNumber}} de {{pagesCount}})
zoom_out.title=Allunya zoom_out.title=Redueix
zoom_out_label=Allunya zoom_out_label=Redueix
zoom_in.title=Apropa zoom_in.title=Amplia
zoom_in_label=Apropa zoom_in_label=Amplia
zoom.title=Escala zoom.title=Escala
presentation_mode.title=Canvia al mode de presentació presentation_mode.title=Canvia al mode de presentació
presentation_mode_label=Mode de presentació presentation_mode_label=Mode de presentació
@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Eina de selecció de text
cursor_hand_tool.title=Habilita l'eina de cursor_hand_tool.title=Habilita l'eina de
cursor_hand_tool_label=Eina de cursor_hand_tool_label=Eina de
scroll_vertical.title=Utilitza el desplaçament vertical
scroll_vertical_label=Desplaçament vertical
scroll_horizontal.title=Utilitza el desplaçament horitzontal
scroll_horizontal_label=Desplaçament horitzontal
scroll_wrapped.title=Activa el desplaçament continu
scroll_wrapped_label=Desplaçament continu
spread_none.title=No agrupis les pàgines de dues en dues
spread_none_label=Una sola pàgina
spread_odd.title=Mostra dues pàgines començant per les pàgines de numeració senar
spread_odd_label=Doble pàgina (senar)
spread_even.title=Mostra dues pàgines començant per les pàgines de numeració parell
spread_even_label=Doble pàgina (parell)
# Document properties dialog box # Document properties dialog box
document_properties.title=Propietats del document document_properties.title=Propietats del document
document_properties_label=Propietats del document document_properties_label=Propietats del document
@@ -89,6 +103,28 @@ document_properties_creator=Creador:
document_properties_producer=Generador de PDF: document_properties_producer=Generador de PDF:
document_properties_version=Versió de PDF: document_properties_version=Versió de PDF:
document_properties_page_count=Nombre de pàgines: document_properties_page_count=Nombre de pàgines:
document_properties_page_size=Mida de la pàgina:
document_properties_page_size_unit_inches=polzades
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=vertical
document_properties_page_size_orientation_landscape=apaïsat
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Carta
document_properties_page_size_name_legal=Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Vista web ràpida:
document_properties_linearized_yes=
document_properties_linearized_no=No
document_properties_close=Tanca document_properties_close=Tanca
print_progress_message=S'està preparant la impressió del document print_progress_message=S'està preparant la impressió del document
@@ -112,6 +148,8 @@ thumbs_label=Miniatures
findbar.title=Cerca al document findbar.title=Cerca al document
findbar_label=Cerca findbar_label=Cerca
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Pàgina {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
@@ -129,8 +167,30 @@ find_next.title=Cerca la següent coincidència de l'expressió
find_next_label=Següent find_next_label=Següent
find_highlight=Ressalta-ho tot find_highlight=Ressalta-ho tot
find_match_case_label=Distingeix entre majúscules i minúscules find_match_case_label=Distingeix entre majúscules i minúscules
find_entire_word_label=Paraules senceres
find_reached_top=S'ha arribat al principi del document, es continua pel final find_reached_top=S'ha arribat al principi del document, es continua pel final
find_reached_bottom=S'ha arribat al final del document, es continua pel principi find_reached_bottom=S'ha arribat al final del document, es continua pel principi
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} de {{total}} coincidència
find_match_count[two]={{current}} de {{total}} coincidències
find_match_count[few]={{current}} de {{total}} coincidències
find_match_count[many]={{current}} de {{total}} coincidències
find_match_count[other]={{current}} de {{total}} coincidències
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Més de {{limit}} coincidències
find_match_count_limit[one]=Més d'{{limit}} coincidència
find_match_count_limit[two]=Més de {{limit}} coincidències
find_match_count_limit[few]=Més de {{limit}} coincidències
find_match_count_limit[many]=Més de {{limit}} coincidències
find_match_count_limit[other]=Més de {{limit}} coincidències
find_not_found=No s'ha trobat l'expressió find_not_found=No s'ha trobat l'expressió
# Error panel labels # Error panel labels
@@ -168,6 +228,10 @@ invalid_file_error=El fitxer PDF no és vàlid o està malmès.
missing_file_error=Falta el fitxer PDF. missing_file_error=Falta el fitxer PDF.
unexpected_response_error=Resposta inesperada del servidor. unexpected_response_error=Resposta inesperada del servidor.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -0,0 +1,248 @@
# Copyright 2012 Mozilla Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=Jun kan ruxaq
previous_label=Chuwäch
next.title=Jun chik ruxaq
next_label=Jun chik
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
page.title=Ruxaq
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document.
of_pages=richin {{pagesCount}}
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document.
page_of_pages=({{pageNumber}} richin {{pagesCount}})
zoom_out.title=Tich'utinirisäx
zoom_out_label=Tich'utinirisäx
zoom_in.title=Tinimirisäx
zoom_in_label=Tinimirisäx
zoom.title=Sum
presentation_mode.title=Tijal ri rub'anikil niwachin
presentation_mode_label=Pa rub'eyal niwachin
open_file.title=Tijaq yakb'äl
open_file_label=Tijaq
print.title=Titz'ajb'äx
print_label=Titz'ajb'äx
download.title=Tiqasäx
download_label=Tiqasäx
bookmark.title=Rutz'etik wakami (tiwachib'ëx o tijaq pa jun k'ak'a' tzuwäch)
bookmark_label=Rutzub'al wakami
# Secondary toolbar and context menu
tools.title=Samajib'äl
tools_label=Samajib'äl
first_page.title=Tib'e pa nab'ey ruxaq
first_page.label=Tib'e pa nab'ey ruxaq
first_page_label=Tib'e pa nab'ey ruxaq
last_page.title=Tib'e pa ruk'isib'äl ruxaq
last_page.label=Tib'e pa ruk'isib'äl ruxaq
last_page_label=Tib'e pa ruk'isib'äl ruxaq
page_rotate_cw.title=Tisutïx pan ajkiq'a'
page_rotate_cw.label=Tisutïx pan ajkiq'a'
page_rotate_cw_label=Tisutïx pan ajkiq'a'
page_rotate_ccw.title=Tisutïx pan ajxokon
page_rotate_ccw.label=Tisutïx pan ajxokon
page_rotate_ccw_label=Tisutïx pan ajxokon
cursor_text_select_tool.title=Titzij ri rusamajib'al Rucha'ik Rucholajem Tzij
cursor_text_select_tool_label=Rusamajib'al Rucha'ik Rucholajem Tzij
cursor_hand_tool.title=Titzij ri q'ab'aj samajib'äl
cursor_hand_tool_label=Q'ab'aj Samajib'äl
scroll_vertical.title=Tokisäx Pa'äl Q'axanem
scroll_vertical_label=Pa'äl Q'axanem
scroll_horizontal.title=Tokisäx Kotz'öl Q'axanem
scroll_horizontal_label=Kotz'öl Q'axanem
scroll_wrapped.title=Tokisäx Tzub'aj Q'axanem
scroll_wrapped_label=Tzub'aj Q'axanem
spread_none.title=Man ketun taq ruxaq pa rub'eyal wuj
spread_none_label=Majun Rub'eyal
spread_odd.title=Ke'atunu' ri taq ruxaq rik'in natikirisaj rik'in jun man k'ulaj ta rajilab'al
spread_odd_label=Man K'ulaj Ta Rub'eyal
spread_even.title=Ke'atunu' ri taq ruxaq rik'in natikirisaj rik'in jun k'ulaj rajilab'al
spread_even_label=K'ulaj Rub'eyal
# Document properties dialog box
document_properties.title=Taq richinil wuj
document_properties_label=Taq richinil wuj
document_properties_file_name=Rub'i' yakb'äl:
document_properties_file_size=Runimilem yakb'äl:
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
document_properties_kb={{size_kb}} KB ({{size_b}} bytes)
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_mb={{size_mb}} MB ({{size_b}} bytes)
document_properties_title=B'i'aj:
document_properties_author=B'anel:
document_properties_subject=Taqikil:
document_properties_keywords=Kixe'el taq tzij:
document_properties_creation_date=Ruq'ijul xtz'uk:
document_properties_modification_date=Ruq'ijul xjalwachïx:
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
# will be replaced by the creation/modification date, and time, of the PDF file.
document_properties_date_string={{date}}, {{time}}
document_properties_creator=Q'inonel:
document_properties_producer=PDF b'anöy:
document_properties_version=PDF ruwäch:
document_properties_page_count=Jarupe' ruxaq:
document_properties_page_size=Runimilem ri Ruxaq:
document_properties_page_size_unit_inches=pa
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=rupalem
document_properties_page_size_orientation_landscape=rukotz'olem
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Loman wuj
document_properties_page_size_name_legal=Nïm wuj
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Anin Rutz'etik Ajk'amaya'l:
document_properties_linearized_yes=Ja'
document_properties_linearized_no=Mani
document_properties_close=Titz'apïx
print_progress_message=Ruchojmirisaxik wuj richin nitz'ajb'äx
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value.
print_progress_percent={{progress}}%
print_progress_close=Tiq'at
# Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are
# tooltips)
toggle_sidebar.title=Tijal ri ajxikin kajtz'ik
toggle_sidebar_notification.title=Tik'ex ri ajxikin yuqkajtz'ik (ri wuj eruk'wan taq ruchi'/taqoj taq yakb'äl)
toggle_sidebar_label=Tijal ri ajxikin kajtz'ik
document_outline.title=Tik'ut pe ruch'akulal wuj (kamul-pitz'oj richin nirik'/nich'utinirisäx ronojel ruch'akulal)
document_outline_label=Ruch'akulal wuj
attachments.title=Kek'ut pe ri taq taqoj
attachments_label=Taq taqoj
thumbs.title=Kek'ut pe taq ch'utiq
thumbs_label=Koköj
findbar.title=Tikanöx chupam ri wuj
findbar_label=Tikanöx
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Ruxaq {{page}}
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=Ruxaq {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=Ruch'utinirisaxik ruxaq {{page}}
# Find panel button title and messages
find_input.title=Tikanöx
find_input.placeholder=Tikanöx pa wuj
find_previous.title=Tib'an b'enam pa ri jun kan q'aptzij xilitäj
find_previous_label=Jun kan
find_next.title=Tib'e pa ri jun chik pajtzij xilitäj
find_next_label=Jun chik
find_highlight=Tiya' retal ronojel
find_match_case_label=Tuk'äm ri' kik'in taq nimatz'ib' chuqa' taq ch'utitz'ib'
find_entire_word_label=Tz'aqät taq tzij
find_reached_top=Xb'eq'i' ri rutikirib'al wuj, xtikanöx k'a pa ruk'isib'äl
find_reached_bottom=Xb'eq'i' ri ruk'isib'äl wuj, xtikanöx pa rutikirib'al
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} richin {{total}} nuk'äm ri'
find_match_count[two]={{current}} richin {{total}} nikik'äm ki'
find_match_count[few]={{current}} richin {{total}} nikik'äm ki'
find_match_count[many]={{current}} richin {{total}} nikik'äm ki'
find_match_count[other]={{current}} richin {{total}} nikik'äm ki'
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=K'ïy chi re {{limit}} nikik'äm ki'
find_match_count_limit[one]=K'ïy chi re {{limit}} nuk'äm ri'
find_match_count_limit[two]=K'ïy chi re {{limit}} nikik'äm ki'
find_match_count_limit[few]=K'ïy chi re {{limit}} nikik'äm ki'
find_match_count_limit[many]=K'ïy chi re {{limit}} nikik'äm ki'
find_match_count_limit[other]=K'ïy chi re {{limit}} nikik'äm ki'
find_not_found=Man xilitäj ta ri pajtzij
# Error panel labels
error_more_info=Ch'aqa' chik rutzijol
error_less_info=Jub'a' ok rutzijol
error_close=Titz'apïx
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID.
error_version_info=PDF.js v{{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=Uqxa'n: {{message}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=Tzub'aj: {{stack}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=Yakb'äl: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=B'ey: {{line}}
rendering_error=Xk'ulwachitäj jun sachoj toq ninuk'wachij ri ruxaq.
# Predefined zoom values
page_scale_width=Ruwa ruxaq
page_scale_fit=Tinuk' ruxaq
page_scale_auto=Yonil chi nimilem
page_scale_actual=Runimilem
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value.
page_scale_percent={{scale}}%
# Loading indicator messages
loading_error_indicator=Sachoj
loading_error=\u0020Xk'ulwachitäj jun sach'oj toq xnuk'ux ri PDF .
invalid_file_error=Man oke ta o yujtajinäq ri PDF yakb'äl.
missing_file_error=Man xilitäj ta ri PDF yakb'äl.
unexpected_response_error=Man oyob'en ta tz'olin rutzij ruk'u'x samaj.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[{{type}} Tz'ib'anïk]
password_label=Tatz'ib'aj ri ewan tzij richin najäq re yakb'äl re' pa PDF.
password_invalid=Man okel ta ri ewan tzij: Tatojtob'ej chik.
password_ok=Ütz
password_cancel=Tiq'at
printing_not_supported=Rutzijol k'ayewal: Ri rutz'ajb'axik man koch'el ta ronojel pa re okik'amaya'l re'.
printing_not_ready=Rutzijol k'ayewal: Ri PDF man xusamajij ta ronojel richin nitz'ajb'äx.
web_fonts_disabled=E chupül ri taq ajk'amaya'l tz'ib': man tikirel ta nokisäx ri taq tz'ib' PDF pa ch'ikenïk
document_colors_not_allowed=Ri taq wuj pa PDF man ya'on ta q'ij chi ke richin nikokisaj ri taq kib'onil: Tiya' q'ij chi ke ri taq ruxaq chi kekicha' ri taq kib'onil chupun pa ri awokik'amaya'l.

View File

@@ -38,7 +38,7 @@ presentation_mode_label=Režim prezentace
open_file.title=Otevře soubor open_file.title=Otevře soubor
open_file_label=Otevřít open_file_label=Otevřít
print.title=Vytiskne dokument print.title=Vytiskne dokument
print_label=Tisk print_label=Vytisknout
download.title=Stáhne dokument download.title=Stáhne dokument
download_label=Stáhnout download_label=Stáhnout
bookmark.title=Současný pohled (kopírovat nebo otevřít v novém okně) bookmark.title=Současný pohled (kopírovat nebo otevřít v novém okně)
@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Výběr textu
cursor_hand_tool.title=Povolí nástroj ručička cursor_hand_tool.title=Povolí nástroj ručička
cursor_hand_tool_label=Nástroj ručička cursor_hand_tool_label=Nástroj ručička
scroll_vertical.title=Použít svislé posouvání
scroll_vertical_label=Svislé posouvání
scroll_horizontal.title=Použít vodorovné posouvání
scroll_horizontal_label=Vodorovné posouvání
scroll_wrapped.title=Použít postupné posouvání
scroll_wrapped_label=Postupné posouvání
spread_none.title=Nesdružovat stránky
spread_none_label=Žádné sdružení
spread_odd.title=Sdruží stránky s umístěním lichých vlevo
spread_odd_label=Sdružení stránek (liché vlevo)
spread_even.title=Sdruží stránky s umístěním sudých vlevo
spread_even_label=Sdružení stránek (sudé vlevo)
# Document properties dialog box # Document properties dialog box
document_properties.title=Vlastnosti dokumentu document_properties.title=Vlastnosti dokumentu
document_properties_label=Vlastnosti dokumentu document_properties_label=Vlastnosti dokumentu
@@ -76,7 +90,7 @@ document_properties_kb={{size_kb}} KB ({{size_b}} bajtů)
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" # LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes. # will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_mb={{size_mb}} MB ({{size_b}} bajtů) document_properties_mb={{size_mb}} MB ({{size_b}} bajtů)
document_properties_title=Nadpis: document_properties_title=Název stránky:
document_properties_author=Autor: document_properties_author=Autor:
document_properties_subject=Předmět: document_properties_subject=Předmět:
document_properties_keywords=Klíčová slova: document_properties_keywords=Klíčová slova:
@@ -89,6 +103,28 @@ document_properties_creator=Vytvořil:
document_properties_producer=Tvůrce PDF: document_properties_producer=Tvůrce PDF:
document_properties_version=Verze PDF: document_properties_version=Verze PDF:
document_properties_page_count=Počet stránek: document_properties_page_count=Počet stránek:
document_properties_page_size=Velikost stránky:
document_properties_page_size_unit_inches=in
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=na výšku
document_properties_page_size_orientation_landscape=na šířku
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Dopis
document_properties_page_size_name_legal=Právní dokument
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Rychlé zobrazování z webu:
document_properties_linearized_yes=Ano
document_properties_linearized_no=Ne
document_properties_close=Zavřít document_properties_close=Zavřít
print_progress_message=Příprava dokumentu pro tisk print_progress_message=Příprava dokumentu pro tisk
@@ -112,6 +148,8 @@ thumbs_label=Náhledy
findbar.title=Najde v dokumentu findbar.title=Najde v dokumentu
findbar_label=Najít findbar_label=Najít
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Strana {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
@@ -129,8 +167,30 @@ find_next.title=Najde další výskyt hledaného textu
find_next_label=Další find_next_label=Další
find_highlight=Zvýraznit find_highlight=Zvýraznit
find_match_case_label=Rozlišovat velikost find_match_case_label=Rozlišovat velikost
find_entire_word_label=Celá slova
find_reached_top=Dosažen začátek dokumentu, pokračuje se od konce find_reached_top=Dosažen začátek dokumentu, pokračuje se od konce
find_reached_bottom=Dosažen konec dokumentu, pokračuje se od začátku find_reached_bottom=Dosažen konec dokumentu, pokračuje se od začátku
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}}. z {{total}} výskytu
find_match_count[two]={{current}}. z {{total}} výskytů
find_match_count[few]={{current}}. z {{total}} výskytů
find_match_count[many]={{current}}. z {{total}} výskytů
find_match_count[other]={{current}}. z {{total}} výskytů
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Více než {{limit}} výskytů
find_match_count_limit[one]=Více než {{limit}} výskyt
find_match_count_limit[two]=Více než {{limit}} výskyty
find_match_count_limit[few]=Více než {{limit}} výskyty
find_match_count_limit[many]=Více než {{limit}} výskytů
find_match_count_limit[other]=Více než {{limit}} výskytů
find_not_found=Hledaný text nenalezen find_not_found=Hledaný text nenalezen
# Error panel labels # Error panel labels
@@ -159,7 +219,7 @@ page_scale_auto=Automatická velikost
page_scale_actual=Skutečná velikost page_scale_actual=Skutečná velikost
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value. # numerical scale value.
page_scale_percent={{scale}}% page_scale_percent={{scale}} %
# Loading indicator messages # Loading indicator messages
loading_error_indicator=Chyba loading_error_indicator=Chyba
@@ -168,6 +228,10 @@ invalid_file_error=Neplatný nebo chybný soubor PDF.
missing_file_error=Chybí soubor PDF. missing_file_error=Chybí soubor PDF.
unexpected_response_error=Neočekávaná odpověď serveru. unexpected_response_error=Neočekávaná odpověď serveru.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -1,134 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=Pòprzédnô strona
previous_label=Pòprzédnô
next.title=Nôslédnô strona
next_label=Nôslédnô
# LOCALIZATION NOTE (page_label, page_of):
# These strings are concatenated to form the "Page: X of Y" string.
# Do not translate "{{pageCount}}", it will be substituted with a number
# representing the total number of pages.
page_label=Strona:
page_of=z {{pageCount}}
zoom_out.title=Zmniészë
zoom_out_label=Zmniészë
zoom_in.title=Zwikszë
zoom_in_label=Wiôlgòsc
zoom.title=Wiôlgòsc
print.title=Drëkùjë
print_label=Drëkùjë
presentation_mode.title=Przéńdzë w trib prezentacje
presentation_mode_label=Trib prezentacje
open_file.title=Òtemkni lopk
open_file_label=Òtemkni
download.title=Zladënk
download_label=Zladënk
bookmark.title=Spamiãtôj wëzdrzatk (kòpérëje, abò òtemkni w nowim òknnie)
bookmark_label=Aktualny wëzdrzatk
find_label=Szëkôj:
find_previous.title=Biéj do pòprzédnégò wënikù szëkbë
find_previous_label=Pòprzédny
find_next.title=Biéj do nôslédnégò wënikù szëkbë
find_next_label=Nôslédny
find_highlight=Pòdszkrzëni wszëtczé
find_match_case_label=Rozeznôwôj miarã lëterów
find_not_found=Nie nalôzł tekstu
find_reached_bottom=Doszedł do kùńca dokùmentu, zaczinającë òd górë
find_reached_top=Doszedł do pòczątkù dokùmentu, zaczinającë òd dołù
toggle_sidebar.title=Pòsuwk wëbiérkù
toggle_sidebar_label=Pòsuwk wëbiérkù
outline.title=Wëskrzëni òbcéch dokùmentu
outline_label=Òbcéch dokùmentu
thumbs.title=Wëskrzëni miniaturë
thumbs_label=Miniaturë
findbar.title=Przeszëkôj dokùment
findbar_label=Nalezë
tools_label=Nôrzãdła
first_page.title=Biéj do pierszi stronë
first_page.label=Biéj do pierszi stronë
last_page.label=Biéj do òstatny stronë
invalid_file_error=Lëchi ôrt, abò pòpsëti lopk PDF.
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=Strona {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=Miniatura stronë {{page}}
# Error panel labels
error_more_info=Wicy infòrmacje
error_less_info=Mni infòrmacje
error_close=Close
error_version_info=PDF.js v{{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=Message: {{wiadło}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=Stack: {{stóg}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=File: {{lopk}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=Line: {{line}}
rendering_error=Pòkôza fela przë renderowanim stronë.
# Predefined zoom values
page_scale_width=Szérzawa stronë
page_scale_fit=Dopasëje stronã
page_scale_auto=Aùtomatnô wiôlgòsc
page_scale_actual=Naturalnô wiôlgòsc
# Loading indicator messages
# LOCALIZATION NOTE (error_line): "{{[percent}}" will be replaced with a percentage
loading_error_indicator=Fela
loading_error=Pòkôza fela przë wczëtiwanim PDFù.
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip.
# "{{[type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
request_password=PDF je zabezpieczony parolą:
printing_not_supported = Òstrzéga: przezérnik nie je do kùńca wspieróny przez drëkôrze
# Context menu
page_rotate_cw.label=Òbkrãcë w prawò
page_rotate_ccw.label=Òbkrãcë w lewò
last_page.title=Biéj do pòprzédny stronë
last_page_label=Biéj do pòprzédny stronë
page_rotate_cw.title=Òbkrãcë w prawò
page_rotate_cw_label=Òbkrãcë w prawò
page_rotate_ccw.title=Òbkrãcë w lewò
page_rotate_ccw_label=Òbkrãcë w lewò
web_fonts_disabled=Sécowé czconczi wëłączoné: włączë je, móc ùżiwac òsadzonëch czconków w lopkach PDF.
missing_file_error=Felëje lopka PDF.
printing_not_ready = Òstrzéga: lopk mùszi do kùńca wczëtac zanim mòże drëkòwac
document_colors_disabled=Dokùmentë PDF nie mògą ù swòjich farwów: \'Pòzwòlë stronóm wëbierac swòje farwë\' je wëłączoné w przezérnikù.
invalid_password=Lëchô parola.
text_annotation_type.alt=[Adnotacjô {{type}}]
tools.title=Tools
first_page_label=Go to First Page

View File

@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Offeryn Dewis Testun
cursor_hand_tool.title=Galluogi Offeryn Llaw cursor_hand_tool.title=Galluogi Offeryn Llaw
cursor_hand_tool_label=Offeryn Llaw cursor_hand_tool_label=Offeryn Llaw
scroll_vertical.title=Defnyddio Sgrolio Fertigol
scroll_vertical_label=Sgrolio Fertigol
scroll_horizontal.title=Defnyddio Sgrolio Fertigol
scroll_horizontal_label=Sgrolio Fertigol
scroll_wrapped.title=Defnyddio Sgrolio Amlapio
scroll_wrapped_label=Sgrolio Amlapio
spread_none.title=Peidio uno taeniadau canol
spread_none_label=Dim Taeniadau
spread_odd.title=Uno taeniadau tudalen yn cychwyn gyda thudalennau odrif
spread_odd_label=Taeniadau Odrifau
spread_even.title=Uno taeniadau tudalen yn cychwyn gyda thudalennau eilrif
spread_even_label=Taeniadau Eilrif
# Document properties dialog box # Document properties dialog box
document_properties.title=Priodweddau Dogfen document_properties.title=Priodweddau Dogfen
document_properties_label=Priodweddau Dogfen document_properties_label=Priodweddau Dogfen
@@ -89,6 +103,28 @@ document_properties_creator=Crewr:
document_properties_producer=Cynhyrchydd PDF: document_properties_producer=Cynhyrchydd PDF:
document_properties_version=Fersiwn PDF: document_properties_version=Fersiwn PDF:
document_properties_page_count=Cyfrif Tudalen: document_properties_page_count=Cyfrif Tudalen:
document_properties_page_size=Maint Tudalen:
document_properties_page_size_unit_inches=o fewn
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=portread
document_properties_page_size_orientation_landscape=tirlun
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Llythyr
document_properties_page_size_name_legal=Cyfreithiol
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Golwg Gwe Cyflym:
document_properties_linearized_yes=Iawn
document_properties_linearized_no=Na
document_properties_close=Cau document_properties_close=Cau
print_progress_message=Paratoi dogfen ar gyfer ei hargraffu print_progress_message=Paratoi dogfen ar gyfer ei hargraffu
@@ -112,6 +148,8 @@ thumbs_label=Lluniau Bach
findbar.title=Canfod yn y Ddogfen findbar.title=Canfod yn y Ddogfen
findbar_label=Canfod findbar_label=Canfod
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Tudalen {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
@@ -129,8 +167,30 @@ find_next.title=Canfod enghraifft nesaf yr ymadrodd
find_next_label=Nesaf find_next_label=Nesaf
find_highlight=Amlygu popeth find_highlight=Amlygu popeth
find_match_case_label=Cydweddu maint find_match_case_label=Cydweddu maint
find_entire_word_label=Geiriau cyfan
find_reached_top=Wedi cyrraedd brig y dudalen, parhau o'r gwaelod find_reached_top=Wedi cyrraedd brig y dudalen, parhau o'r gwaelod
find_reached_bottom=Wedi cyrraedd diwedd y dudalen, parhau o'r brig find_reached_bottom=Wedi cyrraedd diwedd y dudalen, parhau o'r brig
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} o {{total}} cydweddiad
find_match_count[two]={{current}} o {{total}} cydweddiad
find_match_count[few]={{current}} o {{total}} cydweddiad
find_match_count[many]={{current}} o {{total}} cydweddiad
find_match_count[other]={{current}} o {{total}} cydweddiad
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Mwy na {{limit}} cydweddiad
find_match_count_limit[one]=Mwy na {{limit}} cydweddiad
find_match_count_limit[two]=Mwy na {{limit}} cydweddiad
find_match_count_limit[few]=Mwy na {{limit}} cydweddiad
find_match_count_limit[many]=Mwy na {{limit}} cydweddiad
find_match_count_limit[other]=Mwy na {{limit}} cydweddiad
find_not_found=Heb ganfod ymadrodd find_not_found=Heb ganfod ymadrodd
# Error panel labels # Error panel labels
@@ -168,6 +228,10 @@ invalid_file_error=Ffeil PDF annilys neu llwgr.
missing_file_error=Ffeil PDF coll. missing_file_error=Ffeil PDF coll.
unexpected_response_error=Ymateb annisgwyl gan y gweinydd. unexpected_response_error=Ymateb annisgwyl gan y gweinydd.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Markeringsværktøj
cursor_hand_tool.title=Aktiver håndværktøj cursor_hand_tool.title=Aktiver håndværktøj
cursor_hand_tool_label=Håndværktøj cursor_hand_tool_label=Håndværktøj
scroll_vertical.title=Brug vertikal scrolling
scroll_vertical_label=Vertikal scrolling
scroll_horizontal.title=Brug horisontal scrolling
scroll_horizontal_label=Horisontal scrolling
scroll_wrapped.title=Brug ombrudt scrolling
scroll_wrapped_label=Ombrudt scrolling
spread_none.title=Vis enkeltsider
spread_none_label=Enkeltsider
spread_odd.title=Vis opslag med ulige sidenumre til venstre
spread_odd_label=Opslag med forside
spread_even.title=Vis opslag med lige sidenumre til venstre
spread_even_label=Opslag uden forside
# Document properties dialog box # Document properties dialog box
document_properties.title=Dokumentegenskaber document_properties.title=Dokumentegenskaber
document_properties_label=Dokumentegenskaber document_properties_label=Dokumentegenskaber
@@ -89,6 +103,28 @@ document_properties_creator=Program:
document_properties_producer=PDF-producent: document_properties_producer=PDF-producent:
document_properties_version=PDF-version: document_properties_version=PDF-version:
document_properties_page_count=Antal sider: document_properties_page_count=Antal sider:
document_properties_page_size=Sidestørrelse:
document_properties_page_size_unit_inches=in
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=stående
document_properties_page_size_orientation_landscape=liggende
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Letter
document_properties_page_size_name_legal=Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Hurtig web-visning:
document_properties_linearized_yes=Ja
document_properties_linearized_no=Nej
document_properties_close=Luk document_properties_close=Luk
print_progress_message=Forbereder dokument til udskrivning print_progress_message=Forbereder dokument til udskrivning
@@ -112,6 +148,8 @@ thumbs_label=Miniaturer
findbar.title=Find i dokument findbar.title=Find i dokument
findbar_label=Find findbar_label=Find
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Side {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
@@ -129,8 +167,30 @@ find_next.title=Find den næste forekomst
find_next_label=Næste find_next_label=Næste
find_highlight=Fremhæv alle find_highlight=Fremhæv alle
find_match_case_label=Forskel store og små bogstaver find_match_case_label=Forskel store og små bogstaver
find_entire_word_label=Hele ord
find_reached_top=Toppen af siden blev nået, fortsatte fra bunden find_reached_top=Toppen af siden blev nået, fortsatte fra bunden
find_reached_bottom=Bunden af siden blev nået, fortsatte fra toppen find_reached_bottom=Bunden af siden blev nået, fortsatte fra toppen
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} af {{total}} forekomst
find_match_count[two]={{current}} af {{total}} forekomster
find_match_count[few]={{current}} af {{total}} forekomster
find_match_count[many]={{current}} af {{total}} forekomster
find_match_count[other]={{current}} af {{total}} forekomster
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Mere end {{limit}} forekomster
find_match_count_limit[one]=Mere end {{limit}} forekomst
find_match_count_limit[two]=Mere end {{limit}} forekomster
find_match_count_limit[few]=Mere end {{limit}} forekomster
find_match_count_limit[many]=Mere end {{limit}} forekomster
find_match_count_limit[other]=Mere end {{limit}} forekomster
find_not_found=Der blev ikke fundet noget find_not_found=Der blev ikke fundet noget
# Error panel labels # Error panel labels
@@ -168,6 +228,10 @@ invalid_file_error=PDF-filen er ugyldig eller ødelagt.
missing_file_error=Manglende PDF-fil. missing_file_error=Manglende PDF-fil.
unexpected_response_error=Uventet svar fra serveren. unexpected_response_error=Uventet svar fra serveren.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -33,12 +33,12 @@ zoom_out_label=Verkleinern
zoom_in.title=Vergrößern zoom_in.title=Vergrößern
zoom_in_label=Vergrößern zoom_in_label=Vergrößern
zoom.title=Zoom zoom.title=Zoom
print.title=Drucken
print_label=Drucken
presentation_mode.title=In Präsentationsmodus wechseln presentation_mode.title=In Präsentationsmodus wechseln
presentation_mode_label=Präsentationsmodus presentation_mode_label=Präsentationsmodus
open_file.title=Datei öffnen open_file.title=Datei öffnen
open_file_label=Öffnen open_file_label=Öffnen
print.title=Drucken
print_label=Drucken
download.title=Dokument speichern download.title=Dokument speichern
download_label=Speichern download_label=Speichern
bookmark.title=Aktuelle Ansicht (zum Kopieren oder Öffnen in einem neuen Fenster) bookmark.title=Aktuelle Ansicht (zum Kopieren oder Öffnen in einem neuen Fenster)
@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Textauswahl-Werkzeug
cursor_hand_tool.title=Hand-Werkzeug aktivieren cursor_hand_tool.title=Hand-Werkzeug aktivieren
cursor_hand_tool_label=Hand-Werkzeug cursor_hand_tool_label=Hand-Werkzeug
scroll_vertical.title=Seiten übereinander anordnen
scroll_vertical_label=Vertikale Seitenanordnung
scroll_horizontal.title=Seiten nebeneinander anordnen
scroll_horizontal_label=Horizontale Seitenanordnung
scroll_wrapped.title=Seiten neben- und übereinander anordnen, anhängig vom Platz
scroll_wrapped_label=Kombinierte Seitenanordnung
spread_none.title=Seiten nicht nebeneinander anzeigen
spread_none_label=Einzelne Seiten
spread_odd.title=Jeweils eine ungerade und eine gerade Seite nebeneinander anzeigen
spread_odd_label=Ungerade + gerade Seite
spread_even.title=Jeweils eine gerade und eine ungerade Seite nebeneinander anzeigen
spread_even_label=Gerade + ungerade Seite
# Document properties dialog box # Document properties dialog box
document_properties.title=Dokumenteigenschaften document_properties.title=Dokumenteigenschaften
document_properties_label=Dokumenteigenschaften document_properties_label=Dokumenteigenschaften
@@ -89,12 +103,34 @@ document_properties_creator=Anwendung:
document_properties_producer=PDF erstellt mit: document_properties_producer=PDF erstellt mit:
document_properties_version=PDF-Version: document_properties_version=PDF-Version:
document_properties_page_count=Seitenzahl: document_properties_page_count=Seitenzahl:
document_properties_page_size=Seitengröße:
document_properties_page_size_unit_inches=Zoll
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=Hochformat
document_properties_page_size_orientation_landscape=Querformat
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Letter
document_properties_page_size_name_legal=Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Schnelle Webanzeige:
document_properties_linearized_yes=Ja
document_properties_linearized_no=Nein
document_properties_close=Schließen document_properties_close=Schließen
print_progress_message=Dokument wird für Drucken vorbereitet print_progress_message=Dokument wird für Drucken vorbereitet
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by # LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value. # a numerical per cent value.
print_progress_percent={{progress}}% print_progress_percent={{progress}} %
print_progress_close=Abbrechen print_progress_close=Abbrechen
# Tooltips and alt text for side panel toolbar buttons # Tooltips and alt text for side panel toolbar buttons
@@ -112,6 +148,8 @@ thumbs_label=Miniaturansichten
findbar.title=Dokument durchsuchen findbar.title=Dokument durchsuchen
findbar_label=Suchen findbar_label=Suchen
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Seite {{page}}
# Thumbnails panel item (tooltip and alt text for images) # Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number. # number.
@@ -129,8 +167,30 @@ find_next.title=Nächstes Vorkommen des Suchbegriffs finden
find_next_label=Weiter find_next_label=Weiter
find_highlight=Alle hervorheben find_highlight=Alle hervorheben
find_match_case_label=Groß-/Kleinschreibung beachten find_match_case_label=Groß-/Kleinschreibung beachten
find_entire_word_label=Ganze Wörter
find_reached_top=Anfang des Dokuments erreicht, fahre am Ende fort find_reached_top=Anfang des Dokuments erreicht, fahre am Ende fort
find_reached_bottom=Ende des Dokuments erreicht, fahre am Anfang fort find_reached_bottom=Ende des Dokuments erreicht, fahre am Anfang fort
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} von {{total}} Übereinstimmung
find_match_count[two]={{current}} von {{total}} Übereinstimmungen
find_match_count[few]={{current}} von {{total}} Übereinstimmungen
find_match_count[many]={{current}} von {{total}} Übereinstimmungen
find_match_count[other]={{current}} von {{total}} Übereinstimmungen
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Mehr als {{limit}} Übereinstimmungen
find_match_count_limit[one]=Mehr als {{limit}} Übereinstimmung
find_match_count_limit[two]=Mehr als {{limit}} Übereinstimmungen
find_match_count_limit[few]=Mehr als {{limit}} Übereinstimmungen
find_match_count_limit[many]=Mehr als {{limit}} Übereinstimmungen
find_match_count_limit[other]=Mehr als {{limit}} Übereinstimmungen
find_not_found=Suchbegriff nicht gefunden find_not_found=Suchbegriff nicht gefunden
# Error panel labels # Error panel labels
@@ -159,7 +219,7 @@ page_scale_auto=Automatischer Zoom
page_scale_actual=Originalgröße page_scale_actual=Originalgröße
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value. # numerical scale value.
page_scale_percent={{scale}}% page_scale_percent={{scale}} %
# Loading indicator messages # Loading indicator messages
loading_error_indicator=Fehler loading_error_indicator=Fehler
@@ -168,6 +228,10 @@ invalid_file_error=Ungültige oder beschädigte PDF-Datei
missing_file_error=Fehlende PDF-Datei missing_file_error=Fehlende PDF-Datei
unexpected_response_error=Unerwartete Antwort des Servers unexpected_response_error=Unerwartete Antwort des Servers
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -0,0 +1,248 @@
# Copyright 2012 Mozilla Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=Pjerwjejšny bok
previous_label=Slědk
next.title=Pśiducy bok
next_label=Dalej
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
page.title=Bok
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document.
of_pages=z {{pagesCount}}
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document.
page_of_pages=({{pageNumber}} z {{pagesCount}})
zoom_out.title=Pómjeńšyś
zoom_out_label=Pómjeńšyś
zoom_in.title=Pówětšyś
zoom_in_label=Pówětšyś
zoom.title=Skalěrowanje
presentation_mode.title=Do prezentaciskego modusa pśejś
presentation_mode_label=Prezentaciski modus
open_file.title=Dataju wócyniś
open_file_label=Wócyniś
print.title=Śišćaś
print_label=Śišćaś
download.title=Ześěgnuś
download_label=Ześěgnuś
bookmark.title=Aktualny naglěd (kopěrowaś abo w nowem woknje wócyniś)
bookmark_label=Aktualny naglěd
# Secondary toolbar and context menu
tools.title=Rědy
tools_label=Rědy
first_page.title=K prědnemu bokoju
first_page.label=K prědnemu bokoju
first_page_label=K prědnemu bokoju
last_page.title=K slědnemu bokoju
last_page.label=K slědnemu bokoju
last_page_label=K slědnemu bokoju
page_rotate_cw.title=Wobwjertnuś ako špěra źo
page_rotate_cw.label=Wobwjertnuś ako špěra źo
page_rotate_cw_label=Wobwjertnuś ako špěra źo
page_rotate_ccw.title=Wobwjertnuś nawopaki ako špěra źo
page_rotate_ccw.label=Wobwjertnuś nawopaki ako špěra źo
page_rotate_ccw_label=Wobwjertnuś nawopaki ako špěra źo
cursor_text_select_tool.title=Rěd za wuběranje teksta zmóžniś
cursor_text_select_tool_label=Rěd za wuběranje teksta
cursor_hand_tool.title=Rucny rěd zmóžniś
cursor_hand_tool_label=Rucny rěd
scroll_vertical.title=Wertikalne suwanje wužywaś
scroll_vertical_label=Wertikalnje suwanje
scroll_horizontal.title=Horicontalne suwanje wužywaś
scroll_horizontal_label=Horicontalne suwanje
scroll_wrapped.title=Pózlažke suwanje wužywaś
scroll_wrapped_label=Pózlažke suwanje
spread_none.title=Boki njezwězaś
spread_none_label=Žeden dwójny bok
spread_odd.title=Boki zachopinajucy z njerownymi bokami zwězaś
spread_odd_label=Njerowne boki
spread_even.title=Boki zachopinajucy z rownymi bokami zwězaś
spread_even_label=Rowne boki
# Document properties dialog box
document_properties.title=Dokumentowe kakosći
document_properties_label=Dokumentowe kakosći
document_properties_file_name= dataje:
document_properties_file_size=Wjelikosć dataje:
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
document_properties_kb={{size_kb}} KB ({{size_b}} bajtow)
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_mb={{size_mb}} MB ({{size_b}} bajtow)
document_properties_title=Titel:
document_properties_author=Awtor:
document_properties_subject=Tema:
document_properties_keywords=Klucowe słowa:
document_properties_creation_date=Datum napóranja:
document_properties_modification_date=Datum změny:
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
# will be replaced by the creation/modification date, and time, of the PDF file.
document_properties_date_string={{date}}, {{time}}
document_properties_creator=Awtor:
document_properties_producer=PDF-gótowaŕ:
document_properties_version=PDF-wersija:
document_properties_page_count=Licba bokow:
document_properties_page_size=Wjelikosć boka:
document_properties_page_size_unit_inches=col
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=wusoki format
document_properties_page_size_orientation_landscape=prěcny format
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Letter
document_properties_page_size_name_legal=Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Fast Web View:
document_properties_linearized_yes=Jo
document_properties_linearized_no=
document_properties_close=Zacyniś
print_progress_message=Dokument pśigótujo se za śišćanje
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value.
print_progress_percent={{progress}}%
print_progress_close=Pśetergnuś
# Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are
# tooltips)
toggle_sidebar.title=Bócnicu pokazaś/schowaś
toggle_sidebar_notification.title=Bocnicu pśešaltowaś (dokument wopśimujo pśeglěd/pśipiski)
toggle_sidebar_label=Bócnicu pokazaś/schowaś
document_outline.title=Dokumentowe naraźenje pokazaś (dwójne kliknjenje, aby se wšykne zapiski pokazali/schowali)
document_outline_label=Dokumentowa struktura
attachments.title=Pśidanki pokazaś
attachments_label=Pśidanki
thumbs.title=Miniatury pokazaś
thumbs_label=Miniatury
findbar.title=W dokumenśe pytaś
findbar_label=Pytaś
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Bok {{page}}
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=Bok {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=Miniatura boka {{page}}
# Find panel button title and messages
find_input.title=Pytaś
find_input.placeholder=W dokumenśe pytaś
find_previous.title=Pjerwjejšne wustupowanje pytańskego wuraza pytaś
find_previous_label=Slědk
find_next.title=Pśidujuce wustupowanje pytańskego wuraza pytaś
find_next_label=Dalej
find_highlight=Wšykne wuzwignuś
find_match_case_label=Na wjelikopisanje źiwaś
find_entire_word_label=Cełe słowa
find_reached_top=Zachopjeńk dokumenta dostany, pókšacujo se z kóńcom
find_reached_bottom=Kóńc dokumenta dostany, pókšacujo se ze zachopjeńkom
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} z {{total}} wótpowědnika
find_match_count[two]={{current}} z {{total}} wótpowědnikowu
find_match_count[few]={{current}} z {{total}} wótpowědnikow
find_match_count[many]={{current}} z {{total}} wótpowědnikow
find_match_count[other]={{current}} z {{total}} wótpowědnikow
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Wěcej ako {{limit}} wótpowědnikow
find_match_count_limit[one]=Wěcej ako {{limit}} wótpowědnik
find_match_count_limit[two]=Wěcej ako {{limit}} wótpowědnika
find_match_count_limit[few]=Wěcej ako {{limit}} wótpowědniki
find_match_count_limit[many]=Wěcej ako {{limit}} wótpowědnikow
find_match_count_limit[other]=Wěcej ako {{limit}} wótpowědnikow
find_not_found=Pytański wuraz njejo se namakał
# Error panel labels
error_more_info=Wěcej informacijow
error_less_info=Mjenjej informacijow
error_close=Zacyniś
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID.
error_version_info=PDF.js v{{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=Powěźenka: {{message}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=Lisćina zawołanjow: {{stack}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=Dataja: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=Smužka: {{line}}
rendering_error=Pśi zwobraznjanju boka jo zmólka nastała.
# Predefined zoom values
page_scale_width=Šyrokosć boka
page_scale_fit=Wjelikosć boka
page_scale_auto=Awtomatiske skalěrowanje
page_scale_actual=Aktualna wjelikosć
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value.
page_scale_percent={{scale}}%
# Loading indicator messages
loading_error_indicator=Zmólka
loading_error=Pśi zacytowanju PDF jo zmólka nastała.
invalid_file_error=Njepłaśiwa abo wobškóźona PDF-dataja.
missing_file_error=Felujuca PDF-dataja.
unexpected_response_error=Njewócakane serwerowe wótegrono.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[Typ pśipiskow: {{type}}]
password_label=Zapódajśo gronidło, aby PDF-dataju wócynił.
password_invalid=Njepłaśiwe gronidło. Pšosym wopytajśo hyšći raz.
password_ok=W pórěźe
password_cancel=Pśetergnuś
printing_not_supported=Warnowanje: Śišćanje njepódpěra se połnje pśez toś ten wobglědowak.
printing_not_ready=Warnowanje: PDF njejo se za śišćanje dopołnje zacytał.
web_fonts_disabled=Webpisma su znjemóžnjone: njejo móžno, zasajźone PDF-pisma wužywaś.
document_colors_not_allowed=PDF-dokumenty njesměju swóje barwy wužywaś: 'Bokam dowóliś, swóje barwy wužywaś' jo we wobglědowaku znjemóžnjone.

View File

@@ -65,6 +65,20 @@ cursor_text_select_tool_label=Εργαλείο επιλογής κειμένου
cursor_hand_tool.title=Ενεργοποίηση εργαλείου χεριού cursor_hand_tool.title=Ενεργοποίηση εργαλείου χεριού
cursor_hand_tool_label=Εργαλείο χεριού cursor_hand_tool_label=Εργαλείο χεριού
scroll_vertical.title=Χρήση κάθετης κύλισης
scroll_vertical_label=Κάθετη κύλιση
scroll_horizontal.title=Χρήση οριζόντιας κύλισης
scroll_horizontal_label=Οριζόντια κύλιση
scroll_wrapped.title=Χρήση κυκλικής κύλισης
scroll_wrapped_label=Κυκλική κύλιση
spread_none.title=Να μην γίνει σύνδεση επεκτάσεων σελίδων
spread_none_label=Χωρίς επεκτάσεις
spread_odd.title=Σύνδεση επεκτάσεων σελίδων ξεκινώντας από τις μονές σελίδες
spread_odd_label=Μονές επεκτάσεις
spread_even.title=Σύνδεση επεκτάσεων σελίδων ξεκινώντας από τις ζυγές σελίδες
spread_even_label=Ζυγές επεκτάσεις
# Document properties dialog box # Document properties dialog box
document_properties.title=Ιδιότητες εγγράφου document_properties.title=Ιδιότητες εγγράφου
document_properties_label=Ιδιότητες εγγράφου document_properties_label=Ιδιότητες εγγράφου
@@ -89,6 +103,28 @@ document_properties_creator=Δημιουργός:
document_properties_producer=Παραγωγός PDF: document_properties_producer=Παραγωγός PDF:
document_properties_version=Έκδοση PDF: document_properties_version=Έκδοση PDF:
document_properties_page_count=Αριθμός σελίδων: document_properties_page_count=Αριθμός σελίδων:
document_properties_page_size=Μέγεθος σελίδας:
document_properties_page_size_unit_inches=ίντσες
document_properties_page_size_unit_millimeters=χιλιοστά
document_properties_page_size_orientation_portrait=κατακόρυφα
document_properties_page_size_orientation_landscape=οριζόντια
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Επιστολή
document_properties_page_size_name_legal=Τύπου Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Ταχεία προβολή ιστού:
document_properties_linearized_yes=Ναι
document_properties_linearized_no=Όχι
document_properties_close=Κλείσιμο document_properties_close=Κλείσιμο
print_progress_message=Προετοιμασία του εγγράφου για εκτύπωση print_progress_message=Προετοιμασία του εγγράφου για εκτύπωση
@@ -129,8 +165,30 @@ find_next.title=Εύρεση της επόμενης εμφάνισης της
find_next_label=Επόμενο find_next_label=Επόμενο
find_highlight=Επισήμανση όλων find_highlight=Επισήμανση όλων
find_match_case_label=Ταίριασμα χαρακτήρα find_match_case_label=Ταίριασμα χαρακτήρα
find_entire_word_label=Ολόκληρες λέξεις
find_reached_top=Έλευση στην αρχή του εγγράφου, συνέχεια από το τέλος find_reached_top=Έλευση στην αρχή του εγγράφου, συνέχεια από το τέλος
find_reached_bottom=Έλευση στο τέλος του εγγράφου, συνέχεια από την αρχή find_reached_bottom=Έλευση στο τέλος του εγγράφου, συνέχεια από την αρχή
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} από {{total}} αντιστοιχία
find_match_count[two]={{current}} από {{total}} αντιστοιχίες
find_match_count[few]={{current}} από {{total}} αντιστοιχίες
find_match_count[many]={{current}} από {{total}} αντιστοιχίες
find_match_count[other]={{current}} από {{total}} αντιστοιχίες
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=Περισσότερες από {{limit}} αντιστοιχίες
find_match_count_limit[one]=Περισσότερες από {{limit}} αντιστοιχία
find_match_count_limit[two]=Περισσότερες από {{limit}} αντιστοιχίες
find_match_count_limit[few]=Περισσότερες από {{limit}} αντιστοιχίες
find_match_count_limit[many]=Περισσότερες από {{limit}} αντιστοιχίες
find_match_count_limit[other]=Περισσότερες από {{limit}} αντιστοιχίες
find_not_found=Η φράση δεν βρέθηκε find_not_found=Η φράση δεν βρέθηκε
# Error panel labels # Error panel labels
@@ -168,6 +226,10 @@ invalid_file_error=Μη έγκυρο ή κατεστραμμένο αρχείο
missing_file_error=Λείπει αρχείο PDF. missing_file_error=Λείπει αρχείο PDF.
unexpected_response_error=Μη αναμενόμενη απόκριση από το διακομιστή. unexpected_response_error=Μη αναμενόμενη απόκριση από το διακομιστή.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in # "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types). # the PDF spec (32000-1:2008 Table 169 Annotation types).

View File

@@ -0,0 +1,248 @@
# Copyright 2012 Mozilla Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Main toolbar buttons (tooltips and alt text for images)
previous.title=Previous Page
previous_label=Previous
next.title=Next Page
next_label=Next
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
page.title=Page
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
# representing the total number of pages in the document.
of_pages=of {{pagesCount}}
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
# will be replaced by a number representing the currently visible page,
# respectively a number representing the total number of pages in the document.
page_of_pages=({{pageNumber}} of {{pagesCount}})
zoom_out.title=Zoom Out
zoom_out_label=Zoom Out
zoom_in.title=Zoom In
zoom_in_label=Zoom In
zoom.title=Zoom
presentation_mode.title=Switch to Presentation Mode
presentation_mode_label=Presentation Mode
open_file.title=Open File
open_file_label=Open
print.title=Print
print_label=Print
download.title=Download
download_label=Download
bookmark.title=Current view (copy or open in new window)
bookmark_label=Current View
# Secondary toolbar and context menu
tools.title=Tools
tools_label=Tools
first_page.title=Go to First Page
first_page.label=Go to First Page
first_page_label=Go to First Page
last_page.title=Go to Last Page
last_page.label=Go to Last Page
last_page_label=Go to Last Page
page_rotate_cw.title=Rotate Clockwise
page_rotate_cw.label=Rotate Clockwise
page_rotate_cw_label=Rotate Clockwise
page_rotate_ccw.title=Rotate Anti-Clockwise
page_rotate_ccw.label=Rotate Anti-Clockwise
page_rotate_ccw_label=Rotate Anti-Clockwise
cursor_text_select_tool.title=Enable Text Selection Tool
cursor_text_select_tool_label=Text Selection Tool
cursor_hand_tool.title=Enable Hand Tool
cursor_hand_tool_label=Hand Tool
scroll_vertical.title=Use Vertical Scrolling
scroll_vertical_label=Vertical Scrolling
scroll_horizontal.title=Use Horizontal Scrolling
scroll_horizontal_label=Horizontal Scrolling
scroll_wrapped.title=Use Wrapped Scrolling
scroll_wrapped_label=Wrapped Scrolling
spread_none.title=Do not join page spreads
spread_none_label=No Spreads
spread_odd.title=Join page spreads starting with odd-numbered pages
spread_odd_label=Odd Spreads
spread_even.title=Join page spreads starting with even-numbered pages
spread_even_label=Even Spreads
# Document properties dialog box
document_properties.title=Document Properties
document_properties_label=Document Properties
document_properties_file_name=File name:
document_properties_file_size=File size:
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
document_properties_kb={{size_kb}} kB ({{size_b}} bytes)
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
# will be replaced by the PDF file size in megabytes, respectively in bytes.
document_properties_mb={{size_mb}} MB ({{size_b}} bytes)
document_properties_title=Title:
document_properties_author=Author:
document_properties_subject=Subject:
document_properties_keywords=Keywords:
document_properties_creation_date=Creation Date:
document_properties_modification_date=Modification Date:
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
# will be replaced by the creation/modification date, and time, of the PDF file.
document_properties_date_string={{date}}, {{time}}
document_properties_creator=Creator:
document_properties_producer=PDF Producer:
document_properties_version=PDF Version:
document_properties_page_count=Page Count:
document_properties_page_size=Page Size:
document_properties_page_size_unit_inches=in
document_properties_page_size_unit_millimeters=mm
document_properties_page_size_orientation_portrait=portrait
document_properties_page_size_orientation_landscape=landscape
document_properties_page_size_name_a3=A3
document_properties_page_size_name_a4=A4
document_properties_page_size_name_letter=Letter
document_properties_page_size_name_legal=Legal
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement and orientation, of the (current) page.
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
# the document; usually called "Fast Web View" in English locales of Adobe software.
document_properties_linearized=Fast Web View:
document_properties_linearized_yes=Yes
document_properties_linearized_no=No
document_properties_close=Close
print_progress_message=Preparing document for printing
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
# a numerical per cent value.
print_progress_percent={{progress}}%
print_progress_close=Cancel
# Tooltips and alt text for side panel toolbar buttons
# (the _label strings are alt text for the buttons, the .title strings are
# tooltips)
toggle_sidebar.title=Toggle Sidebar
toggle_sidebar_notification.title=Toggle Sidebar (document contains outline/attachments)
toggle_sidebar_label=Toggle Sidebar
document_outline.title=Show Document Outline (double-click to expand/collapse all items)
document_outline_label=Document Outline
attachments.title=Show Attachments
attachments_label=Attachments
thumbs.title=Show Thumbnails
thumbs_label=Thumbnails
findbar.title=Find in Document
findbar_label=Find
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
page_canvas=Page {{page}}
# Thumbnails panel item (tooltip and alt text for images)
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
# number.
thumb_page_title=Page {{page}}
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
# number.
thumb_page_canvas=Thumbnail of Page {{page}}
# Find panel button title and messages
find_input.title=Find
find_input.placeholder=Find in document
find_previous.title=Find the previous occurrence of the phrase
find_previous_label=Previous
find_next.title=Find the next occurrence of the phrase
find_next_label=Next
find_highlight=Highlight all
find_match_case_label=Match case
find_entire_word_label=Whole words
find_reached_top=Reached top of document, continued from bottom
find_reached_bottom=Reached end of document, continued from top
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
# [one|two|few|many|other], with [other] as the default value.
# "{{current}}" and "{{total}}" will be replaced by a number representing the
# index of the currently active find result, respectively a number representing
# the total number of matches in the document.
find_match_count={[ plural(total) ]}
find_match_count[one]={{current}} of {{total}} match
find_match_count[two]={{current}} of {{total}} matches
find_match_count[few]={{current}} of {{total}} matches
find_match_count[many]={{current}} of {{total}} matches
find_match_count[other]={{current}} of {{total}} matches
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
# [zero|one|two|few|many|other], with [other] as the default value.
# "{{limit}}" will be replaced by a numerical value.
find_match_count_limit={[ plural(limit) ]}
find_match_count_limit[zero]=More than {{limit}} matches
find_match_count_limit[one]=More than {{limit}} match
find_match_count_limit[two]=More than {{limit}} matches
find_match_count_limit[few]=More than {{limit}} matches
find_match_count_limit[many]=More than {{limit}} matches
find_match_count_limit[other]=More than {{limit}} matches
find_not_found=Phrase not found
# Error panel labels
error_more_info=More Information
error_less_info=Less Information
error_close=Close
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
# replaced by the PDF.JS version and build ID.
error_version_info=PDF.js v{{version}} (build: {{build}})
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
# english string describing the error.
error_message=Message: {{message}}
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
# trace.
error_stack=Stack: {{stack}}
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
error_file=File: {{file}}
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
error_line=Line: {{line}}
rendering_error=An error occurred while rendering the page.
# Predefined zoom values
page_scale_width=Page Width
page_scale_fit=Page Fit
page_scale_auto=Automatic Zoom
page_scale_actual=Actual Size
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
# numerical scale value.
page_scale_percent={{scale}}%
# Loading indicator messages
loading_error_indicator=Error
loading_error=An error occurred while loading the PDF.
invalid_file_error=Invalid or corrupted PDF file.
missing_file_error=Missing PDF file.
unexpected_response_error=Unexpected server response.
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
# replaced by the modification date, and time, of the annotation.
annotation_date_string={{date}}, {{time}}
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
# "{{type}}" will be replaced with an annotation type from a list defined in
# the PDF spec (32000-1:2008 Table 169 Annotation types).
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type.alt=[{{type}} Annotation]
password_label=Enter the password to open this PDF file.
password_invalid=Invalid password. Please try again.
password_ok=OK
password_cancel=Cancel
printing_not_supported=Warning: Printing is not fully supported by this browser.
printing_not_ready=Warning: The PDF is not fully loaded for printing.
web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts.
document_colors_not_allowed=PDF documents are not allowed to use their own colours: Allow pages to choose their own colours is deactivated in the browser.

Some files were not shown because too many files have changed in this diff Show More