]> git.parisson.com Git - pdf.js.git/commitdiff
open_file and text_annotation_type localized strings
authorYury Delendik <ydelendik@mozilla.com>
Wed, 2 May 2012 14:56:10 +0000 (09:56 -0500)
committerYury Delendik <ydelendik@mozilla.com>
Wed, 2 May 2012 14:56:10 +0000 (09:56 -0500)
l10n/ar/viewer.properties
l10n/en-US/viewer.properties
l10n/ru/viewer.properties
l10n/xx/viewer.properties
web/viewer.js

index 1bacbb6367f4dd95f3a1d39333ebe2e2abd272a0..abe0bdabd5933b3fa0431fbca8a58ce55e36fc6e 100644 (file)
@@ -27,4 +27,5 @@ rendering_error=حدث خطأ في حين جعل صفحة.‬
 page_label=الصفحة:‬
 page_of=من {{pageCount}}‬
 no_outline=لا مخطط متاح‬
-
+open_file.title=Open File
+text_annotation_type=[{{type}} Annotation]
index 6c5dfded83f89094c8f072ff99b0a62e1207c3e2..b0d26d2def871f27f4f476a254ffdb826fb121f4 100644 (file)
@@ -27,4 +27,5 @@ rendering_error=An error occurred while rendering the page.
 page_label=Page:
 page_of=of {{pageCount}}
 no_outline=No Outline Available
-
+open_file.title=Open File
+text_annotation_type=[{{type}} Annotation]
index 44c8e5d1ab76f2cd90f952edf5a4fe2cfc3f573d..9342605c04309ea55892f82ff8f313541040c7c0 100644 (file)
@@ -27,4 +27,5 @@ rendering_error=Произошла ошибка во время создания
 page_label=Страница:
 page_of=из {{pageCount}}
 no_outline=Содержание не доступно
-
+open_file.title=Открыть Файл
+text_annotation_type=[Аннотация {{type}}]
index 5a217fff334eec00bd5bb2109c48e036ca26b294..d28a97ed80f089af4fc5be07f69c9e316228f449 100644 (file)
@@ -27,3 +27,5 @@ rendering_error=<<<_ãп εггOг O¢¢ȗггεРẂНiḻε гεпÐεгiпģ
 page_label=Þãģε:
 page_of=<<<_O£ {{pageCount}}_>>>
 no_outline=<<<_пO Oȗţḻiпε ãṿãiḻãьḻε_>>>
+open_file.title=<<<_OÞεп £iḻε_>>>
+text_annotation_type=<<<_[{{type}} ãппOţãţiOп]_>>>
index e262a6b87856c2d922bc8ec0ec38a8983bc22798..ba3bc6a3548ff947a5b4f3900d73d016eba0f0ea 100644 (file)
@@ -837,7 +837,7 @@ var PageView = function pageView(container, pdfPage, id, scale,
       var rect = viewport.convertToViewportRectangle(item.rect);
       rect = PDFJS.Util.normalizeRect(rect);
       image.src = kImageDirectory + type.toLowerCase() + '.svg';
-      image.alt = '[' + type + ' Annotation]';
+      image.alt = mozL10n.get('text_annotation_type', {type: type});
       var content = document.createElement('div');
       content.setAttribute('hidden', true);
       var title = document.createElement('h1');