decidim-participatory_documents 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (559) hide show
  1. checksums.yaml +7 -0
  2. data/.erb-lint.yml +30 -0
  3. data/.eslintignore +3 -0
  4. data/.eslintrc.json +3 -0
  5. data/.github/workflows/lint.yml +43 -0
  6. data/.github/workflows/test.yml +60 -0
  7. data/.gitignore +27 -0
  8. data/.rspec +3 -0
  9. data/.rubocop-disabled.yml +11 -0
  10. data/.rubocop.yml +4 -0
  11. data/.rubocop_rails.yml +91 -0
  12. data/.rubocop_ruby.yml +1768 -0
  13. data/.ruby-version +1 -0
  14. data/.simplecov +13 -0
  15. data/CODE_OF_CONDUCT.md +74 -0
  16. data/Gemfile +39 -0
  17. data/Gemfile.lock +817 -0
  18. data/LICENSE-AGPLv3.txt +661 -0
  19. data/README.md +166 -0
  20. data/Rakefile +44 -0
  21. data/app/cells/decidim/participatory_documents/edit_suggestion_note_modal/show.erb +20 -0
  22. data/app/cells/decidim/participatory_documents/edit_suggestion_note_modal_cell.rb +35 -0
  23. data/app/cells/decidim/participatory_documents/suggestion/admin_answer.erb +7 -0
  24. data/app/cells/decidim/participatory_documents/suggestion/show.erb +11 -0
  25. data/app/cells/decidim/participatory_documents/suggestion_author/avatar.erb +3 -0
  26. data/app/cells/decidim/participatory_documents/suggestion_author/date.erb +1 -0
  27. data/app/cells/decidim/participatory_documents/suggestion_author/name.erb +3 -0
  28. data/app/cells/decidim/participatory_documents/suggestion_author/show.erb +9 -0
  29. data/app/cells/decidim/participatory_documents/suggestion_author_cell.rb +50 -0
  30. data/app/cells/decidim/participatory_documents/suggestion_cell.rb +41 -0
  31. data/app/commands/decidim/participatory_documents/admin/answer_suggestion.rb +62 -0
  32. data/app/commands/decidim/participatory_documents/admin/assign_suggestions_to_valuator.rb +59 -0
  33. data/app/commands/decidim/participatory_documents/admin/create_document.rb +55 -0
  34. data/app/commands/decidim/participatory_documents/admin/create_suggestion_note.rb +49 -0
  35. data/app/commands/decidim/participatory_documents/admin/destroy_annotation.rb +67 -0
  36. data/app/commands/decidim/participatory_documents/admin/notify_suggestion_answer.rb +52 -0
  37. data/app/commands/decidim/participatory_documents/admin/publish_answers.rb +59 -0
  38. data/app/commands/decidim/participatory_documents/admin/publish_document.rb +26 -0
  39. data/app/commands/decidim/participatory_documents/admin/unassign_suggestions_from_valuator.rb +60 -0
  40. data/app/commands/decidim/participatory_documents/admin/update_document.rb +85 -0
  41. data/app/commands/decidim/participatory_documents/admin/update_or_create_annotation.rb +98 -0
  42. data/app/commands/decidim/participatory_documents/admin/update_section.rb +52 -0
  43. data/app/commands/decidim/participatory_documents/admin/update_suggestion_note.rb +36 -0
  44. data/app/commands/decidim/participatory_documents/create_suggestion.rb +65 -0
  45. data/app/controllers/concerns/decidim/participatory_documents/admin/needs_admin_snippets.rb +25 -0
  46. data/app/controllers/concerns/decidim/participatory_documents/needs_pdf_document.rb +105 -0
  47. data/app/controllers/decidim/participatory_documents/admin/annotations_controller.rb +51 -0
  48. data/app/controllers/decidim/participatory_documents/admin/application_controller.rb +18 -0
  49. data/app/controllers/decidim/participatory_documents/admin/documents_controller.rb +104 -0
  50. data/app/controllers/decidim/participatory_documents/admin/sections_controller.rb +39 -0
  51. data/app/controllers/decidim/participatory_documents/admin/suggestion_notes_controller.rb +59 -0
  52. data/app/controllers/decidim/participatory_documents/admin/suggestions_controller.rb +160 -0
  53. data/app/controllers/decidim/participatory_documents/admin/valuation_assignments_controller.rb +58 -0
  54. data/app/controllers/decidim/participatory_documents/application_controller.rb +14 -0
  55. data/app/controllers/decidim/participatory_documents/document_suggestions_controller.rb +40 -0
  56. data/app/controllers/decidim/participatory_documents/documents_controller.rb +18 -0
  57. data/app/controllers/decidim/participatory_documents/section_suggestions_controller.rb +40 -0
  58. data/app/events/decidim/participatory_documents/suggestion_answer_event.rb +43 -0
  59. data/app/forms/decidim/participatory_documents/admin/annotation_form.rb +26 -0
  60. data/app/forms/decidim/participatory_documents/admin/answer_suggestion_form.rb +21 -0
  61. data/app/forms/decidim/participatory_documents/admin/document_form.rb +29 -0
  62. data/app/forms/decidim/participatory_documents/admin/section_form.rb +17 -0
  63. data/app/forms/decidim/participatory_documents/admin/suggestion_note_form.rb +15 -0
  64. data/app/forms/decidim/participatory_documents/admin/valuation_assignment_form.rb +38 -0
  65. data/app/forms/decidim/participatory_documents/suggestion_form.rb +39 -0
  66. data/app/helpers/decidim/participatory_documents/admin/button_helper.rb +17 -0
  67. data/app/helpers/decidim/participatory_documents/admin/documents_helper.rb +71 -0
  68. data/app/helpers/decidim/participatory_documents/admin/suggestion_helper.rb +54 -0
  69. data/app/helpers/decidim/participatory_documents/documents_helper.rb +41 -0
  70. data/app/models/concerns/decidim/participatory_documents/participatory_space_user_role_override.rb +19 -0
  71. data/app/models/concerns/decidim/participatory_documents/valuator_override.rb +18 -0
  72. data/app/models/decidim/participatory_documents/annotation.rb +28 -0
  73. data/app/models/decidim/participatory_documents/application_record.rb +10 -0
  74. data/app/models/decidim/participatory_documents/document.rb +67 -0
  75. data/app/models/decidim/participatory_documents/section.rb +44 -0
  76. data/app/models/decidim/participatory_documents/suggestion.rb +167 -0
  77. data/app/models/decidim/participatory_documents/suggestion_note.rb +18 -0
  78. data/app/models/decidim/participatory_documents/valuation_assignment.rb +21 -0
  79. data/app/packs/entrypoints/decidim_participatory_documents.js +6 -0
  80. data/app/packs/entrypoints/decidim_participatory_documents.scss +18 -0
  81. data/app/packs/entrypoints/decidim_participatory_documents_admin.js +7 -0
  82. data/app/packs/entrypoints/decidim_participatory_documents_admin.scss +69 -0
  83. data/app/packs/entrypoints/decidim_participatory_documents_editor.js +12 -0
  84. data/app/packs/entrypoints/decidim_participatory_documents_editor.scss +33 -0
  85. data/app/packs/entrypoints/decidim_participatory_documents_viewer.js +6 -0
  86. data/app/packs/entrypoints/decidim_participatory_documents_viewer.scss +11 -0
  87. data/app/packs/images/.keep +0 -0
  88. data/app/packs/images/badge.svg +6 -0
  89. data/app/packs/images/fullscreen.svg +6 -0
  90. data/app/packs/images/fullscreen_exit.svg +14 -0
  91. data/app/packs/images/group.svg +1 -0
  92. data/app/packs/images/move.svg +49 -0
  93. data/app/packs/images/participatory_documents.svg +14 -0
  94. data/app/packs/src/decidim/participatory_documents/admin/manage_bulk_suggestions.js +133 -0
  95. data/app/packs/src/decidim/participatory_documents/admin/preview_box_color.js +14 -0
  96. data/app/packs/src/decidim/participatory_documents/global.js +22 -0
  97. data/app/packs/src/decidim/participatory_documents/pdf/box.js +234 -0
  98. data/app/packs/src/decidim/participatory_documents/pdf/box_control_group.js +80 -0
  99. data/app/packs/src/decidim/participatory_documents/pdf/box_control_move.js +55 -0
  100. data/app/packs/src/decidim/participatory_documents/pdf/box_controls.js +18 -0
  101. data/app/packs/src/decidim/participatory_documents/pdf/pdf_modal_manager.js +129 -0
  102. data/app/packs/src/decidim/participatory_documents/pdf/pdf_state_manager.js +141 -0
  103. data/app/packs/src/decidim/participatory_documents/pdf/polygon_editor.js +99 -0
  104. data/app/packs/src/decidim/participatory_documents/pdf/polygon_viewer.js +55 -0
  105. data/app/packs/src/decidim/participatory_documents/pdf/suggestion_form.js +142 -0
  106. data/app/packs/src/decidim/participatory_documents/pdf.js +37 -0
  107. data/app/packs/src/decidim/participatory_documents/pdf_admin.js +60 -0
  108. data/app/packs/src/decidim/participatory_documents/pdf_notifications.js +20 -0
  109. data/app/packs/src/decidim/participatory_documents/skip_cookie_warning.js +10 -0
  110. data/app/packs/stylesheets/decidim/participatory_documents/decidim_admin_classes.scss +13 -0
  111. data/app/packs/stylesheets/decidim/participatory_documents/pdf/admin_modals.scss +41 -0
  112. data/app/packs/stylesheets/decidim/participatory_documents/pdf/admin_polygons.scss +131 -0
  113. data/app/packs/stylesheets/decidim/participatory_documents/pdf/admin_tweaks.scss +44 -0
  114. data/app/packs/stylesheets/decidim/participatory_documents/pdf/defaults.scss +7 -0
  115. data/app/packs/stylesheets/decidim/participatory_documents/pdf/document.scss +7 -0
  116. data/app/packs/stylesheets/decidim/participatory_documents/pdf/modals.scss +152 -0
  117. data/app/packs/stylesheets/decidim/participatory_documents/pdf/notifications.scss +31 -0
  118. data/app/packs/stylesheets/decidim/participatory_documents/pdf/polygons.scss +80 -0
  119. data/app/packs/stylesheets/decidim/participatory_documents/pdf/tweaks.scss +147 -0
  120. data/app/permissions/decidim/participatory_documents/admin/permissions.rb +118 -0
  121. data/app/permissions/decidim/participatory_documents/permissions.rb +16 -0
  122. data/app/presenters/decidim/participatory_documents/admin_log/annotation_presenter.rb +25 -0
  123. data/app/presenters/decidim/participatory_documents/admin_log/document_presenter.rb +13 -0
  124. data/app/presenters/decidim/participatory_documents/admin_log/section_presenter.rb +25 -0
  125. data/app/presenters/decidim/participatory_documents/admin_log/suggestion_note_presenter.rb +49 -0
  126. data/app/serializers/decidim/participatory_documents/suggestion_serializer.rb +67 -0
  127. data/app/uploaders/decidim/participatory_documents/pdf_document_uploader.rb +11 -0
  128. data/app/views/decidim/admin/exports/_dropdown.html.erb +16 -0
  129. data/app/views/decidim/participatory_documents/admin/documents/_editor_modal.html.erb +3 -0
  130. data/app/views/decidim/participatory_documents/admin/documents/_form.html.erb +39 -0
  131. data/app/views/decidim/participatory_documents/admin/documents/_title.html.erb +7 -0
  132. data/app/views/decidim/participatory_documents/admin/documents/edit.html.erb +18 -0
  133. data/app/views/decidim/participatory_documents/admin/documents/edit_pdf.html.erb +15 -0
  134. data/app/views/decidim/participatory_documents/admin/documents/index.html.erb +11 -0
  135. data/app/views/decidim/participatory_documents/admin/documents/new.html.erb +17 -0
  136. data/app/views/decidim/participatory_documents/admin/documents/pdf_viewer.html.erb +105 -0
  137. data/app/views/decidim/participatory_documents/admin/sections/_form.html.erb +24 -0
  138. data/app/views/decidim/participatory_documents/admin/suggestion_notes/_editing_suggestion_note.html.erb +18 -0
  139. data/app/views/decidim/participatory_documents/admin/suggestion_notes/_form.html.erb +8 -0
  140. data/app/views/decidim/participatory_documents/admin/suggestion_notes/_suggestion_notes.html.erb +46 -0
  141. data/app/views/decidim/participatory_documents/admin/suggestions/_add_valuators.html.erb +17 -0
  142. data/app/views/decidim/participatory_documents/admin/suggestions/_bulk-actions.html.erb +7 -0
  143. data/app/views/decidim/participatory_documents/admin/suggestions/_form.html.erb +30 -0
  144. data/app/views/decidim/participatory_documents/admin/suggestions/_js-callout.html.erb +6 -0
  145. data/app/views/decidim/participatory_documents/admin/suggestions/_suggestion.html.erb +33 -0
  146. data/app/views/decidim/participatory_documents/admin/suggestions/_valuators.html.erb +43 -0
  147. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_assign_to_valuator.html.erb +15 -0
  148. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_dropdown.html.erb +36 -0
  149. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_publish_answers.html.erb +14 -0
  150. data/app/views/decidim/participatory_documents/admin/suggestions/bulk_actions/_unassign_from_valuator.html.erb +15 -0
  151. data/app/views/decidim/participatory_documents/admin/suggestions/index.html.erb +45 -0
  152. data/app/views/decidim/participatory_documents/admin/suggestions/publish_answers.js.erb +17 -0
  153. data/app/views/decidim/participatory_documents/admin/suggestions/show.html.erb +55 -0
  154. data/app/views/decidim/participatory_documents/document_suggestions/_form.html.erb +29 -0
  155. data/app/views/decidim/participatory_documents/document_suggestions/index.html.erb +14 -0
  156. data/app/views/decidim/participatory_documents/documents/_pdfjs_base.html.erb +428 -0
  157. data/app/views/decidim/participatory_documents/documents/index.html.erb +27 -0
  158. data/app/views/decidim/participatory_documents/documents/pdf_viewer.html.erb +63 -0
  159. data/app/views/decidim/participatory_documents/section_suggestions/_form.html.erb +8 -0
  160. data/app/views/decidim/participatory_documents/section_suggestions/index.html.erb +14 -0
  161. data/babel.config.json +25 -0
  162. data/bin/bundle +62 -0
  163. data/bin/rails +6 -0
  164. data/bin/webpack-dev-server +6 -0
  165. data/codecov.yml +11 -0
  166. data/config/assets.rb +11 -0
  167. data/config/i18n-tasks.yml +12 -0
  168. data/config/locales/en.yml +266 -0
  169. data/crowdin.yml +45 -0
  170. data/db/migrate/20221018112720_create_decidim_participatory_documents_document.rb +17 -0
  171. data/db/migrate/20221115233021_create_decidim_participatory_documents_participation_sections.rb +12 -0
  172. data/db/migrate/20221115233022_create_decidim_participatory_documents_annotations.rb +13 -0
  173. data/db/migrate/20221115233023_create_decidim_participatory_documents_suggestions.rb +17 -0
  174. data/db/migrate/20221115233024_create_decidim_participatory_documents_suggestion_notes.rb +15 -0
  175. data/db/migrate/20221115233024_create_decidim_participatory_documents_valuation_assignments.rb +12 -0
  176. data/db/migrate/20230616100340_add_published_at_to_decidim_participatory_documents_documents.rb +8 -0
  177. data/db/migrate/20230622081831_add_decidim_participatory_documents_box_positions.rb +37 -0
  178. data/decidim-participatory_documents.gemspec +30 -0
  179. data/lib/decidim/participatory_documents/admin.rb +8 -0
  180. data/lib/decidim/participatory_documents/admin_engine.rb +45 -0
  181. data/lib/decidim/participatory_documents/component.rb +202 -0
  182. data/lib/decidim/participatory_documents/engine.rb +46 -0
  183. data/lib/decidim/participatory_documents/seeds/Exampledocument.pdf +0 -0
  184. data/lib/decidim/participatory_documents/test/factories.rb +144 -0
  185. data/lib/decidim/participatory_documents/version.rb +9 -0
  186. data/lib/decidim/participatory_documents.rb +29 -0
  187. data/lib/tasks/decidim_participatory_documents.rake +27 -0
  188. data/package-lock.json +12687 -0
  189. data/package.json +52 -0
  190. data/pdfjs/LICENSE +177 -0
  191. data/pdfjs/README.md +12 -0
  192. data/pdfjs/build/pdf.js +15629 -0
  193. data/pdfjs/build/pdf.js.map +1 -0
  194. data/pdfjs/build/pdf.sandbox.js +280 -0
  195. data/pdfjs/build/pdf.sandbox.js.map +1 -0
  196. data/pdfjs/build/pdf.worker.js +64496 -0
  197. data/pdfjs/build/pdf.worker.js.map +1 -0
  198. data/pdfjs/web/cmaps/78-EUC-H.bcmap +0 -0
  199. data/pdfjs/web/cmaps/78-EUC-V.bcmap +0 -0
  200. data/pdfjs/web/cmaps/78-H.bcmap +0 -0
  201. data/pdfjs/web/cmaps/78-RKSJ-H.bcmap +0 -0
  202. data/pdfjs/web/cmaps/78-RKSJ-V.bcmap +0 -0
  203. data/pdfjs/web/cmaps/78-V.bcmap +0 -0
  204. data/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +0 -0
  205. data/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +0 -0
  206. data/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +0 -0
  207. data/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +0 -0
  208. data/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +0 -0
  209. data/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +0 -0
  210. data/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +0 -0
  211. data/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +0 -0
  212. data/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +0 -0
  213. data/pdfjs/web/cmaps/Add-H.bcmap +0 -0
  214. data/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +0 -0
  215. data/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +0 -0
  216. data/pdfjs/web/cmaps/Add-V.bcmap +0 -0
  217. data/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +0 -0
  218. data/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +0 -0
  219. data/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +0 -0
  220. data/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +0 -0
  221. data/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +0 -0
  222. data/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +0 -0
  223. data/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +0 -0
  224. data/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +0 -0
  225. data/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +0 -0
  226. data/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +0 -0
  227. data/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +0 -0
  228. data/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +0 -0
  229. data/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +0 -0
  230. data/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +0 -0
  231. data/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +0 -0
  232. data/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +0 -0
  233. data/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +0 -0
  234. data/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +0 -0
  235. data/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +0 -0
  236. data/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +0 -0
  237. data/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +0 -0
  238. data/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +0 -0
  239. data/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +0 -0
  240. data/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +0 -0
  241. data/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +0 -0
  242. data/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +0 -0
  243. data/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +0 -0
  244. data/pdfjs/web/cmaps/B5-H.bcmap +0 -0
  245. data/pdfjs/web/cmaps/B5-V.bcmap +0 -0
  246. data/pdfjs/web/cmaps/B5pc-H.bcmap +0 -0
  247. data/pdfjs/web/cmaps/B5pc-V.bcmap +0 -0
  248. data/pdfjs/web/cmaps/CNS-EUC-H.bcmap +0 -0
  249. data/pdfjs/web/cmaps/CNS-EUC-V.bcmap +0 -0
  250. data/pdfjs/web/cmaps/CNS1-H.bcmap +0 -0
  251. data/pdfjs/web/cmaps/CNS1-V.bcmap +0 -0
  252. data/pdfjs/web/cmaps/CNS2-H.bcmap +0 -0
  253. data/pdfjs/web/cmaps/CNS2-V.bcmap +3 -0
  254. data/pdfjs/web/cmaps/ETHK-B5-H.bcmap +0 -0
  255. data/pdfjs/web/cmaps/ETHK-B5-V.bcmap +0 -0
  256. data/pdfjs/web/cmaps/ETen-B5-H.bcmap +0 -0
  257. data/pdfjs/web/cmaps/ETen-B5-V.bcmap +0 -0
  258. data/pdfjs/web/cmaps/ETenms-B5-H.bcmap +3 -0
  259. data/pdfjs/web/cmaps/ETenms-B5-V.bcmap +0 -0
  260. data/pdfjs/web/cmaps/EUC-H.bcmap +0 -0
  261. data/pdfjs/web/cmaps/EUC-V.bcmap +0 -0
  262. data/pdfjs/web/cmaps/Ext-H.bcmap +0 -0
  263. data/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +0 -0
  264. data/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +0 -0
  265. data/pdfjs/web/cmaps/Ext-V.bcmap +0 -0
  266. data/pdfjs/web/cmaps/GB-EUC-H.bcmap +0 -0
  267. data/pdfjs/web/cmaps/GB-EUC-V.bcmap +0 -0
  268. data/pdfjs/web/cmaps/GB-H.bcmap +4 -0
  269. data/pdfjs/web/cmaps/GB-V.bcmap +0 -0
  270. data/pdfjs/web/cmaps/GBK-EUC-H.bcmap +0 -0
  271. data/pdfjs/web/cmaps/GBK-EUC-V.bcmap +0 -0
  272. data/pdfjs/web/cmaps/GBK2K-H.bcmap +0 -0
  273. data/pdfjs/web/cmaps/GBK2K-V.bcmap +0 -0
  274. data/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +0 -0
  275. data/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +0 -0
  276. data/pdfjs/web/cmaps/GBT-EUC-H.bcmap +0 -0
  277. data/pdfjs/web/cmaps/GBT-EUC-V.bcmap +0 -0
  278. data/pdfjs/web/cmaps/GBT-H.bcmap +0 -0
  279. data/pdfjs/web/cmaps/GBT-V.bcmap +0 -0
  280. data/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +0 -0
  281. data/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +0 -0
  282. data/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +0 -0
  283. data/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +0 -0
  284. data/pdfjs/web/cmaps/H.bcmap +0 -0
  285. data/pdfjs/web/cmaps/HKdla-B5-H.bcmap +0 -0
  286. data/pdfjs/web/cmaps/HKdla-B5-V.bcmap +0 -0
  287. data/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +0 -0
  288. data/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +0 -0
  289. data/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +0 -0
  290. data/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +0 -0
  291. data/pdfjs/web/cmaps/HKm314-B5-H.bcmap +0 -0
  292. data/pdfjs/web/cmaps/HKm314-B5-V.bcmap +0 -0
  293. data/pdfjs/web/cmaps/HKm471-B5-H.bcmap +0 -0
  294. data/pdfjs/web/cmaps/HKm471-B5-V.bcmap +0 -0
  295. data/pdfjs/web/cmaps/HKscs-B5-H.bcmap +0 -0
  296. data/pdfjs/web/cmaps/HKscs-B5-V.bcmap +0 -0
  297. data/pdfjs/web/cmaps/Hankaku.bcmap +0 -0
  298. data/pdfjs/web/cmaps/Hiragana.bcmap +0 -0
  299. data/pdfjs/web/cmaps/KSC-EUC-H.bcmap +0 -0
  300. data/pdfjs/web/cmaps/KSC-EUC-V.bcmap +0 -0
  301. data/pdfjs/web/cmaps/KSC-H.bcmap +0 -0
  302. data/pdfjs/web/cmaps/KSC-Johab-H.bcmap +0 -0
  303. data/pdfjs/web/cmaps/KSC-Johab-V.bcmap +0 -0
  304. data/pdfjs/web/cmaps/KSC-V.bcmap +0 -0
  305. data/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +0 -0
  306. data/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +0 -0
  307. data/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +0 -0
  308. data/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +0 -0
  309. data/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +0 -0
  310. data/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +0 -0
  311. data/pdfjs/web/cmaps/Katakana.bcmap +0 -0
  312. data/pdfjs/web/cmaps/LICENSE +36 -0
  313. data/pdfjs/web/cmaps/NWP-H.bcmap +0 -0
  314. data/pdfjs/web/cmaps/NWP-V.bcmap +0 -0
  315. data/pdfjs/web/cmaps/RKSJ-H.bcmap +0 -0
  316. data/pdfjs/web/cmaps/RKSJ-V.bcmap +0 -0
  317. data/pdfjs/web/cmaps/Roman.bcmap +0 -0
  318. data/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +0 -0
  319. data/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +0 -0
  320. data/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +0 -0
  321. data/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +0 -0
  322. data/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +0 -0
  323. data/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +0 -0
  324. data/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +0 -0
  325. data/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +0 -0
  326. data/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +0 -0
  327. data/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +0 -0
  328. data/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +0 -0
  329. data/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +0 -0
  330. data/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +0 -0
  331. data/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +0 -0
  332. data/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +0 -0
  333. data/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +0 -0
  334. data/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +0 -0
  335. data/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +0 -0
  336. data/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +0 -0
  337. data/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +0 -0
  338. data/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +0 -0
  339. data/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +0 -0
  340. data/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +0 -0
  341. data/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +0 -0
  342. data/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +0 -0
  343. data/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +0 -0
  344. data/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +0 -0
  345. data/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +0 -0
  346. data/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +0 -0
  347. data/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +0 -0
  348. data/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +0 -0
  349. data/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +0 -0
  350. data/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +0 -0
  351. data/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +0 -0
  352. data/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +0 -0
  353. data/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +0 -0
  354. data/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +0 -0
  355. data/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +0 -0
  356. data/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +0 -0
  357. data/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +0 -0
  358. data/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +0 -0
  359. data/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +0 -0
  360. data/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +0 -0
  361. data/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +0 -0
  362. data/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +0 -0
  363. data/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +0 -0
  364. data/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +0 -0
  365. data/pdfjs/web/cmaps/V.bcmap +0 -0
  366. data/pdfjs/web/cmaps/WP-Symbol.bcmap +0 -0
  367. data/pdfjs/web/compressed.tracemonkey-pldi-09.pdf +0 -0
  368. data/pdfjs/web/debugger.css +113 -0
  369. data/pdfjs/web/debugger.js +612 -0
  370. data/pdfjs/web/images/annotation-check.svg +11 -0
  371. data/pdfjs/web/images/annotation-comment.svg +16 -0
  372. data/pdfjs/web/images/annotation-help.svg +26 -0
  373. data/pdfjs/web/images/annotation-insert.svg +10 -0
  374. data/pdfjs/web/images/annotation-key.svg +11 -0
  375. data/pdfjs/web/images/annotation-newparagraph.svg +11 -0
  376. data/pdfjs/web/images/annotation-noicon.svg +7 -0
  377. data/pdfjs/web/images/annotation-note.svg +42 -0
  378. data/pdfjs/web/images/annotation-paperclip.svg +6 -0
  379. data/pdfjs/web/images/annotation-paragraph.svg +16 -0
  380. data/pdfjs/web/images/annotation-pushpin.svg +7 -0
  381. data/pdfjs/web/images/cursor-editorFreeText.svg +3 -0
  382. data/pdfjs/web/images/cursor-editorInk.svg +4 -0
  383. data/pdfjs/web/images/findbarButton-next.svg +3 -0
  384. data/pdfjs/web/images/findbarButton-previous.svg +3 -0
  385. data/pdfjs/web/images/loading-dark.svg +24 -0
  386. data/pdfjs/web/images/loading-icon.gif +0 -0
  387. data/pdfjs/web/images/loading.svg +1 -0
  388. data/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg +3 -0
  389. data/pdfjs/web/images/secondaryToolbarButton-firstPage.svg +3 -0
  390. data/pdfjs/web/images/secondaryToolbarButton-handTool.svg +3 -0
  391. data/pdfjs/web/images/secondaryToolbarButton-lastPage.svg +3 -0
  392. data/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg +3 -0
  393. data/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg +3 -0
  394. data/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg +3 -0
  395. data/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg +3 -0
  396. data/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg +3 -0
  397. data/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg +3 -0
  398. data/pdfjs/web/images/secondaryToolbarButton-selectTool.svg +3 -0
  399. data/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg +3 -0
  400. data/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg +3 -0
  401. data/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg +3 -0
  402. data/pdfjs/web/images/shadow.png +0 -0
  403. data/pdfjs/web/images/toolbarButton-bookmark.svg +3 -0
  404. data/pdfjs/web/images/toolbarButton-currentOutlineItem.svg +3 -0
  405. data/pdfjs/web/images/toolbarButton-download.svg +4 -0
  406. data/pdfjs/web/images/toolbarButton-editorFreeText.svg +3 -0
  407. data/pdfjs/web/images/toolbarButton-editorInk.svg +4 -0
  408. data/pdfjs/web/images/toolbarButton-menuArrow.svg +3 -0
  409. data/pdfjs/web/images/toolbarButton-openFile.svg +3 -0
  410. data/pdfjs/web/images/toolbarButton-pageDown.svg +3 -0
  411. data/pdfjs/web/images/toolbarButton-pageUp.svg +3 -0
  412. data/pdfjs/web/images/toolbarButton-presentationMode.svg +3 -0
  413. data/pdfjs/web/images/toolbarButton-print.svg +3 -0
  414. data/pdfjs/web/images/toolbarButton-search.svg +3 -0
  415. data/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg +3 -0
  416. data/pdfjs/web/images/toolbarButton-sidebarToggle.svg +3 -0
  417. data/pdfjs/web/images/toolbarButton-viewAttachments.svg +3 -0
  418. data/pdfjs/web/images/toolbarButton-viewLayers.svg +3 -0
  419. data/pdfjs/web/images/toolbarButton-viewOutline.svg +3 -0
  420. data/pdfjs/web/images/toolbarButton-viewThumbnail.svg +3 -0
  421. data/pdfjs/web/images/toolbarButton-zoomIn.svg +3 -0
  422. data/pdfjs/web/images/toolbarButton-zoomOut.svg +3 -0
  423. data/pdfjs/web/images/treeitem-collapsed.svg +1 -0
  424. data/pdfjs/web/images/treeitem-expanded.svg +1 -0
  425. data/pdfjs/web/locale/ach/viewer.properties +200 -0
  426. data/pdfjs/web/locale/af/viewer.properties +177 -0
  427. data/pdfjs/web/locale/an/viewer.properties +243 -0
  428. data/pdfjs/web/locale/ar/viewer.properties +247 -0
  429. data/pdfjs/web/locale/ast/viewer.properties +207 -0
  430. data/pdfjs/web/locale/az/viewer.properties +243 -0
  431. data/pdfjs/web/locale/be/viewer.properties +274 -0
  432. data/pdfjs/web/locale/bg/viewer.properties +235 -0
  433. data/pdfjs/web/locale/bn/viewer.properties +239 -0
  434. data/pdfjs/web/locale/bo/viewer.properties +238 -0
  435. data/pdfjs/web/locale/br/viewer.properties +247 -0
  436. data/pdfjs/web/locale/brx/viewer.properties +205 -0
  437. data/pdfjs/web/locale/bs/viewer.properties +194 -0
  438. data/pdfjs/web/locale/ca/viewer.properties +251 -0
  439. data/pdfjs/web/locale/cak/viewer.properties +249 -0
  440. data/pdfjs/web/locale/ckb/viewer.properties +234 -0
  441. data/pdfjs/web/locale/cs/viewer.properties +274 -0
  442. data/pdfjs/web/locale/cy/viewer.properties +274 -0
  443. data/pdfjs/web/locale/da/viewer.properties +274 -0
  444. data/pdfjs/web/locale/de/viewer.properties +274 -0
  445. data/pdfjs/web/locale/dsb/viewer.properties +274 -0
  446. data/pdfjs/web/locale/el/viewer.properties +274 -0
  447. data/pdfjs/web/locale/en-CA/viewer.properties +274 -0
  448. data/pdfjs/web/locale/en-GB/viewer.properties +274 -0
  449. data/pdfjs/web/locale/en-US/viewer.properties +253 -0
  450. data/pdfjs/web/locale/eo/viewer.properties +274 -0
  451. data/pdfjs/web/locale/es-AR/viewer.properties +274 -0
  452. data/pdfjs/web/locale/es-CL/viewer.properties +274 -0
  453. data/pdfjs/web/locale/es-ES/viewer.properties +274 -0
  454. data/pdfjs/web/locale/es-MX/viewer.properties +274 -0
  455. data/pdfjs/web/locale/et/viewer.properties +262 -0
  456. data/pdfjs/web/locale/eu/viewer.properties +272 -0
  457. data/pdfjs/web/locale/fa/viewer.properties +216 -0
  458. data/pdfjs/web/locale/ff/viewer.properties +235 -0
  459. data/pdfjs/web/locale/fi/viewer.properties +274 -0
  460. data/pdfjs/web/locale/fr/viewer.properties +274 -0
  461. data/pdfjs/web/locale/fy-NL/viewer.properties +274 -0
  462. data/pdfjs/web/locale/ga-IE/viewer.properties +202 -0
  463. data/pdfjs/web/locale/gd/viewer.properties +249 -0
  464. data/pdfjs/web/locale/gl/viewer.properties +249 -0
  465. data/pdfjs/web/locale/gn/viewer.properties +274 -0
  466. data/pdfjs/web/locale/gu-IN/viewer.properties +235 -0
  467. data/pdfjs/web/locale/he/viewer.properties +274 -0
  468. data/pdfjs/web/locale/hi-IN/viewer.properties +235 -0
  469. data/pdfjs/web/locale/hr/viewer.properties +249 -0
  470. data/pdfjs/web/locale/hsb/viewer.properties +274 -0
  471. data/pdfjs/web/locale/hu/viewer.properties +274 -0
  472. data/pdfjs/web/locale/hy-AM/viewer.properties +239 -0
  473. data/pdfjs/web/locale/hye/viewer.properties +252 -0
  474. data/pdfjs/web/locale/ia/viewer.properties +274 -0
  475. data/pdfjs/web/locale/id/viewer.properties +274 -0
  476. data/pdfjs/web/locale/is/viewer.properties +274 -0
  477. data/pdfjs/web/locale/it/viewer.properties +215 -0
  478. data/pdfjs/web/locale/ja/viewer.properties +274 -0
  479. data/pdfjs/web/locale/ka/viewer.properties +274 -0
  480. data/pdfjs/web/locale/kab/viewer.properties +274 -0
  481. data/pdfjs/web/locale/kk/viewer.properties +274 -0
  482. data/pdfjs/web/locale/km/viewer.properties +210 -0
  483. data/pdfjs/web/locale/kn/viewer.properties +187 -0
  484. data/pdfjs/web/locale/ko/viewer.properties +274 -0
  485. data/pdfjs/web/locale/lij/viewer.properties +235 -0
  486. data/pdfjs/web/locale/lo/viewer.properties +145 -0
  487. data/pdfjs/web/locale/locale.properties +327 -0
  488. data/pdfjs/web/locale/lt/viewer.properties +260 -0
  489. data/pdfjs/web/locale/ltg/viewer.properties +213 -0
  490. data/pdfjs/web/locale/lv/viewer.properties +235 -0
  491. data/pdfjs/web/locale/meh/viewer.properties +111 -0
  492. data/pdfjs/web/locale/mk/viewer.properties +139 -0
  493. data/pdfjs/web/locale/mr/viewer.properties +231 -0
  494. data/pdfjs/web/locale/ms/viewer.properties +235 -0
  495. data/pdfjs/web/locale/my/viewer.properties +191 -0
  496. data/pdfjs/web/locale/nb-NO/viewer.properties +274 -0
  497. data/pdfjs/web/locale/ne-NP/viewer.properties +218 -0
  498. data/pdfjs/web/locale/nl/viewer.properties +274 -0
  499. data/pdfjs/web/locale/nn-NO/viewer.properties +274 -0
  500. data/pdfjs/web/locale/oc/viewer.properties +274 -0
  501. data/pdfjs/web/locale/pa-IN/viewer.properties +285 -0
  502. data/pdfjs/web/locale/pl/viewer.properties +274 -0
  503. data/pdfjs/web/locale/pt-BR/viewer.properties +274 -0
  504. data/pdfjs/web/locale/pt-PT/viewer.properties +274 -0
  505. data/pdfjs/web/locale/rm/viewer.properties +274 -0
  506. data/pdfjs/web/locale/ro/viewer.properties +241 -0
  507. data/pdfjs/web/locale/ru/viewer.properties +274 -0
  508. data/pdfjs/web/locale/sat/viewer.properties +198 -0
  509. data/pdfjs/web/locale/sc/viewer.properties +240 -0
  510. data/pdfjs/web/locale/scn/viewer.properties +101 -0
  511. data/pdfjs/web/locale/sco/viewer.properties +249 -0
  512. data/pdfjs/web/locale/si/viewer.properties +237 -0
  513. data/pdfjs/web/locale/sk/viewer.properties +274 -0
  514. data/pdfjs/web/locale/sl/viewer.properties +274 -0
  515. data/pdfjs/web/locale/son/viewer.properties +173 -0
  516. data/pdfjs/web/locale/sq/viewer.properties +267 -0
  517. data/pdfjs/web/locale/sr/viewer.properties +253 -0
  518. data/pdfjs/web/locale/sv-SE/viewer.properties +274 -0
  519. data/pdfjs/web/locale/szl/viewer.properties +245 -0
  520. data/pdfjs/web/locale/ta/viewer.properties +194 -0
  521. data/pdfjs/web/locale/te/viewer.properties +237 -0
  522. data/pdfjs/web/locale/tg/viewer.properties +274 -0
  523. data/pdfjs/web/locale/th/viewer.properties +274 -0
  524. data/pdfjs/web/locale/tl/viewer.properties +243 -0
  525. data/pdfjs/web/locale/tr/viewer.properties +274 -0
  526. data/pdfjs/web/locale/trs/viewer.properties +206 -0
  527. data/pdfjs/web/locale/uk/viewer.properties +274 -0
  528. data/pdfjs/web/locale/ur/viewer.properties +239 -0
  529. data/pdfjs/web/locale/uz/viewer.properties +163 -0
  530. data/pdfjs/web/locale/vi/viewer.properties +274 -0
  531. data/pdfjs/web/locale/wo/viewer.properties +123 -0
  532. data/pdfjs/web/locale/xh/viewer.properties +177 -0
  533. data/pdfjs/web/locale/zh-CN/viewer.properties +274 -0
  534. data/pdfjs/web/locale/zh-TW/viewer.properties +274 -0
  535. data/pdfjs/web/standard_fonts/FoxitDingbats.pfb +0 -0
  536. data/pdfjs/web/standard_fonts/FoxitFixed.pfb +0 -0
  537. data/pdfjs/web/standard_fonts/FoxitFixedBold.pfb +0 -0
  538. data/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb +0 -0
  539. data/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb +0 -0
  540. data/pdfjs/web/standard_fonts/FoxitSans.pfb +0 -0
  541. data/pdfjs/web/standard_fonts/FoxitSansBold.pfb +0 -0
  542. data/pdfjs/web/standard_fonts/FoxitSansBoldItalic.pfb +0 -0
  543. data/pdfjs/web/standard_fonts/FoxitSansItalic.pfb +0 -0
  544. data/pdfjs/web/standard_fonts/FoxitSerif.pfb +0 -0
  545. data/pdfjs/web/standard_fonts/FoxitSerifBold.pfb +0 -0
  546. data/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb +0 -0
  547. data/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb +0 -0
  548. data/pdfjs/web/standard_fonts/FoxitSymbol.pfb +0 -0
  549. data/pdfjs/web/standard_fonts/LICENSE_FOXIT +27 -0
  550. data/pdfjs/web/standard_fonts/LICENSE_LIBERATION +102 -0
  551. data/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf +0 -0
  552. data/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf +0 -0
  553. data/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf +0 -0
  554. data/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf +0 -0
  555. data/pdfjs/web/viewer.css +3029 -0
  556. data/pdfjs/web/viewer.html +433 -0
  557. data/pdfjs/web/viewer.js +13566 -0
  558. data/pdfjs/web/viewer.js.map +1 -0
  559. metadata +643 -0
