@sync-in/server 1.4.0 → 1.5.0

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.
Files changed (229) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +2 -1
  3. package/package.json +5 -5
  4. package/server/applications/comments/comments.controller.spec.js +103 -4
  5. package/server/applications/comments/comments.controller.spec.js.map +1 -1
  6. package/server/applications/comments/services/comments-manager.service.spec.js +409 -9
  7. package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -1
  8. package/server/applications/files/adapters/files-indexer-mysql.service.spec.js +333 -0
  9. package/server/applications/files/adapters/files-indexer-mysql.service.spec.js.map +1 -0
  10. package/server/applications/files/constants/routes.js +6 -1
  11. package/server/applications/files/constants/routes.js.map +1 -1
  12. package/server/applications/files/files-only-office.controller.js +11 -0
  13. package/server/applications/files/files-only-office.controller.js.map +1 -1
  14. package/server/applications/files/files-only-office.controller.spec.js +97 -3
  15. package/server/applications/files/files-only-office.controller.spec.js.map +1 -1
  16. package/server/applications/files/files-tasks.controller.spec.js +91 -1
  17. package/server/applications/files/files-tasks.controller.spec.js.map +1 -1
  18. package/server/applications/files/files.controller.spec.js +268 -46
  19. package/server/applications/files/files.controller.spec.js.map +1 -1
  20. package/server/applications/files/guards/files-only-office.guard.spec.js +77 -1
  21. package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -1
  22. package/server/applications/files/services/files-only-office-manager.service.js +5 -0
  23. package/server/applications/files/services/files-only-office-manager.service.js.map +1 -1
  24. package/server/applications/links/links.controller.spec.js +91 -58
  25. package/server/applications/links/links.controller.spec.js.map +1 -1
  26. package/server/applications/links/services/links-manager.service.js +4 -6
  27. package/server/applications/links/services/links-manager.service.js.map +1 -1
  28. package/server/applications/links/services/links-manager.service.spec.js +378 -14
  29. package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
  30. package/server/applications/links/services/links-queries.service.js +1 -1
  31. package/server/applications/links/services/links-queries.service.js.map +1 -1
  32. package/server/applications/notifications/notifications.controller.spec.js +56 -1
  33. package/server/applications/notifications/notifications.controller.spec.js.map +1 -1
  34. package/server/applications/notifications/services/notifications-manager.service.spec.js +461 -5
  35. package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -1
  36. package/server/applications/shares/services/shares-manager.service.spec.js +590 -14
  37. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
  38. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js +120 -0
  39. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js.map +1 -0
  40. package/server/applications/sync/services/sync-clients-manager.service.spec.js +548 -8
  41. package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -1
  42. package/server/applications/sync/services/sync-manager.service.spec.js +837 -5
  43. package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -1
  44. package/server/applications/sync/services/sync-paths-manager.service.spec.js +900 -7
  45. package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -1
  46. package/server/applications/users/services/admin-users-manager.service.js +22 -24
  47. package/server/applications/users/services/admin-users-manager.service.js.map +1 -1
  48. package/server/applications/users/services/admin-users-manager.service.spec.js +763 -17
  49. package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -1
  50. package/server/applications/users/services/users-manager.service.js +1 -1
  51. package/server/applications/users/services/users-manager.service.js.map +1 -1
  52. package/server/applications/users/services/users-manager.service.spec.js +938 -49
  53. package/server/applications/users/services/users-manager.service.spec.js.map +1 -1
  54. package/server/applications/webdav/decorators/if-header.decorator.js +4 -1
  55. package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -1
  56. package/server/applications/webdav/filters/webdav.filter.spec.js +77 -0
  57. package/server/applications/webdav/filters/webdav.filter.spec.js.map +1 -0
  58. package/server/applications/webdav/guards/webdav-protocol.guard.js +3 -7
  59. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
  60. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +580 -0
  61. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -0
  62. package/server/applications/webdav/services/webdav-methods.service.spec.js +1582 -3
  63. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
  64. package/server/applications/webdav/services/webdav-spaces.service.spec.js +390 -2
  65. package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -1
  66. package/server/applications/webdav/webdav.controller.js +2 -2
  67. package/server/applications/webdav/webdav.controller.js.map +1 -1
  68. package/server/authentication/guards/auth-basic.guard.js.map +1 -1
  69. package/server/authentication/guards/auth-digest.guard.js +1 -2
  70. package/server/authentication/guards/auth-digest.guard.js.map +1 -1
  71. package/server/authentication/guards/auth-local.guard.js.map +1 -1
  72. package/server/infrastructure/context/interceptors/context.interceptor.spec.js +135 -0
  73. package/server/infrastructure/context/interceptors/context.interceptor.spec.js.map +1 -0
  74. package/static/3rdpartylicenses.txt +26 -26
  75. package/static/assets/pdfjs/build/pdf.mjs +1177 -255
  76. package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
  77. package/static/assets/pdfjs/build/pdf.sandbox.mjs +25 -2
  78. package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
  79. package/static/assets/pdfjs/build/pdf.worker.mjs +140 -16
  80. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
  81. package/static/assets/pdfjs/version +1 -1
  82. package/static/assets/pdfjs/web/debugger.css +31 -0
  83. package/static/assets/pdfjs/web/debugger.mjs +144 -2
  84. package/static/assets/pdfjs/web/images/comment-editButton.svg +6 -1
  85. package/static/assets/pdfjs/web/locale/ach/viewer.ftl +0 -63
  86. package/static/assets/pdfjs/web/locale/af/viewer.ftl +0 -71
  87. package/static/assets/pdfjs/web/locale/an/viewer.ftl +0 -63
  88. package/static/assets/pdfjs/web/locale/ast/viewer.ftl +0 -60
  89. package/static/assets/pdfjs/web/locale/az/viewer.ftl +0 -63
  90. package/static/assets/pdfjs/web/locale/be/viewer.ftl +38 -0
  91. package/static/assets/pdfjs/web/locale/bg/viewer.ftl +0 -37
  92. package/static/assets/pdfjs/web/locale/bn/viewer.ftl +0 -63
  93. package/static/assets/pdfjs/web/locale/bo/viewer.ftl +0 -63
  94. package/static/assets/pdfjs/web/locale/br/viewer.ftl +0 -37
  95. package/static/assets/pdfjs/web/locale/brx/viewer.ftl +0 -63
  96. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +22 -0
  97. package/static/assets/pdfjs/web/locale/ca/viewer.ftl +0 -54
  98. package/static/assets/pdfjs/web/locale/cak/viewer.ftl +0 -54
  99. package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +0 -63
  100. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +38 -0
  101. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +38 -0
  102. package/static/assets/pdfjs/web/locale/da/viewer.ftl +38 -0
  103. package/static/assets/pdfjs/web/locale/de/viewer.ftl +38 -0
  104. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +38 -0
  105. package/static/assets/pdfjs/web/locale/el/viewer.ftl +38 -0
  106. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +38 -0
  107. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +38 -0
  108. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +25 -0
  109. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +38 -0
  110. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +38 -0
  111. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +38 -0
  112. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -6
  113. package/static/assets/pdfjs/web/locale/et/viewer.ftl +0 -57
  114. package/static/assets/pdfjs/web/locale/fa/viewer.ftl +0 -37
  115. package/static/assets/pdfjs/web/locale/ff/viewer.ftl +0 -63
  116. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +38 -0
  117. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +38 -0
  118. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +38 -0
  119. package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +0 -71
  120. package/static/assets/pdfjs/web/locale/gd/viewer.ftl +0 -54
  121. package/static/assets/pdfjs/web/locale/gl/viewer.ftl +8 -0
  122. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +38 -0
  123. package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +0 -63
  124. package/static/assets/pdfjs/web/locale/he/viewer.ftl +38 -0
  125. package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +0 -60
  126. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +38 -0
  127. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +38 -0
  128. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +0 -49
  129. package/static/assets/pdfjs/web/locale/hye/viewer.ftl +0 -60
  130. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +38 -0
  131. package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -3
  132. package/static/assets/pdfjs/web/locale/it/viewer.ftl +31 -0
  133. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +8 -0
  134. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +48 -10
  135. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +5 -0
  136. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +8 -0
  137. package/static/assets/pdfjs/web/locale/km/viewer.ftl +0 -63
  138. package/static/assets/pdfjs/web/locale/kn/viewer.ftl +0 -71
  139. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +38 -0
  140. package/static/assets/pdfjs/web/locale/lij/viewer.ftl +0 -63
  141. package/static/assets/pdfjs/web/locale/lo/viewer.ftl +0 -54
  142. package/static/assets/pdfjs/web/locale/lt/viewer.ftl +0 -60
  143. package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +0 -63
  144. package/static/assets/pdfjs/web/locale/lv/viewer.ftl +0 -63
  145. package/static/assets/pdfjs/web/locale/meh/viewer.ftl +0 -75
  146. package/static/assets/pdfjs/web/locale/mk/viewer.ftl +0 -63
  147. package/static/assets/pdfjs/web/locale/ml/viewer.ftl +0 -3
  148. package/static/assets/pdfjs/web/locale/mr/viewer.ftl +0 -63
  149. package/static/assets/pdfjs/web/locale/ms/viewer.ftl +0 -63
  150. package/static/assets/pdfjs/web/locale/my/viewer.ftl +0 -71
  151. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +44 -6
  152. package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +0 -71
  153. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +38 -0
  154. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +45 -1
  155. package/static/assets/pdfjs/web/locale/oc/viewer.ftl +0 -31
  156. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +38 -0
  157. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +39 -1
  158. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +38 -0
  159. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +355 -1
  160. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +38 -0
  161. package/static/assets/pdfjs/web/locale/sat/viewer.ftl +0 -54
  162. package/static/assets/pdfjs/web/locale/sc/viewer.ftl +0 -38
  163. package/static/assets/pdfjs/web/locale/scn/viewer.ftl +0 -92
  164. package/static/assets/pdfjs/web/locale/sco/viewer.ftl +0 -60
  165. package/static/assets/pdfjs/web/locale/si/viewer.ftl +0 -51
  166. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +38 -0
  167. package/static/assets/pdfjs/web/locale/skr/viewer.ftl +0 -27
  168. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +8 -0
  169. package/static/assets/pdfjs/web/locale/son/viewer.ftl +0 -71
  170. package/static/assets/pdfjs/web/locale/sr/viewer.ftl +0 -33
  171. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +38 -0
  172. package/static/assets/pdfjs/web/locale/szl/viewer.ftl +0 -63
  173. package/static/assets/pdfjs/web/locale/ta/viewer.ftl +0 -63
  174. package/static/assets/pdfjs/web/locale/te/viewer.ftl +0 -60
  175. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +38 -0
  176. package/static/assets/pdfjs/web/locale/tl/viewer.ftl +0 -63
  177. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +40 -2
  178. package/static/assets/pdfjs/web/locale/trs/viewer.ftl +0 -72
  179. package/static/assets/pdfjs/web/locale/ur/viewer.ftl +0 -60
  180. package/static/assets/pdfjs/web/locale/uz/viewer.ftl +0 -71
  181. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +38 -0
  182. package/static/assets/pdfjs/web/locale/wo/viewer.ftl +0 -77
  183. package/static/assets/pdfjs/web/locale/xh/viewer.ftl +0 -71
  184. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +38 -0
  185. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +38 -0
  186. package/static/assets/pdfjs/web/viewer.css +649 -120
  187. package/static/assets/pdfjs/web/viewer.html +19 -0
  188. package/static/assets/pdfjs/web/viewer.mjs +489 -38
  189. package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
  190. package/static/chunk-22EANI6R.js +1 -0
  191. package/static/{chunk-3GC2BQZD.js → chunk-2UWN7IQF.js} +1 -1
  192. package/static/{chunk-TCFKH6K6.js → chunk-2VSPDSJS.js} +1 -1
  193. package/static/{chunk-KZQCFEPT.js → chunk-34UZ7SYI.js} +1 -1
  194. package/static/{chunk-5YKWZT33.js → chunk-45UQJGGY.js} +1 -1
  195. package/static/{chunk-N2LYWNTC.js → chunk-5TEXH3LJ.js} +1 -1
  196. package/static/{chunk-MOVWEZ7J.js → chunk-66FMKVJX.js} +1 -1
  197. package/static/{chunk-XE5YHU5J.js → chunk-BIUNUYZ5.js} +1 -1
  198. package/static/chunk-CK4BY2NX.js +27 -0
  199. package/static/{chunk-T55FAU2O.js → chunk-CSBDAY77.js} +1 -1
  200. package/static/{chunk-6F55D74O.js → chunk-CXXPLBDZ.js} +1 -1
  201. package/static/{chunk-YCINY2YI.js → chunk-EILQG525.js} +1 -1
  202. package/static/{chunk-DGVNNICG.js → chunk-ENWABUR4.js} +1 -1
  203. package/static/{chunk-Y2CDUS4J.js → chunk-FR4AOLYL.js} +4 -4
  204. package/static/chunk-HW2H3ISM.js +559 -0
  205. package/static/{chunk-VHYIXL7R.js → chunk-HYMDGBZL.js} +1 -1
  206. package/static/{chunk-W3QXNDI5.js → chunk-IML5UYQG.js} +1 -1
  207. package/static/{chunk-GBCYYDCI.js → chunk-IPSMJHMQ.js} +1 -1
  208. package/static/{chunk-TXPODW5Q.js → chunk-JVCWYSNP.js} +1 -1
  209. package/static/{chunk-VMQMD36Z.js → chunk-KGPCIUD2.js} +1 -1
  210. package/static/{chunk-TNW2CGK6.js → chunk-KQZJSEM3.js} +1 -1
  211. package/static/{chunk-HZA7R43P.js → chunk-NPEMJJIU.js} +1 -1
  212. package/static/{chunk-WWIC7UW3.js → chunk-OEFBC4GG.js} +1 -1
  213. package/static/{chunk-VMUOUCEI.js → chunk-P734A3XZ.js} +1 -1
  214. package/static/{chunk-FQ4AFNGE.js → chunk-RASR4CK6.js} +1 -1
  215. package/static/{chunk-LJIGRUEF.js → chunk-RFMOUC22.js} +1 -1
  216. package/static/{chunk-TTQ37MUV.js → chunk-RSS6GYNE.js} +1 -1
  217. package/static/{chunk-TDQAEVZN.js → chunk-SBOQGGZX.js} +1 -1
  218. package/static/{chunk-PF4K7MVG.js → chunk-SJAFPXQV.js} +1 -1
  219. package/static/{chunk-C23BPTJZ.js → chunk-XTYGMF2V.js} +1 -1
  220. package/static/{chunk-B2Y2RNFP.js → chunk-YCWMV2YR.js} +1 -1
  221. package/static/{chunk-X43VWRFP.js → chunk-YGD22MWQ.js} +1 -1
  222. package/static/{chunk-MTRNPGS4.js → chunk-ZC5NIT55.js} +1 -1
  223. package/static/{chunk-PY3BGNJN.js → chunk-ZVY37DKS.js} +1 -1
  224. package/static/index.html +1 -1
  225. package/static/main-N5CZRHAO.js +7 -0
  226. package/static/chunk-RSNLYAN6.js +0 -560
  227. package/static/chunk-WHMS3PJ3.js +0 -24
  228. package/static/chunk-ZZ3LHYOY.js +0 -1
  229. package/static/main-7LDKYVXO.js +0 -10
