@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
|
@@ -302,9 +302,13 @@ pdfjs-web-fonts-disabled = Le typos de litteras web es disactivate: impossibile
|
|
|
302
302
|
|
|
303
303
|
pdfjs-editor-free-text-button =
|
|
304
304
|
.title = Texto
|
|
305
|
+
pdfjs-editor-color-picker-free-text-input =
|
|
306
|
+
.title = Cambiar color de texto
|
|
305
307
|
pdfjs-editor-free-text-button-label = Texto
|
|
306
308
|
pdfjs-editor-ink-button =
|
|
307
309
|
.title = Designar
|
|
310
|
+
pdfjs-editor-color-picker-ink-input =
|
|
311
|
+
.title = Cambiar color de designo
|
|
308
312
|
pdfjs-editor-ink-button-label = Designar
|
|
309
313
|
pdfjs-editor-stamp-button =
|
|
310
314
|
.title = Adder o rediger imagines
|
|
@@ -316,6 +320,10 @@ pdfjs-highlight-floating-button1 =
|
|
|
316
320
|
.title = Evidentiar
|
|
317
321
|
.aria-label = Evidentiar
|
|
318
322
|
pdfjs-highlight-floating-button-label = Evidentiar
|
|
323
|
+
pdfjs-comment-floating-button =
|
|
324
|
+
.title = Commento
|
|
325
|
+
.aria-label = Commento
|
|
326
|
+
pdfjs-comment-floating-button-label = Commento
|
|
319
327
|
pdfjs-editor-signature-button =
|
|
320
328
|
.title = Adder signatura
|
|
321
329
|
pdfjs-editor-signature-button-label = Adder signatura
|
|
@@ -524,6 +532,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Monstrar le redactor d
|
|
|
524
532
|
pdfjs-editor-alt-text-settings-show-dialog-description = Te adjuta a verifica que tote tu imagines ha un texto alternative.
|
|
525
533
|
pdfjs-editor-alt-text-settings-close-button = Clauder
|
|
526
534
|
|
|
535
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
536
|
+
|
|
537
|
+
pdfjs-editor-highlight-added-alert = Evidentia addite
|
|
538
|
+
pdfjs-editor-freetext-added-alert = Texto addite
|
|
539
|
+
pdfjs-editor-ink-added-alert = Designo addite
|
|
540
|
+
pdfjs-editor-stamp-added-alert = Imagine addite
|
|
541
|
+
pdfjs-editor-signature-added-alert = Firma addite
|
|
542
|
+
|
|
527
543
|
## "Annotations removed" bar
|
|
528
544
|
|
|
529
545
|
pdfjs-editor-undo-bar-message-highlight = Evidentiation removite
|
|
@@ -592,6 +608,8 @@ pdfjs-editor-add-signature-save-checkbox = Salvar signatura
|
|
|
592
608
|
pdfjs-editor-add-signature-save-warning-message = Tu ha attingite le limite de 5 firmas salvate. Remove un pro salvar un altere.
|
|
593
609
|
pdfjs-editor-add-signature-image-upload-error-title = Non poteva incargar le imagine
|
|
594
610
|
pdfjs-editor-add-signature-image-upload-error-description = Verifica tu connexion al rete o tenta un altere imagine.
|
|
611
|
+
pdfjs-editor-add-signature-image-no-data-error-title = Impossibile converter iste imagine in un firma
|
|
612
|
+
pdfjs-editor-add-signature-image-no-data-error-description = Essaya cargar un imagine differente.
|
|
595
613
|
pdfjs-editor-add-signature-error-close-button = Clauder
|
|
596
614
|
|
|
597
615
|
## Dialog buttons
|
|
@@ -600,6 +618,26 @@ pdfjs-editor-add-signature-cancel-button = Cancellar
|
|
|
600
618
|
pdfjs-editor-add-signature-add-button = Adder
|
|
601
619
|
pdfjs-editor-edit-signature-update-button = Actualisar
|
|
602
620
|
|
|
621
|
+
## Edit a comment dialog
|
|
622
|
+
|
|
623
|
+
pdfjs-editor-edit-comment-actions-button-label = Actiones
|
|
624
|
+
pdfjs-editor-edit-comment-actions-button =
|
|
625
|
+
.title = Actiones
|
|
626
|
+
pdfjs-editor-edit-comment-close-button-label = Clauder
|
|
627
|
+
pdfjs-editor-edit-comment-close-button =
|
|
628
|
+
.title = Clauder
|
|
629
|
+
pdfjs-editor-edit-comment-actions-edit-button-label = Rediger
|
|
630
|
+
pdfjs-editor-edit-comment-actions-delete-button-label = Deler
|
|
631
|
+
pdfjs-editor-edit-comment-manager-text-input =
|
|
632
|
+
.placeholder = Insere tu commento
|
|
633
|
+
pdfjs-editor-edit-comment-manager-cancel-button = Cancellar
|
|
634
|
+
pdfjs-editor-edit-comment-manager-save-button = Salvar
|
|
635
|
+
|
|
636
|
+
## Edit a comment button in the editor toolbar
|
|
637
|
+
|
|
638
|
+
pdfjs-editor-edit-comment-button =
|
|
639
|
+
.title = Rediger commento
|
|
640
|
+
|
|
603
641
|
## Main menu for adding/removing signatures
|
|
604
642
|
|
|
605
643
|
pdfjs-editor-delete-signature-button1 =
|
|
@@ -320,9 +320,6 @@ pdfjs-editor-signature-button =
|
|
|
320
320
|
.title = Bæta við undirritun
|
|
321
321
|
pdfjs-editor-signature-button-label = Bæta við undirritun
|
|
322
322
|
|
|
323
|
-
## Default editor aria labels
|
|
324
|
-
|
|
325
|
-
|
|
326
323
|
## Remove button for the various kind of editor.
|
|
327
324
|
|
|
328
325
|
pdfjs-editor-remove-ink-button =
|
|
@@ -302,9 +302,13 @@ pdfjs-web-fonts-disabled = I web font risultano disattivati: impossibile utilizz
|
|
|
302
302
|
|
|
303
303
|
pdfjs-editor-free-text-button =
|
|
304
304
|
.title = Testo
|
|
305
|
+
pdfjs-editor-color-picker-free-text-input =
|
|
306
|
+
.title = Cambia colore del testo
|
|
305
307
|
pdfjs-editor-free-text-button-label = Testo
|
|
306
308
|
pdfjs-editor-ink-button =
|
|
307
309
|
.title = Disegno
|
|
310
|
+
pdfjs-editor-color-picker-ink-input =
|
|
311
|
+
.title = Cambia colore del disegno
|
|
308
312
|
pdfjs-editor-ink-button-label = Disegno
|
|
309
313
|
pdfjs-editor-stamp-button =
|
|
310
314
|
.title = Aggiungi o rimuovi immagine
|
|
@@ -316,6 +320,10 @@ pdfjs-highlight-floating-button1 =
|
|
|
316
320
|
.title = Evidenzia
|
|
317
321
|
.aria-label = Evidenzia
|
|
318
322
|
pdfjs-highlight-floating-button-label = Evidenzia
|
|
323
|
+
pdfjs-comment-floating-button =
|
|
324
|
+
.title = Commenta
|
|
325
|
+
.aria-label = Commenta
|
|
326
|
+
pdfjs-comment-floating-button-label = Commenta
|
|
319
327
|
pdfjs-editor-signature-button =
|
|
320
328
|
.title = Aggiungi firma
|
|
321
329
|
pdfjs-editor-signature-button-label = Aggiungi firma
|
|
@@ -600,6 +608,8 @@ pdfjs-editor-add-signature-save-checkbox = Salva firma
|
|
|
600
608
|
pdfjs-editor-add-signature-save-warning-message = Hai raggiunto il limite di 5 firme salvate. Rimuovine una per salvarne altre.
|
|
601
609
|
pdfjs-editor-add-signature-image-upload-error-title = Impossibile caricare l’immagine
|
|
602
610
|
pdfjs-editor-add-signature-image-upload-error-description = Controlla la connessione di rete o prova con un’altra immagine.
|
|
611
|
+
pdfjs-editor-add-signature-image-no-data-error-title = Impossibile convertire questa immagine in una firma
|
|
612
|
+
pdfjs-editor-add-signature-image-no-data-error-description = Prova a caricare un’altra immagine.
|
|
603
613
|
pdfjs-editor-add-signature-error-close-button = Chiudi
|
|
604
614
|
|
|
605
615
|
## Dialog buttons
|
|
@@ -608,6 +618,26 @@ pdfjs-editor-add-signature-cancel-button = Annulla
|
|
|
608
618
|
pdfjs-editor-add-signature-add-button = Aggiungi
|
|
609
619
|
pdfjs-editor-edit-signature-update-button = Aggiorna
|
|
610
620
|
|
|
621
|
+
## Edit a comment dialog
|
|
622
|
+
|
|
623
|
+
pdfjs-editor-edit-comment-actions-button-label = Azioni
|
|
624
|
+
pdfjs-editor-edit-comment-actions-button =
|
|
625
|
+
.title = Azioni
|
|
626
|
+
pdfjs-editor-edit-comment-close-button-label = Chiudi
|
|
627
|
+
pdfjs-editor-edit-comment-close-button =
|
|
628
|
+
.title = Chiudi
|
|
629
|
+
pdfjs-editor-edit-comment-actions-edit-button-label = Modifica
|
|
630
|
+
pdfjs-editor-edit-comment-actions-delete-button-label = Elimina
|
|
631
|
+
pdfjs-editor-edit-comment-manager-text-input =
|
|
632
|
+
.placeholder = Inserisci il tuo commento
|
|
633
|
+
pdfjs-editor-edit-comment-manager-cancel-button = Annulla
|
|
634
|
+
pdfjs-editor-edit-comment-manager-save-button = Salva
|
|
635
|
+
|
|
636
|
+
## Edit a comment button in the editor toolbar
|
|
637
|
+
|
|
638
|
+
pdfjs-editor-edit-comment-button =
|
|
639
|
+
.title = Modifica commento
|
|
640
|
+
|
|
611
641
|
## Main menu for adding/removing signatures
|
|
612
642
|
|
|
613
643
|
pdfjs-editor-delete-signature-button1 =
|
|
@@ -621,3 +651,4 @@ pdfjs-editor-add-signature-edit-button-label = Modifica descrizione
|
|
|
621
651
|
## Edit signature description dialog
|
|
622
652
|
|
|
623
653
|
pdfjs-editor-edit-signature-dialog-title = Modifica descrizione
|
|
654
|
+
|
|
@@ -516,6 +516,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = 画像の追加時に
|
|
|
516
516
|
pdfjs-editor-alt-text-settings-show-dialog-description = すべての画像に代替テキストを追加する助けになります。
|
|
517
517
|
pdfjs-editor-alt-text-settings-close-button = 閉じる
|
|
518
518
|
|
|
519
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
520
|
+
|
|
521
|
+
pdfjs-editor-highlight-added-alert = 強調表示を追加しました
|
|
522
|
+
pdfjs-editor-freetext-added-alert = フリーテキスト注釈を追加しました
|
|
523
|
+
pdfjs-editor-ink-added-alert = インク注釈を追加しました
|
|
524
|
+
pdfjs-editor-stamp-added-alert = 画像を追加しました
|
|
525
|
+
pdfjs-editor-signature-added-alert = 署名を追加しました
|
|
526
|
+
|
|
519
527
|
## "Annotations removed" bar
|
|
520
528
|
|
|
521
529
|
pdfjs-editor-undo-bar-message-highlight = 強調表示が削除されました
|
|
@@ -302,10 +302,14 @@ 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
|
-
.title =
|
|
308
|
-
pdfjs-editor-ink-
|
|
309
|
+
.title = მოხაზვა
|
|
310
|
+
pdfjs-editor-color-picker-ink-input =
|
|
311
|
+
.title = მოხაზულის ფერის შეცვლა
|
|
312
|
+
pdfjs-editor-ink-button-label = მოხაზვა
|
|
309
313
|
pdfjs-editor-stamp-button =
|
|
310
314
|
.title = სურათების დართვა ან ჩასწორება
|
|
311
315
|
pdfjs-editor-stamp-button-label = სურათების დართვა ან ჩასწორება
|
|
@@ -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 = ხელმოწერის დამატება
|
|
@@ -327,7 +335,7 @@ pdfjs-editor-highlight-editor =
|
|
|
327
335
|
.aria-label = მონიშვნის ჩასწორება
|
|
328
336
|
# “Drawing” is a noun, the string is used on the editor for drawings.
|
|
329
337
|
pdfjs-editor-ink-editor =
|
|
330
|
-
.aria-label =
|
|
338
|
+
.aria-label = მოხაზულის ჩასწორება
|
|
331
339
|
# Used when a signature editor is selected/hovered.
|
|
332
340
|
# Variables:
|
|
333
341
|
# $description (String) - a string describing/labeling the signature.
|
|
@@ -339,7 +347,7 @@ pdfjs-editor-stamp-editor =
|
|
|
339
347
|
## Remove button for the various kind of editor.
|
|
340
348
|
|
|
341
349
|
pdfjs-editor-remove-ink-button =
|
|
342
|
-
.title =
|
|
350
|
+
.title = მოხაზულის მოცილება
|
|
343
351
|
pdfjs-editor-remove-freetext-button =
|
|
344
352
|
.title = წარწერის მოცილება
|
|
345
353
|
pdfjs-editor-remove-stamp-button =
|
|
@@ -376,13 +384,13 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
376
384
|
.title = შენახული ხელმოწერა: { $description }
|
|
377
385
|
# .default-content is used as a placeholder in an empty text editor.
|
|
378
386
|
pdfjs-free-text2 =
|
|
379
|
-
.aria-label =
|
|
387
|
+
.aria-label = წარწერის ჩასწორება
|
|
380
388
|
.default-content = დაიწყეთ აკრეფა…
|
|
381
389
|
pdfjs-free-text =
|
|
382
|
-
.aria-label =
|
|
390
|
+
.aria-label = წარწერის ჩასწორება
|
|
383
391
|
pdfjs-free-text-default-content = აკრიფეთ…
|
|
384
392
|
pdfjs-ink =
|
|
385
|
-
.aria-label =
|
|
393
|
+
.aria-label = მოხაზულის შესწორება
|
|
386
394
|
pdfjs-ink-canvas =
|
|
387
395
|
.aria-label = მომხმარებლის შექმნილი სურათი
|
|
388
396
|
|
|
@@ -524,11 +532,19 @@ 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 = მონიშვნა მოცილებულია
|
|
530
546
|
pdfjs-editor-undo-bar-message-freetext = წარწერა მოცილებულია
|
|
531
|
-
pdfjs-editor-undo-bar-message-ink =
|
|
547
|
+
pdfjs-editor-undo-bar-message-ink = მოხაზულის მოცილებულია
|
|
532
548
|
pdfjs-editor-undo-bar-message-stamp = სურათი მოცილებულია
|
|
533
549
|
pdfjs-editor-undo-bar-message-signature = ხელმოწერა მოცილებულია
|
|
534
550
|
# Variables:
|
|
@@ -581,9 +597,9 @@ pdfjs-editor-add-signature-image-browse-link =
|
|
|
581
597
|
|
|
582
598
|
## Controls
|
|
583
599
|
|
|
584
|
-
pdfjs-editor-add-signature-description-label = აღწერილობა (დართული
|
|
600
|
+
pdfjs-editor-add-signature-description-label = აღწერილობა (დართული წარწერა)
|
|
585
601
|
pdfjs-editor-add-signature-description-input =
|
|
586
|
-
.title = აღწერილობა (დართული
|
|
602
|
+
.title = აღწერილობა (დართული წარწერა)
|
|
587
603
|
pdfjs-editor-add-signature-description-default-when-drawing = ხელმოწერა
|
|
588
604
|
pdfjs-editor-add-signature-clear-button-label = ხელმოწერის წაშლა
|
|
589
605
|
pdfjs-editor-add-signature-clear-button =
|
|
@@ -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 =
|
|
@@ -517,6 +517,11 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Sken amaẓrag n uḍr
|
|
|
517
517
|
pdfjs-editor-alt-text-settings-show-dialog-description = Yettall ad tḍemneḍ tugniwin sɛant aḍris amlellay.
|
|
518
518
|
pdfjs-editor-alt-text-settings-close-button = Mdel
|
|
519
519
|
|
|
520
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
521
|
+
|
|
522
|
+
pdfjs-editor-stamp-added-alert = Tugna tettwarna
|
|
523
|
+
pdfjs-editor-signature-added-alert = Azmul yettwarna
|
|
524
|
+
|
|
520
525
|
## "Annotations removed" bar
|
|
521
526
|
|
|
522
527
|
pdfjs-editor-undo-bar-message-highlight = Yettwakkes usebrureq
|
|
@@ -513,6 +513,13 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = Суретті қос
|
|
|
513
513
|
pdfjs-editor-alt-text-settings-show-dialog-description = Барлық суреттерде балама мәтін бар екеніне көз жеткізуге көмектеседі.
|
|
514
514
|
pdfjs-editor-alt-text-settings-close-button = Жабу
|
|
515
515
|
|
|
516
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
517
|
+
|
|
518
|
+
pdfjs-editor-freetext-added-alert = Мәтін қосылды
|
|
519
|
+
pdfjs-editor-ink-added-alert = Сызба қосылды
|
|
520
|
+
pdfjs-editor-stamp-added-alert = Сурет қосылды
|
|
521
|
+
pdfjs-editor-signature-added-alert = Қолтаңба қосылды
|
|
522
|
+
|
|
516
523
|
## "Annotations removed" bar
|
|
517
524
|
|
|
518
525
|
pdfjs-editor-undo-bar-message-highlight = Ерекшелеу өшірілді
|
|
@@ -536,6 +543,7 @@ pdfjs-editor-undo-bar-close-button-label = Жабу
|
|
|
536
543
|
|
|
537
544
|
## Add a signature dialog
|
|
538
545
|
|
|
546
|
+
pdfjs-editor-add-signature-dialog-label = Бұл модальді терезе пайдаланушыға PDF құжатына қосу үшін қолтаңба жасауға мүмкіндік береді. Пайдаланушы өз атын (ол балама мәтін ретінде де қолданылады) өңдей алады және қолтаңбаны кейін қайта пайдалану үшін сақтай алады.
|
|
539
547
|
pdfjs-editor-add-signature-dialog-title = Қолтаңба қосу
|
|
540
548
|
|
|
541
549
|
## Tab names
|
|
@@ -183,9 +183,6 @@ pdfjs-page-scale-actual = ទំហំជាក់ស្ដែង
|
|
|
183
183
|
# $scale (Number) - percent value for page scale
|
|
184
184
|
pdfjs-page-scale-percent = { $scale }%
|
|
185
185
|
|
|
186
|
-
## PDF page
|
|
187
|
-
|
|
188
|
-
|
|
189
186
|
## Loading indicator messages
|
|
190
187
|
|
|
191
188
|
pdfjs-loading-error = មានកំហុសបានកើតឡើងពេលកំពុងផ្ទុក PDF ។
|
|
@@ -211,63 +208,3 @@ pdfjs-password-invalid = ពាក្យសម្ងាត់មិនត
|
|
|
211
208
|
pdfjs-password-ok-button = យល់ព្រម
|
|
212
209
|
pdfjs-password-cancel-button = បោះបង់
|
|
213
210
|
pdfjs-web-fonts-disabled = បានបិទពុម្ពអក្សរបណ្ដាញ ៖ មិនអាចប្រើពុម្ពអក្សរ PDF ដែលបានបង្កប់បានទេ ។
|
|
214
|
-
|
|
215
|
-
## Editing
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
## Default editor aria labels
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
## Remove button for the various kind of editor.
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
##
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
## Alt-text dialog
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
## Editor resizers
|
|
231
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
## Color picker
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
## Show all highlights
|
|
238
|
-
## This is a toggle button to show/hide all the highlights.
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
## New alt-text dialog
|
|
242
|
-
## 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.
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
## Image alt-text settings
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
## "Annotations removed" bar
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
## Add a signature dialog
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
## Tab names
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
## Tab panels
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
## Controls
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
## Dialog buttons
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
## Main menu for adding/removing signatures
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
## Editor toolbar
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
## Edit signature description dialog
|
|
273
|
-
|
|
@@ -97,14 +97,6 @@ pdfjs-document-properties-page-size-unit-inches = ಇದರಲ್ಲಿ
|
|
|
97
97
|
pdfjs-document-properties-page-size-orientation-portrait = ಭಾವಚಿತ್ರ
|
|
98
98
|
pdfjs-document-properties-page-size-orientation-landscape = ಪ್ರಕೃತಿ ಚಿತ್ರ
|
|
99
99
|
|
|
100
|
-
## Variables:
|
|
101
|
-
## $width (Number) - the width of the (current) page
|
|
102
|
-
## $height (Number) - the height of the (current) page
|
|
103
|
-
## $unit (String) - the unit of measurement of the (current) page
|
|
104
|
-
## $name (String) - the name of the (current) page
|
|
105
|
-
## $orientation (String) - the orientation of the (current) page
|
|
106
|
-
|
|
107
|
-
|
|
108
100
|
##
|
|
109
101
|
|
|
110
102
|
pdfjs-document-properties-close-button = ಮುಚ್ಚು
|
|
@@ -173,9 +165,6 @@ pdfjs-page-scale-actual = ನಿಜವಾದ ಗಾತ್ರ
|
|
|
173
165
|
# $scale (Number) - percent value for page scale
|
|
174
166
|
pdfjs-page-scale-percent = { $scale }%
|
|
175
167
|
|
|
176
|
-
## PDF page
|
|
177
|
-
|
|
178
|
-
|
|
179
168
|
## Loading indicator messages
|
|
180
169
|
|
|
181
170
|
pdfjs-loading-error = PDF ಅನ್ನು ಲೋಡ್ ಮಾಡುವಾಗ ಒಂದು ದೋಷ ಎದುರಾಗಿದೆ.
|
|
@@ -201,63 +190,3 @@ pdfjs-password-invalid = ಅಮಾನ್ಯವಾದ ಗುಪ್ತಪದ, ದ
|
|
|
201
190
|
pdfjs-password-ok-button = OK
|
|
202
191
|
pdfjs-password-cancel-button = ರದ್ದು ಮಾಡು
|
|
203
192
|
pdfjs-web-fonts-disabled = ಜಾಲ ಅಕ್ಷರಶೈಲಿಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ: ಅಡಕಗೊಳಿಸಿದ PDF ಅಕ್ಷರಶೈಲಿಗಳನ್ನು ಬಳಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ.
|
|
204
|
-
|
|
205
|
-
## Editing
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
## Default editor aria labels
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
## Remove button for the various kind of editor.
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
##
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
## Alt-text dialog
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
## Editor resizers
|
|
221
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
## Color picker
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
## Show all highlights
|
|
228
|
-
## This is a toggle button to show/hide all the highlights.
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
## New alt-text dialog
|
|
232
|
-
## 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.
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
## Image alt-text settings
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
## "Annotations removed" bar
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
## Add a signature dialog
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
## Tab names
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
## Tab panels
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
## Controls
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
## Dialog buttons
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
## Main menu for adding/removing signatures
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
## Editor toolbar
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
## Edit signature description dialog
|
|
263
|
-
|
|
@@ -294,9 +294,13 @@ pdfjs-web-fonts-disabled = 웹 폰트가 비활성화됨: 내장된 PDF 글꼴
|
|
|
294
294
|
|
|
295
295
|
pdfjs-editor-free-text-button =
|
|
296
296
|
.title = 텍스트
|
|
297
|
+
pdfjs-editor-color-picker-free-text-input =
|
|
298
|
+
.title = 텍스트 색상 변경
|
|
297
299
|
pdfjs-editor-free-text-button-label = 텍스트
|
|
298
300
|
pdfjs-editor-ink-button =
|
|
299
301
|
.title = 그리기
|
|
302
|
+
pdfjs-editor-color-picker-ink-input =
|
|
303
|
+
.title = 그리기 색상 변경
|
|
300
304
|
pdfjs-editor-ink-button-label = 그리기
|
|
301
305
|
pdfjs-editor-stamp-button =
|
|
302
306
|
.title = 이미지 추가 또는 편집
|
|
@@ -308,6 +312,10 @@ pdfjs-highlight-floating-button1 =
|
|
|
308
312
|
.title = 강조 표시
|
|
309
313
|
.aria-label = 강조 표시
|
|
310
314
|
pdfjs-highlight-floating-button-label = 강조 표시
|
|
315
|
+
pdfjs-comment-floating-button =
|
|
316
|
+
.title = 주석
|
|
317
|
+
.aria-label = 주석
|
|
318
|
+
pdfjs-comment-floating-button-label = 주석
|
|
311
319
|
pdfjs-editor-signature-button =
|
|
312
320
|
.title = 서명 추가
|
|
313
321
|
pdfjs-editor-signature-button-label = 서명 추가
|
|
@@ -516,6 +524,14 @@ pdfjs-editor-alt-text-settings-show-dialog-button-label = 이미지 추가 시
|
|
|
516
524
|
pdfjs-editor-alt-text-settings-show-dialog-description = 모든 이미지에 대체 텍스트가 있는지 확인하는 데 도움이 됩니다.
|
|
517
525
|
pdfjs-editor-alt-text-settings-close-button = 닫기
|
|
518
526
|
|
|
527
|
+
## Accessibility labels (announced by screen readers) for objects added to the editor.
|
|
528
|
+
|
|
529
|
+
pdfjs-editor-highlight-added-alert = 강조 표시 추가됨
|
|
530
|
+
pdfjs-editor-freetext-added-alert = 텍스트 추가됨
|
|
531
|
+
pdfjs-editor-ink-added-alert = 그리기 추가됨
|
|
532
|
+
pdfjs-editor-stamp-added-alert = 이미지 추가됨
|
|
533
|
+
pdfjs-editor-signature-added-alert = 서명 추가됨
|
|
534
|
+
|
|
519
535
|
## "Annotations removed" bar
|
|
520
536
|
|
|
521
537
|
pdfjs-editor-undo-bar-message-highlight = 강조 표시 제거됨
|
|
@@ -580,6 +596,8 @@ pdfjs-editor-add-signature-save-checkbox = 서명 저장
|
|
|
580
596
|
pdfjs-editor-add-signature-save-warning-message = 저장된 서명의 한계에 도달했습니다. 더 저장하려면 하나를 제거하세요.
|
|
581
597
|
pdfjs-editor-add-signature-image-upload-error-title = 이미지를 업로드할 수 없음
|
|
582
598
|
pdfjs-editor-add-signature-image-upload-error-description = 네트워크 연결을 확인하거나 다른 이미지로 시도하세요.
|
|
599
|
+
pdfjs-editor-add-signature-image-no-data-error-title = 이 이미지를 서명으로 변환할 수 없음
|
|
600
|
+
pdfjs-editor-add-signature-image-no-data-error-description = 다른 이미지를 업로드 해 주세요.
|
|
583
601
|
pdfjs-editor-add-signature-error-close-button = 닫기
|
|
584
602
|
|
|
585
603
|
## Dialog buttons
|
|
@@ -588,6 +606,26 @@ pdfjs-editor-add-signature-cancel-button = 취소
|
|
|
588
606
|
pdfjs-editor-add-signature-add-button = 추가
|
|
589
607
|
pdfjs-editor-edit-signature-update-button = 업데이트
|
|
590
608
|
|
|
609
|
+
## Edit a comment dialog
|
|
610
|
+
|
|
611
|
+
pdfjs-editor-edit-comment-actions-button-label = 동작
|
|
612
|
+
pdfjs-editor-edit-comment-actions-button =
|
|
613
|
+
.title = 동작
|
|
614
|
+
pdfjs-editor-edit-comment-close-button-label = 닫기
|
|
615
|
+
pdfjs-editor-edit-comment-close-button =
|
|
616
|
+
.title = 닫기
|
|
617
|
+
pdfjs-editor-edit-comment-actions-edit-button-label = 편집
|
|
618
|
+
pdfjs-editor-edit-comment-actions-delete-button-label = 삭제
|
|
619
|
+
pdfjs-editor-edit-comment-manager-text-input =
|
|
620
|
+
.placeholder = 주석을 입력하세요
|
|
621
|
+
pdfjs-editor-edit-comment-manager-cancel-button = 취소
|
|
622
|
+
pdfjs-editor-edit-comment-manager-save-button = 저장
|
|
623
|
+
|
|
624
|
+
## Edit a comment button in the editor toolbar
|
|
625
|
+
|
|
626
|
+
pdfjs-editor-edit-comment-button =
|
|
627
|
+
.title = 주석 편집
|
|
628
|
+
|
|
591
629
|
## Main menu for adding/removing signatures
|
|
592
630
|
|
|
593
631
|
pdfjs-editor-delete-signature-button1 =
|
|
@@ -207,9 +207,6 @@ pdfjs-page-scale-actual = Dimenscioin efetive
|
|
|
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 = S'é verificou 'n'erô itno caregamento do PDF.
|
|
@@ -235,63 +232,3 @@ pdfjs-password-invalid = Paròlla segreta sbalia. Preuva torna.
|
|
|
235
232
|
pdfjs-password-ok-button = Va ben
|
|
236
233
|
pdfjs-password-cancel-button = Anulla
|
|
237
234
|
pdfjs-web-fonts-disabled = I font do web en dizativæ: inposcibile adeuviâ i carateri do 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
|
-
|