Merge pull request #11213 from Snuffleupagus/importl10n-fetch-langCodes
Update the `gulp importl10n` command to fetch the active language codes
This commit is contained in:
commit
a21f60415d
128
external/importL10n/locales.js
vendored
128
external/importL10n/locales.js
vendored
@ -19,27 +19,41 @@ var fs = require('fs');
|
||||
var https = require('https');
|
||||
var path = require('path');
|
||||
|
||||
// Defines all languages that have a translation at mozilla-central.
|
||||
// Fetches all languages that have an *active* translation in mozilla-central.
|
||||
// This is used in gulpfile.js for the `importl10n` command.
|
||||
var langCodes = [
|
||||
'ach', 'af', 'ak', 'an', 'ar', 'ast', 'az', 'be', 'bg', 'bn-BD', 'bn-IN',
|
||||
'br', 'brx', 'bs', 'ca', 'cak', 'cs', 'csb', 'cy', 'da', 'de', 'el', 'en-CA',
|
||||
'en-GB', 'eo', 'es-AR', 'es-CL', 'es-ES', 'es-MX', 'et', 'eu', 'fa', 'ff',
|
||||
'fi', 'fr', 'fy-NL', 'ga-IE', 'gd', 'gl', 'gn', 'gu-IN', 'he', 'hi-IN', 'hr',
|
||||
'hsb', 'hto', 'hu', 'hy-AM', 'ia', 'id', 'is', 'it', 'ja', 'ka', 'kab', 'kk',
|
||||
'km', 'kn', 'ko', 'kok', 'ks', 'ku', 'lg', 'lij', 'lo', 'lt', 'ltg', 'lv',
|
||||
'meh', 'mk', 'mn', 'mr', 'ms', 'my', 'nb-NO', 'ne-NP', 'nl', 'nn-NO', 'nso',
|
||||
'oc', 'pa-IN', 'pl', 'pt-BR', 'pt-PT', 'rm', 'ro', 'ru', 'rw', 'sah', 'sat',
|
||||
'si', 'sk', 'sl', 'son', 'sq', 'sr', 'sv-SE', 'sw', 'ta', 'ta-LK', 'te', 'th',
|
||||
'tl', 'tn', 'tr', 'tsz', 'uk', 'ur', 'uz', 'vi', 'wo', 'xh', 'zam', 'zh-CN',
|
||||
'zh-TW', 'zu'
|
||||
];
|
||||
|
||||
var EXCLUDE_LANG_CODES = ['ca-valencia', 'ja-JP-mac'];
|
||||
|
||||
function normalizeText(s) {
|
||||
return s.replace(/\r\n?/g, '\n').replace(/\uFEFF/g, '');
|
||||
}
|
||||
|
||||
function downloadLanguageFiles(root, langCode, callback) {
|
||||
function downloadLanguageCodes() {
|
||||
console.log('Downloading language codes...\n');
|
||||
|
||||
var ALL_LOCALES = 'https://hg.mozilla.org/mozilla-central/raw-file/tip/browser/locales/all-locales';
|
||||
|
||||
return new Promise(function(resolve) {
|
||||
https.get(ALL_LOCALES, function(response) {
|
||||
if (response.statusCode === 200) {
|
||||
var content = '';
|
||||
response.setEncoding('utf8');
|
||||
response.on('data', function(chunk) {
|
||||
content += chunk;
|
||||
});
|
||||
response.on('end', function() {
|
||||
content = content.trim(); // Remove any leading/trailing white-space.
|
||||
var langCodes = normalizeText(content).split('\n');
|
||||
resolve(langCodes);
|
||||
});
|
||||
} else {
|
||||
resolve([]);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function downloadLanguageFiles(root, langCode) {
|
||||
console.log('Downloading ' + langCode + '...');
|
||||
|
||||
// Constants for constructing the URLs. Translations are taken from the
|
||||
@ -56,48 +70,64 @@ function downloadLanguageFiles(root, langCode, callback) {
|
||||
fs.mkdirSync(outputDir);
|
||||
}
|
||||
|
||||
// Download the necessary files for this language.
|
||||
files.forEach(function(fileName) {
|
||||
var outputPath = path.join(outputDir, fileName);
|
||||
var url = MOZ_CENTRAL_ROOT + langCode + MOZ_CENTRAL_PDFJS_DIR + fileName;
|
||||
return new Promise(function(resolve) {
|
||||
// Download the necessary files for this language.
|
||||
files.forEach(function(fileName) {
|
||||
var outputPath = path.join(outputDir, fileName);
|
||||
var url = MOZ_CENTRAL_ROOT + langCode + MOZ_CENTRAL_PDFJS_DIR + fileName;
|
||||
|
||||
https.get(url, function(response) {
|
||||
// Not all files exist for each language. Files without translations have
|
||||
// been removed (https://bugzilla.mozilla.org/show_bug.cgi?id=1443175).
|
||||
if (response.statusCode === 200) {
|
||||
var content = '';
|
||||
response.setEncoding('utf8');
|
||||
response.on('data', function(chunk) {
|
||||
content += chunk;
|
||||
});
|
||||
response.on('end', function() {
|
||||
fs.writeFileSync(outputPath, normalizeText(content), 'utf8');
|
||||
downloadsLeft--;
|
||||
if (downloadsLeft === 0) {
|
||||
callback();
|
||||
https.get(url, function(response) {
|
||||
// Not all files exist for each language. Files without translations
|
||||
// have been removed (https://bugzilla.mozilla.org/show_bug.cgi?id=1443175).
|
||||
if (response.statusCode === 200) {
|
||||
var content = '';
|
||||
response.setEncoding('utf8');
|
||||
response.on('data', function(chunk) {
|
||||
content += chunk;
|
||||
});
|
||||
response.on('end', function() {
|
||||
fs.writeFileSync(outputPath, normalizeText(content), 'utf8');
|
||||
if (--downloadsLeft === 0) {
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
if (--downloadsLeft === 0) {
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
downloadsLeft--;
|
||||
if (downloadsLeft === 0) {
|
||||
callback();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function downloadL10n(root, callback) {
|
||||
var i = 0;
|
||||
(function next() {
|
||||
if (i >= langCodes.length) {
|
||||
if (callback) {
|
||||
callback();
|
||||
}
|
||||
return;
|
||||
async function downloadL10n(root, callback) {
|
||||
var langCodes = await downloadLanguageCodes();
|
||||
|
||||
for (var langCode of langCodes) {
|
||||
if (!langCode || EXCLUDE_LANG_CODES.includes(langCode)) {
|
||||
continue;
|
||||
}
|
||||
downloadLanguageFiles(root, langCodes[i++], next);
|
||||
})();
|
||||
await downloadLanguageFiles(root, langCode);
|
||||
}
|
||||
|
||||
var removeCodes = [];
|
||||
for (var entry of fs.readdirSync(root)) {
|
||||
var dirPath = path.join(root, entry), stat = fs.lstatSync(dirPath);
|
||||
|
||||
if (stat.isDirectory() && entry !== 'en-US' &&
|
||||
(!langCodes.includes(entry) || EXCLUDE_LANG_CODES.includes(entry))) {
|
||||
removeCodes.push(entry);
|
||||
}
|
||||
}
|
||||
if (removeCodes.length) {
|
||||
console.log('\nConsider removing the following unmaintained locales:\n' +
|
||||
removeCodes.join(', ') + '\n');
|
||||
}
|
||||
|
||||
if (callback) {
|
||||
callback();
|
||||
}
|
||||
}
|
||||
|
||||
exports.downloadL10n = downloadL10n;
|
||||
|
19
l10n/bn/chrome.properties
Normal file
19
l10n/bn/chrome.properties
Normal file
@ -0,0 +1,19 @@
|
||||
# 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.
|
||||
|
||||
# Chrome notification bar messages and buttons
|
||||
unsupported_feature=পিডিএফ নথিটি সঠিক ভাবে প্রদর্শিত নাও হতে পারে।
|
||||
unsupported_feature_forms=এই পিডিএফ ফাইলটিতে ফর্ম রয়েছে। ফর্মের পূরন করা সমর্থিত নয়।
|
||||
open_with_different_viewer=ভিন্ন প্রদর্শকে খুলুন
|
||||
open_with_different_viewer.accessKey=o
|
243
l10n/bn/viewer.properties
Normal file
243
l10n/bn/viewer.properties
Normal file
@ -0,0 +1,243 @@
|
||||
# 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_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=খুঁজুন
|
||||
|
||||
# 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=পিডিএফ ডকুমেন্টকে তাদের নিজস্ব রঙ ব্যবহারে অনুমতি নেই: 'পাতা তাদের নিজেস্ব রঙ নির্বাচন করতে অনুমতি দিন' এই ব্রাউজারে নিষ্ক্রিয় রয়েছে।
|
19
l10n/bo/chrome.properties
Normal file
19
l10n/bo/chrome.properties
Normal file
@ -0,0 +1,19 @@
|
||||
# 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.
|
||||
|
||||
# Chrome notification bar messages and buttons
|
||||
unsupported_feature=PDF་ཡིག་ཆ་འདི་ནོར་མེད་ཀྱིས་སྟོན་མི་ཐུབ་སྲིད།
|
||||
unsupported_feature_forms=PDF་འདིའི་ནང་དུ་རེའུ་མིག་ཞིག་འདུག རེའུ་མིག་དེ་སྐོང་ཐུབ་པའི་རྒྱབ་སྐྱོར་མེད།
|
||||
open_with_different_viewer=ལྟ་བྱེད་གཞན་ཞིག་གིས་ཁ་ཕྱེ།
|
||||
open_with_different_viewer.accessKey=o
|
245
l10n/bo/viewer.properties
Normal file
245
l10n/bo/viewer.properties
Normal file
@ -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.
|
19
l10n/dsb/chrome.properties
Normal file
19
l10n/dsb/chrome.properties
Normal file
@ -0,0 +1,19 @@
|
||||
# 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.
|
||||
|
||||
# Chrome notification bar messages and buttons
|
||||
unsupported_feature=Toś ten PDF-dokument snaź njezwobraznja se korektnje.
|
||||
unsupported_feature_forms=Toś ten PDF-dokument wopśimujo formulary. Wupolnjenje formularowych pólow se njepódpěra.
|
||||
open_with_different_viewer=Z drugim wobglědowańskim programom wócyniś
|
||||
open_with_different_viewer.accessKey=Z
|
246
l10n/dsb/viewer.properties
Normal file
246
l10n/dsb/viewer.properties
Normal file
@ -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=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ś
|
||||
|
||||
# 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.
|
@ -28,21 +28,21 @@ of_pages=od {{pagesCount}}
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} od {{pagesCount}})
|
||||
|
||||
zoom_out.title=Uvećaj
|
||||
zoom_out_label=Smanji
|
||||
zoom_out.title=Umanji
|
||||
zoom_out_label=Umanji
|
||||
zoom_in.title=Uvećaj
|
||||
zoom_in_label=Smanji
|
||||
zoom.title=Uvećanje
|
||||
zoom_in_label=Uvećaj
|
||||
zoom.title=Zumiranje
|
||||
presentation_mode.title=Prebaci u prezentacijski način rada
|
||||
presentation_mode_label=Prezentacijski način rada
|
||||
open_file.title=Otvori datoteku
|
||||
open_file_label=Otvori
|
||||
print.title=Ispis
|
||||
print_label=Ispis
|
||||
print.title=Ispiši
|
||||
print_label=Ispiši
|
||||
download.title=Preuzmi
|
||||
download_label=Preuzmi
|
||||
bookmark.title=Trenutni prikaz (kopiraj ili otvori u novom prozoru)
|
||||
bookmark_label=Trenutni prikaz
|
||||
bookmark.title=Trenutačni prikaz (kopiraj ili otvori u novom prozoru)
|
||||
bookmark_label=Trenutačni prikaz
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Alati
|
||||
@ -69,15 +69,15 @@ scroll_vertical.title=Koristi okomito pomicanje
|
||||
scroll_vertical_label=Okomito pomicanje
|
||||
scroll_horizontal.title=Koristi vodoravno pomicanje
|
||||
scroll_horizontal_label=Vodoravno pomicanje
|
||||
scroll_wrapped.title=Koristi omotano pomicanje
|
||||
scroll_wrapped_label=Omotano pomicanje
|
||||
scroll_wrapped.title=Koristi kontinuirani raspored stranica
|
||||
scroll_wrapped_label=Kontinuirani raspored stranica
|
||||
|
||||
spread_none.title=Ne pridružuj razmake stranica
|
||||
spread_none_label=Bez razmaka
|
||||
spread_odd.title=Pridruži razmake stranica počinjući od neparnih stranica
|
||||
spread_odd_label=Neparni razmaci
|
||||
spread_even.title=Pridruži razmake stranica počinjući od parnih stranica
|
||||
spread_even_label=Parni razmaci
|
||||
spread_none.title=Ne izrađuj duplerice
|
||||
spread_none_label=Pojedinačne stranice
|
||||
spread_odd.title=Izradi duplerice koje počinju s neparnim stranicama
|
||||
spread_odd_label=Neparne duplerice
|
||||
spread_even.title=Izradi duplerice koje počinju s parnim stranicama
|
||||
spread_even_label=Parne duplerice
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Svojstva dokumenta...
|
||||
@ -106,12 +106,12 @@ document_properties_page_count=Broj stranica:
|
||||
document_properties_page_size=Dimenzije stranice:
|
||||
document_properties_page_size_unit_inches=in
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=portret
|
||||
document_properties_page_size_orientation_landscape=pejzaž
|
||||
document_properties_page_size_orientation_portrait=uspravno
|
||||
document_properties_page_size_orientation_landscape=položeno
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=Pismo
|
||||
document_properties_page_size_name_legal=Pravno
|
||||
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.
|
||||
@ -139,8 +139,8 @@ print_progress_close=Odustani
|
||||
toggle_sidebar.title=Prikaži/sakrij bočnu traku
|
||||
toggle_sidebar_notification.title=Prikazivanje i sklanjanje bočne trake (dokument sadrži konturu/privitke)
|
||||
toggle_sidebar_label=Prikaži/sakrij bočnu traku
|
||||
document_outline.title=Prikaži obris dokumenta (dvostruki klik za proširivanje/skupljanje svih stavki)
|
||||
document_outline_label=Obris dokumenta
|
||||
document_outline.title=Prikaži strukturu dokumenta (dvostruki klik za rasklapanje/sklapanje svih stavki)
|
||||
document_outline_label=Struktura dokumenta
|
||||
attachments.title=Prikaži privitke
|
||||
attachments_label=Privitci
|
||||
thumbs.title=Prikaži sličice
|
||||
@ -159,15 +159,15 @@ thumb_page_canvas=Sličica stranice {{page}}
|
||||
# Find panel button title and messages
|
||||
find_input.title=Traži
|
||||
find_input.placeholder=Traži u dokumentu…
|
||||
find_previous.title=Pronađi prethodno javljanje ovog izraza
|
||||
find_previous.title=Traži prethodno pojavljivanje ovog izraza
|
||||
find_previous_label=Prethodno
|
||||
find_next.title=Pronađi iduće javljanje ovog izraza
|
||||
find_next.title=Traži sljedeće pojavljivanje ovog izraza
|
||||
find_next_label=Sljedeće
|
||||
find_highlight=Istankni sve
|
||||
find_match_case_label=Slučaj podudaranja
|
||||
find_match_case_label=Osjetljivo na veličinu slova
|
||||
find_entire_word_label=Cijele riječi
|
||||
find_reached_top=Dosegnut vrh dokumenta, nastavak od dna
|
||||
find_reached_bottom=Dosegnut vrh dokumenta, nastavak od vrha
|
||||
find_reached_top=Dosegnut početak dokumenta, nastavak s kraja
|
||||
find_reached_bottom=Dosegnut kraj dokumenta, nastavak s početka
|
||||
# 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
|
||||
@ -213,16 +213,16 @@ rendering_error=Došlo je do greške prilikom iscrtavanja stranice.
|
||||
# Predefined zoom values
|
||||
page_scale_width=Širina stranice
|
||||
page_scale_fit=Pristajanje stranici
|
||||
page_scale_auto=Automatsko uvećanje
|
||||
page_scale_actual=Prava veličina
|
||||
page_scale_auto=Automatsko zumiranje
|
||||
page_scale_actual=Stvarna veličina
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
page_scale_percent={{scale}} %
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Greška
|
||||
loading_error=Došlo je do greške pri učitavanju PDF-a.
|
||||
invalid_file_error=Kriva ili oštećena PDF datoteka.
|
||||
invalid_file_error=Neispravna ili oštećena PDF datoteka.
|
||||
missing_file_error=Nedostaje PDF datoteka.
|
||||
unexpected_response_error=Neočekivani odgovor poslužitelja.
|
||||
|
||||
@ -235,12 +235,12 @@ annotation_date_string={{date}}, {{time}}
|
||||
# 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}} Bilješka]
|
||||
password_label=Upišite lozinku da biste otvorili ovu PDF datoteku.
|
||||
password_invalid=Neispravna lozinka. Pokušajte ponovo.
|
||||
password_label=Za otvoranje ove PDF datoteku upiši lozinku.
|
||||
password_invalid=Neispravna lozinka. Pokušaj ponovo.
|
||||
password_ok=U redu
|
||||
password_cancel=Odustani
|
||||
|
||||
printing_not_supported=Upozorenje: Ispisivanje nije potpuno podržano u ovom pregledniku.
|
||||
printing_not_supported=Upozorenje: Ovaj preglednik ne podržava u potpunosti ispisivanje.
|
||||
printing_not_ready=Upozorenje: PDF nije u potpunosti učitan za ispis.
|
||||
web_fonts_disabled=Web fontovi su onemogućeni: nije moguće koristiti umetnute PDF fontove.
|
||||
document_colors_not_allowed=PDF dokumenti nemaju dopuštene koristiti vlastite boje: opcija 'Dopusti stranicama da koriste vlastite boje' je deaktivirana.
|
||||
document_colors_not_allowed=PDF dokumentima nije dozvoljeno koristiti vlastite boje: opcija „Dopusti stranicama da koriste vlastite boje” je deaktivirana u pregledniku.
|
||||
|
@ -14,6 +14,6 @@
|
||||
|
||||
# Chrome notification bar messages and buttons
|
||||
unsupported_feature=Iste documento PDF non potera ser monstrate correctemente.
|
||||
unsupported_feature_forms=Iste documento PDF contine modulos. Le impletion del campos del formulario non es admittite.
|
||||
unsupported_feature_forms=Iste documento PDF contine formularios. Completar campos de formulario non es supportate.
|
||||
open_with_different_viewer=Aperir con un visualisator differente
|
||||
open_with_different_viewer.accessKey=o
|
||||
|
@ -165,8 +165,17 @@ 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.
|
||||
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
||||
# [zero|one|two|few|many|other], with [other] as the default value.
|
||||
# "{{limit}}" will be replaced by a numerical value.
|
||||
find_not_found=Фраза није пронађена
|
||||
|
||||
# Error panel labels
|
||||
@ -204,6 +213,9 @@ 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.
|
||||
|
||||
# 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).
|
||||
|
@ -28,7 +28,7 @@ of_pages=ng {{pagesCount}}
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} ng {{pagesCount}})
|
||||
|
||||
zoom_out.title=Mag-zoom Out
|
||||
zoom_out.title=Paliitin
|
||||
zoom_out_label=Paliitin
|
||||
zoom_in.title=Palakihin
|
||||
zoom_in_label=Palakihin
|
||||
@ -45,8 +45,8 @@ bookmark.title=Kasalukuyang tingin (kopyahin o buksan sa bagong window)
|
||||
bookmark_label=Kasalukuyang tingin
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Mga Tool
|
||||
tools_label=Mga Tool
|
||||
tools.title=Mga Kagamitan
|
||||
tools_label=Mga Kagamitan
|
||||
first_page.title=Pumunta sa Unang Pahina
|
||||
first_page.label=Pumunta sa Unang Pahina
|
||||
first_page_label=Pumunta sa Unang Pahina
|
||||
@ -211,7 +211,7 @@ error_line=Linya: {{line}}
|
||||
rendering_error=May naganap na pagkakamali habang pagsasalin sa pahina.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Haba ng Pahina
|
||||
page_scale_width=Lapad ng Pahina
|
||||
page_scale_fit=ang pahina ay angkop
|
||||
page_scale_auto=Automatic Zoom
|
||||
page_scale_actual=Totoong sukat
|
||||
|
19
l10n/trs/chrome.properties
Normal file
19
l10n/trs/chrome.properties
Normal file
@ -0,0 +1,19 @@
|
||||
# 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.
|
||||
|
||||
# Chrome notification bar messages and buttons
|
||||
unsupported_feature=Gahuin ni si guruhui' hue'e PDF na.
|
||||
unsupported_feature_forms='Na' sa nachro' riña PDF na. Nitaj si hua hue'ej guendo'.
|
||||
open_with_different_viewer=Na'nïn' 'ngà ga'ì visor
|
||||
open_with_different_viewer.accessKey=o
|
213
l10n/trs/viewer.properties
Normal file
213
l10n/trs/viewer.properties
Normal file
@ -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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user