@@ -39,6 +39,18 @@ pdfjs-open-file-button-label = Deschide
39
39
  pdfjs-print-button =
40
40
  .title = Tipărește
41
41
  pdfjs-print-button-label = Tipărește
42
+ pdfjs-save-button =
43
+ .title = Salvează
44
+ pdfjs-save-button-label = Salvează
45
+ # Used in Firefox for Android as a tooltip for the download button (“download” is a verb).
46
+ pdfjs-download-button =
47
+ .title = Descarcă
48
+ # Used in Firefox for Android as a label for the download button (“download” is a verb).
49
+ # Length of the translation matters since we are in a mobile context, with limited screen estate.
50
+ pdfjs-download-button-label = Descarcă
51
+ pdfjs-bookmark-button =
52
+ .title = Pagina curentă (Vezi URL din pagina curentă)
53
+ pdfjs-bookmark-button-label = Pagină curentă
42
54
 
43
55
  ## Secondary toolbar and context menu
44
56
 
@@ -63,6 +75,9 @@ pdfjs-cursor-text-select-tool-button-label = Instrumentul de selecție a textulu
63
75
  pdfjs-cursor-hand-tool-button =
64
76
  .title = Activează instrumentul mână
65
77
  pdfjs-cursor-hand-tool-button-label = Unealta mână
