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,78 @@
|
|
|
1
|
+
[ar]
|
|
2
|
+
@import url(ar/viewer.properties)
|
|
3
|
+
|
|
4
|
+
[ca]
|
|
5
|
+
@import url(ca/viewer.properties)
|
|
6
|
+
|
|
7
|
+
[cs]
|
|
8
|
+
@import url(cs/viewer.properties)
|
|
9
|
+
|
|
10
|
+
[da]
|
|
11
|
+
@import url(da/viewer.properties)
|
|
12
|
+
|
|
13
|
+
[de]
|
|
14
|
+
@import url(de/viewer.properties)
|
|
15
|
+
|
|
16
|
+
[el]
|
|
17
|
+
@import url(el/viewer.properties)
|
|
18
|
+
|
|
19
|
+
[en-US]
|
|
20
|
+
@import url(en-US/viewer.properties)
|
|
21
|
+
|
|
22
|
+
[es]
|
|
23
|
+
@import url(es/viewer.properties)
|
|
24
|
+
|
|
25
|
+
[fi]
|
|
26
|
+
@import url(fi/viewer.properties)
|
|
27
|
+
|
|
28
|
+
[fr]
|
|
29
|
+
@import url(fr/viewer.properties)
|
|
30
|
+
|
|
31
|
+
[he]
|
|
32
|
+
@import url(he/viewer.properties)
|
|
33
|
+
|
|
34
|
+
[it]
|
|
35
|
+
@import url(it/viewer.properties)
|
|
36
|
+
|
|
37
|
+
[ja]
|
|
38
|
+
@import url(ja/viewer.properties)
|
|
39
|
+
|
|
40
|
+
[ko]
|
|
41
|
+
@import url(ko/viewer.properties)
|
|
42
|
+
|
|
43
|
+
[lt]
|
|
44
|
+
@import url(lt/viewer.properties)
|
|
45
|
+
|
|
46
|
+
[nl]
|
|
47
|
+
@import url(nl/viewer.properties)
|
|
48
|
+
|
|
49
|
+
[pl]
|
|
50
|
+
@import url(pl/viewer.properties)
|
|
51
|
+
|
|
52
|
+
[pt-BR]
|
|
53
|
+
@import url(pt-BR/viewer.properties)
|
|
54
|
+
|
|
55
|
+
[ro]
|
|
56
|
+
@import url(ro/viewer.properties)
|
|
57
|
+
|
|
58
|
+
[ru]
|
|
59
|
+
@import url(ru/viewer.properties)
|
|
60
|
+
|
|
61
|
+
[sr]
|
|
62
|
+
@import url(sr/viewer.properties)
|
|
63
|
+
|
|
64
|
+
[sv]
|
|
65
|
+
@import url(sv/viewer.properties)
|
|
66
|
+
|
|
67
|
+
[tr]
|
|
68
|
+
@import url(tr/viewer.properties)
|
|
69
|
+
|
|
70
|
+
[vi]
|
|
71
|
+
@import url(vi/viewer.properties)
|
|
72
|
+
|
|
73
|
+
[zh-CN]
|
|
74
|
+
@import url(zh-CN/viewer.properties)
|
|
75
|
+
|
|
76
|
+
[zh-TW]
|
|
77
|
+
@import url(zh-TW/viewer.properties)
|
|
78
|
+
|
|
@@ -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=Ankstesnis puslapis
|
|
17
|
+
previous_label=Ankstesnis
|
|
18
|
+
next.title=Sekantis puslapis
|
|
19
|
+
next_label=Sekantis
|
|
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=Puslapis:
|
|
26
|
+
page_of=iš {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=Mažinti
|
|
29
|
+
zoom_out_label=Mažinti
|
|
30
|
+
zoom_in.title=Didinti
|
|
31
|
+
zoom_in_label=Didinti
|
|
32
|
+
zoom.title=Mastelis
|
|
33
|
+
presentation_mode.title=Įjungti pateikimo būseną
|
|
34
|
+
presentation_mode_label=Pateikimo būsena
|
|
35
|
+
open_file.title=Atverti bylą
|
|
36
|
+
open_file_label=Atverti
|
|
37
|
+
print.title=Spausdinti
|
|
38
|
+
print_label=Spausdinti
|
|
39
|
+
download.title=Atsiųsti
|
|
40
|
+
download_label=Atsiųsti
|
|
41
|
+
bookmark.title=Dabartinis rodymas (kopijuoti arba atidaryti naudojame lange)
|
|
42
|
+
bookmark_label=Dabartinis rodymas
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
first_page.title=Nukreipimas į pirmą puslapį
|
|
46
|
+
first_page.label=Nukreipimas į pirmą puslapį
|
|
47
|
+
first_page_label=Nukreipimas į pirmą puslapį
|
|
48
|
+
last_page.title=Nukreipimas į paskutinį puslapį
|
|
49
|
+
last_page.label=Nukreipimas į paskutinį puslapį
|
|
50
|
+
last_page_label=Nukreipimas į paskutinį puslapį
|
|
51
|
+
page_rotate_cw.title=Sukimas pagal laikrodžio rodyklę
|
|
52
|
+
page_rotate_cw.label=Sukimas pagal laikrodžio rodyklę
|
|
53
|
+
page_rotate_cw_label=Sukimas pagal laikrodžio rodyklę
|
|
54
|
+
page_rotate_ccw.title=Sukimas prieš laikrodžio rodyklę
|
|
55
|
+
page_rotate_ccw.label=Sukimas prieš laikrodžio rodyklę
|
|
56
|
+
page_rotate_ccw_label=Sukimas prieš laikrodžio rodyklę
|
|
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=Perjungti šoninę juostą
|
|
62
|
+
toggle_sidebar_label=Perjungti šoninę juostą
|
|
63
|
+
outline.title=Rodyti dokumento turinį
|
|
64
|
+
outline_label=Dokumento turinys
|
|
65
|
+
thumbs.title=Rodyti miniatiūras
|
|
66
|
+
thumbs_label=Miniatiūros
|
|
67
|
+
findbar.title=Paieška dokumente
|
|
68
|
+
findbar_label=Paieška
|
|
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=Puslapis {{page}}
|
|
74
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
75
|
+
# number.
|
|
76
|
+
thumb_page_canvas=Miniatūra iš {{page}} puslapio
|
|
77
|
+
|
|
78
|
+
# Find panel button title and messages
|
|
79
|
+
find_label=Paieška:
|
|
80
|
+
find_previous.title=Ankstesnis paieškos atitikmuo
|
|
81
|
+
find_previous_label=Ankstesnis
|
|
82
|
+
find_next.title=Sekantis paieškos atitikmuo
|
|
83
|
+
find_next_label=Sekantis
|
|
84
|
+
find_highlight=Pažymėti visus
|
|
85
|
+
find_match_case_label=Skirti didžiąsias ir mažąsias raides
|
|
86
|
+
find_reached_top=Pasiektas dokumento viršus, pradėti nuo apačios
|
|
87
|
+
find_reached_bottom=Pasiekta dokumento apačia, pradėti nuo viršaus
|
|
88
|
+
find_not_found=Paieškos rezultatų nėra
|
|
89
|
+
|
|
90
|
+
# Error panel labels
|
|
91
|
+
error_more_info=Daugiau informacijos
|
|
92
|
+
error_less_info=Mažiau informacijos
|
|
93
|
+
error_close=Uždaryti
|
|
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=Žinutė: {{message}}
|
|
100
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
101
|
+
# trace.
|
|
102
|
+
error_stack=Dėklas: {{stack}}
|
|
103
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
104
|
+
error_file=Byla: {{file}}
|
|
105
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
106
|
+
error_line=Eilutė: {{line}}
|
|
107
|
+
rendering_error=Įvyko klaida atvaizduojant puslapį.
|
|
108
|
+
|
|
109
|
+
# Predefined zoom values
|
|
110
|
+
page_scale_width=Puslapio plotis
|
|
111
|
+
page_scale_fit=Puslapio priderinimas
|
|
112
|
+
page_scale_auto=Automatinis mastelis
|
|
113
|
+
page_scale_actual=Numatytas dydis
|
|
114
|
+
|
|
115
|
+
# Loading indicator messages
|
|
116
|
+
loading_error_indicator=Klaida
|
|
117
|
+
loading_error=PDF bylos įkelimo metu įvyko klaida.
|
|
118
|
+
invalid_file_error=Neteisinga arba pažeista PDF byla.
|
|
119
|
+
missing_file_error=Trūksta PDF bylos.
|
|
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}} Pastaba]
|
|
126
|
+
request_password=PDF byla yra apsaugota slaptažodžiu:
|
|
127
|
+
|
|
128
|
+
printing_not_supported=Dėmesio: Naršyklė pilnai nepalaiko spausdinimo.
|
|
129
|
+
web_fonts_disabled=Yra išjungti žiniatinklio šriftai: naudoti įterpus PDF šriftus nėra galima.
|
|
@@ -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=Vorige pagina
|
|
17
|
+
previous_label=Vorige
|
|
18
|
+
next.title=Volgende pagina
|
|
19
|
+
next_label=Volgende
|
|
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=Pagina:
|
|
26
|
+
page_of=van {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=Uitzoomen
|
|
29
|
+
zoom_out_label=Uitzoomen
|
|
30
|
+
zoom_in.title=Inzoomen
|
|
31
|
+
zoom_in_label=Inzoomen
|
|
32
|
+
zoom.title=Zoomen
|
|
33
|
+
presentation_mode.title=Omschakelen naar presentatiemodus
|
|
34
|
+
presentation_mode_label=Presentatiemodus
|
|
35
|
+
open_file.title=Bestand openen
|
|
36
|
+
open_file_label=Bestand openen
|
|
37
|
+
print.title=Afdrukken
|
|
38
|
+
print_label=Afdrukken
|
|
39
|
+
download.title=Downloaden
|
|
40
|
+
download_label=Downloaden
|
|
41
|
+
bookmark.title=Huidige weergave (kopiëren of openen in nieuw venster)
|
|
42
|
+
bookmark_label=Huidige weergave
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
tools.title=Hulpmiddelen
|
|
46
|
+
tools_label=Hulpmiddelen
|
|
47
|
+
first_page.title=Naar de eerste pagina gaan
|
|
48
|
+
first_page.label=Naar de eerste pagina gaan
|
|
49
|
+
first_page_label=Naar de eerste pagina gaan
|
|
50
|
+
last_page.title=Naar de laatste pagina gaan
|
|
51
|
+
last_page.label=Naar de laatste pagina gaan
|
|
52
|
+
last_page_label=Naar de laatste pagina gaan
|
|
53
|
+
page_rotate_cw.title=Met de klok mee roteren
|
|
54
|
+
page_rotate_cw.label=Met de klok mee roteren
|
|
55
|
+
page_rotate_cw_label=Met de klok mee roteren
|
|
56
|
+
page_rotate_ccw.title=Tegen de klok in roteren
|
|
57
|
+
page_rotate_ccw.label=Tegen de klok in roteren
|
|
58
|
+
page_rotate_ccw_label=Tegen de klok in roteren
|
|
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=Zijbalk tonen/verbergen
|
|
64
|
+
toggle_sidebar_label=Zijbalk tonen/verbergen
|
|
65
|
+
outline.title=Documentstructuur tonen
|
|
66
|
+
outline_label=Documentstructuur
|
|
67
|
+
thumbs.title=Miniaturen tonen
|
|
68
|
+
thumbs_label=Miniaturen
|
|
69
|
+
findbar.title=Zoeken in document
|
|
70
|
+
findbar_label=Zoeken
|
|
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=Pagina {{page}}
|
|
76
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
77
|
+
# number.
|
|
78
|
+
thumb_page_canvas=Miniatuur van pagina {{page}}
|
|
79
|
+
|
|
80
|
+
# Find panel button title and messages
|
|
81
|
+
find_label=Zoeken:
|
|
82
|
+
find_previous.title=Het vorige voorkomen van de tekst zoeken
|
|
83
|
+
find_previous_label=Vorige
|
|
84
|
+
find_next.title=Het volgende voorkomen van de tekst zoeken
|
|
85
|
+
find_next_label=Volgende
|
|
86
|
+
find_highlight=Alles markeren
|
|
87
|
+
find_match_case_label=Hoofdlettergevoelig
|
|
88
|
+
find_reached_top=Bovenkant van de pagina bereikt, doorgegaan vanaf de onderkant
|
|
89
|
+
find_reached_bottom=Onderkant van de pagina bereikt, doorgegaan vanaf de bovenkant
|
|
90
|
+
find_not_found=Tekst niet gevonden
|
|
91
|
+
|
|
92
|
+
# Error panel labels
|
|
93
|
+
error_more_info=Meer informatie
|
|
94
|
+
error_less_info=Minder informatie
|
|
95
|
+
error_close=Sluiten
|
|
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 versie {{version}} (build {{build}})
|
|
99
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
100
|
+
# english string describing the error.
|
|
101
|
+
error_message=Bericht: {{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=Bestand: {{file}}
|
|
107
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
108
|
+
error_line=Regel: {{line}}
|
|
109
|
+
rendering_error=Er is een probleem opgetreden bij het renderen van de pagina.
|
|
110
|
+
|
|
111
|
+
# Predefined zoom values
|
|
112
|
+
page_scale_width=Paginabreed maken
|
|
113
|
+
page_scale_fit=Passend maken
|
|
114
|
+
page_scale_auto=Automatisch zoomen
|
|
115
|
+
page_scale_actual=Werkelijke grootte
|
|
116
|
+
|
|
117
|
+
# Loading indicator messages
|
|
118
|
+
loading_error_indicator=Fout
|
|
119
|
+
loading_error=Er is een fout opgetreden bij het laden van het PDF-bestand.
|
|
120
|
+
invalid_file_error=Ongeldig of corrupt PDF-bestand.
|
|
121
|
+
missing_file_error=Ontbrekend PDF-bestand.
|
|
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}}-aantekening]
|
|
128
|
+
request_password=Dit PDF-bestand is beveiligd met een wachtwoord:
|
|
129
|
+
invalid_password=Onjuist wachtwoord.
|
|
130
|
+
|
|
131
|
+
printing_not_supported=Waarschuwing: afdrukken wordt niet volledig ondersteund door deze browser.
|
|
132
|
+
printing_not_ready=Waarschuwing: het PDF-bestand is niet volledig geladen en kan daarom nog niet afgedrukt worden.
|
|
133
|
+
web_fonts_disabled=Weblettertypen zijn uitgeschakeld: kan geen ingebakken PDF-lettertypen gebruiken.
|
|
134
|
+
document_colors_disabled=PDF-documenten mogen hun eigen kleuren niet gebruiken. \"Pagina\'s toestaan om hun eigen kleuren te kiezen\" is uitgeschakeld in de browser.
|
|
@@ -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=Poprzednia strona
|
|
17
|
+
previous_label=Wstecz
|
|
18
|
+
next.title=Następna strona
|
|
19
|
+
next_label=Dalej
|
|
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=Strona:
|
|
26
|
+
page_of=z {{pageCount}}
|
|
27
|
+
|
|
28
|
+
zoom_out.title=Pomniejsz
|
|
29
|
+
zoom_out_label=Pomniejsz
|
|
30
|
+
zoom_in.title=Powiększ
|
|
31
|
+
zoom_in_label=Powiększ
|
|
32
|
+
zoom.title=Powiększenie
|
|
33
|
+
presentation_mode.title=Przełącz do trybu prezentacji
|
|
34
|
+
presentation_mode_label=Tryb prezentacji
|
|
35
|
+
open_file.title=Otwórz plik
|
|
36
|
+
open_file_label=Otwórz
|
|
37
|
+
print.title=Drukuj
|
|
38
|
+
print_label=Drukuj
|
|
39
|
+
download.title=Pobierz
|
|
40
|
+
download_label=Pobierz
|
|
41
|
+
bookmark.title=Aktualny widok (kopiuj lub otwórz w nowym oknie)
|
|
42
|
+
bookmark_label=Aktualny widok
|
|
43
|
+
|
|
44
|
+
# Secondary toolbar and context menu
|
|
45
|
+
first_page.title=Idź do pierwszej strony
|
|
46
|
+
first_page.label=Idź do pierwszej strony
|
|
47
|
+
first_page_label=Idź do pierwszej strony
|
|
48
|
+
last_page.title=Idź do ostatniej strony
|
|
49
|
+
last_page.label=Idź do ostatniej strony
|
|
50
|
+
last_page_label=Idź do ostatniej strony
|
|
51
|
+
page_rotate_cw.title=Obróć w prawo
|
|
52
|
+
page_rotate_cw.label=Obróć w prawo
|
|
53
|
+
page_rotate_cw_label=Obróć w prawo
|
|
54
|
+
page_rotate_ccw.title=Obróć w lewo
|
|
55
|
+
page_rotate_ccw.label=Obróć w lewo
|
|
56
|
+
page_rotate_ccw_label=Obróć w lewo
|
|
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=Pokaż/Ukryj panel boczny
|
|
62
|
+
toggle_sidebar_label=Pokaż/Ukryj panel
|
|
63
|
+
outline.title=Wyświetl konspekt dokumentu
|
|
64
|
+
outline_label=Konspekt dokumentu
|
|
65
|
+
thumbs.title=Wyświetl miniatury
|
|
66
|
+
thumbs_label=Miniatury
|
|
67
|
+
findbar.title=Szukaj w tekście
|
|
68
|
+
findbar_label=Znajdź
|
|
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=Strona {{page}}
|
|
74
|
+
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
|
75
|
+
# number.
|
|
76
|
+
thumb_page_canvas=Miniatura strony {{page}}
|
|
77
|
+
|
|
78
|
+
# Find panel button title and messages
|
|
79
|
+
find_label=Znajdź:
|
|
80
|
+
find_previous.title=Znajdź poprzednie wystąpienie ostatnio szukanej frazy
|
|
81
|
+
find_previous_label=Poprzednie
|
|
82
|
+
find_next.title=Znajdź następne wystąpienie ostatnio szukanej frazy
|
|
83
|
+
find_next_label=Następne
|
|
84
|
+
find_highlight=Podświetl
|
|
85
|
+
find_match_case_label=Rozróżniaj wielkość liter
|
|
86
|
+
find_reached_top=Początek strony. Wyszukiwanie od końca.
|
|
87
|
+
find_reached_bottom=Koniec strony. Wyszukiwanie od początku.
|
|
88
|
+
find_not_found=Szukany tekst nie został odnaleziony.
|
|
89
|
+
|
|
90
|
+
# Error panel labels
|
|
91
|
+
error_more_info=Więcej informacji
|
|
92
|
+
error_less_info=Mniej informacji
|
|
93
|
+
error_close=Zamknij
|
|
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=Wersja PDF.js: {{version}} (kompilacja: {{build}})
|
|
97
|
+
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
|
98
|
+
# english string describing the error.
|
|
99
|
+
error_message=Wiadomość: {{message}}
|
|
100
|
+
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
|
101
|
+
# trace.
|
|
102
|
+
error_stack=Stos: {{stack}}
|
|
103
|
+
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
|
104
|
+
error_file=Plik: {{file}}
|
|
105
|
+
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
|
106
|
+
error_line=Linia: {{line}}
|
|
107
|
+
rendering_error=Wystąpił błąd podczas wyświetlania strony.
|
|
108
|
+
|
|
109
|
+
# Predefined zoom values
|
|
110
|
+
page_scale_width=Szerokość strony
|
|
111
|
+
page_scale_fit=Cała strona
|
|
112
|
+
page_scale_auto=Automatyczne dopasowanie
|
|
113
|
+
page_scale_actual=Rzeczywisty rozmiar
|
|
114
|
+
|
|
115
|
+
# Loading indicator messages
|
|
116
|
+
loading_error_indicator=Błąd
|
|
117
|
+
loading_error=Wystąpił błąd podczas wczytywania pliku PDF.
|
|
118
|
+
invalid_file_error=Błędny lub uszkodzony plik PDF.
|
|
119
|
+
missing_file_error=Nie znaleziono pliku 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=[Komentarz {{type}}]
|
|
126
|
+
request_password=Plik PDF jest chroniony przez hasło:
|
|
127
|
+
invalid_password=Nieprawidłowe hasło.
|
|
128
|
+
|
|
129
|
+
printing_not_supported=Ostrzeżenie: Drukowanie nie jest w pełni obsługiwane przez tę przeglądarkę.
|
|
130
|
+
printing_not_ready=Ostrzeżenie: Plik PDF nie jest całkowicie wczytany do drukowania.
|
|
131
|
+
web_fonts_disabled=Web fonty są nieaktywne. Nie można korzystać z osadzonych czcionek w plikach PDF.
|
|
132
|
+
document_colors_disabled=Dokumenty PDF nie mają pozwolenia na korzystanie z ich własnych kolorów: \'Pozwalaj stronom stosować inne kolory niż ustawione tutaj\' nie jest aktywne w przeglądarce.
|