pdfjs_rails 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +37 -0
- data/Rakefile +1 -0
- data/lib/generators/pdfjs_rails/install_generator.rb +13 -0
- data/lib/pdfjs/build/pdf.js +7071 -0
- data/lib/pdfjs/build/pdf.worker.js +38687 -0
- data/lib/pdfjs/web/compatibility.js +471 -0
- data/lib/pdfjs/web/debugger.js +532 -0
- data/lib/pdfjs/web/images/annotation-check.svg +10 -0
- data/lib/pdfjs/web/images/annotation-comment.svg +15 -0
- data/lib/pdfjs/web/images/annotation-help.svg +25 -0
- data/lib/pdfjs/web/images/annotation-insert.svg +9 -0
- data/lib/pdfjs/web/images/annotation-key.svg +10 -0
- data/lib/pdfjs/web/images/annotation-newparagraph.svg +10 -0
- data/lib/pdfjs/web/images/annotation-note.svg +41 -0
- data/lib/pdfjs/web/images/annotation-paragraph.svg +15 -0
- data/lib/pdfjs/web/images/findbarButton-next-rtl.png +0 -0
- data/lib/pdfjs/web/images/findbarButton-next.png +0 -0
- data/lib/pdfjs/web/images/findbarButton-previous-rtl.png +0 -0
- data/lib/pdfjs/web/images/findbarButton-previous.png +0 -0
- data/lib/pdfjs/web/images/loading-icon.gif +0 -0
- data/lib/pdfjs/web/images/loading-small.png +0 -0
- data/lib/pdfjs/web/images/secondaryToolbarButton-firstPage.png +0 -0
- data/lib/pdfjs/web/images/secondaryToolbarButton-lastPage.png +0 -0
- data/lib/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png +0 -0
- data/lib/pdfjs/web/images/secondaryToolbarButton-rotateCw.png +0 -0
- data/lib/pdfjs/web/images/shadow.png +0 -0
- data/lib/pdfjs/web/images/texture.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-bookmark.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-download.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-menuArrows.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-openFile.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-pageDown-rtl.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-pageDown.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-pageUp-rtl.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-pageUp.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-presentationMode.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-print.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-search.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-sidebarToggle.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-viewOutline.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-viewThumbnail.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-zoomIn.png +0 -0
- data/lib/pdfjs/web/images/toolbarButton-zoomOut.png +0 -0
- data/lib/pdfjs/web/l10n.js +922 -0
- data/lib/pdfjs/web/locale/ar/viewer.properties +112 -0
- data/lib/pdfjs/web/locale/ca/viewer.properties +131 -0
- data/lib/pdfjs/web/locale/cs/viewer.properties +58 -0
- data/lib/pdfjs/web/locale/da/viewer.properties +132 -0
- data/lib/pdfjs/web/locale/de/viewer.properties +128 -0
- data/lib/pdfjs/web/locale/el/viewer.properties +124 -0
- data/lib/pdfjs/web/locale/en-US/viewer.properties +134 -0
- data/lib/pdfjs/web/locale/es/viewer.properties +131 -0
- data/lib/pdfjs/web/locale/fi/viewer.properties +129 -0
- data/lib/pdfjs/web/locale/fr/viewer.properties +130 -0
- data/lib/pdfjs/web/locale/he/viewer.properties +59 -0
- data/lib/pdfjs/web/locale/it/viewer.properties +44 -0
- data/lib/pdfjs/web/locale/ja/viewer.properties +132 -0
- data/lib/pdfjs/web/locale/ko/viewer.properties +131 -0
- data/lib/pdfjs/web/locale/locale.properties +78 -0
- data/lib/pdfjs/web/locale/lt/viewer.properties +129 -0
- data/lib/pdfjs/web/locale/nl/viewer.properties +134 -0
- data/lib/pdfjs/web/locale/pl/viewer.properties +132 -0
- data/lib/pdfjs/web/locale/pt-BR/viewer.properties +44 -0
- data/lib/pdfjs/web/locale/ro/viewer.properties +55 -0
- data/lib/pdfjs/web/locale/ru/viewer.properties +62 -0
- data/lib/pdfjs/web/locale/sr/viewer.properties +55 -0
- data/lib/pdfjs/web/locale/sv/viewer.properties +134 -0
- data/lib/pdfjs/web/locale/tr/viewer.properties +129 -0
- data/lib/pdfjs/web/locale/vi/viewer.properties +131 -0
- data/lib/pdfjs/web/locale/zh-CN/viewer.properties +129 -0
- data/lib/pdfjs/web/locale/zh-TW/viewer.properties +132 -0
- data/lib/pdfjs/web/viewer.css +1544 -0
- data/lib/pdfjs/web/viewer.html +250 -0
- data/lib/pdfjs/web/viewer.js +4477 -0
- data/lib/pdfjs_rails.rb +6 -0
- data/lib/pdfjs_rails/railtie.rb +9 -0
- data/lib/pdfjs_rails/version.rb +3 -0
- data/lib/pdfjs_rails/view_helpers.rb +225 -0
- data/pdfjs_rails.gemspec +24 -0
- data/vender/assets/images/annotation-check.svg +10 -0
- data/vender/assets/images/annotation-comment.svg +15 -0
- data/vender/assets/images/annotation-help.svg +25 -0
- data/vender/assets/images/annotation-insert.svg +9 -0
- data/vender/assets/images/annotation-key.svg +10 -0
- data/vender/assets/images/annotation-newparagraph.svg +10 -0
- data/vender/assets/images/annotation-note.svg +41 -0
- data/vender/assets/images/annotation-paragraph.svg +15 -0
- data/vender/assets/images/findbarButton-next-rtl.png +0 -0
- data/vender/assets/images/findbarButton-next.png +0 -0
- data/vender/assets/images/findbarButton-previous-rtl.png +0 -0
- data/vender/assets/images/findbarButton-previous.png +0 -0
- data/vender/assets/images/loading-icon.gif +0 -0
- data/vender/assets/images/loading-small.png +0 -0
- data/vender/assets/images/shadow.png +0 -0
- data/vender/assets/images/texture.png +0 -0
- data/vender/assets/images/toolbarButton-bookmark.png +0 -0
- data/vender/assets/images/toolbarButton-download.png +0 -0
- data/vender/assets/images/toolbarButton-menuArrows.png +0 -0
- data/vender/assets/images/toolbarButton-openFile.png +0 -0
- data/vender/assets/images/toolbarButton-pageDown-rtl.png +0 -0
- data/vender/assets/images/toolbarButton-pageDown.png +0 -0
- data/vender/assets/images/toolbarButton-pageUp-rtl.png +0 -0
- data/vender/assets/images/toolbarButton-pageUp.png +0 -0
- data/vender/assets/images/toolbarButton-presentationMode.png +0 -0
- data/vender/assets/images/toolbarButton-print.png +0 -0
- data/vender/assets/images/toolbarButton-search.png +0 -0
- data/vender/assets/images/toolbarButton-sidebarToggle.png +0 -0
- data/vender/assets/images/toolbarButton-viewOutline.png +0 -0
- data/vender/assets/images/toolbarButton-viewThumbnail.png +0 -0
- data/vender/assets/images/toolbarButton-zoomIn.png +0 -0
- data/vender/assets/images/toolbarButton-zoomOut.png +0 -0
- data/vender/assets/javascripts/application.js +22 -0
- data/vender/assets/javascripts/compatibility.js +471 -0
- data/vender/assets/javascripts/debugger.js +532 -0
- data/vender/assets/javascripts/l10n.js +922 -0
- data/vender/assets/javascripts/pdf.js +7063 -0
- data/vender/assets/javascripts/pdf.worker.js +38679 -0
- data/vender/assets/javascripts/viewer.js +4317 -0
- data/vender/assets/stylesheets/viewer.css +1382 -0
- metadata +209 -0
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
# Copyright 2012 Mozilla Foundation
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# Main toolbar buttons (tooltips and alt text for images)
|
|
16
|
+
previous.title=Page précédente
|
|
17
|
+
previous_label=Précédent
|
|
18
|
+
next.title=Page suivante
|
|
19
|
+
next_label=Suivant
|
|
20
|
+
|
|
21
|
+
# LOCALIZATION NOTE (page_label, page_of):
|
|
22
|
+
# These strings are concatenated to form the "Page: X of Y" string.
|
|
23
|
+
# Do not translate "{{pageCount}}", it will be substituted with a number
|
|
24
|
+
# representing the total number of pages.
|
|
25
|
+
page_label=Page :
|
|
26
|
+
page_of=sur {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=Zoom arrière
|
|
29
|
+
zoom_out_label=Zoom arrière
|
|
30
|
+
zoom_in.title=Zoom avant
|
|
31
|
+
zoom_in_label=Zoom avant
|
|
32
|
+
zoom.title=Zoom
|
|
33
|
+
presentation_mode.title=Basculer en mode présentation
|
|
34
|
+
presentation_mode_label=Mode présentation
|
|
35
|
+
open_file.title=Ouvrir un fichier
|
|
36
|
+
open_file_label=Ouvrir
|
|
37
|
+
print.title=Imprimer
|
|
38
|
+
print_label=Imprimer
|
|
39
|
+
download.title=Télécharger
|
|
40
|
+
download_label=Télécharger
|
|
41
|
+
bookmark.title=Affichage courant (copier ou ouvrir dans une nouvelle fenêtre)
|
|
42
|
+
bookmark_label=Affichage actuel
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
first_page.title=Aller à la première page
|
|
46
|
+
first_page.label=Aller à la première page
|
|
47
|
+
first_page_label=Aller à la première page
|
|
48
|
+
last_page.title=Aller à la dernière page
|
|
49
|
+
last_page.label=Aller à la dernière page
|
|
50
|
+
last_page_label=Aller à la dernière page
|
|
51
|
+
page_rotate_cw.title=Rotation horaire
|
|
52
|
+
page_rotate_cw.label=Rotation horaire
|
|
53
|
+
page_rotate_cw_label=Rotation horaire
|
|
54
|
+
page_rotate_ccw.title=Rotation anti-horaire
|
|
55
|
+
page_rotate_ccw.label=Rotation anti-horaire
|
|
56
|
+
page_rotate_ccw_label=Rotation anti-horaire
|
|
57
|
+
|
|
58
|
+
# Tooltips and alt text for side panel toolbar buttons
|
|
59
|
+
# (the _label strings are alt text for the buttons, the .title strings are
|
|
60
|
+
# tooltips)
|
|
61
|
+
toggle_sidebar.title=Afficher/Masquer le panneau latéral
|
|
62
|
+
toggle_sidebar_label=Afficher/Masquer le panneau latéral
|
|
63
|
+
outline.title=Afficher les signets
|
|
64
|
+
outline_label=Signets du document
|
|
65
|
+
thumbs.title=Afficher les vignettes
|
|
66
|
+
thumbs_label=Vignettes
|
|
67
|
+
findbar.title=Rechercher dans le document
|
|
68
|
+
findbar_label=Rechercher
|
|
69
|
+
|
|
70
|
+
# Thumbnails panel item (tooltip and alt text for images)
|
|
71
|
+
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
|
72
|
+
# number.
|
|
73
|
+
thumb_page_title=Page {{page}}
|
|
74
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
75
|
+
# number.
|
|
76
|
+
thumb_page_canvas=Vignette de la page {{page}}
|
|
77
|
+
|
|
78
|
+
# Find panel button title and messages
|
|
79
|
+
find_label=Rechercher :
|
|
80
|
+
find_previous.title=Trouver l'occurrence précédente de la phrase
|
|
81
|
+
find_previous_label=Précédent
|
|
82
|
+
find_next.title=Trouver la prochaine occurrence de la phrase
|
|
83
|
+
find_next_label=Suivant
|
|
84
|
+
find_highlight=Tout surligner
|
|
85
|
+
find_match_case_label=Respecter la casse
|
|
86
|
+
find_reached_top=Haut de la page atteint, poursuite depuis la fin
|
|
87
|
+
find_reached_bottom=Bas de la page atteint, poursuite au début
|
|
88
|
+
find_not_found=Phrase introuvable
|
|
89
|
+
|
|
90
|
+
# Error panel labels
|
|
91
|
+
error_more_info=Plus d'informations
|
|
92
|
+
error_less_info=Moins d'informations
|
|
93
|
+
error_close=Fermer
|
|
94
|
+
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
|
95
|
+
# replaced by the PDF.JS version and build ID.
|
|
96
|
+
error_version_info=PDF.js v{{version}} (identifiant de compilation : {{build}})
|
|
97
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
98
|
+
# english string describing the error.
|
|
99
|
+
error_message=Message : {{message}}
|
|
100
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
101
|
+
# trace.
|
|
102
|
+
error_stack=Pile : {{stack}}
|
|
103
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
104
|
+
error_file=Fichier : {{file}}
|
|
105
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
106
|
+
error_line=Ligne : {{line}}
|
|
107
|
+
rendering_error=Une erreur s'est produite lors de l'affichage de la page.
|
|
108
|
+
|
|
109
|
+
# Predefined zoom values
|
|
110
|
+
page_scale_width=Pleine largeur
|
|
111
|
+
page_scale_fit=Page entière
|
|
112
|
+
page_scale_auto=Zoom automatique
|
|
113
|
+
page_scale_actual=Taille réelle
|
|
114
|
+
|
|
115
|
+
# Loading indicator messages
|
|
116
|
+
loading_error_indicator=Erreur
|
|
117
|
+
loading_error=Une erreur s'est produite lors du chargement du fichier PDF.
|
|
118
|
+
invalid_file_error=Fichier PDF invalide ou corrompu.
|
|
119
|
+
missing_file_error=Fichier PDF manquant.
|
|
120
|
+
|
|
121
|
+
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip.
|
|
122
|
+
# "{{type}}" will be replaced with an annotation type from a list defined in
|
|
123
|
+
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
|
124
|
+
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
|
125
|
+
text_annotation_type.alt=[Annotation {{type}}]
|
|
126
|
+
request_password=Le PDF est protégé par un mot de passe :
|
|
127
|
+
|
|
128
|
+
printing_not_supported=Attention : l'impression n'est pas totalement prise en charge par ce navigateur.
|
|
129
|
+
printing_not_ready=Attention : le PDF n'est pas entièrement chargé pour pouvoir l'imprimer.
|
|
130
|
+
web_fonts_disabled=Les polices web sont désactivées : impossible d'utiliser les polices intégrées au PDF.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Copyright 2012 Mozilla Foundation
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
bookmark.title=דף נוכחי (העתקה או פתיחה בחלון חדש)
|
|
16
|
+
previous.title=דף קודם
|
|
17
|
+
next.title=דף הבא
|
|
18
|
+
print.title=הדפסה
|
|
19
|
+
download.title=הורדה
|
|
20
|
+
zoom_out.title=התרחקות
|
|
21
|
+
zoom_in.title=התקרבות
|
|
22
|
+
error_more_info=יותר מידע
|
|
23
|
+
error_less_info=פחות מידע
|
|
24
|
+
error_close=סגירה
|
|
25
|
+
error_build=בניית PDF.JS: {{build}}
|
|
26
|
+
error_message=הודעה: {{message}}
|
|
27
|
+
error_stack=מחסנית: {{stack}}
|
|
28
|
+
error_file=קובץ: {{file}}
|
|
29
|
+
error_line=שורה: {{line}}
|
|
30
|
+
page_scale_width=רוחב דף
|
|
31
|
+
page_scale_fit=גודל דף
|
|
32
|
+
page_scale_auto=התקרבות אוטומטית
|
|
33
|
+
page_scale_actual=גודל אמיתי
|
|
34
|
+
toggle_slider.title=מתג החלקה
|
|
35
|
+
thumbs.title=הצגת תמונות ממוזערות
|
|
36
|
+
outline.title=הצגת מתאר מסמך
|
|
37
|
+
loading=בטעינה... {{percent}}%
|
|
38
|
+
loading_error_indicator=שגיאה
|
|
39
|
+
loading_error=אירעה שגיאה בעת טעינת קובץ PDF.
|
|
40
|
+
rendering_error=אירעה שגיאה בעת עיבוד הדף.
|
|
41
|
+
page_label=דף:
|
|
42
|
+
page_of=מתוך {{pageCount}}
|
|
43
|
+
open_file.title=פתיחת קובץ
|
|
44
|
+
text_annotation_type.alt=[{{type}} Annotation]
|
|
45
|
+
toggle_slider_label=מתג החלקה
|
|
46
|
+
thumbs_label=תמונות ממוזערות
|
|
47
|
+
outline_label=מתאר מסמך
|
|
48
|
+
bookmark_label=תצוגה נוכחית
|
|
49
|
+
previous_label=קודם
|
|
50
|
+
next_label=הבא
|
|
51
|
+
print_label=הדפסה
|
|
52
|
+
download_label=הורדה
|
|
53
|
+
zoom_out_label=התרחקות
|
|
54
|
+
zoom_in_label=התקרבות
|
|
55
|
+
zoom.title=מרחק מתצוגה
|
|
56
|
+
thumb_page_title=דף {{page}}
|
|
57
|
+
thumb_page_canvas=תמונה ממוזערת של דף {{page}}
|
|
58
|
+
request_password=קובץ PDF מוגן בססמה:
|
|
59
|
+
open_file_label=פתיחה
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Copyright 2012 Mozilla Foundation
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
bookmark.title=Visualizzazione corrente (copia o apri in una nuova finestra)
|
|
16
|
+
previous.title=Precedente
|
|
17
|
+
next.title=Successiva
|
|
18
|
+
print.title=Stampa
|
|
19
|
+
download.title=Download
|
|
20
|
+
zoom_out.title=Riduci Zoom
|
|
21
|
+
zoom_in.title=Aumenta Zoom
|
|
22
|
+
error_more_info=Più Informazioni
|
|
23
|
+
error_less_info=Meno Informazioni
|
|
24
|
+
error_close=Chiudi
|
|
25
|
+
error_build=PDF.JS Build: {{build}}
|
|
26
|
+
error_message=Messaggio: {{message}}
|
|
27
|
+
error_stack=Stack: {{stack}}
|
|
28
|
+
error_file=File: {{file}}
|
|
29
|
+
error_line=Linea: {{line}}
|
|
30
|
+
page_scale_width=Adatta alla Larghezza
|
|
31
|
+
page_scale_fit=Adatta alla Pagina
|
|
32
|
+
page_scale_auto=Zoom Automatico
|
|
33
|
+
page_scale_actual=Dimensione Attuale
|
|
34
|
+
toggle_slider.title=Visualizza Riquadro Laterale
|
|
35
|
+
thumbs.title=Mostra Miniature
|
|
36
|
+
outline.title=Mostra Indice Documento
|
|
37
|
+
loading=Caricamento... {{percent}}%
|
|
38
|
+
loading_error_indicator=Errore
|
|
39
|
+
loading_error=È accaduto un errore durante il caricamento del PDF.
|
|
40
|
+
rendering_error=È accaduto un errore durante il rendering della pagina.
|
|
41
|
+
page_label=Pagina:
|
|
42
|
+
page_of=di {{pageCount}}
|
|
43
|
+
open_file.title=Apri File
|
|
44
|
+
text_annotation_type.alt=[{{type}} Annotazione]
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
# Copyright 2012 Mozilla Foundation
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# Main toolbar buttons (tooltips and alt text for images)
|
|
16
|
+
previous.title=前のページ
|
|
17
|
+
previous_label=前へ
|
|
18
|
+
next.title=次のページ
|
|
19
|
+
next_label=次へ
|
|
20
|
+
|
|
21
|
+
# LOCALIZATION NOTE (page_label, page_of):
|
|
22
|
+
# These strings are concatenated to form the "Page: X of Y" string.
|
|
23
|
+
# Do not translate "{{pageCount}}", it will be substituted with a number
|
|
24
|
+
# representing the total number of pages.
|
|
25
|
+
page_label=ページ:
|
|
26
|
+
page_of=of {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=縮小
|
|
29
|
+
zoom_out_label=縮小
|
|
30
|
+
zoom_in.title=拡大
|
|
31
|
+
zoom_in_label=拡大
|
|
32
|
+
zoom.title=ズーム
|
|
33
|
+
presentation_mode.title=プレゼンテーションモードに切り替えます
|
|
34
|
+
presentation_mode_label=プレゼンテーションモード
|
|
35
|
+
open_file.title=ファイルを開く
|
|
36
|
+
open_file_label=開く
|
|
37
|
+
print.title=印刷
|
|
38
|
+
print_label=印刷
|
|
39
|
+
download.title=ダウンロード
|
|
40
|
+
download_label=ダウンロード
|
|
41
|
+
bookmark.title=現在のビューをブックマーク
|
|
42
|
+
bookmark_label=現在のビューをブックマーク
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
first_page.title=最初のページへ移動
|
|
46
|
+
first_page.label=最初のページへ移動
|
|
47
|
+
first_page_label=最初のページへ移動
|
|
48
|
+
last_page.title=最後のページへ移動
|
|
49
|
+
last_page.label=最後のページへ移動
|
|
50
|
+
last_page_label=最後のページへ移動
|
|
51
|
+
page_rotate_cw.title=右回転
|
|
52
|
+
page_rotate_cw.label=右回転
|
|
53
|
+
page_rotate_cw_label=右回転
|
|
54
|
+
page_rotate_ccw.title=左回転
|
|
55
|
+
page_rotate_ccw.label=左回転
|
|
56
|
+
page_rotate_ccw_label=左回転
|
|
57
|
+
|
|
58
|
+
# Tooltips and alt text for side panel toolbar buttons
|
|
59
|
+
# (the _label strings are alt text for the buttons, the .title strings are
|
|
60
|
+
# tooltips)
|
|
61
|
+
toggle_sidebar.title=サイドバーの切り替え
|
|
62
|
+
toggle_sidebar_label=サイドバーの切り替え
|
|
63
|
+
outline.title=文書の目次
|
|
64
|
+
outline_label=文書の目次
|
|
65
|
+
thumbs.title=縮小版
|
|
66
|
+
thumbs_label=縮小版
|
|
67
|
+
findbar.title=検索
|
|
68
|
+
findbar_label=検索
|
|
69
|
+
|
|
70
|
+
# Thumbnails panel item (tooltip and alt text for images)
|
|
71
|
+
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
|
72
|
+
# number.
|
|
73
|
+
thumb_page_title={{page}} ページ
|
|
74
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
75
|
+
# number.
|
|
76
|
+
thumb_page_canvas=ページの縮小版 {{page}}
|
|
77
|
+
|
|
78
|
+
# Find panel button title and messages
|
|
79
|
+
find_label=検索:
|
|
80
|
+
find_previous.title=指定文字列に一致する 1 つ前の部分を検索します
|
|
81
|
+
find_previous_label=前へ
|
|
82
|
+
find_next.title=指定文字列に一致する次の部分を検索します
|
|
83
|
+
find_next_label=次へ
|
|
84
|
+
find_highlight=すべて強調表示
|
|
85
|
+
find_match_case_label=大文字/小文字を区別
|
|
86
|
+
find_reached_top=文書先頭まで検索したので末尾に戻って検索しました。
|
|
87
|
+
find_reached_bottom=文書末尾まで検索したので先頭に戻って検索しました。
|
|
88
|
+
find_not_found=見つかりませんでした。
|
|
89
|
+
|
|
90
|
+
# Error panel labels
|
|
91
|
+
error_more_info=詳細情報
|
|
92
|
+
error_less_info=詳細情報の非表示
|
|
93
|
+
error_close=閉じる
|
|
94
|
+
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
|
95
|
+
# replaced by the PDF.JS version and build ID.
|
|
96
|
+
error_version_info=PDF.js v{{version}} (ビルド: {{build}})
|
|
97
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
98
|
+
# english string describing the error.
|
|
99
|
+
error_message=メッセージ: {{message}}
|
|
100
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
101
|
+
# trace.
|
|
102
|
+
error_stack=スタック: {{stack}}
|
|
103
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
104
|
+
error_file=ファイル: {{file}}
|
|
105
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
106
|
+
error_line=ライン: {{line}}
|
|
107
|
+
rendering_error=ページのレンダリング中にエラーが発生しました
|
|
108
|
+
|
|
109
|
+
# Predefined zoom values
|
|
110
|
+
page_scale_width=幅に合わせる
|
|
111
|
+
page_scale_fit=ページのサイズに合わせる
|
|
112
|
+
page_scale_auto=自動ズーム
|
|
113
|
+
page_scale_actual=実際のサイズ
|
|
114
|
+
|
|
115
|
+
# Loading indicator messages
|
|
116
|
+
loading_error_indicator=エラー
|
|
117
|
+
loading_error=PDF の読み込み中にエラーが発生しました
|
|
118
|
+
invalid_file_error=無効または破損した PDF ファイル
|
|
119
|
+
missing_file_error=PDF ファイルが見つかりません。
|
|
120
|
+
|
|
121
|
+
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
|
122
|
+
# "{{type}}" will be replaced with an annotation type from a list defined in
|
|
123
|
+
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
|
124
|
+
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
|
125
|
+
text_annotation_type.alt=[{{type}} 注釈]
|
|
126
|
+
request_password=PDF はパスワードによって保護されています
|
|
127
|
+
invalid_password=無効なパスワードです
|
|
128
|
+
|
|
129
|
+
printing_not_supported=警告:このブラウザでは印刷が完全にサポートされていません
|
|
130
|
+
printing_not_ready=警告:PDF を印刷するための読み込みが終了していません
|
|
131
|
+
web_fonts_disabled=Web フォントが無効になっています: 埋め込まれた PDF のフォントを使用することができません
|
|
132
|
+
document_colors_disabled=PDF文書は、Web ページが指定した配色を使用することができません: \'Web ページが指定した配色\' はブラウザで無効になっています。
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# Copyright 2012 Mozilla Foundation
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# Main toolbar buttons (tooltips and alt text for images)
|
|
16
|
+
previous.title=이전 쪽
|
|
17
|
+
previous_label=이전
|
|
18
|
+
next.title=다음 쪽
|
|
19
|
+
next_label=다음
|
|
20
|
+
|
|
21
|
+
# LOCALIZATION NOTE (page_label, page_of):
|
|
22
|
+
# These strings are concatenated to form the "Page: X of Y" string.
|
|
23
|
+
# Do not translate "{{pageCount}}", it will be substituted with a number
|
|
24
|
+
# representing the total number of pages.
|
|
25
|
+
page_label=쪽:
|
|
26
|
+
page_of=/ {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=축소
|
|
29
|
+
zoom_out_label=축소
|
|
30
|
+
zoom_in.title=확대
|
|
31
|
+
zoom_in_label=확대
|
|
32
|
+
zoom.title=확대 비율
|
|
33
|
+
presentation_mode.title=프레젠테이션 모드로 전환
|
|
34
|
+
presentation_mode_label=프레젠테이션 모드
|
|
35
|
+
open_file.title=파일 열기
|
|
36
|
+
open_file_label=열기
|
|
37
|
+
print.title=출력
|
|
38
|
+
print_label=출력
|
|
39
|
+
download.title=내려받기
|
|
40
|
+
download_label=내려받기
|
|
41
|
+
bookmark.title=현 화면 (복사하거나 새 창에서 열기)
|
|
42
|
+
bookmark_label=현 화면
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
first_page.title=첫 쪽으로
|
|
46
|
+
first_page.label=첫 쪽으로
|
|
47
|
+
first_page_label=첫 쪽으로
|
|
48
|
+
last_page.title=끝 쪽으로
|
|
49
|
+
last_page.label=끝 쪽으로
|
|
50
|
+
last_page_label=끝 쪽으로
|
|
51
|
+
page_rotate_cw.title=시계방향 회전
|
|
52
|
+
page_rotate_cw.label=시계방향 회전
|
|
53
|
+
page_rotate_cw_label=시계방향 회전
|
|
54
|
+
page_rotate_ccw.title=반시계방향 회전
|
|
55
|
+
page_rotate_ccw.label=반시계방향 회전
|
|
56
|
+
page_rotate_ccw_label=반시계방향 회전
|
|
57
|
+
|
|
58
|
+
# Tooltips and alt text for side panel toolbar buttons
|
|
59
|
+
# (the _label strings are alt text for the buttons, the .title strings are
|
|
60
|
+
# tooltips)
|
|
61
|
+
toggle_sidebar.title=사이드바 보이기/숨기기
|
|
62
|
+
toggle_sidebar_label=사이드바 보이기/숨기기
|
|
63
|
+
outline.title=문서 개요 보이기
|
|
64
|
+
outline_label=문서 개요
|
|
65
|
+
thumbs.title=쪽 작게 보기
|
|
66
|
+
thumbs_label=쪽 작게 보기
|
|
67
|
+
findbar.title=문서 내에서 찾기
|
|
68
|
+
findbar_label=찾기
|
|
69
|
+
|
|
70
|
+
# Thumbnails panel item (tooltip and alt text for images)
|
|
71
|
+
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
|
72
|
+
# number.
|
|
73
|
+
thumb_page_title={{page}} 쪽
|
|
74
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
75
|
+
# number.
|
|
76
|
+
thumb_page_canvas={{page}}쪽의 썸네일
|
|
77
|
+
|
|
78
|
+
# Find panel button title and messages
|
|
79
|
+
find_label=찾기:
|
|
80
|
+
find_previous.title=이전 구절 찾기
|
|
81
|
+
find_previous_label=이전
|
|
82
|
+
find_next.title=다음 구절 찾기
|
|
83
|
+
find_next_label=다음
|
|
84
|
+
find_highlight=모두 강조
|
|
85
|
+
find_match_case_label=대/소문자까지 정확히
|
|
86
|
+
find_reached_top=문서의 처음, 끝에서부터 계속
|
|
87
|
+
find_reached_bottom=문서의 끝, 처음에서부터 계속
|
|
88
|
+
find_not_found=구절을 찾을 수 없습니다
|
|
89
|
+
|
|
90
|
+
# Error panel labels
|
|
91
|
+
error_more_info=더 보기
|
|
92
|
+
error_less_info=간략히
|
|
93
|
+
error_close=닫기
|
|
94
|
+
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
|
95
|
+
# replaced by the PDF.JS version and build ID.
|
|
96
|
+
error_version_info=PDF.js v{{version}} (build: {{build}})
|
|
97
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
98
|
+
# english string describing the error.
|
|
99
|
+
error_message=메시지: {{message}}
|
|
100
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
101
|
+
# trace.
|
|
102
|
+
error_stack=스택: {{stack}}
|
|
103
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
104
|
+
error_file=파일: {{file}}
|
|
105
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
106
|
+
error_line=행: {{line}}
|
|
107
|
+
rendering_error=쪽 렌더링 중 오류가 발생했습니다.
|
|
108
|
+
|
|
109
|
+
# Predefined zoom values
|
|
110
|
+
page_scale_width=너비 맞춤
|
|
111
|
+
page_scale_fit=쪽 맞춤
|
|
112
|
+
page_scale_auto=자동 맞춤
|
|
113
|
+
page_scale_actual=실제 크기
|
|
114
|
+
|
|
115
|
+
# Loading indicator messages
|
|
116
|
+
loading_error_indicator=오류
|
|
117
|
+
loading_error=PDF를 불러오던 중 오류가 발생했습니다.
|
|
118
|
+
invalid_file_error=PDF 파일이 아니거나 깨진 파일입니다.
|
|
119
|
+
missing_file_error=PDF 파일이 없습니다.
|
|
120
|
+
|
|
121
|
+
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip.
|
|
122
|
+
# "{{type}}" will be replaced with an annotation type from a list defined in
|
|
123
|
+
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
|
124
|
+
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
|
125
|
+
text_annotation_type=[{{type}} Annotation]
|
|
126
|
+
request_password=암호로 보호되는 PDF파일입니다:
|
|
127
|
+
|
|
128
|
+
printing_not_supported=경고: 이 브라우져는 출력을 완전히는 지원하지 않습니다.
|
|
129
|
+
printing_not_ready=경고: 이 PDF 파일은 완전히 적재되지 않았습니다.
|
|
130
|
+
web_fonts_disabled=웹 폰트 사용이 비활성되었습니다: 내장 PDF 폰트를 사용할 수 없습니다.
|
|
131
|
+
web_colors_disabled=웹 컬러가 비활성되었습니다.
|