78
+ pdfjs-scroll-page-button =
79
+ .title = Folosește derularea paginilor
80
+ pdfjs-scroll-page-button-label = Derulare pagini
66
81
  pdfjs-scroll-vertical-button =
67
82
  .title = Folosește derularea verticală
68
83
  pdfjs-scroll-vertical-button-label = Derulare verticală
@@ -90,6 +105,14 @@ pdfjs-document-properties-button-label = Proprietățile documentului…
90
105
  pdfjs-document-properties-file-name = Numele fișierului:
91
106
  pdfjs-document-properties-file-size = Mărimea fișierului:
92
107
  # Variables:
108
+ # $kb (Number) - the PDF file size in kilobytes
109
+ # $b (Number) - the PDF file size in bytes
110
+ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) } KB ({ $b } octeți)
111
+ # Variables:
112
+ # $mb (Number) - the PDF file size in megabytes
113
+ # $b (Number) - the PDF file size in bytes
114
+ pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } octeți)
115
+ # Variables:
93
116
  # $size_kb (Number) - the PDF file size in kilobytes
94
117
  # $size_b (Number) - the PDF file size in bytes
95
118
  pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } byți)
@@ -104,6 +127,9 @@ pdfjs-document-properties-keywords = Cuvinte cheie:
104
127
  pdfjs-document-properties-creation-date = Data creării:
105
128
  pdfjs-document-properties-modification-date = Data modificării:
106
129
  # Variables:
130
+ # $dateObj (Date) - the creation/modification date and time of the PDF file
131
+ pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
132
+ # Variables:
107
133
  # $date (Date) - the creation/modification date of the PDF file
108
134
  # $time (Time) - the creation/modification time of the PDF file
109
135
  pdfjs-document-properties-date-string = { $date }, { $time }
@@ -154,19 +180,28 @@ pdfjs-printing-not-ready = Avertisment: PDF-ul nu este încărcat complet pentru
154
180
 
155
181
  pdfjs-toggle-sidebar-button =
156
182
  .title = Comută bara laterală
183
+ pdfjs-toggle-sidebar-notification-button =
184
+ .title = Comută bara laterală (documentul conține schițe/atașamente/straturi)
157
185
  pdfjs-toggle-sidebar-button-label = Comută bara laterală
158
186
  pdfjs-document-outline-button =
159
187
  .title = Afișează schița documentului (dublu-clic pentru a extinde/restrânge toate elementele)
160
- pdfjs-document-outline-button-label = Schița documentului
188
+ pdfjs-document-outline-button-label = Schiță a documentului
161
189
  pdfjs-attachments-button =
162
190
  .title = Afișează atașamentele
163
191
  pdfjs-attachments-button-label = Atașamente
192
+ pdfjs-layers-button =
193
+ .title = Afișează straturile (dă dublu clic pentru resetarea tuturor straturilor la starea implicită)
194
+ pdfjs-layers-button-label = Straturi
164
195
  pdfjs-thumbs-button =
165
196
  .title = Afișează miniaturi
166
197
  pdfjs-thumbs-button-label = Miniaturi
198
+ pdfjs-current-outline-item-button =
199
+ .title = Găsește elementul pe schița actuală
200
+ pdfjs-current-outline-item-button-label = Element al schiței actuale
167
201
  pdfjs-findbar-button =
