@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 = ແຕ້ມ
|
|
273
273
|
pdfjs-editor-ink-button-label = ແຕ້ມ
|
|
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 = ຕົວແກ້ໄຂຮູບແຕ້ມ
|
|
294
288
|
pdfjs-ink-canvas =
|
|
295
289
|
.aria-label = ຮູບພາບທີ່ຜູ້ໃຊ້ສ້າງ
|
|
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
|
-
|
|
@@ -256,63 +256,3 @@ pdfjs-password-invalid = Slaptažodis neteisingas. Bandykite dar kartą.
|
|
|
256
256
|
pdfjs-password-ok-button = Gerai
|
|
257
257
|
pdfjs-password-cancel-button = Atsisakyti
|
|
258
258
|
pdfjs-web-fonts-disabled = Saityno šriftai išjungti – PDF faile esančių šriftų naudoti negalima.
|
|
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
|
-
|
|
@@ -206,9 +206,6 @@ pdfjs-page-scale-actual = Patīsais izmārs
|
|
|
206
206
|
# $scale (Number) - percent value for page scale
|
|
207
207
|
pdfjs-page-scale-percent = { $scale }%
|
|
208
208
|
|
|
209
|
-
## PDF page
|
|
210
|
-
|
|
211
|
-
|
|
212
209
|
## Loading indicator messages
|
|
213
210
|
|
|
214
211
|
pdfjs-loading-error = Īluodejūt PDF nūtyka klaida.
|
|
@@ -234,63 +231,3 @@ pdfjs-password-invalid = Napareiza parole, raugit vēļreiz.
|
|
|
234
231
|
pdfjs-password-ok-button = Labi
|
|
235
232
|
pdfjs-password-cancel-button = Atceļt
|
|
236
233
|
pdfjs-web-fonts-disabled = Šķārsteikla fonti nav aktivizāti: Navar īgult PDF fontus.
|
|
237
|
-
|
|
238
|
-
## Editing
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
## Default editor aria labels
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
## Remove button for the various kind of editor.
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
##
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
## Alt-text dialog
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
## Editor resizers
|
|
254
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
## Color picker
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
## Show all highlights
|
|
261
|
-
## This is a toggle button to show/hide all the highlights.
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
## New alt-text dialog
|
|
265
|
-
## 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.
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
## Image alt-text settings
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
## "Annotations removed" bar
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
## Add a signature dialog
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
## Tab names
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
## Tab panels
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
## Controls
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
## Dialog buttons
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
## Main menu for adding/removing signatures
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
## Editor toolbar
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
## Edit signature description dialog
|
|
296
|
-
|
|
@@ -207,9 +207,6 @@ pdfjs-page-scale-actual = Patiesais izmērs
|
|
|
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 = Ielādējot PDF notika kļūda.
|
|
@@ -235,63 +232,3 @@ pdfjs-password-invalid = Nepareiza parole, mēģiniet vēlreiz.
|
|
|
235
232
|
pdfjs-password-ok-button = Labi
|
|
236
233
|
pdfjs-password-cancel-button = Atcelt
|
|
237
234
|
pdfjs-web-fonts-disabled = Tīmekļa fonti nav aktivizēti: Nevar iegult PDF fontus.
|
|
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
|
-
|
|
@@ -11,9 +11,6 @@ pdfjs-zoom-select =
|
|
|
11
11
|
.title = Nasa´a ka´nu/Nasa´a luli
|
|
12
12
|
pdfjs-open-file-button-label = Síne
|
|
13
13
|
|
|
14
|
-
## Secondary toolbar and context menu
|
|
15
|
-
|
|
16
|
-
|
|
17
14
|
## Document properties dialog
|
|
18
15
|
|
|
19
16
|
# Variables:
|
|
@@ -47,24 +44,12 @@ pdfjs-print-progress-close-button = Nkuvi-ka
|
|
|
47
44
|
|
|
48
45
|
pdfjs-findbar-button-label = Nánuku
|
|
49
46
|
|
|
50
|
-
## Thumbnails panel item (tooltip and alt text for images)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
## Find panel button title and messages
|
|
54
|
-
|
|
55
|
-
|
|
56
47
|
## Predefined zoom values
|
|
57
48
|
|
|
58
49
|
# Variables:
|
|
59
50
|
# $scale (Number) - percent value for page scale
|
|
60
51
|
pdfjs-page-scale-percent = { $scale }%
|
|
61
52
|
|
|
62
|
-
## PDF page
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
## Loading indicator messages
|
|
66
|
-
|
|
67
|
-
|
|
68
53
|
## Annotations
|
|
69
54
|
|
|
70
55
|
# Variables:
|
|
@@ -75,63 +60,3 @@ pdfjs-annotation-date-string = { $date }, { $time }
|
|
|
75
60
|
## Password
|
|
76
61
|
|
|
77
62
|
pdfjs-password-cancel-button = Nkuvi-ka
|
|
78
|
-
|
|
79
|
-
## Editing
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## Default editor aria labels
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
## Remove button for the various kind of editor.
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
##
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## Alt-text dialog
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
## Editor resizers
|
|
95
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
## Color picker
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
## Show all highlights
|
|
102
|
-
## This is a toggle button to show/hide all the highlights.
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
## New alt-text dialog
|
|
106
|
-
## 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.
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
## Image alt-text settings
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
## "Annotations removed" bar
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
## Add a signature dialog
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
## Tab names
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
## Tab panels
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
## Controls
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
## Dialog buttons
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
## Main menu for adding/removing signatures
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
## Editor toolbar
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
## Edit signature description dialog
|
|
137
|
-
|
|
@@ -178,9 +178,6 @@ pdfjs-page-scale-actual = Вистинска големина
|
|
|
178
178
|
# $scale (Number) - percent value for page scale
|
|
179
179
|
pdfjs-page-scale-percent = { $scale }%
|
|
180
180
|
|
|
181
|
-
## PDF page
|
|
182
|
-
|
|
183
|
-
|
|
184
181
|
## Loading indicator messages
|
|
185
182
|
|
|
186
183
|
pdfjs-loading-error = Настана грешка при вчитувањето на PDF-от.
|
|
@@ -203,63 +200,3 @@ pdfjs-password-invalid = Невалидна лозинка. Обидете се
|
|
|
203
200
|
pdfjs-password-ok-button = Во ред
|
|
204
201
|
pdfjs-password-cancel-button = Откажи
|
|
205
202
|
pdfjs-web-fonts-disabled = Интернет фонтовите се оневозможени: не може да се користат вградените PDF фонтови.
|
|
206
|
-
|
|
207
|
-
## Editing
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
## Default editor aria labels
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
## Remove button for the various kind of editor.
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
##
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
## Alt-text dialog
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
## Editor resizers
|
|
223
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
## Color picker
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
## Show all highlights
|
|
230
|
-
## This is a toggle button to show/hide all the highlights.
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
## New alt-text dialog
|
|
234
|
-
## 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.
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
## Image alt-text settings
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
## "Annotations removed" bar
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
## Add a signature dialog
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
## Tab names
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
## Tab panels
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
## Controls
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
## Dialog buttons
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
## Main menu for adding/removing signatures
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
## Editor toolbar
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
## Edit signature description dialog
|
|
265
|
-
|
|
@@ -291,9 +291,6 @@ pdfjs-editor-signature-button =
|
|
|
291
291
|
.title = പുതിയ ഒപ്പു് ചേൎക്കുക
|
|
292
292
|
pdfjs-editor-signature-button-label = പുതിയ ഒപ്പു് ചേൎക്കുക
|
|
293
293
|
|
|
294
|
-
## Default editor aria labels
|
|
295
|
-
|
|
296
|
-
|
|
297
294
|
## Remove button for the various kind of editor.
|
|
298
295
|
|
|
299
296
|
pdfjs-editor-remove-ink-button =
|
|
@@ -195,9 +195,6 @@ pdfjs-page-scale-actual = प्रत्यक्ष आकार
|
|
|
195
195
|
# $scale (Number) - percent value for page scale
|
|
196
196
|
pdfjs-page-scale-percent = { $scale }%
|
|
197
197
|
|
|
198
|
-
## PDF page
|
|
199
|
-
|
|
200
|
-
|
|
201
198
|
## Loading indicator messages
|
|
202
199
|
|
|
203
200
|
pdfjs-loading-error = PDF लोड करतेवेळी त्रुटी आढळली.
|
|
@@ -227,63 +224,3 @@ pdfjs-password-invalid = अवैध पासवर्ड. कृपया प
|
|
|
227
224
|
pdfjs-password-ok-button = ठीक आहे
|
|
228
225
|
pdfjs-password-cancel-button = रद्द करा
|
|
229
226
|
pdfjs-web-fonts-disabled = वेब टंक असमर्थीत आहेत: एम्बेडेड PDF टंक वापर अशक्य.
|
|
230
|
-
|
|
231
|
-
## Editing
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
## Default editor aria labels
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
## Remove button for the various kind of editor.
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
##
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
## Alt-text dialog
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
## Editor resizers
|
|
247
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
## Color picker
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
## Show all highlights
|
|
254
|
-
## This is a toggle button to show/hide all the highlights.
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
## New alt-text dialog
|
|
258
|
-
## 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.
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
## Image alt-text settings
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
## "Annotations removed" bar
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
## Add a signature dialog
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
## Tab names
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
## Tab panels
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
## Controls
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
## Dialog buttons
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
## Main menu for adding/removing signatures
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
## Editor toolbar
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
## Edit signature description dialog
|
|
289
|
-
|
|
@@ -207,9 +207,6 @@ pdfjs-page-scale-actual = Saiz Sebenar
|
|
|
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 = Masalah berlaku semasa menuatkan sebuah PDF.
|
|
@@ -235,63 +232,3 @@ pdfjs-password-invalid = Kata laluan salah. Cuba lagi.
|
|
|
235
232
|
pdfjs-password-ok-button = OK
|
|
236
233
|
pdfjs-password-cancel-button = Batal
|
|
237
234
|
pdfjs-web-fonts-disabled = Fon web dinyahdayakan: tidak dapat menggunakan fon terbenam 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
|
-
|
|
@@ -88,14 +88,6 @@ pdfjs-document-properties-producer = PDF ထုတ်လုပ်သူ:
|
|
|
88
88
|
pdfjs-document-properties-version = PDF ဗားရှင်း:
|
|
89
89
|
pdfjs-document-properties-page-count = စာမျက်နှာအရေအတွက်:
|
|
90
90
|
|
|
91
|
-
## Variables:
|
|
92
|
-
## $width (Number) - the width of the (current) page
|
|
93
|
-
## $height (Number) - the height of the (current) page
|
|
94
|
-
## $unit (String) - the unit of measurement of the (current) page
|
|
95
|
-
## $name (String) - the name of the (current) page
|
|
96
|
-
## $orientation (String) - the orientation of the (current) page
|
|
97
|
-
|
|
98
|
-
|
|
99
91
|
##
|
|
100
92
|
|
|
101
93
|
pdfjs-document-properties-close-button = ပိတ်
|
|
@@ -166,9 +158,6 @@ pdfjs-page-scale-actual = အမှန်တကယ်ရှိတဲ့ အရ
|
|
|
166
158
|
# $scale (Number) - percent value for page scale
|
|
167
159
|
pdfjs-page-scale-percent = { $scale }%
|
|
168
160
|
|
|
169
|
-
## PDF page
|
|
170
|
-
|
|
171
|
-
|
|
172
161
|
## Loading indicator messages
|
|
173
162
|
|
|
174
163
|
pdfjs-loading-error = PDF ဖိုင် ကိုဆွဲတင်နေချိန်မှာ အမှားတစ်ခုတွေ့ရပါတယ်။
|
|
@@ -194,63 +183,3 @@ pdfjs-password-invalid = စာဝှက် မှားသည်။ ထပ်
|
|
|
194
183
|
pdfjs-password-ok-button = OK
|
|
195
184
|
pdfjs-password-cancel-button = ပယ်ဖျက်ပါ
|
|
196
185
|
pdfjs-web-fonts-disabled = Web fonts are disabled: unable to use embedded PDF fonts.
|
|
197
|
-
|
|
198
|
-
## Editing
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
## Default editor aria labels
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
## Remove button for the various kind of editor.
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
##
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
## Alt-text dialog
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
## Editor resizers
|
|
214
|
-
## This is used in an aria label to help to understand the role of the resizer.
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
## Color picker
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
## Show all highlights
|
|
221
|
-
## This is a toggle button to show/hide all the highlights.
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
## New alt-text dialog
|
|
225
|
-
## 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.
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
## Image alt-text settings
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
## "Annotations removed" bar
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
## Add a signature dialog
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
## Tab names
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
## Tab panels
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
## Controls
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
## Dialog buttons
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
## Main menu for adding/removing signatures
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
## Editor toolbar
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
## Edit signature description dialog
|
|
256
|
-
|