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,124 @@
|
|
|
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
|
+
print.title=Εκτύπωση
|
|
34
|
+
print_label=Εκτύπωση
|
|
35
|
+
presentation_mode.title=Μετάβαση σε λειτουργία παρουσίασης
|
|
36
|
+
presentation_mode_label=Λειτουργία παρουσίασης
|
|
37
|
+
open_file.title=Άνοιγμα αρχείου
|
|
38
|
+
open_file_label=Άνοιγμα
|
|
39
|
+
download.title=Λήψη
|
|
40
|
+
download_label=Λήψη
|
|
41
|
+
bookmark.title=Τρέχουσα προβολή (αντίγραφο ή άνοιγμα σε νέο παράθυρο)
|
|
42
|
+
bookmark_label=Τρέχουσα προβολή
|
|
43
|
+
|
|
44
|
+
# Tooltips and alt text for side panel toolbar buttons
|
|
45
|
+
# (the _label strings are alt text for the buttons, the .title strings are
|
|
46
|
+
# tooltips)
|
|
47
|
+
toggle_sidebar.title=Εναλλαγή προβολής πλευρικής στήλης
|
|
48
|
+
toggle_sidebar_label=Εναλλαγή προβολής πλευρικής στήλης
|
|
49
|
+
outline.title=Προβολή διάρθρωσης κειμένου
|
|
50
|
+
outline_label=Διάθρωση κειμένου
|
|
51
|
+
thumbs.title=Προβολή μικρογραφιών
|
|
52
|
+
thumbs_label=Μικρογραφίες
|
|
53
|
+
findbar.title=Εύρεση στο έγγραφο
|
|
54
|
+
findbar_label=Εύρεση
|
|
55
|
+
|
|
56
|
+
# Thumbnails panel item (tooltip and alt text for images)
|
|
57
|
+
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
|
58
|
+
# number.
|
|
59
|
+
thumb_page_title=Σελίδα {{page}}
|
|
60
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
61
|
+
# number.
|
|
62
|
+
thumb_page_canvas=Μικρογραφία της σελίδας {{page}}
|
|
63
|
+
|
|
64
|
+
# Context menu
|
|
65
|
+
first_page.label=Μετάβαση στην πρώτη σελίδα
|
|
66
|
+
last_page.label=Μετάβαση στην τελευταία σελίδα
|
|
67
|
+
page_rotate_cw.label=Δεξιόστροφη περιστροφή
|
|
68
|
+
page_rotate_ccw.label=Αριστερόστροφη περιστροφή
|
|
69
|
+
|
|
70
|
+
# Find panel button title and messages
|
|
71
|
+
find_label=Εύρεση:
|
|
72
|
+
find_previous.title=Εύρεση της προηγούμενης εμφάνισης της φράσης
|
|
73
|
+
find_previous_label=Προηγούμενο
|
|
74
|
+
find_next.title=Εύρεση της επόμενης εμφάνισης της φράσης
|
|
75
|
+
find_next_label=Επόμενο
|
|
76
|
+
find_highlight=Επισήμανση όλων
|
|
77
|
+
find_match_case_label=Ταίριασμα χαρακτήρα
|
|
78
|
+
find_reached_top=Έλευση στην αρχή του εγγράφου, συνέχεια από το τέλος
|
|
79
|
+
find_reached_bottom=Έλευση στο τέλος του εγγράφου, συνέχεια από την αρχή
|
|
80
|
+
find_not_found=Η φράση δεν βρέθηκε
|
|
81
|
+
|
|
82
|
+
# Error panel labels
|
|
83
|
+
error_more_info=Περισσότερες πληροφορίες
|
|
84
|
+
error_less_info=Λιγότερες πληροφορίες
|
|
85
|
+
error_close=Κλείσιμο
|
|
86
|
+
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
|
87
|
+
# replaced by the PDF.JS version and build ID.
|
|
88
|
+
error_version_info=PDF.js v{{version}} (build: {{build}})
|
|
89
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
90
|
+
# english string describing the error.
|
|
91
|
+
error_message=Μήνυμα: {{message}}
|
|
92
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
93
|
+
# trace.
|
|
94
|
+
error_stack=Stack: {{stack}}
|
|
95
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
96
|
+
error_file=Αρχείο: {{file}}
|
|
97
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
98
|
+
error_line=Γραμμή: {{line}}
|
|
99
|
+
rendering_error=Προέκυψε σφάλμα κατά την ανάλυση της σελίδας.
|
|
100
|
+
|
|
101
|
+
# Predefined zoom values
|
|
102
|
+
page_scale_width=Πλάτος σελίδας
|
|
103
|
+
page_scale_fit=Μέγεθος σελίδας
|
|
104
|
+
page_scale_auto=Αυτόματη μεγέθυνση
|
|
105
|
+
page_scale_actual=Πραγματικό μέγεθος
|
|
106
|
+
|
|
107
|
+
# Loading indicator messages
|
|
108
|
+
loading_error_indicator=Σφάλμα
|
|
109
|
+
loading_error=Προέκυψε σφάλμα κατά τη φόρτωση του PDF.
|
|
110
|
+
invalid_file_error=Μη έγκυρο ή κατεστραμμένο αρχείο PDF.
|
|
111
|
+
missing_file_error=Λείπει το αρχείο PDF.
|
|
112
|
+
|
|
113
|
+
# LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip.
|
|
114
|
+
# "{{type}}" will be replaced with an annotation type from a list defined in
|
|
115
|
+
# the PDF spec (32000-1:2008 Table 169 â Annotation types).
|
|
116
|
+
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
|
117
|
+
text_annotation_type=[{{type}} Σημείωση]
|
|
118
|
+
request_password=Το PDF προστατεύεται από κωδικό:
|
|
119
|
+
invalid_password=Μη έγκυρος κωδικός.
|
|
120
|
+
|
|
121
|
+
printing_not_supported=Προειδοποίηση: Η εκτύπωση δεν υποστηρίζεται πλήρως από αυτόν τον περιηγητή.
|
|
122
|
+
printing_not_ready=Προσοχή: Το PDF δεν είναι πλήρως φορτωμένο για εκτύπωση.
|
|
123
|
+
web_fonts_disabled=Οι γραμματοσειρές Web είναι απενεργοποιημένες: δεν είναι δυνατή η χρήση ενσωματωμένων γραμματοσειρών PDF.
|
|
124
|
+
document_colors_disabled=Στα έγγραφα PDF δεν επιτρέπεται να χρησιμοποιούν τα δικά τους χρώματα: Η ρύθμιση \'Επιτρέπεται στις σελίδες να επιλέξουν τα δικά τους χρώματα \' είναι απενεργοποιημένη στο πρόγραμμα περιήγησης.
|
|
@@ -0,0 +1,134 @@
|
|
|
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=Previous Page
|
|
17
|
+
previous_label=Previous
|
|
18
|
+
next.title=Next Page
|
|
19
|
+
next_label=Next
|
|
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=of {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=Zoom Out
|
|
29
|
+
zoom_out_label=Zoom Out
|
|
30
|
+
zoom_in.title=Zoom In
|
|
31
|
+
zoom_in_label=Zoom In
|
|
32
|
+
zoom.title=Zoom
|
|
33
|
+
presentation_mode.title=Switch to Presentation Mode
|
|
34
|
+
presentation_mode_label=Presentation Mode
|
|
35
|
+
open_file.title=Open File
|
|
36
|
+
open_file_label=Open File
|
|
37
|
+
print.title=Print
|
|
38
|
+
print_label=Print
|
|
39
|
+
download.title=Download
|
|
40
|
+
download_label=Download
|
|
41
|
+
bookmark.title=Current view (copy or open in new window)
|
|
42
|
+
bookmark_label=Current View
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
tools.title=Tools
|
|
46
|
+
tools_label=Tools
|
|
47
|
+
first_page.title=Go to First Page
|
|
48
|
+
first_page.label=Go to First Page
|
|
49
|
+
first_page_label=Go to First Page
|
|
50
|
+
last_page.title=Go to Last Page
|
|
51
|
+
last_page.label=Go to Last Page
|
|
52
|
+
last_page_label=Go to Last Page
|
|
53
|
+
page_rotate_cw.title=Rotate Clockwise
|
|
54
|
+
page_rotate_cw.label=Rotate Clockwise
|
|
55
|
+
page_rotate_cw_label=Rotate Clockwise
|
|
56
|
+
page_rotate_ccw.title=Rotate Counterclockwise
|
|
57
|
+
page_rotate_ccw.label=Rotate Counterclockwise
|
|
58
|
+
page_rotate_ccw_label=Rotate Counterclockwise
|
|
59
|
+
|
|
60
|
+
# Tooltips and alt text for side panel toolbar buttons
|
|
61
|
+
# (the _label strings are alt text for the buttons, the .title strings are
|
|
62
|
+
# tooltips)
|
|
63
|
+
toggle_sidebar.title=Toggle Sidebar
|
|
64
|
+
toggle_sidebar_label=Toggle Sidebar
|
|
65
|
+
outline.title=Show Document Outline
|
|
66
|
+
outline_label=Document Outline
|
|
67
|
+
thumbs.title=Show Thumbnails
|
|
68
|
+
thumbs_label=Thumbnails
|
|
69
|
+
findbar.title=Find in Document
|
|
70
|
+
findbar_label=Find
|
|
71
|
+
|
|
72
|
+
# Thumbnails panel item (tooltip and alt text for images)
|
|
73
|
+
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
|
74
|
+
# number.
|
|
75
|
+
thumb_page_title=Page {{page}}
|
|
76
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
77
|
+
# number.
|
|
78
|
+
thumb_page_canvas=Thumbnail of Page {{page}}
|
|
79
|
+
|
|
80
|
+
# Find panel button title and messages
|
|
81
|
+
find_label=Find:
|
|
82
|
+
find_previous.title=Find the previous occurrence of the phrase
|
|
83
|
+
find_previous_label=Previous
|
|
84
|
+
find_next.title=Find the next occurrence of the phrase
|
|
85
|
+
find_next_label=Next
|
|
86
|
+
find_highlight=Highlight all
|
|
87
|
+
find_match_case_label=Match case
|
|
88
|
+
find_reached_top=Reached top of document, continued from bottom
|
|
89
|
+
find_reached_bottom=Reached end of document, continued from top
|
|
90
|
+
find_not_found=Phrase not found
|
|
91
|
+
|
|
92
|
+
# Error panel labels
|
|
93
|
+
error_more_info=More Information
|
|
94
|
+
error_less_info=Less Information
|
|
95
|
+
error_close=Close
|
|
96
|
+
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
|
97
|
+
# replaced by the PDF.JS version and build ID.
|
|
98
|
+
error_version_info=PDF.js v{{version}} (build: {{build}})
|
|
99
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
100
|
+
# english string describing the error.
|
|
101
|
+
error_message=Message: {{message}}
|
|
102
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
103
|
+
# trace.
|
|
104
|
+
error_stack=Stack: {{stack}}
|
|
105
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
106
|
+
error_file=File: {{file}}
|
|
107
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
108
|
+
error_line=Line: {{line}}
|
|
109
|
+
rendering_error=An error occurred while rendering the page.
|
|
110
|
+
|
|
111
|
+
# Predefined zoom values
|
|
112
|
+
page_scale_width=Page Width
|
|
113
|
+
page_scale_fit=Page Fit
|
|
114
|
+
page_scale_auto=Automatic Zoom
|
|
115
|
+
page_scale_actual=Actual Size
|
|
116
|
+
|
|
117
|
+
# Loading indicator messages
|
|
118
|
+
loading_error_indicator=Error
|
|
119
|
+
loading_error=An error occurred while loading the PDF.
|
|
120
|
+
invalid_file_error=Invalid or corrupted PDF file.
|
|
121
|
+
missing_file_error=Missing PDF file.
|
|
122
|
+
|
|
123
|
+
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
|
124
|
+
# "{{type}}" will be replaced with an annotation type from a list defined in
|
|
125
|
+
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
|
126
|
+
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
|
127
|
+
text_annotation_type.alt=[{{type}} Annotation]
|
|
128
|
+
request_password=PDF is protected by a password:
|
|
129
|
+
invalid_password=Invalid Password.
|
|
130
|
+
|
|
131
|
+
printing_not_supported=Warning: Printing is not fully supported by this browser.
|
|
132
|
+
printing_not_ready=Warning: The PDF is not fully loaded for printing.
|
|
133
|
+
web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts.
|
|
134
|
+
document_colors_disabled=PDF documents are not allowed to use their own colors: \'Allow pages to choose their own colors\' is deactivated in the browser.
|
|
@@ -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=Página anterior
|
|
17
|
+
previous_label=Anterior
|
|
18
|
+
next.title=Página siguiente
|
|
19
|
+
next_label=Siguiente
|
|
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=Página:
|
|
26
|
+
page_of=de {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=Reducir
|
|
29
|
+
zoom_out_label=Reducir
|
|
30
|
+
zoom_in.title=Aumentar
|
|
31
|
+
zoom_in_label=Aumentar
|
|
32
|
+
zoom.title=Ampliación
|
|
33
|
+
presentation_mode.title=Cambiar al modo de presentación
|
|
34
|
+
presentation_mode_label=Modo de presentación
|
|
35
|
+
open_file.title=Abrir un archivo
|
|
36
|
+
open_file_label=Abrir
|
|
37
|
+
print.title=Imprimir
|
|
38
|
+
print_label=Imprimir
|
|
39
|
+
download.title=Descargar
|
|
40
|
+
download_label=Descargar
|
|
41
|
+
bookmark.title=Vista actual (copie o abra en una ventana nueva)
|
|
42
|
+
bookmark_label=Vista actual
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
first_page.title=Ir a la primera página
|
|
46
|
+
first_page.label=Ir a la primera página
|
|
47
|
+
first_page_label=Ir a la primera página
|
|
48
|
+
last_page.title=Ir a la última página
|
|
49
|
+
last_page.label=Ir a la última página
|
|
50
|
+
last_page_label=Ir a la última página
|
|
51
|
+
page_rotate_cw.title=Girar a la derecha
|
|
52
|
+
page_rotate_cw.label=Girar a la derecha
|
|
53
|
+
page_rotate_cw_label=Girar a la derecha
|
|
54
|
+
page_rotate_ccw.title=Girar a la izquierda
|
|
55
|
+
page_rotate_ccw.label=Girar a la izquierda
|
|
56
|
+
page_rotate_ccw_label=Girar a la izquierda
|
|
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=Mostrar u ocultar la barra lateral
|
|
62
|
+
toggle_sidebar_label=Conmutar la barra lateral
|
|
63
|
+
outline.title=Mostrar el esquema del documento
|
|
64
|
+
outline_label=Esquema del documento
|
|
65
|
+
thumbs.title=Mostrar las miniaturas
|
|
66
|
+
thumbs_label=Miniaturas
|
|
67
|
+
findbar.title=Buscar en el documento
|
|
68
|
+
findbar_label=Buscar
|
|
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=Página {{page}}
|
|
74
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
75
|
+
# number.
|
|
76
|
+
thumb_page_canvas=Miniatura de la página {{page}}
|
|
77
|
+
|
|
78
|
+
# Find panel button title and messages
|
|
79
|
+
find_label=Buscar:
|
|
80
|
+
find_previous.title=Ir a la frase encontrada anterior
|
|
81
|
+
find_previous_label=Anterior
|
|
82
|
+
find_next.title=Ir a la frase encontrada siguiente
|
|
83
|
+
find_next_label=Siguiente
|
|
84
|
+
find_highlight=Resaltar todo
|
|
85
|
+
find_match_case_label=Coincidir mayúsculas y minúsculas
|
|
86
|
+
find_reached_top=Se alcanzó el inicio del documento, se continúa desde el final
|
|
87
|
+
find_reached_bottom=Se alcanzó el final del documento, se continúa desde el inicio
|
|
88
|
+
find_not_found=No se encontró la frase
|
|
89
|
+
|
|
90
|
+
# Error panel labels
|
|
91
|
+
error_more_info=Más información
|
|
92
|
+
error_less_info=Menos información
|
|
93
|
+
error_close=Cerrar
|
|
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}} (compilación: {{build}})
|
|
97
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
98
|
+
# english string describing the error.
|
|
99
|
+
error_message=Mensaje: {{message}}
|
|
100
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
101
|
+
# trace.
|
|
102
|
+
error_stack=Pila: {{stack}}
|
|
103
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
104
|
+
error_file=Archivo: {{file}}
|
|
105
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
106
|
+
error_line=Línea: {{line}}
|
|
107
|
+
rendering_error=Ocurrió un error al renderizar la página.
|
|
108
|
+
|
|
109
|
+
# Predefined zoom values
|
|
110
|
+
page_scale_width=Anchura de la página
|
|
111
|
+
page_scale_fit=Ajustar a la página
|
|
112
|
+
page_scale_auto=Ampliación automática
|
|
113
|
+
page_scale_actual=Tamaño real
|
|
114
|
+
|
|
115
|
+
# Loading indicator messages
|
|
116
|
+
loading_error_indicator=Error
|
|
117
|
+
loading_error=Ocurrió un error al cargar el PDF.
|
|
118
|
+
invalid_file_error=El archivo PDF no es válido o está dañado.
|
|
119
|
+
missing_file_error=Falta el archivo 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.alt=[Anotación {{type}}]
|
|
126
|
+
request_password=El archivo PDF está protegido por una contraseña:
|
|
127
|
+
|
|
128
|
+
printing_not_supported=Aviso: Este navegador no es compatible completamente con la impresión.
|
|
129
|
+
printing_not_ready=Aviso: El PDF no se ha cargado completamente para su impresión.
|
|
130
|
+
web_fonts_disabled=Se han desactivado los tipos de letra web: no se pueden usar los tipos de letra incrustados en el PDF.
|
|
131
|
+
web_colors_disabled=Se han desactivado los colores web.
|
|
@@ -0,0 +1,129 @@
|
|
|
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=Edellinen sivu
|
|
17
|
+
previous_label=Edellinen
|
|
18
|
+
next.title=Seuraava sivu
|
|
19
|
+
next_label=Seuraava
|
|
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=Sivu:
|
|
26
|
+
page_of=/ {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=Suurenna
|
|
29
|
+
zoom_out_label=Suurenna
|
|
30
|
+
zoom_in.title=Pienennä
|
|
31
|
+
zoom_in_label=Pienennä
|
|
32
|
+
zoom.title=Sivun suurennus
|
|
33
|
+
presentation_mode.title=Esitystila
|
|
34
|
+
presentation_mode_label=Esitystila
|
|
35
|
+
open_file.title=Avaa tiedosto
|
|
36
|
+
open_file_label=Avaa
|
|
37
|
+
print.title=Tulosta
|
|
38
|
+
print_label=Tulosta
|
|
39
|
+
download.title=Lataa
|
|
40
|
+
download_label=Lataa
|
|
41
|
+
bookmark.title=Nykyinen näkymä (kopioi tai avaa uuteen ikkunaan)
|
|
42
|
+
bookmark_label=Nykyinen näkymä
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
first_page.title=Ensimmäinen sivu
|
|
46
|
+
first_page.label=Ensimmäinen sivu
|
|
47
|
+
first_page_label=Ensimmäinen sivu
|
|
48
|
+
last_page.title=Viimeinen sivu
|
|
49
|
+
last_page.label=Viimeinen sivu
|
|
50
|
+
last_page_label=Viimeinen sivu
|
|
51
|
+
page_rotate_cw.title=Kierrä myötäpäivään
|
|
52
|
+
page_rotate_cw.label=Kierrä myötäpäivään
|
|
53
|
+
page_rotate_cw_label=Kierrä myötäpäivään
|
|
54
|
+
page_rotate_ccw.title=Kierrä vastapäivään
|
|
55
|
+
page_rotate_ccw.label=Kierrä vastapäivään
|
|
56
|
+
page_rotate_ccw_label=Kierrä vastapäivään
|
|
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=Vaihda sivunäkymä
|
|
62
|
+
toggle_sidebar_label=Vaihda sivunäkymä
|
|
63
|
+
outline.title=Näytä asiakirjan jäsennys
|
|
64
|
+
outline_label=Asiakirjan jäsennys
|
|
65
|
+
thumbs.title=Näytä esikatselukuvat
|
|
66
|
+
thumbs_label=Esikatselukuvat
|
|
67
|
+
findbar.title=Etsi asiakirjasta
|
|
68
|
+
findbar_label=Etsi
|
|
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=Sivu {{page}}
|
|
74
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
75
|
+
# number.
|
|
76
|
+
thumb_page_canvas=Sivun {{page}} esikatselukuva
|
|
77
|
+
|
|
78
|
+
# Find panel button title and messages
|
|
79
|
+
find_label=Etsi
|
|
80
|
+
find_previous.title=Etsi edellinen
|
|
81
|
+
find_previous_label=Edellinen
|
|
82
|
+
find_next.title=Etsi seuraava
|
|
83
|
+
find_next_label=Seuraava
|
|
84
|
+
find_highlight=Korosta kaikki hakutulokset
|
|
85
|
+
find_match_case_label=Hae täysin samanlaisia
|
|
86
|
+
find_reached_top=Asiakirjan alku saavutettiin, jatkettiin lopusta
|
|
87
|
+
find_reached_bottom=Asiakirjan loppu saavutettiin, jatkettiin alusta
|
|
88
|
+
find_not_found=Ei löytynyt
|
|
89
|
+
|
|
90
|
+
# Error panel labels
|
|
91
|
+
error_more_info=Enemmän tietoa
|
|
92
|
+
error_less_info=Vähemmän tietoa
|
|
93
|
+
error_close=Sulje
|
|
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}} (rakennus: {{build}})
|
|
97
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
98
|
+
# english string describing the error.
|
|
99
|
+
error_message=Viesti: {{message}}
|
|
100
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
101
|
+
# trace.
|
|
102
|
+
error_stack=Kutsupino: {{stack}}
|
|
103
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
104
|
+
error_file=Tiedosto: {{file}}
|
|
105
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
106
|
+
error_line=Rivi: {{line}}
|
|
107
|
+
rendering_error=Virhe on tapahtunut sivua mallintaessa.
|
|
108
|
+
|
|
109
|
+
# Predefined zoom values
|
|
110
|
+
page_scale_width=Sivun leveys
|
|
111
|
+
page_scale_fit=Sivun sovitus
|
|
112
|
+
page_scale_auto=Automaatinen sivun suurennus
|
|
113
|
+
page_scale_actual=Todellinen koko
|
|
114
|
+
|
|
115
|
+
# Loading indicator messages
|
|
116
|
+
loading_error_indicator=Virhe
|
|
117
|
+
loading_error=Virhe on tapahtunut PDF:ää ladattaessa.
|
|
118
|
+
invalid_file_error=Virheellinen tai vioittunut PDF tiedosto.
|
|
119
|
+
missing_file_error=PDF tiedostoa ei löytynyt.
|
|
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}} Selite]
|
|
126
|
+
request_password=PDF on salasanasuojattu:
|
|
127
|
+
|
|
128
|
+
printing_not_supported=Varoitus: Tämä selain ei täysin tue tulostusta.
|
|
129
|
+
web_fonts_disabled=Web fontit ovat poissa käytöstä: upotettuja PDF fontteja ei voida käyttää.
|