168
202
  .title = Caută în document
169
203
  pdfjs-findbar-button-label = Caută
204
+ pdfjs-additional-layers = Straturi suplimentare
170
205
 
171
206
  ## Thumbnails panel item (tooltip and alt text for images)
172
207
 
@@ -192,9 +227,27 @@ pdfjs-find-next-button =
192
227
  pdfjs-find-next-button-label = Înainte
193
228
  pdfjs-find-highlight-checkbox = Evidențiază toate aparițiile
194
229
  pdfjs-find-match-case-checkbox-label = Ține cont de majuscule și minuscule
230
+ pdfjs-find-match-diacritics-checkbox-label = Respectă diacriticele
195
231
  pdfjs-find-entire-word-checkbox-label = Cuvinte întregi
196
232
  pdfjs-find-reached-top = Am ajuns la începutul documentului, continuă de la sfârșit
197
233
  pdfjs-find-reached-bottom = Am ajuns la sfârșitul documentului, continuă de la început
234
+ # Variables:
235
+ # $current (Number) - the index of the currently active find result
236
+ # $total (Number) - the total number of matches in the document
237
+ pdfjs-find-match-count =
238
+ { $total ->
239
+ [one] { $current } din { $total } rezultat
240
+ [few] { $current } din { $total } rezultate
241
+ *[other] { $current } din { $total } de rezultate
242
+ }
243
+ # Variables:
244
+ # $limit (Number) - the maximum number of matches
245
+ pdfjs-find-match-count-limit =
246
+ { $limit ->
247
+ [one] Mai mult de { $limit } rezultat
248
+ [few] Mai mult de { $limit } rezultate
249
+ *[other] Mai mult de { $limit } de rezultate
250
+ }
198
251
  pdfjs-find-not-found = Nu s-a găsit textul
199
252
 
200
253
  ## Predefined zoom values
@@ -209,6 +262,10 @@ pdfjs-page-scale-percent = { $scale }%
209
262
 
210
263
  ## PDF page
211
264
 
265
+ # Variables:
266
+ # $page (Number) - the page number
267
+ pdfjs-page-landmark =
268
+ .aria-label = Pagina { $page }
212
269
 
213
270
  ## Loading indicator messages
214
271
 
@@ -231,6 +288,9 @@ pdfjs-annotation-date-string = { $date }, { $time }
231
288
  # Some common types are e.g.: "Check", "Text", "Comment", "Note"
232
289
  pdfjs-text-annotation-type =
233
290
  .alt = [Adnotare { $type }]
291
+ # Variables:
292
+ # $dateObj (Date) - the modification date and time of the annotation
293
+ pdfjs-annotation-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
234
294
 
235
295
  ## Password
236
296
 
@@ -242,61 +302,355 @@ pdfjs-web-fonts-disabled = Fonturile web sunt dezactivate: nu se pot folosi font
242
302
 
243
303
  ## Editing
244
304
 
305
+ pdfjs-editor-free-text-button =
306
+ .title = Text
307
+ pdfjs-editor-color-picker-free-text-input =
308
+ .title = Schimbă culoarea textului
309
+ pdfjs-editor-free-text-button-label = Text
310
+ pdfjs-editor-ink-button =
311
+ .title = Desenează
312
+ pdfjs-editor-color-picker-ink-input =
313
+ .title = Schimbă culoarea de desen
314
+ pdfjs-editor-ink-button-label = Desenează
315
+ pdfjs-editor-stamp-button =
316
+ .title = Adaugă sau editează imagini
317
+ pdfjs-editor-stamp-button-label = Adaugă sau editează imagini
318
+ pdfjs-editor-highlight-button =
319
+ .title = Evidențiere
320
+ pdfjs-editor-highlight-button-label = Evidențiere
321
+ pdfjs-highlight-floating-button1 =
322
+ .title = Evidențiază
323
+ .aria-label = Evidențiere
324
+ pdfjs-highlight-floating-button-label = Evidențiază
325
+ pdfjs-comment-floating-button =
326
+ .title = Comentează
327
+ .aria-label = Comentariu
328
+ pdfjs-comment-floating-button-label = Comentează
329
+ pdfjs-editor-signature-button =
330
+ .title = Adaugă semnătură
331
+ pdfjs-editor-signature-button-label = Adaugă semnătură
245
332
 
246
333
  ## Default editor aria labels
247
334
 
335
+ # “Highlight” is a noun, the string is used on the editor for highlights.
336
+ pdfjs-editor-highlight-editor =
337
+ .aria-label = Editor de evidențiere
338
+ # “Drawing” is a noun, the string is used on the editor for drawings.
339
+ pdfjs-editor-ink-editor =
340
+ .aria-label = Editor de desen
341
+ # Used when a signature editor is selected/hovered.
342
+ # Variables:
343
+ # $description (String) - a string describing/labeling the signature.
344
+ pdfjs-editor-signature-editor1 =
345
+ .aria-description = Editor de semnătură: { $description }
346
+ pdfjs-editor-stamp-editor =
347
+ .aria-label = Editor de imagini
248
348
 
249
349
  ## Remove button for the various kind of editor.
250
350
 
351
+ pdfjs-editor-remove-ink-button =
352
+ .title = Elimină desenul
353
+ pdfjs-editor-remove-freetext-button =
354
+ .title = Elimină textul
355
+ pdfjs-editor-remove-stamp-button =
356
+ .title = Elimină imaginea
357
+ pdfjs-editor-remove-highlight-button =
358
+ .title = Elimină evidențierea
359
+ pdfjs-editor-remove-signature-button =
360
+ .title = Elimină semnătura
251
361
 
252
362
  ##
253
363
 
364
+ # Editor Parameters
365
+ pdfjs-editor-free-text-color-input = Culoare
366
+ pdfjs-editor-free-text-size-input = Mărime
367
+ pdfjs-editor-ink-color-input = Culoare
368
+ pdfjs-editor-ink-thickness-input = Grosime
369
+ pdfjs-editor-ink-opacity-input = Opacitate
370
+ pdfjs-editor-stamp-add-image-button =
371
+ .title = Adaugă imagine
372
+ pdfjs-editor-stamp-add-image-button-label = Adaugă imagine
373
+ # This refers to the thickness of the line used for free highlighting (not bound to text)
374
+ pdfjs-editor-free-highlight-thickness-input = Grosime
375
+ pdfjs-editor-free-highlight-thickness-title =
376
+ .title = Schimbă grosimea când evidențiezi alte elemente decât text
377
+ pdfjs-editor-add-signature-container =
378
+ .aria-label = Controale de semnături și semnături salvate
379
+ pdfjs-editor-signature-add-signature-button =
380
+ .title = Adaugă o semnătură nouă
381
+ pdfjs-editor-signature-add-signature-button-label = Adaugă o semnătură nouă
382
+ # Used on the button to use an already saved signature.
383
+ # Variables:
384
+ # $description (String) - a string describing/labeling the signature.
385
+ pdfjs-editor-add-saved-signature-button =
386
+ .title = Semnătură salvată: { $description }
387
+ # .default-content is used as a placeholder in an empty text editor.
388
+ pdfjs-free-text2 =
389
+ .aria-label = Editor de text
390
+ .default-content = Începe să tastezi...
391
+ pdfjs-free-text =
392
+ .aria-label = Editor de text
393
+ pdfjs-free-text-default-content = Începe să tastezi…
394
+ pdfjs-ink =
395
+ .aria-label = Editor de desene
396
+ pdfjs-ink-canvas =
397
+ .aria-label = Imagine creată de utilizator
254
398
 
