207 changed files with 13644 additions and 1629 deletions
@ -0,0 +1,88 @@ |
|||||||
|
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
||||||
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */ |
||||||
|
/* 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. |
||||||
|
*/ |
||||||
|
/* jshint node:true */ |
||||||
|
|
||||||
|
'use strict'; |
||||||
|
|
||||||
|
var fs = require('fs'); |
||||||
|
var http = require('http'); |
||||||
|
var path = require('path'); |
||||||
|
|
||||||
|
// Defines all languages that have a translation at mozilla-aurora.
|
||||||
|
// This is used in make.js for the importl10n command.
|
||||||
|
var langCodes = [ |
||||||
|
'ach', 'af', 'ak', 'an', 'ar', 'as', 'ast', 'az', 'be', 'bg', |
||||||
|
'bn-BD', 'bn-IN', 'br', 'bs', 'ca', 'cs', 'csb', 'cy', 'da', |
||||||
|
'de', 'el', 'en-GB', 'en-ZA', 'eo', 'es-AR', 'es-CL', 'es-ES', |
||||||
|
'es-MX', 'et', 'eu', 'fa', 'ff', 'fi', 'fr', 'fy-NL', 'ga-IE', |
||||||
|
'gd', 'gl', 'gu-IN', 'he', 'hi-IN', 'hr', 'hu', 'hy-AM', 'id', |
||||||
|
'is', 'it', 'ja', 'ka', 'kk', 'km', 'kn', 'ko', 'ku', 'lg', |
||||||
|
'lij', 'lt', 'lv', 'mai', 'mk', 'ml', 'mn', 'mr', 'ms', 'my', |
||||||
|
'nb-NO', 'nl', 'nn-NO', 'nso', 'oc', 'or', 'pa-IN', 'pl', |
||||||
|
'pt-BR', 'pt-PT', 'rm', 'ro', 'ru', 'rw', 'sah', 'si', 'sk', |
||||||
|
'sl', 'son', 'sq', 'sr', 'sv-SE', 'sw', 'ta', 'ta-LK', 'te', |
||||||
|
'th', 'tl', 'tn', 'tr', 'uk', 'ur', 'vi', 'wo', 'xh', 'zh-CN', |
||||||
|
'zh-TW', 'zu' |
||||||
|
]; |
||||||
|
|
||||||
|
function downloadLanguageFiles(langCode, callback) { |
||||||
|
console.log('Downloading ' + langCode + '...'); |
||||||
|
|
||||||
|
// Constants for constructing the URLs. Translations are taken from the
|
||||||
|
// Aurora channel as those are the most recent ones. The Nightly channel
|
||||||
|
// does not provide all translations.
|
||||||
|
var MOZCENTRAL_ROOT = 'http://mxr.mozilla.org/l10n-mozilla-aurora/source/'; |
||||||
|
var MOZCENTRAL_PDFJS_DIR = '/browser/pdfviewer/'; |
||||||
|
var MOZCENTRAL_RAW_FLAG = '?raw=1'; |
||||||
|
|
||||||
|
// Defines which files to download for each language.
|
||||||
|
var files = ['chrome.properties', 'viewer.properties']; |
||||||
|
var downloadsLeft = files.length; |
||||||
|
|
||||||
|
if (!fs.existsSync(langCode)) { |
||||||
|
fs.mkdirSync(langCode); |
||||||
|
} |
||||||
|
|
||||||
|
// Download the necessary files for this language.
|
||||||
|
files.forEach(function(fileName) { |
||||||
|
var outputPath = path.join(langCode, fileName); |
||||||
|
var file = fs.createWriteStream(outputPath); |
||||||
|
var url = MOZCENTRAL_ROOT + langCode + MOZCENTRAL_PDFJS_DIR + |
||||||
|
fileName + MOZCENTRAL_RAW_FLAG; |
||||||
|
var request = http.get(url, function(response) { |
||||||
|
response.pipe(file); |
||||||
|
response.on('end', function() { |
||||||
|
downloadsLeft--; |
||||||
|
if (downloadsLeft === 0) { |
||||||
|
callback(); |
||||||
|
} |
||||||
|
}) |
||||||
|
}); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
function downloadL10n() { |
||||||
|
var i = 0; |
||||||
|
(function next() { |
||||||
|
if (i >= langCodes.length) { |
||||||
|
return; |
||||||
|
} |
||||||
|
downloadLanguageFiles(langCodes[i++], next); |
||||||
|
})(); |
||||||
|
} |
||||||
|
|
||||||
|
exports.downloadL10n = downloadL10n; |
@ -0,0 +1,5 @@ |
|||||||
|
Most of the files in this folder (except for the `en-US` folder and the |
||||||
|
`metadata.inc` files) have been imported from the Firefox Aurora branch, |
||||||
|
which is located at https://mxr.mozilla.org/l10n-mozilla-aurora/source. |
||||||
|
Some of the files are licensed under the MPL license. You can obtain a |
||||||
|
copy of the license at http://mozilla.org/MPL/2.0. |
@ -0,0 +1,97 @@ |
|||||||
|
# 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=Pot buk Mukato |
||||||
|
next.title=Pot buk Malubo Kore |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Pot buk: |
||||||
|
page_of=pi {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Dwogo Woko |
||||||
|
zoom_out_label=Dwogo Woko |
||||||
|
zoom_in.title=Dwogo iyie |
||||||
|
zoom_in_label=Dwogo iyie |
||||||
|
zoom.title=Kwoti |
||||||
|
print.title=Goo |
||||||
|
print_label=Goo |
||||||
|
open_file.title=Yab Pwail |
||||||
|
open_file_label=Yabi |
||||||
|
download.title=Gam |
||||||
|
download_label=Gam |
||||||
|
bookmark.title=Neno matye (loki onyo yabi i dirica manyen) |
||||||
|
bookmark_label=Neno Matye |
||||||
|
|
||||||
|
# Tooltips and alt text for side panel toolbar buttons |
||||||
|
# (the _label strings are alt text for the buttons, the .title strings are |
||||||
|
# tooltips) |
||||||
|
outline.title=Nyut ryeno rek pa Coc acoya |
||||||
|
outline_label=Ryeno rek me Coc acoya |
||||||
|
thumbs.title=Nyut Capa cing |
||||||
|
thumbs_label=Capa cing |
||||||
|
findbar_label=Nong |
||||||
|
|
||||||
|
# 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=Pot buk {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Capa cing e Pot buk {{page}} |
||||||
|
|
||||||
|
# Context menu |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_previous.title=Nong en matime malubo kore pi lok |
||||||
|
find_next.title=Nong en matime malubo kore pi lok |
||||||
|
find_not_found=Phrase pe ononge |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Ngec Mukene |
||||||
|
error_close=Lor |
||||||
|
# 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. |
||||||
|
error_message=Kwena: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Agiki onyo acaki {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Pwail: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Rek: {{line}} |
||||||
|
rendering_error=Bal otyeko time kun jalo pot buk. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Bor wi Pot buk |
||||||
|
page_scale_fit=Pot buk Romo |
||||||
|
page_scale_auto=Dowogo ne matime pire kene |
||||||
|
page_scale_actual=Kit Mamite |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Bal |
||||||
|
loading_error=Bal otyeko time kun pango 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" |
||||||
|
text_annotation_type.alt=[{{type}} Lok angea manok] |
||||||
|
request_password=I ung otyeko gwoko PDF: |
||||||
|
|
@ -0,0 +1,18 @@ |
|||||||
|
# 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=Dié PDF-dokument sal dalk nie korrek vertoon word nie. |
||||||
|
open_with_different_viewer=Open met 'n ander program |
||||||
|
open_with_different_viewer.accessKey=O |
@ -0,0 +1,140 @@ |
|||||||
|
# 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=Vorige bladsy |
||||||
|
previous_label=Vorige |
||||||
|
next.title=Volgende bladsy |
||||||
|
next_label=Volgende |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Bladsy: |
||||||
|
page_of=van {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Zoem uit |
||||||
|
zoom_out_label=Zoem uit |
||||||
|
zoom_in.title=Zoem in |
||||||
|
zoom_in_label=Zoem in |
||||||
|
zoom.title=Zoem |
||||||
|
presentation_mode.title=Wissel na voorleggingsmodus |
||||||
|
presentation_mode_label=Voorleggingsmodus |
||||||
|
open_file.title=Open lêer |
||||||
|
open_file_label=Open |
||||||
|
print.title=Druk |
||||||
|
print_label=Druk |
||||||
|
download.title=Laai af |
||||||
|
download_label=Laai af |
||||||
|
bookmark.title=Huidige aansig (kopieer of open in nuwe venster) |
||||||
|
bookmark_label=Huidige aansig |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Nutsgoed |
||||||
|
tools_label=Nutsgoed |
||||||
|
first_page.title=Gaan na eerste bladsy |
||||||
|
first_page.label=Gaan na eerste bladsy |
||||||
|
first_page_label=Gaan na eerste bladsy |
||||||
|
last_page.title=Gaan na laaste bladsy |
||||||
|
last_page.label=Gaan na laaste bladsy |
||||||
|
last_page_label=Gaan na laaste bladsy |
||||||
|
page_rotate_cw.title=Roteer kloksgewys |
||||||
|
page_rotate_cw.label=Roteer kloksgewys |
||||||
|
page_rotate_cw_label=Roteer kloksgewys |
||||||
|
page_rotate_ccw.title=Roteer anti-kloksgewys |
||||||
|
page_rotate_ccw.label=Roteer anti-kloksgewys |
||||||
|
page_rotate_ccw_label=Roteer anti-kloksgewys |
||||||
|
|
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties_file_name=Lêernaam: |
||||||
|
document_properties_title=Titel: |
||||||
|
|
||||||
|
# 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=Sypaneel aan/af |
||||||
|
toggle_sidebar_label=Sypaneel aan/af |
||||||
|
outline.title=Wys dokumentoorsig |
||||||
|
outline_label=Dokumentoorsig |
||||||
|
thumbs.title=Wys duimnaels |
||||||
|
thumbs_label=Duimnaels |
||||||
|
findbar.title=Soek in dokument |
||||||
|
findbar_label=Vind |
||||||
|
|
||||||
|
# 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=Bladsy {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Duimnael van bladsy {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Vind: |
||||||
|
find_previous.title=Vind die vorige voorkoms van die frase |
||||||
|
find_previous_label=Vorige |
||||||
|
find_next.title=Vind die volgende voorkoms van die frase |
||||||
|
find_next_label=Volgende |
||||||
|
find_highlight=Verlig alle |
||||||
|
find_match_case_label=Kassensitief |
||||||
|
find_reached_top=Bokant van dokument is bereik; gaan voort van onder af |
||||||
|
find_reached_bottom=Einde van dokument is bereik; gaan voort van bo af |
||||||
|
find_not_found=Frase nie gevind nie |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Meer inligting |
||||||
|
error_less_info=Minder inligting |
||||||
|
# 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}} (ID: {{build}}) |
||||||
|
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
|
# english string describing the error. |
||||||
|
error_message=Boodskap: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Stapel: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Lêer: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Lyn: {{line}} |
||||||
|
rendering_error='n Fout het voorgekom toe die bladsy weergegee is. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Bladsywydte |
||||||
|
page_scale_fit=Pas bladsy |
||||||
|
page_scale_auto=Outomatiese zoem |
||||||
|
page_scale_actual=Werklike grootte |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Fout |
||||||
|
loading_error='n Fout het voorgekom met die laai van die PDF. |
||||||
|
invalid_file_error=Ongeldige of korrupte PDF-lêer. |
||||||
|
missing_file_error=PDF-lêer is weg. |
||||||
|
|
||||||
|
# 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}}-annotasie |
||||||
|
password_label=Gee die wagwoord om dié PDF-lêer mee te open. |
||||||
|
password_invalid=Ongeldige wagwoord. Probeer gerus weer. |
||||||
|
password_ok=OK |
||||||
|
password_cancel=Kanselleer |
||||||
|
|
||||||
|
printing_not_supported=Waarskuwing: Dié blaaier ondersteun nie drukwerk ten volle nie. |
||||||
|
printing_not_ready=Waarskuwing: Die PDF is nog nie volledig gelaai vir drukwerk nie. |
||||||
|
web_fonts_disabled=Webfonte is gedeaktiveer: kan nie PDF-fonte wat ingebed is, gebruik nie. |
||||||
|
document_colors_disabled=PDF-dokumente word nie toegelaat om hul eie kleure te gebruik nie: 'Laat bladsye toe om hul eie kleure te kies' is gedeaktiveer in die blaaier. |
@ -0,0 +1,18 @@ |
|||||||
|
# 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=Ɛbɛtumi aba no sɛ PDF dɔkomɛnte yi remmba papa wɔ kɔmputa no so. |
||||||
|
open_with_different_viewer=Fa hwɛfo foforo bue |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,123 @@ |
|||||||
|
# Copyright 2012 Mozilla Foundation |
||||||
|
# |
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
# you may not use this file except in compliance with the License. |
||||||
|
# You may obtain a copy of the License at |
||||||
|
# |
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
# |
||||||
|
# Unless required by applicable law or agreed to in writing, software |
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
# See the License for the specific language governing permissions and |
||||||
|
# limitations under the License. |
||||||
|
|
||||||
|
# Main toolbar buttons (tooltips and alt text for images) |
||||||
|
previous.title=Krataafa baako a etwa mu |
||||||
|
previous_label=Ekyiri-baako |
||||||
|
next.title=Krataafa a edi so baako |
||||||
|
next_label=Dea-ɛ-di-so-baako |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Krataafa: |
||||||
|
page_of=wɔ {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Zuum pue |
||||||
|
zoom_out_label=Zuum ba abɔnten |
||||||
|
zoom_in.title=Zuum kɔ mu |
||||||
|
zoom_in_label=Zuum kɔ mu |
||||||
|
zoom.title=Zuum |
||||||
|
presentation_mode.title=Sesa kɔ Yɛkyerɛ Tebea mu |
||||||
|
presentation_mode_label=Yɛkyerɛ Tebea |
||||||
|
open_file.title=Bue Fael |
||||||
|
open_file_label=Bue |
||||||
|
print.title=Prente |
||||||
|
print_label=Prente |
||||||
|
download.title=Twe |
||||||
|
download_label=Twe |
||||||
|
bookmark.title=Seisei nhwɛ (fa anaaso bue wɔ tokuro foforo mu) |
||||||
|
bookmark_label=Seisei nhwɛ |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
|
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties_title=Ti asɛm: |
||||||
|
|
||||||
|
# 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=Sɔ anaaso dum saedbaa |
||||||
|
toggle_sidebar_label=Sɔ anaaso dum saedbaa |
||||||
|
outline.title=Kyerɛ dɔkomɛnt bɔbea |
||||||
|
outline_label=Dɔkomɛnt bɔbea |
||||||
|
thumbs.title=Kyerɛ mfoniwaa |
||||||
|
thumbs_label=Mfoniwaa |
||||||
|
findbar.title=Hu wɔ dɔkomɛnt no mu |
||||||
|
findbar_label=Hu |
||||||
|
|
||||||
|
# Thumbnails panel item (tooltip and alt text for images) |
||||||
|
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_title=Krataafa {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Krataafa ne mfoniwaa {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Hunu: |
||||||
|
find_previous.title=San hu fres wɔ ekyiri baako |
||||||
|
find_previous_label=Ekyiri baako |
||||||
|
find_next.title=San hu fres no wɔ enim baako |
||||||
|
find_next_label=Ndiso |
||||||
|
find_highlight=Hyɛ bibiara nso |
||||||
|
find_match_case_label=Fa susu kaase |
||||||
|
find_reached_top=Edu krataafa ne soro, atoa so efiri ase |
||||||
|
find_reached_bottom=Edu krataafa n'ewiei, atoa so efiri soro |
||||||
|
find_not_found=Ennhu fres |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Infɔmehyɛn bio a wɔka ho |
||||||
|
error_less_info=Te infɔmehyɛn bio a wɔka ho so |
||||||
|
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be |
||||||
|
# replaced by the PDF.JS version and build ID. |
||||||
|
error_version_info=PDF.js v{{vɛɛhyen}} (nsi: {{si}}) |
||||||
|
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
|
# english string describing the error. |
||||||
|
error_message=Nkrato: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Staake: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Fael: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Laen: {{line}} |
||||||
|
rendering_error=Mfomso bae wɔ bere a wɔ rekyerɛ krataafa no. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Krataafa tɛtrɛtɛ |
||||||
|
page_scale_fit=Krataafa ehimtwa |
||||||
|
page_scale_auto=Zuum otomatik |
||||||
|
page_scale_actual=Kɛseyɛ ankasa |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Mfomso |
||||||
|
loading_error=Mfomso bae wɔ bere a wɔreloode PDF no. |
||||||
|
invalid_file_error=PDF fael no nndi mu anaaso ho atɔ kyima. |
||||||
|
missing_file_error=PDF fael no ayera. |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. |
||||||
|
# "{{type}}" will be replaced with an annotation type from a list defined in |
||||||
|
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
||||||
|
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
||||||
|
text_annotation_type.alt=[{{type}} Tɛkst-nyiano] |
||||||
|
password_ok=OK |
||||||
|
password_cancel=Twa-mu |
||||||
|
|
||||||
|
printing_not_supported=Kɔkɔbɔ: Brawsa yi nnhyɛ daa mma prent ho kwan. |
||||||
|
printing_not_ready=Kɔkɔbɔ: Wɔnntwee PDF fael no nyinara mmbaee ama wo ɛ tumi aprente. |
||||||
|
web_fonts_disabled=Ɔedum wɛb-mfɔnt: nntumi mmfa PDF mfɔnt a wɔhyɛ mu nndi dwuma. |
||||||
|
document_colors_disabled=Wɔmma ho kwan sɛ PDF adɔkomɛnt de wɔn ara wɔn ahosu bɛdi dwuma: wɔ adum 'Ma ho kwan ma nkrataafa mpaw wɔn ara wɔn ahosu' wɔ brawsa yi mu. |
@ -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=Iste documento PDF talment no s'amuestre correctament. |
||||||
|
unsupported_feature_forms=Iste documento PDF contién formularios. A cumplimentación d'os campos de formularios no ye encara posible. |
||||||
|
open_with_different_viewer=Ubrir con belatro visor diferent |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=Pachina anterior |
||||||
|
previous_label=Anterior |
||||||
|
next.title=Pachina siguient |
||||||
|
next_label=Siguient |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Pachina: |
||||||
|
page_of=de {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Achiquir |
||||||
|
zoom_out_label=Achiquir |
||||||
|
zoom_in.title=Agrandir |
||||||
|
zoom_in_label=Agrandir |
||||||
|
zoom.title=Grandaria |
||||||
|
presentation_mode.title=Cambear t'o modo de presentación |
||||||
|
presentation_mode_label=Modo de presentación |
||||||
|
open_file.title=Ubrir o fichero |
||||||
|
open_file_label=Ubrir |
||||||
|
print.title=Imprentar |
||||||
|
print_label=Imprentar |
||||||
|
download.title=Descargar |
||||||
|
download_label=Descargar |
||||||
|
bookmark.title=Vista actual (copiar u ubrir en una nueva finestra) |
||||||
|
bookmark_label=Anvista actual |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Ferramientas |
||||||
|
tools_label=Ferramientas |
||||||
|
first_page.title=Ir ta la primer pachina |
||||||
|
first_page.label=Ir ta la primer pachina |
||||||
|
first_page_label=Ir ta la primer pachina |
||||||
|
last_page.title=Ir ta la zaguer pachina |
||||||
|
last_page.label=Ir ta la zaguera pachina |
||||||
|
last_page_label=Ir ta la zaguer pachina |
||||||
|
page_rotate_cw.title=Chirar enta la dreita |
||||||
|
page_rotate_cw.label=Chirar enta la dreita |
||||||
|
page_rotate_cw_label=Chira enta la dreita |
||||||
|
page_rotate_ccw.title=Chirar enta la zurda |
||||||
|
page_rotate_ccw.label=Chirar en sentiu antihorario |
||||||
|
page_rotate_ccw_label=Chirar enta la zurda |
||||||
|
|
||||||
|
hand_tool_enable.title=Activar a ferramienta man |
||||||
|
hand_tool_enable_label=Activar a ferramenta man |
||||||
|
hand_tool_disable.title=Desactivar a ferramienta man |
||||||
|
hand_tool_disable_label=Desactivar a ferramienta man |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Propiedatz d'o documento... |
||||||
|
document_properties_label=Propiedatz d'o documento... |
||||||
|
document_properties_file_name=Nombre de fichero: |
||||||
|
document_properties_file_size=Grandaria d'o fichero: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title=Titol: |
||||||
|
document_properties_author=Autor: |
||||||
|
document_properties_subject=Afer: |
||||||
|
document_properties_keywords=Parolas clau: |
||||||
|
document_properties_creation_date=Calendata de creyación: |
||||||
|
document_properties_modification_date=Calendata de modificación: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Creyador: |
||||||
|
document_properties_producer=Creyador de PDF: |
||||||
|
document_properties_version=Versión de PDF: |
||||||
|
document_properties_page_count=Numero de pachinas: |
||||||
|
document_properties_close=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=Amostrar u amagar a barra lateral |
||||||
|
toggle_sidebar_label=Amostrar a barra lateral |
||||||
|
outline.title=Amostrar o esquema d'o documento |
||||||
|
outline_label=Esquema d'o documento |
||||||
|
thumbs.title=Amostrar as miniaturas |
||||||
|
thumbs_label=Miniaturas |
||||||
|
findbar.title=Trobar en o documento |
||||||
|
findbar_label=Trobar |
||||||
|
|
||||||
|
# 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=Pachina {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Miniatura d'a pachina {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Trobar: |
||||||
|
find_previous.title=Trobar l'anterior coincidencia d'a frase |
||||||
|
find_previous_label=Anterior |
||||||
|
find_next.title=Trobar a siguient coincidencia d'a frase |
||||||
|
find_next_label=Siguient |
||||||
|
find_highlight=Resaltar-lo tot |
||||||
|
find_match_case_label=Coincidencia de mayusclas/minusclas |
||||||
|
find_reached_top=S'ha plegau a l'inicio d'o documento, se contina dende baixo |
||||||
|
find_reached_bottom=S'ha plegau a la fin d'o documento, se contina dende alto |
||||||
|
find_not_found=No s'ha trobau a frase |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Mas información |
||||||
|
error_less_info=Menos información |
||||||
|
error_close=Zarrar |
||||||
|
# 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=Mensache: {{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=Fichero: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Linia: {{line}} |
||||||
|
rendering_error=Ha ocurriu una error en renderizar a pachina. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Amplaria d'a pachina |
||||||
|
page_scale_fit=Achuste d'a pachina |
||||||
|
page_scale_auto=Grandaria automatica |
||||||
|
page_scale_actual=Grandaria actual |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Error |
||||||
|
loading_error=S'ha produciu una error en cargar o PDF. |
||||||
|
invalid_file_error=O PDF no ye valido u ye estorbau. |
||||||
|
missing_file_error=No i ha fichero 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" |
||||||
|
text_annotation_type.alt=[Anotación {{type}}] |
||||||
|
password_label=Introduzca a clau ta ubrir iste fichero PDF. |
||||||
|
password_invalid=Clau invalida. Torna a intentar-lo. |
||||||
|
password_ok=Acceptar |
||||||
|
password_cancel=Cancelar |
||||||
|
|
||||||
|
printing_not_supported=Pare cuenta: Iste navegador no maneya totalment as impresions. |
||||||
|
printing_not_ready=Aviso: Encara no se ha cargau completament o PDF ta imprentar-lo. |
||||||
|
web_fonts_disabled=As fuents web son desactivadas: no se puet incrustar fichers PDF. |
||||||
|
document_colors_disabled=Os documentos PDF no pueden fer servir as suyas propias colors: 'Permitir que as pachinas triguen as suyas propias colors' ye desactivau en o navegador. |
@ -0,0 +1,7 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
unsupported_feature = Esti documentu PDF podría nun amosase correcho. |
||||||
|
open_with_different_viewer = Abrir con un visor distintu |
||||||
|
open_with_different_viewer.accessKey = o |
@ -0,0 +1,73 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
previous.title = Páxina anterior |
||||||
|
previous_label = Anterior |
||||||
|
next.title = Páxina siguiente |
||||||
|
next_label = Siguiente |
||||||
|
page_label = Páxina: |
||||||
|
page_of = de {{pageCount}} |
||||||
|
zoom_out.title = Reducir |
||||||
|
zoom_out_label = Reducir |
||||||
|
zoom_in.title = Aumentar |
||||||
|
zoom_in_label = Aumentar |
||||||
|
zoom.title = Tamañu |
||||||
|
print.title = Imprentar |
||||||
|
print_label = Imprentar |
||||||
|
open_file.title = Abrir ficheru |
||||||
|
open_file_label = Abrir |
||||||
|
download.title = Descargar |
||||||
|
download_label = Descargar |
||||||
|
bookmark.title = Vista actual (copiar o abrir nuna nueva ventana) |
||||||
|
bookmark_label = Vista actual |
||||||
|
outline.title = Amosar l'esquema del documentu |
||||||
|
outline_label = Esquema del documentu |
||||||
|
thumbs.title = Amosar miniatures |
||||||
|
thumbs_label = Miniatures |
||||||
|
thumb_page_title = Páxina {{page}} |
||||||
|
thumb_page_canvas = Miniatura de la páxina {{page}} |
||||||
|
error_more_info = Más información |
||||||
|
error_less_info = Menos información |
||||||
|
error_close = Zarrar |
||||||
|
error_message = Mensaxe: {{message}} |
||||||
|
error_stack = Pila: {{stack}} |
||||||
|
error_file = Ficheru: {{file}} |
||||||
|
error_line = Llinia: {{line}} |
||||||
|
rendering_error = Hebo un fallu al renderizar la páxina. |
||||||
|
page_scale_width = Anchor de la páxina |
||||||
|
page_scale_fit = Axuste de la páxina |
||||||
|
page_scale_auto = Tamañu automáticu |
||||||
|
page_scale_actual = Tamañu actual |
||||||
|
loading_error_indicator = Fallu |
||||||
|
loading_error = Hebo un fallu al cargar el PDF. |
||||||
|
request_password = El PDF ta protexíu por una contraseña: |
||||||
|
printing_not_supported = Avisu: Imprentar nun tien sofitu téunicu completu nesti navegador. |
||||||
|
presentation_mode_label = |
||||||
|
presentation_mode.title = |
||||||
|
page_rotate_cw.label = |
||||||
|
page_rotate_ccw.label = |
||||||
|
last_page.label = Dir a la cabera páxina |
||||||
|
invalid_file_error = Ficheru PDF inválidu o corruptu. |
||||||
|
first_page.label = Dir a la primer páxina |
||||||
|
findbar_label = Guetar |
||||||
|
findbar.title = Guetar nel documentu |
||||||
|
find_previous_label = Anterior |
||||||
|
find_previous.title = Alcontrar l'anterior apaición de la fras |
||||||
|
find_not_found = Frase non atopada |
||||||
|
find_next_label = Siguiente |
||||||
|
find_next.title = Alcontrar la siguiente apaición d'esta fras |
||||||
|
find_match_case_label = Coincidencia de mayús./minús. |
||||||
|
find_label = Guetar: |
||||||
|
find_highlight = Remarcar toos |
||||||
|
find_reached_top=Algamóse'l principiu del documentu, siguir dende'l final |
||||||
|
find_reached_bottom=Algamóse'l final del documentu, siguir dende'l principiu |
||||||
|
web_fonts_disabled = Les fontes web tán desactivaes: ye imposible usar les fontes PDF embebíes. |
||||||
|
toggle_sidebar_label = Camudar barra llateral |
||||||
|
toggle_sidebar.title = Camudar barra llateral |
||||||
|
missing_file_error = Nun hai ficheru PDF. |
||||||
|
error_version_info = PDF.js v{{version}} (build: {{build}}) |
||||||
|
printing_not_ready = Avisu: Esti PDF nun se cargó completamente pa poder imprentase. |
||||||
|
text_annotation_type.alt = [Anotación {{type}}] |
||||||
|
invalid_password = Contraseña non válida. |
||||||
|
document_colors_disabled = Los documentos PDF nun tienen permitío usar los sos propios colores: 'Permitir a les páxines elexir los sos propios colores' ta desactivao nel navegador. |
@ -0,0 +1,139 @@ |
|||||||
|
# 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=Əvvəlki səhifə |
||||||
|
previous_label=Əvvəlkini tap |
||||||
|
next.title=Növbəti səhifə |
||||||
|
next_label=Növbətini tap |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Səhifə: |
||||||
|
page_of=/ {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Uzaqlaş |
||||||
|
zoom_out_label=Uzaqlaş |
||||||
|
zoom_in.title=Yaxınlaş |
||||||
|
zoom_in_label=Yaxınlaş |
||||||
|
zoom.title=Yaxınlaşdırma |
||||||
|
presentation_mode.title=Təqdimat Rejiminə Keç |
||||||
|
presentation_mode_label=Təqdimat Rejimi |
||||||
|
open_file.title=Fayl Aç |
||||||
|
open_file_label=Aç |
||||||
|
print.title=Yazdır |
||||||
|
print_label=Yazdır |
||||||
|
download.title=Yüklə |
||||||
|
download_label=Yüklə |
||||||
|
bookmark.title=Hazırkı görünüş (köçür və ya yeni pəncərədə aç) |
||||||
|
bookmark_label=Hazırki görünüş |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Alətlər |
||||||
|
tools_label=Alətlər |
||||||
|
first_page.title=İlk Səhifəyə get |
||||||
|
first_page.label=İlk Səhifəyə get |
||||||
|
first_page_label=İlk Səhifəyə get |
||||||
|
last_page.title=Son Səhifəyə get |
||||||
|
last_page.label=Son Səhifəyə get |
||||||
|
last_page_label=Son Səhifəyə get |
||||||
|
page_rotate_cw.title=Saat İstiqamətində Fırlat |
||||||
|
page_rotate_cw.label=Saat İstiqamətində Fırlat |
||||||
|
page_rotate_cw_label=Saat İstiqamətində Fırlat |
||||||
|
page_rotate_ccw.title=Saat İstiqamətinin Əksinə Fırlat |
||||||
|
page_rotate_ccw.label=Saat İstiqamətinin Əksinə Fırlat |
||||||
|
page_rotate_ccw_label=Saat İstiqamətinin Əksinə Fırlat |
||||||
|
|
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties_title=Başlık: |
||||||
|
|
||||||
|
# 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=Yan Paneli Aç/Bağla |
||||||
|
toggle_sidebar_label=Yan Paneli Aç/Bağla |
||||||
|
outline.title=Sənəd struktunu göstər |
||||||
|
outline_label=Sənəd strukturu |
||||||
|
thumbs.title=Kiçik şəkilləri göstər |
||||||
|
thumbs_label=Kiçik şəkillər |
||||||
|
findbar.title=Sənəddə Tap |
||||||
|
findbar_label=Axtar |
||||||
|
|
||||||
|
# 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=Səhifə{{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas={{page}} səhifəsinin kiçik vəziyyəti |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Tap: |
||||||
|
find_previous.title=Bir öncəki uyğun gələn sözü tapır |
||||||
|
find_previous_label=Əvvəlkini tap |
||||||
|
find_next.title=Bir sonrakı uyğun gələn sözü tapır |
||||||
|
find_next_label=Növbətini tap |
||||||
|
find_highlight=İşarələ |
||||||
|
find_match_case_label=Böyük/kiçik hərfə həssaslıq |
||||||
|
find_reached_top=Sənədin yuxarısına çatdı, aşağıdan davam edir |
||||||
|
find_reached_bottom=Sənədin sonuna çatdı, yuxarıdan davam edir |
||||||
|
find_not_found=Uyğunlaşma tapılmadı |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Daha çox məlumati |
||||||
|
error_less_info=Daha az məlumat |
||||||
|
# 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}} (yığma: {{build}}) |
||||||
|
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
|
# english string describing the error. |
||||||
|
error_message=İsmarıc: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Stek: {{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=Sətir: {{line}} |
||||||
|
rendering_error=Səhifə göstərilərkən səhv yarandı. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Səhifə genişliyi |
||||||
|
page_scale_fit=Səhifəni sığdır |
||||||
|
page_scale_auto=Avtomatik yaxınlaşdır |
||||||
|
page_scale_actual=Hazırki Həcm |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Səhv |
||||||
|
loading_error=PDF yüklenərkən bir səhv yarandı. |
||||||
|
invalid_file_error=Səhv və ya zədələnmiş olmuş PDF fayl. |
||||||
|
missing_file_error=PDF fayl yoxdur. |
||||||
|
|
||||||
|
# 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}} Annotasiyası] |
||||||
|
password_label=Bu PDF faylı açmaq üçün şifrəni daxil edin. |
||||||
|
password_invalid=Şifrə yanlışdır. Bir daha sınayın. |
||||||
|
password_ok=OK |
||||||
|
password_cancel=Ləğv et |
||||||
|
|
||||||
|
printing_not_supported=Xəbərdarlıq: Çap bu brauzer tərəfindən tam olaraq dəstəklənmir. |
||||||
|
printing_not_ready=Xəbərdarlıq: PDF çap üçün tam yüklənməyib. |
||||||
|
web_fonts_disabled=Veb Şriftlər söndürülüb: yerləşdirilmiş PDF şriftlərini istifadə etmək mümkün deyil. |
||||||
|
document_colors_disabled=PDF sənədlərə öz rənglərini işlətməyə icazə verilmir: 'Səhifələrə öz rənglərini istifadə etməyə icazə vermə' səyyahda söndürülüb. |
@ -0,0 +1,4 @@ |
|||||||
|
unsupported_feature = Гэты дакумент PDF можа адлюстроўвацца няправільна. |
||||||
|
unsupported_feature_forms = Гэты дакумент PDF змяшчае формы. Запаўненне палёў формаў не падтрымліваецца. |
||||||
|
open_with_different_viewer = Адкрыць у іншым праглядніку |
||||||
|
open_with_different_viewer.accessKey = А |
@ -0,0 +1,103 @@ |
|||||||
|
previous.title = Папярэдняя старонка |
||||||
|
previous_label = Папярэдняя |
||||||
|
next.title = Наступная старонка |
||||||
|
next_label = Наступная |
||||||
|
page_label = Старонка: |
||||||
|
page_of = з {{pageCount}} |
||||||
|
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 = Цяперашняя праява |
||||||
|
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 = Павярнуць супраць гадзіннікавай стрэлкі |
||||||
|
hand_tool_enable.title = Дазволіць ручную прыладу |
||||||
|
hand_tool_enable_label = Дазволіць ручную прыладу |
||||||
|
hand_tool_disable.title = Забараніць ручную прыладу |
||||||
|
hand_tool_disable_label = Забараніць ручную прыладу |
||||||
|
document_properties.title = Уласцівасці дакумента… |
||||||
|
document_properties_label = Уласцівасці дакумента… |
||||||
|
document_properties_file_name = Назва файла: |
||||||
|
document_properties_file_size = Памер файла: |
||||||
|
document_properties_kb = {{size_kb}} КБ ({{size_b}} байт) |
||||||
|
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 = Дата змянення: |
||||||
|
document_properties_date_string = {{date}}, {{time}} |
||||||
|
document_properties_creator = Стваральнік: |
||||||
|
document_properties_producer = Вырабнік PDF: |
||||||
|
document_properties_version = Версія PDF: |
||||||
|
document_properties_page_count = Колькасць старонак: |
||||||
|
document_properties_close = Зачыніць |
||||||
|
toggle_sidebar.title = Пераключэнне палічкі |
||||||
|
toggle_sidebar_label = Пераключыць палічку |
||||||
|
outline.title = Паказ будовы дакумента |
||||||
|
outline_label = Будова дакумента |
||||||
|
thumbs.title = Паказ накідаў |
||||||
|
thumbs_label = Накіды |
||||||
|
findbar.title = Пошук у дакуменце |
||||||
|
findbar_label = Знайсці |
||||||
|
thumb_page_title = Старонка {{page}} |
||||||
|
thumb_page_canvas = Накід старонкі {{page}} |
||||||
|
find_label = Пошук: |
||||||
|
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_more_info = Падрабязней |
||||||
|
error_less_info = Сцісла |
||||||
|
error_close = Закрыць |
||||||
|
error_version_info = PDF.js в{{version}} (пабудова: {{build}}) |
||||||
|
error_message = Паведамленне: {{message}} |
||||||
|
error_stack = Стос: {{stack}} |
||||||
|
error_file = Файл: {{file}} |
||||||
|
error_line = Радок: {{line}} |
||||||
|
rendering_error = Здарылася памылка падчас адлюстравання старонкі. |
||||||
|
page_scale_width = Шырыня старонкі |
||||||
|
page_scale_fit = Уцісненне старонкі |
||||||
|
page_scale_auto = Самастойнае павялічэнне |
||||||
|
page_scale_actual = Сапраўдны памер |
||||||
|
loading_error_indicator = Памылка |
||||||
|
loading_error = Здарылася памылка падчас загрузкі PDF. |
||||||
|
invalid_file_error = Няспраўны або пашкоджаны файл PDF. |
||||||
|
missing_file_error = Адсутны файл PDF. |
||||||
|
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_disabled = Дакументам PDF не дазволена карыстацца сваімі ўласнымі колерамі: 'Дазволіць старонкам выбіраць свае ўласныя колеры' абяздзейнена ў азіральніку. |
@ -0,0 +1,18 @@ |
|||||||
|
# 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 може и да не се покаже правилно. |
||||||
|
open_with_different_viewer=Отваряне с различна програма за показване |
||||||
|
open_with_different_viewer.accessKey=О |
@ -0,0 +1,124 @@ |
|||||||
|
# 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_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Страница: |
||||||
|
page_of=от {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Отдалечаване |
||||||
|
zoom_out_label=Отдалечаване |
||||||
|
zoom_in.title=Приближаване |
||||||
|
zoom_in_label=Приближаване |
||||||
|
zoom.title=Мащабиране |
||||||
|
print.title=Отпечатване |
||||||
|
print_label=Отпечатване |
||||||
|
presentation_mode.title=Превключване към режим на представяне |
||||||
|
presentation_mode_label=Режим на представяне |
||||||
|
open_file.title=Отваряне на файл |
||||||
|
open_file_label=Отваряне |
||||||
|
download.title=Изтегляне |
||||||
|
download_label=Изтегляне |
||||||
|
bookmark.title=Текущ изглед (копиране или отваряне в нов прозорец) |
||||||
|
bookmark_label=Текущ изглед |
||||||
|
|
||||||
|
# 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=Превключване на страничната лента |
||||||
|
outline.title=Показване на очертанията на документа |
||||||
|
outline_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}} |
||||||
|
|
||||||
|
# Context menu |
||||||
|
first_page.label=Към първата страница |
||||||
|
last_page.label=Към последната страница |
||||||
|
page_rotate_cw.label=Превъртане по часовниковата стрелка |
||||||
|
page_rotate_ccw.label=Превъртане обратно на часовниковата стрелка |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Търсене: |
||||||
|
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 версия {{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=Действителен размер |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Грешка |
||||||
|
loading_error=Получи се грешка при зареждане на PDF-а. |
||||||
|
invalid_file_error=Невалиден или повреден PDF файл |
||||||
|
missing_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" |
||||||
|
text_annotation_type.alt=[Анотация {{type}}] |
||||||
|
request_password=Защитен от парола PDF: |
||||||
|
invalid_password=Невалидна парола. |
||||||
|
|
||||||
|
printing_not_supported=Внимание: Този браузър няма пълна поддръжка на отпечатване. |
||||||
|
printing_not_ready=Внимание: Този PDF файл не е напълно зареден за печат. |
||||||
|
web_fonts_disabled=Уеб-шрифтовете са забранени: разрешаване на използването на вградените PDF шрифтове. |
||||||
|
document_colors_disabled=На PDF-документите не е разрешено да използват собствени цветове: „Разрешаване на страниците да избират собствени цветове“ е деактивирано в браузъра. |
@ -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=Marteze n'eo ket skrammet an teuliad PDF-mañ gant un doare dereat. |
||||||
|
unsupported_feature_forms=An teuliad PDF-mañ a endalc'h furmskridoù. N'eo ket skoret leuniadur ar maezioù furmskridoù. |
||||||
|
open_with_different_viewer=Digeriñ gant ul lenner all |
||||||
|
open_with_different_viewer.accessKey=D |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=Pajenn a-raok |
||||||
|
previous_label=A-raok |
||||||
|
next.title=Pajenn war-lerc'h |
||||||
|
next_label=War-lerc'h |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Pajenn : |
||||||
|
page_of=eus {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Zoum bihanaat |
||||||
|
zoom_out_label=Zoum bihanaat |
||||||
|
zoom_in.title=Zoum brasaat |
||||||
|
zoom_in_label=Zoum brasaat |
||||||
|
zoom.title=Zoum |
||||||
|
presentation_mode.title=Trec'haoliñ etrezek ar mod kinnigadenn |
||||||
|
presentation_mode_label=Mod kinnigadenn |
||||||
|
open_file.title=Digeriñ ur restr |
||||||
|
open_file_label=Digeriñ ur restr |
||||||
|
print.title=Moullañ |
||||||
|
print_label=Moullañ |
||||||
|
download.title=Pellgargañ |
||||||
|
download_label=Pellgargañ |
||||||
|
bookmark.title=Gwel bremanel (eilañ pe zigeriñ e-barzh ur prenestr nevez) |
||||||
|
bookmark_label=Gwel bremanel |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Ostilhoù |
||||||
|
tools_label=Ostilhoù |
||||||
|
first_page.title=Mont d'ar bajenn gentañ |
||||||
|
first_page.label=Mont d'ar bajenn gentañ |
||||||
|
first_page_label=Mont d'ar bajenn gentañ |
||||||
|
last_page.title=Mont d'ar bajenn diwezhañ |
||||||
|
last_page.label=Mont d'ar bajenn diwezhañ |
||||||
|
last_page_label=Mont d'ar bajenn diwezhañ |
||||||
|
page_rotate_cw.title=C'hwelañ gant roud ar bizied |
||||||
|
page_rotate_cw.label=C'hwelañ gant roud ar bizied |
||||||
|
page_rotate_cw_label=C'hwelañ gant roud ar bizied |
||||||
|
page_rotate_ccw.title=C'hwelañ gant roud gin ar bizied |
||||||
|
page_rotate_ccw.label=C'hwelañ gant roud gin ar bizied |
||||||
|
page_rotate_ccw_label=C'hwelañ gant roud gin ar bizied |
||||||
|
|
||||||
|
hand_tool_enable.title=Gweredekaat an ostilh "dorn" |
||||||
|
hand_tool_enable_label=Gweredekaat an ostilh "dorn" |
||||||
|
hand_tool_disable.title=Diweredekaat an ostilh "dorn" |
||||||
|
hand_tool_disable_label=Diweredekaat an ostilh "dorn" |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Perzhioù an teul… |
||||||
|
document_properties_label=Perzhioù an teul… |
||||||
|
document_properties_file_name=Anv restr : |
||||||
|
document_properties_file_size=Ment ar restr : |
||||||
|
document_properties_kb={{size_kb}} Ke ({{size_b}} eizhbit) |
||||||
|
document_properties_mb={{size_mb}} Me ({{size_b}} eizhbit) |
||||||
|
document_properties_title=Titl : |
||||||
|
document_properties_author=Aozer : |
||||||
|
document_properties_subject=Danvez : |
||||||
|
document_properties_keywords=Gerioù-alc'hwez : |
||||||
|
document_properties_creation_date=Deiziad krouiñ : |
||||||
|
document_properties_modification_date=Deiziad kemmañ : |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Krouer : |
||||||
|
document_properties_producer=Kenderc'her PDF : |
||||||
|
document_properties_version=Handelv PDF : |
||||||
|
document_properties_page_count=Niver a bajennoù : |
||||||
|
document_properties_close=Serriñ |
||||||
|
|
||||||
|
# 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=Diskouez/kuzhat ar varrenn gostez |
||||||
|
toggle_sidebar_label=Diskouez/kuzhat ar varrenn gostez |
||||||
|
outline.title=Diskouez ar sinedoù |
||||||
|
outline_label=Sinedoù an teuliad |
||||||
|
thumbs.title=Diskouez ar melvennoù |
||||||
|
thumbs_label=Melvennoù |
||||||
|
findbar.title=Klask e-barzh an teuliad |
||||||
|
findbar_label=Klask |
||||||
|
|
||||||
|
# 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=Pajenn {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Melvenn ar bajenn {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Kavout : |
||||||
|
find_previous.title=Kavout an tamm frazenn kent o klotañ ganti |
||||||
|
find_previous_label=Kent |
||||||
|
find_next.title=Kavout an tamm frazenn war-lerc'h o klotañ ganti |
||||||
|
find_next_label=War-lerc'h |
||||||
|
find_highlight=Usskediñ pep tra |
||||||
|
find_match_case_label=Teurel evezh ouzh ar pennlizherennoù |
||||||
|
find_reached_top=Tizhet eo bet derou ar bajenn, kenderc'hel diouzh an diaz |
||||||
|
find_reached_bottom=Tizhet eo bet dibenn ar bajenn, kenderc'hel diouzh ar c'hrec'h |
||||||
|
find_not_found=N'haller ket kavout ar frazenn |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Muioc'h a ditouroù |
||||||
|
error_less_info=Nebeutoc'h a ditouroù |
||||||
|
error_close=Serriñ |
||||||
|
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be |
||||||
|
# replaced by the PDF.JS version and build ID. |
||||||
|
error_version_info=PDF.js handelv {{version}} (kempunadur : {{build}}) |
||||||
|
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
|
# english string describing the error. |
||||||
|
error_message=Kemennadenn : {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Torn : {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Restr : {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Linenn : {{line}} |
||||||
|
rendering_error=Degouezhet ez eus bet ur fazi e-pad skrammañ ar bajennad. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Led ar bajenn |
||||||
|
page_scale_fit=Pajenn a-bezh |
||||||
|
page_scale_auto=Zoum emgefreek |
||||||
|
page_scale_actual=Ment wir |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Fazi |
||||||
|
loading_error=Degouezhet ez eus bet ur fazi e-pad kargañ ar PDF. |
||||||
|
invalid_file_error=Restr PDF didalvoudek pe kontronet. |
||||||
|
missing_file_error=Restr PDF o vankout. |
||||||
|
|
||||||
|
# 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}} Notennañ] |
||||||
|
password_label=Enankit ar ger-tremen evit digeriñ ar restr PDF-mañ. |
||||||
|
password_invalid=Ger-tremen didalvoudek. Klaskit en-dro mar plij. |
||||||
|
password_ok=Mat eo |
||||||
|
password_cancel=Nullañ |
||||||
|
|
||||||
|
printing_not_supported=Kemenn : N'eo ket skoret penn-da-benn ar moullañ gant ar merdeer-mañ. |
||||||
|
printing_not_ready=Kemenn : N'hall ket bezañ moullet ar restr PDF rak n'eo ket karget penn-da-benn. |
||||||
|
web_fonts_disabled=Diweredekaet eo an nodrezhoù web : n'haller ket arverañ an nodrezhoù PDF enframmet. |
||||||
|
document_colors_disabled=N'eo ket aotreet an teuliadoù PDF da arverañ o livioù dezho : diweredekaet eo 'Aotren ar pajennoù da zibab o livioù dezho' e-barzh ar merdeer. |
@ -0,0 +1,8 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
# Chrome notification bar messages and buttons |
||||||
|
unsupported_feature=Ovaj PDF dokument možda neće biti prikazan ispravno. |
||||||
|
open_with_different_viewer=Otvori sa drugim preglednikom |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,125 @@ |
|||||||
|
# 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=Prethodna strana |
||||||
|
previous_label=Prethodna |
||||||
|
next.title=Sljedeća strna |
||||||
|
next_label=Sljedeća |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Strana: |
||||||
|
page_of=od {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Umanji |
||||||
|
zoom_out_label=Umanji |
||||||
|
zoom_in.title=Uvećaj |
||||||
|
zoom_in_label=Uvećaj |
||||||
|
zoom.title=Uvećanje |
||||||
|
print.title=Štampaj |
||||||
|
print_label=Štampaj |
||||||
|
presentation_mode.title=Prebaci se u prezentacijski režim |
||||||
|
presentation_mode_label=Prezentacijski režim |
||||||
|
open_file.title=Otvori fajl |
||||||
|
open_file_label=Otvori |
||||||
|
download.title=Preuzmi |
||||||
|
download_label=Preuzmi |
||||||
|
bookmark.title=Trenutni prikaz (kopiraj ili otvori u novom prozoru) |
||||||
|
bookmark_label=Trenutni prikaz |
||||||
|
|
||||||
|
# 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=Uključi/isključi bočnu traku |
||||||
|
toggle_sidebar_label=Uključi/isključi bočnu traku |
||||||
|
outline.title=Prikaži konture dokumenta |
||||||
|
outline_label=Konture dokumenta |
||||||
|
thumbs.title=Prikaži thumbnailove |
||||||
|
thumbs_label=Thumbnailovi |
||||||
|
findbar.title=Pronađi u dokumentu |
||||||
|
findbar_label=Pronađi |
||||||
|
|
||||||
|
# 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=Strana {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Thumbnail strane {{page}} |
||||||
|
|
||||||
|
# Context menu |
||||||
|
first_page.label=Idi na prvu stranu |
||||||
|
last_page.label=Idi na zadnju stranu |
||||||
|
page_rotate_cw.label=Rotiraj u smjeru kazaljke na satu |
||||||
|
page_rotate_ccw.label=Rotiraj suprotno smjeru kazaljke na satu |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Pronađi: |
||||||
|
find_previous.title=Pronađi prethodno pojavljivanje fraze |
||||||
|
find_previous_label=Prethodno |
||||||
|
find_next.title=Pronađi sljedeće pojavljivanje fraze |
||||||
|
find_next_label=Sljedeće |
||||||
|
find_highlight=Označi sve |
||||||
|
find_match_case_label=Osjetljivost na karaktere |
||||||
|
find_reached_top=Dostigao sam vrh dokumenta, nastavljam sa dna |
||||||
|
find_reached_bottom=Dostigao sam kraj dokumenta, nastavljam sa vrha |
||||||
|
find_not_found=Fraza nije pronađena |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Više informacija |
||||||
|
error_less_info=Manje informacija |
||||||
|
error_close=Zatvori |
||||||
|
# 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=Poruka: {{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=Fajl: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Linija: {{line}} |
||||||
|
rendering_error=Došlo je do greške prilikom renderiranja strane. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Širina strane |
||||||
|
page_scale_fit=Uklopi stranu |
||||||
|
page_scale_auto=Automatsko uvećanje |
||||||
|
page_scale_actual=Stvarna veličina |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
# LOCALIZATION NOTE (error_line): "{{[percent}}" will be replaced with a percentage |
||||||
|
loading_error_indicator=Greška |
||||||
|
loading_error=Došlo je do greške prilikom učitavanja PDF-a. |
||||||
|
invalid_file_error=Neispravan ili oštećen PDF fajl. |
||||||
|
missing_file_error=Nedostaje PDF fajl. |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip. |
||||||
|
# "{{[type}}" will be replaced with an annotation type from a list defined in |
||||||
|
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
||||||
|
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
||||||
|
text_annotation_type.alt=[{{type}} pribilješka] |
||||||
|
request_password=PDF je zaštićen lozinkom: |
||||||
|
invalid_password=Pogrešna lozinka. |
||||||
|
|
||||||
|
printing_not_supported=Upozorenje: Štampanje nije u potpunosti podržano u ovom browseru. |
||||||
|
printing_not_ready=Upozorenje: PDF nije u potpunosti učitan za štampanje. |
||||||
|
web_fonts_disabled=Web fontovi su onemogućeni: nemoguće koristiti ubačene PDF fontove. |
||||||
|
document_colors_disabled=PDF dokumentima nije dozvoljeno da koriste vlastite boje: \'Dozvoli stranicama da izaberu vlastite boje\' je deaktivirano u browseru. |
@ -1,131 +1,161 @@ |
|||||||
# Copyright 2012 Mozilla Foundation |
# Copyright 2012 Mozilla Foundation |
||||||
# |
# |
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
# you may not use this file except in compliance with the License. |
# you may not use this file except in compliance with the License. |
||||||
# You may obtain a copy of the License at |
# You may obtain a copy of the License at |
||||||
# |
# |
||||||
# http://www.apache.org/licenses/LICENSE-2.0 |
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
# |
# |
||||||
# Unless required by applicable law or agreed to in writing, software |
# Unless required by applicable law or agreed to in writing, software |
||||||
# distributed under the License is distributed on an "AS IS" BASIS, |
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
# See the License for the specific language governing permissions and |
# See the License for the specific language governing permissions and |
||||||
# limitations under the License. |
# limitations under the License. |
||||||
|
|
||||||
# Main toolbar buttons (tooltips and alt text for images) |
# Main toolbar buttons (tooltips and alt text for images) |
||||||
previous.title=Pàgina anterior |
previous.title=Pàgina anterior |
||||||
previous_label=Anterior |
previous_label=Anterior |
||||||
next.title=Pàgina següent |
next.title=Pàgina següent |
||||||
next_label=Següent |
next_label=Següent |
||||||
|
|
||||||
# LOCALIZATION NOTE (page_label, page_of): |
# LOCALIZATION NOTE (page_label, page_of): |
||||||
# These strings are concatenated to form the "Page: X of Y" string. |
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
# Do not translate "{{pageCount}}", it will be substituted with a number |
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
# representing the total number of pages. |
# representing the total number of pages. |
||||||
page_label=Pàgina: |
page_label=Pàgina: |
||||||
page_of=de {{pageCount}} |
page_of=de {{pageCount}} |
||||||
|
|
||||||
zoom_out.title=Reduir |
zoom_out.title=Allunya |
||||||
zoom_out_label=Reduir |
zoom_out_label=Allunya |
||||||
zoom_in.title=Ampliar |
zoom_in.title=Apropa |
||||||
zoom_in_label=Ampliar |
zoom_in_label=Apropa |
||||||
zoom.title=Ampliació |
zoom.title=Escala |
||||||
presentation_mode.title=Canviar a mode de Presentació |
presentation_mode.title=Canvia al mode de presentació |
||||||
presentation_mode_label=Mode de Presentació |
presentation_mode_label=Mode de presentació |
||||||
open_file.title=Obrir arxiu |
open_file.title=Obre el fitxer |
||||||
open_file_label=Obrir |
open_file_label=Obre |
||||||
print.title=Imprimir |
print.title=Imprimeix |
||||||
print_label=Imprimir |
print_label=Imprimeix |
||||||
download.title=Descarregar |
download.title=Baixa |
||||||
download_label=Descarregar |
download_label=Baixa |
||||||
bookmark.title=Vista actual (copiï o obri en una finestra nova) |
bookmark.title=Vista actual (copia o obre en una finestra nova) |
||||||
bookmark_label=Vista actual |
bookmark_label=Vista actual |
||||||
|
|
||||||
# Secondary toolbar and context menu |
# Secondary toolbar and context menu |
||||||
first_page.title=Primera pàgina |
tools.title=Eines |
||||||
first_page.label=Primera pàgina |
tools_label=Eines |
||||||
first_page_label=Primera pàgina |
first_page.title=Vés a la primera pàgina |
||||||
last_page.title=Darrera pàgina |
first_page.label=Vés a la primera pàgina |
||||||
last_page.label=Darrera pàgina |
first_page_label=Vés a la primera pàgina |
||||||
last_page_label=Darrera pàgina |
last_page.title=Vés a l'última pàgina |
||||||
page_rotate_cw.title=Rotar sentit horari |
last_page.label=Vés a l'última pàgina |
||||||
page_rotate_cw.label=Rotar sentit horari |
last_page_label=Vés a l'última pàgina |
||||||
page_rotate_cw_label=Rotar sentit horari |
page_rotate_cw.title=Gira cap a la dreta |
||||||
page_rotate_ccw.title=Rotar sentit anti-horari |
page_rotate_cw.label=Gira cap a la dreta |
||||||
page_rotate_ccw.label=Rotar sentit anti-horari |
page_rotate_cw_label=Gira cap a la dreta |
||||||
page_rotate_ccw_label=Rotar sentit anti-horari |
page_rotate_ccw.title=Gira cap a l'esquerra |
||||||
|
page_rotate_ccw.label=Gira cap a l'esquerra |
||||||
# Tooltips and alt text for side panel toolbar buttons |
page_rotate_ccw_label=Gira cap a l'esquerra |
||||||
# (the _label strings are alt text for the buttons, the .title strings are |
|
||||||
# tooltips) |
hand_tool_enable.title=Habilita l'eina de mà |
||||||
toggle_slider.title=Alternar lliscador |
hand_tool_enable_label=Habilita l'eina de mà |
||||||
toggle_slider_label=Alternar lliscador |
hand_tool_disable.title=Inhabilita l'eina de mà |
||||||
outline.title=Mostrar esquema del document |
hand_tool_disable_label=Inhabilita l'eina de mà |
||||||
outline_label=Esquema del document |
|
||||||
thumbs.title=Mostrar miniatures |
# Document properties dialog box |
||||||
thumbs_label=Miniatures |
document_properties.title=Propietats del document… |
||||||
findbar.title=Cercar en el document |
document_properties_label=Propietats del document… |
||||||
findbar_label=Cercar |
document_properties_file_name=Nom del fitxer: |
||||||
|
document_properties_file_size=Mida del fitxer: |
||||||
# Thumbnails panel item (tooltip and alt text for images) |
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page |
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
# number. |
document_properties_title=Títol: |
||||||
thumb_page_title=Pàgina {{page}} |
document_properties_author=Autor: |
||||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
document_properties_subject=Assumpte: |
||||||
# number. |
document_properties_keywords=Paraules clau: |
||||||
thumb_page_canvas=Miniatura de la pàgina {{page}} |
document_properties_creation_date=Data de creació: |
||||||
|
document_properties_modification_date=Data de modificació: |
||||||
# Find panel button title and messages |
document_properties_date_string={{date}}, {{time}} |
||||||
find=Cercar |
document_properties_creator=Creador: |
||||||
find_terms_not_found=(No trobat) |
document_properties_producer=Generador de PDF: |
||||||
|
document_properties_version=Versió de PDF: |
||||||
# Find panel button title and messages |
document_properties_page_count=Nombre de pàgines: |
||||||
find_label=Cerca: |
document_properties_close=Tanca |
||||||
find_previous.title=Trobar ocurrència anterior |
|
||||||
find_previous_label=Previ |
# Tooltips and alt text for side panel toolbar buttons |
||||||
find_next.title=Trobar ocurrència posterior |
# (the _label strings are alt text for the buttons, the .title strings are |
||||||
find_next_label=Següent |
# tooltips) |
||||||
find_highlight=Contrastar tot |
toggle_sidebar.title=Mostra/amaga la barra lateral |
||||||
find_match_case_label=Majúscules i minúscules |
toggle_sidebar_label=Mostra/amaga la barra lateral |
||||||
find_wrapped_to_bottom=Part superior assolida, continu a la part inferior |
outline.title=Mostra el contorn del document |
||||||
find_wrapped_to_top=Final de pàgina finalitzada, continu a la part superior |
outline_label=Contorn del document |
||||||
find_not_found=Frase no trobada |
thumbs.title=Mostra les miniatures |
||||||
|
thumbs_label=Miniatures |
||||||
# Error panel labels |
findbar.title=Cerca al document |
||||||
error_more_info=Més informació |
findbar_label=Cerca |
||||||
error_less_info=Menys informació |
|
||||||
error_close=Tancar |
# Thumbnails panel item (tooltip and alt text for images) |
||||||
# LOCALIZATION NOTE (error_build): "{{build}}" will be replaced by the PDF.JS |
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page |
||||||
# build ID. |
# number. |
||||||
error_build=Compilació de PDF.JS: {{build}} |
thumb_page_title=Pàgina {{page}} |
||||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
# english string describing the error. |
# number. |
||||||
error_message=Missatge: {{message}} |
thumb_page_canvas=Miniatura de la pàgina {{page}} |
||||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
|
||||||
# trace. |
# Find panel button title and messages |
||||||
error_stack=Pila: {{stack}} |
find_label=Cerca: |
||||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
find_previous.title=Cerca l'anterior coincidència de l'expressió |
||||||
error_file=Arxiu: {{file}} |
find_previous_label=Anterior |
||||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
find_next.title=Cerca la següent coincidència de l'expressió |
||||||
error_line=Línia: {{line}} |
find_next_label=Següent |
||||||
rendering_error=Ha ocurregut un error mentre es renderitzava la pàgina. |
find_highlight=Ressalta-ho tot |
||||||
|
find_match_case_label=Distingeix entre majúscules i minúscules |
||||||
# Predefined zoom values |
find_reached_top=S'ha arribat al principi del document, es continua pel final |
||||||
page_scale_width=Ample de pàgina |
find_reached_bottom=S'ha arribat al final del document, es continua pel principi |
||||||
page_scale_fit=Ajustar a la pàgina |
find_not_found=No s'ha trobat l'expressió |
||||||
page_scale_auto=Ampliació automàtica |
|
||||||
page_scale_actual=Tamany real |
# Error panel labels |
||||||
|
error_more_info=Més informació |
||||||
# Loading indicator messages |
error_less_info=Menys informació |
||||||
loading_error_indicator=Error |
error_close=Tanca |
||||||
loading_error=Ha ocorregut un error mentres es carregava el PDF. |
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be |
||||||
invalid_file_error=Invàlid o fitxer PDF corrupte. |
# replaced by the PDF.JS version and build ID. |
||||||
|
error_version_info=PDF.js v{{version}} (muntatge: {{build}}) |
||||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. |
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
# "{{type}}" will be replaced with an annotation type from a list defined in |
# english string describing the error. |
||||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
error_message=Missatge: {{message}} |
||||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
text_annotation_type.alt=[Anotació {{type}}] |
# trace. |
||||||
request_password=El PDF està protegit amb una contrasenya: |
error_stack=Pila: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
printing_not_supported=Avís: La impressió no és compatible totalment en aquest navegador. |
error_file=Fitxer: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Línia: {{line}} |
||||||
|
rendering_error=S'ha produït un error mentre es renderitzava la pàgina |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Amplària de la pàgina |
||||||
|
page_scale_fit=Ajusta la pàgina |
||||||
|
page_scale_auto=Zoom automàtic |
||||||
|
page_scale_actual=Mida real |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Error |
||||||
|
loading_error=S'ha produït un error en carregar el PDF. |
||||||
|
invalid_file_error=El fitxer PDF no és vàlid o està malmès. |
||||||
|
missing_file_error=Falta el fitxer 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" |
||||||
|
text_annotation_type.alt=[Anotació {{type}}] |
||||||
|
password_label=Introduïu la contrasenya per obrir aquest fitxer PDF. |
||||||
|
password_invalid=La contrasenya no és vàlida. Torneu-ho a provar. |
||||||
|
password_ok=D'acord |
||||||
|
password_cancel=Cancel·la |
||||||
|
|
||||||
|
printing_not_supported=Avís: la impressió no és plenament funcional en aquest navegador. |
||||||
|
printing_not_ready=Atenció: el PDF no s'ha acabat de carregar per imprimir-lo. |
||||||
|
web_fonts_disabled=Les fonts web estan inhabilitades: no es poden incrustar fitxers PDF. |
||||||
|
document_colors_disabled=Els documents PDF no poden usar els seus colors propis: «Permet a les pàgines triar els colors propis» es troba desactivat al navegador. |
||||||
|
@ -0,0 +1,8 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
# Chrome notification bar messages and buttons |
||||||
|
unsupported_feature=Nen lopk PDF mòże sã lëchò wëskrzëniwac |
||||||
|
open_with_different_viewer=Òtemkni w jinym czëtnikù |
||||||
|
open_with_different_viewer.accessKey = j |
@ -0,0 +1,134 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
# Main toolbar buttons (tooltips and alt text for images) |
||||||
|
previous.title=Pòprzédnô strona |
||||||
|
previous_label=Pòprzédnô |
||||||
|
next.title=Nôslédnô strona |
||||||
|
next_label=Nôslédnô |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Strona: |
||||||
|
page_of=z {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Zmniészë |
||||||
|
zoom_out_label=Zmniészë |
||||||
|
zoom_in.title=Zwikszë |
||||||
|
zoom_in_label=Wiôlgòsc |
||||||
|
zoom.title=Wiôlgòsc |
||||||
|
print.title=Drëkùjë |
||||||
|
print_label=Drëkùjë |
||||||
|
presentation_mode.title=Przéńdzë w trib prezentacje |
||||||
|
presentation_mode_label=Trib prezentacje |
||||||
|
open_file.title=Òtemkni lopk |
||||||
|
open_file_label=Òtemkni |
||||||
|
download.title=Zladënk |
||||||
|
download_label=Zladënk |
||||||
|
bookmark.title=Spamiãtôj wëzdrzatk (kòpérëje, abò òtemkni w nowim òknnie) |
||||||
|
bookmark_label=Aktualny wëzdrzatk |
||||||
|
|
||||||
|
find_label=Szëkôj: |
||||||
|
find_previous.title=Biéj do pòprzédnégò wënikù szëkbë |
||||||
|
find_previous_label=Pòprzédny |
||||||
|
find_next.title=Biéj do nôslédnégò wënikù szëkbë |
||||||
|
find_next_label=Nôslédny |
||||||
|
find_highlight=Pòdszkrzëni wszëtczé |
||||||
|
find_match_case_label=Rozeznôwôj miarã lëterów |
||||||
|
find_not_found=Nie nalôzł tekstu |
||||||
|
find_reached_bottom=Doszedł do kùńca dokùmentu, zaczinającë òd górë |
||||||
|
find_reached_top=Doszedł do pòczątkù dokùmentu, zaczinającë òd dołù |
||||||
|
|
||||||
|
toggle_sidebar.title=Pòsuwk wëbiérkù |
||||||
|
toggle_sidebar_label=Pòsuwk wëbiérkù |
||||||
|
|
||||||
|
outline.title=Wëskrzëni òbcéch dokùmentu |
||||||
|
outline_label=Òbcéch dokùmentu |
||||||
|
thumbs.title=Wëskrzëni miniaturë |
||||||
|
thumbs_label=Miniaturë |
||||||
|
findbar.title=Przeszëkôj dokùment |
||||||
|
findbar_label=Nalezë |
||||||
|
tools_label=Nôrzãdła |
||||||
|
first_page.title=Biéj do pierszi stronë |
||||||
|
first_page.label=Biéj do pierszi stronë |
||||||
|
last_page.label=Biéj do òstatny stronë |
||||||
|
invalid_file_error=Lëchi ôrt, abò pòpsëti lopk PDF. |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Thumbnails panel item (tooltip and alt text for images) |
||||||
|
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_title=Strona {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Miniatura stronë {{page}} |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Wicy infòrmacje |
||||||
|
error_less_info=Mni infòrmacje |
||||||
|
error_close=Close |
||||||
|
error_version_info=PDF.js v{{version}} (build: {{build}}) |
||||||
|
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
|
# english string describing the error. |
||||||
|
error_message=Message: {{wiadło}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Stack: {{stóg}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=File: {{lopk}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Line: {{line}} |
||||||
|
rendering_error=Pòkôza sã fela przë renderowanim stronë. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Szérzawa stronë |
||||||
|
page_scale_fit=Dopasëje stronã |
||||||
|
page_scale_auto=Aùtomatnô wiôlgòsc |
||||||
|
page_scale_actual=Naturalnô wiôlgòsc |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
# LOCALIZATION NOTE (error_line): "{{[percent}}" will be replaced with a percentage |
||||||
|
loading_error_indicator=Fela |
||||||
|
loading_error=Pòkôza sã fela przë wczëtiwanim PDFù. |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip. |
||||||
|
# "{{[type}}" will be replaced with an annotation type from a list defined in |
||||||
|
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
||||||
|
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
||||||
|
|
||||||
|
request_password=PDF je zabezpieczony parolą: |
||||||
|
printing_not_supported = Òstrzéga: przezérnik nie je do kùńca wspieróny przez drëkôrze |
||||||
|
|
||||||
|
# Context menu |
||||||
|
page_rotate_cw.label=Òbkrãcë w prawò |
||||||
|
page_rotate_ccw.label=Òbkrãcë w lewò |
||||||
|
|
||||||
|
|
||||||
|
last_page.title=Biéj do pòprzédny stronë |
||||||
|
last_page_label=Biéj do pòprzédny stronë |
||||||
|
page_rotate_cw.title=Òbkrãcë w prawò |
||||||
|
page_rotate_cw_label=Òbkrãcë w prawò |
||||||
|
page_rotate_ccw.title=Òbkrãcë w lewò |
||||||
|
page_rotate_ccw_label=Òbkrãcë w lewò |
||||||
|
|
||||||
|
|
||||||
|
web_fonts_disabled=Sécowé czconczi są wëłączoné: włączë je, bë móc ùżiwac òsadzonëch czconków w lopkach PDF. |
||||||
|
|
||||||
|
|
||||||
|
missing_file_error=Felëje lopka PDF. |
||||||
|
printing_not_ready = Òstrzéga: lopk mùszi sã do kùńca wczëtac zanim gò mòże drëkòwac |
||||||
|
|
||||||
|
document_colors_disabled=Dokùmentë PDF nie mògą ù swòjich farwów: \'Pòzwòlë stronóm wëbierac swòje farwë\' je wëłączoné w przezérnikù. |
||||||
|
invalid_password=Lëchô parola. |
||||||
|
text_annotation_type.alt=[Adnotacjô {{type}}] |
||||||
|
|
||||||
|
tools.title=Tools |
||||||
|
first_page_label=Go to First Page |
||||||
|
|
||||||
|
|
@ -1,18 +1,9 @@ |
|||||||
# Copyright 2012 Mozilla Foundation |
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
# |
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
# 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 notifikationsbar beskeder og knapper |
# Chrome notification bar messages and buttons |
||||||
unsupported_feature=Denne PDF bliver måske ikke vist korrekt |
unsupported_feature=Dette PDF-dokument vises måske ikke korrekt. |
||||||
open_with_different_viewer=Åbn med en anden PDF-fremviser |
unsupported_feature_forms=Dette PDF-dokument indeholder formularer. Udfyldning af formularfelter understøttes ikke. |
||||||
open_with_different_viewer.accessKey=o |
open_with_different_viewer=Åbn med et andet program |
||||||
|
open_with_different_viewer.accessKey=Å |
||||||
|
@ -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=Das PDF-Dokument wird eventuell nicht korrekt dargestellt. |
||||||
|
unsupported_feature_forms=Das PDF-Dokument enthält Formulare. Das Ausfüllen von Formularen wird nicht unterstützt. |
||||||
|
open_with_different_viewer=Mit anderem Programm ansehen |
||||||
|
open_with_different_viewer.accessKey=P |
@ -1,18 +1,9 @@ |
|||||||
# Copyright 2012 Mozilla Foundation |
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
# |
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
# 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 |
# Chrome notification bar messages and buttons |
||||||
unsupported_feature=Αυτό το έγγραφο PDF ίσως να μην εμφανιστεί σωστά. |
unsupported_feature=Αυτό το έγγραφο PDF μπορεί να μην εμφανιστεί σωστά |
||||||
open_with_different_viewer=Άνοιγμα με άλλο πρόγραμμα ανάγνωσης PDF |
open_with_different_viewer=Άνοιγμα με διαφορετική εφαρμογή |
||||||
open_with_different_viewer.accessKey=o |
open_with_different_viewer.accessKey=δ |
||||||
|
|
||||||
|
@ -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=This PDF document might not be displayed correctly. |
||||||
|
unsupported_feature_forms=This PDF document contains forms. The filling of form fields is not supported. |
||||||
|
open_with_different_viewer=Open With Different Viewer |
||||||
|
open_with_different_viewer.accessKey=O |
@ -0,0 +1,161 @@ |
|||||||
|
# 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_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Page: |
||||||
|
page_of=of {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Zoom Out |
||||||
|
zoom_out_label=Zoom Out |
||||||
|
zoom_in.title=Zoom In |
||||||
|
zoom_in_label=Zoom In |
||||||
|
zoom.title=Zoom |
||||||
|
print.title=Print |
||||||
|
print_label=Print |
||||||
|
presentation_mode.title=Switch to Presentation Mode |
||||||
|
presentation_mode_label=Presentation Mode |
||||||
|
open_file.title=Open File |
||||||
|
open_file_label=Open |
||||||
|
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 Counter-Clockwise |
||||||
|
page_rotate_ccw.label=Rotate Counter-Clockwise |
||||||
|
page_rotate_ccw_label=Rotate Counter-Clockwise |
||||||
|
|
||||||
|
hand_tool_enable.title=Enable hand tool |
||||||
|
hand_tool_enable_label=Enable hand tool |
||||||
|
hand_tool_disable.title=Disable hand tool |
||||||
|
hand_tool_disable_label=Disable hand tool |
||||||
|
|
||||||
|
# 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: |
||||||
|
document_properties_kb={{size_kb}} kB ({{size_b}} 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: |
||||||
|
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_close=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 |
||||||
|
toggle_sidebar_label=Toggle Sidebar |
||||||
|
outline.title=Show Document Outline |
||||||
|
outline_label=Document Outline |
||||||
|
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_label=Find: |
||||||
|
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_reached_top=Reached top of document, continued from bottom |
||||||
|
find_reached_bottom=Reached end of document, continued from top |
||||||
|
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 |
||||||
|
|
||||||
|
# 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. |
||||||
|
|
||||||
|
# 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_disabled=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,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=This PDF document might not be displayed correctly. |
||||||
|
unsupported_feature_forms=This PDF document contains forms. The filling of form fields is not supported. |
||||||
|
open_with_different_viewer=Open With Different Viewer |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,161 @@ |
|||||||
|
# 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_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Page: |
||||||
|
page_of=of {{pageCount}} |
||||||
|
|
||||||
|
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 |
||||||
|
|
||||||
|
hand_tool_enable.title=Enable hand tool |
||||||
|
hand_tool_enable_label=Enable hand tool |
||||||
|
hand_tool_disable.title=Disable hand tool |
||||||
|
hand_tool_disable_label=Disable hand tool |
||||||
|
|
||||||
|
# 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: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} 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: |
||||||
|
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_close=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 |
||||||
|
toggle_sidebar_label=Toggle Sidebar |
||||||
|
outline.title=Show Document Outline |
||||||
|
outline_label=Document Outline |
||||||
|
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_label=Find: |
||||||
|
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_reached_top=Reached top of document, continued from bottom |
||||||
|
find_reached_bottom=Reached end of document, continued from top |
||||||
|
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 |
||||||
|
|
||||||
|
# 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. |
||||||
|
|
||||||
|
# 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_disabled=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,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=Tiu ĉi dokumento PDF povus esti malĝuste montrita. |
||||||
|
unsupported_feature_forms=Tiu ĉi dokumento PDF enhavas formularojn. Plenigi kampojn de formularoj ne estas subtenata. |
||||||
|
open_with_different_viewer=Malfermi per alia programo |
||||||
|
open_with_different_viewer.accessKey=m |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=Antaŭa paĝo |
||||||
|
previous_label=Malantaŭen |
||||||
|
next.title=Venonta paĝo |
||||||
|
next_label=Antaŭen |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Paĝo: |
||||||
|
page_of=el {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Malpligrandigi |
||||||
|
zoom_out_label=Malpligrandigi |
||||||
|
zoom_in.title=Pligrandigi |
||||||
|
zoom_in_label=Pligrandigi |
||||||
|
zoom.title=Pligrandigilo |
||||||
|
presentation_mode.title=Iri al prezenta reĝimo |
||||||
|
presentation_mode_label=Prezenta reĝimo |
||||||
|
open_file.title=Malfermi dosieron |
||||||
|
open_file_label=Malfermi |
||||||
|
print.title=Presi |
||||||
|
print_label=Presi |
||||||
|
download.title=Elŝuti |
||||||
|
download_label=Elŝuti |
||||||
|
bookmark.title=Nuna vido (kopii aŭ malfermi en nova fenestro) |
||||||
|
bookmark_label=Nuna vido |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Iloj |
||||||
|
tools_label=Iloj |
||||||
|
first_page.title=Iri al la unua paĝo |
||||||
|
first_page.label=Iri al la unua paĝo |
||||||
|
first_page_label=Iri al la unua paĝo |
||||||
|
last_page.title=Iri al la lasta paĝo |
||||||
|
last_page.label=Iri al la lasta paĝo |
||||||
|
last_page_label=Iri al la lasta paĝo |
||||||
|
page_rotate_cw.title=Rotaciigi dekstrume |
||||||
|
page_rotate_cw.label=Rotaciigi dekstrume |
||||||
|
page_rotate_cw_label=Rotaciigi dekstrume |
||||||
|
page_rotate_ccw.title=Rotaciigi maldekstrume |
||||||
|
page_rotate_ccw.label=Rotaciigi maldekstrume |
||||||
|
page_rotate_ccw_label=Rotaciigi maldekstrume |
||||||
|
|
||||||
|
hand_tool_enable.title=Aktivigi manan ilon |
||||||
|
hand_tool_enable_label=Aktivigi manan ilon |
||||||
|
hand_tool_disable.title=Malaktivigi manan ilon |
||||||
|
hand_tool_disable_label=Malaktivigi manan ilon |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Atributoj de dokumento… |
||||||
|
document_properties_label=Atributoj de dokumento… |
||||||
|
document_properties_file_name=Nomo de dosiero: |
||||||
|
document_properties_file_size=Grado de dosiero: |
||||||
|
document_properties_kb={{size_kb}} KO ({{size_b}} oktetoj) |
||||||
|
document_properties_mb={{size_mb}} MO ({{size_b}} oktetoj) |
||||||
|
document_properties_title=Titolo: |
||||||
|
document_properties_author=Aŭtoro: |
||||||
|
document_properties_subject=Temo: |
||||||
|
document_properties_keywords=Ŝlosilvorto: |
||||||
|
document_properties_creation_date=Dato de kreado: |
||||||
|
document_properties_modification_date=Dato de modifo: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Kreinto: |
||||||
|
document_properties_producer=Produktinto de PDF: |
||||||
|
document_properties_version=Versio de PDF: |
||||||
|
document_properties_page_count=Nombro de paĝoj: |
||||||
|
document_properties_close=Fermi |
||||||
|
|
||||||
|
# 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=Montri/kaŝi flankan strion |
||||||
|
toggle_sidebar_label=Montri/kaŝi flankan strion |
||||||
|
outline.title=Montri skemon de dokumento |
||||||
|
outline_label=Skemo de dokumento |
||||||
|
thumbs.title=Montri miniaturojn |
||||||
|
thumbs_label=Miniaturoj |
||||||
|
findbar.title=Serĉi en dokumento |
||||||
|
findbar_label=Serĉi |
||||||
|
|
||||||
|
# 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=Paĝo {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Miniaturo de paĝo {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Serĉi: |
||||||
|
find_previous.title=Serĉi la antaŭan aperon de la frazo |
||||||
|
find_previous_label=Malantaŭen |
||||||
|
find_next.title=Serĉi la venontan aperon de la frazo |
||||||
|
find_next_label=Antaŭen |
||||||
|
find_highlight=Elstarigi ĉiujn |
||||||
|
find_match_case_label=Distingi inter majuskloj kaj minuskloj |
||||||
|
find_reached_top=Komenco de la dokumento atingita, daŭrigado ekde la fino |
||||||
|
find_reached_bottom=Fino de la dokumento atingita, daŭrigado ekde la komenco |
||||||
|
find_not_found=Frazo ne trovita |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Pli da informo |
||||||
|
error_less_info=Mapli da informo |
||||||
|
error_close=Fermi |
||||||
|
# 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=Mesaĝo: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Stako: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Dosiero: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Linio: {{line}} |
||||||
|
rendering_error=Okazis eraro dum la montrado de la paĝo. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Larĝo de paĝo |
||||||
|
page_scale_fit=Adapti paĝon |
||||||
|
page_scale_auto=Aŭtomata skalo |
||||||
|
page_scale_actual=Reala gandeco |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Eraro |
||||||
|
loading_error=Okazis eraro dum la ŝargado de la PDF dosiero. |
||||||
|
invalid_file_error=Nevalida aŭ difektita PDF dosiero. |
||||||
|
missing_file_error=Mankas dosiero 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" |
||||||
|
text_annotation_type.alt=[Prinoto: {{type}}] |
||||||
|
password_label=Tajpu pasvorton por malfermi tiun ĉi dosieron PDF. |
||||||
|
password_invalid=Nevalida pasvorto. Bonvolu provi denove. |
||||||
|
password_ok=Akcepti |
||||||
|
password_cancel=Nuligi |
||||||
|
|
||||||
|
printing_not_supported=Averto: tiu ĉi retesplorilo ne plene subtenas presadon. |
||||||
|
printing_not_ready=Warning: La PDF dosiero ne estas plene ŝargita por presado. |
||||||
|
web_fonts_disabled=Neaktivaj teksaĵaj tiparoj: ne elbas uzi enmetitajn tiparojn de PDF. |
||||||
|
document_colors_disabled=Dokumentoj PDF ne rajtas havi siajn proprajn kolorojn: \'Permesi al paĝoj elekti siajn proprajn kolorojn\' estas malaktiva en la retesplorilo. |
@ -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=Este documento PDF puede que no se muestre correctamente. |
||||||
|
unsupported_feature_forms=Este documento PDF cotiene formularios. Completar campos de un formulario no está soportado. |
||||||
|
open_with_different_viewer=Abrir con un visor diferente |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,167 @@ |
|||||||
|
# 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ágina anterior |
||||||
|
previous_label=Anterior |
||||||
|
next.title=Página siguiente |
||||||
|
next_label=Siguiente |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Página: |
||||||
|
page_of=de {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Alejar |
||||||
|
zoom_out_label=Alejar |
||||||
|
zoom_in.title=Acercar |
||||||
|
zoom_in_label=Acercar |
||||||
|
zoom.title=Zoom |
||||||
|
print.title=Imprimir |
||||||
|
print_label=Imprimir |
||||||
|
presentation_mode.title=Cambiar a modo presentación |
||||||
|
presentation_mode_label=Modo presentación |
||||||
|
open_file.title=Abrir archivo |
||||||
|
open_file_label=Abrir |
||||||
|
download.title=Descargar |
||||||
|
download_label=Descargar |
||||||
|
bookmark.title=Vista actual (copiar o abrir en nueva ventana) |
||||||
|
bookmark_label=Vista actual |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Herramientas |
||||||
|
tools_label=Herramientas |
||||||
|
first_page.title=Ir a primera página |
||||||
|
first_page.label=Ir a primera página |
||||||
|
first_page_label=Ir a primera página |
||||||
|
last_page.title=Ir a última página |
||||||
|
last_page.label=Ir a última página |
||||||
|
last_page_label=Ir a última página |
||||||
|
page_rotate_cw.title=Rotar horario |
||||||
|
page_rotate_cw.label=Rotar horario |
||||||
|
page_rotate_cw_label=Rotar horario |
||||||
|
page_rotate_ccw.title=Rotar antihorario |
||||||
|
page_rotate_ccw.label=Rotar antihorario |
||||||
|
page_rotate_ccw_label=Rotar antihorario |
||||||
|
|
||||||
|
hand_tool_enable.title=Habilitar herramienta mano |
||||||
|
hand_tool_enable_label=Habilitar herramienta mano |
||||||
|
hand_tool_disable.title=Deshabilitar herramienta mano |
||||||
|
hand_tool_disable_label=Deshabilitar herramienta mano |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Propiedades del documento… |
||||||
|
document_properties_label=Propiedades del documento… |
||||||
|
document_properties_file_name=Nombre de archivo: |
||||||
|
document_properties_file_size=Tamaño de archovo: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title=Título: |
||||||
|
document_properties_author=Autor: |
||||||
|
document_properties_subject=Asunto: |
||||||
|
document_properties_keywords=Palabras clave: |
||||||
|
document_properties_creation_date=Fecha de creación: |
||||||
|
document_properties_modification_date=Fecha de modificación: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Creador: |
||||||
|
document_properties_producer=PDF Productor: |
||||||
|
document_properties_version=Versión de PDF: |
||||||
|
document_properties_page_count=Cantidad de páginas: |
||||||
|
document_properties_close=Cerrar |
||||||
|
|
||||||
|
# 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=Alternar barra lateral |
||||||
|
toggle_sidebar_label=Alternar barra lateral |
||||||
|
outline.title=Mostrar esquema del documento |
||||||
|
outline_label=Esquema del documento |
||||||
|
thumbs.title=Mostrar miniaturas |
||||||
|
thumbs_label=Miniaturas |
||||||
|
findbar.title=Buscar en documento |
||||||
|
findbar_label=Buscar |
||||||
|
|
||||||
|
# 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=Página {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Miniatura de página {{page}} |
||||||
|
|
||||||
|
# Context menu |
||||||
|
first_page.label=Ir a la primera página |
||||||
|
last_page.label=Ir a la última página |
||||||
|
page_rotate_cw.label=Rotar en sentido horario |
||||||
|
page_rotate_ccw.label=Rotar en sentido antihorario |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Buscar: |
||||||
|
find_previous.title=Buscar la aparición anterior de la frase |
||||||
|
find_previous_label=Anterior |
||||||
|
find_next.title=Buscar la siguiente aparición de la frase |
||||||
|
find_next_label=Siguiente |
||||||
|
find_highlight=Resaltar todo |
||||||
|
find_match_case_label=Coincidir mayúsculas |
||||||
|
find_reached_top=Inicio de documento alcanzado, continuando desde abajo |
||||||
|
find_reached_bottom=Fin de documento alcanzando, continuando desde arriba |
||||||
|
find_not_found=Frase no encontrada |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Más información |
||||||
|
error_less_info=Menos información |
||||||
|
error_close=Cerrar |
||||||
|
# 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=Mensaje: {{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=Archivo: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Línea: {{line}} |
||||||
|
rendering_error=Ocurrió un error al dibujar la página. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Ancho de página |
||||||
|
page_scale_fit=Ajustar página |
||||||
|
page_scale_auto=Zoom automático |
||||||
|
page_scale_actual=Tamaño real |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Error |
||||||
|
loading_error=Ocurrió un error al cargar el PDF. |
||||||
|
invalid_file_error=Archivo PDF no válido o cocrrupto. |
||||||
|
missing_file_error=Archivo PDF faltante. |
||||||
|
|
||||||
|
# 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}} Anotación] |
||||||
|
password_label=Ingrese la contraseña para abrir este archivo PDF |
||||||
|
password_invalid=Contraseña inválida. Intente nuevamente. |
||||||
|
password_ok=Aceptar |
||||||
|
password_cancel=Cancelar |
||||||
|
|
||||||
|
printing_not_supported=Advertencia: La impresión no está totalmente soportada por este navegador. |
||||||
|
printing_not_ready=Advertencia: El PDF no está completamente cargado para impresión. |
||||||
|
web_fonts_disabled=Tipografía web deshabilitada: no se pueden usar tipos incrustados en PDF. |
||||||
|
document_colors_disabled=Los documentos PDF no tienen permitido usar sus propios colores: \'Permitir a las páginas elegir sus propios colores\' está desactivado en el navegador. |
@ -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. |
||||||
|
|
||||||
|
unsupported_feature = Este documento PDF podría no ser mostrado correctamente. |
||||||
|
unsupported_feature_forms=Este PDF contiene formularios. El rellenar campos de formularios no está soportado. |
||||||
|
|
||||||
|
open_with_different_viewer = Abrir con un visor diferente |
||||||
|
open_with_different_viewer.accessKey = o |
@ -0,0 +1,126 @@ |
|||||||
|
# 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. |
||||||
|
|
||||||
|
previous.title = Página anterior |
||||||
|
previous_label = Anterior |
||||||
|
next.title = Página siguiente |
||||||
|
next_label = Siguiente |
||||||
|
page_label = Página: |
||||||
|
page_of = de {{pageCount}} |
||||||
|
zoom_out.title = Alejar |
||||||
|
zoom_out_label = Alejar |
||||||
|
zoom_in.title = Acercar |
||||||
|
zoom_in_label = Acercar |
||||||
|
zoom.title = Ampliación |
||||||
|
print.title = Imprimir |
||||||
|
print_label = Imprimir |
||||||
|
presentation_mode.title = Cambiar al modo de presentación |
||||||
|
presentation_mode_label = Modo de presentación |
||||||
|
open_file.title = Abrir archivo |
||||||
|
open_file_label = Abrir |
||||||
|
download.title = Descargar |
||||||
|
download_label = Descargar |
||||||
|
bookmark.title = Vista actual (copiar o abrir en nueva ventana) |
||||||
|
bookmark_label = Vista actual |
||||||
|
tools.title=Herramientas |
||||||
|
tools_label=Herramientas |
||||||
|
first_page.title=Ir a la primera página |
||||||
|
first_page.label=Ir a la primera página |
||||||
|
first_page_label=Ir a la primera página |
||||||
|
last_page.title=Ir a la última página |
||||||
|
last_page.label=Ir a la última página |
||||||
|
last_page_label=Ir a la última página |
||||||
|
page_rotate_cw.title=Girar a la derecha |
||||||
|
page_rotate_cw.label=Girar a la derecha |
||||||
|
page_rotate_cw_label=Girar a la derecha |
||||||
|
page_rotate_ccw.title=Girar a la izquierda |
||||||
|
page_rotate_ccw.label=Girar a la izquierda |
||||||
|
page_rotate_ccw_label=Girar a la izquierda |
||||||
|
|
||||||
|
hand_tool_enable.title=Activar herramienta de mano |
||||||
|
hand_tool_enable_label=Activar herramienta de mano |
||||||
|
hand_tool_disable.title=Desactivar herramienta de mano |
||||||
|
hand_tool_disable_label=Desactivar herramienta de mano |
||||||
|
|
||||||
|
document_properties.title=Propiedades del documento… |
||||||
|
document_properties_label=Propiedades del documento… |
||||||
|
document_properties_file_name=Nombre del archivo: |
||||||
|
document_properties_file_size=Tamaño del archivo: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title=Título: |
||||||
|
document_properties_author=Autor: |
||||||
|
document_properties_subject=Asunto: |
||||||
|
document_properties_keywords=Palabras clave: |
||||||
|
document_properties_creation_date=Fecha de creación: |
||||||
|
document_properties_modification_date=Fecha de modificación: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Creador: |
||||||
|
document_properties_producer=Productor del PDF: |
||||||
|
document_properties_version=Versión de PDF: |
||||||
|
document_properties_page_count=Cantidad de páginas: |
||||||
|
document_properties_close=Cerrar |
||||||
|
|
||||||
|
toggle_sidebar.title=Cambiar barra lateral |
||||||
|
toggle_sidebar_label=Cambiar barra lateral |
||||||
|
outline.title = Mostrar esquema del documento |
||||||
|
outline_label = Esquema del documento |
||||||
|
thumbs.title = Mostrar miniaturas |
||||||
|
thumbs_label = Miniaturas |
||||||
|
findbar.title = Buscar en el documento |
||||||
|
findbar_label = Buscar |
||||||
|
thumb_page_title = Página {{page}} |
||||||
|
thumb_page_canvas = Miniatura de la página {{page}} |
||||||
|
first_page.label = Ir a la primera página |
||||||
|
last_page.label = Ir a la última página |
||||||
|
page_rotate_cw.label = Rotar en sentido de los punteros del reloj |
||||||
|
page_rotate_ccw.label = Rotar en sentido contrario a los punteros del reloj |
||||||
|
find_label = Buscar: |
||||||
|
find_previous.title = Encontrar la aparición anterior de la frase |
||||||
|
find_previous_label = Previo |
||||||
|
find_next.title = Encontrar la siguiente aparición de la frase |
||||||
|
find_next_label = Siguiente |
||||||
|
find_highlight = Destacar todos |
||||||
|
find_match_case_label = Coincidir mayús./minús. |
||||||
|
find_reached_top=Se alcanzó el inicio del documento, continuando desde el final |
||||||
|
find_reached_bottom=Se alcanzó el final del documento, continuando desde el inicio |
||||||
|
find_not_found = Frase no encontrada |
||||||
|
error_more_info = Más información |
||||||
|
error_less_info = Menos información |
||||||
|
error_close = Cerrar |
||||||
|
error_version_info=PDF.js v{{version}} (compilación: {{build}}) |
||||||
|
error_message = Mensaje: {{message}} |
||||||
|
error_stack = Pila: {{stack}} |
||||||
|
error_file = Archivo: {{file}} |
||||||
|
error_line = Línea: {{line}} |
||||||
|
rendering_error = Ha ocurrido un error al renderizar la página. |
||||||
|
page_scale_width = Ancho de página |
||||||
|
page_scale_fit = Ajuste de página |
||||||
|
page_scale_auto = Aumento automático |
||||||
|
page_scale_actual = Tamaño actual |
||||||
|
loading_error_indicator = Error |
||||||
|
loading_error = Ha ocurrido un error al cargar el PDF. |
||||||
|
invalid_file_error = Archivo PDF inválido o corrupto. |
||||||
|
missing_file_error=Falta el archivo PDF. |
||||||
|
|
||||||
|
text_annotation_type.alt=[{{type}} Anotación] |
||||||
|
password_label=Ingrese la contraseña para abrir este archivo PDF. |
||||||
|
password_invalid=Contraseña inválida. Por favor, vuelva a intentarlo. |
||||||
|
password_ok=Aceptar |
||||||
|
password_cancel=Cancelar |
||||||
|
|
||||||
|
printing_not_supported = Advertencia: Imprimir no está soportado completamente por este navegador. |
||||||
|
printing_not_ready=Advertencia: El PDF no está completamente cargado para ser impreso. |
||||||
|
web_fonts_disabled=Las fuentes web están desactivadas: imposible usar las fuentes PDF embebidas. |
||||||
|
document_colors_disabled=Los documentos PDF no tienen permitido usar sus propios colores: \'Permitir a las páginas elegir sus propios colores\' está desactivado en el navegador. |
@ -0,0 +1,8 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
unsupported_feature = Este documento PDF podría no mostrarse correctamente. |
||||||
|
unsupported_feature_forms = Este documento PDF contiene formularios. La cumplimentación de los campos de formularios no está implementada. |
||||||
|
open_with_different_viewer = Abrir con un visor diferente |
||||||
|
open_with_different_viewer.accessKey = o |
@ -0,0 +1,107 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
previous.title = Página anterior |
||||||
|
previous_label = Anterior |
||||||
|
next.title = Página siguiente |
||||||
|
next_label = Siguiente |
||||||
|
page_label = Página: |
||||||
|
page_of = de {{pageCount}} |
||||||
|
zoom_out.title = Reducir |
||||||
|
zoom_out_label = Reducir |
||||||
|
zoom_in.title = Aumentar |
||||||
|
zoom_in_label = Aumentar |
||||||
|
zoom.title = Tamaño |
||||||
|
presentation_mode.title = Cambiar al modo presentación |
||||||
|
presentation_mode_label = Modo presentación |
||||||
|
open_file.title = Abrir archivo |
||||||
|
open_file_label = Abrir |
||||||
|
print.title = Imprimir |
||||||
|
print_label = Imprimir |
||||||
|
download.title = Descargar |
||||||
|
download_label = Descargar |
||||||
|
bookmark.title = Vista actual (copiar o abrir en una nueva ventana) |
||||||
|
bookmark_label = Vista actual |
||||||
|
tools.title = Herramientas |
||||||
|
tools_label = Herramientas |
||||||
|
first_page.title = Ir a la primera página |
||||||
|
first_page.label = Ir a la primera página |
||||||
|
first_page_label = Ir a la primera página |
||||||
|
last_page.title = Ir a la última página |
||||||
|
last_page.label = Ir a la última página |
||||||
|
last_page_label = Ir a la última página |
||||||
|
page_rotate_cw.title = Rotar en sentido horario |
||||||
|
page_rotate_cw.label = Rotar en sentido horario |
||||||
|
page_rotate_cw_label = Rotar en sentido horario |
||||||
|
page_rotate_ccw.title = Rotar en sentido antihorario |
||||||
|
page_rotate_ccw.label = Rotar en sentido antihorario |
||||||
|
page_rotate_ccw_label = Rotar en sentido antihorario |
||||||
|
hand_tool_enable.title = Activar herramienta mano |
||||||
|
hand_tool_enable_label = Activar herramienta mano |
||||||
|
hand_tool_disable.title = Desactivar herramienta mano |
||||||
|
hand_tool_disable_label = Desactivar herramienta mano |
||||||
|
document_properties.title = Propiedades del documento… |
||||||
|
document_properties_label = Propiedades del documento… |
||||||
|
document_properties_file_name = Nombre de archivo: |
||||||
|
document_properties_file_size = Tamaño de archivo: |
||||||
|
document_properties_kb = {{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb = {{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title = Título: |
||||||
|
document_properties_author = Autor: |
||||||
|
document_properties_subject = Asunto: |
||||||
|
document_properties_keywords = Palabras clave: |
||||||
|
document_properties_creation_date = Fecha de creación: |
||||||
|
document_properties_modification_date = Fecha de modificación: |
||||||
|
document_properties_date_string = {{date}}, {{time}} |
||||||
|
document_properties_creator = Creador: |
||||||
|
document_properties_producer = Productor PDF: |
||||||
|
document_properties_version = Versión PDF: |
||||||
|
document_properties_page_count = Número de páginas: |
||||||
|
document_properties_close = Cerrar |
||||||
|
toggle_sidebar.title = Cambiar barra lateral |
||||||
|
toggle_sidebar_label = Cambiar barra lateral |
||||||
|
outline.title = Mostrar el esquema del documento |
||||||
|
outline_label = Esquema del documento |
||||||
|
thumbs.title = Mostrar miniaturas |
||||||
|
thumbs_label = Miniaturas |
||||||
|
findbar.title = Buscar en el documento |
||||||
|
findbar_label = Buscar |
||||||
|
thumb_page_title = Página {{page}} |
||||||
|
thumb_page_canvas = Miniatura de la página {{page}} |
||||||
|
find_label = Buscar: |
||||||
|
find_previous.title = Encontrar la anterior aparición de la frase |
||||||
|
find_previous_label = Anterior |
||||||
|
find_next.title = Encontrar la siguiente aparición de esta frase |
||||||
|
find_next_label = Siguiente |
||||||
|
find_highlight = Resaltar todos |
||||||
|
find_match_case_label = Coincidencia de mayús./minús. |
||||||
|
find_reached_top = Se alcanzó el inicio del documento, se continúa desde el final |
||||||
|
find_reached_bottom = Se alcanzó el final del documento, se continúa desde el inicio |
||||||
|
find_not_found = Frase no encontrada |
||||||
|
error_more_info = Más información |
||||||
|
error_less_info = Menos información |
||||||
|
error_close = Cerrar |
||||||
|
error_version_info = PDF.js v{{version}} (build: {{build}}) |
||||||
|
error_message = Mensaje: {{message}} |
||||||
|
error_stack = Pila: {{stack}} |
||||||
|
error_file = Archivo: {{file}} |
||||||
|
error_line = Línea: {{line}} |
||||||
|
rendering_error = Ocurrió un error al renderizar la página. |
||||||
|
page_scale_width = Anchura de la página |
||||||
|
page_scale_fit = Ajuste de la página |
||||||
|
page_scale_auto = Tamaño automático |
||||||
|
page_scale_actual = Tamaño actual |
||||||
|
loading_error_indicator = Error |
||||||
|
loading_error = Ocurrió un error al cargar el PDF. |
||||||
|
invalid_file_error = Fichero PDF no válido o corrupto. |
||||||
|
missing_file_error = No hay fichero PDF. |
||||||
|
text_annotation_type.alt = [Anotación {{type}}] |
||||||
|
password_label = Introduzca la contraseña para abrir este archivo PDF. |
||||||
|
password_invalid = Contraseña no válida. Vuelva a intentarlo. |
||||||
|
password_ok = Aceptar |
||||||
|
password_cancel = Cancelar |
||||||
|
printing_not_supported = Advertencia: Imprimir no está totalmente soportado por este navegador. |
||||||
|
printing_not_ready = Advertencia: Este PDF no se ha cargado completamente para poder imprimirse. |
||||||
|
web_fonts_disabled = Las tipografías web están desactivadas: es imposible usar las tipografías PDF embebidas. |
||||||
|
document_colors_disabled = Los documentos PDF no tienen permitido usar sus propios colores: 'Permitir a las páginas elegir sus propios colores' está desactivado en el navegador. |
@ -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=Este PDF podría no mostrarse correctamente. |
||||||
|
unsupported_feature_forms=Este documento PDF contiene formularios. La cumplimentación de los campos de formularios no está implementada. |
||||||
|
open_with_different_viewer=Abrir con un visor diferente. |
||||||
|
open_with_different_viewer.accessKey=o |
@ -1,8 +0,0 @@ |
|||||||
<em:localized> |
|
||||||
<Description> |
|
||||||
<em:locale>es</em:locale> |
|
||||||
<em:name>Visor de PDF</em:name> |
|
||||||
<em:description>Usa HTML5 para mostrar archivos PDF directamente en Firefox.</em:description> |
|
||||||
</Description> |
|
||||||
</em:localized> |
|
||||||
|
|
@ -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=See PDF-dokument võib olla kuvatud vigaselt. |
||||||
|
unsupported_feature_forms=See PDF-dokument sisaldab vorme. Vormide täitmine ei ole toetatud. |
||||||
|
open_with_different_viewer=Ava mõne muu vaatajaga |
||||||
|
open_with_different_viewer.accessKey=A |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=Eelmine lehekülg |
||||||
|
previous_label=Eelmine |
||||||
|
next.title=Järgmine lehekülg |
||||||
|
next_label=Järgmine |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Lehekülg: |
||||||
|
page_of=(kokku {{pageCount}}) |
||||||
|
|
||||||
|
zoom_out.title=Vähenda |
||||||
|
zoom_out_label=Vähenda |
||||||
|
zoom_in.title=Suurenda |
||||||
|
zoom_in_label=Suurenda |
||||||
|
zoom.title=Suurendamine |
||||||
|
presentation_mode.title=Lülitu esitlusrežiimi |
||||||
|
presentation_mode_label=Esitlusrežiim |
||||||
|
open_file.title=Ava fail |
||||||
|
open_file_label=Ava |
||||||
|
print.title=Prindi |
||||||
|
print_label=Prindi |
||||||
|
download.title=Laadi alla |
||||||
|
download_label=Laadi alla |
||||||
|
bookmark.title=Praegune vaade (kopeeri või ava uues aknas) |
||||||
|
bookmark_label=Praegune vaade |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Tööriistad |
||||||
|
tools_label=Tööriistad |
||||||
|
first_page.title=Mine esimesele leheküljele |
||||||
|
first_page.label=Mine esimesele leheküljele |
||||||
|
first_page_label=Mine esimesele leheküljele |
||||||
|
last_page.title=Mine viimasele leheküljele |
||||||
|
last_page.label=Mine viimasele leheküljele |
||||||
|
last_page_label=Mine viimasele leheküljele |
||||||
|
page_rotate_cw.title=Pööra päripäeva |
||||||
|
page_rotate_cw.label=Pööra päripäeva |
||||||
|
page_rotate_cw_label=Pööra päripäeva |
||||||
|
page_rotate_ccw.title=Pööra vastupäeva |
||||||
|
page_rotate_ccw.label=Pööra vastupäeva |
||||||
|
page_rotate_ccw_label=Pööra vastupäeva |
||||||
|
|
||||||
|
hand_tool_enable.title=Luba sirvimine |
||||||
|
hand_tool_enable_label=Luba sirvimine |
||||||
|
hand_tool_disable.title=Keela sirvimine |
||||||
|
hand_tool_disable_label=Keela sirvimine |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Dokumendi omadused… |
||||||
|
document_properties_label=Dokumendi omadused… |
||||||
|
document_properties_file_name=Faili nimi: |
||||||
|
document_properties_file_size=Faili suurus: |
||||||
|
document_properties_kb={{size_kb}} KiB ({{size_b}} baiti) |
||||||
|
document_properties_mb={{size_mb}} MiB ({{size_b}} baiti) |
||||||
|
document_properties_title=Pealkiri: |
||||||
|
document_properties_author=Autor: |
||||||
|
document_properties_subject=Teema: |
||||||
|
document_properties_keywords=Märksõnad: |
||||||
|
document_properties_creation_date=Loodud: |
||||||
|
document_properties_modification_date=Muudetud: |
||||||
|
document_properties_date_string={{date}} {{time}} |
||||||
|
document_properties_creator=Looja: |
||||||
|
document_properties_producer=Generaator: |
||||||
|
document_properties_version=Generaatori versioon: |
||||||
|
document_properties_page_count=Lehekülgi: |
||||||
|
document_properties_close=Sulge |
||||||
|
|
||||||
|
# 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=Näita külgriba |
||||||
|
toggle_sidebar_label=Näita külgriba |
||||||
|
outline.title=Näita sisukorda |
||||||
|
outline_label=Näita sisukorda |
||||||
|
thumbs.title=Näita pisipilte |
||||||
|
thumbs_label=Pisipildid |
||||||
|
findbar.title=Leia dokumendist |
||||||
|
findbar_label=Leia |
||||||
|
|
||||||
|
# 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}}. lehekülg |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas={{page}}. lehekülje pisipilt |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Leia: |
||||||
|
find_previous.title=Leia fraasi eelmine esinemiskoht |
||||||
|
find_previous_label=Eelmine |
||||||
|
find_next.title=Leia fraasi järgmine esinemiskoht |
||||||
|
find_next_label=Järgmine |
||||||
|
find_highlight=Too kõik esile |
||||||
|
find_match_case_label=Tõstutundlik |
||||||
|
find_reached_top=Jõuti dokumendi algusesse, jätkati lõpust |
||||||
|
find_reached_bottom=Jõuti dokumendi lõppu, jätkati algusest |
||||||
|
find_not_found=Fraasi ei leitud |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Rohkem teavet |
||||||
|
error_less_info=Vähem teavet |
||||||
|
error_close=Sulge |
||||||
|
# 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=Teade: {{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=Fail: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Rida: {{line}} |
||||||
|
rendering_error=Lehe renderdamisel esines viga. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Mahuta laiusele |
||||||
|
page_scale_fit=Mahuta leheküljele |
||||||
|
page_scale_auto=Automaatne suurendamine |
||||||
|
page_scale_actual=Tegelik suurus |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Viga |
||||||
|
loading_error=PDFi laadimisel esines viga. |
||||||
|
invalid_file_error=Vigane või rikutud PDF-fail. |
||||||
|
missing_file_error=PDF-fail puudub. |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip. |
||||||
|
# "{{type}}" will be replaced with an annotation type from a list defined in |
||||||
|
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
||||||
|
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
||||||
|
text_annotation_type.alt=[{{type}} Annotation] |
||||||
|
password_label=PDF-faili avamiseks sisesta parool. |
||||||
|
password_invalid=Vigane parool. Palun proovi uuesti. |
||||||
|
password_ok=Sobib |
||||||
|
password_cancel=Loobu |
||||||
|
|
||||||
|
printing_not_supported=Hoiatus: printimine pole selle brauseri poolt täielikult toetatud. |
||||||
|
printing_not_ready=Hoiatus: PDF pole printimiseks täielikult laaditud. |
||||||
|
web_fonts_disabled=Veebifondid on keelatud: PDFiga kaasatud fonte pole võimalik kasutada. |
||||||
|
document_colors_disabled=PDF-dokumentidel pole oma värvide kasutamine lubatud: \'Veebilehtedel on lubatud kasutada oma värve\' on brauseris deaktiveeritud. |
@ -0,0 +1,18 @@ |
|||||||
|
# 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 dokumentu hau agian ezin da ondo bistaratu. |
||||||
|
open_with_different_viewer=Ireki beste ikustaile batekin |
||||||
|
open_with_different_viewer.accessKey=I |
@ -0,0 +1,136 @@ |
|||||||
|
# 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=Aurreko orria |
||||||
|
previous_label=Aurrekoa |
||||||
|
next.title=Hurrengo orria |
||||||
|
next_label=Hurrengoa |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Orria: |
||||||
|
page_of=/ {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Urrundu zooma |
||||||
|
zoom_out_label=Urrundu zooma |
||||||
|
zoom_in.title=Gerturatu zooma |
||||||
|
zoom_in_label=Gerturatu zooma |
||||||
|
zoom.title=Zooma |
||||||
|
presentation_mode.title=Aldatu aurkezpen modura |
||||||
|
presentation_mode_label=Arkezpen modua |
||||||
|
open_file.title=Ireki fitxategia |
||||||
|
open_file_label=Ireki |
||||||
|
print.title=Inprimatu |
||||||
|
print_label=Inprimatu |
||||||
|
download.title=Deskargatu |
||||||
|
download_label=Deskargatu |
||||||
|
bookmark.title=Uneko ikuspegia (kopiatu edo ireki leiho berrian) |
||||||
|
bookmark_label=Uneko ikuspegia |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Tresnak |
||||||
|
tools_label=Tresnak |
||||||
|
first_page.title=Joan lehen orrira |
||||||
|
first_page.label=Joan lehen orrira |
||||||
|
first_page_label=Joan lehen orrira |
||||||
|
last_page.title=Joan azken orrira |
||||||
|
last_page.label=Joan azken orrira |
||||||
|
last_page_label=Joan azken orrira |
||||||
|
page_rotate_cw.title=Biratu erlojuaren norantzan |
||||||
|
page_rotate_cw.label=Biratu erlojuaren norantzan |
||||||
|
page_rotate_cw_label=Biratu erlojuaren norantzan |
||||||
|
page_rotate_ccw.title=Biratu erlojuaren aurkako norantzan |
||||||
|
page_rotate_ccw.label=Biratu erlojuaren aurkako norantzan |
||||||
|
page_rotate_ccw_label=Biratu erlojuaren aurkako norantzan |
||||||
|
|
||||||
|
# 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=Txandakatu alboko barra |
||||||
|
toggle_sidebar_label=Txandakatu alboko barra |
||||||
|
outline.title=Erakutsi dokumentuaren eskema |
||||||
|
outline_label=Dokumentuaren eskema |
||||||
|
thumbs.title=Erakutsi koadro txikiak |
||||||
|
thumbs_label=Koadro txikiak |
||||||
|
findbar.title=Bilatu dokumentuan |
||||||
|
findbar_label=Bilatu |
||||||
|
|
||||||
|
# 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}}. orria |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas={{page}}. orriaren koadro txikia |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Bilatu: |
||||||
|
find_previous.title=Bilatu esaldiaren aurreko parekatzea |
||||||
|
find_previous_label=Aurrekoa |
||||||
|
find_next.title=Bilatu esaldiaren hurrengo parekatzea |
||||||
|
find_next_label=Hurrengoa |
||||||
|
find_highlight=Nabarmendu guztia |
||||||
|
find_match_case_label=Bat etorri maiuskulekin/minuskulekin |
||||||
|
find_reached_top=Dokumentuaren hasierara heldu da, bukaeratik jarraitzen |
||||||
|
find_reached_bottom=Dokumentuaren bukaerara heldu da, hasieratik jarraitzen |
||||||
|
find_not_found=Esaldia ez da aurkitu |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Informazio gehiago |
||||||
|
error_less_info=Informazio gutxiago |
||||||
|
error_close=Itxi |
||||||
|
# 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}} (eraikuntza: {{build}}) |
||||||
|
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
|
# english string describing the error. |
||||||
|
error_message=Mezua: {{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=Fitxategia: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Lerroa: {{line}} |
||||||
|
rendering_error=Errorea gertatu da orria errendatzean. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Orriaren zabalera |
||||||
|
page_scale_fit=Doitu orrira |
||||||
|
page_scale_auto=Zoom automatikoa |
||||||
|
page_scale_actual=Benetako tamaina |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Errorea |
||||||
|
loading_error=Errorea gertatu da PDFa kargatzean. |
||||||
|
invalid_file_error=PDF fitxategi baliogabe edo hondatua. |
||||||
|
missing_file_error=PDF fitxategia falta da. |
||||||
|
|
||||||
|
# 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}} ohartarazpena] |
||||||
|
password_label=Idatzi PDF fitxategi hau irekitzeko pasahitza. |
||||||
|
password_invalid=Pasahitz baliogabea. Saiatu berriro mesedez. |
||||||
|
password_ok=Ados |
||||||
|
password_cancel=Utzi |
||||||
|
|
||||||
|
printing_not_supported=Abisua: inprimatzeko euskarria ez da erabatekoa nabigatzaile honetan. |
||||||
|
printing_not_ready=Abisua: PDFa ez dago erabat kargatuta inprimatzeko. |
||||||
|
web_fonts_disabled=Webeko letra-tipoak desgaituta daude: ezin dira kapsulatutako PDF letra-tipoak erabili. |
||||||
|
document_colors_disabled=PDF dokumentuek ez dute beraien koloreak erabiltzeko baimenik: 'Baimendu orriak beraien letra-tipoak aukeratzea' desaktibatuta dago nabigatzailean. |
@ -0,0 +1,18 @@ |
|||||||
|
# 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=Ndee fiilannde PDF ena waawi waasa jaytineede no moƴƴiri. |
||||||
|
open_with_different_viewer=Udditir Yiytindorde Woɗnde |
||||||
|
open_with_different_viewer.accessKey=u |
@ -0,0 +1,123 @@ |
|||||||
|
# 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=Hello Ɓennungo |
||||||
|
previous_label=Ɓennuɗo |
||||||
|
next.title=Hello faango |
||||||
|
next_label=Yeeso |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Hello: |
||||||
|
page_of=e nder {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Lonngo Woɗɗa |
||||||
|
zoom_out_label=Lonngo Woɗɗa |
||||||
|
zoom_in.title=Lonngo Ara |
||||||
|
zoom_in_label=Lonngo Ara |
||||||
|
zoom.title=Lonngo |
||||||
|
presentation_mode.title=Faytu to Presentation Mode |
||||||
|
presentation_mode_label=Presentation Mode |
||||||
|
open_file.title=Uddit Fiilde |
||||||
|
open_file_label=Uddit |
||||||
|
print.title=Winndito |
||||||
|
print_label=Winndito |
||||||
|
download.title=Aawto |
||||||
|
download_label=Aawto |
||||||
|
bookmark.title=Jiytol gonangol (natto walla uddit e henorde) |
||||||
|
bookmark_label=Jiytol Gonangol |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
|
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties_title=Tiitoonde: |
||||||
|
|
||||||
|
# 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=Toggilo Palal Sawndo |
||||||
|
toggle_sidebar_label=Toggilo Palal Sawndo |
||||||
|
outline.title=Hollu Toɓɓe Fiilannde |
||||||
|
outline_label=Toɓɓe Fiilannde |
||||||
|
thumbs.title=Hollu Dooɓe |
||||||
|
thumbs_label=Dooɓe |
||||||
|
findbar.title=Yiylo e fiilannde |
||||||
|
findbar_label=Yiytu |
||||||
|
|
||||||
|
# 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=Hello {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Dooɓre Hello {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Yiytu: |
||||||
|
find_previous.title=Yiylo cilol ɓennugol konngol ngol |
||||||
|
find_previous_label=Ɓennuɗo |
||||||
|
find_next.title=Yiylo cilol garowol konngol ngol |
||||||
|
find_next_label=Yeeso |
||||||
|
find_highlight=Jalbin fof |
||||||
|
find_match_case_label=Jaaɓnu darnde |
||||||
|
find_reached_top=Heɓii fuɗɗorde fiilannde, jokku faya les |
||||||
|
find_reached_bottom=Heɓii hoore fiilannde, jokku faya les |
||||||
|
find_not_found=Konngi njiyataa |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Ɓeydu Humpito |
||||||
|
error_less_info=Ustu Humpito |
||||||
|
# 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=Ɓatakuure: {{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=Fiilde: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Gorol: {{line}} |
||||||
|
rendering_error=Juumre waɗii tuma nde yoŋkittoo hello. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Njaajeendi Hello |
||||||
|
page_scale_fit=Keƴeendi Hello |
||||||
|
page_scale_auto=Loongorde Jaajol |
||||||
|
page_scale_actual=Ɓetol Jaati |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Juumre |
||||||
|
loading_error=Juumre waɗii tuma nde loowata PDF oo. |
||||||
|
invalid_file_error=Fiilde PDF moƴƴaani walla jiibii. |
||||||
|
missing_file_error=Fiilde PDF ena ŋakki. |
||||||
|
|
||||||
|
# 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}} Siiftannde] |
||||||
|
password_ok=OK |
||||||
|
password_cancel=Haaytu |
||||||
|
|
||||||
|
printing_not_supported=Reentino: Winnditagol tammbitaaka no feewi e ndee wanngorde. |
||||||
|
printing_not_ready=Reentino: PDF oo loowaaki haa timmi ngam winnditagol. |
||||||
|
web_fonts_disabled=Ponte geese ko daaƴaaɗe: horiima huutoraade ponte PDF coomtoraaɗe. |
||||||
|
document_colors_disabled=Piilanɗe PDF njamiraaka yoo kuutoro goobuuji mum'en keeriiɗi: 'Yamir kello yoo kuutoro goobuuki keeriiɗi' koko daaƴaa e wanngorde ndee. |
@ -0,0 +1,9 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
# Chrome notification bar messages and buttons |
||||||
|
unsupported_feature=Dit PDF-dokumint wurdt miskien net korrekt werjûn. |
||||||
|
unsupported_feature_forms=Dit PDF-dokumint befettet formulieren. It ynfoljen fan formulierfjilden is net stipe. |
||||||
|
open_with_different_viewer=Mei in oare PDF-lêzer iepenje |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,167 @@ |
|||||||
|
# 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=Foarige side |
||||||
|
previous_label=Foarige |
||||||
|
next.title=Folgjende side |
||||||
|
next_label=Folgjende |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=side: |
||||||
|
page_of=fan {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Utzoome |
||||||
|
zoom_out_label=Utzoome |
||||||
|
zoom_in.title=Ynzoome |
||||||
|
zoom_in_label=Ynzoome |
||||||
|
zoom.title=Zoome |
||||||
|
print.title=Ofdrukke |
||||||
|
print_label=Ofdrukke |
||||||
|
presentation_mode.title=Wikselje nei presintaasjemoadus |
||||||
|
presentation_mode_label=Presintaasjemoadus |
||||||
|
open_file.title=Bestân iepenje |
||||||
|
open_file_label=Iepenje |
||||||
|
download.title=Ynlade |
||||||
|
download_label=Ynlade |
||||||
|
bookmark.title=Aktuele finster (kopiearje of iepenje yn nij finster) |
||||||
|
bookmark_label=Aktuele finster |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Ark |
||||||
|
tools_label=Ark |
||||||
|
first_page.title=Gean nei earste side |
||||||
|
first_page.label=Gean nei earste side |
||||||
|
first_page_label=Gean nei earste side |
||||||
|
last_page.title=Gean nei lêste side |
||||||
|
last_page.label=Gean nei lêste side |
||||||
|
last_page_label=Gean nei lêste v |
||||||
|
page_rotate_cw.title=Rjochtsom draaie |
||||||
|
page_rotate_cw.label=Rjochtsom draaie |
||||||
|
page_rotate_cw_label=Rjochtsom draaie |
||||||
|
page_rotate_ccw.title=Linksom draaie |
||||||
|
page_rotate_ccw.label=Linksom draaie |
||||||
|
page_rotate_ccw_label=Linksom draaie |
||||||
|
|
||||||
|
hand_tool_enable.title=Hânark ynskeakelje |
||||||
|
hand_tool_enable_label=Hânark ynskeakelje |
||||||
|
hand_tool_disable.title=Hânark úyskeakelje |
||||||
|
hand_tool_disable_label=Hânark úyskeakelje |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Dokuminteigenskippen… |
||||||
|
document_properties_label=Dokuminteigenskippen… |
||||||
|
document_properties_file_name=Bestânsnamme: |
||||||
|
document_properties_file_size=Bestânsgrutte: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title=Titel: |
||||||
|
document_properties_author=Auteur: |
||||||
|
document_properties_subject=Underwerp: |
||||||
|
document_properties_keywords=Kaaiwurden: |
||||||
|
document_properties_creation_date=Oanmaakdatum: |
||||||
|
document_properties_modification_date=Bewurkingsdatum: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Makker: |
||||||
|
document_properties_producer=PDF-makker: |
||||||
|
document_properties_version=PDF-ferzje: |
||||||
|
document_properties_page_count=Siden: |
||||||
|
document_properties_close=Slute |
||||||
|
|
||||||
|
# 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=Sidebalke yn-/útskeakelje |
||||||
|
toggle_sidebar_label=Sidebalke yn-/útskeakelje |
||||||
|
outline.title=Dokumint ynhâldsopjefte toane |
||||||
|
outline_label=Dokumint ynhâldsopjefte |
||||||
|
thumbs.title=Foarbylden toane |
||||||
|
thumbs_label=Foarbylden |
||||||
|
findbar.title=Sykje yn dokumint |
||||||
|
findbar_label=Sykje |
||||||
|
|
||||||
|
# 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=Side {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Foarbyld fan side {{page}} |
||||||
|
|
||||||
|
# Context menu |
||||||
|
first_page.label=Nei earste side gean |
||||||
|
last_page.label=Nei lêste side gean |
||||||
|
page_rotate_cw.label=Rjochtsom draaie |
||||||
|
page_rotate_ccw.label=Linksom draaie |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Sykje: |
||||||
|
find_previous.title=It foarige foarkommen fan de tekst sykje |
||||||
|
find_previous_label=Foarige |
||||||
|
find_next.title=It folgjende foarkommen fan de tekst sykje |
||||||
|
find_next_label=Folgjende |
||||||
|
find_highlight=Alles markearje |
||||||
|
find_match_case_label=Haadlettergefoelich |
||||||
|
find_reached_top=Boppekant fan dokumint berikt, trochgien fanôf ûnderkant |
||||||
|
find_reached_bottom=Ein fan dokumint berikt, trochgien fanôf boppekant |
||||||
|
find_not_found=Tekst net fûn |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Mear ynformaasje |
||||||
|
error_less_info=Minder ynformaasje |
||||||
|
error_close=Slute |
||||||
|
# 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=Berjocht: {{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=Bestân: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Rigel: {{line}} |
||||||
|
rendering_error=Der is in flater bard by it renderjen fan de side. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Sidebreedte |
||||||
|
page_scale_fit=Hiele side |
||||||
|
page_scale_auto=Automatysk zoome |
||||||
|
page_scale_actual=Wurklike grutte |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Flater |
||||||
|
loading_error=Der is in flater bard by it laden fan de PDF. |
||||||
|
invalid_file_error=Ynfalide of korruptearre PDF-bestân. |
||||||
|
missing_file_error=PDF-bestân ûntbrekt. |
||||||
|
|
||||||
|
# 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=Jou it wachtwurd om dit PDF-bestân te iepenjen. |
||||||
|
password_invalid=Ferkeard wachtwurd. Probearje opnij. |
||||||
|
password_ok=OK |
||||||
|
password_cancel=Annulearje |
||||||
|
|
||||||
|
printing_not_supported=Warning: Printing is net folslein stipe troch dizze browser. |
||||||
|
printing_not_ready=Warning: PDF is net folslein laden om ôf te drukken. |
||||||
|
web_fonts_disabled=Weblettertypen binne útskeakele: gebrûk fan ynsluten PDF-lettertypen is net mooglik. |
||||||
|
document_colors_disabled=PDF-dokuminten binne net tastien om har eigen kleuren te brûken: \'Siden tastean har eigen kleuren te kiezen\' is útskeakele yn de browser. |
@ -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=Seans nach dtaispeánfar an cháipéis PDF seo mar is ceart. |
||||||
|
unsupported_feature_forms=This PDF document contains forms. The filling of form fields is not supported. |
||||||
|
open_with_different_viewer=Oscail le hAmharcán Eile |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=An Leathanach Roimhe Seo |
||||||
|
previous_label=Roimhe Seo |
||||||
|
next.title=An Chéad Leathanach Eile |
||||||
|
next_label=Ar Aghaidh |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Leathanach: |
||||||
|
page_of=as {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Súmáil Amach |
||||||
|
zoom_out_label=Súmáil Amach |
||||||
|
zoom_in.title=Súmáil Isteach |
||||||
|
zoom_in_label=Súmáil Isteach |
||||||
|
zoom.title=Súmáil |
||||||
|
presentation_mode.title=Úsáid an Mód Láithreoireachta |
||||||
|
presentation_mode_label=Mód Láithreoireachta |
||||||
|
open_file.title=Oscail Comhad |
||||||
|
open_file_label=Oscail |
||||||
|
print.title=Priontáil |
||||||
|
print_label=Priontáil |
||||||
|
download.title=Íosluchtaigh |
||||||
|
download_label=Íosluchtaigh |
||||||
|
bookmark.title=An t-amharc reatha (cóipeáil nó oscail i bhfuinneog nua) |
||||||
|
bookmark_label=An tAmharc Reatha |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Uirlisí |
||||||
|
tools_label=Uirlisí |
||||||
|
first_page.title=Go dtí an chéad leathanach |
||||||
|
first_page.label=Go dtí an chéad leathanach |
||||||
|
first_page_label=Go dtí an chéad leathanach |
||||||
|
last_page.title=Go dtí an leathanach deiridh |
||||||
|
last_page.label=Go dtí an leathanach deiridh |
||||||
|
last_page_label=Go dtí an leathanach deiridh |
||||||
|
page_rotate_cw.title=Rothlaigh ar deiseal |
||||||
|
page_rotate_cw.label=Rothlaigh ar deiseal |
||||||
|
page_rotate_cw_label=Rothlaigh ar deiseal |
||||||
|
page_rotate_ccw.title=Rothlaigh ar tuathal |
||||||
|
page_rotate_ccw.label=Rothlaigh ar tuathal |
||||||
|
page_rotate_ccw_label=Rothlaigh ar tuathal |
||||||
|
|
||||||
|
hand_tool_enable.title=Enable hand tool |
||||||
|
hand_tool_enable_label=Enable hand tool |
||||||
|
hand_tool_disable.title=Disable hand tool |
||||||
|
hand_tool_disable_label=Disable hand tool |
||||||
|
|
||||||
|
# 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: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title=Teideal: |
||||||
|
document_properties_author=Author: |
||||||
|
document_properties_subject=Subject: |
||||||
|
document_properties_keywords=Keywords: |
||||||
|
document_properties_creation_date=Creation Date: |
||||||
|
document_properties_modification_date=Modification Date: |
||||||
|
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_close=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=Scoránaigh an Barra Taoibh |
||||||
|
toggle_sidebar_label=Scoránaigh an Barra Taoibh |
||||||
|
outline.title=Taispeáin Creatlach na Cáipéise |
||||||
|
outline_label=Creatlach na Cáipéise |
||||||
|
thumbs.title=Taispeáin Mionsamhlacha |
||||||
|
thumbs_label=Mionsamhlacha |
||||||
|
findbar.title=Aimsigh sa Cháipéis |
||||||
|
findbar_label=Aimsigh |
||||||
|
|
||||||
|
# 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=Leathanach {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Mionsamhail Leathanaigh {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Aimsigh: |
||||||
|
find_previous.title=Aimsigh an sampla roimhe seo den nath seo |
||||||
|
find_previous_label=Roimhe seo |
||||||
|
find_next.title=Aimsigh an chéad sampla eile den nath sin |
||||||
|
find_next_label=Ar aghaidh |
||||||
|
find_highlight=Aibhsigh uile |
||||||
|
find_match_case_label=Cásíogair |
||||||
|
find_reached_top=Ag barr na cáipéise, ag leanúint ón mbun |
||||||
|
find_reached_bottom=Ag bun na cáipéise, ag leanúint ón mbarr |
||||||
|
find_not_found=Abairtín gan aimsiú |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Tuilleadh Eolais |
||||||
|
error_less_info=Níos Lú Eolais |
||||||
|
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=Teachtaireacht: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Cruach: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Comhad: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Líne: {{line}} |
||||||
|
rendering_error=Tharla earráid agus an leathanach á leagan amach. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Leithead Leathanaigh |
||||||
|
page_scale_fit=Laghdaigh go dtí an Leathanach |
||||||
|
page_scale_auto=Súmáil Uathoibríoch |
||||||
|
page_scale_actual=Fíormhéid |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Earráid |
||||||
|
loading_error=Tharla earráid agus an cháipéis PDF á luchtú. |
||||||
|
invalid_file_error=Comhad neamhbhailí nó truaillithe PDF. |
||||||
|
missing_file_error=Comhad PDF ar iarraidh. |
||||||
|
|
||||||
|
# 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=[Anótáil {{type}}] |
||||||
|
password_label=Cuir an focal faire isteach chun an comhad PDF seo a oscailt. |
||||||
|
password_invalid=Focal faire mícheart. Déan iarracht eile. |
||||||
|
password_ok=OK |
||||||
|
password_cancel=Cealaigh |
||||||
|
|
||||||
|
printing_not_supported=Rabhadh: Ní thacaíonn an brabhsálaí le priontáil go hiomlán. |
||||||
|
printing_not_ready=Rabhadh: Ní féidir an PDF a phriontáil go dtí go mbeidh an cháipéis iomlán luchtaithe. |
||||||
|
web_fonts_disabled=Tá clófhoirne Gréasáin díchumasaithe: ní féidir clófhoirne leabaithe PDF a úsáid. |
||||||
|
document_colors_disabled=Níl cead ag cáipéisí PDF a ndathanna féin a roghnú; tá 'Tabhair cead do leathanaigh a ndathanna féin a roghnú' díchumasaithe sa mbrabhsálaí. |
@ -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=Faodaidh nach eil an sgrìobhainn PDF seo 'ga shealltainn mar bu chòir. |
||||||
|
unsupported_feature_forms=Tha foirmean sa PDF seo. Chan eil taic ri lìonadh foirmean. |
||||||
|
open_with_different_viewer=Fosgail le sealladair eile |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=An duilleag roimhe |
||||||
|
previous_label=Air ais |
||||||
|
next.title=An ath-dhuilleag |
||||||
|
next_label=Air adhart |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Duilleag: |
||||||
|
page_of=à {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Sùm a-mach |
||||||
|
zoom_out_label=Sùm a-mach |
||||||
|
zoom_in.title=Sùm a-steach |
||||||
|
zoom_in_label=Sùm a-steach |
||||||
|
zoom.title=Sùm |
||||||
|
presentation_mode.title=Gearr leum dhan mhodh taisbeanaidh |
||||||
|
presentation_mode_label=Am modh taisbeanaidh |
||||||
|
open_file.title=Fosgail faidhle |
||||||
|
open_file_label=Fosgail |
||||||
|
print.title=Clò-bhuail |
||||||
|
print_label=Clò-bhuail |
||||||
|
download.title=Luchdaich a-nuas |
||||||
|
download_label=Luchdaich a-nuas |
||||||
|
bookmark.title=An sealladh làithreach (dèan lethbhreac no fosgail e ann an uinneag ùr) |
||||||
|
bookmark_label=An sealladh làithreach |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Innealan |
||||||
|
tools_label=Innealan |
||||||
|
first_page.title=Rach gun chiad duilleag |
||||||
|
first_page.label=Rach gun chiad duilleag |
||||||
|
first_page_label=Rach gun chiad duilleag |
||||||
|
last_page.title=Rach gun duilleag mu dheireadh |
||||||
|
last_page.label=Rach gun duilleag mu dheireadh |
||||||
|
last_page_label=Rach gun duilleag mu dheireadh |
||||||
|
page_rotate_cw.title=Cuairtich gu deiseil |
||||||
|
page_rotate_cw.label=Cuairtich gu deiseil |
||||||
|
page_rotate_cw_label=Cuairtich gu deiseil |
||||||
|
page_rotate_ccw.title=Cuairtich gu tuathail |
||||||
|
page_rotate_ccw.label=Cuairtich gu tuathail |
||||||
|
page_rotate_ccw_label=Cuairtich gu tuathail |
||||||
|
|
||||||
|
hand_tool_enable.title=Cuir inneal na làimhe an comas |
||||||
|
hand_tool_enable_label=Cuir inneal na làimhe an comas |
||||||
|
hand_tool_disable.title=Cuir inneal na làimhe à comas |
||||||
|
hand_tool_disable_label=Cuir à comas inneal na làimhe |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Roghainnean na sgrìobhainne… |
||||||
|
document_properties_label=Roghainnean na sgrìobhainne… |
||||||
|
document_properties_file_name=Ainm an fhaidhle: |
||||||
|
document_properties_file_size=Meud an fhaidhle: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title=Tiotal: |
||||||
|
document_properties_author=Ùghdar: |
||||||
|
document_properties_subject=Cuspair: |
||||||
|
document_properties_keywords=Faclan-luirg: |
||||||
|
document_properties_creation_date=Latha a chruthachaidh: |
||||||
|
document_properties_modification_date=Latha atharrachaidh: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Cruthadair: |
||||||
|
document_properties_producer=Saothraiche a' PDF: |
||||||
|
document_properties_version=Tionndadh a' PDF: |
||||||
|
document_properties_page_count=Àireamh de dhuilleagan: |
||||||
|
document_properties_close=Dùin |
||||||
|
|
||||||
|
# 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=Toglaich am bàr-taoibh |
||||||
|
toggle_sidebar_label=Toglaich am bàr-taoibh |
||||||
|
outline.title=Seall an sgrìobhainn far loidhne |
||||||
|
outline_label=Oir-loidhne na sgrìobhainne |
||||||
|
thumbs.title=Seall na dealbhagan |
||||||
|
thumbs_label=Dealbhagan |
||||||
|
findbar.title=Lorg san sgrìobhainn |
||||||
|
findbar_label=Lorg |
||||||
|
|
||||||
|
# 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=Duilleag a {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Dealbhag duilleag a {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Lorg: |
||||||
|
find_previous.title=Lorg làthair roimhe na h-abairt seo |
||||||
|
find_previous_label=Air ais |
||||||
|
find_next.title=Lorg ath-làthair na h-abairt seo |
||||||
|
find_next_label=Air adhart |
||||||
|
find_highlight=Soillsich a h-uile |
||||||
|
find_match_case_label=Aire do litrichean mòra is beaga |
||||||
|
find_reached_top=Ràinig sinn barr na duilleige, a' leantainn air adhart o bhonn na duilleige |
||||||
|
find_reached_bottom=Ràinig sinn bonn na duilleige, a' leantainn air adhart o bharr na duilleige |
||||||
|
find_not_found=Cha deach an abairt a lorg |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Barrachd fiosrachaidh |
||||||
|
error_less_info=Nas lugha de dh'fhiosrachadh |
||||||
|
error_close=Dùin |
||||||
|
# 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=Teachdaireachd: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Stac: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Faidhle: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Loidhne: {{line}} |
||||||
|
rendering_error=Thachair mearachd rè reandaradh na duilleige. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Leud na duilleige |
||||||
|
page_scale_fit=Freagair ri meud na duilleige |
||||||
|
page_scale_auto=Sùm fèin-obrachail |
||||||
|
page_scale_actual=Am fìor-mheud |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Mearachd |
||||||
|
loading_error=Thachair mearachd rè luchdadh a' PDF. |
||||||
|
invalid_file_error=Faidhle PDF a tha mì-dhligheach no coirbte. |
||||||
|
missing_file_error=Faidhle PDF a tha a dhìth. |
||||||
|
|
||||||
|
# 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=[Nòtachadh {{type}}] |
||||||
|
password_label=Cuir a-steach am facal-faire gus am faidhle PDF seo fhosgladh. |
||||||
|
password_invalid=Tha am facal-faire cearr. Nach fheuch thu ris a-rithist? |
||||||
|
password_ok=Ceart ma-tha |
||||||
|
password_cancel=Sguir dheth |
||||||
|
|
||||||
|
printing_not_supported=Rabhadh: Chan eil am brabhsair seo a' cur làn-taic ri clò-bhualadh. |
||||||
|
printing_not_ready=Rabhadh: Cha deach am PDF a luchdadh gu tur airson clò-bhualadh. |
||||||
|
web_fonts_disabled=Tha cruthan-clò lìn à comas: Chan urrainn dhuinn cruthan-clò PDF leabaichte a chleachdadh. |
||||||
|
document_colors_disabled=Chan fhaod sgrìobhainnean PDF na dathan aca fhèin a chleachdadh: Tha "Leig le duilleagan na dathan aca fhèin a chleachdadh" à comas sa bhrabhsair. |
@ -0,0 +1,8 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
# Chrome notification bar messages and buttons |
||||||
|
unsupported_feature=Pode que este documento PDF non se visualice correctamente. |
||||||
|
open_with_different_viewer=Abrir cun visor diferente |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,124 @@ |
|||||||
|
# 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áxina anterior |
||||||
|
previous_label=Anterior |
||||||
|
next.title=Seguinte páxina |
||||||
|
next_label=Seguinte |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Páxina: |
||||||
|
page_of=de {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Reducir |
||||||
|
zoom_out_label=Reducir |
||||||
|
zoom_in.title=Ampliar |
||||||
|
zoom_in_label=Ampliar |
||||||
|
zoom.title=Zoom |
||||||
|
print.title=Imprimir |
||||||
|
print_label=Imprimir |
||||||
|
presentation_mode.title=Cambiar ao modo presentación |
||||||
|
presentation_mode_label=Modo presentación |
||||||
|
open_file.title=Abrir ficheiro |
||||||
|
open_file_label=Abrir |
||||||
|
download.title=Descargar |
||||||
|
download_label=Descargar |
||||||
|
bookmark.title=Vista actual (copiar ou abrir nunha nova xanela) |
||||||
|
bookmark_label=Vista actual |
||||||
|
|
||||||
|
# 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=Amosar/agochar a barra lateral |
||||||
|
toggle_sidebar_label=Amosar/agochar a barra lateral |
||||||
|
outline.title=Amosar esquema do documento |
||||||
|
outline_label=Esquema do documento |
||||||
|
thumbs.title=Amosar miniaturas |
||||||
|
thumbs_label=Miniaturas |
||||||
|
findbar.title=Atopar no documento |
||||||
|
findbar_label=Atopar |
||||||
|
|
||||||
|
# Document outline messages |
||||||
|
no_outline=Ningún esquema dispoñíbel |
||||||
|
|
||||||
|
# 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=Páxina {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Miniatura da páxina {{page}} |
||||||
|
|
||||||
|
# Context menu |
||||||
|
first_page.label=Ir á primeira páxina |
||||||
|
last_page.label=Ir á última páxina |
||||||
|
page_rotate_cw.label=Rotar no sentido das agullas do reloxo |
||||||
|
page_rotate_ccw.label=Rotar no sentido contrario ás agullas do reloxo |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Atopar: |
||||||
|
find_previous.title=Atopar a anterior aparición da frase |
||||||
|
find_previous_label=Anterior |
||||||
|
find_next.title=Atopar a seguinte aparición da frase |
||||||
|
find_next_label=Seguinte |
||||||
|
find_highlight=Realzar todo |
||||||
|
find_match_case_label=Diferenciar maiúsculas de minúsculas |
||||||
|
find_reached_top=Chegouse ao inicio do documento, continuar desde o final |
||||||
|
find_reached_bottom=Chegouse ao final do documento, continuar desde o inicio |
||||||
|
find_not_found=Non se atopou a frase |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Máis información |
||||||
|
error_less_info=Menos información |
||||||
|
error_close=Pechar |
||||||
|
# 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}} (Identificador da compilación: {{build}}) |
||||||
|
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
|
# english string describing the error. |
||||||
|
error_message=Mensaxe: {{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=Ficheiro: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Liña: {{line}} |
||||||
|
rendering_error=Produciuse un erro ao representar a páxina. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Largura da páxina |
||||||
|
page_scale_fit=Axuste de páxina |
||||||
|
page_scale_auto=Zoom automático |
||||||
|
page_scale_actual=Tamaño actual |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Erro |
||||||
|
loading_error=Produciuse un erro ao cargar o PDF. |
||||||
|
invalid_file_error=Ficheiro PDF danado ou incorrecto. |
||||||
|
missing_file_error=Falta o ficheiro PDF. |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip. |
||||||
|
# "{{type}}" will be replaced with an annotation type from a list defined in |
||||||
|
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
||||||
|
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
||||||
|
text_annotation_type=[Anotación {{type}}] |
||||||
|
request_password=O PDF está protexido por un contrasinal: |
||||||
|
|
||||||
|
printing_not_supported=Aviso: A impresión non é compatíbel de todo con este navegador. |
||||||
|
web_fonts_disabled=Desactiváronse as fontes web: foi imposíbel usar as fontes incrustadas no PDF. |
@ -0,0 +1,20 @@ |
|||||||
|
# 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=פ |
||||||
|
|
@ -0,0 +1,18 @@ |
|||||||
|
# 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=Ovaj PDF možda neće biti ispravno prikazan |
||||||
|
open_with_different_viewer=Otvori s drugim preglednikom |
||||||
|
open_with_different_viewer.accessKey=O |
@ -0,0 +1,139 @@ |
|||||||
|
# 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=Prethodna stranica |
||||||
|
previous_label=Prethodna |
||||||
|
next.title=Iduća stranica |
||||||
|
next_label=Iduća |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Stranica: |
||||||
|
page_of=od {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Uvećaj |
||||||
|
zoom_out_label=Smanji |
||||||
|
zoom_in.title=Uvaćaj |
||||||
|
zoom_in_label=Smanji |
||||||
|
zoom.title=Uvećanje |
||||||
|
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 |
||||||
|
download.title=Preuzmi |
||||||
|
download_label=Preuzmi |
||||||
|
bookmark.title=Trenutni prikaz (kopiraj ili otvori u novom prozoru) |
||||||
|
bookmark_label=Trenutni prikaz |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Alati |
||||||
|
tools_label=Alati |
||||||
|
first_page.title=Idi na prvu stranicu |
||||||
|
first_page.label=Idi na prvu stranicu |
||||||
|
first_page_label=Idi na prvu stranicu |
||||||
|
last_page.title=Idi na posljednju stranicu |
||||||
|
last_page.label=Idi na posljednju stranicu |
||||||
|
last_page_label=Idi na posljednju stranicu |
||||||
|
page_rotate_cw.title=Rotiraj u smjeru kazaljke na satu |
||||||
|
page_rotate_cw.label=Rotiraj u smjeru kazaljke na satu |
||||||
|
page_rotate_cw_label=Rotiraj u smjeru kazaljke na satu |
||||||
|
page_rotate_ccw.title=Rotiraj obrnutno od smjera kazaljke na satu |
||||||
|
page_rotate_ccw.label=Rotiraj obrnutno od smjera kazaljke na satu |
||||||
|
page_rotate_ccw_label=Rotiraj obrnutno od smjera kazaljke na satu |
||||||
|
|
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties_title=Naslov: |
||||||
|
|
||||||
|
# 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=Prikaži/sakrij bočnu traku |
||||||
|
toggle_sidebar_label=Prikaži/sakrij bočnu traku |
||||||
|
outline.title=Prikaži obris dokumenta |
||||||
|
outline_label=Obris dokumenta |
||||||
|
thumbs.title=Prikaži sličice |
||||||
|
thumbs_label=Sličice |
||||||
|
findbar.title=Traži u dokumentu |
||||||
|
findbar_label=Traži |
||||||
|
|
||||||
|
# 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=Stranica {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Sličica stranice {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Traži: |
||||||
|
find_previous.title=Pronađi prethodno javljanje ovog izraza |
||||||
|
find_previous_label=Prethodno |
||||||
|
find_next.title=Pronađi iduće javljanje ovog izraza |
||||||
|
find_next_label=Iduće |
||||||
|
find_highlight=Istankni sve |
||||||
|
find_match_case_label=Slučaj podudaranja |
||||||
|
find_reached_top=Dosegnut vrh dokumenta, nastavak od dna |
||||||
|
find_reached_bottom=Dosegnut vrh dokumenta, nastavak od vrha |
||||||
|
find_not_found=Izraz nije pronađen |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Više informacija |
||||||
|
error_less_info=Manje informacija |
||||||
|
# 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=Poruka: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Stog: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Datoteka: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Redak: {{line}} |
||||||
|
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 |
||||||
|
|
||||||
|
# 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. |
||||||
|
missing_file_error=Nedostaje PDF datoteka. |
||||||
|
|
||||||
|
# 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}} Bilješka] |
||||||
|
password_label=Upišite lozinku da biste otvorili ovu PDF datoteku. |
||||||
|
password_invalid=Neispravna lozinka. Pokušajte ponovo. |
||||||
|
password_ok=U redu |
||||||
|
password_cancel=Odustani |
||||||
|
|
||||||
|
printing_not_supported=Upozorenje: Ispisivanje nije potpuno podržano u ovom pregledniku. |
||||||
|
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_disabled=PDF dokumenti nemaju dopuštene koristiti vlastite boje: opcija 'Dopusti stranicama da koriste vlastite boje' je deaktivirana. |
@ -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=Ez a PDF-dokumentum nem feltétlenül helyesen jelenik meg. |
||||||
|
unsupported_feature_forms=Ez a PDF-dokumentum űrlapokat tartalmaz. Az űrlapmezők kitöltése nem támogatott. |
||||||
|
open_with_different_viewer=Megnyitás másik megjelenítővel |
||||||
|
open_with_different_viewer.accessKey=M |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=Előző oldal |
||||||
|
previous_label=Előző |
||||||
|
next.title=Következő oldal |
||||||
|
next_label=Tovább |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Oldal: |
||||||
|
page_of=összesen: {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Kicsinyítés |
||||||
|
zoom_out_label=Kicsinyítés |
||||||
|
zoom_in.title=Nagyítás |
||||||
|
zoom_in_label=Nagyítás |
||||||
|
zoom.title=Nagyítás |
||||||
|
presentation_mode.title=Váltás bemutató módba |
||||||
|
presentation_mode_label=Bemutató mód |
||||||
|
open_file.title=Fájl megnyitása |
||||||
|
open_file_label=Megnyitás |
||||||
|
print.title=Nyomtatás |
||||||
|
print_label=Nyomtatás |
||||||
|
download.title=Letöltés |
||||||
|
download_label=Letöltés |
||||||
|
bookmark.title=Jelenlegi nézet (másolás vagy megnyitás új ablakban) |
||||||
|
bookmark_label=Aktuális nézet |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Eszközök |
||||||
|
tools_label=Eszközök |
||||||
|
first_page.title=Ugrás az első oldalra |
||||||
|
first_page.label=Ugrás az első oldalra |
||||||
|
first_page_label=Ugrás az első oldalra |
||||||
|
last_page.title=Ugrás az utolsó oldalra |
||||||
|
last_page.label=Ugrás az utolsó oldalra |
||||||
|
last_page_label=Ugrás az utolsó oldalra |
||||||
|
page_rotate_cw.title=Forgatás az óramutató járásával egyezően |
||||||
|
page_rotate_cw.label=Forgatás az óramutató járásával egyezően |
||||||
|
page_rotate_cw_label=Forgatás az óramutató járásával egyezően |
||||||
|
page_rotate_ccw.title=Forgatás az óramutató járásával ellentétesen |
||||||
|
page_rotate_ccw.label=Forgatás az óramutató járásával ellentétesen |
||||||
|
page_rotate_ccw_label=Forgatás az óramutató járásával ellentétesen |
||||||
|
|
||||||
|
hand_tool_enable.title=Kéz eszköz bekapcsolása |
||||||
|
hand_tool_enable_label=Kéz eszköz bekapcsolása |
||||||
|
hand_tool_disable.title=Kéz eszköz kikapcsolása |
||||||
|
hand_tool_disable_label=Kéz eszköz kikapcsolása |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Dokumentum tulajdonságai… |
||||||
|
document_properties_label=Dokumentum tulajdonságai… |
||||||
|
document_properties_file_name=Fájlnév: |
||||||
|
document_properties_file_size=Fájlméret: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bájt) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bájt) |
||||||
|
document_properties_title=Cím: |
||||||
|
document_properties_author=Szerző: |
||||||
|
document_properties_subject=Tárgy: |
||||||
|
document_properties_keywords=Kulcsszavak: |
||||||
|
document_properties_creation_date=Létrehozás dátuma: |
||||||
|
document_properties_modification_date=Módosítás dátuma: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Létrehozta: |
||||||
|
document_properties_producer=PDF előállító: |
||||||
|
document_properties_version=PDF verzió: |
||||||
|
document_properties_page_count=Oldalszám: |
||||||
|
document_properties_close=Bezárás |
||||||
|
|
||||||
|
# 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=Oldalsáv be/ki |
||||||
|
toggle_sidebar_label=Oldalsáv be/ki |
||||||
|
outline.title=Dokumentumvázlat megjelenítése |
||||||
|
outline_label=Dokumentumvázlat |
||||||
|
thumbs.title=Bélyegképek megjelenítése |
||||||
|
thumbs_label=Bélyegképek |
||||||
|
findbar.title=Keresés a dokumentumban |
||||||
|
findbar_label=Keresés |
||||||
|
|
||||||
|
# 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}}. oldal |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas={{page}}. oldal bélyegképe |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Keresés: |
||||||
|
find_previous.title=A kifejezés előző előfordulásának keresése |
||||||
|
find_previous_label=Előző |
||||||
|
find_next.title=A kifejezés következő előfordulásának keresése |
||||||
|
find_next_label=Tovább |
||||||
|
find_highlight=Összes kiemelése |
||||||
|
find_match_case_label=Kis- és nagybetűk megkülönböztetése |
||||||
|
find_reached_top=A dokumentum eleje elérve, folytatás a végétől |
||||||
|
find_reached_bottom=A dokumentum vége elérve, folytatás az elejétől |
||||||
|
find_not_found=A kifejezés nem található |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=További információ |
||||||
|
error_less_info=Kevesebb információ |
||||||
|
error_close=Bezárás |
||||||
|
# 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=Üzenet: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Nyomkövetés: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Fájl: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Sor: {{line}} |
||||||
|
rendering_error=Hiba történt az oldal feldolgozása közben. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Oldalszélesség |
||||||
|
page_scale_fit=Teljes oldal |
||||||
|
page_scale_auto=Automatikus nagyítás |
||||||
|
page_scale_actual=Valódi méret |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Hiba |
||||||
|
loading_error=Hiba történt a PDF betöltésekor. |
||||||
|
invalid_file_error=Érvénytelen vagy sérült PDF fájl. |
||||||
|
missing_file_error=Hiányzó PDF fájl. |
||||||
|
|
||||||
|
# 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}} megjegyzés] |
||||||
|
password_label=Adja meg a jelszót a PDF fájl megnyitásához. |
||||||
|
password_invalid=Helytelen jelszó. Próbálja újra. |
||||||
|
password_ok=OK |
||||||
|
password_cancel=Mégse |
||||||
|
|
||||||
|
printing_not_supported=Figyelmeztetés: Ez a böngésző nem teljesen támogatja a nyomtatást. |
||||||
|
printing_not_ready=Figyelmeztetés: A PDF nincs teljesen betöltve a nyomtatáshoz. |
||||||
|
web_fonts_disabled=Webes betűkészletek letiltva: nem használhatók a beágyazott PDF betűkészletek. |
||||||
|
document_colors_disabled=A PDF dokumentumok nem használhatják saját színeiket: „Az oldalak a saját maguk által kiválasztott színeket használhatják” beállítás ki van kapcsolva a böngészőben. |
@ -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 |
@ -0,0 +1,161 @@ |
|||||||
|
# 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_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Էջ. |
||||||
|
page_of={{pageCount}}-ից |
||||||
|
|
||||||
|
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=Պտտել հակառակ ժամացույցի սլաքի |
||||||
|
|
||||||
|
hand_tool_enable.title=Միացնել ձեռքի գործիքը |
||||||
|
hand_tool_enable_label=Միացնել ձեռքի գործիքը |
||||||
|
hand_tool_disable.title=Անջատել ձեռքի գործիքը |
||||||
|
hand_tool_disable_label=ԱՆջատել ձեռքի գործիքը |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Փաստաթղթի հատկությունները... |
||||||
|
document_properties_label=Փաստաթղթի հատկությունները... |
||||||
|
document_properties_file_name=Ֆայլի անունը. |
||||||
|
document_properties_file_size=Ֆայլի չափը. |
||||||
|
document_properties_kb={{size_kb}} ԿԲ ({{size_b}} բայթ) |
||||||
|
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=Փոփոխելու ամսաթիվը. |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Ստեղծող. |
||||||
|
document_properties_producer=PDF-ի հեղինակը. |
||||||
|
document_properties_version=PDF-ի տարբերակը. |
||||||
|
document_properties_page_count=Էջերի քանակը. |
||||||
|
document_properties_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=Բացել/Փակել Կողային վահանակը |
||||||
|
outline.title=Ցուցադրել փաստաթղթի բովանդակությունը |
||||||
|
outline_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_label=Գտնել` |
||||||
|
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}}) |
||||||
|
# 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=Իրական չափը |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Սխալ |
||||||
|
loading_error=Սխալ՝ PDF ֆայլը բացելիս։ |
||||||
|
invalid_file_error=Սխալ կամ բնասված PDF ֆայլ: |
||||||
|
missing_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" |
||||||
|
text_annotation_type.alt=[{{type}} Ծանոթություն] |
||||||
|
password_label=Մուտքագրեք PDF-ի գաղտնաբառը: |
||||||
|
password_invalid=Գաղտնաբառը սխալ է: Կրկին փորձեք: |
||||||
|
password_ok=ԼԱՎ |
||||||
|
password_cancel=Չեղարկել |
||||||
|
|
||||||
|
printing_not_supported=Զգուշացում. Տպելը ամբողջությամբ չի աջակցվում դիտարկիչի կողմից։ |
||||||
|
printing_not_ready=Զգուշացում. PDF-ը ամբողջությամբ չի բեռնավորվել տպելու համար: |
||||||
|
web_fonts_disabled=Վեբ-տառատեսակները անջատված են. հնարավոր չէ օգտագործել ներկառուցված PDF տառատեսակները: |
||||||
|
document_colors_disabled=PDF փաստաթղթերին թույլատրված չէ օգտագործել իրենց սեփական գույները: 'Թույլատրել էջերին ընտրել իրենց սեփական գույները' ընտրանքը անջատված է դիտարկիչում: |
@ -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=Dokumen PDF mungkin tidak dapat ditampilkan dengan benar. |
||||||
|
unsupported_feature_forms=Dokumen PDF ini mengandung formulir. Pengisian bidang isian formulir tidak didukung. |
||||||
|
open_with_different_viewer=Buka dengan Program Lainnya |
||||||
|
open_with_different_viewer.accessKey=l |
@ -0,0 +1,167 @@ |
|||||||
|
# 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=Laman Sebelumnya |
||||||
|
previous_label=Sebelumnya |
||||||
|
next.title=Laman Selanjutnya |
||||||
|
next_label=Selanjutnya |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Laman: |
||||||
|
page_of=dari {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Perkecil |
||||||
|
zoom_out_label=Perkecil |
||||||
|
zoom_in.title=Perbesar |
||||||
|
zoom_in_label=Perbesar |
||||||
|
zoom.title=Perbesaran |
||||||
|
print.title=Cetak |
||||||
|
print_label=Cetak |
||||||
|
presentation_mode.title=Ganti ke Mode Presentasi |
||||||
|
presentation_mode_label=Mode Presentasi |
||||||
|
open_file.title=Buka Berkas |
||||||
|
open_file_label=Buka |
||||||
|
download.title=Unduh |
||||||
|
download_label=Unduh |
||||||
|
bookmark.title=Tampilan Sekarang (salin atau buka di jendela baru) |
||||||
|
bookmark_label=Tampilan Sekarang |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Alat |
||||||
|
tools_label=Alat |
||||||
|
first_page.title=Buka Halaman Pertama |
||||||
|
first_page.label=Buka Halaman Pertama |
||||||
|
first_page_label=Buka Halaman Pertama |
||||||
|
last_page.title=Buka Halaman Terakhir |
||||||
|
last_page.label=Buka Halaman Terakhir |
||||||
|
last_page_label=Buka Halaman Terakhir |
||||||
|
page_rotate_cw.title=Putar Searah Jarum Jam |
||||||
|
page_rotate_cw.label=Putar Searah Jarum Jam |
||||||
|
page_rotate_cw_label=Putar Searah Jarum Jam |
||||||
|
page_rotate_ccw.title=Putar Berlawanan Arah Jarum Jam |
||||||
|
page_rotate_ccw.label=Putar Berlawanan Arah Jarum Jam |
||||||
|
page_rotate_ccw_label=Putar Berlawanan Arah Jarum Jam |
||||||
|
|
||||||
|
hand_tool_enable.title=Aktifkan alat tangan |
||||||
|
hand_tool_enable_label=Aktifkan alat tangan |
||||||
|
hand_tool_disable.title=Nonaktifkan alat tangan |
||||||
|
hand_tool_disable_label=Nonaktifkan alat tangan |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Properti Dokumen… |
||||||
|
document_properties_label=Properti Dokumen… |
||||||
|
document_properties_file_name=Nama berkas: |
||||||
|
document_properties_file_size=Ukuran berkas: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} byte) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} byte) |
||||||
|
document_properties_title=Judul: |
||||||
|
document_properties_author=Penyusun: |
||||||
|
document_properties_subject=Subjek: |
||||||
|
document_properties_keywords=Kata Kunci: |
||||||
|
document_properties_creation_date=Tanggal Dibuat: |
||||||
|
document_properties_modification_date=Tanggal Dimodifikasi: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Pembuat: |
||||||
|
document_properties_producer=Pemroduksi PDF: |
||||||
|
document_properties_version=Versi PDF: |
||||||
|
document_properties_page_count=Jumlah Halaman: |
||||||
|
document_properties_close=Tutup |
||||||
|
|
||||||
|
# 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=Aktif/Nonaktifkan Bilah Samping |
||||||
|
toggle_sidebar_label=Aktif/Nonaktifkan Bilah Samping |
||||||
|
outline.title=Buka Kerangka Dokumen |
||||||
|
outline_label=Kerangka Dokumen |
||||||
|
thumbs.title=Tampilkan Miniatur |
||||||
|
thumbs_label=Miniatur |
||||||
|
findbar.title=Temukan di Dokumen |
||||||
|
findbar_label=Temukan |
||||||
|
|
||||||
|
# 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=Laman {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Miniatur Laman {{page}} |
||||||
|
|
||||||
|
# Context menu |
||||||
|
first_page.label=Ke Halaman Pertama |
||||||
|
last_page.label=Ke Halaman Terakhir |
||||||
|
page_rotate_cw.label=Putar Searah Jarum Jam |
||||||
|
page_rotate_ccw.label=Putar Berlawanan Arah Jarum Jam |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Temukan: |
||||||
|
find_previous.title=Temukan kata sebelumnya |
||||||
|
find_previous_label=Sebelumnya |
||||||
|
find_next.title=Temukan lebih lanjut |
||||||
|
find_next_label=Selanjutnya |
||||||
|
find_highlight=Sorot semu&anya |
||||||
|
find_match_case_label=Cocokkan BESAR/kecil |
||||||
|
find_reached_top=Sampai di awal dokumen, dilanjutkan dari bawah |
||||||
|
find_reached_bottom=Sampai di akhir dokumen, dilanjutkan dari atas |
||||||
|
find_not_found=Frasa tidak ditemukan |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Lebih Banyak Informasi |
||||||
|
error_less_info=Lebih Sedikit Informasi |
||||||
|
error_close=Tutup |
||||||
|
# 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=Pesan: {{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=Berkas: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Baris: {{line}} |
||||||
|
rendering_error=Galat terjadi saat merender laman. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Lebar Laman |
||||||
|
page_scale_fit=Muat Laman |
||||||
|
page_scale_auto=Perbesaran Otomatis |
||||||
|
page_scale_actual=Ukuran Asli |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Galat |
||||||
|
loading_error=Galat terjadi saat memuat PDF. |
||||||
|
invalid_file_error=Berkas PDF tidak valid atau rusak. |
||||||
|
missing_file_error=Berkas PDF tidak ada. |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip. |
||||||
|
# "{{type}}" will be replaced with an annotation type from a list defined in |
||||||
|
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
||||||
|
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
||||||
|
text_annotation_type.alt=[Anotasi {{type}}] |
||||||
|
password_label=Masukkan sandi untuk membuka berkas PDF ini. |
||||||
|
password_invalid=Sandi tidak valid. Silakan coba lagi. |
||||||
|
password_ok=Oke |
||||||
|
password_cancel=Batal |
||||||
|
|
||||||
|
printing_not_supported=Peringatan: Pencetakan tidak didukung secara lengkap pada peramban ini. |
||||||
|
printing_not_ready=Peringatan: Berkas PDF masih belum dimuat secara lengkap untuk dapat dicetak. |
||||||
|
web_fonts_disabled=Font web dinonaktifkan: tidak dapat menggunakan font PDF yang tersemat. |
||||||
|
document_colors_disabled=Dokumen PDF tidak diizinkan untuk menggunakan warnanya sendiri karena setelan \'Izinkan laman memilih warna sendiri\’ dinonaktifkan pada pengaturan. |
@ -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=Hugsanlega birtist þetta PDF skjal ekki rétt. |
||||||
|
unsupported_feature_forms=Þetta PDF skjal inniheldur eyðublað. Ekki er stuðningur við innfyllingu á eyðublaði. |
||||||
|
open_with_different_viewer=Opna með öðrum skoðara |
||||||
|
open_with_different_viewer.accessKey=o |
@ -0,0 +1,161 @@ |
|||||||
|
# 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=Fyrri síða |
||||||
|
previous_label=Fyrri |
||||||
|
next.title=Næsta síða |
||||||
|
next_label=Næsti |
||||||
|
|
||||||
|
# LOCALIZATION NOTE (page_label, page_of): |
||||||
|
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
|
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
|
# representing the total number of pages. |
||||||
|
page_label=Síða: |
||||||
|
page_of=af {{pageCount}} |
||||||
|
|
||||||
|
zoom_out.title=Minnka |
||||||
|
zoom_out_label=Minnka |
||||||
|
zoom_in.title=Stækka |
||||||
|
zoom_in_label=Stækka |
||||||
|
zoom.title=Aðdráttur |
||||||
|
presentation_mode.title=Skipta yfir á kynningarham |
||||||
|
presentation_mode_label=Kynningarhamur |
||||||
|
open_file.title=Opna skrá |
||||||
|
open_file_label=Opna |
||||||
|
print.title=Prenta |
||||||
|
print_label=Prenta |
||||||
|
download.title=Hala niður |
||||||
|
download_label=Hala niður |
||||||
|
bookmark.title=Núverandi sýn (afritaðu eða opnaðu í nýjum glugga) |
||||||
|
bookmark_label=Núverandi sýn |
||||||
|
|
||||||
|
# Secondary toolbar and context menu |
||||||
|
tools.title=Verkfæri |
||||||
|
tools_label=Verkfæri |
||||||
|
first_page.title=Fara á fyrstu síðu |
||||||
|
first_page.label=Fara á fyrstu síðu |
||||||
|
first_page_label=Fara á fyrstu síðu |
||||||
|
last_page.title=Fara á síðustu síðu |
||||||
|
last_page.label=Fara á síðustu síðu |
||||||
|
last_page_label=Fara á síðustu síðu |
||||||
|
page_rotate_cw.title=Snúa réttsælis |
||||||
|
page_rotate_cw.label=Snúa réttsælis |
||||||
|
page_rotate_cw_label=Snúa réttsælis |
||||||
|
page_rotate_ccw.title=Snúa rangsælis |
||||||
|
page_rotate_ccw.label=Snúa rangsælis |
||||||
|
page_rotate_ccw_label=Snúa rangsælis |
||||||
|
|
||||||
|
hand_tool_enable.title=Virkja handarverkfæri |
||||||
|
hand_tool_enable_label=Virkja handarverkfæri |
||||||
|
hand_tool_disable.title=Gera handarverkfæri óvirkt |
||||||
|
hand_tool_disable_label=Gera handarverkfæri óvirkt |
||||||
|
|
||||||
|
# Document properties dialog box |
||||||
|
document_properties.title=Eiginleikar skjals… |
||||||
|
document_properties_label=Eiginleikar skjals… |
||||||
|
document_properties_file_name=Skráarnafn: |
||||||
|
document_properties_file_size=Skrárstærð: |
||||||
|
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
|
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
|
document_properties_title=Titill: |
||||||
|
document_properties_author=Hönnuður: |
||||||
|
document_properties_subject=Efni: |
||||||
|
document_properties_keywords=Stikkorð: |
||||||
|
document_properties_creation_date=Búið til: |
||||||
|
document_properties_modification_date=Dags breytingar: |
||||||
|
document_properties_date_string={{date}}, {{time}} |
||||||
|
document_properties_creator=Höfundur: |
||||||
|
document_properties_producer=PDF framleiðandi: |
||||||
|
document_properties_version=PDF útgáfa: |
||||||
|
document_properties_page_count=Blaðsíðufjöldi: |
||||||
|
document_properties_close=Loka |
||||||
|
|
||||||
|
# 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=Víxla hliðslá |
||||||
|
toggle_sidebar_label=Víxla hliðslá |
||||||
|
outline.title=Sýna efniskipan skjals |
||||||
|
outline_label=Efnisskipan skjals |
||||||
|
thumbs.title=Sýna smámyndir |
||||||
|
thumbs_label=Smámyndir |
||||||
|
findbar.title=Leita í skjali |
||||||
|
findbar_label=Leita |
||||||
|
|
||||||
|
# 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=Síða {{page}} |
||||||
|
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
|
# number. |
||||||
|
thumb_page_canvas=Smámynd af síðu {{page}} |
||||||
|
|
||||||
|
# Find panel button title and messages |
||||||
|
find_label=Leita: |
||||||
|
find_previous.title=Leita að fyrra tilfelli þessara orða |
||||||
|
find_previous_label=Fyrri |
||||||
|
find_next.title=Leita að næsta tilfelli þessara orða |
||||||
|
find_next_label=Næsti |
||||||
|
find_highlight=Lita allt |
||||||
|
find_match_case_label=Passa við stafstöðu |
||||||
|
find_reached_top=Náði efst í skjal, held áfram neðst |
||||||
|
find_reached_bottom=Náði enda skjals, held áfram efst |
||||||
|
find_not_found=Fann ekki orðið |
||||||
|
|
||||||
|
# Error panel labels |
||||||
|
error_more_info=Meiri upplýsingar |
||||||
|
error_less_info=Minni upplýsingar |
||||||
|
error_close=Loka |
||||||
|
# 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=Skilaboð: {{message}} |
||||||
|
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
|
# trace. |
||||||
|
error_stack=Stafli: {{stack}} |
||||||
|
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
|
error_file=Skrá: {{file}} |
||||||
|
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
|
error_line=Lína: {{line}} |
||||||
|
rendering_error=Upp kom villa við að birta síðuna. |
||||||
|
|
||||||
|
# Predefined zoom values |
||||||
|
page_scale_width=Síðubreidd |
||||||
|
page_scale_fit=Passa á síðu |
||||||
|
page_scale_auto=Sjálfvirkur aðdráttur |
||||||
|
page_scale_actual=Raunstærð |
||||||
|
|
||||||
|
# Loading indicator messages |
||||||
|
loading_error_indicator=Villa |
||||||
|
loading_error=Villa kom upp við að hlaða inn PDF. |
||||||
|
invalid_file_error=Ógild eða skemmd PDF skrá. |
||||||
|
missing_file_error=Vantar PDF skrá. |
||||||
|
|
||||||
|
# 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}} Skýring] |
||||||
|
password_label=Sláðu inn lykilorð til að opna þessa PDF skrá. |
||||||
|
password_invalid=Ógilt lykilorð. Reyndu aftur. |
||||||
|
password_ok=Í lagi\u0020 |
||||||
|
password_cancel=Hætta við |
||||||
|
|
||||||
|
printing_not_supported=Aðvörun: Prentun er ekki með fyllilegan stuðning á þessum vafra. |
||||||
|
printing_not_ready=Aðvörun: Ekki er búið að hlaða inn allri PDF skránni fyrir prentun. |
||||||
|
web_fonts_disabled=Vef leturgerðir eru óvirkar: get ekki notað innbyggðar PDF leturgerðir. |
||||||
|
document_colors_disabled=PDF skjöl hafa ekki leyfi til að nota sína eigin liti: 'Leyfa síðum að velja eigin liti' er óvirkt í vafranum. |
@ -0,0 +1,8 @@ |
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
|
|
||||||
|
unsupported_feature = Questo documento PDF potrebbe non essere visualizzato correttamente. |
||||||
|
unsupported_feature_forms = Questo documento PDF contiene dei moduli. La compilazione di moduli non è supportata. |
||||||
|
open_with_different_viewer = Apri con un altro lettore |
||||||
|
open_with_different_viewer.accessKey = A |
@ -1,44 +1,107 @@ |
|||||||
# Copyright 2012 Mozilla Foundation |
# This Source Code Form is subject to the terms of the Mozilla Public |
||||||
# |
# License, v. 2.0. If a copy of the MPL was not distributed with this |
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||||||
# 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. |
|
||||||
|
|
||||||
bookmark.title=Visualizzazione corrente (copia o apri in una nuova finestra) |
previous.title = Pagina precedente |
||||||
previous.title=Precedente |
previous_label = Precedente |
||||||
next.title=Successiva |
next.title = Pagina successiva |
||||||
print.title=Stampa |
next_label = Successiva |
||||||
download.title=Download |
page_label = Pagina: |
||||||
zoom_out.title=Riduci Zoom |
page_of = di {{pageCount}} |
||||||
zoom_in.title=Aumenta Zoom |
zoom_out.title = Riduci zoom |
||||||
error_more_info=Più Informazioni |
zoom_out_label = Riduci zoom |
||||||
error_less_info=Meno Informazioni |
zoom_in.title = Aumenta zoom |
||||||
error_close=Chiudi |
zoom_in_label = Aumenta zoom |
||||||
error_build=PDF.JS Build: {{build}} |
zoom.title = Zoom |
||||||
error_message=Messaggio: {{message}} |
presentation_mode.title = Passa alla modalità presentazione |
||||||
error_stack=Stack: {{stack}} |
presentation_mode_label = Modalità presentazione |
||||||
error_file=File: {{file}} |
open_file.title = Apri file |
||||||
error_line=Linea: {{line}} |
open_file_label = Apri file |
||||||
page_scale_width=Adatta alla Larghezza |
print.title = Stampa |
||||||
page_scale_fit=Adatta alla Pagina |
print_label = Stampa |
||||||
page_scale_auto=Zoom Automatico |
download.title = Scarica questo documento |
||||||
page_scale_actual=Dimensione Attuale |
download_label = Download |
||||||
toggle_slider.title=Visualizza Riquadro Laterale |
bookmark.title = Visualizzazione corrente (copia o apri in una nuova finestra) |
||||||
thumbs.title=Mostra Miniature |
bookmark_label = Visualizzazione corrente |
||||||
outline.title=Mostra Indice Documento |
tools.title = Strumenti |
||||||
loading=Caricamento... {{percent}}% |
tools_label = Strumenti |
||||||
loading_error_indicator=Errore |
first_page.title = Vai alla prima pagina |
||||||
loading_error=È accaduto un errore durante il caricamento del PDF. |
first_page.label = Vai alla prima pagina |
||||||
rendering_error=È accaduto un errore durante il rendering della pagina. |
first_page_label = Vai alla prima pagina |
||||||
page_label=Pagina: |
last_page.title = Vai all’ultima pagina |
||||||
page_of=di {{pageCount}} |
last_page.label = Vai all’ultima pagina |
||||||
open_file.title=Apri File |
last_page_label = Vai all’ultima pagina |
||||||
text_annotation_type.alt=[{{type}} Annotazione] |
page_rotate_cw.title = Ruota in senso orario |
||||||
|
page_rotate_cw.label = Ruota in senso orario |
||||||
|
page_rotate_cw_label = Ruota in senso orario |
||||||
|
page_rotate_ccw.title = Ruota in senso antiorario |
||||||
|
page_rotate_ccw.label = Ruota in senso antiorario |
||||||
|
page_rotate_ccw_label = Ruota in senso antiorario |
||||||
|
hand_tool_enable.title = Attiva strumento mano |
||||||
|
hand_tool_enable_label = Attiva strumento mano |
||||||
|
hand_tool_disable.title = Disattiva strumento mano |
||||||
|
hand_tool_disable_label = Disattiva strumento mano |
||||||
|
document_properties.title = Proprietà del documento… |
||||||
|
document_properties_label = Proprietà del documento… |
||||||
|
document_properties_file_name = Nome file: |
||||||
|
document_properties_file_size = Dimensione file: |
||||||
|
document_properties_kb = {{size_kb}} kB ({{size_b}} byte) |
||||||
|
document_properties_mb = {{size_kb}} MB ({{size_b}} byte) |
||||||
|
document_properties_title = Titolo: |
||||||
|
document_properties_author = Autore: |
||||||
|
document_properties_subject = Oggetto: |
||||||
|
document_properties_keywords = Parole chiave: |
||||||
|
document_properties_creation_date = Data creazione: |
||||||
|
document_properties_modification_date = Data modifica: |
||||||
|
document_properties_date_string = {{date}}, {{time}} |
||||||
|
document_properties_creator = Autore originale: |
||||||
|
document_properties_producer = Produttore PDF: |
||||||
|
document_properties_version = Versione PDF: |
||||||
|
document_properties_page_count = Conteggio pagine: |
||||||
|
document_properties_close = Chiudi |
||||||
|
toggle_sidebar.title = Attiva/disattiva barra laterale |
||||||
|
toggle_sidebar_label = Attiva/disattiva barra laterale |
||||||
|
outline.title = Visualizza la struttura del documento |
||||||
|
outline_label = Struttura documento |
||||||
|
thumbs.title = Mostra le miniature |
||||||
|
thumbs_label = Miniature |
||||||
|
findbar.title = Trova nel documento |
||||||
|
findbar_label = Trova |
||||||
|
thumb_page_title = Pagina {{page}} |
||||||
|
thumb_page_canvas = Miniatura della pagina {{page}} |
||||||
|
find_label = Trova: |
||||||
|
find_previous.title = Trova l’occorrenza precedente del testo da cercare |
||||||
|
find_previous_label = Precedente |
||||||
|
find_next.title = Trova l’occorrenza successiva del testo da cercare |
||||||
|
find_next_label = Successivo |
||||||
|
find_highlight = Evidenzia |
||||||
|
find_match_case_label = Maiuscole/minuscole |
||||||
|
find_reached_top = Raggiunto l’inizio della pagina, continua dalla fine |
||||||
|
find_reached_bottom = Raggiunta la fine della pagina, continua dall’inizio |
||||||
|
find_not_found = Testo non trovato |
||||||
|
error_more_info = Più informazioni |
||||||
|
error_less_info = Meno informazioni |
||||||
|
error_close = Chiudi |
||||||
|
error_version_info = PDF.js v{{version}} (build: {{build}}) |
||||||
|
error_message = Messaggio: {{message}} |
||||||
|
error_stack = Stack: {{stack}} |
||||||
|
error_file = File: {{file}} |
||||||
|
error_line = Riga: {{line}} |
||||||
|
rendering_error = Si è verificato un errore durante il rendering della pagina. |
||||||
|
page_scale_width = Larghezza pagina |
||||||
|
page_scale_fit = Adatta a una pagina |
||||||
|
page_scale_auto = Zoom automatico |
||||||
|
page_scale_actual = Dimensioni effettive |
||||||
|
loading_error_indicator = Errore |
||||||
|
loading_error = Si è verificato un errore durante il caricamento del PDF. |
||||||
|
invalid_file_error = File PDF non valido o danneggiato. |
||||||
|
missing_file_error = File PDF non disponibile. |
||||||
|
text_annotation_type.alt = [Annotazione: {{type}}] |
||||||
|
password_label = Inserire la password per aprire questo file PDF. |
||||||
|
password_invalid = Password non corretta. Riprovare. |
||||||
|
password_ok = OK |
||||||
|
password_cancel = Annulla |
||||||
|
printing_not_supported = Attenzione: la stampa non è completamente supportata da questo browser. |
||||||
|
printing_not_ready = Attenzione: il PDF non è ancora stato caricato completamente per la stampa. |
||||||
|
web_fonts_disabled = I web font risultano disattivati: impossibile utilizzare i caratteri inclusi nel PDF. |
||||||
|
document_colors_disabled = Non è possibile per i documenti PDF utilizzare i propri colori: l’opzione del browser “Permetti alle pagine di scegliere i propri colori invece di quelli impostati” è disattivata. |
||||||
|
@ -1,19 +1,19 @@ |
|||||||
# Copyright 2012 Mozilla Foundation |
# Copyright 2012 Mozilla Foundation |
||||||
# |
# |
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
# you may not use this file except in compliance with the License. |
# you may not use this file except in compliance with the License. |
||||||
# You may obtain a copy of the License at |
# You may obtain a copy of the License at |
||||||
# |
# |
||||||
# http://www.apache.org/licenses/LICENSE-2.0 |
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
# |
# |
||||||
# Unless required by applicable law or agreed to in writing, software |
# Unless required by applicable law or agreed to in writing, software |
||||||
# distributed under the License is distributed on an "AS IS" BASIS, |
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
# See the License for the specific language governing permissions and |
# See the License for the specific language governing permissions and |
||||||
# limitations under the License. |
# limitations under the License. |
||||||
|
|
||||||
# Chrome notification bar messages and buttons |
# Chrome notification bar messages and buttons |
||||||
unsupported_feature=この PDF 文書はサポートされていないため正しく表示できない可能性があります。 |
unsupported_feature=この PDF 文書はサポートされていないため正しく表示できない可能性があります。 |
||||||
unsupported_feature_forms=このPDFドキュメントは、フォームが含まれています。フォームフィールドへの入力はサポートされていません。 |
unsupported_feature_forms=この PDF ドキュメントは、フォームが含まれています。フォームフィールドへの入力はサポートされていません。 |
||||||
open_with_different_viewer=ほかのビューアで開く |
open_with_different_viewer=ほかのビューアで開く |
||||||
open_with_different_viewer.accessKey=o |
open_with_different_viewer.accessKey=o |
||||||
|
@ -1,161 +1,161 @@ |
|||||||
# Copyright 2012 Mozilla Foundation |
# Copyright 2012 Mozilla Foundation |
||||||
# |
# |
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
# you may not use this file except in compliance with the License. |
# you may not use this file except in compliance with the License. |
||||||
# You may obtain a copy of the License at |
# You may obtain a copy of the License at |
||||||
# |
# |
||||||
# http://www.apache.org/licenses/LICENSE-2.0 |
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
# |
# |
||||||
# Unless required by applicable law or agreed to in writing, software |
# Unless required by applicable law or agreed to in writing, software |
||||||
# distributed under the License is distributed on an "AS IS" BASIS, |
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
# See the License for the specific language governing permissions and |
# See the License for the specific language governing permissions and |
||||||
# limitations under the License. |
# limitations under the License. |
||||||
|
|
||||||
# Main toolbar buttons (tooltips and alt text for images) |
# Main toolbar buttons (tooltips and alt text for images) |
||||||
previous.title=前のページ |
previous.title=前のページ |
||||||
previous_label=前へ |
previous_label=前へ |
||||||
next.title=次のページ |
next.title=次のページ |
||||||
next_label=次へ |
next_label=次へ |
||||||
|
|
||||||
# LOCALIZATION NOTE (page_label, page_of): |
# LOCALIZATION NOTE (page_label, page_of): |
||||||
# These strings are concatenated to form the "Page: X of Y" string. |
# These strings are concatenated to form the "Page: X of Y" string. |
||||||
# Do not translate "{{pageCount}}", it will be substituted with a number |
# Do not translate "{{pageCount}}", it will be substituted with a number |
||||||
# representing the total number of pages. |
# representing the total number of pages. |
||||||
page_label=ページ: |
page_label=ページ: |
||||||
page_of=/ {{pageCount}} |
page_of=/ {{pageCount}} |
||||||
|
|
||||||
zoom_out.title=縮小 |
zoom_out.title=縮小 |
||||||
zoom_out_label=縮小 |
zoom_out_label=縮小 |
||||||
zoom_in.title=拡大 |
zoom_in.title=拡大 |
||||||
zoom_in_label=拡大 |
zoom_in_label=拡大 |
||||||
zoom.title=ズーム |
zoom.title=拡大/縮小 |
||||||
presentation_mode.title=プレゼンテーションモードに切り替えます |
presentation_mode.title=プレゼンテーションモードに切り替えます |
||||||
presentation_mode_label=プレゼンテーションモード |
presentation_mode_label=プレゼンテーションモード |
||||||
open_file.title=ファイルを開く |
open_file.title=ファイルを開く |
||||||
open_file_label=開く |
open_file_label=開く |
||||||
print.title=印刷 |
print.title=印刷 |
||||||
print_label=印刷 |
print_label=印刷 |
||||||
download.title=ダウンロード |
download.title=ダウンロード |
||||||
download_label=ダウンロード |
download_label=ダウンロード |
||||||
bookmark.title=現在のビューをブックマーク |
bookmark.title=現在のビューをブックマーク |
||||||
bookmark_label=現在のビューをブックマーク |
bookmark_label=現在のビューをブックマーク |
||||||
|
|
||||||
# Secondary toolbar and context menu |
# Secondary toolbar and context menu |
||||||
tools.title=ツール |
tools.title=ツール |
||||||
tools_label=ツール |
tools_label=ツール |
||||||
first_page.title=最初のページへ移動 |
first_page.title=最初のページへ移動 |
||||||
first_page.label=最初のページへ移動 |
first_page.label=最初のページへ移動 |
||||||
first_page_label=最初のページへ移動 |
first_page_label=最初のページへ移動 |
||||||
last_page.title=最後のページへ移動 |
last_page.title=最後のページへ移動 |
||||||
last_page.label=最後のページへ移動 |
last_page.label=最後のページへ移動 |
||||||
last_page_label=最後のページへ移動 |
last_page_label=最後のページへ移動 |
||||||
page_rotate_cw.title=右回転 |
page_rotate_cw.title=右回転 |
||||||
page_rotate_cw.label=右回転 |
page_rotate_cw.label=右回転 |
||||||
page_rotate_cw_label=右回転 |
page_rotate_cw_label=右回転 |
||||||
page_rotate_ccw.title=左回転 |
page_rotate_ccw.title=左回転 |
||||||
page_rotate_ccw.label=左回転 |
page_rotate_ccw.label=左回転 |
||||||
page_rotate_ccw_label=左回転 |
page_rotate_ccw_label=左回転 |
||||||
|
|
||||||
hand_tool_enable.title=手のひらツールを有効にする |
hand_tool_enable.title=手のひらツールを有効にする |
||||||
hand_tool_enable_label=手のひらツールを有効にする |
hand_tool_enable_label=手のひらツールを有効にする |
||||||
hand_tool_disable.title=手のひらツールを無効にする |
hand_tool_disable.title=手のひらツールを無効にする |
||||||
hand_tool_disable_label=手のひらツールを無効にする |
hand_tool_disable_label=手のひらツールを無効にする |
||||||
|
|
||||||
# Document properties dialog box |
# Document properties dialog box |
||||||
document_properties.title=文書のプロパティ… |
document_properties.title=文書のプロパティ... |
||||||
document_properties_label=文書のプロパティ… |
document_properties_label=文書のプロパティ... |
||||||
document_properties_file_name=ファイル名: |
document_properties_file_name=ファイル名: |
||||||
document_properties_file_size=ファイルサイズ: |
document_properties_file_size=ファイルサイズ: |
||||||
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
document_properties_kb={{size_kb}} KB ({{size_b}} bytes) |
||||||
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
document_properties_mb={{size_mb}} MB ({{size_b}} bytes) |
||||||
document_properties_title=タイトル: |
document_properties_title=タイトル: |
||||||
document_properties_author=作成者: |
document_properties_author=作成者: |
||||||
document_properties_subject=件名: |
document_properties_subject=件名: |
||||||
document_properties_keywords=キーワード: |
document_properties_keywords=キーワード: |
||||||
document_properties_creation_date=作成日: |
document_properties_creation_date=作成日: |
||||||
document_properties_modification_date=更新日: |
document_properties_modification_date=更新日: |
||||||
document_properties_date_string={{date}}, {{time}} |
document_properties_date_string={{date}}, {{time}} |
||||||
document_properties_creator=アプリケーション: |
document_properties_creator=アプリケーション: |
||||||
document_properties_producer=PDF 変換: |
document_properties_producer=PDF 変換: |
||||||
document_properties_version=PDFのバージョン: |
document_properties_version=PDF のバージョン: |
||||||
document_properties_page_count=ページ数: |
document_properties_page_count=ページ数: |
||||||
document_properties_close=閉じる |
document_properties_close=閉じる |
||||||
|
|
||||||
# Tooltips and alt text for side panel toolbar buttons |
# Tooltips and alt text for side panel toolbar buttons |
||||||
# (the _label strings are alt text for the buttons, the .title strings are |
# (the _label strings are alt text for the buttons, the .title strings are |
||||||
# tooltips) |
# tooltips) |
||||||
toggle_sidebar.title=サイドバーの切り替え |
toggle_sidebar.title=サイドバーの切り替え |
||||||
toggle_sidebar_label=サイドバーの切り替え |
toggle_sidebar_label=サイドバーの切り替え |
||||||
outline.title=文書の目次 |
outline.title=文書の目次 |
||||||
outline_label=文書の目次 |
outline_label=文書の目次 |
||||||
thumbs.title=縮小版 |
thumbs.title=縮小版 |
||||||
thumbs_label=縮小版 |
thumbs_label=縮小版 |
||||||
findbar.title=検索 |
findbar.title=検索 |
||||||
findbar_label=検索 |
findbar_label=検索 |
||||||
|
|
||||||
# Thumbnails panel item (tooltip and alt text for images) |
# Thumbnails panel item (tooltip and alt text for images) |
||||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page |
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page |
||||||
# number. |
# number. |
||||||
thumb_page_title={{page}} ページ |
thumb_page_title={{page}} ページ |
||||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page |
||||||
# number. |
# number. |
||||||
thumb_page_canvas=ページの縮小版 {{page}} |
thumb_page_canvas=ページの縮小版 {{page}} |
||||||
|
|
||||||
# Find panel button title and messages |
# Find panel button title and messages |
||||||
find_label=検索: |
find_label=検索: |
||||||
find_previous.title=指定文字列に一致する 1 つ前の部分を検索します |
find_previous.title=指定文字列に一致する 1 つ前の部分を検索します |
||||||
find_previous_label=前へ |
find_previous_label=前へ |
||||||
find_next.title=指定文字列に一致する次の部分を検索します |
find_next.title=指定文字列に一致する次の部分を検索します |
||||||
find_next_label=次へ |
find_next_label=次へ |
||||||
find_highlight=すべて強調表示 |
find_highlight=すべて強調表示 |
||||||
find_match_case_label=大文字/小文字を区別 |
find_match_case_label=大文字/小文字を区別 |
||||||
find_reached_top=文書先頭まで検索したので末尾に戻って検索しました。 |
find_reached_top=文書先頭まで検索したので末尾に戻って検索しました。 |
||||||
find_reached_bottom=文書末尾まで検索したので先頭に戻って検索しました。 |
find_reached_bottom=文書末尾まで検索したので先頭に戻って検索しました。 |
||||||
find_not_found=見つかりませんでした。 |
find_not_found=見つかりませんでした。 |
||||||
|
|
||||||
# Error panel labels |
# Error panel labels |
||||||
error_more_info=詳細情報 |
error_more_info=詳細情報 |
||||||
error_less_info=詳細情報の非表示 |
error_less_info=詳細情報の非表示 |
||||||
error_close=閉じる |
error_close=閉じる |
||||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be |
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be |
||||||
# replaced by the PDF.JS version and build ID. |
# replaced by the PDF.JS version and build ID. |
||||||
error_version_info=PDF.js v{{version}} (ビルド: {{build}}) |
error_version_info=PDF.js v{{version}} (ビルド: {{build}}) |
||||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an |
||||||
# english string describing the error. |
# english string describing the error. |
||||||
error_message=メッセージ: {{message}} |
error_message=メッセージ: {{message}} |
||||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack |
||||||
# trace. |
# trace. |
||||||
error_stack=スタック: {{stack}} |
error_stack=スタック: {{stack}} |
||||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename |
||||||
error_file=ファイル: {{file}} |
error_file=ファイル: {{file}} |
||||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number |
||||||
error_line=ライン: {{line}} |
error_line=ライン: {{line}} |
||||||
rendering_error=ページのレンダリング中にエラーが発生しました |
rendering_error=ページのレンダリング中にエラーが発生しました |
||||||
|
|
||||||
# Predefined zoom values |
# Predefined zoom values |
||||||
page_scale_width=幅に合わせる |
page_scale_width=幅に合わせる |
||||||
page_scale_fit=ページのサイズに合わせる |
page_scale_fit=ページのサイズに合わせる |
||||||
page_scale_auto=自動ズーム |
page_scale_auto=自動ズーム |
||||||
page_scale_actual=実際のサイズ |
page_scale_actual=実際のサイズ |
||||||
|
|
||||||
# Loading indicator messages |
# Loading indicator messages |
||||||
loading_error_indicator=エラー |
loading_error_indicator=エラー |
||||||
loading_error=PDF の読み込み中にエラーが発生しました |
loading_error=PDF の読み込み中にエラーが発生しました |
||||||
invalid_file_error=無効または破損した PDF ファイル |
invalid_file_error=無効または破損した PDF ファイル |
||||||
missing_file_error=PDF ファイルが見つかりません。 |
missing_file_error=PDF ファイルが見つかりません。 |
||||||
|
|
||||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. |
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. |
||||||
# "{{type}}" will be replaced with an annotation type from a list defined in |
# "{{type}}" will be replaced with an annotation type from a list defined in |
||||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
# the PDF spec (32000-1:2008 Table 169 – Annotation types). |
||||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
# Some common types are e.g.: "Check", "Text", "Comment", "Note" |
||||||
text_annotation_type.alt=[{{type}} 注釈] |
text_annotation_type.alt=[{{type}} 注釈] |
||||||
password_label=この PDF ファイルを開くためのパスワードを入力してください。 |
password_label=この PDF ファイルを開くためのパスワードを入力してください。 |
||||||
password_invalid=無効なパスワードです。もう一度やり直してください。 |
password_invalid=無効なパスワードです。もう一度やり直してください。 |
||||||
password_ok=OK |
password_ok=OK |
||||||
password_cancel=キャンセル |
password_cancel=キャンセル |
||||||
|
|
||||||
printing_not_supported=警告:このブラウザでは印刷が完全にサポートされていません |
printing_not_supported=警告: このブラウザでは印刷が完全にサポートされていません |
||||||
printing_not_ready=警告:PDF を印刷するための読み込みが終了していません |
printing_not_ready=警告: PDF を印刷するための読み込みが終了していません |
||||||
web_fonts_disabled=Web フォントが無効になっています: 埋め込まれた PDF のフォントを使用することができません |
web_fonts_disabled=Web フォントが無効になっています: 埋め込まれた PDF のフォントを使用することができません |
||||||
document_colors_disabled=PDF文書は、Web ページが指定した配色を使用することができません: \'Web ページが指定した配色\' はブラウザで無効になっています。 |
document_colors_disabled=PDF 文書は、Web ページが指定した配色を使用することができません: \'Web ページが指定した配色\' はブラウザで無効になっています。 |
||||||
|
@ -0,0 +1,18 @@ |
|||||||
|
# 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 დოკუმენტი შესაძლოა უმართებლოდ აისახოს. |
||||||
|
open_with_different_viewer=ასახვა სხვა პროგრამით |
||||||
|
open_with_different_viewer.accessKey=o |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue