预览接口同时支持get和post请求,重新提交gitignore影响的目录文件
|
@ -12,7 +12,6 @@ import org.slf4j.Logger;
|
|||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Controller;
|
||||
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.RequestMethod;
|
||||
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.HttpServletResponse;
|
||||
import java.io.*;
|
||||
import java.net.URLDecoder;
|
||||
import java.util.Arrays;
|
||||
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) {
|
||||
FileAttribute fileAttribute = fileUtils.getFileAttribute(url);
|
||||
req.setAttribute("fileKey", req.getParameter("fileKey"));
|
||||
|
@ -61,18 +61,22 @@ public class OnlinePreviewController {
|
|||
return filePreview.filePreviewHandle(url, model, fileAttribute);
|
||||
}
|
||||
|
||||
|
||||
@RequestMapping(value = "/picturesPreview")
|
||||
public String picturesPreview(Model model, HttpServletRequest req) {
|
||||
@RequestMapping(value = "picturesPreview")
|
||||
public String picturesPreview(Model model, HttpServletRequest req) throws UnsupportedEncodingException {
|
||||
String urls = req.getParameter("urls");
|
||||
String currentUrl = req.getParameter("currentUrl");
|
||||
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("currentUrl", currentUrl);
|
||||
model.addAttribute("currentUrl",decodedCurrentUrl);
|
||||
return "picture";
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据url获取文件内容
|
||||
* 当pdfjs读取存在跨域问题的文件时将通过此接口读取
|
||||
|
@ -94,7 +98,7 @@ public class OnlinePreviewController {
|
|||
* 通过api接口入队
|
||||
* @param url 请编码后在入队
|
||||
*/
|
||||
@GetMapping("/addTask")
|
||||
@RequestMapping("/addTask")
|
||||
@ResponseBody
|
||||
public String addQueueTask(String url) {
|
||||
logger.info("添加转码队列url:{}", url);
|
||||
|
|
After Width: | Height: | Size: 218 B |
After Width: | Height: | Size: 332 B |
After Width: | Height: | Size: 228 B |
After Width: | Height: | Size: 349 B |
After Width: | Height: | Size: 297 B |
After Width: | Height: | Size: 490 B |
After Width: | Height: | Size: 347 B |
After Width: | Height: | Size: 694 B |
After Width: | Height: | Size: 179 B |
After Width: | Height: | Size: 261 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 621 B |
|
@ -0,0 +1,246 @@
|
|||
# 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=ঘড়ির কাঁটার বিপরীতে ঘোরাও
|
||||
|
||||
cursor_text_select_tool.title=লেখা নির্বাচক টুল সক্রিয় করুন
|
||||
cursor_text_select_tool_label=লেখা নির্বাচক টুল
|
||||
cursor_hand_tool.title=হ্যান্ড টুল সক্রিয় করুন
|
||||
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.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}} কেবি ({{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}} এমবি ({{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=পিডিএফ প্রস্তুতকারক:
|
||||
document_properties_version=পিডিএফ সংষ্করণ:
|
||||
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=বন্ধ
|
||||
|
||||
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_notification.title=সাইডবার টগল (নথিতে আউটলাইন/এটাচমেন্ট রয়েছে)
|
||||
toggle_sidebar_label=সাইডবার টগল করুন
|
||||
document_outline.title=নথির আউটলাইন দেখাও (সব আইটেম প্রসারিত/সঙ্কুচিত করতে ডবল ক্লিক করুন)
|
||||
document_outline_label=নথির রূপরেখা
|
||||
attachments.title=সংযুক্তি দেখাও
|
||||
attachments_label=সংযুক্তি
|
||||
thumbs.title=থাম্বনেইল সমূহ প্রদর্শন করুন
|
||||
thumbs_label=থাম্বনেইল সমূহ
|
||||
findbar.title=নথির মধ্যে খুঁজুন
|
||||
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)
|
||||
# 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_entire_word_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.
|
||||
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=বাক্যাংশ পাওয়া যায়নি
|
||||
|
||||
# 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: {{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=পিডিএফ লোড করার সময় ত্রুটি দেখা দিয়েছে।
|
||||
invalid_file_error=অকার্যকর অথবা ক্ষতিগ্রস্ত পিডিএফ ফাইল।
|
||||
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=পিডিএফ ফাইলটি ওপেন করতে পাসওয়ার্ড দিন।
|
||||
password_invalid=ভুল পাসওয়ার্ড। অনুগ্রহ করে আবার চেষ্টা করুন।
|
||||
password_ok=ঠিক আছে
|
||||
password_cancel=বাতিল
|
||||
|
||||
printing_not_supported=সতর্কতা: এই ব্রাউজারে মুদ্রণ সম্পূর্ণভাবে সমর্থিত নয়।
|
||||
printing_not_ready=সতর্কীকরণ: পিডিএফটি মুদ্রণের জন্য সম্পূর্ণ লোড হয়নি।
|
||||
web_fonts_disabled=ওয়েব ফন্ট নিষ্ক্রিয়: সংযুক্ত পিডিএফ ফন্ট ব্যবহার করা যাচ্ছে না।
|
||||
document_colors_not_allowed=পিডিএফ ডকুমেন্টকে তাদের নিজস্ব রঙ ব্যবহারে অনুমতি নেই: 'পাতা তাদের নিজেস্ব রঙ নির্বাচন করতে অনুমতি দিন' এই ব্রাউজারে নিষ্ক্রিয় রয়েছে।
|
|
@ -0,0 +1,245 @@
|
|||
# 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=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 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.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
|
||||
|
||||
# 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.
|
||||
|
||||
# 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 colors: “Allow pages to choose their own colors” is deactivated in the browser.
|
|
@ -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 फोरमान बिलाइखौ बिसोरनि निजि गाब बाहायनो गनायथि होनाय जाया: 'बिसोरनि निजि गाब बासिखनो बिलाइखौ गनायथि हो'-खौ ब्राउजारआव लोरबां खालामनाय जायो।
|
|
@ -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.
|
|
@ -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=Mě 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=Ně
|
||||
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.
|
|
@ -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.
|
|
@ -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=Kuatiarogue mboyvegua
|
||||
previous_label=Mboyvegua
|
||||
next.title=Kuatiarogue upeigua
|
||||
next_label=Upeigua
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Kuatiarogue
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages={{pagesCount}} gui
|
||||
# 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=Momichĩ
|
||||
zoom_out_label=Momichĩ
|
||||
zoom_in.title=Mbotuicha
|
||||
zoom_in_label=Mbotuicha
|
||||
zoom.title=Tuichakue
|
||||
presentation_mode.title=Jehechauka reko moambue
|
||||
presentation_mode_label=Jehechauka reko
|
||||
open_file.title=Marandurendápe jeike
|
||||
open_file_label=Jeike
|
||||
print.title=Monguatia
|
||||
print_label=Monguatia
|
||||
download.title=Mboguejy
|
||||
download_label=Mboguejy
|
||||
bookmark.title=Ag̃agua jehecha (mbohasarã térã eike peteĩ ovetã pyahúpe)
|
||||
bookmark_label=Ag̃agua jehecha
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Tembipuru
|
||||
tools_label=Tembipuru
|
||||
first_page.title=Kuatiarogue ñepyrũme jeho
|
||||
first_page.label=Kuatiarogue ñepyrũme jeho
|
||||
first_page_label=Kuatiarogue ñepyrũme jeho
|
||||
last_page.title=Kuatiarogue pahápe jeho
|
||||
last_page.label=Kuatiarogue pahápe jeho
|
||||
last_page_label=Kuatiarogue pahápe jeho
|
||||
page_rotate_cw.title=Aravóicha mbojere
|
||||
page_rotate_cw.label=Aravóicha mbojere
|
||||
page_rotate_cw_label=Aravóicha mbojere
|
||||
page_rotate_ccw.title=Aravo rapykue gotyo mbojere
|
||||
page_rotate_ccw.label=Aravo rapykue gotyo mbojere
|
||||
page_rotate_ccw_label=Aravo rapykue gotyo mbojere
|
||||
|
||||
cursor_text_select_tool.title=Emyandy moñe'ẽrã jeporavo rembipuru
|
||||
cursor_text_select_tool_label=Moñe'ẽrã jeporavo rembipuru
|
||||
cursor_hand_tool.title=Tembipuru po pegua myandy
|
||||
cursor_hand_tool_label=Tembipuru po pegua
|
||||
|
||||
scroll_vertical.title=Eipuru jeku’e ykeguáva
|
||||
scroll_vertical_label=Jeku’e ykeguáva
|
||||
scroll_horizontal.title=Eipuru jeku’e yvate gotyo
|
||||
scroll_horizontal_label=Jeku’e yvate gotyo
|
||||
scroll_wrapped.title=Eipuru jeku’e mbohyrupyre
|
||||
scroll_wrapped_label=Jeku’e mbohyrupyre
|
||||
|
||||
spread_none.title=Ani ejuaju spreads kuatiarogue ndive
|
||||
spread_none_label=Spreads ỹre
|
||||
spread_odd.title=Embojuaju kuatiarogue jepysokue eñepyrũvo kuatiarogue impar-vagui
|
||||
spread_odd_label=Spreads impar
|
||||
spread_even.title=Embojuaju kuatiarogue jepysokue eñepyrũvo kuatiarogue par-vagui
|
||||
spread_even_label=Ipukuve uvei
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Kuatia mba'etee…
|
||||
document_properties_label=Kuatia mba'etee…
|
||||
document_properties_file_name=Marandurenda réra:
|
||||
document_properties_file_size=Marandurenda tuichakue:
|
||||
# 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=Teratee:
|
||||
document_properties_author=Apohára:
|
||||
document_properties_subject=Mba'egua:
|
||||
document_properties_keywords=Jehero:
|
||||
document_properties_creation_date=Teñoihague arange:
|
||||
document_properties_modification_date=Iñambue hague arange:
|
||||
# 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=Apo'ypyha:
|
||||
document_properties_producer=PDF mbosako'iha:
|
||||
document_properties_version=PDF mbojuehegua:
|
||||
document_properties_page_count=Kuatiarogue papapy:
|
||||
document_properties_page_size=Kuatiarogue tuichakue:
|
||||
document_properties_page_size_unit_inches=Amo
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=Oĩháicha
|
||||
document_properties_page_size_orientation_landscape=apaisado
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=Kuatiañe'ẽ
|
||||
document_properties_page_size_name_legal=Tee
|
||||
# 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=Ñanduti jahecha pya’e:
|
||||
document_properties_linearized_yes=Añete
|
||||
document_properties_linearized_no=Ahániri
|
||||
document_properties_close=Mboty
|
||||
|
||||
print_progress_message=Embosako'i kuatia emonguatia hag̃ua…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Heja
|
||||
|
||||
# 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=Tenda yke moambue
|
||||
toggle_sidebar_notification.title=Embojopyru tenda ykegua (kuatia oguereko kora/marandurenda moirũha)
|
||||
toggle_sidebar_label=Tenda yke moambue
|
||||
document_outline.title=Ehechauka kuatia rape (eikutu mokõi jey embotuicha/emomichĩ hag̃ua opavavete mba'epuru)
|
||||
document_outline_label=Kuatia apopyre
|
||||
attachments.title=Moirũha jehechauka
|
||||
attachments_label=Moirũha
|
||||
thumbs.title=Mba'emirĩ jehechauka
|
||||
thumbs_label=Mba'emirĩ
|
||||
findbar.title=Kuatiápe jeheka
|
||||
findbar_label=Juhu
|
||||
|
||||
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
|
||||
page_canvas=Kuatiarogue {{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=Kuatiarogue {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Kuatiarogue mba'emirĩ {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Juhu
|
||||
find_input.placeholder=Kuatiápe jejuhu…
|
||||
find_previous.title=Ejuhu ñe'ẽrysýi osẽ'ypy hague
|
||||
find_previous_label=Mboyvegua
|
||||
find_next.title=Eho ñe'ẽ juhupyre upeiguávape
|
||||
find_next_label=Upeigua
|
||||
find_highlight=Embojekuaavepa
|
||||
find_match_case_label=Ejesareko taiguasu/taimichĩre
|
||||
find_entire_word_label=Ñe’ẽ oĩmbáva
|
||||
find_reached_top=Ojehupyty kuatia ñepyrũ, oku'ejeýta kuatia paha guive
|
||||
find_reached_bottom=Ojehupyty kuatia paha, oku'ejeýta kuatia ñepyrũ guive
|
||||
# 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}} ojojoguáva
|
||||
find_match_count[two]={{current}} {{total}} ojojoguáva
|
||||
find_match_count[few]={{current}} {{total}} ojojoguáva
|
||||
find_match_count[many]={{current}} {{total}} ojojoguáva
|
||||
find_match_count[other]={{current}} {{total}} ojojoguáva
|
||||
# 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]=Hetave {{limit}} ojojoguáva
|
||||
find_match_count_limit[one]=Hetave {{limit}} ojojogua
|
||||
find_match_count_limit[two]=Hetave {{limit}} ojojoguáva
|
||||
find_match_count_limit[few]=Hetave {{limit}} ojojoguáva
|
||||
find_match_count_limit[many]=Hetave {{limit}} ojojoguáva
|
||||
find_match_count_limit[other]=Hetave {{limit}} ojojoguáva
|
||||
find_not_found=Ñe'ẽrysýi ojejuhu'ỹva
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Maranduve
|
||||
error_less_info=Sa'ive marandu
|
||||
error_close=Mboty
|
||||
# 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=Ñe'ẽmondo: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Mbojo'apy: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Marandurenda: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Tairenda: {{line}}
|
||||
rendering_error=Oiko jejavy ehechaukasévo kuatiarogue.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Kuatiarogue pekue
|
||||
page_scale_fit=Kuatiarogue ñemoĩporã
|
||||
page_scale_auto=Tuichakue ijeheguíva
|
||||
page_scale_actual=Tuichakue ag̃agua
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Oĩvaíva
|
||||
loading_error=Oiko jejavy PDF oñemyeñyhẽnguévo.
|
||||
invalid_file_error=PDF marandurenda ndoikóiva térã ivaipyréva.
|
||||
missing_file_error=Ndaipóri PDF marandurenda
|
||||
unexpected_response_error=Mohendahavusu mbohovái ñeha'arõ'ỹva.
|
||||
|
||||
# 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=[Jehaipy {{type}}]
|
||||
password_label=Emoinge ñe'ẽñemi eipe'a hag̃ua ko marandurenda PDF.
|
||||
password_invalid=Ñe'ẽñemi ndoikóiva. Eha'ã jey.
|
||||
password_ok=MONEĨ
|
||||
password_cancel=Heja
|
||||
|
||||
printing_not_supported=Kyhyjerã: Ñembokuatia ndojokupytypái ko kundahára ndive.
|
||||
printing_not_ready=Kyhyjerã: Ko PDF nahenyhẽmbái oñembokuatia hag̃uáicha.
|
||||
web_fonts_disabled=Ñanduti taity oñemongéma: ndaikatumo'ãi eipuru PDF jehai'íva taity.
|
||||
document_colors_not_allowed=Kuatiakuéra PDF ndaikatúi oipuru isa'ykuéra tee: “Emoneĩ kuatiaroguépe toiporavo isa'ykuéra tee” oñemongehína kundahárape.
|
|
@ -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=Předchadna strona
|
||||
previous_label=Wróćo
|
||||
next.title=Přichodna strona
|
||||
next_label=Dale
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Strona
|
||||
# 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=Pomjeńšić
|
||||
zoom_out_label=Pomjeńšić
|
||||
zoom_in.title=Powjetšić
|
||||
zoom_in_label=Powjetšić
|
||||
zoom.title=Skalowanje
|
||||
presentation_mode.title=Do prezentaciskeho modusa přeńć
|
||||
presentation_mode_label=Prezentaciski modus
|
||||
open_file.title=Dataju wočinić
|
||||
open_file_label=Wočinić
|
||||
print.title=Ćišćeć
|
||||
print_label=Ćišćeć
|
||||
download.title=Sćahnyć
|
||||
download_label=Sćahnyć
|
||||
bookmark.title=Aktualny napohlad (kopěrować abo w nowym woknje wočinić)
|
||||
bookmark_label=Aktualny napohlad
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Nastroje
|
||||
tools_label=Nastroje
|
||||
first_page.title=K prěnjej stronje
|
||||
first_page.label=K prěnjej stronje
|
||||
first_page_label=K prěnjej stronje
|
||||
last_page.title=K poslednjej stronje
|
||||
last_page.label=K poslednjej stronje
|
||||
last_page_label=K poslednjej stronje
|
||||
page_rotate_cw.title=K směrej časnika wjerćeć
|
||||
page_rotate_cw.label=K směrej časnika wjerćeć
|
||||
page_rotate_cw_label=K směrej časnika wjerćeć
|
||||
page_rotate_ccw.title=Přećiwo směrej časnika wjerćeć
|
||||
page_rotate_ccw.label=Přećiwo směrej časnika wjerćeć
|
||||
page_rotate_ccw_label=Přećiwo směrej časnika wjerćeć
|
||||
|
||||
cursor_text_select_tool.title=Nastroj za wuběranje teksta zmóžnić
|
||||
cursor_text_select_tool_label=Nastroj za wuběranje teksta
|
||||
cursor_hand_tool.title=Ručny nastroj zmóžnić
|
||||
cursor_hand_tool_label=Ručny nastroj
|
||||
|
||||
scroll_vertical.title=Wertikalne suwanje wužiwać
|
||||
scroll_vertical_label=Wertikalnje suwanje
|
||||
scroll_horizontal.title=Horicontalne suwanje wužiwać
|
||||
scroll_horizontal_label=Horicontalne suwanje
|
||||
scroll_wrapped.title=Postupne suwanje wužiwać
|
||||
scroll_wrapped_label=Postupne suwanje
|
||||
|
||||
spread_none.title=Strony njezwjazać
|
||||
spread_none_label=Žana dwójna strona
|
||||
spread_odd.title=Strony započinajo z njerunymi stronami zwjazać
|
||||
spread_odd_label=Njerune strony
|
||||
spread_even.title=Strony započinajo z runymi stronami zwjazać
|
||||
spread_even_label=Rune strony
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Dokumentowe kajkosće…
|
||||
document_properties_label=Dokumentowe kajkosće…
|
||||
document_properties_file_name=Mjeno dataje:
|
||||
document_properties_file_size=Wulkosć 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=Titul:
|
||||
document_properties_author=Awtor:
|
||||
document_properties_subject=Předmjet:
|
||||
document_properties_keywords=Klučowe słowa:
|
||||
document_properties_creation_date=Datum wutworjenja:
|
||||
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-zhotowjer:
|
||||
document_properties_version=PDF-wersija:
|
||||
document_properties_page_count=Ličba stronow:
|
||||
document_properties_page_size=Wulkosć strony:
|
||||
document_properties_page_size_unit_inches=cól
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=wysoki format
|
||||
document_properties_page_size_orientation_landscape=prěčny 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=Haj
|
||||
document_properties_linearized_no=Ně
|
||||
document_properties_close=Začinić
|
||||
|
||||
print_progress_message=Dokument so za ćišćenje přihotuje…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Přetorhnyć
|
||||
|
||||
# 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óčnicu pokazać/schować
|
||||
toggle_sidebar_notification.title=Bóčnicu přepinać (dokument wobsahuje wobrys/přiwěški)
|
||||
toggle_sidebar_label=Bóčnicu pokazać/schować
|
||||
document_outline.title=Dokumentowy naćisk pokazać (dwójne kliknjenje, zo bychu so wšě zapiski pokazali/schowali)
|
||||
document_outline_label=Dokumentowa struktura
|
||||
attachments.title=Přiwěški pokazać
|
||||
attachments_label=Přiwěški
|
||||
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=Strona {{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=Strona {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Miniatura strony {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Pytać
|
||||
find_input.placeholder=W dokumenće pytać…
|
||||
find_previous.title=Předchadne wustupowanje pytanskeho wuraza pytać
|
||||
find_previous_label=Wróćo
|
||||
find_next.title=Přichodne wustupowanje pytanskeho wuraza pytać
|
||||
find_next_label=Dale
|
||||
find_highlight=Wšě wuzběhnyć
|
||||
find_match_case_label=Wulkopisanje wobkedźbować
|
||||
find_entire_word_label=Cyłe słowa
|
||||
find_reached_top=Spočatk dokumenta docpěty, pokročuje so z kóncom
|
||||
find_reached_bottom=Kónc dokument docpěty, pokročuje so ze spočatkom
|
||||
# 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}} wotpowědnika
|
||||
find_match_count[two]={{current}} z {{total}} wotpowědnikow
|
||||
find_match_count[few]={{current}} z {{total}} wotpowědnikow
|
||||
find_match_count[many]={{current}} z {{total}} wotpowědnikow
|
||||
find_match_count[other]={{current}} z {{total}} wotpowě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]=Wjace hač {{limit}} wotpowědnikow
|
||||
find_match_count_limit[one]=Wjace hač {{limit}} wotpowědnik
|
||||
find_match_count_limit[two]=Wjace hač {{limit}} wotpowědnikaj
|
||||
find_match_count_limit[few]=Wjace hač {{limit}} wotpowědniki
|
||||
find_match_count_limit[many]=Wjace hač {{limit}} wotpowědnikow
|
||||
find_match_count_limit[other]=Wjace hač {{limit}} wotpowědnikow
|
||||
find_not_found=Pytanski wuraz njeje so namakał
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Wjace informacijow
|
||||
error_less_info=Mjenje informacijow
|
||||
error_close=Začinić
|
||||
# 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=Zdźělenka: {{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=Linka: {{line}}
|
||||
rendering_error=Při zwobraznjenju strony je zmylk wustupił.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Šěrokosć strony
|
||||
page_scale_fit=Wulkosć strony
|
||||
page_scale_auto=Awtomatiske skalowanje
|
||||
page_scale_actual=Aktualna wulkosć
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Zmylk
|
||||
loading_error=Při začitowanju PDF je zmylk wustupił.
|
||||
invalid_file_error=Njepłaćiwa abo wobškodźena PDF-dataja.
|
||||
missing_file_error=Falowaca PDF-dataja.
|
||||
unexpected_response_error=Njewočakowana serwerowa wotmołwa.
|
||||
|
||||
# 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řispomnjenki: {{type}}]
|
||||
password_label=Zapodajće hesło, zo byšće PDF-dataju wočinił.
|
||||
password_invalid=Njepłaćiwe hesło. Prošu spytajće hišće raz.
|
||||
password_ok=W porjadku
|
||||
password_cancel=Přetorhnyć
|
||||
|
||||
printing_not_supported=Warnowanje: Ćišćenje so přez tutón wobhladowak połnje njepodpěruje.
|
||||
printing_not_ready=Warnowanje: PDF njeje so za ćišćenje dospołnje začitał.
|
||||
web_fonts_disabled=Webpisma su znjemóžnjene: njeje móžno, zasadźene PDF-pisma wužiwać.
|
||||
document_colors_not_allowed=PDF-dokumenty njesmědźa swoje barby wužiwać: 'Stronam dowolić, swoje barby wužiwać' je we wobhladowaku znjemóžnjene.
|
|
@ -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=Pagina previe
|
||||
previous_label=Previe
|
||||
next.title=Pagina sequente
|
||||
next_label=Sequente
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Pagina
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=de {{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}} de {{pagesCount}})
|
||||
|
||||
zoom_out.title=Distantiar
|
||||
zoom_out_label=Distantiar
|
||||
zoom_in.title=Approximar
|
||||
zoom_in_label=Approximar
|
||||
zoom.title=Zoom
|
||||
presentation_mode.title=Excambiar a modo presentation
|
||||
presentation_mode_label=Modo presentation
|
||||
open_file.title=Aperir le file
|
||||
open_file_label=Aperir
|
||||
print.title=Imprimer
|
||||
print_label=Imprimer
|
||||
download.title=Discargar
|
||||
download_label=Discargar
|
||||
bookmark.title=Vista actual (copiar o aperir in un nove fenestra)
|
||||
bookmark_label=Vista actual
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Instrumentos
|
||||
tools_label=Instrumentos
|
||||
first_page.title=Ir al prime pagina
|
||||
first_page.label=Ir al prime pagina
|
||||
first_page_label=Ir al prime pagina
|
||||
last_page.title=Ir al prime pagina
|
||||
last_page.label=Ir al prime pagina
|
||||
last_page_label=Ir al prime pagina
|
||||
page_rotate_cw.title=Rotar in senso horari
|
||||
page_rotate_cw.label=Rotar in senso horari
|
||||
page_rotate_cw_label=Rotar in senso horari
|
||||
page_rotate_ccw.title=Rotar in senso antihorari
|
||||
page_rotate_ccw.label=Rotar in senso antihorari
|
||||
page_rotate_ccw_label=Rotar in senso antihorari
|
||||
|
||||
cursor_text_select_tool.title=Activar le instrumento de selection de texto
|
||||
cursor_text_select_tool_label=Instrumento de selection de texto
|
||||
cursor_hand_tool.title=Activar le instrumento mano
|
||||
cursor_hand_tool_label=Instrumento mano
|
||||
|
||||
scroll_vertical.title=Usar rolamento vertical
|
||||
scroll_vertical_label=Rolamento vertical
|
||||
scroll_horizontal.title=Usar rolamento horizontal
|
||||
scroll_horizontal_label=Rolamento horizontal
|
||||
scroll_wrapped.title=Usar rolamento incapsulate
|
||||
scroll_wrapped_label=Rolamento incapsulate
|
||||
|
||||
spread_none.title=Non junger paginas dual
|
||||
spread_none_label=Sin paginas dual
|
||||
spread_odd.title=Junger paginas dual a partir de paginas con numeros impar
|
||||
spread_odd_label=Paginas dual impar
|
||||
spread_even.title=Junger paginas dual a partir de paginas con numeros par
|
||||
spread_even_label=Paginas dual par
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Proprietates del documento…
|
||||
document_properties_label=Proprietates del documento…
|
||||
document_properties_file_name=Nomine del file:
|
||||
document_properties_file_size=Dimension de file:
|
||||
# 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=Titulo:
|
||||
document_properties_author=Autor:
|
||||
document_properties_subject=Subjecto:
|
||||
document_properties_keywords=Parolas clave:
|
||||
document_properties_creation_date=Data de creation:
|
||||
document_properties_modification_date=Data de modification:
|
||||
# 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=Productor PDF:
|
||||
document_properties_version=Version PDF:
|
||||
document_properties_page_count=Numero de paginas:
|
||||
document_properties_page_size=Dimension del pagina:
|
||||
document_properties_page_size_unit_inches=in
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=vertical
|
||||
document_properties_page_size_orientation_landscape=horizontal
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=Littera
|
||||
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 rapide:
|
||||
document_properties_linearized_yes=Si
|
||||
document_properties_linearized_no=No
|
||||
document_properties_close=Clauder
|
||||
|
||||
print_progress_message=Preparation del documento pro le impression…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Cancellar
|
||||
|
||||
# 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=Monstrar/celar le barra lateral
|
||||
toggle_sidebar_notification.title=Monstrar/celar le barra lateral (le documento contine structura/attachamentos)
|
||||
toggle_sidebar_label=Monstrar/celar le barra lateral
|
||||
document_outline.title=Monstrar le schema del documento (clic duple pro expander/contraher tote le elementos)
|
||||
document_outline_label=Schema del documento
|
||||
attachments.title=Monstrar le annexos
|
||||
attachments_label=Annexos
|
||||
thumbs.title=Monstrar le vignettes
|
||||
thumbs_label=Vignettes
|
||||
findbar.title=Cercar in le documento
|
||||
findbar_label=Cercar
|
||||
|
||||
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
|
||||
page_canvas=Pagina {{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=Pagina {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Vignette del pagina {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Cercar
|
||||
find_input.placeholder=Cercar in le documento…
|
||||
find_previous.title=Trovar le previe occurrentia del phrase
|
||||
find_previous_label=Previe
|
||||
find_next.title=Trovar le successive occurrentia del phrase
|
||||
find_next_label=Sequente
|
||||
find_highlight=Evidentiar toto
|
||||
find_match_case_label=Distinguer majusculas/minusculas
|
||||
find_entire_word_label=Parolas integre
|
||||
find_reached_top=Initio del documento attingite, continuation ab fin
|
||||
find_reached_bottom=Fin del documento attingite, continuation ab initio
|
||||
# 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}} concordantia
|
||||
find_match_count[two]={{current}} de {{total}} concordantias
|
||||
find_match_count[few]={{current}} de {{total}} concordantias
|
||||
find_match_count[many]={{current}} de {{total}} concordantias
|
||||
find_match_count[other]={{current}} de {{total}} concordantias
|
||||
# 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]=Plus de {{limit}} concordantias
|
||||
find_match_count_limit[one]=Plus de {{limit}} concordantia
|
||||
find_match_count_limit[two]=Plus de {{limit}} concordantias
|
||||
find_match_count_limit[few]=Plus de {{limit}} concordantias
|
||||
find_match_count_limit[many]=Plus de {{limit}} correspondentias
|
||||
find_match_count_limit[other]=Plus de {{limit}} concordantias
|
||||
find_not_found=Phrase non trovate
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Plus de informationes
|
||||
error_less_info=Minus de informationes
|
||||
error_close=Clauder
|
||||
# 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=Pila: {{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=Linea: {{line}}
|
||||
rendering_error=Un error occurreva durante que on processava le pagina.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Largessa pagina plen
|
||||
page_scale_fit=Pagina integre
|
||||
page_scale_auto=Zoom automatic
|
||||
page_scale_actual=Dimension 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=Error
|
||||
loading_error=Un error occurreva durante que on cargava le file PDF.
|
||||
invalid_file_error=File PDF corrumpite o non valide.
|
||||
missing_file_error=File PDF mancante.
|
||||
unexpected_response_error=Responsa del servitor inexpectate.
|
||||
|
||||
# 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=Insere le contrasigno pro aperir iste file PDF.
|
||||
password_invalid=Contrasigno invalide. Per favor retenta.
|
||||
password_ok=OK
|
||||
password_cancel=Cancellar
|
||||
|
||||
printing_not_supported=Attention : le impression non es totalmente supportate per ce navigator.
|
||||
printing_not_ready=Attention: le file PDF non es integremente cargate pro lo poter imprimer.
|
||||
web_fonts_disabled=Le typos de litteras web es disactivate: impossibile usar le typos de litteras PDF incorporate.
|
||||
document_colors_not_allowed=Le documentos PDF non pote utilisar lor proprie colores: “Autorisar le paginas web a utilisar lor proprie colores” es disactivate in le navigator.
|
|
@ -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=Asebter azewwar
|
||||
previous_label=Azewwar
|
||||
next.title=Asebter d-iteddun
|
||||
next_label=Ddu ɣer zdat
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Asebter
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=ɣef {{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}} n {{pagesCount}})
|
||||
|
||||
zoom_out.title=Semẓi
|
||||
zoom_out_label=Semẓi
|
||||
zoom_in.title=Semɣeṛ
|
||||
zoom_in_label=Semɣeṛ
|
||||
zoom.title=Semɣeṛ/Semẓi
|
||||
presentation_mode.title=Uɣal ɣer Uskar Tihawt
|
||||
presentation_mode_label=Askar Tihawt
|
||||
open_file.title=Ldi Afaylu
|
||||
open_file_label=Ldi
|
||||
print.title=Siggez
|
||||
print_label=Siggez
|
||||
download.title=Sider
|
||||
download_label=Azdam
|
||||
bookmark.title=Timeẓri tamirant (nɣel neɣ ldi ɣef usfaylu amaynut)
|
||||
bookmark_label=Askan amiran
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Ifecka
|
||||
tools_label=Ifecka
|
||||
first_page.title=Ddu ɣer usebter amezwaru
|
||||
first_page.label=Ddu ɣer usebter amezwaru
|
||||
first_page_label=Ddu ɣer usebter amezwaru
|
||||
last_page.title=Ddu ɣer usebter aneggaru
|
||||
last_page.label=Ddu ɣer usebter aneggaru
|
||||
last_page_label=Ddu ɣer usebter aneggaru
|
||||
page_rotate_cw.title=Tuzzya tusrigt
|
||||
page_rotate_cw.label=Tuzzya tusrigt
|
||||
page_rotate_cw_label=Tuzzya tusrigt
|
||||
page_rotate_ccw.title=Tuzzya amgal-usrig
|
||||
page_rotate_ccw.label=Tuzzya amgal-usrig
|
||||
page_rotate_ccw_label=Tuzzya amgal-usrig
|
||||
|
||||
cursor_text_select_tool.title=Rmed afecku n tefrant n uḍris
|
||||
cursor_text_select_tool_label=Afecku n tefrant n uḍris
|
||||
cursor_hand_tool.title=Rmed afecku afus
|
||||
cursor_hand_tool_label=Afecku afus
|
||||
|
||||
scroll_vertical.title=Seqdec adrurem ubdid
|
||||
scroll_vertical_label=Adrurem ubdid
|
||||
scroll_horizontal.title=Seqdec adrurem aglawan
|
||||
scroll_horizontal_label=Adrurem aglawan
|
||||
scroll_wrapped.title=Seqdec adrurem yuẓen
|
||||
scroll_wrapped_label=Adrurem yuẓen
|
||||
|
||||
spread_none.title=Ur sedday ara isiɣzaf n usebter
|
||||
spread_none_label=Ulac isiɣzaf
|
||||
spread_odd.title=Seddu isiɣzaf n usebter ibeddun s yisebtar irayuganen
|
||||
spread_odd_label=Isiɣzaf irayuganen
|
||||
spread_even.title=Seddu isiɣzaf n usebter ibeddun s yisebtar iyuganen
|
||||
spread_even_label=Isiɣzaf iyuganen
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Taɣaṛa n isemli…
|
||||
document_properties_label=Taɣaṛa n isemli…
|
||||
document_properties_file_name=Isem n ufaylu:
|
||||
document_properties_file_size=Teɣzi n ufaylu:
|
||||
# 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}} KAṬ ({{size_b}} ibiten)
|
||||
# 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}} MAṬ ({{size_b}} iṭamḍanen)
|
||||
document_properties_title=Azwel:
|
||||
document_properties_author=Ameskar:
|
||||
document_properties_subject=Amgay:
|
||||
document_properties_keywords=Awalen n tsaruţ
|
||||
document_properties_creation_date=Azemz n tmerna:
|
||||
document_properties_modification_date=Azemz n usnifel:
|
||||
# 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=Yerna-t:
|
||||
document_properties_producer=Afecku n uselket PDF:
|
||||
document_properties_version=Lqem PDF:
|
||||
document_properties_page_count=Amḍan n isebtar:
|
||||
document_properties_page_size=Tuγzi n usebter:
|
||||
document_properties_page_size_unit_inches=deg
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=s teɣzi
|
||||
document_properties_page_size_orientation_landscape=s tehri
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=Asekkil
|
||||
document_properties_page_size_name_legal=Usḍif
|
||||
# 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=Taskant Web taruradt:
|
||||
document_properties_linearized_yes=Ih
|
||||
document_properties_linearized_no=Ala
|
||||
document_properties_close=Mdel
|
||||
|
||||
print_progress_message=Aheggi i usiggez n isemli…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Sefsex
|
||||
|
||||
# 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=Sken/Fer agalis adisan
|
||||
toggle_sidebar_notification.title=Ffer/Sken agalis adisan (isemli yegber aɣawas/imeddayen)
|
||||
toggle_sidebar_label=Sken/Fer agalis adisan
|
||||
document_outline.title=Sken isemli (Senned snat tikal i wesemɣer/Afneẓ n iferdisen meṛṛa)
|
||||
document_outline_label=Isɣalen n isebtar
|
||||
attachments.title=Sken ticeqqufin yeddan
|
||||
attachments_label=Ticeqqufin yeddan
|
||||
thumbs.title=Sken tanfult.
|
||||
thumbs_label=Tinfulin
|
||||
findbar.title=Nadi deg isemli
|
||||
findbar_label=Nadi
|
||||
|
||||
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
|
||||
page_canvas=Asebter {{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=Asebter {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Tanfult n usebter {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Nadi
|
||||
find_input.placeholder=Nadi deg isemli…
|
||||
find_previous.title=Aff-d tamseḍriwt n twinest n deffir
|
||||
find_previous_label=Azewwar
|
||||
find_next.title=Aff-d timseḍriwt n twinest d-iteddun
|
||||
find_next_label=Ddu ɣer zdat
|
||||
find_highlight=Err izirig imaṛṛa
|
||||
find_match_case_label=Qadeṛ amasal n isekkilen
|
||||
find_entire_word_label=Awalen iččuranen
|
||||
find_reached_top=Yabbeḍ s afella n usebter, tuɣalin s wadda
|
||||
find_reached_bottom=Tebḍeḍ s adda n usebter, tuɣalin s afella
|
||||
# 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}} seg {{total}} n tmeɣṛuḍin
|
||||
find_match_count[two]={{current}} seg {{total}} n tmeɣṛuḍin
|
||||
find_match_count[few]={{current}} seg {{total}} n tmeɣṛuḍin
|
||||
find_match_count[many]={{current}} seg {{total}} n tmeɣṛuḍin
|
||||
find_match_count[other]={{current}} seg {{total}} n tmeɣṛuḍin
|
||||
# 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]=Ugar n {{limit}} n tmeɣṛuḍin
|
||||
find_match_count_limit[one]=Ugar n {{limit}} n tmeɣṛuḍin
|
||||
find_match_count_limit[two]=Ugar n {{limit}} n tmeɣṛuḍin
|
||||
find_match_count_limit[few]=Ugar n {{limit}} n tmeɣṛuḍin
|
||||
find_match_count_limit[many]=Ugar n {{limit}} n tmeɣṛuḍin
|
||||
find_match_count_limit[other]=Ugar n {{limit}} n tmeɣṛuḍin
|
||||
find_not_found=Ulac tawinest
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Ugar n telɣut
|
||||
error_less_info=Drus n isalen
|
||||
error_close=Mdel
|
||||
# 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=Izen: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Tanebdant: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Afaylu: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Izirig: {{line}}
|
||||
rendering_error=Teḍra-d tuccḍa deg uskan n usebter.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Tehri n usebter
|
||||
page_scale_fit=Asebter imaṛṛa
|
||||
page_scale_auto=Asemɣeṛ/Asemẓi awurman
|
||||
page_scale_actual=Teɣzi tilawt
|
||||
# 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=Teḍra-d tuccḍa deg alluy n PDF:
|
||||
invalid_file_error=Afaylu PDF arameɣtu neɣ yexṣeṛ.
|
||||
missing_file_error=Ulac afaylu PDF.
|
||||
unexpected_response_error=Aqeddac yerra-d yir tiririt ur nettwaṛǧi ara.
|
||||
|
||||
# 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=[Tabzimt {{type}}]
|
||||
password_label=Sekcem awal uffir akken ad ldiḍ afaylu-yagi PDF
|
||||
password_invalid=Awal uffir mačči d ameɣtu, Ɛreḍ tikelt-nniḍen.
|
||||
password_ok=IH
|
||||
password_cancel=Sefsex
|
||||
|
||||
printing_not_supported=Ɣuṛ-k: Asiggez ur ittusefrak ara yakan imaṛṛa deg iminig-a.
|
||||
printing_not_ready=Ɣuṛ-k: Afaylu PDF ur d-yuli ara imeṛṛa akken ad ittusiggez.
|
||||
web_fonts_disabled=Tisefsiyin web ttwassensent; D awezɣi useqdec n tsefsiyin yettwarnan ɣer PDF.
|
||||
document_colors_not_allowed=Isemliyen PDF ur zmiren ara ad sqedcen initen-nsen: 'Sireg isebtar akken ad fernen initen-nsen' ur yermid ara deg iminig.
|
|
@ -0,0 +1,152 @@
|
|||
# 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=({{pageNumber}} ຈາກ {{pagesCount}})
|
||||
|
||||
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_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.
|
||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||
# 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_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=ຈົດໝາຍ
|
||||
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.
|
||||
# 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.
|
||||
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
||||
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
||||
document_properties_close=ປິດ
|
||||
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
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_notification.title=ເປີດ/ປິດແຖບຂ້າງ (ເອກະສານມີເຄົ້າຮ່າງ/ໄຟລ໌ແນບ)
|
||||
toggle_sidebar_label=ເປີດ/ປິດແຖບຂ້າງ
|
||||
document_outline_label=ເຄົ້າຮ່າງເອກະສານ
|
||||
findbar_label=ຄົ້ນຫາ
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=ຄົ້ນຫາ
|
||||
# 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.
|
||||
|
||||
# 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.
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
rendering_error=ມີຂໍ້ຜິດພາດເກີດຂື້ນຂະນະທີ່ກຳລັງເຣັນເດີຫນ້າ.
|
||||
|
||||
# Predefined zoom values
|
||||
# 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 ບໍ່ຖືກຕ້ອງຫລືເສຍຫາຍ.
|
||||
|
||||
# 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"
|
||||
password_ok=ຕົກລົງ
|
||||
password_cancel=ຍົກເລີກ
|
||||
|
|
@ -0,0 +1,220 @@
|
|||
# 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=Īprīkšejā lopa
|
||||
previous_label=Īprīkšejā
|
||||
next.title=Nuokomuo lopa
|
||||
next_label=Nuokomuo
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Lopa
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=nu {{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}} nu {{pagesCount}})
|
||||
|
||||
zoom_out.title=Attuolynuot
|
||||
zoom_out_label=Attuolynuot
|
||||
zoom_in.title=Pītuvynuot
|
||||
zoom_in_label=Pītuvynuot
|
||||
zoom.title=Palelynuojums
|
||||
presentation_mode.title=Puorslēgtīs iz Prezentacejis režymu
|
||||
presentation_mode_label=Prezentacejis režyms
|
||||
open_file.title=Attaiseit failu
|
||||
open_file_label=Attaiseit
|
||||
print.title=Drukuošona
|
||||
print_label=Drukōt
|
||||
download.title=Lejupīluode
|
||||
download_label=Lejupīluodeit
|
||||
bookmark.title=Pošreizejais skots (kopēt voi attaiseit jaunā lūgā)
|
||||
bookmark_label=Pošreizejais skots
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Reiki
|
||||
tools_label=Reiki
|
||||
first_page.title=Īt iz pyrmū lopu
|
||||
first_page.label=Īt iz pyrmū lopu
|
||||
first_page_label=Īt iz pyrmū lopu
|
||||
last_page.title=Īt iz piedejū lopu
|
||||
last_page.label=Īt iz piedejū lopu
|
||||
last_page_label=Īt iz piedejū lopu
|
||||
page_rotate_cw.title=Pagrīzt pa pulksteni
|
||||
page_rotate_cw.label=Pagrīzt pa pulksteni
|
||||
page_rotate_cw_label=Pagrīzt pa pulksteni
|
||||
page_rotate_ccw.title=Pagrīzt pret pulksteni
|
||||
page_rotate_ccw.label=Pagrīzt pret pulksteni
|
||||
page_rotate_ccw_label=Pagrīzt pret pulksteni
|
||||
|
||||
cursor_text_select_tool.title=Aktivizēt teksta izvieles reiku
|
||||
cursor_text_select_tool_label=Teksta izvieles reiks
|
||||
cursor_hand_tool.title=Aktivēt rūkys reiku
|
||||
cursor_hand_tool_label=Rūkys reiks
|
||||
|
||||
scroll_vertical.title=Izmontōt vertikalū ritinōšonu
|
||||
scroll_vertical_label=Vertikalō ritinōšona
|
||||
scroll_horizontal.title=Izmontōt horizontalū ritinōšonu
|
||||
scroll_horizontal_label=Horizontalō ritinōšona
|
||||
scroll_wrapped.title=Izmontōt mārūgojamū ritinōšonu
|
||||
scroll_wrapped_label=Mārūgojamō ritinōšona
|
||||
|
||||
spread_none.title=Naizmontōt lopu atvāruma režimu
|
||||
spread_none_label=Bez atvārumim
|
||||
spread_odd.title=Izmontōt lopu atvārumus sōkut nu napōra numeru lopom
|
||||
spread_odd_label=Napōra lopys pa kreisi
|
||||
spread_even.title=Izmontōt lopu atvārumus sōkut nu pōra numeru lopom
|
||||
spread_even_label=Pōra lopys pa kreisi
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Dokumenta īstatiejumi…
|
||||
document_properties_label=Dokumenta īstatiejumi…
|
||||
document_properties_file_name=Faila nūsaukums:
|
||||
document_properties_file_size=Faila izmārs:
|
||||
# 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}} biti)
|
||||
# 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}} biti)
|
||||
document_properties_title=Nūsaukums:
|
||||
document_properties_author=Autors:
|
||||
document_properties_subject=Tema:
|
||||
document_properties_keywords=Atslāgi vuordi:
|
||||
document_properties_creation_date=Izveides datums:
|
||||
document_properties_modification_date=lobuošonys datums:
|
||||
# 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=Radeituojs:
|
||||
document_properties_producer=PDF producents:
|
||||
document_properties_version=PDF verseja:
|
||||
document_properties_page_count=Lopu skaits:
|
||||
document_properties_page_size=Lopas izmārs:
|
||||
document_properties_page_size_unit_inches=collas
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=portreta orientaceja
|
||||
document_properties_page_size_orientation_landscape=ainovys orientaceja
|
||||
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=Jā
|
||||
document_properties_linearized_no=Nā
|
||||
document_properties_close=Aiztaiseit
|
||||
|
||||
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=Atceļt
|
||||
|
||||
# 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=Puorslēgt suonu jūslu
|
||||
toggle_sidebar_notification.title=Toggle Sidebar (document contains outline/attachments)
|
||||
toggle_sidebar_label=Puorslēgt suonu jūslu
|
||||
document_outline.title=Show Document Outline (double-click to expand/collapse all items)
|
||||
document_outline_label=Dokumenta saturs
|
||||
attachments.title=Show Attachments
|
||||
attachments_label=Attachments
|
||||
thumbs.title=Paruodeit seiktālus
|
||||
thumbs_label=Seiktāli
|
||||
findbar.title=Mekleit dokumentā
|
||||
findbar_label=Mekleit
|
||||
|
||||
# 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=Lopa {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Lopys {{page}} seiktāls
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Mekleit
|
||||
find_input.placeholder=Mekleit dokumentā…
|
||||
find_previous.title=Atrast īprīkšejū
|
||||
find_previous_label=Īprīkšejā
|
||||
find_next.title=Atrast nuokamū
|
||||
find_next_label=Nuokomuo
|
||||
find_highlight=Īkruosuot vysys
|
||||
find_match_case_label=Lelū, mozū burtu jiuteigs
|
||||
find_reached_top=Sasnīgts dokumenta suokums, turpynojom nu beigom
|
||||
find_reached_bottom=Sasnīgtys dokumenta beigys, turpynojom nu suokuma
|
||||
find_not_found=Frāze nav atrosta
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Vairuok informacejis
|
||||
error_less_info=mozuok informacejis
|
||||
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=Ziņuojums: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Steks: {{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=Ryndeņa: {{line}}
|
||||
rendering_error=Attālojūt lopu rodās klaida
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Lopys plotumā
|
||||
page_scale_fit=Ītylpynūt lopu
|
||||
page_scale_auto=Automatiskais izmārs
|
||||
page_scale_actual=Patīsais izmārs
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Klaida
|
||||
loading_error=Īluodejūt PDF nūtyka klaida.
|
||||
invalid_file_error=Nadereigs voi būjuots PDF fails.
|
||||
missing_file_error=PDF fails nav atrosts.
|
||||
unexpected_response_error=Unexpected server response.
|
||||
|
||||
# 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=Īvodit paroli, kab attaiseitu PDF failu.
|
||||
password_invalid=Napareiza parole, raugit vēļreiz.
|
||||
password_ok=Labi
|
||||
password_cancel=Atceļt
|
||||
|
||||
printing_not_supported=Uzmaneibu: Drukuošona nu itei puorlūka dorbojās tikai daleji.
|
||||
printing_not_ready=Uzmaneibu: PDF nav pilneibā īluodeits drukuošonai.
|
||||
web_fonts_disabled=Šķārsteikla fonti nav aktivizāti: Navar īgult PDF fontus.
|
||||
document_colors_not_allowed=PDF dokumentym nav atļauts izmantuot pošym sovys kruosys: „Atļaut lopom izavieleit pošom sovys kruosys“ ir deaktiveits puorlyukā.
|
|
@ -0,0 +1,184 @@
|
|||
# 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=घडीको विपरित दिशामा घुमाउनुहोस्
|
||||
|
||||
cursor_text_select_tool.title=पाठ चयन उपकरण सक्षम गर्नुहोस्
|
||||
cursor_text_select_tool_label=पाठ चयन उपकरण
|
||||
cursor_hand_tool.title=हाते उपकरण सक्षम गर्नुहोस्
|
||||
cursor_hand_tool_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=बन्द गर्नुहोस्
|
||||
|
||||
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_notification.title=साइडबार टगल गर्नुहोस् (कागजातमा समावेश भएको कुराहरू रूपरेखा/attachments)
|
||||
toggle_sidebar_label=टगल साइडबार
|
||||
document_outline.title=कागजातको रूपरेखा देखाउनुहोस् (सबै वस्तुहरू विस्तार/पतन गर्न डबल-क्लिक गर्नुहोस्)
|
||||
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=पृष्ठको अन्त्यमा पुगीयो, शिर्षबाट जारी गरिएको थियो
|
||||
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 (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=ठिक छ
|
||||
password_cancel=रद्द गर्नुहोस्
|
||||
|
||||
printing_not_supported=चेतावनी: यो ब्राउजरमा मुद्रण पूर्णतया समर्थित छैन।
|
||||
printing_not_ready=चेतावनी: PDF मुद्रणका लागि पूर्णतया लोड भएको छैन।
|
||||
web_fonts_disabled=वेब फन्ट असक्षम छन्: एम्बेडेड PDF फन्ट प्रयोग गर्न असमर्थ।
|
||||
document_colors_not_allowed=PDF कागजातहरूलाई आफ्नै रङ प्रयोग गर्न अनुमति छैन: 'पृष्ठलाई आफ्नै रङ चयन गर्न अनुमति दिने' ब्राउजरमा निष्क्रिय गरिएको छ।
|
|
@ -0,0 +1,101 @@
|
|||
# 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)
|
||||
|
||||
# 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=Cchiù nicu
|
||||
zoom_out_label=Cchiù nicu
|
||||
zoom_in.title=Cchiù granni
|
||||
zoom_in_label=Cchiù granni
|
||||
|
||||
# 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.
|
||||
# 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 (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.
|
||||
# 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.
|
||||
# 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 lesta:
|
||||
document_properties_linearized_yes=Se
|
||||
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_close=Sfai
|
||||
|
||||
# Tooltips and alt text for side panel toolbar buttons
|
||||
# (the _label strings are alt text for the buttons, the .title strings are
|
||||
# tooltips)
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
|
||||
# Find panel button title and messages
|
||||
# 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.
|
||||
|
||||
# Error panel labels
|
||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
||||
# replaced by the PDF.JS version and build ID.
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Larghizza dâ pàggina
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
|
||||
# Loading indicator messages
|
||||
|
||||
# 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.
|
||||
# "{{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"
|
||||
password_cancel=Sfai
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
# 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=Pajinâ gunâj rukùu
|
||||
previous_label=Sa gachin
|
||||
next.title=Pajinâ 'na' ñaan
|
||||
next_label=Ne' ñaan
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Ñanj
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=si'iaj {{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=Nagi'iaj li'
|
||||
zoom_out_label=Nagi'iaj li'
|
||||
zoom_in.title=Nagi'iaj niko'
|
||||
zoom_in_label=Nagi'iaj niko'
|
||||
zoom.title=dàj nìko ma'an
|
||||
presentation_mode.title=Naduno' daj ga ma
|
||||
presentation_mode_label=Daj gà ma
|
||||
open_file.title=Na'nïn' chrû ñanj
|
||||
open_file_label=Na'nïn
|
||||
print.title=Nari' ña du'ua
|
||||
print_label=Nari' ñadu'ua
|
||||
download.title=Nadunïnj
|
||||
download_label=Nadunïnj
|
||||
bookmark.title=Daj hua ma (Guxun' nej na'nïn' riña ventana nakàa)
|
||||
bookmark_label=Daj hua ma
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Rasun
|
||||
tools_label=Nej rasùun
|
||||
first_page.title=gun' riña pajina asiniin
|
||||
first_page.label=Gun' riña pajina asiniin
|
||||
first_page_label=Gun' riña pajina asiniin
|
||||
last_page.title=Gun' riña pajina rukù ni'in
|
||||
last_page.label=Gun' riña pajina rukù ni'inj
|
||||
last_page_label=Gun' riña pajina rukù ni'inj
|
||||
page_rotate_cw.title=Tanikaj ne' huat
|
||||
page_rotate_cw.label=Tanikaj ne' huat
|
||||
page_rotate_cw_label=Tanikaj ne' huat
|
||||
page_rotate_ccw.title=Tanikaj ne' chînt'
|
||||
page_rotate_ccw.label=Tanikaj ne' chint
|
||||
page_rotate_ccw_label=Tanikaj ne' chint
|
||||
|
||||
cursor_text_select_tool.title=Dugi'iaj sun' sa ganahui texto
|
||||
cursor_text_select_tool_label=Nej rasun arajsun' da' nahui' texto
|
||||
cursor_hand_tool.title=Nachrun' nej rasun
|
||||
cursor_hand_tool_label=Sa rajsun ro'o'
|
||||
|
||||
scroll_vertical.title=Garasun' dukuán runūu
|
||||
scroll_vertical_label=Dukuán runūu
|
||||
scroll_horizontal.title=Garasun' dukuán nikin' nahui
|
||||
scroll_horizontal_label=Dukuán nikin' nahui
|
||||
scroll_wrapped.title=Garasun' sa nachree
|
||||
scroll_wrapped_label=Sa nachree
|
||||
|
||||
spread_none.title=Si nagi'iaj nugun'un' nej pagina hua ninin
|
||||
spread_none_label=Ni'io daj hua pagina
|
||||
spread_odd.title=Nagi'iaj nugua'ant nej pajina
|
||||
spread_odd_label=Ni'io' daj hua libro gurin
|
||||
spread_even.title=Nakāj dugui' ngà nej pajinâ ayi'ì ngà da' hùi hùi
|
||||
spread_even_label=Nahuin nìko nej
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Nej sa nikāj ñanj…
|
||||
document_properties_label=Nej sa nikāj ñanj…
|
||||
document_properties_file_name=Si yugui archîbo:
|
||||
document_properties_file_size=Dàj yachìj archîbo:
|
||||
# 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=Si yugui:
|
||||
document_properties_author=Sí girirà:
|
||||
document_properties_subject=Dugui':
|
||||
document_properties_keywords=Nej nuguan' huìi:
|
||||
document_properties_creation_date=Gui gurugui' man:
|
||||
document_properties_modification_date=Nuguan' nahuin nakà:
|
||||
# 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=Guiri ro'
|
||||
document_properties_producer=Sa ri PDF:
|
||||
document_properties_version=PDF Version:
|
||||
document_properties_page_count=Si Guendâ Pâjina:
|
||||
document_properties_page_size=Dàj yachìj pâjina:
|
||||
document_properties_page_size_unit_inches=riña
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=nadu'ua
|
||||
document_properties_page_size_orientation_landscape=dàj huaj
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=Da'ngà'a
|
||||
document_properties_page_size_name_legal=Nuguan' a'nï'ïn
|
||||
# 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=Nanèt chre ni'iajt riña Web:
|
||||
document_properties_linearized_yes=Ga'ue
|
||||
document_properties_linearized_no=Si ga'ue
|
||||
document_properties_close=Narán
|
||||
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Duyichin'
|
||||
|
||||
# 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=Nadunā barrâ nù yi'nïn
|
||||
toggle_sidebar_label=Nadunā barrâ nù yi'nïn
|
||||
findbar_label=Narì'
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Narì'
|
||||
find_previous_label=Sa gachîn
|
||||
find_next_label=Ne' ñaan
|
||||
find_highlight=Daran' sa ña'an
|
||||
find_match_case_label=Match case
|
||||
# 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}} si'iaj {{total}} guña gè huaj
|
||||
find_match_count[two]={{current}} si'iaj {{total}} guña gè huaj
|
||||
find_match_count[few]={{current}} si'iaj {{total}} guña gè huaj
|
||||
find_match_count[many]={{current}} si'iaj {{total}} guña gè huaj
|
||||
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]=Doj ngà da' {{limit}} nej sa nari' dugui'i
|
||||
find_match_count_limit[one]=Doj ngà da' {{limit}} sa nari' dugui'i
|
||||
find_match_count_limit[two]=Doj ngà da' {{limit}} nej sa nari' dugui'i
|
||||
find_match_count_limit[few]=Doj ngà da' {{limit}} nej sa nari' dugui'i
|
||||
find_match_count_limit[many]=Doj ngà da' {{limit}} nej sa nari' dugui'i
|
||||
find_match_count_limit[other]=Doj ngà da' {{limit}} nej sa nari' dugui'i
|
||||
find_not_found=Nu narì'ij nugua'anj
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Doj nuguan' a'min rayi'î nan
|
||||
error_less_info=Dòj nuguan' a'min rayi'î nan
|
||||
error_close=Narán
|
||||
# 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=Naru'ui': {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Archîbo: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Lînia: {{line}}
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_actual=Dàj yàchi akuan' nín
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Nitaj si hua hue'ej
|
||||
|
||||
# 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.
|
||||
# "{{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"
|
||||
password_ok=Ga'ue
|
||||
password_cancel=Duyichin'
|
||||
|
|
@ -0,0 +1,169 @@
|
|||
# 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=Oldingi sahifa
|
||||
previous_label=Oldingi
|
||||
next.title=Keyingi sahifa
|
||||
next_label=Keyingi
|
||||
|
||||
# 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.
|
||||
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.
|
||||
|
||||
zoom_out.title=Kichiklashtirish
|
||||
zoom_out_label=Kichiklashtirish
|
||||
zoom_in.title=Kattalashtirish
|
||||
zoom_in_label=Kattalashtirish
|
||||
zoom.title=Masshtab
|
||||
presentation_mode.title=Namoyish usuliga oʻtish
|
||||
presentation_mode_label=Namoyish usuli
|
||||
open_file.title=Faylni ochish
|
||||
open_file_label=Ochish
|
||||
print.title=Chop qilish
|
||||
print_label=Chop qilish
|
||||
download.title=Yuklab olish
|
||||
download_label=Yuklab olish
|
||||
bookmark.title=Joriy koʻrinish (nusxa oling yoki yangi oynada oching)
|
||||
bookmark_label=Joriy koʻrinish
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Vositalar
|
||||
tools_label=Vositalar
|
||||
first_page.title=Birinchi sahifaga oʻtish
|
||||
first_page.label=Birinchi sahifaga oʻtish
|
||||
first_page_label=Birinchi sahifaga oʻtish
|
||||
last_page.title=Soʻnggi sahifaga oʻtish
|
||||
last_page.label=Soʻnggi sahifaga oʻtish
|
||||
last_page_label=Soʻnggi sahifaga oʻtish
|
||||
page_rotate_cw.title=Soat yoʻnalishi boʻyicha burish
|
||||
page_rotate_cw.label=Soat yoʻnalishi boʻyicha burish
|
||||
page_rotate_cw_label=Soat yoʻnalishi boʻyicha burish
|
||||
page_rotate_ccw.title=Soat yoʻnalishiga qarshi burish
|
||||
page_rotate_ccw.label=Soat yoʻnalishiga qarshi burish
|
||||
page_rotate_ccw_label=Soat yoʻnalishiga qarshi burish
|
||||
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Hujjat xossalari
|
||||
document_properties_label=Hujjat xossalari
|
||||
document_properties_file_name=Fayl nomi:
|
||||
document_properties_file_size=Fayl hajmi:
|
||||
# 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=Nomi:
|
||||
document_properties_author=Muallifi:
|
||||
document_properties_subject=Mavzusi:
|
||||
document_properties_keywords=Kalit so‘zlar
|
||||
document_properties_creation_date=Yaratilgan sanasi:
|
||||
document_properties_modification_date=O‘zgartirilgan sanasi
|
||||
# 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=Yaratuvchi:
|
||||
document_properties_producer=PDF ishlab chiqaruvchi:
|
||||
document_properties_version=PDF versiyasi:
|
||||
document_properties_page_count=Sahifa soni:
|
||||
document_properties_close=Yopish
|
||||
|
||||
# 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=Yon panelni yoqib/oʻchirib qoʻyish
|
||||
toggle_sidebar_label=Yon panelni yoqib/oʻchirib qoʻyish
|
||||
document_outline_label=Hujjat tuzilishi
|
||||
attachments.title=Ilovalarni ko‘rsatish
|
||||
attachments_label=Ilovalar
|
||||
thumbs.title=Nishonchalarni koʻrsatish
|
||||
thumbs_label=Nishoncha
|
||||
findbar.title=Hujjat ichidan topish
|
||||
|
||||
# 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}} sahifa
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas={{page}} sahifa nishonchasi
|
||||
|
||||
# Find panel button title and messages
|
||||
find_previous.title=Soʻzlardagi oldingi hodisani topish
|
||||
find_previous_label=Oldingi
|
||||
find_next.title=Iboradagi keyingi hodisani topish
|
||||
find_next_label=Keyingi
|
||||
find_highlight=Barchasini ajratib koʻrsatish
|
||||
find_match_case_label=Katta-kichik harflarni farqlash
|
||||
find_reached_top=Hujjatning boshigacha yetib keldik, pastdan davom ettiriladi
|
||||
find_reached_bottom=Hujjatning oxiriga yetib kelindi, yuqoridan davom ettirladi
|
||||
find_not_found=Soʻzlar topilmadi
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Koʻproq ma`lumot
|
||||
error_less_info=Kamroq ma`lumot
|
||||
error_close=Yopish
|
||||
# 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=Xabar: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Toʻplam: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Fayl: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Satr: {{line}}
|
||||
rendering_error=Sahifa renderlanayotganda xato yuz berdi.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Sahifa eni
|
||||
page_scale_fit=Sahifani moslashtirish
|
||||
page_scale_auto=Avtomatik masshtab
|
||||
page_scale_actual=Haqiqiy hajmi
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Xato
|
||||
loading_error=PDF yuklanayotganda xato yuz berdi.
|
||||
invalid_file_error=Xato yoki buzuq PDF fayli.
|
||||
missing_file_error=PDF fayl kerak.
|
||||
unexpected_response_error=Kutilmagan server javobi.
|
||||
|
||||
# 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 faylni ochish uchun parolni kiriting.
|
||||
password_invalid=Parol - notoʻgʻri. Qaytadan urinib koʻring.
|
||||
password_ok=OK
|
||||
|
||||
printing_not_supported=Diqqat: chop qilish bruzer tomonidan toʻliq qoʻllab-quvvatlanmaydi.
|
||||
printing_not_ready=Diqqat: PDF fayl chop qilish uchun toʻliq yuklanmadi.
|
||||
web_fonts_disabled=Veb shriftlar oʻchirilgan: ichki PDF shriftlardan foydalanib boʻlmmaydi.
|
||||
document_colors_not_allowed=PDF hujjat oʻzining ranglaridan foydalanishga ruxsat bermaydi: 'Sahifalarga oʻzining rangidan foydalanishga ruxsat berish' ushbu brauzerda oʻchirib qoʻyilgan.
|