255
399
  ## Alt-text dialog
256
400
 
401
+ pdfjs-editor-alt-text-button-label = Text alternativ
402
+ pdfjs-editor-alt-text-edit-button =
403
+ .aria-label = Editează textul alternativ
404
+ pdfjs-editor-alt-text-edit-button-label = Editează textul alternativ
405
+ pdfjs-editor-alt-text-dialog-label = Alege o opțiune
406
+ pdfjs-editor-alt-text-dialog-description = Textul alternativ (alt text) ajută când oamenii nu pot vedea imaginea sau când nu se încarcă.
407
+ pdfjs-editor-alt-text-add-description-label = Adaugă o descriere
408
+ pdfjs-editor-alt-text-add-description-description = Încearcă să scrii 1-2 propoziții care să descrie subiectul, cadrul sau acțiunile.
409
+ pdfjs-editor-alt-text-mark-decorative-label = Marchează ca decorativ
410
+ pdfjs-editor-alt-text-mark-decorative-description = Este pentru imagini ornamentale, cum ar fi chenare sau filigrane.
257
411
  pdfjs-editor-alt-text-cancel-button = Anulează
412
+ pdfjs-editor-alt-text-save-button = Salvează
413
+ pdfjs-editor-alt-text-decorative-tooltip = Marcat ca decorativ
414
+ # .placeholder: This is a placeholder for the alt text input area
415
+ pdfjs-editor-alt-text-textarea =
416
+ .placeholder = De exemplu, „Un tânăr se așează la o masă să mănânce”
417
+ # Alternative text (alt text) helps when people can't see the image.
418
+ pdfjs-editor-alt-text-button =
419
+ .aria-label = Text alternativ
258
420
 
259
421
  ## Editor resizers
260
422
  ## This is used in an aria label to help to understand the role of the resizer.
261
423
 
424
+ pdfjs-editor-resizer-label-top-left = Colțul din stânga sus — redimensionează
425
+ pdfjs-editor-resizer-label-top-middle = Mijloc de sus — redimensionează
426
+ pdfjs-editor-resizer-label-top-right = Colțul din dreapta sus — redimensionează
427
+ pdfjs-editor-resizer-label-middle-right = Mijloc dreapta — redimensionează
428
+ pdfjs-editor-resizer-label-bottom-right = Colțul din dreapta jos — redimensionează
429
+ pdfjs-editor-resizer-label-bottom-middle = Mijloc de jos - redimensionează
430
+ pdfjs-editor-resizer-label-bottom-left = Colțul din stânga jos — redimensionează
431
+ pdfjs-editor-resizer-label-middle-left = Mijloc stânga — redimensionează
432
+ pdfjs-editor-resizer-top-left =
433
+ .aria-label = Colțul din stânga sus — redimensionează
434
+ pdfjs-editor-resizer-top-middle =
435
+ .aria-label = Mijloc de sus — redimensionează
436
+ pdfjs-editor-resizer-top-right =
437
+ .aria-label = Colțul din dreapta sus — redimensionează
438
+ pdfjs-editor-resizer-middle-right =
439
+ .aria-label = Mijloc dreapta — redimensionează
440
+ pdfjs-editor-resizer-bottom-right =
441
+ .aria-label = Colțul din dreapta jos — redimensionează
442
+ pdfjs-editor-resizer-bottom-middle =
443
+ .aria-label = Mijloc de jos - redimensionează
444
+ pdfjs-editor-resizer-bottom-left =
445
+ .aria-label = Colțul din stânga jos — redimensionează
446
+ pdfjs-editor-resizer-middle-left =
447
+ .aria-label = Mijloc stânga — redimensionează
262
448
 
263
449
  ## Color picker
264
450
 
451
+ # This means "Color used to highlight text"
452
+ pdfjs-editor-highlight-colorpicker-label = Culoare de evidențiere
453
+ pdfjs-editor-colorpicker-button =
454
+ .title = Schimbă culoarea
455
+ pdfjs-editor-colorpicker-dropdown =
456
+ .aria-label = Opțiuni de culoare
457
+ pdfjs-editor-colorpicker-yellow =
458
+ .title = Galben
459
+ pdfjs-editor-colorpicker-green =
460
+ .title = Verde
461
+ pdfjs-editor-colorpicker-blue =
462
+ .title = Albastru
463
+ pdfjs-editor-colorpicker-pink =
464
+ .title = Roz
465
+ pdfjs-editor-colorpicker-red =
466
+ .title = Roșu
265
467
 
266
468
  ## Show all highlights
267
469
  ## This is a toggle button to show/hide all the highlights.
268
470
 
471
+ pdfjs-editor-highlight-show-all-button-label = Afișează tot
472
+ pdfjs-editor-highlight-show-all-button =
473
+ .title = Afișează tot
269
474
 
270
475
  ## New alt-text dialog
271
476
  ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
272
477
 
