@sync-in/server 1.5.2 → 1.6.1
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 +28 -0
- package/README.md +2 -1
- package/environment/environment.dist.min.yaml +1 -0
- package/environment/environment.dist.yaml +88 -30
- package/migrations/0002_sleepy_korath.sql +1 -0
- package/migrations/meta/0002_snapshot.json +2424 -0
- package/migrations/meta/_journal.json +7 -0
- package/package.json +14 -12
- package/server/app.bootstrap.js +1 -1
- package/server/app.bootstrap.js.map +1 -1
- package/server/applications/files/services/files-manager.service.js +1 -2
- package/server/applications/files/services/files-manager.service.js.map +1 -1
- package/server/applications/files/services/files-only-office-manager.service.js +5 -6
- package/server/applications/files/services/files-only-office-manager.service.js.map +1 -1
- package/server/applications/files/utils/files.js +6 -4
- package/server/applications/files/utils/files.js.map +1 -1
- package/server/applications/links/links.controller.js +2 -2
- package/server/applications/links/links.controller.js.map +1 -1
- package/server/applications/links/services/links-manager.service.js +2 -1
- package/server/applications/links/services/links-manager.service.js.map +1 -1
- package/server/applications/links/services/links-manager.service.spec.js +6 -3
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
- package/server/applications/notifications/constants/notifications.js +9 -0
- package/server/applications/notifications/constants/notifications.js.map +1 -1
- package/server/applications/notifications/i18n/fr.js +10 -1
- package/server/applications/notifications/i18n/fr.js.map +1 -1
- package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -1
- package/server/applications/notifications/mails/models.js +41 -3
- package/server/applications/notifications/mails/models.js.map +1 -1
- package/server/applications/notifications/mails/templates.js +1 -1
- package/server/applications/notifications/mails/templates.js.map +1 -1
- package/server/applications/notifications/schemas/notifications.schema.js +2 -1
- package/server/applications/notifications/schemas/notifications.schema.js.map +1 -1
- package/server/applications/notifications/services/notifications-manager.service.js +16 -13
- package/server/applications/notifications/services/notifications-manager.service.js.map +1 -1
- package/server/applications/notifications/services/notifications-manager.service.spec.js +9 -8
- package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -1
- package/server/applications/notifications/services/notifications-queries.service.js +1 -1
- package/server/applications/notifications/services/notifications-queries.service.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.js +3 -2
- package/server/applications/shares/services/shares-manager.service.js.map +1 -1
- package/server/applications/sync/constants/auth.js +2 -2
- package/server/applications/sync/constants/auth.js.map +1 -1
- package/server/applications/sync/dtos/sync-client-registration.dto.js +5 -0
- package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -1
- package/server/applications/sync/dtos/sync-operations.dto.js +1 -2
- package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -1
- package/server/applications/sync/schemas/sync-clients.schema.js +2 -1
- package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -1
- package/server/applications/sync/schemas/sync-paths.schema.js +2 -1
- package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -1
- package/server/applications/sync/services/sync-clients-manager.service.js +28 -20
- package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -1
- package/server/applications/sync/services/sync-clients-manager.service.spec.js +24 -18
- package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -1
- package/server/applications/sync/services/sync-queries.service.js +5 -5
- package/server/applications/sync/services/sync-queries.service.js.map +1 -1
- package/server/applications/users/admin-users.controller.js +48 -37
- package/server/applications/users/admin-users.controller.js.map +1 -1
- package/server/applications/users/admin-users.controller.spec.js +15 -0
- package/server/applications/users/admin-users.controller.spec.js.map +1 -1
- package/server/applications/users/constants/routes.js +5 -0
- package/server/applications/users/constants/routes.js.map +1 -1
- package/server/applications/users/constants/user.js +8 -0
- package/server/applications/users/constants/user.js.map +1 -1
- package/server/applications/users/dto/delete-user.dto.js +5 -23
- package/server/applications/users/dto/delete-user.dto.js.map +1 -1
- package/server/applications/users/dto/user-properties.dto.js +38 -3
- package/server/applications/users/dto/user-properties.dto.js.map +1 -1
- package/server/applications/users/interfaces/admin-user.interface.js.map +1 -1
- package/server/applications/users/interfaces/user-secrets.interface.js +10 -0
- package/server/applications/users/interfaces/user-secrets.interface.js.map +1 -0
- package/server/applications/users/models/user.model.js +84 -50
- package/server/applications/users/models/user.model.js.map +1 -1
- package/server/applications/users/schemas/user.interface.js.map +1 -1
- package/server/applications/users/schemas/users.schema.js +2 -0
- package/server/applications/users/schemas/users.schema.js.map +1 -1
- package/server/applications/users/services/admin-users-manager.service.js +7 -19
- package/server/applications/users/services/admin-users-manager.service.js.map +1 -1
- package/server/applications/users/services/admin-users-manager.service.spec.js +7 -26
- package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -1
- package/server/applications/users/services/admin-users-queries.service.js +1 -0
- package/server/applications/users/services/admin-users-queries.service.js.map +1 -1
- package/server/applications/users/services/users-manager.service.js +138 -28
- package/server/applications/users/services/users-manager.service.js.map +1 -1
- package/server/applications/users/services/users-manager.service.spec.js +11 -9
- package/server/applications/users/services/users-manager.service.spec.js.map +1 -1
- package/server/applications/users/services/users-queries.service.js +63 -57
- package/server/applications/users/services/users-queries.service.js.map +1 -1
- package/server/applications/users/users.controller.js +48 -1
- package/server/applications/users/users.controller.js.map +1 -1
- package/server/applications/users/users.controller.spec.js +8 -1
- package/server/applications/users/users.controller.spec.js.map +1 -1
- package/server/applications/users/users.e2e-spec.js +2 -1
- package/server/applications/users/users.e2e-spec.js.map +1 -1
- package/server/applications/users/utils/avatar.js +48 -0
- package/server/applications/users/utils/avatar.js.map +1 -0
- package/server/authentication/auth.config.js +89 -26
- package/server/authentication/auth.config.js.map +1 -1
- package/server/authentication/auth.controller.js +117 -9
- package/server/authentication/auth.controller.js.map +1 -1
- package/server/authentication/auth.controller.spec.js +16 -1
- package/server/authentication/auth.controller.spec.js.map +1 -1
- package/server/authentication/auth.e2e-spec.js +4 -3
- package/server/authentication/auth.e2e-spec.js.map +1 -1
- package/server/authentication/auth.module.js +4 -1
- package/server/authentication/auth.module.js.map +1 -1
- package/server/authentication/constants/auth-ldap.js +44 -0
- package/server/authentication/constants/auth-ldap.js.map +1 -0
- package/server/authentication/constants/auth.js +37 -4
- package/server/authentication/constants/auth.js.map +1 -1
- package/server/authentication/constants/routes.js +21 -0
- package/server/authentication/constants/routes.js.map +1 -1
- package/server/authentication/constants/scope.js +20 -0
- package/server/authentication/constants/scope.js.map +1 -0
- package/server/authentication/dto/login-response.dto.js +27 -4
- package/server/authentication/dto/login-response.dto.js.map +1 -1
- package/server/authentication/dto/token-response.dto.js +5 -0
- package/server/authentication/dto/token-response.dto.js.map +1 -1
- package/server/{applications/users/dto/user-password.dto.js → authentication/dto/two-fa-verify.dto.js} +27 -9
- package/server/authentication/dto/two-fa-verify.dto.js.map +1 -0
- package/server/authentication/guards/auth-basic.strategy.js +6 -5
- package/server/authentication/guards/auth-basic.strategy.js.map +1 -1
- package/server/authentication/guards/auth-token-access.strategy.js +3 -2
- package/server/authentication/guards/auth-token-access.strategy.js.map +1 -1
- package/server/authentication/guards/auth-token-refresh.strategy.js +3 -2
- package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -1
- package/server/authentication/guards/auth-two-fa-guard.js +81 -0
- package/server/authentication/guards/auth-two-fa-guard.js.map +1 -0
- package/server/authentication/interfaces/jwt-payload.interface.js +5 -0
- package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -1
- package/server/authentication/interfaces/token.interface.js +2 -0
- package/server/authentication/interfaces/token.interface.js.map +1 -1
- package/server/authentication/interfaces/two-fa-setup.interface.js +10 -0
- package/server/authentication/interfaces/two-fa-setup.interface.js.map +1 -0
- package/server/authentication/models/auth-method.js.map +1 -1
- package/server/authentication/services/auth-manager.service.js +72 -49
- package/server/authentication/services/auth-manager.service.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-database.service.js +3 -3
- 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 +5 -0
- 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 +151 -66
- 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 +52 -50
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +251 -0
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +41 -0
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -0
- package/server/authentication/utils/crypt-secret.js +68 -0
- package/server/authentication/utils/crypt-secret.js.map +1 -0
- package/server/common/functions.js +18 -2
- package/server/common/functions.js.map +1 -1
- package/server/common/qrcode.js +34 -0
- package/server/common/qrcode.js.map +1 -0
- package/server/common/shared.js +18 -0
- package/server/common/shared.js.map +1 -1
- package/server/configuration/config.environment.js +23 -6
- package/server/configuration/config.environment.js.map +1 -1
- package/server/configuration/config.interfaces.js +10 -0
- package/server/configuration/config.interfaces.js.map +1 -0
- package/server/configuration/config.loader.js.map +1 -1
- package/server/configuration/config.validation.js +13 -13
- package/server/configuration/config.validation.js.map +1 -1
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +6 -6
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -1
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js +2 -1
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -1
- package/server/infrastructure/cache/services/cache.service.js.map +1 -1
- package/server/infrastructure/database/columns.js +39 -0
- package/server/infrastructure/database/columns.js.map +1 -0
- package/server/infrastructure/database/database.config.js +0 -1
- package/server/infrastructure/database/database.config.js.map +1 -1
- package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -1
- package/server/infrastructure/mailer/mailer.config.js +12 -0
- package/server/infrastructure/mailer/mailer.config.js.map +1 -1
- package/server/infrastructure/mailer/mailer.service.js +2 -1
- package/server/infrastructure/mailer/mailer.service.js.map +1 -1
- package/static/assets/mimes/text-x-c.svg +1 -0
- package/static/assets/pdfjs/build/pdf.mjs +2522 -914
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +2 -2
- package/static/assets/pdfjs/build/pdf.worker.mjs +1024 -566
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
- package/static/assets/pdfjs/version +1 -1
- package/static/assets/pdfjs/web/debugger.mjs +116 -37
- package/static/assets/pdfjs/web/images/comment-popup-editButton.svg +5 -0
- package/static/assets/pdfjs/web/locale/ach/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/af/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/an/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/ar/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/ast/viewer.ftl +0 -19
- package/static/assets/pdfjs/web/locale/az/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/bg/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/bn/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/bo/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/br/viewer.ftl +0 -22
- package/static/assets/pdfjs/web/locale/brx/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/ca/viewer.ftl +12 -23
- package/static/assets/pdfjs/web/locale/cak/viewer.ftl +0 -23
- package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +3 -35
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +25 -13
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +5 -32
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/et/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/eu/viewer.ftl +38 -32
- package/static/assets/pdfjs/web/locale/fa/viewer.ftl +0 -19
- package/static/assets/pdfjs/web/locale/ff/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/gd/viewer.ftl +0 -23
- package/static/assets/pdfjs/web/locale/gl/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/hr/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +372 -16
- package/static/assets/pdfjs/web/locale/hye/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/id/viewer.ftl +38 -32
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +27 -32
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -33
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +31 -33
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +31 -32
- package/static/assets/pdfjs/web/locale/km/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/kn/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/lij/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/lo/viewer.ftl +0 -23
- package/static/assets/pdfjs/web/locale/lt/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/lv/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/meh/viewer.ftl +0 -14
- package/static/assets/pdfjs/web/locale/mk/viewer.ftl +0 -19
- package/static/assets/pdfjs/web/locale/ml/viewer.ftl +0 -31
- package/static/assets/pdfjs/web/locale/mr/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/ms/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/my/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/oc/viewer.ftl +0 -24
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +5 -37
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/sat/viewer.ftl +0 -23
- package/static/assets/pdfjs/web/locale/sc/viewer.ftl +8 -27
- package/static/assets/pdfjs/web/locale/sco/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/si/viewer.ftl +0 -22
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/skr/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +30 -32
- package/static/assets/pdfjs/web/locale/son/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/sr/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/szl/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/ta/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/te/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/th/viewer.ftl +38 -32
- package/static/assets/pdfjs/web/locale/tl/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/trs/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/uk/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/ur/viewer.ftl +0 -16
- package/static/assets/pdfjs/web/locale/uz/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/xh/viewer.ftl +0 -12
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -32
- package/static/assets/pdfjs/web/viewer.css +586 -437
- package/static/assets/pdfjs/web/viewer.html +12 -23
- package/static/assets/pdfjs/web/viewer.mjs +955 -514
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
- package/static/assets/pdfjs/web/wasm/openjpeg.wasm +0 -0
- package/static/assets/pdfjs/web/wasm/openjpeg_nowasm_fallback.js +10 -22
- package/static/{chunk-SPTF6FSM.js → chunk-27YQB3TE.js} +1 -1
- package/static/chunk-2I4CUFUA.js +1 -0
- package/static/chunk-2MTM6SWN.js +4 -0
- package/static/{chunk-7VRUZRJG.js → chunk-34MKICK5.js} +2 -2
- package/static/chunk-5O3DIUU3.js +1 -0
- package/static/{chunk-VJRTMDEJ.js → chunk-6NMVZIIT.js} +1 -1
- package/static/{chunk-L6MU6S2V.js → chunk-7DN7ZAPU.js} +1 -1
- package/static/{chunk-MVO4WZLK.js → chunk-7FUM3JGM.js} +1 -1
- package/static/{chunk-RSS6GYNE.js → chunk-7ITZXYYJ.js} +1 -1
- package/static/chunk-7P27WBGC.js +4 -0
- package/static/chunk-ATP3BFHV.js +562 -0
- package/static/chunk-AWQ2YTVC.js +1 -0
- package/static/chunk-DSOE3FEP.js +1 -0
- package/static/{chunk-2R6HHGUR.js → chunk-EFKMBLRE.js} +1 -1
- package/static/chunk-FUFKVHPU.js +1 -0
- package/static/{chunk-MRSWNAVB.js → chunk-HCDLWTMW.js} +1 -1
- package/static/chunk-IPAC4VAF.js +1 -0
- package/static/{chunk-ZC5NIT55.js → chunk-IQOALFYU.js} +1 -1
- package/static/chunk-JASU3CIH.js +1 -0
- package/static/{chunk-6OJZWYRZ.js → chunk-JQ5FTO2M.js} +1 -1
- package/static/chunk-JUNZFADM.js +1 -0
- package/static/{chunk-LLWSLOSX.js → chunk-LJUKI4SQ.js} +1 -1
- package/static/{chunk-WI7FOANP.js → chunk-LUWQFIWR.js} +1 -1
- package/static/{chunk-BIUNUYZ5.js → chunk-ORMRCEGT.js} +1 -1
- package/static/{chunk-IZL7JPTS.js → chunk-Q7D6RN4N.js} +1 -1
- package/static/{chunk-JYXLQRHG.js → chunk-QJX6ITLW.js} +1 -1
- package/static/{chunk-YJMN3B4N.js → chunk-QQ6UQQBR.js} +1 -1
- package/static/chunk-S2HDY3OL.js +1 -0
- package/static/{chunk-NE4NDO45.js → chunk-S75P2FFI.js} +1 -1
- package/static/{chunk-CRQNEHTX.js → chunk-T3EYFSVZ.js} +1 -1
- package/static/{chunk-MCLQFZ3S.js → chunk-U34OZUZ7.js} +1 -1
- package/static/chunk-Y7EH7G5K.js +1 -0
- package/static/{chunk-MGGT6MIJ.js → chunk-ZQQPUYLU.js} +1 -1
- package/static/index.html +2 -2
- package/static/main-7SQDDVMD.js +9 -0
- package/static/{styles-FYUSO6OJ.css → styles-A5VYX3CE.css} +1 -1
- package/server/applications/users/dto/user-password.dto.js.map +0 -1
- package/static/chunk-4U5A2DEP.js +0 -4
- package/static/chunk-54EAZ2UD.js +0 -1
- package/static/chunk-7ZRXJONB.js +0 -1
- package/static/chunk-F2J2IIJE.js +0 -1
- package/static/chunk-FNFGUIQH.js +0 -4
- package/static/chunk-GGLK52CG.js +0 -1
- package/static/chunk-HW2H3ISM.js +0 -559
- package/static/chunk-HX6BBYVD.js +0 -1
- package/static/chunk-JF7S3UYQ.js +0 -1
- package/static/chunk-KSHPKI4G.js +0 -1
- package/static/chunk-VPJ2V27B.js +0 -1
- package/static/chunk-VUI3KV7V.js +0 -1
- package/static/chunk-ZXS4V7J2.js +0 -1
- package/static/main-FFIWFD2F.js +0 -7
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } byte)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
|
|
123
115
|
pdfjs-document-properties-title = Dokumentegenskaper …
|
|
124
116
|
pdfjs-document-properties-author = Forfatter:
|
|
125
117
|
pdfjs-document-properties-subject = Emne:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Endret dato:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
136
124
|
pdfjs-document-properties-creator = Opprettet av:
|
|
137
125
|
pdfjs-document-properties-producer = PDF-verktøy:
|
|
138
126
|
pdfjs-document-properties-version = PDF-versjon:
|
|
@@ -275,10 +263,6 @@ pdfjs-rendering-error = En feil oppstod ved opptegning av siden.
|
|
|
275
263
|
|
|
276
264
|
## Annotations
|
|
277
265
|
|
|
278
|
-
# Variables:
|
|
279
|
-
# $date (Date) - the modification date of the annotation
|
|
280
|
-
# $time (Time) - the modification time of the annotation
|
|
281
|
-
pdfjs-annotation-date-string = { $date }, { $time }
|
|
282
266
|
# .alt: This is used as a tooltip.
|
|
283
267
|
# Variables:
|
|
284
268
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -386,20 +370,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
386
370
|
pdfjs-free-text2 =
|
|
387
371
|
.aria-label = Tekstredigering
|
|
388
372
|
.default-content = Begynn å skrive…
|
|
389
|
-
pdfjs-free-text =
|
|
390
|
-
.aria-label = Tekstredigering
|
|
391
|
-
pdfjs-free-text-default-content = Begynn å skrive…
|
|
392
|
-
pdfjs-ink =
|
|
393
|
-
.aria-label = Tegneredigering
|
|
394
|
-
pdfjs-ink-canvas =
|
|
395
|
-
.aria-label = Brukerskapt bilde
|
|
396
373
|
|
|
397
374
|
## Alt-text dialog
|
|
398
375
|
|
|
399
376
|
pdfjs-editor-alt-text-button-label = Alternativ tekst
|
|
400
377
|
pdfjs-editor-alt-text-edit-button =
|
|
401
378
|
.aria-label = Rediger alternativ tekst
|
|
402
|
-
pdfjs-editor-alt-text-edit-button-label = Rediger alternativ tekst
|
|
403
379
|
pdfjs-editor-alt-text-dialog-label = Velg et alternativ
|
|
404
380
|
pdfjs-editor-alt-text-dialog-description = Alt-tekst (alternativ tekst) hjelper når folk ikke kan se bildet eller når det ikke lastes inn.
|
|
405
381
|
pdfjs-editor-alt-text-add-description-label = Legg til en beskrivelse
|
|
@@ -419,14 +395,6 @@ pdfjs-editor-alt-text-button =
|
|
|
419
395
|
## Editor resizers
|
|
420
396
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
421
397
|
|
|
422
|
-
pdfjs-editor-resizer-label-top-left = Øverste venstre hjørne – endre størrelse
|
|
423
|
-
pdfjs-editor-resizer-label-top-middle = Øverst i midten — endre størrelse
|
|
424
|
-
pdfjs-editor-resizer-label-top-right = Øverste høyre hjørne – endre størrelse
|
|
425
|
-
pdfjs-editor-resizer-label-middle-right = Midt til høyre – endre størrelse
|
|
426
|
-
pdfjs-editor-resizer-label-bottom-right = Nederste høyre hjørne – endre størrelse
|
|
427
|
-
pdfjs-editor-resizer-label-bottom-middle = Nederst i midten — endre størrelse
|
|
428
|
-
pdfjs-editor-resizer-label-bottom-left = Nederste venstre hjørne – endre størrelse
|
|
429
|
-
pdfjs-editor-resizer-label-middle-left = Midt til venstre — endre størrelse
|
|
430
398
|
pdfjs-editor-resizer-top-left =
|
|
431
399
|
.aria-label = Øverste venstre hjørne – endre størrelse
|
|
432
400
|
pdfjs-editor-resizer-top-middle =
|
|
@@ -83,24 +83,12 @@ pdfjs-document-properties-button =
|
|
|
83
83
|
pdfjs-document-properties-button-label = कागजात विशेषताहरू...
|
|
84
84
|
pdfjs-document-properties-file-name = फाइल नाम:
|
|
85
85
|
pdfjs-document-properties-file-size = फाइल आकार:
|
|
86
|
-
# Variables:
|
|
87
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
88
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
89
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
|
|
90
|
-
# Variables:
|
|
91
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
92
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
93
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
|
|
94
86
|
pdfjs-document-properties-title = शीर्षक:
|
|
95
87
|
pdfjs-document-properties-author = लेखक:
|
|
96
88
|
pdfjs-document-properties-subject = विषयः
|
|
97
89
|
pdfjs-document-properties-keywords = शब्दकुञ्जीः
|
|
98
90
|
pdfjs-document-properties-creation-date = सिर्जना गरिएको मिति:
|
|
99
91
|
pdfjs-document-properties-modification-date = परिमार्जित मिति:
|
|
100
|
-
# Variables:
|
|
101
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
102
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
103
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
104
92
|
pdfjs-document-properties-creator = सर्जक:
|
|
105
93
|
pdfjs-document-properties-producer = PDF निर्माता:
|
|
106
94
|
pdfjs-document-properties-version = PDF संस्करण
|
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } bytes)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
|
|
123
115
|
pdfjs-document-properties-title = Titel:
|
|
124
116
|
pdfjs-document-properties-author = Auteur:
|
|
125
117
|
pdfjs-document-properties-subject = Onderwerp:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Wijzigingsdatum:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
136
124
|
pdfjs-document-properties-creator = Maker:
|
|
137
125
|
pdfjs-document-properties-producer = PDF-producent:
|
|
138
126
|
pdfjs-document-properties-version = PDF-versie:
|
|
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Er is een fout opgetreden bij het weergeven van de pagin
|
|
|
275
263
|
|
|
276
264
|
## Annotations
|
|
277
265
|
|
|
278
|
-
# Variables:
|
|
279
|
-
# $date (Date) - the modification date of the annotation
|
|
280
|
-
# $time (Time) - the modification time of the annotation
|
|
281
|
-
pdfjs-annotation-date-string = { $date }, { $time }
|
|
282
266
|
# .alt: This is used as a tooltip.
|
|
283
267
|
# Variables:
|
|
284
268
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -386,20 +370,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
386
370
|
pdfjs-free-text2 =
|
|
387
371
|
.aria-label = Tekstbewerker
|
|
388
372
|
.default-content = Start met typen…
|
|
389
|
-
pdfjs-free-text =
|
|
390
|
-
.aria-label = Tekstbewerker
|
|
391
|
-
pdfjs-free-text-default-content = Begin met typen…
|
|
392
|
-
pdfjs-ink =
|
|
393
|
-
.aria-label = Tekeningbewerker
|
|
394
|
-
pdfjs-ink-canvas =
|
|
395
|
-
.aria-label = Door gebruiker gemaakte afbeelding
|
|
396
373
|
|
|
397
374
|
## Alt-text dialog
|
|
398
375
|
|
|
399
376
|
pdfjs-editor-alt-text-button-label = Alternatieve tekst
|
|
400
377
|
pdfjs-editor-alt-text-edit-button =
|
|
401
378
|
.aria-label = Alternatieve tekst bewerken
|
|
402
|
-
pdfjs-editor-alt-text-edit-button-label = Alternatieve tekst bewerken
|
|
403
379
|
pdfjs-editor-alt-text-dialog-label = Kies een optie
|
|
404
380
|
pdfjs-editor-alt-text-dialog-description = Alternatieve tekst helpt wanneer mensen de afbeelding niet kunnen zien of wanneer deze niet wordt geladen.
|
|
405
381
|
pdfjs-editor-alt-text-add-description-label = Voeg een beschrijving toe
|
|
@@ -419,14 +395,6 @@ pdfjs-editor-alt-text-button =
|
|
|
419
395
|
## Editor resizers
|
|
420
396
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
421
397
|
|
|
422
|
-
pdfjs-editor-resizer-label-top-left = Linkerbovenhoek – formaat wijzigen
|
|
423
|
-
pdfjs-editor-resizer-label-top-middle = Midden boven – formaat wijzigen
|
|
424
|
-
pdfjs-editor-resizer-label-top-right = Rechterbovenhoek – formaat wijzigen
|
|
425
|
-
pdfjs-editor-resizer-label-middle-right = Midden rechts – formaat wijzigen
|
|
426
|
-
pdfjs-editor-resizer-label-bottom-right = Rechterbenedenhoek – formaat wijzigen
|
|
427
|
-
pdfjs-editor-resizer-label-bottom-middle = Midden onder – formaat wijzigen
|
|
428
|
-
pdfjs-editor-resizer-label-bottom-left = Linkerbenedenhoek – formaat wijzigen
|
|
429
|
-
pdfjs-editor-resizer-label-middle-left = Links midden – formaat wijzigen
|
|
430
398
|
pdfjs-editor-resizer-top-left =
|
|
431
399
|
.aria-label = Linkerbovenhoek – formaat wijzigen
|
|
432
400
|
pdfjs-editor-resizer-top-middle =
|
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } byte)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
|
|
123
115
|
pdfjs-document-properties-title = Tittel:
|
|
124
116
|
pdfjs-document-properties-author = Forfattar:
|
|
125
117
|
pdfjs-document-properties-subject = Emne:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Dato endra:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
136
124
|
pdfjs-document-properties-creator = Oppretta av:
|
|
137
125
|
pdfjs-document-properties-producer = PDF-verktøy:
|
|
138
126
|
pdfjs-document-properties-version = PDF-versjon:
|
|
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Ein feil oppstod under vising av sida.
|
|
|
275
263
|
|
|
276
264
|
## Annotations
|
|
277
265
|
|
|
278
|
-
# Variables:
|
|
279
|
-
# $date (Date) - the modification date of the annotation
|
|
280
|
-
# $time (Time) - the modification time of the annotation
|
|
281
|
-
pdfjs-annotation-date-string = { $date } { $time }
|
|
282
266
|
# .alt: This is used as a tooltip.
|
|
283
267
|
# Variables:
|
|
284
268
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -386,20 +370,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
386
370
|
pdfjs-free-text2 =
|
|
387
371
|
.aria-label = Tekstredigering
|
|
388
372
|
.default-content = Begynn å skrive…
|
|
389
|
-
pdfjs-free-text =
|
|
390
|
-
.aria-label = Tekstredigering
|
|
391
|
-
pdfjs-free-text-default-content = Byrje å skrive…
|
|
392
|
-
pdfjs-ink =
|
|
393
|
-
.aria-label = Teikneredigering
|
|
394
|
-
pdfjs-ink-canvas =
|
|
395
|
-
.aria-label = Brukarskapt bilde
|
|
396
373
|
|
|
397
374
|
## Alt-text dialog
|
|
398
375
|
|
|
399
376
|
pdfjs-editor-alt-text-button-label = Alt-tekst
|
|
400
377
|
pdfjs-editor-alt-text-edit-button =
|
|
401
378
|
.aria-label = Rediger alt-tekst tekst
|
|
402
|
-
pdfjs-editor-alt-text-edit-button-label = Rediger alternativ tekst
|
|
403
379
|
pdfjs-editor-alt-text-dialog-label = Vel eit alternativ
|
|
404
380
|
pdfjs-editor-alt-text-dialog-description = Alt-tekst (alternativ tekst) hjelper når folk ikkje kan sjå bildet eller når det ikkje vert lasta inn.
|
|
405
381
|
pdfjs-editor-alt-text-add-description-label = Legg til ei skildring
|
|
@@ -419,14 +395,6 @@ pdfjs-editor-alt-text-button =
|
|
|
419
395
|
## Editor resizers
|
|
420
396
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
421
397
|
|
|
422
|
-
pdfjs-editor-resizer-label-top-left = Øvste venstre hjørne – endre størrelse
|
|
423
|
-
pdfjs-editor-resizer-label-top-middle = Øvst i midten — endre størrelse
|
|
424
|
-
pdfjs-editor-resizer-label-top-right = Øvste høgre hjørne – endre størrelse
|
|
425
|
-
pdfjs-editor-resizer-label-middle-right = Midt til høgre – endre størrelse
|
|
426
|
-
pdfjs-editor-resizer-label-bottom-right = Nedste høgre hjørne – endre størrelse
|
|
427
|
-
pdfjs-editor-resizer-label-bottom-middle = Nedst i midten — endre størrelse
|
|
428
|
-
pdfjs-editor-resizer-label-bottom-left = Nedste venstre hjørne – endre størrelse
|
|
429
|
-
pdfjs-editor-resizer-label-middle-left = Midt til venstre — endre størrelse
|
|
430
398
|
pdfjs-editor-resizer-top-left =
|
|
431
399
|
.aria-label = Øvste venstre hjørne – endre størrelse
|
|
432
400
|
pdfjs-editor-resizer-top-middle =
|
|
@@ -104,24 +104,12 @@ pdfjs-document-properties-button =
|
|
|
104
104
|
pdfjs-document-properties-button-label = Proprietats del document…
|
|
105
105
|
pdfjs-document-properties-file-name = Nom del fichièr :
|
|
106
106
|
pdfjs-document-properties-file-size = Talha del fichièr :
|
|
107
|
-
# Variables:
|
|
108
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
109
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
110
|
-
pdfjs-document-properties-kb = { $size_kb } Ko ({ $size_b } octets)
|
|
111
|
-
# Variables:
|
|
112
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
113
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
114
|
-
pdfjs-document-properties-mb = { $size_mb } Mo ({ $size_b } octets)
|
|
115
107
|
pdfjs-document-properties-title = Títol :
|
|
116
108
|
pdfjs-document-properties-author = Autor :
|
|
117
109
|
pdfjs-document-properties-subject = Subjècte :
|
|
118
110
|
pdfjs-document-properties-keywords = Mots claus :
|
|
119
111
|
pdfjs-document-properties-creation-date = Data de creacion :
|
|
120
112
|
pdfjs-document-properties-modification-date = Data de modificacion :
|
|
121
|
-
# Variables:
|
|
122
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
123
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
124
|
-
pdfjs-document-properties-date-string = { $date }, a { $time }
|
|
125
113
|
pdfjs-document-properties-creator = Creator :
|
|
126
114
|
pdfjs-document-properties-producer = Aisina de conversion PDF :
|
|
127
115
|
pdfjs-document-properties-version = Version PDF :
|
|
@@ -264,10 +252,6 @@ pdfjs-rendering-error = Una error s'es producha pendent l'afichatge de la pagina
|
|
|
264
252
|
|
|
265
253
|
## Annotations
|
|
266
254
|
|
|
267
|
-
# Variables:
|
|
268
|
-
# $date (Date) - the modification date of the annotation
|
|
269
|
-
# $time (Time) - the modification time of the annotation
|
|
270
|
-
pdfjs-annotation-date-string = { $date } a { $time }
|
|
271
255
|
# .alt: This is used as a tooltip.
|
|
272
256
|
# Variables:
|
|
273
257
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -334,18 +318,10 @@ pdfjs-editor-free-highlight-thickness-input = Espessor
|
|
|
334
318
|
pdfjs-free-text2 =
|
|
335
319
|
.aria-label = Editor de tèxte
|
|
336
320
|
.default-content = Començatz de picar…
|
|
337
|
-
pdfjs-free-text =
|
|
338
|
-
.aria-label = Editor de tèxte
|
|
339
|
-
pdfjs-free-text-default-content = Començatz d’escriure…
|
|
340
|
-
pdfjs-ink =
|
|
341
|
-
.aria-label = Editor de dessenh
|
|
342
|
-
pdfjs-ink-canvas =
|
|
343
|
-
.aria-label = Imatge creat per l’utilizaire
|
|
344
321
|
|
|
345
322
|
## Alt-text dialog
|
|
346
323
|
|
|
347
324
|
pdfjs-editor-alt-text-button-label = Tèxt alternatiu
|
|
348
|
-
pdfjs-editor-alt-text-edit-button-label = Modificar lo tèxt alternatiu
|
|
349
325
|
pdfjs-editor-alt-text-dialog-label = Causir una opcion
|
|
350
326
|
pdfjs-editor-alt-text-add-description-label = Apondre una descripcion
|
|
351
327
|
pdfjs-editor-alt-text-cancel-button = Anullar
|
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } ਬਾਈਟ)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } ਬਾਈਟ)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } ਬਾਈਟ)
|
|
123
115
|
pdfjs-document-properties-title = ਟਾਈਟਲ:
|
|
124
116
|
pdfjs-document-properties-author = ਲੇਖਕ:
|
|
125
117
|
pdfjs-document-properties-subject = ਵਿਸ਼ਾ:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = ਸੋਧ ਦੀ ਮਿਤੀ:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
136
124
|
pdfjs-document-properties-creator = ਨਿਰਮਾਤਾ:
|
|
137
125
|
pdfjs-document-properties-producer = PDF ਪ੍ਰੋਡਿਊਸਰ:
|
|
138
126
|
pdfjs-document-properties-version = PDF ਵਰਜਨ:
|
|
@@ -275,10 +263,6 @@ pdfjs-rendering-error = ਸਫ਼ਾ ਰੈਡਰ ਕਰਨ ਦੇ ਦੌਰਾ
|
|
|
275
263
|
|
|
276
264
|
## Annotations
|
|
277
265
|
|
|
278
|
-
# Variables:
|
|
279
|
-
# $date (Date) - the modification date of the annotation
|
|
280
|
-
# $time (Time) - the modification time of the annotation
|
|
281
|
-
pdfjs-annotation-date-string = { $date }, { $time }
|
|
282
266
|
# .alt: This is used as a tooltip.
|
|
283
267
|
# Variables:
|
|
284
268
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -386,20 +370,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
386
370
|
pdfjs-free-text2 =
|
|
387
371
|
.aria-label = ਲਿਖਤ ਐਡੀਟਰ
|
|
388
372
|
.default-content = …ਲਿਖਣਾ ਸ਼ੁਰੂ ਕਰੋ
|
|
389
|
-
pdfjs-free-text =
|
|
390
|
-
.aria-label = ਲਿਖਤ ਐਡੀਟਰ
|
|
391
|
-
pdfjs-free-text-default-content = …ਲਿਖਣਾ ਸ਼ੁਰੂ ਕਰੋ
|
|
392
|
-
pdfjs-ink =
|
|
393
|
-
.aria-label = ਵਹਾਉਣ ਐਡੀਟਰ
|
|
394
|
-
pdfjs-ink-canvas =
|
|
395
|
-
.aria-label = ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਬਣਾਇਆ ਚਿੱਤਰ
|
|
396
373
|
|
|
397
374
|
## Alt-text dialog
|
|
398
375
|
|
|
399
376
|
pdfjs-editor-alt-text-button-label = ਬਦਲਵੀਂ ਲਿਖਤ
|
|
400
377
|
pdfjs-editor-alt-text-edit-button =
|
|
401
378
|
.aria-label = ਬਦਲਵੀ ਲਿਖਤ ਨੂੰ ਸੋਧੋ
|
|
402
|
-
pdfjs-editor-alt-text-edit-button-label = ਬਦਲਵੀ ਲਿਖਤ ਨੂੰ ਸੋਧੋ
|
|
403
379
|
pdfjs-editor-alt-text-dialog-label = ਚੋਣ ਕਰੋ
|
|
404
380
|
pdfjs-editor-alt-text-dialog-description = ਚਿੱਤਰ ਨਾ ਦਿੱਸਣ ਜਾਂ ਲੋਡ ਨਾ ਹੋਣ ਦੀ ਹਾਲਤ ਵਿੱਚ Alt ਲਿਖਤ (ਬਦਲਵੀਂ ਲਿਖਤ) ਲੋਕਾਂ ਲਈ ਮਦਦਗਾਰ ਹੁੰਦੀ ਹੈ।
|
|
405
381
|
pdfjs-editor-alt-text-add-description-label = ਵਰਣਨ ਜੋੜੋ
|
|
@@ -419,14 +395,6 @@ pdfjs-editor-alt-text-button =
|
|
|
419
395
|
## Editor resizers
|
|
420
396
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
421
397
|
|
|
422
|
-
pdfjs-editor-resizer-label-top-left = ਉੱਤੇ ਖੱਬਾ ਕੋਨਾ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
423
|
-
pdfjs-editor-resizer-label-top-middle = ਉੱਤੇ ਮੱਧ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
424
|
-
pdfjs-editor-resizer-label-top-right = ਉੱਤੇ ਸੱਜਾ ਕੋਨਾ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
425
|
-
pdfjs-editor-resizer-label-middle-right = ਮੱਧ ਸੱਜਾ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
426
|
-
pdfjs-editor-resizer-label-bottom-right = ਹੇਠਾਂ ਸੱਜਾ ਕੋਨਾ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
427
|
-
pdfjs-editor-resizer-label-bottom-middle = ਹੇਠਾਂ ਮੱਧ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
428
|
-
pdfjs-editor-resizer-label-bottom-left = ਹੇਠਾਂ ਖੱਬਾ ਕੋਨਾ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
429
|
-
pdfjs-editor-resizer-label-middle-left = ਮੱਧ ਖੱਬਾ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
430
398
|
pdfjs-editor-resizer-top-left =
|
|
431
399
|
.aria-label = ਉੱਤੇ ਖੱਬਾ ਕੋਨਾ — ਮੁੜ-ਆਕਾਰ ਕਰੋ
|
|
432
400
|
pdfjs-editor-resizer-top-middle =
|
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } B)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } B)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } B)
|
|
123
115
|
pdfjs-document-properties-title = Tytuł:
|
|
124
116
|
pdfjs-document-properties-author = Autor:
|
|
125
117
|
pdfjs-document-properties-subject = Temat:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Data modyfikacji:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
136
124
|
pdfjs-document-properties-creator = Utworzony przez:
|
|
137
125
|
pdfjs-document-properties-producer = PDF wyprodukowany przez:
|
|
138
126
|
pdfjs-document-properties-version = Wersja PDF:
|
|
@@ -277,10 +265,6 @@ pdfjs-rendering-error = Podczas renderowania strony wystąpił błąd.
|
|
|
277
265
|
|
|
278
266
|
## Annotations
|
|
279
267
|
|
|
280
|
-
# Variables:
|
|
281
|
-
# $date (Date) - the modification date of the annotation
|
|
282
|
-
# $time (Time) - the modification time of the annotation
|
|
283
|
-
pdfjs-annotation-date-string = { $date }, { $time }
|
|
284
268
|
# .alt: This is used as a tooltip.
|
|
285
269
|
# Variables:
|
|
286
270
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -388,20 +372,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
388
372
|
pdfjs-free-text2 =
|
|
389
373
|
.aria-label = Edytor tekstu
|
|
390
374
|
.default-content = Zacznij pisać…
|
|
391
|
-
pdfjs-free-text =
|
|
392
|
-
.aria-label = Edytor tekstu
|
|
393
|
-
pdfjs-free-text-default-content = Zacznij pisać…
|
|
394
|
-
pdfjs-ink =
|
|
395
|
-
.aria-label = Edytor rysunku
|
|
396
|
-
pdfjs-ink-canvas =
|
|
397
|
-
.aria-label = Obraz utworzony przez użytkownika
|
|
398
375
|
|
|
399
376
|
## Alt-text dialog
|
|
400
377
|
|
|
401
378
|
pdfjs-editor-alt-text-button-label = Tekst alternatywny
|
|
402
379
|
pdfjs-editor-alt-text-edit-button =
|
|
403
380
|
.aria-label = Edytuj tekst alternatywny
|
|
404
|
-
pdfjs-editor-alt-text-edit-button-label = Edytuj tekst alternatywny
|
|
405
381
|
pdfjs-editor-alt-text-dialog-label = Wybierz opcję
|
|
406
382
|
pdfjs-editor-alt-text-dialog-description = Tekst alternatywny pomaga, kiedy ktoś nie może zobaczyć obrazu lub gdy się nie wczytuje.
|
|
407
383
|
pdfjs-editor-alt-text-add-description-label = Dodaj opis
|
|
@@ -421,14 +397,6 @@ pdfjs-editor-alt-text-button =
|
|
|
421
397
|
## Editor resizers
|
|
422
398
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
423
399
|
|
|
424
|
-
pdfjs-editor-resizer-label-top-left = Lewy górny róg — zmień rozmiar
|
|
425
|
-
pdfjs-editor-resizer-label-top-middle = Górny środkowy — zmień rozmiar
|
|
426
|
-
pdfjs-editor-resizer-label-top-right = Prawy górny róg — zmień rozmiar
|
|
427
|
-
pdfjs-editor-resizer-label-middle-right = Prawy środkowy — zmień rozmiar
|
|
428
|
-
pdfjs-editor-resizer-label-bottom-right = Prawy dolny róg — zmień rozmiar
|
|
429
|
-
pdfjs-editor-resizer-label-bottom-middle = Dolny środkowy — zmień rozmiar
|
|
430
|
-
pdfjs-editor-resizer-label-bottom-left = Lewy dolny róg — zmień rozmiar
|
|
431
|
-
pdfjs-editor-resizer-label-middle-left = Lewy środkowy — zmień rozmiar
|
|
432
400
|
pdfjs-editor-resizer-top-left =
|
|
433
401
|
.aria-label = Lewy górny róg — zmień rozmiar
|
|
434
402
|
pdfjs-editor-resizer-top-middle =
|
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } bytes)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
|
|
123
115
|
pdfjs-document-properties-title = Título:
|
|
124
116
|
pdfjs-document-properties-author = Autor:
|
|
125
117
|
pdfjs-document-properties-subject = Assunto:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Data da modificação:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
136
124
|
pdfjs-document-properties-creator = Criação:
|
|
137
125
|
pdfjs-document-properties-producer = Criador do PDF:
|
|
138
126
|
pdfjs-document-properties-version = Versão do PDF:
|
|
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Ocorreu um erro ao renderizar a página.
|
|
|
275
263
|
|
|
276
264
|
## Annotations
|
|
277
265
|
|
|
278
|
-
# Variables:
|
|
279
|
-
# $date (Date) - the modification date of the annotation
|
|
280
|
-
# $time (Time) - the modification time of the annotation
|
|
281
|
-
pdfjs-annotation-date-string = { $date }, { $time }
|
|
282
266
|
# .alt: This is used as a tooltip.
|
|
283
267
|
# Variables:
|
|
284
268
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -386,20 +370,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
386
370
|
pdfjs-free-text2 =
|
|
387
371
|
.aria-label = Editor de texto
|
|
388
372
|
.default-content = Comece a digitar…
|
|
389
|
-
pdfjs-free-text =
|
|
390
|
-
.aria-label = Editor de texto
|
|
391
|
-
pdfjs-free-text-default-content = Comece digitando…
|
|
392
|
-
pdfjs-ink =
|
|
393
|
-
.aria-label = Editor de desenho
|
|
394
|
-
pdfjs-ink-canvas =
|
|
395
|
-
.aria-label = Imagem criada pelo usuário
|
|
396
373
|
|
|
397
374
|
## Alt-text dialog
|
|
398
375
|
|
|
399
376
|
pdfjs-editor-alt-text-button-label = Texto alternativo
|
|
400
377
|
pdfjs-editor-alt-text-edit-button =
|
|
401
378
|
.aria-label = Editar texto alternativo
|
|
402
|
-
pdfjs-editor-alt-text-edit-button-label = Editar texto alternativo
|
|
403
379
|
pdfjs-editor-alt-text-dialog-label = Escolha uma opção
|
|
404
380
|
pdfjs-editor-alt-text-dialog-description = O texto alternativo ajuda quando uma imagem não aparece ou não é carregada.
|
|
405
381
|
pdfjs-editor-alt-text-add-description-label = Adicionar uma descrição
|
|
@@ -419,14 +395,6 @@ pdfjs-editor-alt-text-button =
|
|
|
419
395
|
## Editor resizers
|
|
420
396
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
421
397
|
|
|
422
|
-
pdfjs-editor-resizer-label-top-left = Canto superior esquerdo — redimensionar
|
|
423
|
-
pdfjs-editor-resizer-label-top-middle = No centro do topo — redimensionar
|
|
424
|
-
pdfjs-editor-resizer-label-top-right = Canto superior direito — redimensionar
|
|
425
|
-
pdfjs-editor-resizer-label-middle-right = No meio à direita — redimensionar
|
|
426
|
-
pdfjs-editor-resizer-label-bottom-right = Canto inferior direito — redimensionar
|
|
427
|
-
pdfjs-editor-resizer-label-bottom-middle = No centro da base — redimensionar
|
|
428
|
-
pdfjs-editor-resizer-label-bottom-left = Canto inferior esquerdo — redimensionar
|
|
429
|
-
pdfjs-editor-resizer-label-middle-left = No meio à esquerda — redimensionar
|
|
430
398
|
pdfjs-editor-resizer-top-left =
|
|
431
399
|
.aria-label = Canto superior esquerdo — redimensionar
|
|
432
400
|
pdfjs-editor-resizer-top-middle =
|
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } bytes)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
|
|
123
115
|
pdfjs-document-properties-title = Título:
|
|
124
116
|
pdfjs-document-properties-author = Autor:
|
|
125
117
|
pdfjs-document-properties-subject = Assunto:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Data de modificação:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date }, { $time }
|
|
136
124
|
pdfjs-document-properties-creator = Criador:
|
|
137
125
|
pdfjs-document-properties-producer = Produtor de PDF:
|
|
138
126
|
pdfjs-document-properties-version = Versão do PDF:
|
|
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Ocorreu um erro ao processar a página.
|
|
|
275
263
|
|
|
276
264
|
## Annotations
|
|
277
265
|
|
|
278
|
-
# Variables:
|
|
279
|
-
# $date (Date) - the modification date of the annotation
|
|
280
|
-
# $time (Time) - the modification time of the annotation
|
|
281
|
-
pdfjs-annotation-date-string = { $date }, { $time }
|
|
282
266
|
# .alt: This is used as a tooltip.
|
|
283
267
|
# Variables:
|
|
284
268
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -378,20 +362,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
378
362
|
pdfjs-free-text2 =
|
|
379
363
|
.aria-label = Editor de texto
|
|
380
364
|
.default-content = Comece a escrever…
|
|
381
|
-
pdfjs-free-text =
|
|
382
|
-
.aria-label = Editor de texto
|
|
383
|
-
pdfjs-free-text-default-content = Começar a digitar…
|
|
384
|
-
pdfjs-ink =
|
|
385
|
-
.aria-label = Editor de desenho
|
|
386
|
-
pdfjs-ink-canvas =
|
|
387
|
-
.aria-label = Imagem criada pelo utilizador
|
|
388
365
|
|
|
389
366
|
## Alt-text dialog
|
|
390
367
|
|
|
391
368
|
pdfjs-editor-alt-text-button-label = Texto alternativo
|
|
392
369
|
pdfjs-editor-alt-text-edit-button =
|
|
393
370
|
.aria-label = Editar texto alternativo
|
|
394
|
-
pdfjs-editor-alt-text-edit-button-label = Editar texto alternativo
|
|
395
371
|
pdfjs-editor-alt-text-dialog-label = Escolher uma opção
|
|
396
372
|
pdfjs-editor-alt-text-dialog-description = O texto alternativo (texto alternativo) ajuda quando as pessoas não conseguem ver a imagem ou quando a mesma não é carregada.
|
|
397
373
|
pdfjs-editor-alt-text-add-description-label = Adicionar uma descrição
|
|
@@ -411,14 +387,6 @@ pdfjs-editor-alt-text-button =
|
|
|
411
387
|
## Editor resizers
|
|
412
388
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
413
389
|
|
|
414
|
-
pdfjs-editor-resizer-label-top-left = Canto superior esquerdo — redimensionar
|
|
415
|
-
pdfjs-editor-resizer-label-top-middle = Superior ao centro — redimensionar
|
|
416
|
-
pdfjs-editor-resizer-label-top-right = Canto superior direito — redimensionar
|
|
417
|
-
pdfjs-editor-resizer-label-middle-right = Centro à direita — redimensionar
|
|
418
|
-
pdfjs-editor-resizer-label-bottom-right = Canto inferior direito — redimensionar
|
|
419
|
-
pdfjs-editor-resizer-label-bottom-middle = Inferior ao centro — redimensionar
|
|
420
|
-
pdfjs-editor-resizer-label-bottom-left = Canto inferior esquerdo — redimensionar
|
|
421
|
-
pdfjs-editor-resizer-label-middle-left = Centro à esquerda — redimensionar
|
|
422
390
|
pdfjs-editor-resizer-top-left =
|
|
423
391
|
.aria-label = Canto superior esquerdo — redimensionar
|
|
424
392
|
pdfjs-editor-resizer-top-middle =
|
|
@@ -112,14 +112,6 @@ pdfjs-document-properties-size-kb = { NUMBER($kb, maximumSignificantDigits: 3) }
|
|
|
112
112
|
# $mb (Number) - the PDF file size in megabytes
|
|
113
113
|
# $b (Number) - the PDF file size in bytes
|
|
114
114
|
pdfjs-document-properties-size-mb = { NUMBER($mb, maximumSignificantDigits: 3) } MB ({ $b } bytes)
|
|
115
|
-
# Variables:
|
|
116
|
-
# $size_kb (Number) - the PDF file size in kilobytes
|
|
117
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
118
|
-
pdfjs-document-properties-kb = { $size_kb } KB ({ $size_b } bytes)
|
|
119
|
-
# Variables:
|
|
120
|
-
# $size_mb (Number) - the PDF file size in megabytes
|
|
121
|
-
# $size_b (Number) - the PDF file size in bytes
|
|
122
|
-
pdfjs-document-properties-mb = { $size_mb } MB ({ $size_b } bytes)
|
|
123
115
|
pdfjs-document-properties-title = Titel:
|
|
124
116
|
pdfjs-document-properties-author = Autur:
|
|
125
117
|
pdfjs-document-properties-subject = Tema:
|
|
@@ -129,10 +121,6 @@ pdfjs-document-properties-modification-date = Data da modificaziun:
|
|
|
129
121
|
# Variables:
|
|
130
122
|
# $dateObj (Date) - the creation/modification date and time of the PDF file
|
|
131
123
|
pdfjs-document-properties-date-time-string = { DATETIME($dateObj, dateStyle: "short", timeStyle: "medium") }
|
|
132
|
-
# Variables:
|
|
133
|
-
# $date (Date) - the creation/modification date of the PDF file
|
|
134
|
-
# $time (Time) - the creation/modification time of the PDF file
|
|
135
|
-
pdfjs-document-properties-date-string = { $date } { $time }
|
|
136
124
|
pdfjs-document-properties-creator = Creà da:
|
|
137
125
|
pdfjs-document-properties-producer = Creà il PDF cun:
|
|
138
126
|
pdfjs-document-properties-version = Versiun da PDF:
|
|
@@ -275,10 +263,6 @@ pdfjs-rendering-error = Ina errur è cumparida cun visualisar questa pagina.
|
|
|
275
263
|
|
|
276
264
|
## Annotations
|
|
277
265
|
|
|
278
|
-
# Variables:
|
|
279
|
-
# $date (Date) - the modification date of the annotation
|
|
280
|
-
# $time (Time) - the modification time of the annotation
|
|
281
|
-
pdfjs-annotation-date-string = { $date }, { $time }
|
|
282
266
|
# .alt: This is used as a tooltip.
|
|
283
267
|
# Variables:
|
|
284
268
|
# $type (String) - an annotation type from a list defined in the PDF spec
|
|
@@ -378,20 +362,12 @@ pdfjs-editor-add-saved-signature-button =
|
|
|
378
362
|
pdfjs-free-text2 =
|
|
379
363
|
.aria-label = Editur da text
|
|
380
364
|
.default-content = Cumenza a tippar…
|
|
381
|
-
pdfjs-free-text =
|
|
382
|
-
.aria-label = Editur da text
|
|
383
|
-
pdfjs-free-text-default-content = Cumenzar a tippar…
|
|
384
|
-
pdfjs-ink =
|
|
385
|
-
.aria-label = Editur dissegn
|
|
386
|
-
pdfjs-ink-canvas =
|
|
387
|
-
.aria-label = Maletg creà da l'utilisader
|
|
388
365
|
|
|
389
366
|
## Alt-text dialog
|
|
390
367
|
|
|
391
368
|
pdfjs-editor-alt-text-button-label = Text alternativ
|
|
392
369
|
pdfjs-editor-alt-text-edit-button =
|
|
393
370
|
.aria-label = Modifitgar il text alternativ
|
|
394
|
-
pdfjs-editor-alt-text-edit-button-label = Modifitgar il text alternativ
|
|
395
371
|
pdfjs-editor-alt-text-dialog-label = Tscherner ina opziun
|
|
396
372
|
pdfjs-editor-alt-text-dialog-description = Il text alternativ (alt text) gida en cas che persunas na vesan betg il maletg u sch'i na reussescha betg d'al chargiar.
|
|
397
373
|
pdfjs-editor-alt-text-add-description-label = Agiuntar ina descripziun
|
|
@@ -411,14 +387,6 @@ pdfjs-editor-alt-text-button =
|
|
|
411
387
|
## Editor resizers
|
|
412
388
|
## This is used in an aria label to help to understand the role of the resizer.
|
|
413
389
|
|
|
414
|
-
pdfjs-editor-resizer-label-top-left = Chantun sura a sanestra — redimensiunar
|
|
415
|
-
pdfjs-editor-resizer-label-top-middle = Sura amez — redimensiunar
|
|
416
|
-
pdfjs-editor-resizer-label-top-right = Chantun sura a dretga — redimensiunar
|
|
417
|
-
pdfjs-editor-resizer-label-middle-right = Da vart dretga amez — redimensiunar
|
|
418
|
-
pdfjs-editor-resizer-label-bottom-right = Chantun sut a dretga — redimensiunar
|
|
419
|
-
pdfjs-editor-resizer-label-bottom-middle = Sutvart amez — redimensiunar
|
|
420
|
-
pdfjs-editor-resizer-label-bottom-left = Chantun sut a sanestra — redimensiunar
|
|
421
|
-
pdfjs-editor-resizer-label-middle-left = Vart sanestra amez — redimensiunar
|
|
422
390
|
pdfjs-editor-resizer-top-left =
|
|
423
391
|
.aria-label = Chantun sura a sanestra — redimensiunar
|
|
424
392
|
pdfjs-editor-resizer-top-middle =
|