From b663cec3839b78eb60163677768f7f353cdc7e65 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Thu, 17 Oct 2019 12:06:07 +0200 Subject: [PATCH] [Firefox] Stop fetching the `chrome.properties` files during `gulp importl10n` (PR 9566 follow-up) With the removal of the (standalone) Firefox building code in PR 9566 (a year and a half ago), these files are now completely unused in the GitHub repository[1]. Hence it doesn't really seem necessary to keep fetching them with `gulp importl10n`, and the existing files in the `l10n` folder can also be removed (thanks to version control, they're easy enough to restore should the need ever arise). The patch also allows an additional simplification, for the `gulp locale` and `gulp mozcentral` commands, since it's now possible to stop writing `l10n` files to the `extensions/firefox/` folder and instead just copy them similar to other build targets. --- [1] They're obviously still used in `mozilla-central`, for fallback messages displayed through `PdfStreamConverter.jsm`, but that doesn't make it necessary to keep them *here* as far as I'm concerned. --- extensions/firefox/.gitignore | 1 - external/importL10n/locales.js | 2 +- gulpfile.js | 10 +--------- l10n/ach/chrome.properties | 19 ------------------- l10n/af/chrome.properties | 19 ------------------- l10n/an/chrome.properties | 19 ------------------- l10n/ar/chrome.properties | 19 ------------------- l10n/ast/chrome.properties | 8 -------- l10n/az/chrome.properties | 19 ------------------- l10n/be/chrome.properties | 19 ------------------- l10n/bg/chrome.properties | 19 ------------------- l10n/bn/chrome.properties | 19 ------------------- l10n/bo/chrome.properties | 19 ------------------- l10n/br/chrome.properties | 19 ------------------- l10n/brx/chrome.properties | 19 ------------------- l10n/bs/chrome.properties | 19 ------------------- l10n/ca/chrome.properties | 19 ------------------- l10n/cak/chrome.properties | 19 ------------------- l10n/cs/chrome.properties | 19 ------------------- l10n/cy/chrome.properties | 19 ------------------- l10n/da/chrome.properties | 9 --------- l10n/de/chrome.properties | 19 ------------------- l10n/dsb/chrome.properties | 19 ------------------- l10n/el/chrome.properties | 19 ------------------- l10n/en-CA/chrome.properties | 19 ------------------- l10n/en-GB/chrome.properties | 19 ------------------- l10n/en-US/chrome.properties | 19 ------------------- l10n/eo/chrome.properties | 19 ------------------- l10n/es-AR/chrome.properties | 19 ------------------- l10n/es-CL/chrome.properties | 19 ------------------- l10n/es-ES/chrome.properties | 8 -------- l10n/es-MX/chrome.properties | 19 ------------------- l10n/et/chrome.properties | 19 ------------------- l10n/eu/chrome.properties | 19 ------------------- l10n/fa/chrome.properties | 19 ------------------- l10n/ff/chrome.properties | 19 ------------------- l10n/fi/chrome.properties | 19 ------------------- l10n/fr/chrome.properties | 19 ------------------- l10n/fy-NL/chrome.properties | 9 --------- l10n/ga-IE/chrome.properties | 19 ------------------- l10n/gd/chrome.properties | 19 ------------------- l10n/gl/chrome.properties | 19 ------------------- l10n/gn/chrome.properties | 19 ------------------- l10n/gu-IN/chrome.properties | 19 ------------------- l10n/he/chrome.properties | 19 ------------------- l10n/hi-IN/chrome.properties | 19 ------------------- l10n/hr/chrome.properties | 19 ------------------- l10n/hsb/chrome.properties | 19 ------------------- l10n/hu/chrome.properties | 19 ------------------- l10n/hy-AM/chrome.properties | 19 ------------------- l10n/ia/chrome.properties | 19 ------------------- l10n/id/chrome.properties | 19 ------------------- l10n/is/chrome.properties | 19 ------------------- l10n/it/chrome.properties | 8 -------- l10n/ja/chrome.properties | 19 ------------------- l10n/ka/chrome.properties | 19 ------------------- l10n/kab/chrome.properties | 19 ------------------- l10n/kk/chrome.properties | 19 ------------------- l10n/km/chrome.properties | 19 ------------------- l10n/kn/chrome.properties | 19 ------------------- l10n/ko/chrome.properties | 19 ------------------- l10n/lij/chrome.properties | 8 -------- l10n/lt/chrome.properties | 19 ------------------- l10n/ltg/chrome.properties | 19 ------------------- l10n/lv/chrome.properties | 19 ------------------- l10n/mk/chrome.properties | 9 --------- l10n/mr/chrome.properties | 19 ------------------- l10n/ms/chrome.properties | 19 ------------------- l10n/my/chrome.properties | 19 ------------------- l10n/nb-NO/chrome.properties | 19 ------------------- l10n/ne-NP/chrome.properties | 19 ------------------- l10n/nl/chrome.properties | 19 ------------------- l10n/nn-NO/chrome.properties | 19 ------------------- l10n/oc/chrome.properties | 19 ------------------- l10n/pa-IN/chrome.properties | 19 ------------------- l10n/pl/chrome.properties | 9 --------- l10n/pt-BR/chrome.properties | 19 ------------------- l10n/pt-PT/chrome.properties | 19 ------------------- l10n/rm/chrome.properties | 19 ------------------- l10n/ro/chrome.properties | 19 ------------------- l10n/ru/chrome.properties | 19 ------------------- l10n/si/chrome.properties | 19 ------------------- l10n/sk/chrome.properties | 19 ------------------- l10n/sl/chrome.properties | 19 ------------------- l10n/son/chrome.properties | 19 ------------------- l10n/sq/chrome.properties | 19 ------------------- l10n/sr/chrome.properties | 19 ------------------- l10n/sv-SE/chrome.properties | 19 ------------------- l10n/ta/chrome.properties | 19 ------------------- l10n/te/chrome.properties | 19 ------------------- l10n/th/chrome.properties | 19 ------------------- l10n/tl/chrome.properties | 19 ------------------- l10n/tr/chrome.properties | 19 ------------------- l10n/trs/chrome.properties | 19 ------------------- l10n/uk/chrome.properties | 19 ------------------- l10n/ur/chrome.properties | 19 ------------------- l10n/uz/chrome.properties | 19 ------------------- l10n/vi/chrome.properties | 19 ------------------- l10n/wo/chrome.properties | 18 ------------------ l10n/xh/chrome.properties | 19 ------------------- l10n/zh-CN/chrome.properties | 19 ------------------- l10n/zh-TW/chrome.properties | 20 -------------------- 102 files changed, 2 insertions(+), 1808 deletions(-) delete mode 100644 extensions/firefox/.gitignore delete mode 100644 l10n/ach/chrome.properties delete mode 100644 l10n/af/chrome.properties delete mode 100644 l10n/an/chrome.properties delete mode 100644 l10n/ar/chrome.properties delete mode 100644 l10n/ast/chrome.properties delete mode 100644 l10n/az/chrome.properties delete mode 100644 l10n/be/chrome.properties delete mode 100644 l10n/bg/chrome.properties delete mode 100644 l10n/bn/chrome.properties delete mode 100644 l10n/bo/chrome.properties delete mode 100644 l10n/br/chrome.properties delete mode 100644 l10n/brx/chrome.properties delete mode 100644 l10n/bs/chrome.properties delete mode 100644 l10n/ca/chrome.properties delete mode 100644 l10n/cak/chrome.properties delete mode 100644 l10n/cs/chrome.properties delete mode 100644 l10n/cy/chrome.properties delete mode 100644 l10n/da/chrome.properties delete mode 100644 l10n/de/chrome.properties delete mode 100644 l10n/dsb/chrome.properties delete mode 100644 l10n/el/chrome.properties delete mode 100644 l10n/en-CA/chrome.properties delete mode 100644 l10n/en-GB/chrome.properties delete mode 100644 l10n/en-US/chrome.properties delete mode 100644 l10n/eo/chrome.properties delete mode 100644 l10n/es-AR/chrome.properties delete mode 100644 l10n/es-CL/chrome.properties delete mode 100644 l10n/es-ES/chrome.properties delete mode 100644 l10n/es-MX/chrome.properties delete mode 100644 l10n/et/chrome.properties delete mode 100644 l10n/eu/chrome.properties delete mode 100644 l10n/fa/chrome.properties delete mode 100644 l10n/ff/chrome.properties delete mode 100644 l10n/fi/chrome.properties delete mode 100644 l10n/fr/chrome.properties delete mode 100644 l10n/fy-NL/chrome.properties delete mode 100644 l10n/ga-IE/chrome.properties delete mode 100644 l10n/gd/chrome.properties delete mode 100644 l10n/gl/chrome.properties delete mode 100644 l10n/gn/chrome.properties delete mode 100644 l10n/gu-IN/chrome.properties delete mode 100644 l10n/he/chrome.properties delete mode 100644 l10n/hi-IN/chrome.properties delete mode 100644 l10n/hr/chrome.properties delete mode 100644 l10n/hsb/chrome.properties delete mode 100644 l10n/hu/chrome.properties delete mode 100644 l10n/hy-AM/chrome.properties delete mode 100644 l10n/ia/chrome.properties delete mode 100644 l10n/id/chrome.properties delete mode 100644 l10n/is/chrome.properties delete mode 100644 l10n/it/chrome.properties delete mode 100644 l10n/ja/chrome.properties delete mode 100644 l10n/ka/chrome.properties delete mode 100644 l10n/kab/chrome.properties delete mode 100644 l10n/kk/chrome.properties delete mode 100644 l10n/km/chrome.properties delete mode 100644 l10n/kn/chrome.properties delete mode 100644 l10n/ko/chrome.properties delete mode 100644 l10n/lij/chrome.properties delete mode 100644 l10n/lt/chrome.properties delete mode 100644 l10n/ltg/chrome.properties delete mode 100644 l10n/lv/chrome.properties delete mode 100644 l10n/mk/chrome.properties delete mode 100644 l10n/mr/chrome.properties delete mode 100644 l10n/ms/chrome.properties delete mode 100644 l10n/my/chrome.properties delete mode 100644 l10n/nb-NO/chrome.properties delete mode 100644 l10n/ne-NP/chrome.properties delete mode 100644 l10n/nl/chrome.properties delete mode 100644 l10n/nn-NO/chrome.properties delete mode 100644 l10n/oc/chrome.properties delete mode 100644 l10n/pa-IN/chrome.properties delete mode 100644 l10n/pl/chrome.properties delete mode 100644 l10n/pt-BR/chrome.properties delete mode 100644 l10n/pt-PT/chrome.properties delete mode 100644 l10n/rm/chrome.properties delete mode 100644 l10n/ro/chrome.properties delete mode 100644 l10n/ru/chrome.properties delete mode 100644 l10n/si/chrome.properties delete mode 100644 l10n/sk/chrome.properties delete mode 100644 l10n/sl/chrome.properties delete mode 100644 l10n/son/chrome.properties delete mode 100644 l10n/sq/chrome.properties delete mode 100644 l10n/sr/chrome.properties delete mode 100644 l10n/sv-SE/chrome.properties delete mode 100644 l10n/ta/chrome.properties delete mode 100644 l10n/te/chrome.properties delete mode 100644 l10n/th/chrome.properties delete mode 100644 l10n/tl/chrome.properties delete mode 100644 l10n/tr/chrome.properties delete mode 100644 l10n/trs/chrome.properties delete mode 100644 l10n/uk/chrome.properties delete mode 100644 l10n/ur/chrome.properties delete mode 100644 l10n/uz/chrome.properties delete mode 100644 l10n/vi/chrome.properties delete mode 100644 l10n/wo/chrome.properties delete mode 100644 l10n/xh/chrome.properties delete mode 100644 l10n/zh-CN/chrome.properties delete mode 100644 l10n/zh-TW/chrome.properties diff --git a/extensions/firefox/.gitignore b/extensions/firefox/.gitignore deleted file mode 100644 index 1d2883265..000000000 --- a/extensions/firefox/.gitignore +++ /dev/null @@ -1 +0,0 @@ -locale/ diff --git a/external/importL10n/locales.js b/external/importL10n/locales.js index 3ea65e627..d5dcc96af 100644 --- a/external/importL10n/locales.js +++ b/external/importL10n/locales.js @@ -62,7 +62,7 @@ function downloadLanguageFiles(root, langCode) { var MOZ_CENTRAL_PDFJS_DIR = '/raw-file/default/browser/pdfviewer/'; // Defines which files to download for each language. - var files = ['chrome.properties', 'viewer.properties']; + var files = ['viewer.properties']; var downloadsLeft = files.length; var outputDir = path.join(root, langCode); diff --git a/gulpfile.js b/gulpfile.js index 7514b293d..55e1e68ab 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -571,13 +571,10 @@ gulp.task('default_preferences', gulp.series('default_preferences-pre', gulp.task('locale', function () { var VIEWER_LOCALE_OUTPUT = 'web/locale/'; - var EXTENSION_LOCALE_OUTPUT = 'extensions/firefox/locale/'; console.log(); console.log('### Building localization files'); - rimraf.sync(EXTENSION_LOCALE_OUTPUT); - mkdirp.sync(EXTENSION_LOCALE_OUTPUT); rimraf.sync(VIEWER_LOCALE_OUTPUT); mkdirp.sync(VIEWER_LOCALE_OUTPUT); @@ -596,7 +593,6 @@ gulp.task('locale', function () { continue; } - mkdirp.sync(EXTENSION_LOCALE_OUTPUT + '/' + locale); mkdirp.sync(VIEWER_LOCALE_OUTPUT + '/' + locale); locales.push(locale); @@ -608,10 +604,6 @@ gulp.task('locale', function () { } return merge([ - gulp.src(L10N_DIR + '/{' + locales.join(',') + '}' + - '/{viewer,chrome}.properties', { base: L10N_DIR, }) - .pipe(gulp.dest(EXTENSION_LOCALE_OUTPUT)), - createStringSource('locale.properties', viewerOutput) .pipe(gulp.dest(VIEWER_LOCALE_OUTPUT)), gulp.src(L10N_DIR + '/{' + locales.join(',') + '}' + @@ -880,7 +872,7 @@ gulp.task('mozcentral-pre', gulp.series('buildnumber', 'default_preferences', ])) .pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR + 'web')), - gulp.src(FIREFOX_EXTENSION_DIR + 'locale/en-US/*.properties') + gulp.src('web/locale/en-US/*.properties') .pipe(gulp.dest(MOZCENTRAL_L10N_DIR)), gulp.src(FIREFOX_EXTENSION_DIR + 'README.mozilla') .pipe(replace(/\bPDFJSSCRIPT_VERSION\b/g, version)) diff --git a/l10n/ach/chrome.properties b/l10n/ach/chrome.properties deleted file mode 100644 index fe64a22bc..000000000 --- a/l10n/ach/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Gin acoya me PDF man mogo pe ki biyaro kakare. -unsupported_feature_forms=Gin acoya me PDF man tye ki pwom. Pe kiteno pongo kabedo ma iye pwom. -open_with_different_viewer=Yab gin neno mapat -open_with_different_viewer.accessKey=o diff --git a/l10n/af/chrome.properties b/l10n/af/chrome.properties deleted file mode 100644 index f58a31e36..000000000 --- a/l10n/af/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Dié PDF-dokument sal dalk nie korrek vertoon word nie. -unsupported_feature_forms=Dié PDF-dokument bevat vorms. Die invul van vormvelde word nie ondersteun nie. -open_with_different_viewer=Open met 'n ander program -open_with_different_viewer.accessKey=O diff --git a/l10n/an/chrome.properties b/l10n/an/chrome.properties deleted file mode 100644 index 56e590d1f..000000000 --- a/l10n/an/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/ar/chrome.properties b/l10n/ar/chrome.properties deleted file mode 100644 index 12d3fe248..000000000 --- a/l10n/ar/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=قد لا يُعرض ملف PDF هذا بشكل سليم. -unsupported_feature_forms=يحتوى ملف PDF على نماذج. ملء النماذج غير مدعوم. -open_with_different_viewer=افتح في عارِض آخر -open_with_different_viewer.accessKey=ت diff --git a/l10n/ast/chrome.properties b/l10n/ast/chrome.properties deleted file mode 100644 index f999cece3..000000000 --- a/l10n/ast/chrome.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -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 -unsupported_feature_forms = Esti documentu PDF contién formularios. La cumplimentación de los campos de formularios nun ta implementada. diff --git a/l10n/az/chrome.properties b/l10n/az/chrome.properties deleted file mode 100644 index c12cf3921..000000000 --- a/l10n/az/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Bu PDF sənədi düzgün göstərilməyə bilər. -unsupported_feature_forms=Bu PDF sənədində form var. Form ərazilərinin doldurulması dəstəklənməməkdədir. -open_with_different_viewer=Fərqli Baxış Proqramıyla Aç -open_with_different_viewer.accessKey=a diff --git a/l10n/be/chrome.properties b/l10n/be/chrome.properties deleted file mode 100644 index f4bbd38f8..000000000 --- a/l10n/be/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Гэты дакумент PDF можа адлюстроўвацца няправільна. -unsupported_feature_forms=Гэты дакумент PDF змяшчае формы. Запаўненне палёў формаў не падтрымліваецца. -open_with_different_viewer=Адкрыць у іншым праглядніку -open_with_different_viewer.accessKey=А diff --git a/l10n/bg/chrome.properties b/l10n/bg/chrome.properties deleted file mode 100644 index dcbdc1130..000000000 --- a/l10n/bg/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Този документ PDF може да не бъде правилно показан. -unsupported_feature_forms=Този документ PDF съдържа формуляри. Попълването на полета на формуляри не се поддържа. -open_with_different_viewer=Отваряне с друга програма -open_with_different_viewer.accessKey=О diff --git a/l10n/bn/chrome.properties b/l10n/bn/chrome.properties deleted file mode 100644 index 6705c608f..000000000 --- a/l10n/bn/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=পিডিএফ নথিটি সঠিক ভাবে প্রদর্শিত নাও হতে পারে। -unsupported_feature_forms=এই পিডিএফ ফাইলটিতে ফর্ম রয়েছে। ফর্মের পূরন করা সমর্থিত নয়। -open_with_different_viewer=ভিন্ন প্রদর্শকে খুলুন -open_with_different_viewer.accessKey=o diff --git a/l10n/bo/chrome.properties b/l10n/bo/chrome.properties deleted file mode 100644 index d0ce41e8c..000000000 --- a/l10n/bo/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=PDF་ཡིག་ཆ་འདི་ནོར་མེད་ཀྱིས་སྟོན་མི་ཐུབ་སྲིད། -unsupported_feature_forms=PDF་འདིའི་ནང་དུ་རེའུ་མིག་ཞིག་འདུག རེའུ་མིག་དེ་སྐོང་ཐུབ་པའི་རྒྱབ་སྐྱོར་མེད། -open_with_different_viewer=ལྟ་བྱེད་གཞན་ཞིག་གིས་ཁ་ཕྱེ། -open_with_different_viewer.accessKey=o diff --git a/l10n/br/chrome.properties b/l10n/br/chrome.properties deleted file mode 100644 index bdc0f7e7a..000000000 --- a/l10n/br/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/brx/chrome.properties b/l10n/brx/chrome.properties deleted file mode 100644 index b93a32cf3..000000000 --- a/l10n/brx/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=बे PDF फोरमान बिलाइखौ गेबेङै दिन्थिफुंनाय नङा जानो हागौ। -unsupported_feature_forms=बे PDF फोरमान बिलाइआव फर्म दं। फर्म फोथार आबुं खालामनाया हेफाजाब होजाया। -open_with_different_viewer=गुबुन नायग्राजों खेव -open_with_different_viewer.accessKey=o diff --git a/l10n/bs/chrome.properties b/l10n/bs/chrome.properties deleted file mode 100644 index c98436cf5..000000000 --- a/l10n/bs/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Ovaj PDF dokument možda neće biti prikazan ispravno. -unsupported_feature_forms=Ovaj PDF dokument sadrži obrasce. Ispunjavanje obrazaca još nije podržano. -open_with_different_viewer=Otvori sa drugim preglednikom -open_with_different_viewer.accessKey=o diff --git a/l10n/ca/chrome.properties b/l10n/ca/chrome.properties deleted file mode 100644 index 11b7c6692..000000000 --- a/l10n/ca/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Aquest document PDF potser no es mostra correctament. -unsupported_feature_forms=Aquest document PDF conté formularis. L'emplenament de camps de formularis no està implementat. -open_with_different_viewer=Obre amb un altre visor -open_with_different_viewer.accessKey=o diff --git a/l10n/cak/chrome.properties b/l10n/cak/chrome.properties deleted file mode 100644 index 2404cc3fb..000000000 --- a/l10n/cak/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Rik'in jub'a' man ütz ta xtik'ut pe re PDF re'. -unsupported_feature_forms=Re wuj pa PDF k'o nojwuj chupam. Ri kitz'aqatil taq rupam nojwuj man samajin ta. -open_with_different_viewer=Tijaq rik'in chik chi tz'etöy -open_with_different_viewer.accessKey=o diff --git a/l10n/cs/chrome.properties b/l10n/cs/chrome.properties deleted file mode 100644 index 1d7ad0c56..000000000 --- a/l10n/cs/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Tento dokument PDF se nemusí zobrazovat správně. -unsupported_feature_forms=Tento dokument PDF obsahuje formuláře. Vyplňování formulářových polí není podporováno. -open_with_different_viewer=Zobrazit pomocí jiného prohlížeče -open_with_different_viewer.accessKey=o diff --git a/l10n/cy/chrome.properties b/l10n/cy/chrome.properties deleted file mode 100644 index 7a68b5a62..000000000 --- a/l10n/cy/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Efallai na fydd y ddogfen PDF yn cael ei dangos yn gywir. -unsupported_feature_forms=Mae'r ffurflen PDF hon yn cynnwys ffurflenni. Nid yw llanw ffurflenni'n cael ei gynnal. -open_with_different_viewer=Agor gyda Darllenydd Gwahanol -open_with_different_viewer.accessKey=o diff --git a/l10n/da/chrome.properties b/l10n/da/chrome.properties deleted file mode 100644 index a62097dd5..000000000 --- a/l10n/da/chrome.properties +++ /dev/null @@ -1,9 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -# Chrome notification bar messages and buttons -unsupported_feature=Dette PDF-dokument vises måske ikke korrekt. -unsupported_feature_forms=Dette PDF-dokument indeholder formularer. Udfyldning af formularfelter understøttes ikke. -open_with_different_viewer=Åbn med et andet program -open_with_different_viewer.accessKey=Å diff --git a/l10n/de/chrome.properties b/l10n/de/chrome.properties deleted file mode 100644 index 080636e46..000000000 --- a/l10n/de/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/dsb/chrome.properties b/l10n/dsb/chrome.properties deleted file mode 100644 index eb9c0bd9d..000000000 --- a/l10n/dsb/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Toś ten PDF-dokument snaź njezwobraznja se korektnje. -unsupported_feature_forms=Toś ten PDF-dokument wopśimujo formulary. Wupolnjenje formularowych pólow se njepódpěra. -open_with_different_viewer=Z drugim wobglědowańskim programom wócyniś -open_with_different_viewer.accessKey=Z diff --git a/l10n/el/chrome.properties b/l10n/el/chrome.properties deleted file mode 100644 index cfc24d083..000000000 --- a/l10n/el/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Αυτό το έγγραφο PDF μπορεί να μην εμφανιστεί σωστά -unsupported_feature_forms=Αυτό το έγγραφο PDF περιέχει πεδία φόρμας. Το συμπλήρωμα πεδίων φόρμας δεν υποστηρίζεται. -open_with_different_viewer=Άνοιγμα με διαφορετική εφαρμογή -open_with_different_viewer.accessKey=δ diff --git a/l10n/en-CA/chrome.properties b/l10n/en-CA/chrome.properties deleted file mode 100644 index a934a814e..000000000 --- a/l10n/en-CA/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/en-GB/chrome.properties b/l10n/en-GB/chrome.properties deleted file mode 100644 index a934a814e..000000000 --- a/l10n/en-GB/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/en-US/chrome.properties b/l10n/en-US/chrome.properties deleted file mode 100644 index e42ac790c..000000000 --- a/l10n/en-US/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/eo/chrome.properties b/l10n/eo/chrome.properties deleted file mode 100644 index 241f50003..000000000 --- a/l10n/eo/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/es-AR/chrome.properties b/l10n/es-AR/chrome.properties deleted file mode 100644 index 527cdbb2d..000000000 --- a/l10n/es-AR/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/es-CL/chrome.properties b/l10n/es-CL/chrome.properties deleted file mode 100644 index e5d661c8c..000000000 --- a/l10n/es-CL/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -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 diff --git a/l10n/es-ES/chrome.properties b/l10n/es-ES/chrome.properties deleted file mode 100644 index 0335deb37..000000000 --- a/l10n/es-ES/chrome.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -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 diff --git a/l10n/es-MX/chrome.properties b/l10n/es-MX/chrome.properties deleted file mode 100644 index 687648b9f..000000000 --- a/l10n/es-MX/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/et/chrome.properties b/l10n/et/chrome.properties deleted file mode 100644 index e1bd82a5a..000000000 --- a/l10n/et/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/eu/chrome.properties b/l10n/eu/chrome.properties deleted file mode 100644 index 87644e571..000000000 --- a/l10n/eu/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=PDF dokumentu hau agian ezin da ondo bistaratu. -unsupported_feature_forms=PDF dokumentu honek inprimakiak ditu. Inprimakiko eremuak betetzea ez da onartzen. -open_with_different_viewer=Ireki beste ikustaile batekin -open_with_different_viewer.accessKey=I diff --git a/l10n/fa/chrome.properties b/l10n/fa/chrome.properties deleted file mode 100644 index f350160a3..000000000 --- a/l10n/fa/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=این پروندهٔ PDF ممکن است به‌طور صحیح نمایش داده نشود. -unsupported_feature_forms=این سند PDF حاوی فرم است. پر کردن فیلد های فرم اینجا پشتیبانی نمیشود. -open_with_different_viewer=با یک نمایشگر دیگر نشان بده -open_with_different_viewer.accessKey=o diff --git a/l10n/ff/chrome.properties b/l10n/ff/chrome.properties deleted file mode 100644 index 47ec9a135..000000000 --- a/l10n/ff/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Ndee fiilannde PDF ena waawi waasa jaytineede no moƴƴiri. -unsupported_feature_forms=Ndee fiilannde PDF ena waɗi porme. Kebbingol porme wonaa ko tammbitaa. -open_with_different_viewer=Udditir Yiytindorde Woɗnde -open_with_different_viewer.accessKey=u diff --git a/l10n/fi/chrome.properties b/l10n/fi/chrome.properties deleted file mode 100644 index 495f5eafd..000000000 --- a/l10n/fi/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Tätä PDF-dokumenttia ei välttämättä osata näyttää oikein. -unsupported_feature_forms=Tässä PDF-dokumentissa on lomakekenttiä. Lomakekenttien täyttämistä ei tueta. -open_with_different_viewer=Avaa toisella ohjelmalla -open_with_different_viewer.accessKey=A diff --git a/l10n/fr/chrome.properties b/l10n/fr/chrome.properties deleted file mode 100644 index a0c52fbc4..000000000 --- a/l10n/fr/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Il est possible que ce document PDF ne s’affiche pas correctement. -unsupported_feature_forms=Ce document PDF contient des formulaires. Le remplissage de champs de formulaires n’est pas pris en charge. -open_with_different_viewer=Ouvrir avec un autre lecteur PDF -open_with_different_viewer.accessKey=o diff --git a/l10n/fy-NL/chrome.properties b/l10n/fy-NL/chrome.properties deleted file mode 100644 index 1f80a3a44..000000000 --- a/l10n/fy-NL/chrome.properties +++ /dev/null @@ -1,9 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -# 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 diff --git a/l10n/ga-IE/chrome.properties b/l10n/ga-IE/chrome.properties deleted file mode 100644 index 3d7901b80..000000000 --- a/l10n/ga-IE/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Seans nach dtaispeánfar an cháipéis PDF seo mar is ceart. -unsupported_feature_forms=Tá foirmeacha sa cháipéis PDF seo. Ní féidir foirmeacha a líonadh leis an leagan seo. -open_with_different_viewer=Oscail le hAmharcán Eile -open_with_different_viewer.accessKey=o diff --git a/l10n/gd/chrome.properties b/l10n/gd/chrome.properties deleted file mode 100644 index 6750332dc..000000000 --- a/l10n/gd/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/gl/chrome.properties b/l10n/gl/chrome.properties deleted file mode 100644 index abcb2f847..000000000 --- a/l10n/gl/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Pode que este documento PDF non se visualice correctamente. -unsupported_feature_forms=Este documento PDF contén formularios. Non se admite o completado de campos do formulario. -open_with_different_viewer=Abrir cun visor diferente -open_with_different_viewer.accessKey=o diff --git a/l10n/gn/chrome.properties b/l10n/gn/chrome.properties deleted file mode 100644 index 7f42d3474..000000000 --- a/l10n/gn/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Ko kuatia PDF ikatu ndojehechaukapái. -unsupported_feature_forms=Ko kuatia PDF oguereko myanyhẽha. Pe myanyhẽha rehegua noimbái gueteri. -open_with_different_viewer=Eike peteĩ hechaha ambuévape -open_with_different_viewer.accessKey=o diff --git a/l10n/gu-IN/chrome.properties b/l10n/gu-IN/chrome.properties deleted file mode 100644 index 1c43ccb1c..000000000 --- a/l10n/gu-IN/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=આ PDF દસ્તાવેજને યોગ્ય રીતે દર્શાવી શકાતો નથી. -unsupported_feature_forms=આ PDF દસ્તાવેજ ફોર્મને સમાવે છે. ફોર્મ ક્ષેત્રની ભરવાનું આધારભૂત નથી. -open_with_different_viewer=વિવિધ દર્શક સાથે ખોલો -open_with_different_viewer.accessKey=o diff --git a/l10n/he/chrome.properties b/l10n/he/chrome.properties deleted file mode 100644 index 0cc8a055b..000000000 --- a/l10n/he/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=יתכן שמסמך PDF זה לא יוצג כראוי. -unsupported_feature_forms=מסמך PDF זה מכיל טפסים. מילוי שדות בטפסים אינו נתמך. -open_with_different_viewer=פתיחה בתכנית צפייה שונה -open_with_different_viewer.accessKey=פ diff --git a/l10n/hi-IN/chrome.properties b/l10n/hi-IN/chrome.properties deleted file mode 100644 index 47d7ca2d4..000000000 --- a/l10n/hi-IN/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=PDF दस्तावेज़ सही दिख नहीं सकता है. -unsupported_feature_forms=इस PDF दस्तावेज़ में फ़ॉर्म हैं. फ़ॉर्म क्षेत्र भरने की सुविधा समर्थित नहीं है. -open_with_different_viewer=\u0020भिन्न प्रदर्शक के साथ खोलें -open_with_different_viewer.accessKey=o diff --git a/l10n/hr/chrome.properties b/l10n/hr/chrome.properties deleted file mode 100644 index eb548c6f3..000000000 --- a/l10n/hr/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Ovaj PDF možda neće biti ispravno prikazan -unsupported_feature_forms=Ovaj PDF dokument sadrži obrasce. Ispunjavanje obrazaca još nije podržano. -open_with_different_viewer=Otvori s drugim preglednikom -open_with_different_viewer.accessKey=O diff --git a/l10n/hsb/chrome.properties b/l10n/hsb/chrome.properties deleted file mode 100644 index 9f15a7af0..000000000 --- a/l10n/hsb/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Tutón PDF-dokument snano so korektnje njezwobraznja. -unsupported_feature_forms=Tutón PDF-dokument wobsahuje formulary. Wupjelnjenje formularowych polow so njepodpěruje. -open_with_different_viewer=Z druhim wobhladowanskim programom wočinić -open_with_different_viewer.accessKey=Z diff --git a/l10n/hu/chrome.properties b/l10n/hu/chrome.properties deleted file mode 100644 index 3789bca02..000000000 --- a/l10n/hu/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/hy-AM/chrome.properties b/l10n/hy-AM/chrome.properties deleted file mode 100644 index 3dff8b033..000000000 --- a/l10n/hy-AM/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Այս PDF փաստաթուղթը հնարավոր է նորմալ չցուցադրվի։ -unsupported_feature_forms=Այս PDF-ը պարունակում է ձևեր: Այդ ձևերի լրացումը չի աջակցվում: -open_with_different_viewer=Բացել այլ դիտարկիչով -open_with_different_viewer.accessKey=o diff --git a/l10n/ia/chrome.properties b/l10n/ia/chrome.properties deleted file mode 100644 index 1ffd914c4..000000000 --- a/l10n/ia/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Iste documento PDF non potera ser monstrate correctemente. -unsupported_feature_forms=Iste documento PDF contine formularios. Completar campos de formulario non es supportate. -open_with_different_viewer=Aperir con un visualisator differente -open_with_different_viewer.accessKey=o diff --git a/l10n/id/chrome.properties b/l10n/id/chrome.properties deleted file mode 100644 index dc7a4493c..000000000 --- a/l10n/id/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/is/chrome.properties b/l10n/is/chrome.properties deleted file mode 100644 index 221ef0a5c..000000000 --- a/l10n/is/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# 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 diff --git a/l10n/it/chrome.properties b/l10n/it/chrome.properties deleted file mode 100644 index 562e9949f..000000000 --- a/l10n/it/chrome.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -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 diff --git a/l10n/ja/chrome.properties b/l10n/ja/chrome.properties deleted file mode 100644 index 3c59f58ec..000000000 --- a/l10n/ja/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=この PDF 文書はサポートされていないため正しく表示できない可能性があります。 -unsupported_feature_forms=この PDF ドキュメントは、フォームが含まれています。フォームフィールドへの入力はサポートされていません。 -open_with_different_viewer=ほかのビューアーで開く -open_with_different_viewer.accessKey=o diff --git a/l10n/ka/chrome.properties b/l10n/ka/chrome.properties deleted file mode 100644 index ff876ae9c..000000000 --- a/l10n/ka/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=ეს PDF-დოკუმენტი შეიძლება არ გამოჩნდეს მართებულად. -unsupported_feature_forms=ეს PDF-დოკუმენტი შეიცავს ველებს. მათი შევსების შესაძლებლობა კი არაა მხარდაჭერილი. -open_with_different_viewer=სხვა პროგრამაში გახსნა -open_with_different_viewer.accessKey=გ diff --git a/l10n/kab/chrome.properties b/l10n/kab/chrome.properties deleted file mode 100644 index 8b278e607..000000000 --- a/l10n/kab/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Yezmer d akken isemli-agi PDF ur d-ittuskan ara kken iwata. -unsupported_feature_forms=Isemli-yagi PDF igber tiferkiyin. Taččart n wurtan n tferkiyin ur tettusefrak ara. -open_with_different_viewer=Ldi s umeɣṛi-nniḍen PDF -open_with_different_viewer.accessKey=o diff --git a/l10n/kk/chrome.properties b/l10n/kk/chrome.properties deleted file mode 100644 index 448e6bbbe..000000000 --- a/l10n/kk/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Бұл PDF құжаты дұрыс көрсетілмеуі мүмкін. -unsupported_feature_forms=Бұл PDF құжатында формалар бар. Формалар өрістерін толтыруға қолдау жоқ. -open_with_different_viewer=Басқа қолданбада ашу -open_with_different_viewer.accessKey=о diff --git a/l10n/km/chrome.properties b/l10n/km/chrome.properties deleted file mode 100644 index 9c86c52db..000000000 --- a/l10n/km/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=ឯកសារ PDF នេះ​អាច​មិន​ត្រូវ​បាន​បង្ហាញ​ត្រឹមត្រូវ ។ -unsupported_feature_forms=ឯកសារ PDF នេះ​មាន​ទម្រង់។ បំពេញ​វា​ទម្រង់​មិន​ត្រូវ​បាន​គាំទ្រ។ -open_with_different_viewer=បើក​ជាមួយ​កម្មវិធី​មើល​ផ្សេងគ្នា -open_with_different_viewer.accessKey=o diff --git a/l10n/kn/chrome.properties b/l10n/kn/chrome.properties deleted file mode 100644 index 09a5666d2..000000000 --- a/l10n/kn/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=ಈ PDF ದಸ್ತಾವೇಜು ಸರಿಯಾಗಿ ಕಾಣಿಸದೆ ಇರಬಹುದು. -unsupported_feature_forms=ಈ PDF ದಸ್ತಾವೇಜು ಫಾರ್ಮ್‌ಗಳನ್ನು ಹೊಂದಿದೆ. ಫಾರ್ಮ್ ಸ್ಥಳಗಳನ್ನು ತುಂಬಿಸುವುದಕ್ಕೆ ಬೆಂಬಲವಿಲ್ಲ. -open_with_different_viewer=ಬೇರೊಂದು ವೀಕ್ಷಕದಲ್ಲಿ ತೆರೆ -open_with_different_viewer.accessKey=o diff --git a/l10n/ko/chrome.properties b/l10n/ko/chrome.properties deleted file mode 100644 index 86a68d0de..000000000 --- a/l10n/ko/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=이 PDF 문서는 다르게 보일 수 있습니다. -unsupported_feature_forms=이 PDF 문서에는 폼 입력이 들어 있습니다. 폼 필드를 채우는 것은 지원되지 않습니다. -open_with_different_viewer=다른 프로그램으로 보기 -open_with_different_viewer.accessKey=o diff --git a/l10n/lij/chrome.properties b/l10n/lij/chrome.properties deleted file mode 100644 index 9a22088f4..000000000 --- a/l10n/lij/chrome.properties +++ /dev/null @@ -1,8 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -unsupported_feature = Sto documento PDF o porieiva no ese mostrou ben. -open_with_different_viewer = Arvi co-in atro letô -open_with_different_viewer.accessKey = o -unsupported_feature_forms = Sto documento PDF o contegne di mòdoli. A conpilaçion de mòdoli a no l'é soportâ. \ No newline at end of file diff --git a/l10n/lt/chrome.properties b/l10n/lt/chrome.properties deleted file mode 100644 index 2a8a2336a..000000000 --- a/l10n/lt/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Gali būti, jog šis PDF dokumentas rodomas neteisingai. -unsupported_feature_forms=Šiame PDF dokumente yra formų. Formų laukų pildymas kol kas nepalaikomas. -open_with_different_viewer=Atverti kita žiūrykle -open_with_different_viewer.accessKey=k diff --git a/l10n/ltg/chrome.properties b/l10n/ltg/chrome.properties deleted file mode 100644 index e409c5ccf..000000000 --- a/l10n/ltg/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Īspiejams, ka itys PDF dokuments natīk attāluots korekti. -unsupported_feature_forms=Itys PDF dokuments satur formys. Formu lauku aizpiļde natīk nūdrūsynuota. -open_with_different_viewer=Attaiseit ar cytu programu -open_with_different_viewer.accessKey=o diff --git a/l10n/lv/chrome.properties b/l10n/lv/chrome.properties deleted file mode 100644 index fddd7aca4..000000000 --- a/l10n/lv/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Iespējams, ka šis PDF dokuments netiek attēlots korekti. -unsupported_feature_forms=Šis PDF dokuments satur formas. Formu lauku aizpilde netiek nodrošināta. -open_with_different_viewer=Atvērt ar citu programmu -open_with_different_viewer.accessKey=o diff --git a/l10n/mk/chrome.properties b/l10n/mk/chrome.properties deleted file mode 100644 index 6c882ffe5..000000000 --- a/l10n/mk/chrome.properties +++ /dev/null @@ -1,9 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -# Chrome notification bar messages and buttons -unsupported_feature=Овој PDF документ може да се прикаже неисправно. -open_with_different_viewer=Отвори со друг прегледувач - -open_with_different_viewer.accessKey=o diff --git a/l10n/mr/chrome.properties b/l10n/mr/chrome.properties deleted file mode 100644 index 8286cb9a5..000000000 --- a/l10n/mr/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=हे PDF दस्तऐवज कदाचित योग्यरित्या दाखवणे शक्य नाही. -unsupported_feature_forms=ह्या PDF दस्तऐवजामध्ये फॉर्म्स समाविष्टीत आहे. फॉर्म क्षेत्र भरणे समर्थीत नाही. -open_with_different_viewer=वेगळ्या प्रदर्शकासह उघडा -open_with_different_viewer.accessKey=o diff --git a/l10n/ms/chrome.properties b/l10n/ms/chrome.properties deleted file mode 100644 index 3d6e7f2ce..000000000 --- a/l10n/ms/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Dokument PDF ini mungkin tidak dipaparkan dengan baik. -unsupported_feature_forms=Dokumen PDF ini mengandungi borang. Pengisian medan borang tidak disokong. -open_with_different_viewer=Buka Dengan Pemapar Lain -open_with_different_viewer.accessKey=a diff --git a/l10n/my/chrome.properties b/l10n/my/chrome.properties deleted file mode 100644 index 9fb0766ce..000000000 --- a/l10n/my/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=ယခု PDF ဖိုင်အား ကောင်းစွာ ပြသနိုင်မည်မဟုတ် ။ -unsupported_feature_forms=ဤ PDF ဖိုင်တွင် Form များပါဝင်ပါသှ် ။ Form တွေဖြည့်ခြင်းအား ထောက်ပံ့မထားသေးပါ -open_with_different_viewer=တခြားမြင်ကွင်း နဲ့ဖွင့်ပါ -open_with_different_viewer.accessKey=o diff --git a/l10n/nb-NO/chrome.properties b/l10n/nb-NO/chrome.properties deleted file mode 100644 index 37f9dc34c..000000000 --- a/l10n/nb-NO/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Dette PDF-dokumentet vises kanskje ikke riktig. -unsupported_feature_forms=Dette PDF-dokumentet inneholder skjemaer. Utfylling av skjemaer støttes ikke. -open_with_different_viewer=Åpne med et annet visningsprogram -open_with_different_viewer.accessKey=n diff --git a/l10n/ne-NP/chrome.properties b/l10n/ne-NP/chrome.properties deleted file mode 100644 index 48f48b001..000000000 --- a/l10n/ne-NP/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=PDF डकुमेन्ट सहि तरिकाले प्रदर्शीत नहुन सक्छ। -unsupported_feature_forms=यो पिडिएफ फाइलमा फारम छ । यो फारम भर्न समर्थित छैन । -open_with_different_viewer=फरक प्रदर्शकद्वारा खोल्नुहोस् -open_with_different_viewer.accessKey=o diff --git a/l10n/nl/chrome.properties b/l10n/nl/chrome.properties deleted file mode 100644 index fe4370b22..000000000 --- a/l10n/nl/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Dit PDF-document wordt mogelijk niet juist weergegeven. -unsupported_feature_forms=Dit PDF-document bevat formulieren. Het invullen van formuliervelden wordt niet ondersteund. -open_with_different_viewer=Openen met andere PDF-lezer -open_with_different_viewer.accessKey=O diff --git a/l10n/nn-NO/chrome.properties b/l10n/nn-NO/chrome.properties deleted file mode 100644 index e10104351..000000000 --- a/l10n/nn-NO/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Dette PDF-dokumentet vert kanskje ikkje vist rett. -unsupported_feature_forms=Dette PDF-dokumentet inneheld skjema. Utfylling av skjema er ikkje støtta. -open_with_different_viewer=Opne med eit anna visingsprogram -open_with_different_viewer.accessKey=n diff --git a/l10n/oc/chrome.properties b/l10n/oc/chrome.properties deleted file mode 100644 index 6781a4301..000000000 --- a/l10n/oc/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Es possible qu'aqueste document PDF s'afiche pas corrèctament. -unsupported_feature_forms=Aqueste document PDF conten de formularis. L'emplenatge de camps de formularis es pas pres en carga. -open_with_different_viewer=Dobrir amb un autre lector PDF -open_with_different_viewer.accessKey=o diff --git a/l10n/pa-IN/chrome.properties b/l10n/pa-IN/chrome.properties deleted file mode 100644 index 50b12dfc5..000000000 --- a/l10n/pa-IN/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=ਇਹ PDF ਡੌਕੂਮੈਂਟ ਨੂੰ ਸ਼ਾਇਦ ਠੀਕ ਤਰ੍ਹਾਂ ਨਾ ਵੇਖਾਇਆ ਜਾ ਸਕੇ। -unsupported_feature_forms=ਇਹ PDF ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਫਾਰਮ ਹਨ। ਫਾਰਮ ਖੇਤਰਾਂ ਨੂੰ ਭਰਨਾ ਸਹਾਇਕ ਨਹੀਂ ਹੈ। -open_with_different_viewer=ਵੱਖਰੇ ਦਰਸ਼ਕ ਨਾਲ ਖੋਲ੍ਹੋ -open_with_different_viewer.accessKey=o diff --git a/l10n/pl/chrome.properties b/l10n/pl/chrome.properties deleted file mode 100644 index 83fed181f..000000000 --- a/l10n/pl/chrome.properties +++ /dev/null @@ -1,9 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -# Chrome notification bar messages and buttons -unsupported_feature=Ten dokument PDF może nie wyświetlać się poprawnie. -unsupported_feature_forms=Ten dokument PDF zawiera formularze. Uzupełnianie pól formularzy nie jest obsługiwane. -open_with_different_viewer=Otwórz w innym programie -open_with_different_viewer.accessKey=O diff --git a/l10n/pt-BR/chrome.properties b/l10n/pt-BR/chrome.properties deleted file mode 100644 index c399b659d..000000000 --- a/l10n/pt-BR/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Este documento PDF pode não ser exibido corretamente. -unsupported_feature_forms=Este documento PDF contém formulários. O preenchimento de campos de formulário não é suportado. -open_with_different_viewer=Abrir com um visualizador diferente -open_with_different_viewer.accessKey=o diff --git a/l10n/pt-PT/chrome.properties b/l10n/pt-PT/chrome.properties deleted file mode 100644 index 62d9313ff..000000000 --- a/l10n/pt-PT/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Este documento PDF poderá não ser mostrado corretamente. -unsupported_feature_forms=Este documento PDF contém formulários. O preenchimento dos campos não é suportado. -open_with_different_viewer=Abrir com outro visualizador -open_with_different_viewer.accessKey=o diff --git a/l10n/rm/chrome.properties b/l10n/rm/chrome.properties deleted file mode 100644 index 684f391f8..000000000 --- a/l10n/rm/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Quest document PDF na vegn eventualmain betg visualisà correctamain. -unsupported_feature_forms=Quest document da PDF cuntegna formulars. La funcziun dad emplenir champs da formulars na vegn dentant betg sustegnida. -open_with_different_viewer=Avrir cun in auter program -open_with_different_viewer.accessKey=o diff --git a/l10n/ro/chrome.properties b/l10n/ro/chrome.properties deleted file mode 100644 index 037f2e06d..000000000 --- a/l10n/ro/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Se poate ca acest document PDF să nu fie afișat corect. -unsupported_feature_forms=Acest document PDF conține formulare. Completarea câmpurilor formularului nu este suportată. -open_with_different_viewer=Deschide cu vizualizator diferit -open_with_different_viewer.accessKey=o diff --git a/l10n/ru/chrome.properties b/l10n/ru/chrome.properties deleted file mode 100644 index fc5f22ac9..000000000 --- a/l10n/ru/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Этот документ PDF может отображаться некорректно. -unsupported_feature_forms=Этот документ PDF содержит формы. Заполнение полей форм не поддерживается. -open_with_different_viewer=Открыть в другой программе просмотра -open_with_different_viewer.accessKey=ы diff --git a/l10n/si/chrome.properties b/l10n/si/chrome.properties deleted file mode 100644 index 513ed926a..000000000 --- a/l10n/si/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=මෙම PDF ලේඛනය නිසි ලෙස දර්ශනය නොවිය හැක. -unsupported_feature_forms=මෙම PDF ලේඛනය සතුව පෝරම පවතී. පෝරම ක්ශේත්‍ර පිරවීම සඳහා සහය නොදක්වයි. -open_with_different_viewer=වෙනස් දසුනක් සමඟ විවෘත කරන්න -open_with_different_viewer.accessKey=o diff --git a/l10n/sk/chrome.properties b/l10n/sk/chrome.properties deleted file mode 100644 index 44fdd6ed8..000000000 --- a/l10n/sk/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Tento dokument PDF sa nemusí zobrazovať správne. -unsupported_feature_forms=Tento dokument PDF obsahuje formuláre. Vypĺňanie polí formulárov nie je podporované. -open_with_different_viewer=Otvoriť pomocou externého programu -open_with_different_viewer.accessKey=O diff --git a/l10n/sl/chrome.properties b/l10n/sl/chrome.properties deleted file mode 100644 index 3b0822e03..000000000 --- a/l10n/sl/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Ta dokument PDF morda ni pravilno prikazan. -unsupported_feature_forms=Ta dokument PDF vsebuje obrazce. Izpolnjevanje obrazcev ni podprto. -open_with_different_viewer=Odpri z drugim prikazovalnikom -open_with_different_viewer.accessKey=o diff --git a/l10n/son/chrome.properties b/l10n/son/chrome.properties deleted file mode 100644 index 70ba3912b..000000000 --- a/l10n/son/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=A ga hin ka tee PDF takaddaa woo ši cebandi ka boori. -unsupported_feature_forms=PDFtakaddaa woo goo nda takariyaŋ. Takari faarey toonandiyan ši koy ne. -open_with_different_viewer=Feeri nda guna jinay tana -open_with_different_viewer.accessKey=o diff --git a/l10n/sq/chrome.properties b/l10n/sq/chrome.properties deleted file mode 100644 index 50c9ca725..000000000 --- a/l10n/sq/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Ky dokument PDF mund të mos jetë shfaqur si duhet. -unsupported_feature_forms=Ky dokument PDF përmban formularë. Plotësimi i fushave të formularëve nuk mbulohet. -open_with_different_viewer=Hapeni me një Parës Tjetër -open_with_different_viewer.accessKey=H diff --git a/l10n/sr/chrome.properties b/l10n/sr/chrome.properties deleted file mode 100644 index 107fdd54c..000000000 --- a/l10n/sr/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Овај PDF докуменат можда није приказан исправно. -unsupported_feature_forms=Овај PDF докуменат садржи форме. Попуњавање поља форме није подржано. -open_with_different_viewer=Отвори са другим приказивачем -open_with_different_viewer.accessKey=О diff --git a/l10n/sv-SE/chrome.properties b/l10n/sv-SE/chrome.properties deleted file mode 100644 index aac1087cb..000000000 --- a/l10n/sv-SE/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Det här PDF-dokumentet kanske inte visas på rätt sätt. -unsupported_feature_forms=Det här PDF-dokumentet innehåller formulär. Ifyllnad av formulärfält stöds inte. -open_with_different_viewer=Öppna med ett annat visningsprogram -open_with_different_viewer.accessKey=Ö diff --git a/l10n/ta/chrome.properties b/l10n/ta/chrome.properties deleted file mode 100644 index 8b7216768..000000000 --- a/l10n/ta/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=PDF ஆவணம் சரியாக காண்பிக்கப்படாது போகக்கூடும். -unsupported_feature_forms=இந்த பிடிஎஃப் உரையாவணம் படிவங்களை வைத்துள்ளது. படிவங்களில் உள்ள புலங்களை நிரப்ப ஆதரிக்கபடவில்லை. -open_with_different_viewer=வேறு காட்சி நிரல் கொண்டு திறக்கவும் -open_with_different_viewer.accessKey=o diff --git a/l10n/te/chrome.properties b/l10n/te/chrome.properties deleted file mode 100644 index c347a7943..000000000 --- a/l10n/te/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=ఈ PDF పత్రము సరిగా ప్రదర్శించ పడకపోవచ్చు. -unsupported_feature_forms=ఈ PDF పత్రము ఫారములను కలిగివుంది. ఫారము క్షేత్రములు నింపుటకు తోడ్పాటులేదు. -open_with_different_viewer=వేరే దర్శనితో తెరువు -open_with_different_viewer.accessKey=o diff --git a/l10n/th/chrome.properties b/l10n/th/chrome.properties deleted file mode 100644 index 3f0f5e140..000000000 --- a/l10n/th/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=เอกสาร PDF นี้อาจแสดงผลไม่ถูกต้อง -unsupported_feature_forms=เอกสาร PDF นี้มีแบบฟอร์ม การกรอกฟอร์มยังไม่รองรับ -open_with_different_viewer=เปิดด้วยตัวดูอื่น -open_with_different_viewer.accessKey=ป diff --git a/l10n/tl/chrome.properties b/l10n/tl/chrome.properties deleted file mode 100644 index 39288f657..000000000 --- a/l10n/tl/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Baka hindi maipakita ng maayos ang PDF document na ito. -unsupported_feature_forms=This PDF document contains forms. The filling of form fields is not supported. -open_with_different_viewer=Buksan Gamit ang Ibang Viewer -open_with_different_viewer.accessKey=o diff --git a/l10n/tr/chrome.properties b/l10n/tr/chrome.properties deleted file mode 100644 index d4cceca04..000000000 --- a/l10n/tr/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Bu PDF belgesi düzgün görüntülenmeyebilir. -unsupported_feature_forms=Bu PDF belgesi form içeriyor. Form alanlarının doldurulması desteklenmemektedir. -open_with_different_viewer=Farklı bir görüntüleyici ile aç -open_with_different_viewer.accessKey=F diff --git a/l10n/trs/chrome.properties b/l10n/trs/chrome.properties deleted file mode 100644 index 56ff20c3d..000000000 --- a/l10n/trs/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Gahuin ni si guruhui' hue'e PDF na. -unsupported_feature_forms='Na' sa nachro' riña PDF na. Nitaj si hua hue'ej guendo'. -open_with_different_viewer=Na'nïn' 'ngà ga'ì visor -open_with_different_viewer.accessKey=o diff --git a/l10n/uk/chrome.properties b/l10n/uk/chrome.properties deleted file mode 100644 index 52b33f865..000000000 --- a/l10n/uk/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Цей PDF-документ може відображатись неправильно. -unsupported_feature_forms=Цей PDF-документ містить форми. Заповнювання полей в формах не підтримується. -open_with_different_viewer=Відкрити іншим браузером -open_with_different_viewer.accessKey=і diff --git a/l10n/ur/chrome.properties b/l10n/ur/chrome.properties deleted file mode 100644 index 584210beb..000000000 --- a/l10n/ur/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=یہ PDF دستاویز شائد ٹھیک طرح نہین دکھایا جا سکے۔ -unsupported_feature_forms=اس PDF دستاویز میں فارم شامل ہیں۔ فارم قطعوں کی بھرائی معاونت شدہ نہیں ہے۔ -open_with_different_viewer=کسی اور ناظر سے کھولیں -open_with_different_viewer.accessKey=ک diff --git a/l10n/uz/chrome.properties b/l10n/uz/chrome.properties deleted file mode 100644 index fa71c5c00..000000000 --- a/l10n/uz/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Bu PDF hujjat toʻgʻri koʻrsatilmasligi mumkin. -unsupported_feature_forms=PDF faylalrda to‘ldirish uchun shakllar bor. Hozirda shakllarni to‘ldirish xususiyati qo‘shilmagan.\u0020 -open_with_different_viewer=Boshqa koʻruvchi dastur bilan ochish -open_with_different_viewer.accessKey=o diff --git a/l10n/vi/chrome.properties b/l10n/vi/chrome.properties deleted file mode 100644 index 560617b8b..000000000 --- a/l10n/vi/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Tài liệu PDF này có thể không được hiển thị đúng. -unsupported_feature_forms=Tài liệu PDF này có chứa form. Tuy nhiên, chúng tôi chưa hỗ trợ điền form. -open_with_different_viewer=Mở bằng chương trình khác -open_with_different_viewer.accessKey=o diff --git a/l10n/wo/chrome.properties b/l10n/wo/chrome.properties deleted file mode 100644 index 66ab16a4d..000000000 --- a/l10n/wo/chrome.properties +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Jukki PDF bii mënul feeñ bu baax. -open_with_different_viewer=Ubbi ak wone bu wuute -open_with_different_viewer.accessKey=o diff --git a/l10n/xh/chrome.properties b/l10n/xh/chrome.properties deleted file mode 100644 index 79acd3708..000000000 --- a/l10n/xh/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=Olu xwebhu lwe-PDF lusenokungaboniswa kakuhle. -unsupported_feature_forms=Olu xwebhu lwe-PDF luneefomu. Ukuzalisa izikhewu zefomu akuxhaswa. -open_with_different_viewer=Vula ngesibonisi esahlukileyo -open_with_different_viewer.accessKey=o diff --git a/l10n/zh-CN/chrome.properties b/l10n/zh-CN/chrome.properties deleted file mode 100644 index 4ca721194..000000000 --- a/l10n/zh-CN/chrome.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=这份 PDF 文档可能并未正确显示。 -unsupported_feature_forms=此 PDF 文档包含表单。不支持表单字段的填写。 -open_with_different_viewer=用其他查看器打开 -open_with_different_viewer.accessKey=o diff --git a/l10n/zh-TW/chrome.properties b/l10n/zh-TW/chrome.properties deleted file mode 100644 index 2b585fd21..000000000 --- a/l10n/zh-TW/chrome.properties +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Chrome notification bar messages and buttons -unsupported_feature=此 PDF 文件可能並未正確顯示。 -unsupported_feature_forms=此 PDF 文件包含表單,不支援填寫表單欄位。 -open_with_different_viewer=使用其他檢視器開啟 -open_with_different_viewer.accessKey=o -