478
+ # Modal header positioned above a text box where users can edit the alt text.
479
+ pdfjs-editor-new-alt-text-dialog-edit-label = Editează textul alternativ (descrierea imaginii)
480
+ # Modal header positioned above a text box where users can add the alt text.
481
+ pdfjs-editor-new-alt-text-dialog-add-label = Adaugă text alternativ (descrierea imaginii)
482
+ pdfjs-editor-new-alt-text-textarea =
483
+ .placeholder = Scrie descrierea aici...
484
+ # This text refers to the alt text box above this description. It offers a definition of alt text.
485
+ pdfjs-editor-new-alt-text-description = Scurtă descriere pentru cei care nu pot vedea imaginea sau pentru când nu se încarcă imaginea.
486
+ # This is a required legal disclaimer that refers to the automatically created text inside the alt text box above this text. It disappears if the text is edited by a human.
487
+ pdfjs-editor-new-alt-text-disclaimer1 = Acest text alternativ a fost creat automat și este posibil să nu fie exact.
488
+ pdfjs-editor-new-alt-text-disclaimer-learn-more-url = Află mai multe
489
+ pdfjs-editor-new-alt-text-create-automatically-button-label = Creează automat texte alternative
490
+ pdfjs-editor-new-alt-text-not-now-button = Nu acum
491
+ pdfjs-editor-new-alt-text-error-title = Nu s-a putut crea automat textul alternativ
492
+ pdfjs-editor-new-alt-text-error-description = Te rugăm să scrii propriul text alternativ sau să încerci din nou mai târziu.
493
+ pdfjs-editor-new-alt-text-error-close-button = Închide
494
+ # Variables:
495
+ # $totalSize (Number) - the total size (in MB) of the AI model.
496
+ # $downloadedSize (Number) - the downloaded size (in MB) of the AI model.
497
+ pdfjs-editor-new-alt-text-ai-model-downloading-progress = Se descarcă modelul IA de text alternativ ({ $downloadedSize } de { $totalSize } MB)
498
+ .aria-valuetext = Se descarcă modelul IA de text alternativ ({ $downloadedSize } de { $totalSize } MB)
499
+ # This is a button that users can click to edit the alt text they have already added.
500
+ pdfjs-editor-new-alt-text-added-button =
501
+ .aria-label = Text alternativ adăugat
502
+ pdfjs-editor-new-alt-text-added-button-label = Text alternativ adăugat
503
+ # This is a button that users can click to open the alt text editor and add alt text when it is not present.
504
+ pdfjs-editor-new-alt-text-missing-button =
505
+ .aria-label = Text alternativ lipsă
506
+ pdfjs-editor-new-alt-text-missing-button-label = Text alternativ lipsă
507
+ # This is a button that opens up the alt text modal where users should review the alt text that was automatically generated.
508
+ pdfjs-editor-new-alt-text-to-review-button =
509
+ .aria-label = Revizuiește textul alternativ
510
+ pdfjs-editor-new-alt-text-to-review-button-label = Revizuiește textul alternativ
511
+ # "Created automatically" is a prefix that will be added to the beginning of any alt text that has been automatically generated. After the colon, the user will see/hear the actual alt text description. If the alt text has been edited by a human, this prefix will not appear.
512
+ # Variables:
513
+ # $generatedAltText (String) - the generated alt-text.
514
+ pdfjs-editor-new-alt-text-generated-alt-text-with-disclaimer = Creat automat: { $generatedAltText }
273
515
 
274
516
  ## Image alt-text settings
275
517
 
518
+ pdfjs-image-alt-text-settings-button =
519
+ .title = Setări text alternativ imagini
520
+ pdfjs-image-alt-text-settings-button-label = Setări text alternativ imagini
521
+ pdfjs-editor-alt-text-settings-dialog-label = Setări text alternativ imagini
522
+ pdfjs-editor-alt-text-settings-automatic-title = Text alternativ automat
523
+ pdfjs-editor-alt-text-settings-create-model-button-label = Creează automat texte alternative
524
+ pdfjs-editor-alt-text-settings-create-model-description = Sugerează descrieri ca să îi ajuți pe cei care nu pot vedea imaginea sau pentru când nu se încarcă imaginea.
525
+ # Variables:
526
+ # $totalSize (Number) - the total size (in MB) of the AI model.
527
+ pdfjs-editor-alt-text-settings-download-model-label = Model IA de text alternativ ({ $totalSize } MB)
528
+ pdfjs-editor-alt-text-settings-ai-model-description = Rulează local pe dispozitiv, deci datele tale rămân private. Necesar pentru text alternativ automat.
529
+ pdfjs-editor-alt-text-settings-delete-model-button = Șterge
530
+ pdfjs-editor-alt-text-settings-download-model-button = Descarcă
531
+ pdfjs-editor-alt-text-settings-downloading-model-button = Se descarcă…
532
+ pdfjs-editor-alt-text-settings-editor-title = Editor de text alternativ
533
+ pdfjs-editor-alt-text-settings-show-dialog-button-label = Afișează editorul de text alternativ imediat când adaugi o imagine
534
+ pdfjs-editor-alt-text-settings-show-dialog-description = Te ajută să te asiguri că toate imaginile au text alternativ.
535
+ pdfjs-editor-alt-text-settings-close-button = Închide
536
+
537
+ ## Accessibility labels (announced by screen readers) for objects added to the editor.
538
+
539
+ pdfjs-editor-highlight-added-alert = Evidențiere adăugată
540
+ pdfjs-editor-freetext-added-alert = Text adăugat
541
+ pdfjs-editor-ink-added-alert = Desen adăugat
542
+ pdfjs-editor-stamp-added-alert = Imagine adăugată
543
+ pdfjs-editor-signature-added-alert = Semnătură adăugată
276
544
 
277
545
  ## "Annotations removed" bar
278
546
 
547
+ pdfjs-editor-undo-bar-message-highlight = Evidențiere eliminată
548
+ pdfjs-editor-undo-bar-message-freetext = Text eliminat
549
+ pdfjs-editor-undo-bar-message-ink = Desen eliminat
550
+ pdfjs-editor-undo-bar-message-stamp = Imagine eliminată
551
+ pdfjs-editor-undo-bar-message-signature = Semnătură eliminată
552
+ # Variables:
553
+ # $count (Number) - the number of removed annotations.
554
+ pdfjs-editor-undo-bar-message-multiple =
555
+ { $count ->
556
+ [one] { $count } adnotare eliminată
557
+ [few] { $count } adnotări eliminate
558
+ *[other] { $count } de adnotări eliminate
559
+ }
560
+ pdfjs-editor-undo-bar-undo-button =
561
+ .title = Anulează
562
+ pdfjs-editor-undo-bar-undo-button-label = Anulează
563
+ pdfjs-editor-undo-bar-close-button =
564
+ .title = Închide
565
+ pdfjs-editor-undo-bar-close-button-label = Închide
279
566
 
280
567
  ## Add a signature dialog
281
568
 
569
+ pdfjs-editor-add-signature-dialog-label = Această fereastră permite utilizatorului să creeze o semnătură de adăugat la un document PDF. Utilizatorul poate edita numele (care servește și ca text alternativ) și, opțional, poate salva semnătura pentru utilizare repetată.
570
+ pdfjs-editor-add-signature-dialog-title = Adaugă o semnătură
282
571
 
283
572
  ## Tab names
284
573
 
574
+ # Type is a verb (you can type your name as signature)
575
+ pdfjs-editor-add-signature-type-button = Tip
576
+ .title = Tip
577
+ # Draw is a verb (you can draw your signature)
578
+ pdfjs-editor-add-signature-draw-button = Desenează
579
+ .title = Desenează
580
+ pdfjs-editor-add-signature-image-button = Imagine
581
+ .title = Imagine
285
582
 
