@sync-in/server 1.3.9 → 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.
- package/CHANGELOG.md +34 -0
- package/README.md +5 -3
- package/environment/environment.dist.yaml +2 -0
- package/package.json +6 -6
- package/server/app.bootstrap.js +9 -0
- package/server/app.bootstrap.js.map +1 -1
- package/server/app.service.spec.js +44 -19
- package/server/app.service.spec.js.map +1 -1
- package/server/applications/comments/comments.controller.spec.js +103 -4
- package/server/applications/comments/comments.controller.spec.js.map +1 -1
- package/server/applications/comments/services/comments-manager.service.spec.js +409 -9
- package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -1
- package/server/applications/files/adapters/files-indexer-mysql.service.spec.js +333 -0
- package/server/applications/files/adapters/files-indexer-mysql.service.spec.js.map +1 -0
- package/server/applications/files/constants/files.js +0 -23
- package/server/applications/files/constants/files.js.map +1 -1
- package/server/applications/files/constants/only-office.js +8 -0
- package/server/applications/files/constants/only-office.js.map +1 -1
- package/server/applications/files/constants/routes.js +6 -1
- package/server/applications/files/constants/routes.js.map +1 -1
- package/server/applications/files/files-only-office.controller.js +11 -0
- package/server/applications/files/files-only-office.controller.js.map +1 -1
- package/server/applications/files/files-only-office.controller.spec.js +97 -3
- package/server/applications/files/files-only-office.controller.spec.js.map +1 -1
- package/server/applications/files/files-tasks.controller.spec.js +91 -1
- package/server/applications/files/files-tasks.controller.spec.js.map +1 -1
- package/server/applications/files/files.config.js +5 -0
- package/server/applications/files/files.config.js.map +1 -1
- package/server/applications/files/files.controller.spec.js +268 -46
- package/server/applications/files/files.controller.spec.js.map +1 -1
- package/server/applications/files/guards/files-only-office.guard.spec.js +77 -1
- package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -1
- package/server/applications/files/guards/files-only-office.strategy.js +0 -1
- package/server/applications/files/guards/files-only-office.strategy.js.map +1 -1
- package/server/applications/files/services/files-only-office-manager.service.js +5 -0
- package/server/applications/files/services/files-only-office-manager.service.js.map +1 -1
- package/server/applications/links/links.controller.spec.js +91 -58
- package/server/applications/links/links.controller.spec.js.map +1 -1
- package/server/applications/links/services/links-manager.service.js +4 -6
- package/server/applications/links/services/links-manager.service.js.map +1 -1
- package/server/applications/links/services/links-manager.service.spec.js +378 -14
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
- package/server/applications/links/services/links-queries.service.js +1 -1
- package/server/applications/links/services/links-queries.service.js.map +1 -1
- package/server/applications/notifications/notifications.controller.spec.js +56 -1
- package/server/applications/notifications/notifications.controller.spec.js.map +1 -1
- package/server/applications/notifications/services/notifications-manager.service.spec.js +461 -5
- package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.spec.js +590 -14
- package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
- package/server/applications/spaces/guards/space.guard.spec.js +153 -18
- package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
- package/server/applications/spaces/services/spaces-browser.service.js +7 -7
- package/server/applications/spaces/services/spaces-browser.service.js.map +1 -1
- package/server/applications/spaces/services/spaces-manager.service.js +17 -17
- package/server/applications/spaces/services/spaces-manager.service.js.map +1 -1
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js +120 -0
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js.map +1 -0
- package/server/applications/sync/services/sync-clients-manager.service.spec.js +548 -8
- package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -1
- package/server/applications/sync/services/sync-manager.service.spec.js +837 -5
- package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -1
- package/server/applications/sync/services/sync-paths-manager.service.spec.js +900 -7
- package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -1
- package/server/applications/sync/utils/routes.js +1 -1
- package/server/applications/sync/utils/routes.js.map +1 -1
- package/server/applications/users/guards/permissions.guard.js +4 -4
- package/server/applications/users/guards/permissions.guard.js.map +1 -1
- package/server/applications/users/guards/permissions.guard.spec.js +6 -6
- package/server/applications/users/guards/permissions.guard.spec.js.map +1 -1
- package/server/applications/users/guards/roles.guard.js +1 -1
- package/server/applications/users/guards/roles.guard.js.map +1 -1
- package/server/applications/users/models/user.model.js +1 -1
- package/server/applications/users/models/user.model.js.map +1 -1
- package/server/applications/users/services/admin-users-manager.service.js +22 -24
- package/server/applications/users/services/admin-users-manager.service.js.map +1 -1
- package/server/applications/users/services/admin-users-manager.service.spec.js +763 -17
- package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -1
- package/server/applications/users/services/users-manager.service.js +1 -1
- package/server/applications/users/services/users-manager.service.js.map +1 -1
- package/server/applications/users/services/users-manager.service.spec.js +938 -49
- package/server/applications/users/services/users-manager.service.spec.js.map +1 -1
- package/server/applications/webdav/decorators/if-header.decorator.js +4 -1
- package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -1
- package/server/applications/webdav/filters/webdav.filter.spec.js +77 -0
- package/server/applications/webdav/filters/webdav.filter.spec.js.map +1 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.js +3 -7
- package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +580 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -0
- package/server/applications/webdav/services/webdav-methods.service.spec.js +1582 -3
- package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
- package/server/applications/webdav/services/webdav-spaces.service.spec.js +390 -2
- package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -1
- package/server/applications/webdav/webdav.controller.js +2 -2
- package/server/applications/webdav/webdav.controller.js.map +1 -1
- package/server/authentication/guards/auth-basic.guard.js.map +1 -1
- package/server/authentication/guards/auth-basic.guard.spec.js +38 -2
- package/server/authentication/guards/auth-basic.guard.spec.js.map +1 -1
- package/server/authentication/guards/auth-basic.strategy.js +0 -1
- package/server/authentication/guards/auth-basic.strategy.js.map +1 -1
- package/server/authentication/guards/auth-digest.guard.js +1 -2
- package/server/authentication/guards/auth-digest.guard.js.map +1 -1
- package/server/authentication/guards/auth-local.guard.js.map +1 -1
- package/server/authentication/guards/auth-local.guard.spec.js +7 -5
- package/server/authentication/guards/auth-local.guard.spec.js.map +1 -1
- package/server/authentication/guards/auth-local.strategy.js +0 -1
- package/server/authentication/guards/auth-local.strategy.js.map +1 -1
- package/server/authentication/guards/auth-token-access.guard.spec.js +30 -0
- package/server/authentication/guards/auth-token-access.guard.spec.js.map +1 -1
- package/server/authentication/guards/auth-token-access.strategy.js +0 -1
- package/server/authentication/guards/auth-token-access.strategy.js.map +1 -1
- package/server/authentication/guards/auth-token-refresh.strategy.js +0 -1
- package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-database.service.js +1 -1
- package/server/authentication/services/auth-methods/auth-method-database.service.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js +8 -6
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js +2 -2
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +500 -5
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -1
- package/server/configuration/config.loader.js +0 -3
- package/server/configuration/config.loader.js.map +1 -1
- package/server/infrastructure/context/interceptors/context.interceptor.spec.js +135 -0
- package/server/infrastructure/context/interceptors/context.interceptor.spec.js.map +1 -0
- package/server/infrastructure/context/services/context-manager.service.spec.js +98 -0
- package/server/infrastructure/context/services/context-manager.service.spec.js.map +1 -0
- package/server/infrastructure/database/constants.js +0 -1
- package/server/infrastructure/database/constants.js.map +1 -1
- package/server/infrastructure/database/scripts/seed/usersgroups.js +3 -3
- package/server/infrastructure/database/scripts/seed/usersgroups.js.map +1 -1
- package/server/infrastructure/mailer/mailer.service.js +20 -19
- package/server/infrastructure/mailer/mailer.service.js.map +1 -1
- package/server/infrastructure/mailer/mailer.service.spec.js +176 -0
- package/server/infrastructure/mailer/mailer.service.spec.js.map +1 -0
- package/static/3rdpartylicenses.txt +26 -26
- package/static/assets/pdfjs/build/pdf.mjs +1177 -255
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +25 -2
- package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.worker.mjs +140 -16
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
- package/static/assets/pdfjs/version +1 -1
- package/static/assets/pdfjs/web/debugger.css +31 -0
- package/static/assets/pdfjs/web/debugger.mjs +144 -2
- package/static/assets/pdfjs/web/images/comment-editButton.svg +6 -1
- package/static/assets/pdfjs/web/locale/ach/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/af/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/an/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/ast/viewer.ftl +0 -60
- package/static/assets/pdfjs/web/locale/az/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/bg/viewer.ftl +0 -37
- package/static/assets/pdfjs/web/locale/bn/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/bo/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/br/viewer.ftl +0 -37
- package/static/assets/pdfjs/web/locale/brx/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +22 -0
- package/static/assets/pdfjs/web/locale/ca/viewer.ftl +0 -54
- package/static/assets/pdfjs/web/locale/cak/viewer.ftl +0 -54
- package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +25 -0
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -6
- package/static/assets/pdfjs/web/locale/et/viewer.ftl +0 -57
- package/static/assets/pdfjs/web/locale/fa/viewer.ftl +0 -37
- package/static/assets/pdfjs/web/locale/ff/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/gd/viewer.ftl +0 -54
- package/static/assets/pdfjs/web/locale/gl/viewer.ftl +8 -0
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +0 -60
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +0 -49
- package/static/assets/pdfjs/web/locale/hye/viewer.ftl +0 -60
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -3
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +31 -0
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +8 -0
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +48 -10
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +5 -0
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +8 -0
- package/static/assets/pdfjs/web/locale/km/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/kn/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/lij/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/lo/viewer.ftl +0 -54
- package/static/assets/pdfjs/web/locale/lt/viewer.ftl +0 -60
- package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/lv/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/meh/viewer.ftl +0 -75
- package/static/assets/pdfjs/web/locale/mk/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/ml/viewer.ftl +0 -3
- package/static/assets/pdfjs/web/locale/mr/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/ms/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/my/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +44 -6
- package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +45 -1
- package/static/assets/pdfjs/web/locale/oc/viewer.ftl +0 -31
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +39 -1
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +355 -1
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/sat/viewer.ftl +0 -54
- package/static/assets/pdfjs/web/locale/sc/viewer.ftl +0 -38
- package/static/assets/pdfjs/web/locale/scn/viewer.ftl +0 -92
- package/static/assets/pdfjs/web/locale/sco/viewer.ftl +0 -60
- package/static/assets/pdfjs/web/locale/si/viewer.ftl +0 -51
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/skr/viewer.ftl +0 -27
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +8 -0
- package/static/assets/pdfjs/web/locale/son/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/sr/viewer.ftl +0 -33
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/szl/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/ta/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/te/viewer.ftl +0 -60
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/tl/viewer.ftl +0 -63
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +40 -2
- package/static/assets/pdfjs/web/locale/trs/viewer.ftl +0 -72
- package/static/assets/pdfjs/web/locale/ur/viewer.ftl +0 -60
- package/static/assets/pdfjs/web/locale/uz/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/wo/viewer.ftl +0 -77
- package/static/assets/pdfjs/web/locale/xh/viewer.ftl +0 -71
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +38 -0
- package/static/assets/pdfjs/web/viewer.css +649 -120
- package/static/assets/pdfjs/web/viewer.html +19 -0
- package/static/assets/pdfjs/web/viewer.mjs +489 -38
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
- package/static/chunk-22EANI6R.js +1 -0
- package/static/{chunk-KFM544CA.js → chunk-2UWN7IQF.js} +1 -1
- package/static/{chunk-N3T57OCA.js → chunk-2VSPDSJS.js} +1 -1
- package/static/{chunk-HUWQHCUX.js → chunk-34UZ7SYI.js} +1 -1
- package/static/{chunk-MWFRZBJD.js → chunk-45UQJGGY.js} +1 -1
- package/static/{chunk-LYTD6AJE.js → chunk-5TEXH3LJ.js} +1 -1
- package/static/{chunk-4KESSWTF.js → chunk-66FMKVJX.js} +1 -1
- package/static/{chunk-XE5YHU5J.js → chunk-BIUNUYZ5.js} +1 -1
- package/static/chunk-CK4BY2NX.js +27 -0
- package/static/{chunk-QTW62OKJ.js → chunk-CSBDAY77.js} +1 -1
- package/static/{chunk-XUZSYWRF.js → chunk-CXXPLBDZ.js} +1 -1
- package/static/{chunk-ZTXJC5IC.js → chunk-EILQG525.js} +1 -1
- package/static/{chunk-FJFNDK67.js → chunk-ENWABUR4.js} +1 -1
- package/static/{chunk-WL65GYD5.js → chunk-FR4AOLYL.js} +4 -4
- package/static/chunk-HW2H3ISM.js +559 -0
- package/static/{chunk-BW5PQAKK.js → chunk-HYMDGBZL.js} +1 -1
- package/static/{chunk-WLPYIJFI.js → chunk-IML5UYQG.js} +1 -1
- package/static/{chunk-Z5X7LVMZ.js → chunk-IPSMJHMQ.js} +1 -1
- package/static/{chunk-3S4WNZ2T.js → chunk-JVCWYSNP.js} +1 -1
- package/static/{chunk-CLSVDV7J.js → chunk-KGPCIUD2.js} +1 -1
- package/static/{chunk-O4AQBQBF.js → chunk-KQZJSEM3.js} +1 -1
- package/static/{chunk-MK7WZG3F.js → chunk-NPEMJJIU.js} +1 -1
- package/static/{chunk-4TEHM3AS.js → chunk-OEFBC4GG.js} +1 -1
- package/static/{chunk-O67RFAWU.js → chunk-P734A3XZ.js} +1 -1
- package/static/{chunk-SRLMFJ7C.js → chunk-RASR4CK6.js} +1 -1
- package/static/{chunk-S5WXHO6D.js → chunk-RFMOUC22.js} +1 -1
- package/static/{chunk-TTQ37MUV.js → chunk-RSS6GYNE.js} +1 -1
- package/static/{chunk-3FX6ISDY.js → chunk-SBOQGGZX.js} +1 -1
- package/static/{chunk-NV2MEIWP.js → chunk-SJAFPXQV.js} +1 -1
- package/static/{chunk-PYSFXLMV.js → chunk-XTYGMF2V.js} +1 -1
- package/static/{chunk-ZFKCGL6X.js → chunk-YCWMV2YR.js} +1 -1
- package/static/{chunk-LB7B5RIV.js → chunk-YGD22MWQ.js} +1 -1
- package/static/{chunk-MTRNPGS4.js → chunk-ZC5NIT55.js} +1 -1
- package/static/{chunk-SKDQM65G.js → chunk-ZVY37DKS.js} +1 -1
- package/static/index.html +2 -2
- package/static/main-N5CZRHAO.js +7 -0
- package/static/styles-FYUSO6OJ.css +1 -0
- package/static/chunk-AY2GOSJ2.js +0 -24
- package/static/chunk-RSNLYAN6.js +0 -560
- package/static/chunk-ZZ3LHYOY.js +0 -1
- package/static/main-RREKR34B.js +0 -10
- package/static/styles-3DONJ2Z4.css +0 -1
|
@@ -272,12 +272,6 @@ pdfjs-editor-ink-button =
|
|
|
272
272
|
.title = Tarraing
|
|
273
273
|
pdfjs-editor-ink-button-label = Tarraing
|
|
274
274
|
|
|
275
|
-
## Default editor aria labels
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
## Remove button for the various kind of editor.
|
|
279
|
-
|
|
280
|
-
|
|
281
275
|
##
|
|
282
276
|
|
|
283
277
|
# Editor Parameters
|
|
@@ -293,51 +287,3 @@ pdfjs-ink =
|
|
|
293
287
|
.aria-label = An deasaiche tharraingean
|
|
294
288
|
pdfjs-ink-canvas =
|
|
295
289
|
.aria-label = Dealbh a chruthaich cleachdaiche
|
|
296
|
-
|
|
297
|
-
## Alt-text dialog
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
## Editor resizers
|
|
301
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
## Color picker
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
## Show all highlights
|
|
308
|
-
## This is a toggle button to show/hide all the highlights.
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
## New alt-text dialog
|
|
312
|
-
## 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.
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
## Image alt-text settings
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
## "Annotations removed" bar
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
## Add a signature dialog
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
## Tab names
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
## Tab panels
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
## Controls
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
## Dialog buttons
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
## Main menu for adding/removing signatures
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
## Editor toolbar
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
## Edit signature description dialog
|
|
343
|
-
|
|
@@ -524,6 +524,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Mostrar o editor de te
|
|
|
524
524
|
pdfjs-editor-alt-text-settings-show-dialog-description = Axúdache a asegurarte de que todas as túas imaxes teñan texto alternativo.
|
|
525
525
|
pdfjs-editor-alt-text-settings-close-button = Pechar
|
|
526
526
|
|
|
527
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
528
|
+
|
|
529
|
+
pdfjs-editor-highlight-added-alert = Resaltado engadido
|
|
530
|
+
pdfjs-editor-freetext-added-alert = Texto engadido
|
|
531
|
+
pdfjs-editor-ink-added-alert = Debuxo engadido
|
|
532
|
+
pdfjs-editor-stamp-added-alert = Imaxe engadida
|
|
533
|
+
pdfjs-editor-signature-added-alert = Sinatura engadida
|
|
534
|
+
|
|
527
535
|
## "Annotations removed" bar
|
|
528
536
|
|
|
529
537
|
pdfjs-editor-undo-bar-message-highlight = Resaltado eliminado
|
|
@@ -302,9 +302,13 @@ pdfjs-web-fonts-disabled = Ñanduti taity oñemongéma: ndaikatumo’ãi eiporu
|
|
|
302
302
|
|
|
303
303
|
pdfjs-editor-free-text-button =
|
|
304
304
|
.title = Moñe’ẽrã
|
|
305
|
+
pdfjs-editor-color-picker-free-text-input =
|
|
306
|
+
.title = Emoambue moñe’ẽrã sa’y
|
|
305
307
|
pdfjs-editor-free-text-button-label = Moñe’ẽrã
|
|
306
308
|
pdfjs-editor-ink-button =
|
|
307
309
|
.title = Moha’ãnga
|
|
310
|
+
pdfjs-editor-color-picker-ink-input =
|
|
311
|
+
.title = Emoambue ta’ãnga sa’y
|
|
308
312
|
pdfjs-editor-ink-button-label = Moha’ãnga
|
|
309
313
|
pdfjs-editor-stamp-button =
|
|
310
314
|
.title = Embojuaju térã embosako’i ta’ãnga
|
|
@@ -316,6 +320,10 @@ pdfjs-highlight-floating-button1 =
|
|
|
316
320
|
.title = Mbosa’y
|
|
317
321
|
.aria-label = Mbosa’y
|
|
318
322
|
pdfjs-highlight-floating-button-label = Mbosa’y
|
|
323
|
+
pdfjs-comment-floating-button =
|
|
324
|
+
.title = Je’erei
|
|
325
|
+
.aria-label = Je’erei
|
|
326
|
+
pdfjs-comment-floating-button-label = Je’erei
|
|
319
327
|
pdfjs-editor-signature-button =
|
|
320
328
|
.title = Embojuaju teraguapy
|
|
321
329
|
pdfjs-editor-signature-button-label = Embojuaju teraguapy
|
|
@@ -524,6 +532,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Ehechauka moñe’ẽr
|
|
|
524
532
|
pdfjs-editor-alt-text-settings-show-dialog-description = Nepytyvõta ta’ãngakuéra orekotaha moñe’ẽrã mokõiha.
|
|
525
533
|
pdfjs-editor-alt-text-settings-close-button = Mboty
|
|
526
534
|
|
|
535
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
536
|
+
|
|
537
|
+
pdfjs-editor-highlight-added-alert = Techaukarã juajupyre
|
|
538
|
+
pdfjs-editor-freetext-added-alert = Moñe’ẽrã juajupyre
|
|
539
|
+
pdfjs-editor-ink-added-alert = Ta’ãnga juajupyre
|
|
540
|
+
pdfjs-editor-stamp-added-alert = Ta’ãnga juajupyre
|
|
541
|
+
pdfjs-editor-signature-added-alert = Teraguapy juajupyre
|
|
542
|
+
|
|
527
543
|
## "Annotations removed" bar
|
|
528
544
|
|
|
529
545
|
pdfjs-editor-undo-bar-message-highlight = Mbosa’ýva mboguete
|
|
@@ -591,6 +607,8 @@ pdfjs-editor-add-signature-save-checkbox = Eñongatu teraguapy
|
|
|
591
607
|
pdfjs-editor-add-signature-save-warning-message = Ehupytýma 5 mboheraguapy ñongatupyre. Embogue peteĩ eñongatukuaa jey hag̃ua.
|
|
592
608
|
pdfjs-editor-add-signature-image-upload-error-title = Ndaikatúi ojehupi pe ta’ãnga
|
|
593
609
|
pdfjs-editor-add-signature-image-upload-error-description = Ehechajey ne ñanduti oikópa térã aha’ã ambue ta’ãnga ndive.
|
|
610
|
+
pdfjs-editor-add-signature-image-no-data-error-title = Ndaikatúi ejapo ko ta’ãngágui teraguapy
|
|
611
|
+
pdfjs-editor-add-signature-image-no-data-error-description = Eñeha’ãkena ehupi ambuéva ta’ãnga.
|
|
594
612
|
pdfjs-editor-add-signature-error-close-button = Mboty
|
|
595
613
|
|
|
596
614
|
## Dialog buttons
|
|
@@ -599,6 +617,26 @@ pdfjs-editor-add-signature-cancel-button = Heja
|
|
|
599
617
|
pdfjs-editor-add-signature-add-button = Mbojuaju
|
|
600
618
|
pdfjs-editor-edit-signature-update-button = Mbohekopyahu
|
|
601
619
|
|
|
620
|
+
## Edit a comment dialog
|
|
621
|
+
|
|
622
|
+
pdfjs-editor-edit-comment-actions-button-label = Ñemongu’e
|
|
623
|
+
pdfjs-editor-edit-comment-actions-button =
|
|
624
|
+
.title = Ñemongu’e
|
|
625
|
+
pdfjs-editor-edit-comment-close-button-label = Mboty
|
|
626
|
+
pdfjs-editor-edit-comment-close-button =
|
|
627
|
+
.title = Mboty
|
|
628
|
+
pdfjs-editor-edit-comment-actions-edit-button-label = Mbosako’i
|
|
629
|
+
pdfjs-editor-edit-comment-actions-delete-button-label = Mboguete
|
|
630
|
+
pdfjs-editor-edit-comment-manager-text-input =
|
|
631
|
+
.placeholder = Ehai peteĩ je’erei
|
|
632
|
+
pdfjs-editor-edit-comment-manager-cancel-button = Heja
|
|
633
|
+
pdfjs-editor-edit-comment-manager-save-button = Ñongatu
|
|
634
|
+
|
|
635
|
+
## Edit a comment button in the editor toolbar
|
|
636
|
+
|
|
637
|
+
pdfjs-editor-edit-comment-button =
|
|
638
|
+
.title = Je’erei mbosako’i
|
|
639
|
+
|
|
602
640
|
## Main menu for adding/removing signatures
|
|
603
641
|
|
|
604
642
|
pdfjs-editor-delete-signature-button1 =
|
|
@@ -207,9 +207,6 @@ pdfjs-page-scale-actual = ચોક્કસ માપ
|
|
|
207
207
|
# $scale (Number) - percent value for page scale
|
|
208
208
|
pdfjs-page-scale-percent = { $scale }%
|
|
209
209
|
|
|
210
|
-
## PDF page
|
|
211
|
-
|
|
212
|
-
|
|
213
210
|
## Loading indicator messages
|
|
214
211
|
|
|
215
212
|
pdfjs-loading-error = ભૂલ ઉદ્ભવી જ્યારે PDF ને લાવી રહ્યા હોય.
|
|
@@ -235,63 +232,3 @@ pdfjs-password-invalid = અયોગ્ય પાસવર્ડ. મહેર
|
|
|
235
232
|
pdfjs-password-ok-button = બરાબર
|
|
236
233
|
pdfjs-password-cancel-button = રદ કરો
|
|
237
234
|
pdfjs-web-fonts-disabled = વેબ ફોન્ટ નિષ્ક્રિય થયેલ છે: ઍમ્બેડ થયેલ PDF ફોન્ટને વાપરવાનું અસમર્થ.
|
|
238
|
-
|
|
239
|
-
## Editing
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
## Default editor aria labels
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
## Remove button for the various kind of editor.
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
##
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
## Alt-text dialog
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
## Editor resizers
|
|
255
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
## Color picker
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
## Show all highlights
|
|
262
|
-
## This is a toggle button to show/hide all the highlights.
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
## New alt-text dialog
|
|
266
|
-
## 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.
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
## Image alt-text settings
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
## "Annotations removed" bar
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
## Add a signature dialog
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
## Tab names
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
## Tab panels
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
## Controls
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
## Dialog buttons
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
## Main menu for adding/removing signatures
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
## Editor toolbar
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
## Edit signature description dialog
|
|
297
|
-
|
|
@@ -302,9 +302,13 @@ pdfjs-web-fonts-disabled = גופני רשת מנוטרלים: לא ניתן ל
|
|
|
302
302
|
|
|
303
303
|
pdfjs-editor-free-text-button =
|
|
304
304
|
.title = טקסט
|
|
305
|
+
pdfjs-editor-color-picker-free-text-input =
|
|
306
|
+
.title = שינוי צבע הטקסט
|
|
305
307
|
pdfjs-editor-free-text-button-label = טקסט
|
|
306
308
|
pdfjs-editor-ink-button =
|
|
307
309
|
.title = ציור
|
|
310
|
+
pdfjs-editor-color-picker-ink-input =
|
|
311
|
+
.title = שינוי צבע הציור
|
|
308
312
|
pdfjs-editor-ink-button-label = ציור
|
|
309
313
|
pdfjs-editor-stamp-button =
|
|
310
314
|
.title = הוספה או עריכת תמונות
|
|
@@ -316,6 +320,10 @@ pdfjs-highlight-floating-button1 =
|
|
|
316
320
|
.title = סימון
|
|
317
321
|
.aria-label = סימון
|
|
318
322
|
pdfjs-highlight-floating-button-label = סימון
|
|
323
|
+
pdfjs-comment-floating-button =
|
|
324
|
+
.title = הערה
|
|
325
|
+
.aria-label = הערה
|
|
326
|
+
pdfjs-comment-floating-button-label = הערה
|
|
319
327
|
pdfjs-editor-signature-button =
|
|
320
328
|
.title = הוספת חתימה
|
|
321
329
|
pdfjs-editor-signature-button-label = הוספת חתימה
|
|
@@ -524,6 +532,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = הצגת עורך טק
|
|
|
524
532
|
pdfjs-editor-alt-text-settings-show-dialog-description = מסייע לך לוודא שלכל התמונות שלך יש טקסט חלופי.
|
|
525
533
|
pdfjs-editor-alt-text-settings-close-button = סגירה
|
|
526
534
|
|
|
535
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
536
|
+
|
|
537
|
+
pdfjs-editor-highlight-added-alert = הסימון נוסף
|
|
538
|
+
pdfjs-editor-freetext-added-alert = הטקסט נוסף
|
|
539
|
+
pdfjs-editor-ink-added-alert = הציור נוסף
|
|
540
|
+
pdfjs-editor-stamp-added-alert = התמונה נוספה
|
|
541
|
+
pdfjs-editor-signature-added-alert = החתימה נוספה
|
|
542
|
+
|
|
527
543
|
## "Annotations removed" bar
|
|
528
544
|
|
|
529
545
|
pdfjs-editor-undo-bar-message-highlight = הסימון הוסר
|
|
@@ -592,6 +608,8 @@ pdfjs-editor-add-signature-save-checkbox = שמירת החתימה
|
|
|
592
608
|
pdfjs-editor-add-signature-save-warning-message = הגעת למגבלה של 5 חתימות שמורות. יש להסיר אחד כדי לשמור עוד.
|
|
593
609
|
pdfjs-editor-add-signature-image-upload-error-title = לא ניתן להעלות את התמונה
|
|
594
610
|
pdfjs-editor-add-signature-image-upload-error-description = נא לבדוק את החיבור שלך לרשת או לנסות תמונה אחרת.
|
|
611
|
+
pdfjs-editor-add-signature-image-no-data-error-title = לא ניתן להמיר את התמונה הזו לחתימה
|
|
612
|
+
pdfjs-editor-add-signature-image-no-data-error-description = נא לנסות להעלות תמונה אחרת.
|
|
595
613
|
pdfjs-editor-add-signature-error-close-button = סגירה
|
|
596
614
|
|
|
597
615
|
## Dialog buttons
|
|
@@ -600,6 +618,26 @@ pdfjs-editor-add-signature-cancel-button = ביטול
|
|
|
600
618
|
pdfjs-editor-add-signature-add-button = הוספה
|
|
601
619
|
pdfjs-editor-edit-signature-update-button = עדכון
|
|
602
620
|
|
|
621
|
+
## Edit a comment dialog
|
|
622
|
+
|
|
623
|
+
pdfjs-editor-edit-comment-actions-button-label = פעולות
|
|
624
|
+
pdfjs-editor-edit-comment-actions-button =
|
|
625
|
+
.title = פעולות
|
|
626
|
+
pdfjs-editor-edit-comment-close-button-label = סגירה
|
|
627
|
+
pdfjs-editor-edit-comment-close-button =
|
|
628
|
+
.title = סגירה
|
|
629
|
+
pdfjs-editor-edit-comment-actions-edit-button-label = עריכה
|
|
630
|
+
pdfjs-editor-edit-comment-actions-delete-button-label = מחיקה
|
|
631
|
+
pdfjs-editor-edit-comment-manager-text-input =
|
|
632
|
+
.placeholder = נא להכניס את ההערה שלך
|
|
633
|
+
pdfjs-editor-edit-comment-manager-cancel-button = ביטול
|
|
634
|
+
pdfjs-editor-edit-comment-manager-save-button = שמירה
|
|
635
|
+
|
|
636
|
+
## Edit a comment button in the editor toolbar
|
|
637
|
+
|
|
638
|
+
pdfjs-editor-edit-comment-button =
|
|
639
|
+
.title = עריכת הערה
|
|
640
|
+
|
|
603
641
|
## Main menu for adding/removing signatures
|
|
604
642
|
|
|
605
643
|
pdfjs-editor-delete-signature-button1 =
|
|
@@ -201,9 +201,6 @@ pdfjs-page-scale-actual = वास्तविक आकार
|
|
|
201
201
|
# $scale (Number) - percent value for page scale
|
|
202
202
|
pdfjs-page-scale-percent = { $scale }%
|
|
203
203
|
|
|
204
|
-
## PDF page
|
|
205
|
-
|
|
206
|
-
|
|
207
204
|
## Loading indicator messages
|
|
208
205
|
|
|
209
206
|
pdfjs-loading-error = PDF लोड करते समय एक त्रुटि हुई.
|
|
@@ -234,64 +231,7 @@ pdfjs-password-ok-button = OK
|
|
|
234
231
|
pdfjs-password-cancel-button = रद्द करें
|
|
235
232
|
pdfjs-web-fonts-disabled = वेब फॉन्ट्स निष्क्रिय हैं: अंतःस्थापित PDF फॉन्टस के उपयोग में असमर्थ.
|
|
236
233
|
|
|
237
|
-
## Editing
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
## Default editor aria labels
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
## Remove button for the various kind of editor.
|
|
244
|
-
|
|
245
|
-
|
|
246
234
|
##
|
|
247
235
|
|
|
248
236
|
# Editor Parameters
|
|
249
237
|
pdfjs-editor-free-text-color-input = रंग
|
|
250
|
-
|
|
251
|
-
## Alt-text dialog
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
## Editor resizers
|
|
255
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
## Color picker
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
## Show all highlights
|
|
262
|
-
## This is a toggle button to show/hide all the highlights.
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
## New alt-text dialog
|
|
266
|
-
## 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.
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
## Image alt-text settings
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
## "Annotations removed" bar
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
## Add a signature dialog
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
## Tab names
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
## Tab panels
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
## Controls
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
## Dialog buttons
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
## Main menu for adding/removing signatures
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
## Editor toolbar
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
## Edit signature description dialog
|
|
297
|
-
|
|
@@ -306,9 +306,13 @@ pdfjs-web-fonts-disabled = Webpisma su znjemóžnjene: njeje móžno, zasadźene
|
|
|
306
306
|
|
|
307
307
|
pdfjs-editor-free-text-button =
|
|
308
308
|
.title = Tekst
|
|
309
|
+
pdfjs-editor-color-picker-free-text-input =
|
|
310
|
+
.title = Tekstowu barbu změnić
|
|
309
311
|
pdfjs-editor-free-text-button-label = Tekst
|
|
310
312
|
pdfjs-editor-ink-button =
|
|
311
313
|
.title = Rysować
|
|
314
|
+
pdfjs-editor-color-picker-ink-input =
|
|
315
|
+
.title = Rysowansku barbu změnić
|
|
312
316
|
pdfjs-editor-ink-button-label = Rysować
|
|
313
317
|
pdfjs-editor-stamp-button =
|
|
314
318
|
.title = Wobrazy přidać abo wobdźěłać
|
|
@@ -320,6 +324,10 @@ pdfjs-highlight-floating-button1 =
|
|
|
320
324
|
.title = Wuzběhnjenje
|
|
321
325
|
.aria-label = Wuzběhnjenje
|
|
322
326
|
pdfjs-highlight-floating-button-label = Wuzběhnjenje
|
|
327
|
+
pdfjs-comment-floating-button =
|
|
328
|
+
.title = Komentować
|
|
329
|
+
.aria-label = Komentować
|
|
330
|
+
pdfjs-comment-floating-button-label = Komentować
|
|
323
331
|
pdfjs-editor-signature-button =
|
|
324
332
|
.title = Signaturu přidać
|
|
325
333
|
pdfjs-editor-signature-button-label = Signaturu přidać
|
|
@@ -528,6 +536,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Editor alternatiwneho
|
|
|
528
536
|
pdfjs-editor-alt-text-settings-show-dialog-description = Pomha, wam wšěm swojim wobrazam alternatiwny tekst přidać.
|
|
529
537
|
pdfjs-editor-alt-text-settings-close-button = Začinić
|
|
530
538
|
|
|
539
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
540
|
+
|
|
541
|
+
pdfjs-editor-highlight-added-alert = Wuzběhnjenje přidate
|
|
542
|
+
pdfjs-editor-freetext-added-alert = Tekst přidaty
|
|
543
|
+
pdfjs-editor-ink-added-alert = Rysowanka přidata
|
|
544
|
+
pdfjs-editor-stamp-added-alert = Wobraz přidaty
|
|
545
|
+
pdfjs-editor-signature-added-alert = Signatura přidata
|
|
546
|
+
|
|
531
547
|
## "Annotations removed" bar
|
|
532
548
|
|
|
533
549
|
pdfjs-editor-undo-bar-message-highlight = Wotstronjene wuzběhnyć
|
|
@@ -598,6 +614,8 @@ pdfjs-editor-add-signature-save-checkbox = Signaturu składować
|
|
|
598
614
|
pdfjs-editor-add-signature-save-warning-message = Sće limit 5 składowanych signaturow docpěł. Wotstrońće jednu, zo byšće wjace składował.
|
|
599
615
|
pdfjs-editor-add-signature-image-upload-error-title = Wobraz njeda so nahrać
|
|
600
616
|
pdfjs-editor-add-signature-image-upload-error-description = Přepruwujće swój syćowy zwisk abo spytajće druhi wobraz.
|
|
617
|
+
pdfjs-editor-add-signature-image-no-data-error-title = Tutón wobraz njeda so do signatury přetworić
|
|
618
|
+
pdfjs-editor-add-signature-image-no-data-error-description = Spytajće prošu druhi wobraz nahrać.
|
|
601
619
|
pdfjs-editor-add-signature-error-close-button = Začinić
|
|
602
620
|
|
|
603
621
|
## Dialog buttons
|
|
@@ -606,6 +624,26 @@ pdfjs-editor-add-signature-cancel-button = Přetorhnyć
|
|
|
606
624
|
pdfjs-editor-add-signature-add-button = Přidać
|
|
607
625
|
pdfjs-editor-edit-signature-update-button = Aktualizować
|
|
608
626
|
|
|
627
|
+
## Edit a comment dialog
|
|
628
|
+
|
|
629
|
+
pdfjs-editor-edit-comment-actions-button-label = Akcije
|
|
630
|
+
pdfjs-editor-edit-comment-actions-button =
|
|
631
|
+
.title = Akcije
|
|
632
|
+
pdfjs-editor-edit-comment-close-button-label = Začinić
|
|
633
|
+
pdfjs-editor-edit-comment-close-button =
|
|
634
|
+
.title = Začinić
|
|
635
|
+
pdfjs-editor-edit-comment-actions-edit-button-label = Wobdźěłać
|
|
636
|
+
pdfjs-editor-edit-comment-actions-delete-button-label = Zhašeć
|
|
637
|
+
pdfjs-editor-edit-comment-manager-text-input =
|
|
638
|
+
.placeholder = Zapodajće swój komentar
|
|
639
|
+
pdfjs-editor-edit-comment-manager-cancel-button = Přetorhnyć
|
|
640
|
+
pdfjs-editor-edit-comment-manager-save-button = Składować
|
|
641
|
+
|
|
642
|
+
## Edit a comment button in the editor toolbar
|
|
643
|
+
|
|
644
|
+
pdfjs-editor-edit-comment-button =
|
|
645
|
+
.title = Komentar wobdźěłać
|
|
646
|
+
|
|
609
647
|
## Main menu for adding/removing signatures
|
|
610
648
|
|
|
611
649
|
pdfjs-editor-delete-signature-button1 =
|
|
@@ -302,9 +302,13 @@ pdfjs-web-fonts-disabled = Webes betűkészletek letiltva: nem használhatók a
|
|
|
302
302
|
|
|
303
303
|
pdfjs-editor-free-text-button =
|
|
304
304
|
.title = Szöveg
|
|
305
|
+
pdfjs-editor-color-picker-free-text-input =
|
|
306
|
+
.title = Szövegszín módosítása
|
|
305
307
|
pdfjs-editor-free-text-button-label = Szöveg
|
|
306
308
|
pdfjs-editor-ink-button =
|
|
307
309
|
.title = Rajzolás
|
|
310
|
+
pdfjs-editor-color-picker-ink-input =
|
|
311
|
+
.title = Rajzolási szín módosítása
|
|
308
312
|
pdfjs-editor-ink-button-label = Rajzolás
|
|
309
313
|
pdfjs-editor-stamp-button =
|
|
310
314
|
.title = Képek hozzáadása vagy szerkesztése
|
|
@@ -316,6 +320,10 @@ pdfjs-highlight-floating-button1 =
|
|
|
316
320
|
.title = Kiemelés
|
|
317
321
|
.aria-label = Kiemelés
|
|
318
322
|
pdfjs-highlight-floating-button-label = Kiemelés
|
|
323
|
+
pdfjs-comment-floating-button =
|
|
324
|
+
.title = Megjegyzés
|
|
325
|
+
.aria-label = Megjegyzés
|
|
326
|
+
pdfjs-comment-floating-button-label = Megjegyzés
|
|
319
327
|
pdfjs-editor-signature-button =
|
|
320
328
|
.title = Aláírás hozzáadása
|
|
321
329
|
pdfjs-editor-signature-button-label = Aláírás hozzáadása
|
|
@@ -524,6 +532,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Az alternatív szöveg
|
|
|
524
532
|
pdfjs-editor-alt-text-settings-show-dialog-description = Segít elérni, hogy az összes képén legyen alternatív szöveg.
|
|
525
533
|
pdfjs-editor-alt-text-settings-close-button = Bezárás
|
|
526
534
|
|
|
535
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
536
|
+
|
|
537
|
+
pdfjs-editor-highlight-added-alert = Kiemelés hozzáadva
|
|
538
|
+
pdfjs-editor-freetext-added-alert = Szöveg hozzáadva
|
|
539
|
+
pdfjs-editor-ink-added-alert = Rajz hozzáadva
|
|
540
|
+
pdfjs-editor-stamp-added-alert = Kép hozzáadva
|
|
541
|
+
pdfjs-editor-signature-added-alert = Aláírás hozzáadva
|
|
542
|
+
|
|
527
543
|
## "Annotations removed" bar
|
|
528
544
|
|
|
529
545
|
pdfjs-editor-undo-bar-message-highlight = Kiemelés eltávolítva
|
|
@@ -592,6 +608,8 @@ pdfjs-editor-add-signature-save-checkbox = Aláírás mentése
|
|
|
592
608
|
pdfjs-editor-add-signature-save-warning-message = Elérte a mentett aláírások 5 darabos korlátját. A mentéshez távolítson el egyet.
|
|
593
609
|
pdfjs-editor-add-signature-image-upload-error-title = A kép nem tölthető fel
|
|
594
610
|
pdfjs-editor-add-signature-image-upload-error-description = Ellenőrizze a hálózati kapcsolatot, vagy próbálkozzon egy másik képpel.
|
|
611
|
+
pdfjs-editor-add-signature-image-no-data-error-title = Ez a kép nem alakítható át aláírássá
|
|
612
|
+
pdfjs-editor-add-signature-image-no-data-error-description = Próbáljon meg másik képet feltölteni.
|
|
595
613
|
pdfjs-editor-add-signature-error-close-button = Bezárás
|
|
596
614
|
|
|
597
615
|
## Dialog buttons
|
|
@@ -600,6 +618,26 @@ pdfjs-editor-add-signature-cancel-button = Mégse
|
|
|
600
618
|
pdfjs-editor-add-signature-add-button = Hozzáadás
|
|
601
619
|
pdfjs-editor-edit-signature-update-button = Frissítés
|
|
602
620
|
|
|
621
|
+
## Edit a comment dialog
|
|
622
|
+
|
|
623
|
+
pdfjs-editor-edit-comment-actions-button-label = Műveletek
|
|
624
|
+
pdfjs-editor-edit-comment-actions-button =
|
|
625
|
+
.title = Műveletek
|
|
626
|
+
pdfjs-editor-edit-comment-close-button-label = Bezárás
|
|
627
|
+
pdfjs-editor-edit-comment-close-button =
|
|
628
|
+
.title = Bezárás
|
|
629
|
+
pdfjs-editor-edit-comment-actions-edit-button-label = Szerkesztés
|
|
630
|
+
pdfjs-editor-edit-comment-actions-delete-button-label = Törlés
|
|
631
|
+
pdfjs-editor-edit-comment-manager-text-input =
|
|
632
|
+
.placeholder = Írja be a megjegyzését
|
|
633
|
+
pdfjs-editor-edit-comment-manager-cancel-button = Mégse
|
|
634
|
+
pdfjs-editor-edit-comment-manager-save-button = Mentés
|
|
635
|
+
|
|
636
|
+
## Edit a comment button in the editor toolbar
|
|
637
|
+
|
|
638
|
+
pdfjs-editor-edit-comment-button =
|
|
639
|
+
.title = Megjegyzés szerkesztése
|
|
640
|
+
|
|
603
641
|
## Main menu for adding/removing signatures
|
|
604
642
|
|
|
605
643
|
pdfjs-editor-delete-signature-button1 =
|
|
@@ -214,9 +214,6 @@ pdfjs-page-scale-actual = Իրական չափը
|
|
|
214
214
|
# $scale (Number) - percent value for page scale
|
|
215
215
|
pdfjs-page-scale-percent = { $scale }%
|
|
216
216
|
|
|
217
|
-
## PDF page
|
|
218
|
-
|
|
219
|
-
|
|
220
217
|
## Loading indicator messages
|
|
221
218
|
|
|
222
219
|
pdfjs-loading-error = Սխալ՝ PDF ֆայլը բացելիս։
|
|
@@ -247,15 +244,6 @@ pdfjs-password-ok-button = Լավ
|
|
|
247
244
|
pdfjs-password-cancel-button = Չեղարկել
|
|
248
245
|
pdfjs-web-fonts-disabled = Վեբ-տառատեսակները անջատված են. հնարավոր չէ օգտագործել ներկառուցված PDF տառատեսակները:
|
|
249
246
|
|
|
250
|
-
## Editing
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
## Default editor aria labels
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
## Remove button for the various kind of editor.
|
|
257
|
-
|
|
258
|
-
|
|
259
247
|
##
|
|
260
248
|
|
|
261
249
|
pdfjs-free-text-default-content = Սկսել մուտքագրումը…
|
|
@@ -264,13 +252,6 @@ pdfjs-free-text-default-content = Սկսել մուտքագրումը…
|
|
|
264
252
|
|
|
265
253
|
pdfjs-editor-alt-text-save-button = Պահպանել
|
|
266
254
|
|
|
267
|
-
## Editor resizers
|
|
268
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
## Color picker
|
|
272
|
-
|
|
273
|
-
|
|
274
255
|
## Show all highlights
|
|
275
256
|
## This is a toggle button to show/hide all the highlights.
|
|
276
257
|
|
|
@@ -282,33 +263,3 @@ pdfjs-editor-highlight-show-all-button =
|
|
|
282
263
|
## 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.
|
|
283
264
|
|
|
284
265
|
pdfjs-editor-new-alt-text-not-now-button = Ոչ հիմա
|
|
285
|
-
|
|
286
|
-
## Image alt-text settings
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
## "Annotations removed" bar
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
## Add a signature dialog
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
## Tab names
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
## Tab panels
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
## Controls
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
## Dialog buttons
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
## Main menu for adding/removing signatures
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
## Editor toolbar
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
## Edit signature description dialog
|
|
314
|
-
|
|
@@ -256,63 +256,3 @@ pdfjs-password-invalid = Գաղտնաբառը սխալ է: Կրկին փորձէ
|
|
|
256
256
|
pdfjs-password-ok-button = Լաւ
|
|
257
257
|
pdfjs-password-cancel-button = Չեղարկել
|
|
258
258
|
pdfjs-web-fonts-disabled = Վեբ-տառատեսակները անջատուած են. հնարաւոր չէ աւգտագործել ներկառուցուած PDF տառատեսակները։
|
|
259
|
-
|
|
260
|
-
## Editing
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
## Default editor aria labels
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
## Remove button for the various kind of editor.
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
##
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
## Alt-text dialog
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
## Editor resizers
|
|
276
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
## Color picker
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
## Show all highlights
|
|
283
|
-
## This is a toggle button to show/hide all the highlights.
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
## New alt-text dialog
|
|
287
|
-
## 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.
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
## Image alt-text settings
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
## "Annotations removed" bar
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
## Add a signature dialog
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
## Tab names
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
## Tab panels
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
## Controls
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
## Dialog buttons
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
## Main menu for adding/removing signatures
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
## Editor toolbar
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
## Edit signature description dialog
|
|
318
|
-
|