@@ -0,0 +1,210 @@
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.title): The tooltip for the pageNumber input.
22
+ page.title=ទំព័រ
23
+ # LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
24
+ # representing the total number of pages in the document.
25
+ of_pages=នៃ {{pagesCount}}
26
+ # LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
27
+ # will be replaced by a number representing the currently visible page,
28
+ # respectively a number representing the total number of pages in the document.
29
+ page_of_pages=({{pageNumber}} នៃ {{pagesCount}})
30
+
31
+ zoom_out.title=​បង្រួម
32
+ zoom_out_label=​បង្រួម
33
+ zoom_in.title=​ពង្រីក
34
+ zoom_in_label=​ពង្រីក
35
+ zoom.title=ពង្រីក
36
+ presentation_mode.title=ប្ដូរ​ទៅ​របៀប​បទ​បង្ហាញ
37
+ presentation_mode_label=របៀប​បទ​បង្ហាញ
38
+ open_file.title=បើក​ឯកសារ
39
+ open_file_label=បើក
40
+ print.title=បោះពុម្ព
41
+ print_label=បោះពុម្ព
42
+ download.title=ទាញ​យក
43
+ download_label=ទាញ​យក
44
+ bookmark.title=ទិដ្ឋភាព​បច្ចុប្បន្ន (ចម្លង ឬ​បើក​នៅ​ក្នុង​បង្អួច​ថ្មី)
45
+ bookmark_label=ទិដ្ឋភាព​បច្ចុប្បន្ន
46
+
47
+ # Secondary toolbar and context menu
48
+ tools.title=ឧបករណ៍
49
+ tools_label=ឧបករណ៍
50
+ first_page.title=ទៅកាន់​ទំព័រ​ដំបូង​
51
+ first_page_label=ទៅកាន់​ទំព័រ​ដំបូង​
52
+ last_page.title=ទៅកាន់​ទំព័រ​ចុងក្រោយ​
53
+ last_page_label=ទៅកាន់​ទំព័រ​ចុងក្រោយ
54
+ page_rotate_cw.title=បង្វិល​ស្រប​ទ្រនិច​នាឡិកា
55
+ page_rotate_cw_label=បង្វិល​ស្រប​ទ្រនិច​នាឡិកា
56
+ page_rotate_ccw.title=បង្វិល​ច្រាស​ទ្រនិច​នាឡិកា​​
57
+ page_rotate_ccw_label=បង្វិល​ច្រាស​ទ្រនិច​នាឡិកា​​
58
+
59
+ cursor_text_select_tool.title=បើក​ឧបករណ៍​ជ្រើស​អត្ថបទ
60
+ cursor_text_select_tool_label=ឧបករណ៍​ជ្រើស​អត្ថបទ
61
+ cursor_hand_tool.title=បើក​ឧបករណ៍​ដៃ
62
+ cursor_hand_tool_label=ឧបករណ៍​ដៃ
63
+
64
+
65
+
66
+ # Document properties dialog box
67
+ document_properties.title=លក្ខណ​សម្បត្តិ​ឯកសារ…
68
+ document_properties_label=លក្ខណ​សម្បត្តិ​ឯកសារ…
69
+ document_properties_file_name=ឈ្មោះ​ឯកសារ៖
70
+ document_properties_file_size=ទំហំ​ឯកសារ៖
71
+ # LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
72
+ # will be replaced by the PDF file size in kilobytes, respectively in bytes.
73
+ document_properties_kb={{size_kb}} KB ({{size_b}} បៃ)
74
+ # LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
75
+ # will be replaced by the PDF file size in megabytes, respectively in bytes.
76
+ document_properties_mb={{size_mb}} MB ({{size_b}} បៃ)
77
+ document_properties_title=ចំណងជើង៖
78
+ document_properties_author=អ្នក​និពន្ធ៖
79
+ document_properties_subject=ប្រធានបទ៖
80
+ document_properties_keywords=ពាក្យ​គន្លឹះ៖
81
+ document_properties_creation_date=កាលបរិច្ឆេទ​បង្កើត៖
82
+ document_properties_modification_date=កាលបរិច្ឆេទ​កែប្រែ៖
83
+ # LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
84
+ # will be replaced by the creation/modification date, and time, of the PDF file.
85
+ document_properties_date_string={{date}}, {{time}}
86
+ document_properties_creator=អ្នក​បង្កើត៖
87
+ document_properties_producer=កម្មវិធី​បង្កើត PDF ៖
88
+ document_properties_version=កំណែ PDF ៖
89
+ document_properties_page_count=ចំនួន​ទំព័រ៖
90
+ document_properties_page_size_unit_inches=អ៊ីញ
91
+ document_properties_page_size_unit_millimeters=មម
92
+ document_properties_page_size_orientation_portrait=បញ្ឈរ
93
+ document_properties_page_size_orientation_landscape=ផ្តេក
94
+ document_properties_page_size_name_a3=A3
95
+ document_properties_page_size_name_a4=A4
96
+ document_properties_page_size_name_letter=សំបុត្រ
97
+ # LOCALIZATION NOTE (document_properties_page_size_dimension_string):
98
+ # "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
99
+ # the size, respectively their unit of measurement and orientation, of the (current) page.
100
+ document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
101
+ # LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
102
+ # "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
103
+ # the size, respectively their unit of measurement, name, and orientation, of the (current) page.
104
+ document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
105
+ # LOCALIZATION NOTE (document_properties_linearized): The linearization status of
106
+ # the document; usually called "Fast Web View" in English locales of Adobe software.
107
+ document_properties_linearized_yes=បាទ/ចាស
108
+ document_properties_linearized_no=ទេ
109
+ document_properties_close=បិទ
110
+
111
+ print_progress_message=កំពុង​រៀបចំ​ឯកសារ​សម្រាប់​បោះពុម្ព…
112
+ # LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
113
+ # a numerical per cent value.
114
+ print_progress_percent={{progress}}%
115
+ print_progress_close=បោះបង់
116
+
117
+ # Tooltips and alt text for side panel toolbar buttons
118
+ # (the _label strings are alt text for the buttons, the .title strings are
119
+ # tooltips)
120
+ toggle_sidebar.title=បិទ/បើក​គ្រាប់​រំកិល
121
+ toggle_sidebar_label=បិទ/បើក​គ្រាប់​រំកិល
122
+ document_outline.title=បង្ហាញ​គ្រោង​ឯកសារ (ចុច​ទ្វេ​ដង​ដើម្បី​ពង្រីក/បង្រួម​ធាតុ​ទាំងអស់)
123
+ document_outline_label=គ្រោង​ឯកសារ
124
+ attachments.title=បង្ហាញ​ឯកសារ​ភ្ជាប់
125
+ attachments_label=ឯកសារ​ភ្ជាប់
126
+ thumbs.title=បង្ហាញ​រូបភាព​តូចៗ
127
+ thumbs_label=រួបភាព​តូចៗ
128
+ findbar.title=រក​នៅ​ក្នុង​ឯកសារ
129
+ findbar_label=រក
130
+
131
+ # LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
132
+ # Thumbnails panel item (tooltip and alt text for images)
133
+ # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
134
+ # number.
135
+ thumb_page_title=ទំព័រ {{page}}
136
+ # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
137
+ # number.
138
+ thumb_page_canvas=រូបភាព​តូច​របស់​ទំព័រ {{page}}
139
+
140
+ # Find panel button title and messages
141
+ find_input.title=រក
142
+ find_input.placeholder=រក​នៅ​ក្នុង​ឯកសារ...
143
+ find_previous.title=រក​ពាក្យ ឬ​ឃ្លា​ដែល​បាន​ជួប​មុន
144
+ find_previous_label=មុន
145
+ find_next.title=រក​ពាក្យ ឬ​ឃ្លា​ដែល​បាន​ជួប​បន្ទាប់
146
+ find_next_label=បន្ទាប់
147
+ find_highlight=បន្លិច​ទាំងអស់
148
+ find_match_case_label=ករណី​ដំណូច
149
+ find_reached_top=បាន​បន្ត​ពី​ខាង​ក្រោម ទៅ​ដល់​ខាង​​លើ​នៃ​ឯកសារ
150
+ find_reached_bottom=បាន​បន្ត​ពី​ខាងលើ ទៅដល់​ចុង​​នៃ​ឯកសារ
151
+ # LOCALIZATION NOTE (find_match_count): The supported plural forms are
152
+ # [one|two|few|many|other], with [other] as the default value.
153
+ # "{{current}}" and "{{total}}" will be replaced by a number representing the
154
+ # index of the currently active find result, respectively a number representing
155
+ # the total number of matches in the document.
156
+ # LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
157
+ # [zero|one|two|few|many|other], with [other] as the default value.
158
+ # "{{limit}}" will be replaced by a numerical value.
159
+ find_not_found=រក​មិន​ឃើញ​ពាក្យ ឬ​ឃ្លា
160
+
161
+ # Error panel labels
162
+ error_more_info=ព័ត៌មាន​បន្ថែម
163
+ error_less_info=ព័ត៌មាន​តិចតួច
164
+ error_close=បិទ
165
+ # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
166
+ # replaced by the PDF.JS version and build ID.
167
+ error_version_info=PDF.js v{{version}} (build: {{build}})
168
+ # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
169
+ # english string describing the error.
170
+ error_message=សារ ៖ {{message}}
171
+ # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
172
+ # trace.
173
+ error_stack=ជង់ ៖ {{stack}}
174
+ # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
175
+ error_file=ឯកសារ ៖ {{file}}
176
+ # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
177
+ error_line=ជួរ ៖ {{line}}
178
+ rendering_error=មាន​កំហុស​បាន​កើតឡើង​ពេល​បង្ហាញ​ទំព័រ ។
179
+
180
+ # Predefined zoom values
181
+ page_scale_width=ទទឹង​ទំព័រ
182
+ page_scale_fit=សម​ទំព័រ
183
+ page_scale_auto=ពង្រីក​ស្វ័យប្រវត្តិ
184
+ page_scale_actual=ទំហំ​ជាក់ស្ដែង
185
+ # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
186
+ # numerical scale value.
187
+ page_scale_percent={{scale}}%
188
+
189
+ loading_error=មាន​កំហុស​បាន​កើតឡើង​ពេល​កំពុង​ផ្ទុក PDF ។
190
+ invalid_file_error=ឯកសារ PDF ខូច ឬ​មិន​ត្រឹមត្រូវ ។
191
+ missing_file_error=បាត់​ឯកសារ PDF
192
+ unexpected_response_error=ការ​ឆ្លើយ​តម​ម៉ាស៊ីន​មេ​ដែល​មិន​បាន​រំពឹង។
193
+
194
+ # LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
195
+ # replaced by the modification date, and time, of the annotation.
196
+
197
+ # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
198
+ # "{{type}}" will be replaced with an annotation type from a list defined in
199
+ # the PDF spec (32000-1:2008 Table 169 – Annotation types).
200
+ # Some common types are e.g.: "Check", "Text", "Comment", "Note"
201
+ text_annotation_type.alt=[{{type}} ចំណារ​ពន្យល់]
202
+ password_label=បញ្ចូល​ពាក្យសម្ងាត់​ដើម្បី​បើក​ឯកសារ PDF នេះ។
203
+ password_invalid=ពាក្យសម្ងាត់​មិន​ត្រឹមត្រូវ។ សូម​ព្យាយាម​ម្ដងទៀត។
204
+ password_ok=យល់​ព្រម
205
+ password_cancel=បោះបង់
206
+
207
+ printing_not_supported=ការ​ព្រមាន ៖ កា​រ​បោះពុម្ព​មិន​ត្រូវ​បាន​គាំទ្រ​ពេញលេញ​ដោយ​កម្មវិធី​រុករក​នេះ​ទេ ។
208
+ printing_not_ready=ព្រមាន៖ PDF មិន​ត្រូវ​បាន​ផ្ទុក​ទាំងស្រុង​ដើម្បី​បោះពុម្ព​ទេ។
209
+ web_fonts_disabled=បាន​បិទ​ពុម្ពអក្សរ​បណ្ដាញ ៖ មិន​អាច​ប្រើ​ពុម្ពអក្សរ PDF ដែល​បាន​បង្កប់​បាន​ទេ ។
210
+
@@ -0,0 +1,187 @@
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.title): The tooltip for the pageNumber input.
22
+ page.title=ಪುಟ
23
+ # LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
24
+ # representing the total number of pages in the document.
25
+ of_pages={{pagesCount}} ರಲ್ಲಿ
26
+ # LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
27
+ # will be replaced by a number representing the currently visible page,
28
+ # respectively a number representing the total number of pages in the document.
29
+ page_of_pages=({{pagesCount}} ರಲ್ಲಿ {{pageNumber}})
30
+
31
+ zoom_out.title=ಕಿರಿದಾಗಿಸು
32
+ zoom_out_label=ಕಿರಿದಾಗಿಸಿ
33
+ zoom_in.title=ಹಿರಿದಾಗಿಸು
34
+ zoom_in_label=ಹಿರಿದಾಗಿಸಿ
35
+ zoom.title=ಗಾತ್ರಬದಲಿಸು
36
+ presentation_mode.title=ಪ್ರಸ್ತುತಿ (ಪ್ರಸೆಂಟೇಶನ್) ಕ್ರಮಕ್ಕೆ ಬದಲಾಯಿಸು
37
+ presentation_mode_label=ಪ್ರಸ್ತುತಿ (ಪ್ರಸೆಂಟೇಶನ್) ಕ್ರಮ
38
+ open_file.title=ಕಡತವನ್ನು ತೆರೆ
39
+ open_file_label=ತೆರೆಯಿರಿ
40
+ print.title=ಮುದ್ರಿಸು
41
+ print_label=ಮುದ್ರಿಸಿ
42
+ download.title=ಇಳಿಸು
43
+ download_label=ಇಳಿಸಿಕೊಳ್ಳಿ
44
+ bookmark.title=ಪ್ರಸಕ್ತ ನೋಟ (ಪ್ರತಿ ಮಾಡು ಅಥವ ಹೊಸ ಕಿಟಕಿಯಲ್ಲಿ ತೆರೆ)
45
+ bookmark_label=ಪ್ರಸಕ್ತ ನೋಟ
46
+
47
+ # Secondary toolbar and context menu
48
+ tools.title=ಉಪಕರಣಗಳು
49
+ tools_label=ಉಪಕರಣಗಳು
50
+ first_page.title=ಮೊದಲ ಪುಟಕ್ಕೆ ತೆರಳು
51
+ first_page_label=ಮೊದಲ ಪುಟಕ್ಕೆ ತೆರಳು
52
+ last_page.title=ಕೊನೆಯ ಪುಟಕ್ಕೆ ತೆರಳು
53
+ last_page_label=ಕೊನೆಯ ಪುಟಕ್ಕೆ ತೆರಳು
54
+ page_rotate_cw.title=ಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು
55
+ page_rotate_cw_label=ಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು
56
+ page_rotate_ccw.title=ಅಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು
57
+ page_rotate_ccw_label=ಅಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು
58
+
59
+ cursor_text_select_tool.title=ಪಠ್ಯ ಆಯ್ಕೆ ಉಪಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ
60
+ cursor_text_select_tool_label=ಪಠ್ಯ ಆಯ್ಕೆಯ ಉಪಕರಣ
61
+ cursor_hand_tool.title=ಕೈ ಉಪಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ
62
+ cursor_hand_tool_label=ಕೈ ಉಪಕರಣ
63
+
64
+
65
+
66
+ # Document properties dialog box
67
+ document_properties.title=ಡಾಕ್ಯುಮೆಂಟ್‌ ಗುಣಗಳು...
68
+ document_properties_label=ಡಾಕ್ಯುಮೆಂಟ್‌ ಗುಣಗಳು...
69
+ document_properties_file_name=ಕಡತದ ಹೆಸರು:
70
+ document_properties_file_size=ಕಡತದ ಗಾತ್ರ:
71
+ # LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
72
+ # will be replaced by the PDF file size in kilobytes, respectively in bytes.
73
+ document_properties_kb={{size_kb}} KB ({{size_b}} ಬೈಟ್‍ಗಳು)
74
+ # LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
75
+ # will be replaced by the PDF file size in megabytes, respectively in bytes.
76
+ document_properties_mb={{size_mb}} MB ({{size_b}} ಬೈಟ್‍ಗಳು)
77
+ document_properties_title=ಶೀರ್ಷಿಕೆ:
78
+ document_properties_author=ಕರ್ತೃ:
79
+ document_properties_subject=ವಿಷಯ:
80
+ document_properties_keywords=ಮುಖ್ಯಪದಗಳು:
81
+ document_properties_creation_date=ರಚಿಸಿದ ದಿನಾಂಕ:
82
+ document_properties_modification_date=ಮಾರ್ಪಡಿಸಲಾದ ದಿನಾಂಕ:
83
+ # LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
84
+ # will be replaced by the creation/modification date, and time, of the PDF file.
85
+ document_properties_date_string={{date}}, {{time}}
86
+ document_properties_creator=ರಚಿಸಿದವರು:
87
+ document_properties_producer=PDF ಉತ್ಪಾದಕ:
88
+ document_properties_version=PDF ಆವೃತ್ತಿ:
89
+ document_properties_page_count=ಪುಟದ ಎಣಿಕೆ:
90
+ document_properties_page_size_unit_inches=ಇದರಲ್ಲಿ
91
+ document_properties_page_size_orientation_portrait=ಭಾವಚಿತ್ರ
92
+ document_properties_page_size_orientation_landscape=ಪ್ರಕೃತಿ ಚಿತ್ರ
93
+ # LOCALIZATION NOTE (document_properties_page_size_dimension_string):
94
+ # "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
95
+ # the size, respectively their unit of measurement and orientation, of the (current) page.
96
+ # LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
97
+ # "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
98
+ # the size, respectively their unit of measurement, name, and orientation, of the (current) page.
99
+ document_properties_close=ಮುಚ್ಚು
100
+
101
+ print_progress_message=ಮುದ್ರಿಸುವುದಕ್ಕಾಗಿ ದಸ್ತಾವೇಜನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗುತ್ತಿದೆ…
102
+ # LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
103
+ # a numerical per cent value.
104
+ print_progress_percent={{progress}}%
105
+ print_progress_close=ರದ್ದು ಮಾಡು
106
+
107
+ # Tooltips and alt text for side panel toolbar buttons
108
+ # (the _label strings are alt text for the buttons, the .title strings are
109
+ # tooltips)
110
+ toggle_sidebar.title=ಬದಿಪಟ್ಟಿಯನ್ನು ಹೊರಳಿಸು
111
+ toggle_sidebar_label=ಬದಿಪಟ್ಟಿಯನ್ನು ಹೊರಳಿಸು
112
+ document_outline_label=ದಸ್ತಾವೇಜಿನ ಹೊರರೇಖೆ
113
+ attachments.title=ಲಗತ್ತುಗಳನ್ನು ತೋರಿಸು
114
+ attachments_label=ಲಗತ್ತುಗಳು
115
+ thumbs.title=ಚಿಕ್ಕಚಿತ್ರದಂತೆ ತೋರಿಸು
116
+ thumbs_label=ಚಿಕ್ಕಚಿತ್ರಗಳು
117
+ findbar.title=ದಸ್ತಾವೇಜಿನಲ್ಲಿ ಹುಡುಕು
118
+ findbar_label=ಹುಡುಕು
119
+
120
+ # Thumbnails panel item (tooltip and alt text for images)
121
+ # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
122
+ # number.
123
+ thumb_page_title=ಪುಟ {{page}}
124
+ # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
125
+ # number.
126
+ thumb_page_canvas=ಪುಟವನ್ನು ಚಿಕ್ಕಚಿತ್ರದಂತೆ ತೋರಿಸು {{page}}
127
+
128
+ # Find panel button title and messages
129
+ find_input.title=ಹುಡುಕು
130
+ find_input.placeholder=ದಸ್ತಾವೇಜಿನಲ್ಲಿ ಹುಡುಕು…
131
+ find_previous.title=ವಾಕ್ಯದ ಹಿಂದಿನ ಇರುವಿಕೆಯನ್ನು ಹುಡುಕು
132
+ find_previous_label=ಹಿಂದಿನ
133
+ find_next.title=ವಾಕ್ಯದ ಮುಂದಿನ ಇರುವಿಕೆಯನ್ನು ಹುಡುಕು
134
+ find_next_label=ಮುಂದಿನ
135
+ find_highlight=ಎಲ್ಲವನ್ನು ಹೈಲೈಟ್ ಮಾಡು
136
+ find_match_case_label=ಕೇಸನ್ನು ಹೊಂದಿಸು
137
+ find_reached_top=ದಸ್ತಾವೇಜಿನ ಮೇಲ್ಭಾಗವನ್ನು ತಲುಪಿದೆ, ಕೆಳಗಿನಿಂದ ಆರಂಭಿಸು
138
+ find_reached_bottom=ದಸ್ತಾವೇಜಿನ ಕೊನೆಯನ್ನು ತಲುಪಿದೆ, ಮೇಲಿನಿಂದ ಆರಂಭಿಸು
139
+ find_not_found=ವಾಕ್ಯವು ಕಂಡು ಬಂದಿಲ್ಲ
140
+
141
+ # Error panel labels
142
+ error_more_info=ಹೆಚ್ಚಿನ ಮಾಹಿತಿ
143
+ error_less_info=ಕಡಿಮೆ ಮಾಹಿತಿ
144
+ error_close=ಮುಚ್ಚು
145
+ # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
146
+ # replaced by the PDF.JS version and build ID.
147
+ error_version_info=PDF.js v{{version}} (build: {{build}})
148
+ # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
149
+ # english string describing the error.
150
+ error_message=ಸಂದೇಶ: {{message}}
151
+ # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
152
+ # trace.
153
+ error_stack=ರಾಶಿ: {{stack}}
154
+ # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
155
+ error_file=ಕಡತ: {{file}}
156
+ # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
157
+ error_line=ಸಾಲು: {{line}}
158
+ rendering_error=ಪುಟವನ್ನು ನಿರೂಪಿಸುವಾಗ ಒಂದು ದೋಷ ಎದುರಾಗಿದೆ.
159
+
160
+ # Predefined zoom values
161
+ page_scale_width=ಪುಟದ ಅಗಲ
162
+ page_scale_fit=ಪುಟದ ಸರಿಹೊಂದಿಕೆ
163
+ page_scale_auto=ಸ್ವಯಂಚಾಲಿತ ಗಾತ್ರಬದಲಾವಣೆ
164
+ page_scale_actual=ನಿಜವಾದ ಗಾತ್ರ
165
+ # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
166
+ # numerical scale value.
167
+ page_scale_percent={{scale}}%
168
+
169
+ loading_error=PDF ಅನ್ನು ಲೋಡ್ ಮಾಡುವಾಗ ಒಂದು ದೋಷ ಎದುರಾಗಿದೆ.
170
+ invalid_file_error=ಅಮಾನ್ಯವಾದ ಅಥವ ಹಾಳಾದ PDF ಕಡತ.
171
+ missing_file_error=PDF ಕಡತ ಇಲ್ಲ.
172
+ unexpected_response_error=ಅನಿರೀಕ್ಷಿತವಾದ ಪೂರೈಕೆಗಣಕದ ಪ್ರತಿಕ್ರಿಯೆ.
173
+
174
+ # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
175
+ # "{{type}}" will be replaced with an annotation type from a list defined in
176
+ # the PDF spec (32000-1:2008 Table 169 – Annotation types).
177
+ # Some common types are e.g.: "Check", "Text", "Comment", "Note"
178
+ text_annotation_type.alt=[{{type}} ಟಿಪ್ಪಣಿ]
179
+ password_label=PDF ಅನ್ನು ತೆರೆಯಲು ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ.
180
+ password_invalid=ಅಮಾನ್ಯವಾದ ಗುಪ್ತಪದ, ದಯವಿಟ್ಟು ಇನ್ನೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ.
181
+ password_ok=OK
182
+ password_cancel=ರದ್ದು ಮಾಡು
183
+
184
+ printing_not_supported=ಎಚ್ಚರಿಕೆ: ಈ ಜಾಲವೀಕ್ಷಕದಲ್ಲಿ ಮುದ್ರಣಕ್ಕೆ ಸಂಪೂರ್ಣ ಬೆಂಬಲವಿಲ್ಲ.
185
+ printing_not_ready=ಎಚ್ಚರಿಕೆ: PDF ಕಡತವು ಮುದ್ರಿಸಲು ಸಂಪೂರ್ಣವಾಗಿ ಲೋಡ್ ಆಗಿಲ್ಲ.
186
+ web_fonts_disabled=ಜಾಲ ಅಕ್ಷರಶೈಲಿಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ: ಅಡಕಗೊಳಿಸಿದ PDF ಅಕ್ಷರಶೈಲಿಗಳನ್ನು ಬಳಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ.
187
+
@@ -0,0 +1,274 @@
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.title): The tooltip for the pageNumber input.
22
+ page.title=페이지
23
+ # LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
24
+ # representing the total number of pages in the document.
25
+ of_pages=/ {{pagesCount}}
26
+ # LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
27
+ # will be replaced by a number representing the currently visible page,
28
+ # respectively a number representing the total number of pages in the document.
29
+ page_of_pages=({{pageNumber}} / {{pagesCount}})
30
+
31
+ zoom_out.title=축소
32
+ zoom_out_label=축소
33
+ zoom_in.title=확대
34
+ zoom_in_label=확대
35
+ zoom.title=확대/축소
36
+ presentation_mode.title=프레젠테이션 모드로 전환
37
+ presentation_mode_label=프레젠테이션 모드
38
+ open_file.title=파일 열기
39
+ open_file_label=열기
40
+ print.title=인쇄
41
+ print_label=인쇄
42
+ download.title=다운로드
43
+ download_label=다운로드
44
+ save.title=저장
45
+ save_label=저장
46
+ bookmark.title=현재 보기 (복사 또는 새 창에서 열기)
47
+ bookmark_label=현재 보기
48
+
49
+ # Secondary toolbar and context menu
50
+ tools.title=도구
51
+ tools_label=도구
52
+ first_page.title=첫 페이지로 이동
53
+ first_page_label=첫 페이지로 이동
54
+ last_page.title=마지막 페이지로 이동
55
+ last_page_label=마지막 페이지로 이동
56
+ page_rotate_cw.title=시계방향으로 회전
57
+ page_rotate_cw_label=시계방향으로 회전
58
+ page_rotate_ccw.title=시계 반대방향으로 회전
59
+ page_rotate_ccw_label=시계 반대방향으로 회전
60
+
61
+ cursor_text_select_tool.title=텍스트 선택 도구 활성화
62
+ cursor_text_select_tool_label=텍스트 선택 도구
63
+ cursor_hand_tool.title=손 도구 활성화
64
+ cursor_hand_tool_label=손 도구
65
+
66
+ scroll_page.title=페이지 스크롤 사용
67
+ scroll_page_label=페이지 스크롤
68
+ scroll_vertical.title=세로 스크롤 사용
69
+ scroll_vertical_label=세로 스크롤
70
+ scroll_horizontal.title=가로 스크롤 사용
71
+ scroll_horizontal_label=가로 스크롤
72
+ scroll_wrapped.title=래핑(자동 줄 바꿈) 스크롤 사용
73
+ scroll_wrapped_label=래핑 스크롤
74
+
75
+ spread_none.title=한 페이지 보기
76
+ spread_none_label=펼쳐짐 없음
77
+ spread_odd.title=홀수 페이지로 시작하는 두 페이지 보기
78
+ spread_odd_label=홀수 펼쳐짐
79
+ spread_even.title=짝수 페이지로 시작하는 두 페이지 보기
80
+ spread_even_label=짝수 펼쳐짐
81
+
82
+ # Document properties dialog box
83
+ document_properties.title=문서 속성…
84
+ document_properties_label=문서 속성…
85
+ document_properties_file_name=파일 이름:
86
+ document_properties_file_size=파일 크기:
87
+ # LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
88
+ # will be replaced by the PDF file size in kilobytes, respectively in bytes.
89
+ document_properties_kb={{size_kb}} KB ({{size_b}}바이트)
90
+ # LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
91
+ # will be replaced by the PDF file size in megabytes, respectively in bytes.
92
+ document_properties_mb={{size_mb}} MB ({{size_b}}바이트)
93
+ document_properties_title=제목:
94
+ document_properties_author=작성자:
95
+ document_properties_subject=주제:
96
+ document_properties_keywords=키워드:
97
+ document_properties_creation_date=작성 날짜:
98
+ document_properties_modification_date=수정 날짜:
99
+ # LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
100
+ # will be replaced by the creation/modification date, and time, of the PDF file.
101
+ document_properties_date_string={{date}}, {{time}}
102
+ document_properties_creator=작성 프로그램:
103
+ document_properties_producer=PDF 변환 소프트웨어:
104
+ document_properties_version=PDF 버전:
105
+ document_properties_page_count=페이지 수:
106
+ document_properties_page_size=페이지 크기:
107
+ document_properties_page_size_unit_inches=in
108
+ document_properties_page_size_unit_millimeters=mm
109
+ document_properties_page_size_orientation_portrait=세로 방향
110
+ document_properties_page_size_orientation_landscape=가로 방향
111
+ document_properties_page_size_name_a3=A3
112
+ document_properties_page_size_name_a4=A4
113
+ document_properties_page_size_name_letter=레터
114
+ document_properties_page_size_name_legal=리걸
115
+ # LOCALIZATION NOTE (document_properties_page_size_dimension_string):
116
+ # "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
117
+ # the size, respectively their unit of measurement and orientation, of the (current) page.
118
+ document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
119
+ # LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
120
+ # "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
121
+ # the size, respectively their unit of measurement, name, and orientation, of the (current) page.
122
+ document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
123
+ # LOCALIZATION NOTE (document_properties_linearized): The linearization status of
124
+ # the document; usually called "Fast Web View" in English locales of Adobe software.
125
+ document_properties_linearized=빠른 웹 보기:
126
+ document_properties_linearized_yes=예
127
+ document_properties_linearized_no=아니오
128
+ document_properties_close=닫기
129
+
130
+ print_progress_message=인쇄 문서 준비 중…
131
+ # LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
132
+ # a numerical per cent value.
133
+ print_progress_percent={{progress}}%
134
+ print_progress_close=취소
135
+
136
+ # Tooltips and alt text for side panel toolbar buttons
137
+ # (the _label strings are alt text for the buttons, the .title strings are
138
+ # tooltips)
139
+ toggle_sidebar.title=탐색창 표시/숨기기
140
+ toggle_sidebar_notification2.title=탐색창 표시/숨기기 (문서에 아웃라인/첨부파일/레이어 포함됨)
141
+ toggle_sidebar_label=탐색창 표시/숨기기
142
+ document_outline.title=문서 아웃라인 보기 (더블 클릭해서 모든 항목 펼치기/접기)
143
+ document_outline_label=문서 아웃라인
144
+ attachments.title=첨부파일 보기
145
+ attachments_label=첨부파일
146
+ layers.title=레이어 보기 (더블 클릭해서 모든 레이어를 기본 상태로 재설정)
147
+ layers_label=레이어
148
+ thumbs.title=미리보기
149
+ thumbs_label=미리보기
150
+ current_outline_item.title=현재 아웃라인 항목 찾기
151
+ current_outline_item_label=현재 아웃라인 항목
152
+ findbar.title=검색
153
+ findbar_label=검색
154
+
155
+ additional_layers=추가 레이어
156
+ # LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number.
157
+ page_landmark={{page}} 페이지
158
+ # Thumbnails panel item (tooltip and alt text for images)
159
+ # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
160
+ # number.
161
+ thumb_page_title={{page}} 페이지
162
+ # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
163
+ # number.
164
+ thumb_page_canvas={{page}} 페이지 미리보기
165
+
166
+ # Find panel button title and messages
167
+ find_input.title=찾기
168
+ find_input.placeholder=문서에서 찾기…
169
+ find_previous.title=지정 문자열에 일치하는 1개 부분을 검색
170
+ find_previous_label=이전
171
+ find_next.title=지정 문자열에 일치하는 다음 부분을 검색
172
+ find_next_label=다음
173
+ find_highlight=모두 강조 표시
174
+ find_match_case_label=대/소문자 구분
175
+ find_match_diacritics_label=분음 부호 일치
176
+ find_entire_word_label=단어 단위로
177
+ find_reached_top=문서 처음까지 검색하고 끝으로 돌아와 검색했습니다.
178
+ find_reached_bottom=문서 끝까지 검색하고 앞으로 돌아와 검색했습니다.
179
+ # LOCALIZATION NOTE (find_match_count): The supported plural forms are
180
+ # [one|two|few|many|other], with [other] as the default value.
181
+ # "{{current}}" and "{{total}}" will be replaced by a number representing the
182
+ # index of the currently active find result, respectively a number representing
183
+ # the total number of matches in the document.
184
+ find_match_count={[ plural(total) ]}
185
+ find_match_count[one]={{total}} 중 {{current}} 일치
186
+ find_match_count[two]={{total}} 중 {{current}} 일치
187
+ find_match_count[few]={{total}} 중 {{current}} 일치
188
+ find_match_count[many]={{total}} 중 {{current}} 일치
189
+ find_match_count[other]={{total}} 중 {{current}} 일치
190
+ # LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
191
+ # [zero|one|two|few|many|other], with [other] as the default value.
192
+ # "{{limit}}" will be replaced by a numerical value.
193
+ find_match_count_limit={[ plural(limit) ]}
194
+ find_match_count_limit[zero]={{limit}} 이상 일치
195
+ find_match_count_limit[one]={{limit}} 이상 일치
196
+ find_match_count_limit[two]={{limit}} 이상 일치
197
+ find_match_count_limit[few]={{limit}} 이상 일치
198
+ find_match_count_limit[many]={{limit}} 이상 일치
199
+ find_match_count_limit[other]={{limit}} 이상 일치
200
+ find_not_found=검색 결과 없음
201
+
202
+ # Error panel labels
203
+ error_more_info=자세한 정보
204
+ error_less_info=정보 간단히 보기
205
+ error_close=닫기
206
+ # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
207
+ # replaced by the PDF.JS version and build ID.
208
+ error_version_info=PDF.js v{{version}} (빌드: {{build}})
209
+ # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
210
+ # english string describing the error.
211
+ error_message=메시지: {{message}}
212
+ # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
213
+ # trace.
214
+ error_stack=스택: {{stack}}
215
+ # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
216
+ error_file=파일: {{file}}
217
+ # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
218
+ error_line=줄 번호: {{line}}
219
+
220
+ # Predefined zoom values
221
+ page_scale_width=페이지 너비에 맞추기
222
+ page_scale_fit=페이지에 맞추기
223
+ page_scale_auto=자동
224
+ page_scale_actual=실제 크기
225
+ # LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
226
+ # numerical scale value.
227
+ page_scale_percent={{scale}}%
228
+
229
+ # Loading indicator messages
230
+ loading=로드 중…
231
+ loading_error=PDF를 로드하는 동안 오류가 발생했습니다.
232
+ invalid_file_error=잘못되었거나 손상된 PDF 파일.
233
+ missing_file_error=PDF 파일 없음.
234
+ unexpected_response_error=예상치 못한 서버 응답입니다.
235
+
236
+ rendering_error=페이지를 렌더링하는 동안 오류가 발생했습니다.
237
+
238
+ # LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
239
+ # replaced by the modification date, and time, of the annotation.
240
+ annotation_date_string={{date}} {{time}}
241
+
242
+ # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
243
+ # "{{type}}" will be replaced with an annotation type from a list defined in
244
+ # the PDF spec (32000-1:2008 Table 169 – Annotation types).
245
+ # Some common types are e.g.: "Check", "Text", "Comment", "Note"
246
+ text_annotation_type.alt=[{{type}} 주석]
247
+ password_label=이 PDF 파일을 열 수 있는 비밀번호를 입력하세요.
248
+ password_invalid=잘못된 비밀번호입니다. 다시 시도하세요.
249
+ password_ok=확인
250
+ password_cancel=취소
251
+
252
+ printing_not_supported=경고: 이 브라우저는 인쇄를 완전히 지원하지 않습니다.
253
+ printing_not_ready=경고: 이 PDF를 인쇄를 할 수 있을 정도로 읽어들이지 못했습니다.
254
+ web_fonts_disabled=웹 폰트가 비활성화됨: 내장된 PDF 글꼴을 사용할 수 없습니다.
255
+
256
+ # Editor
257
+ editor_free_text2.title=텍스트
258
+ editor_free_text2_label=텍스트
259
+ editor_ink2.title=그리기
260
+ editor_ink2_label=그리기
261
+
262
+ free_text2_default_content=입력하세요…
263
+
264
+ # Editor Parameters
265
+ editor_free_text_color=색상
266
+ editor_free_text_size=크기
267
+ editor_ink_color=색상
268
+ editor_ink_thickness=두께
269
+ editor_ink_opacity=불투명도
270
+
271
+ # Editor aria
272
+ editor_free_text2_aria_label=텍스트 편집기
273
+ editor_ink2_aria_label=그리기 편집기
274
+ editor_ink_canvas_aria_label=사용자 생성 이미지