286
583
  ## Tab panels
287
584
 
585
+ pdfjs-editor-add-signature-type-input =
586
+ .aria-label = Tastează semnătura
587
+ .placeholder = Tastează semnătura
588
+ pdfjs-editor-add-signature-draw-placeholder = Desenează semnătura
589
+ pdfjs-editor-add-signature-draw-thickness-range-label = Grosime
590
+ # Variables:
591
+ # $thickness (Number) - the thickness (in pixels) of the line used to draw a signature.
592
+ pdfjs-editor-add-signature-draw-thickness-range =
593
+ .title = Grosimea desenului: { $thickness }
594
+ pdfjs-editor-add-signature-image-placeholder = Trage aici un fișier pentru încărcare
595
+ pdfjs-editor-add-signature-image-browse-link =
596
+ { PLATFORM() ->
597
+ [macos] Sau alege fișiere de imagini
598
+ *[other] Sau răsfoiește prin fișiere de imagini
599
+ }
288
600
 
289
601
  ## Controls
290
602
 
603
+ pdfjs-editor-add-signature-description-label = Descriere (text alternativ)
604
+ pdfjs-editor-add-signature-description-input =
605
+ .title = Descriere (text alternativ)
606
+ pdfjs-editor-add-signature-description-default-when-drawing = Semnătură
607
+ pdfjs-editor-add-signature-clear-button-label = Șterge semnătura
608
+ pdfjs-editor-add-signature-clear-button =
609
+ .title = Șterge semnătura
610
+ pdfjs-editor-add-signature-save-checkbox = Salvează semnătura
611
+ pdfjs-editor-add-signature-save-warning-message = Ai atins limita de 5 semnături salvate. Elimină una dacă vrei să salvezi alta.
612
+ pdfjs-editor-add-signature-image-upload-error-title = Imaginea nu a putut fi încărcată
613
+ pdfjs-editor-add-signature-image-upload-error-description = Verifică-ți conexiunea la rețea sau încearcă cu o altă imagine.
614
+ pdfjs-editor-add-signature-image-no-data-error-title = Imaginea nu poate fi convertită în semnătură
615
+ pdfjs-editor-add-signature-image-no-data-error-description = Încearcă să încarci altă imagine.
616
+ pdfjs-editor-add-signature-error-close-button = Închide
291
617
 
292
618
  ## Dialog buttons
293
619
 
620
+ pdfjs-editor-add-signature-cancel-button = Anulează
621
+ pdfjs-editor-add-signature-add-button = Adaugă
622
+ pdfjs-editor-edit-signature-update-button = Actualizează
623
+
624
+ ## Edit a comment dialog
625
+
626
+ pdfjs-editor-edit-comment-actions-button-label = Acțiuni
627
+ pdfjs-editor-edit-comment-actions-button =
628
+ .title = Acțiuni
629
+ pdfjs-editor-edit-comment-close-button-label = Închide
630
+ pdfjs-editor-edit-comment-close-button =
631
+ .title = Închide
632
+ pdfjs-editor-edit-comment-actions-edit-button-label = Editează
633
+ pdfjs-editor-edit-comment-actions-delete-button-label = Șterge
634
+ pdfjs-editor-edit-comment-manager-text-input =
635
+ .placeholder = Introdu comentariul
636
+ pdfjs-editor-edit-comment-manager-cancel-button = Anulează
637
+ pdfjs-editor-edit-comment-manager-save-button = Salvează
638
+
639
+ ## Edit a comment button in the editor toolbar
640
+
641
+ pdfjs-editor-edit-comment-button =
642
+ .title = Editează comentariul
294
643
 
295
644
  ## Main menu for adding/removing signatures
296
645
 
646
+ pdfjs-editor-delete-signature-button1 =
647
+ .title = Elimină semnătura salvată
648
+ pdfjs-editor-delete-signature-button-label1 = Elimină semnătura salvată
297
649
 
298
650
  ## Editor toolbar
299
651
 
652
+ pdfjs-editor-add-signature-edit-button-label = Editează descrierea
300
653
 
301
654
  ## Edit signature description dialog
302
655
 
656
+ pdfjs-editor-edit-signature-dialog-title = Editează descrierea
@@ -304,9 +304,13 @@ pdfjs-web-fonts-disabled = Веб-шрифты отключены: не удал
304
304
 
305
305
  pdfjs-editor-free-text-button =
306
306
  .title = Текст
307
+ pdfjs-editor-color-picker-free-text-input =
308
+ .title = Изменить цвет текста
307
309
  pdfjs-editor-free-text-button-label = Текст
308
310
  pdfjs-editor-ink-button =
309
311
  .title = Рисовать
312
+ pdfjs-editor-color-picker-ink-input =
313
+ .title = Изменить цвет прорисовки
310
314
  pdfjs-editor-ink-button-label = Рисовать
311
315
  pdfjs-editor-stamp-button =
312
316
  .title = Добавить или изменить изображения
@@ -318,6 +322,10 @@ pdfjs-highlight-floating-button1 =
318
322
  .title = Выделение
319
323
  .aria-label = Выделение
320
324
  pdfjs-highlight-floating-button-label = Выделение
325
+ pdfjs-comment-floating-button =
326
+ .title = Комментировать
327
+ .aria-label = Комментировать
328
+ pdfjs-comment-floating-button-label = Комментировать
321
329
  pdfjs-editor-signature-button =
322
330
  .title = Добавить подпись
323
331
  pdfjs-editor-signature-button-label = Добавить подпись
@@ -526,6 +534,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Сразу показ
526
534
  pdfjs-editor-alt-text-settings-show-dialog-description = Помогает вам убедиться, что все ваши изображения имеют альтернативный текст.
527
535
  pdfjs-editor-alt-text-settings-close-button = Закрыть
528
536
 
537
+ ## Accessibility labels (announced by screen readers) for objects added to the editor.
538
+
539
+ pdfjs-editor-highlight-added-alert = Выделение добавлено
540
+ pdfjs-editor-freetext-added-alert = Текст добавлен
541
+ pdfjs-editor-ink-added-alert = Изображение добавлено
542
+ pdfjs-editor-stamp-added-alert = Изображение добавлено
543
+ pdfjs-editor-signature-added-alert = Подпись добавлена
544
+
529
545
  ## "Annotations removed" bar
530
546
 
531
547
  pdfjs-editor-undo-bar-message-highlight = Выделение удалено
@@ -595,6 +611,8 @@ pdfjs-editor-add-signature-save-checkbox = Сохранить подпись
595
611
  pdfjs-editor-add-signature-save-warning-message = Вы достигли лимита в 5 сохранённых подписей. Удалите одну, чтобы сохранить другие.
596
612
  pdfjs-editor-add-signature-image-upload-error-title = Не удалось загрузить изображение
597
613
  pdfjs-editor-add-signature-image-upload-error-description = Проверьте подключение к сети или попробуйте другое изображение.
614
+ pdfjs-editor-add-signature-image-no-data-error-title = Не удалось преобразовать это изображение в подпись
615
+ pdfjs-editor-add-signature-image-no-data-error-description = Пожалуйста, попробуйте загрузить другое изображение.
598
616
  pdfjs-editor-add-signature-error-close-button = Закрыть
599
617
 
600
618
  ## Dialog buttons
@@ -603,6 +621,26 @@ pdfjs-editor-add-signature-cancel-button = Отмена
603
621
  pdfjs-editor-add-signature-add-button = Добавить
604
622
  pdfjs-editor-edit-signature-update-button = Обновить
605
623
 
624
+ ## Edit a comment dialog
625
+
626
+ pdfjs-editor-edit-comment-actions-button-label = Действия
627
+ pdfjs-editor-edit-comment-actions-button =
628
+ .title = Действия
629
+ pdfjs-editor-edit-comment-close-button-label = Закрыть
630
+ pdfjs-editor-edit-comment-close-button =
631
+ .title = Закрыть
632
+ pdfjs-editor-edit-comment-actions-edit-button-label = Изменить
633
+ pdfjs-editor-edit-comment-actions-delete-button-label = Удалить
634
+ pdfjs-editor-edit-comment-manager-text-input =
635
+ .placeholder = Введите ваш комментарий
636
+ pdfjs-editor-edit-comment-manager-cancel-button = Отмена
637
+ pdfjs-editor-edit-comment-manager-save-button = Сохранить
638
+
639
+ ## Edit a comment button in the editor toolbar
640
+
641
+ pdfjs-editor-edit-comment-button =
642
+ .title = Редактировать комментарий
643
+
606
644
  ## Main menu for adding/removing signatures
607
645
 
608
646
  pdfjs-editor-delete-signature-button1 =
@@ -281,12 +281,6 @@ pdfjs-editor-stamp-button =
281
281
  .title = ᱪᱤᱛᱟᱹᱨᱠᱚ ᱥᱮᱞᱮᱫ ᱥᱮ ᱥᱟᱯᱲᱟᱣ ᱢᱮ
282
282
  pdfjs-editor-stamp-button-label = ᱪᱤᱛᱟᱹᱨᱠᱚ ᱥᱮᱞᱮᱫ ᱥᱮ ᱥᱟᱯᱲᱟᱣ ᱢᱮ
283
283
 
284
- ## Default editor aria labels
285
-
286
-
287
- ## Remove button for the various kind of editor.
288
-
289
-
290
284
  ##
291
285
 
292
286
  # Editor Parameters
@@ -305,51 +299,3 @@ pdfjs-ink =
305
299
  .aria-label = ᱛᱮᱭᱟᱨ ᱥᱟᱯᱲᱟᱣᱤᱭᱟᱹ
306
300
  pdfjs-ink-canvas =
307
301
  .aria-label = ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ᱛᱮᱭᱟᱨ ᱠᱟᱫ ᱪᱤᱛᱟᱹᱨ
308
-
309
- ## Alt-text dialog
310
-
311
-
312
- ## Editor resizers
313
- ## This is used in an aria label to help to understand the role of the resizer.
314
-
315
-
316
- ## Color picker
317
-
318
-
319
- ## Show all highlights
320
- ## This is a toggle button to show/hide all the highlights.
321
-
322
-
323
- ## New alt-text dialog
324
- ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
325
-
326
-
327
- ## Image alt-text settings
328
-
329
-
330
- ## "Annotations removed" bar
331
-
332
-
333
- ## Add a signature dialog
334
-
335
-
336
- ## Tab names
337
-
338
-
339
- ## Tab panels
340
-
341
-
342
- ## Controls
343
-
344
-
345
- ## Dialog buttons
346
-
347
-
348
- ## Main menu for adding/removing signatures
349
-
350
-
351
- ## Editor toolbar
352
-
353
-
354
- ## Edit signature description dialog
355
-
@@ -268,9 +268,6 @@ pdfjs-highlight-floating-button1 =
268
268
  .aria-label = Evidèntzia
269
269
  pdfjs-highlight-floating-button-label = Evidèntzia
270
270
 
271
- ## Default editor aria labels
272
-
273
-
274
271
  ## Remove button for the various kind of editor.
275
272
 
276
273
  pdfjs-editor-remove-ink-button =
@@ -312,10 +309,6 @@ pdfjs-editor-alt-text-add-description-label = Agiunghe una descritzione
312
309
  pdfjs-editor-alt-text-cancel-button = Annulla
313
310
  pdfjs-editor-alt-text-save-button = Sarva
314
311
 
315
- ## Editor resizers
316
- ## This is used in an aria label to help to understand the role of the resizer.
317
-
318
-
319
312
  ## Color picker
320
313
 
321
314
  pdfjs-editor-colorpicker-button =
@@ -331,10 +324,6 @@ pdfjs-editor-colorpicker-blue =
331
324
  pdfjs-editor-colorpicker-pink =
332
325
  .title = Rosa
333
326
 
334
- ## Show all highlights
335
- ## This is a toggle button to show/hide all the highlights.
336
-
337
-
338
327
  ## New alt-text dialog
339
328
  ## Group note for entire feature: Alternative text (alt text) helps when people can't see the image. This feature includes a tool to create alt text automatically using an AI model that works locally on the user's device to preserve privacy.
340
329
 
@@ -365,30 +354,3 @@ pdfjs-editor-alt-text-settings-editor-title = Editore de testu alternativu
365
354
  pdfjs-editor-alt-text-settings-show-dialog-button-label = Mustra deretu s’editore de testu alternativu cando siat agiunta un’immàgine
366
355
  pdfjs-editor-alt-text-settings-show-dialog-description = T’agiudat a assegurare chi totu is immàgines tuas tèngiant unu testu alternativu.
367
356
  pdfjs-editor-alt-text-settings-close-button = Serra
368
-
369
- ## "Annotations removed" bar
370
-
371
-
372
- ## Add a signature dialog
373
-
374
-
375
- ## Tab names
376
-
377
-
378
- ## Tab panels
379
-
380
-
381
- ## Controls
382
-
383
-
384
- ## Dialog buttons
385
-
386
-
387
- ## Main menu for adding/removing signatures
388
-
389
-
390
- ## Editor toolbar
391
-
392
-
393
- ## Edit signature description dialog
394
-