@zextras/carbonio-shell-ui 6.0.0 → 7.0.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/lib/boot/app/app-context-provider.d.ts +7 -0
- package/lib/boot/app/app-context-provider.js +17 -0
- package/lib/boot/app/app-context-provider.js.map +1 -0
- package/lib/boot/app/app-error-catcher.d.ts +3 -0
- package/lib/boot/app/app-error-catcher.js +41 -0
- package/lib/boot/app/app-error-catcher.js.map +1 -0
- package/lib/boot/app/app-loader-functions.d.ts +37 -0
- package/lib/boot/app/app-loader-functions.js +121 -0
- package/lib/boot/app/app-loader-functions.js.map +1 -0
- package/lib/boot/app/app-loader-setters.d.ts +38 -0
- package/lib/boot/app/app-loader-setters.js +46 -0
- package/lib/boot/app/app-loader-setters.js.map +1 -0
- package/lib/boot/matomo.d.ts +12 -0
- package/lib/boot/matomo.js +22 -0
- package/lib/boot/matomo.js.map +1 -0
- package/lib/boot/module-i18next-provider.d.ts +7 -0
- package/lib/boot/module-i18next-provider.js +22 -0
- package/lib/boot/module-i18next-provider.js.map +1 -0
- package/lib/boot/tracker.d.ts +11 -0
- package/lib/boot/tracker.js +57 -0
- package/lib/boot/tracker.js.map +1 -0
- package/lib/constants/index.d.ts +146 -0
- package/lib/constants/index.js +160 -0
- package/lib/constants/index.js.map +1 -0
- package/lib/constants/locales.d.ts +83 -0
- package/lib/constants/locales.js +86 -0
- package/lib/constants/locales.js.map +1 -0
- package/lib/history/hooks.d.ts +12 -0
- package/lib/history/hooks.js +69 -0
- package/lib/history/hooks.js.map +1 -0
- package/lib/lib.d.ts +74 -0
- package/lib/lib.js +134 -0
- package/lib/lib.js.map +1 -0
- package/lib/network/edit-settings.d.ts +14 -0
- package/lib/network/edit-settings.js +144 -0
- package/lib/network/edit-settings.js.map +1 -0
- package/lib/network/fetch.d.ts +4 -0
- package/lib/network/fetch.js +175 -0
- package/lib/network/fetch.js.map +1 -0
- package/lib/network/tags.d.ts +27 -0
- package/lib/network/tags.js +31 -0
- package/lib/network/tags.js.map +1 -0
- package/lib/network/user-agent.d.ts +1 -0
- package/lib/network/user-agent.js +15 -0
- package/lib/network/user-agent.js.map +1 -0
- package/lib/network/utils.d.ts +2 -0
- package/lib/network/utils.js +17 -0
- package/lib/network/utils.js.map +1 -0
- package/lib/notification/NotificationManager.d.ts +22 -0
- package/lib/notification/NotificationManager.js +153 -0
- package/lib/notification/NotificationManager.js.map +1 -0
- package/lib/reporting/functions.d.ts +2 -0
- package/lib/reporting/functions.js +14 -0
- package/lib/reporting/functions.js.map +1 -0
- package/lib/reporting/store.d.ts +8 -0
- package/lib/reporting/store.js +43 -0
- package/lib/reporting/store.js.map +1 -0
- package/lib/search/run-search.d.ts +2 -0
- package/lib/search/run-search.js +17 -0
- package/lib/search/run-search.js.map +1 -0
- package/lib/search/search-store.d.ts +2 -0
- package/lib/search/search-store.js +20 -0
- package/lib/search/search-store.js.map +1 -0
- package/lib/search/useSearchModule.d.ts +3 -0
- package/lib/search/useSearchModule.js +21 -0
- package/lib/search/useSearchModule.js.map +1 -0
- package/lib/settings/components/settings-header.d.ts +9 -0
- package/lib/settings/components/settings-header.js +86 -0
- package/lib/settings/components/settings-header.js.map +1 -0
- package/lib/shell/hooks/useIsMobile.d.ts +4 -0
- package/lib/shell/hooks/useIsMobile.js +22 -0
- package/lib/shell/hooks/useIsMobile.js.map +1 -0
- package/lib/shell/hooks/useLocalStorage.d.ts +14 -0
- package/lib/shell/hooks/useLocalStorage.js +77 -0
- package/lib/shell/hooks/useLocalStorage.js.map +1 -0
- package/lib/shell/shell-context.d.ts +4 -0
- package/lib/shell/shell-context.js +11 -0
- package/lib/shell/shell-context.js.map +1 -0
- package/lib/store/account/hooks.d.ts +14 -0
- package/lib/store/account/hooks.js +51 -0
- package/lib/store/account/hooks.js.map +1 -0
- package/lib/store/account/index.d.ts +2 -0
- package/lib/store/account/index.js +24 -0
- package/lib/store/account/index.js.map +1 -0
- package/lib/store/account/store.d.ts +2 -0
- package/lib/store/account/store.js +23 -0
- package/lib/store/account/store.js.map +1 -0
- package/lib/store/app/hooks.d.ts +14 -0
- package/lib/store/app/hooks.js +41 -0
- package/lib/store/app/hooks.js.map +1 -0
- package/lib/store/app/index.d.ts +2 -0
- package/lib/store/app/index.js +24 -0
- package/lib/store/app/index.js.map +1 -0
- package/lib/store/app/store.d.ts +44 -0
- package/lib/store/app/store.js +265 -0
- package/lib/store/app/store.js.map +1 -0
- package/lib/store/app/utils.d.ts +10 -0
- package/lib/store/app/utils.js +123 -0
- package/lib/store/app/utils.js.map +1 -0
- package/lib/store/boards/hooks.d.ts +31 -0
- package/lib/store/boards/hooks.js +82 -0
- package/lib/store/boards/hooks.js.map +1 -0
- package/lib/store/boards/index.d.ts +2 -0
- package/lib/store/boards/index.js +24 -0
- package/lib/store/boards/index.js.map +1 -0
- package/lib/store/boards/store.d.ts +23 -0
- package/lib/store/boards/store.js +124 -0
- package/lib/store/boards/store.js.map +1 -0
- package/lib/store/context-bridge.d.ts +11 -0
- package/lib/store/context-bridge.js +34 -0
- package/lib/store/context-bridge.js.map +1 -0
- package/lib/store/folder/hooks.d.ts +21 -0
- package/lib/store/folder/hooks.js +77 -0
- package/lib/store/folder/hooks.js.map +1 -0
- package/lib/store/folder/index.d.ts +2 -0
- package/lib/store/folder/index.js +24 -0
- package/lib/store/folder/index.js.map +1 -0
- package/lib/store/folder/store.d.ts +2 -0
- package/lib/store/folder/store.js +20 -0
- package/lib/store/folder/store.js.map +1 -0
- package/lib/store/folder/utils.d.ts +16 -0
- package/lib/store/folder/utils.js +53 -0
- package/lib/store/folder/utils.js.map +1 -0
- package/lib/store/i18n/hooks.d.ts +4 -0
- package/lib/store/i18n/hooks.js +21 -0
- package/lib/store/i18n/hooks.js.map +1 -0
- package/lib/store/i18n/store.d.ts +13 -0
- package/lib/store/i18n/store.js +104 -0
- package/lib/store/i18n/store.js.map +1 -0
- package/lib/store/integrations/composer.d.ts +49 -0
- package/lib/store/integrations/composer.js +233 -0
- package/lib/store/integrations/composer.js.map +1 -0
- package/lib/store/integrations/getters.d.ts +9 -0
- package/lib/store/integrations/getters.js +41 -0
- package/lib/store/integrations/getters.js.map +1 -0
- package/lib/store/integrations/hooks.d.ts +9 -0
- package/lib/store/integrations/hooks.js +42 -0
- package/lib/store/integrations/hooks.js.map +1 -0
- package/lib/store/integrations/store.d.ts +41 -0
- package/lib/store/integrations/store.js +65 -0
- package/lib/store/integrations/store.js.map +1 -0
- package/lib/store/integrations/utils.d.ts +8 -0
- package/lib/store/integrations/utils.js +50 -0
- package/lib/store/integrations/utils.js.map +1 -0
- package/lib/store/login/getters.d.ts +2 -0
- package/lib/store/login/getters.js +18 -0
- package/lib/store/login/getters.js.map +1 -0
- package/lib/store/login/store.d.ts +12 -0
- package/lib/store/login/store.js +18 -0
- package/lib/store/login/store.js.map +1 -0
- package/lib/store/network/hooks.d.ts +3 -0
- package/lib/store/network/hooks.js +14 -0
- package/lib/store/network/hooks.js.map +1 -0
- package/lib/store/network/index.d.ts +2 -0
- package/lib/store/network/index.js +24 -0
- package/lib/store/network/index.js.map +1 -0
- package/lib/store/network/store.d.ts +2 -0
- package/lib/store/network/store.js +15 -0
- package/lib/store/network/store.js.map +1 -0
- package/lib/store/network/utils.d.ts +13 -0
- package/lib/store/network/utils.js +94 -0
- package/lib/store/network/utils.js.map +1 -0
- package/lib/store/tags/hooks.d.ts +3 -0
- package/lib/store/tags/hooks.js +15 -0
- package/lib/store/tags/hooks.js.map +1 -0
- package/lib/store/tags/index.d.ts +2 -0
- package/lib/store/tags/index.js +24 -0
- package/lib/store/tags/index.js.map +1 -0
- package/lib/store/tags/store.d.ts +2 -0
- package/lib/store/tags/store.js +18 -0
- package/lib/store/tags/store.js.map +1 -0
- package/lib/tsdoc-metadata.json +11 -0
- package/lib/types/account/index.d.ts +140 -0
- package/lib/types/account/index.js +8 -0
- package/lib/types/account/index.js.map +1 -0
- package/lib/types/apps/index.d.ts +120 -0
- package/lib/types/apps/index.js +9 -0
- package/lib/types/apps/index.js.map +1 -0
- package/lib/types/boards/index.d.ts +10 -0
- package/lib/types/boards/index.js +3 -0
- package/lib/types/boards/index.js.map +1 -0
- package/lib/types/folder/index.d.ts +29 -0
- package/lib/types/folder/index.js +8 -0
- package/lib/types/folder/index.js.map +1 -0
- package/lib/types/integrations/index.d.ts +8 -0
- package/lib/types/integrations/index.js +8 -0
- package/lib/types/integrations/index.js.map +1 -0
- package/lib/types/misc/index.d.ts +156 -0
- package/lib/types/misc/index.js +8 -0
- package/lib/types/misc/index.js.map +1 -0
- package/lib/types/network/entities.d.ts +47 -0
- package/lib/types/network/entities.js +3 -0
- package/lib/types/network/entities.js.map +1 -0
- package/lib/types/network/index.d.ts +171 -0
- package/lib/types/network/index.js +23 -0
- package/lib/types/network/index.js.map +1 -0
- package/lib/types/network/soap.d.ts +102 -0
- package/lib/types/network/soap.js +8 -0
- package/lib/types/network/soap.js.map +1 -0
- package/lib/types/search/index.d.ts +11 -0
- package/lib/types/search/index.js +23 -0
- package/lib/types/search/index.js.map +1 -0
- package/lib/types/search/items.d.ts +6 -0
- package/lib/types/search/items.js +3 -0
- package/lib/types/search/items.js.map +1 -0
- package/lib/types/tags/index.d.ts +12 -0
- package/lib/types/tags/index.js +9 -0
- package/lib/types/tags/index.js.map +1 -0
- package/lib/types/workers/index.d.ts +17 -0
- package/lib/types/workers/index.js +3 -0
- package/lib/types/workers/index.js.map +1 -0
- package/lib/ui-extras/app-link.d.ts +6 -0
- package/lib/ui-extras/app-link.js +40 -0
- package/lib/ui-extras/app-link.js.map +1 -0
- package/lib/ui-extras/nav-guard.d.ts +9 -0
- package/lib/ui-extras/nav-guard.js +96 -0
- package/lib/ui-extras/nav-guard.js.map +1 -0
- package/lib/ui-extras/spinner.d.ts +2 -0
- package/lib/ui-extras/spinner.js +18 -0
- package/lib/ui-extras/spinner.js.map +1 -0
- package/lib/utils/typeUtils.d.ts +14 -0
- package/lib/utils/typeUtils.js +3 -0
- package/lib/utils/typeUtils.js.map +1 -0
- package/lib/utils/utils.d.ts +20 -0
- package/lib/utils/utils.js +39 -0
- package/lib/utils/utils.js.map +1 -0
- package/lib/workers/index.d.ts +2 -0
- package/lib/workers/index.js +15 -0
- package/lib/workers/index.js.map +1 -0
- package/package.json +34 -37
- package/dist/20d012c938e8d0dcc703.mp3 +0 -0
- package/dist/2d9c9ae572663301cb7d.js +0 -75391
- package/dist/CHANGELOG.md +0 -701
- package/dist/carbonio-head.svg +0 -200
- package/dist/carbonio.svg +0 -10
- package/dist/commit +0 -1
- package/dist/component.json +0 -13
- package/dist/favicon.png +0 -0
- package/dist/files/roboto-cyrillic-300-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-300-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-400-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-400-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-500-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-500-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-700-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-700-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-300-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-400-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-500-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-700-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-greek-300-normal.woff +0 -0
- package/dist/files/roboto-greek-300-normal.woff2 +0 -0
- package/dist/files/roboto-greek-400-normal.woff +0 -0
- package/dist/files/roboto-greek-400-normal.woff2 +0 -0
- package/dist/files/roboto-greek-500-normal.woff +0 -0
- package/dist/files/roboto-greek-500-normal.woff2 +0 -0
- package/dist/files/roboto-greek-700-normal.woff +0 -0
- package/dist/files/roboto-greek-700-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-300-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-400-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-500-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-700-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-latin-300-normal.woff +0 -0
- package/dist/files/roboto-latin-300-normal.woff2 +0 -0
- package/dist/files/roboto-latin-400-normal.woff +0 -0
- package/dist/files/roboto-latin-400-normal.woff2 +0 -0
- package/dist/files/roboto-latin-500-normal.woff +0 -0
- package/dist/files/roboto-latin-500-normal.woff2 +0 -0
- package/dist/files/roboto-latin-700-normal.woff +0 -0
- package/dist/files/roboto-latin-700-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-300-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-400-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-500-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-700-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-300-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-300-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-400-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-400-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-500-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-500-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-700-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-700-normal.woff2 +0 -0
- package/dist/i18n/ar.json +0 -1
- package/dist/i18n/de.json +0 -438
- package/dist/i18n/en-US.json +0 -1
- package/dist/i18n/en.json +0 -438
- package/dist/i18n/es-419.json +0 -1
- package/dist/i18n/es.json +0 -438
- package/dist/i18n/fa.json +0 -1
- package/dist/i18n/fi.json +0 -12
- package/dist/i18n/fr.json +0 -438
- package/dist/i18n/hi.json +0 -438
- package/dist/i18n/hr.json +0 -1
- package/dist/i18n/hu.json +0 -31
- package/dist/i18n/id.json +0 -438
- package/dist/i18n/it.json +0 -438
- package/dist/i18n/ja.json +0 -438
- package/dist/i18n/ky.json +0 -6
- package/dist/i18n/nl.json +0 -438
- package/dist/i18n/pl.json +0 -438
- package/dist/i18n/pt-PT.json +0 -1
- package/dist/i18n/pt.json +0 -438
- package/dist/i18n/pt_BR.json +0 -438
- package/dist/i18n/ro.json +0 -9
- package/dist/i18n/ru.json +0 -438
- package/dist/i18n/th.json +0 -438
- package/dist/i18n/tr.json +0 -438
- package/dist/i18n/uk.json +0 -186
- package/dist/i18n/vi.json +0 -396
- package/dist/i18n/zh_Hans.json +0 -412
- package/dist/index.html +0 -25
- package/dist/notification.mp3 +0 -0
- package/dist/package/PKGBUILD +0 -45
- package/dist/plugins/help/js/i18n/keynav/de.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/en.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/es.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/fr_FR.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/hi.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/it.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ja.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/nl.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/pl.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/pt_BR.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ro.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ru.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/th_TH.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/tr.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/vi.js +0 -90
- package/dist/skins/content/dark/content.css +0 -59
- package/dist/skins/content/dark/content.min.css +0 -8
- package/dist/skins/content/default/content.css +0 -49
- package/dist/skins/content/default/content.min.css +0 -8
- package/dist/skins/content/document/content.css +0 -53
- package/dist/skins/content/document/content.min.css +0 -8
- package/dist/skins/content/writer/content.css +0 -50
- package/dist/skins/content/writer/content.min.css +0 -8
- package/dist/skins/ui/oxide/content.css +0 -615
- package/dist/skins/ui/oxide/content.inline.css +0 -608
- package/dist/skins/ui/oxide/content.inline.min.css +0 -8
- package/dist/skins/ui/oxide/content.min.css +0 -8
- package/dist/skins/ui/oxide/content.mobile.css +0 -29
- package/dist/skins/ui/oxide/content.mobile.min.css +0 -8
- package/dist/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
- package/dist/skins/ui/oxide/skin.css +0 -2884
- package/dist/skins/ui/oxide/skin.min.css +0 -8
- package/dist/skins/ui/oxide/skin.mobile.css +0 -673
- package/dist/skins/ui/oxide/skin.mobile.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.css +0 -596
- package/dist/skins/ui/oxide-dark/content.inline.css +0 -608
- package/dist/skins/ui/oxide-dark/content.inline.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.mobile.css +0 -29
- package/dist/skins/ui/oxide-dark/content.mobile.min.css +0 -8
- package/dist/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- package/dist/skins/ui/oxide-dark/skin.css +0 -2884
- package/dist/skins/ui/oxide-dark/skin.min.css +0 -8
- package/dist/skins/ui/oxide-dark/skin.mobile.css +0 -673
- package/dist/skins/ui/oxide-dark/skin.mobile.min.css +0 -8
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css +0 -21
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css.map +0 -1
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js +0 -13399
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js.map +0 -1
- package/dist/src_workers_folder_ts.2df69eae.chunk.js +0 -537
- package/dist/src_workers_folder_ts.2df69eae.chunk.js.map +0 -1
- package/dist/src_workers_tag_ts.59a752d7.chunk.js +0 -113
- package/dist/src_workers_tag_ts.59a752d7.chunk.js.map +0 -1
- package/dist/style.a7eb9e6c.css +0 -389
- package/dist/style.a7eb9e6c.css.map +0 -1
- package/dist/tinymce/langs/de.js +0 -1
- package/dist/tinymce/langs/es.js +0 -1
- package/dist/tinymce/langs/fr_FR.js +0 -1
- package/dist/tinymce/langs/hi.js +0 -1
- package/dist/tinymce/langs/it.js +0 -1
- package/dist/tinymce/langs/ja.js +0 -1
- package/dist/tinymce/langs/nl.js +0 -1
- package/dist/tinymce/langs/pl.js +0 -1
- package/dist/tinymce/langs/pt_BR.js +0 -1
- package/dist/tinymce/langs/ro.js +0 -1
- package/dist/tinymce/langs/ru.js +0 -1
- package/dist/tinymce/langs/th_TH.js +0 -1
- package/dist/tinymce/langs/tr.js +0 -1
- package/dist/tinymce/langs/vi.js +0 -1
- package/dist/tinymce/langs/zh-Hans.js +0 -1
- package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js +0 -412
- package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js +0 -787
- package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js +0 -693
- package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js +0 -685
- package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js +0 -644
- package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js +0 -741
- package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js +0 -531
- package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js +0 -703
- package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js +0 -638
- package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js +0 -623
- package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js +0 -682
- package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js +0 -678
- package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js +0 -670
- package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js +0 -707
- package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js +0 -672
- package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js +0 -677
- package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js +0 -765
- package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js +0 -521
- package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js.map +0 -1
- package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js +0 -19112
- package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js.map +0 -1
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js +0 -219343
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js.map +0 -1
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css +0 -4104
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css.map +0 -1
- package/dist/yap.json +0 -11
- package/dist/zapp-shell.bundle.js +0 -30430
- package/dist/zapp-shell.bundle.js.map +0 -1
- package/types/account/index.d.ts +0 -179
- package/types/apps/index.d.ts +0 -198
- package/types/boards/index.d.ts +0 -31
- package/types/exports/index.d.ts +0 -256
- package/types/folder/index.d.ts +0 -33
- package/types/i18n/index.d.ts +0 -19
- package/types/index.d.ts +0 -20
- package/types/integrations/index.d.ts +0 -41
- package/types/loginConfig/index.d.ts +0 -17
- package/types/misc/index.d.ts +0 -309
- package/types/network/entities.d.ts +0 -106
- package/types/network/index.d.ts +0 -239
- package/types/network/soap.d.ts +0 -106
- package/types/notification/index.d.ts +0 -31
- package/types/search/index.d.ts +0 -18
- package/types/search/items.d.ts +0 -13
- package/types/settings/index.d.ts +0 -10
- package/types/styled-components.d.ts +0 -18
- package/types/tags/index.d.ts +0 -21
- package/types/theme/index.d.ts +0 -9
- package/types/workers/index.d.ts +0 -24
package/dist/i18n/en.json
DELETED
|
@@ -1,438 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"board": {
|
|
3
|
-
"close_tab": "Close Tab",
|
|
4
|
-
"close_tabs": "Close all your tabs",
|
|
5
|
-
"enlarge": "Enlarge board",
|
|
6
|
-
"from_app": "From {{app}}",
|
|
7
|
-
"hide": "Hide board",
|
|
8
|
-
"open_app": "Open in app",
|
|
9
|
-
"reduce": "Reduce board",
|
|
10
|
-
"reset_size": {
|
|
11
|
-
"disabled": "Board already at the default position",
|
|
12
|
-
"enabled": "Return to default position and size"
|
|
13
|
-
},
|
|
14
|
-
"show_tabs": "Show other tabs"
|
|
15
|
-
},
|
|
16
|
-
"bootstrap": {
|
|
17
|
-
"failure": {
|
|
18
|
-
"modal": {
|
|
19
|
-
"body": "Some technical issues occurred while processing your request. Please try to refresh the page or go back to the login page.",
|
|
20
|
-
"confirmButtonLabel": "refresh",
|
|
21
|
-
"secondaryButtonLabel": "login page",
|
|
22
|
-
"title": "Something went wrong…"
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"feedback": {
|
|
27
|
-
"behaviors": "Behaviors",
|
|
28
|
-
"error": "There was an error while submitting your feedback",
|
|
29
|
-
"explanation": "Please give us your feedback about your new experience with Zextras Server. Your opinion is meaningful for us to improve our product. Let us know your thoughts.",
|
|
30
|
-
"hint": "Remember: define the topic using modules and macro area selectors before writing your feedback. Thanks for your help.",
|
|
31
|
-
"missing_features": "Missing features",
|
|
32
|
-
"other": "Other",
|
|
33
|
-
"report_something": "Do you want to report something?",
|
|
34
|
-
"select_a_module": "Select a module",
|
|
35
|
-
"select_a_topic": "Select a topic",
|
|
36
|
-
"send": "SEND",
|
|
37
|
-
"success": "Thank you for your feedback",
|
|
38
|
-
"user_interface": "User interface",
|
|
39
|
-
"write_here": "Write your feedback here"
|
|
40
|
-
},
|
|
41
|
-
"label": {
|
|
42
|
-
"account_menu": "Account menu",
|
|
43
|
-
"account_name": "Account Name",
|
|
44
|
-
"account_type": "Account Type",
|
|
45
|
-
"account_username": "Account Username",
|
|
46
|
-
"accounts": "Accounts",
|
|
47
|
-
"accounts_list": "Accounts list",
|
|
48
|
-
"add_delegate": "Add delegate",
|
|
49
|
-
"add_external_account": "Add external account",
|
|
50
|
-
"add_inline_image": "Add inline image",
|
|
51
|
-
"add_new_email": "Add new e-mail address",
|
|
52
|
-
"add_persona": "Add persona",
|
|
53
|
-
"add_recovery_email": "Add recovery e-mail",
|
|
54
|
-
"address": "Address",
|
|
55
|
-
"advanced_settings": "Advanced Settings",
|
|
56
|
-
"button": "Button",
|
|
57
|
-
"cancel": "Cancel",
|
|
58
|
-
"cannot_save_changes": "Some changes cannot be saved",
|
|
59
|
-
"change_pop": "Change POP port",
|
|
60
|
-
"choose_account": "Choose an account",
|
|
61
|
-
"choose_folder": "Choose Folder",
|
|
62
|
-
"clear_search_query": "CLEAR SEARCH",
|
|
63
|
-
"click_to_copy": "Click to copy",
|
|
64
|
-
"close": "Close",
|
|
65
|
-
"delegates": "Delegates",
|
|
66
|
-
"delete": "Delete",
|
|
67
|
-
"delete_after_download": "Delete messages from the server after the download",
|
|
68
|
-
"delete_permanently": "Delete permanently",
|
|
69
|
-
"discard_changes": "DISCARD CHANGES",
|
|
70
|
-
"documentation": "Documentation",
|
|
71
|
-
"dont_save": "Don’t save a copy of sent messages",
|
|
72
|
-
"download_messages": "Download messages to:",
|
|
73
|
-
"edit_permissions": "Edit permissions",
|
|
74
|
-
"edit_to_start_search": "Edit your search to start a new one",
|
|
75
|
-
"email_address": "E-mail address",
|
|
76
|
-
"email_server": "E-mail server (e.g. “mail.example.com”)",
|
|
77
|
-
"external_account_settings": "External Account Settings",
|
|
78
|
-
"feedback": "Feedback",
|
|
79
|
-
"filter_folders": "Filter folders",
|
|
80
|
-
"folder": "Folder: New External Account 3",
|
|
81
|
-
"folder_external_account": "Folder: New External Account",
|
|
82
|
-
"folders": "Folders",
|
|
83
|
-
"from_name": "From: \"Name\"",
|
|
84
|
-
"go_back": "Go Back",
|
|
85
|
-
"imap": "IMAP",
|
|
86
|
-
"inbox": "Inbox",
|
|
87
|
-
"language": "Language",
|
|
88
|
-
"leave_anyway": "Leave anyway",
|
|
89
|
-
"logout": "Logout",
|
|
90
|
-
"new_folder": "New Folder",
|
|
91
|
-
"no": "No",
|
|
92
|
-
"no_results": "No results found",
|
|
93
|
-
"out_of_office": "Out of Office",
|
|
94
|
-
"password": "Password",
|
|
95
|
-
"passwords_recovery_settings": "Password Recovery Account Settings",
|
|
96
|
-
"permanent_delete_title": "Are you sure to permanently delete this Persona?",
|
|
97
|
-
"persona": "Persona",
|
|
98
|
-
"persona_name": "Persona Name",
|
|
99
|
-
"persona_settings": "Persona Settings",
|
|
100
|
-
"pop3": "POP3",
|
|
101
|
-
"pop_port": "POP port",
|
|
102
|
-
"primary": "Primary",
|
|
103
|
-
"recipents": "Recipients",
|
|
104
|
-
"recovery_email": "Recovery E-mail",
|
|
105
|
-
"reload": "Reload",
|
|
106
|
-
"remove": "remove",
|
|
107
|
-
"reply_to_field_example": "e.g. Bob Smith",
|
|
108
|
-
"save": "Save",
|
|
109
|
-
"save_and_leave": "Save and leave",
|
|
110
|
-
"save_both_folders": "Save a copy of sent messages to my Sent folder and delegate’s folder",
|
|
111
|
-
"save_delegate_folder": "Save a copy of sent messages to delegate’s Sent folder",
|
|
112
|
-
"save_to_my_sent_folder": "Save a copy of sent messages to my Sent folder",
|
|
113
|
-
"secondary": "Secondary",
|
|
114
|
-
"select_image": "Select image",
|
|
115
|
-
"set_reply_to_field": "Set the \"Reply-to\" field of e-mail message to:",
|
|
116
|
-
"settings_sent_messages": "Settings for Sent Messages",
|
|
117
|
-
"test_settings": "Test Settings",
|
|
118
|
-
"time_zone": "Time Zone",
|
|
119
|
-
"unsaved_changes": "You have unsaved changes",
|
|
120
|
-
"unsaved_changes_line1": "Are you sure you want to leave this page without saving?",
|
|
121
|
-
"unsaved_changes_line2": "All your unsaved changes will be lost",
|
|
122
|
-
"update_view": "Update view",
|
|
123
|
-
"use_persona": "Use this persona",
|
|
124
|
-
"use_personas_line1": "Use personas to quickly change many settings when sending e-mail messages.",
|
|
125
|
-
"use_personas_line2": "For example, if you sometimes send e-mails in a particular role at work, create a persona for that.",
|
|
126
|
-
"use_ssl": "Use an encrypter connection (SSL) when accessing this server",
|
|
127
|
-
"when_composing": "When composing, replying to or forwarding messages in folder(s):",
|
|
128
|
-
"when_replying": "When replying or forwarding messages sent to:"
|
|
129
|
-
},
|
|
130
|
-
"locale": {
|
|
131
|
-
"English": "English",
|
|
132
|
-
"chinese_china": "Chinese (China)",
|
|
133
|
-
"dutch": "Dutch",
|
|
134
|
-
"french": "French",
|
|
135
|
-
"german": "German",
|
|
136
|
-
"hindi": "Hindi",
|
|
137
|
-
"italian": "Italian",
|
|
138
|
-
"japanese": "Japanese",
|
|
139
|
-
"label_chinese": "Chinese (China) - {{value}}",
|
|
140
|
-
"label_dutch": "Dutch - {{value}}",
|
|
141
|
-
"label_english": "English - {{value}}",
|
|
142
|
-
"label_french": "French - {{value}}",
|
|
143
|
-
"label_german": "German - {{value}}",
|
|
144
|
-
"label_hindi": "Hindi - {{value}}",
|
|
145
|
-
"label_italian": "Italian - {{value}}",
|
|
146
|
-
"label_japanese": "Japanese - {{value}}",
|
|
147
|
-
"label_polish": "Polish - {{value}}",
|
|
148
|
-
"label_portuguese": "Portuguese - {{value}}",
|
|
149
|
-
"label_portuguese_brazil": "Portuguese - {{value}}",
|
|
150
|
-
"label_romanian": "Romanian - {{value}}",
|
|
151
|
-
"label_russian": "Russian - {{value}}",
|
|
152
|
-
"label_spanish": "Spanish - {{value}}",
|
|
153
|
-
"label_thai": "Thai - {{value}}",
|
|
154
|
-
"label_turkish": "Turkish - {{value}}",
|
|
155
|
-
"label_vietnamese": "Vietnamese - {{value}}",
|
|
156
|
-
"polish": "Polish",
|
|
157
|
-
"portuguese": "Portuguese",
|
|
158
|
-
"portuguese_brazil": "Portuguese (Brazil)",
|
|
159
|
-
"romanian": "Romanian",
|
|
160
|
-
"russian": "Russian",
|
|
161
|
-
"spanish": "Spanish",
|
|
162
|
-
"thai": "Thai",
|
|
163
|
-
"turkish": "Turkish",
|
|
164
|
-
"vietnamese": "Vietnamese"
|
|
165
|
-
},
|
|
166
|
-
"message": {
|
|
167
|
-
"reload": "\tWould you like to reload the application now to show the new language?\n(Otherwise, the new language will appear the next time you sign in.)",
|
|
168
|
-
"snackbar": {
|
|
169
|
-
"identities_quota_exceeded": "The identity could not be created because you have exceeded your identity quota",
|
|
170
|
-
"settings_saved": "Edits saved correctly"
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
"messages": {
|
|
174
|
-
"permanent_delete_body": "If you permanently delete this Persona you will not be able to recover it. Continue?",
|
|
175
|
-
"permanent_delete_title": "Are you sure to permanently delete this element?"
|
|
176
|
-
},
|
|
177
|
-
"module": {
|
|
178
|
-
"app": {
|
|
179
|
-
"version": "Application versions"
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
"new": "New",
|
|
183
|
-
"new_tab": "New Tab",
|
|
184
|
-
"passwords_recovery_settings": {
|
|
185
|
-
"title": "Password Recovery Account Settings"
|
|
186
|
-
},
|
|
187
|
-
"primary_account": {
|
|
188
|
-
"title": "Primary Account Settings"
|
|
189
|
-
},
|
|
190
|
-
"search": {
|
|
191
|
-
"active_input_label": "Separate your keywords by a comma or pressing SPACE",
|
|
192
|
-
"already_clear": "Search input is already clear",
|
|
193
|
-
"app": "Search",
|
|
194
|
-
"clear": "Clear search input",
|
|
195
|
-
"idle_input_label": "Search in {{module}}",
|
|
196
|
-
"module": "Module",
|
|
197
|
-
"start": "Start search",
|
|
198
|
-
"type_or_choose_suggestion": "Type or choose some keywords to start a search",
|
|
199
|
-
"type_to_start_search": "Type some keywords to start a search",
|
|
200
|
-
"unable_to_parse_query": "Unable to complete the search, clear it and retry"
|
|
201
|
-
},
|
|
202
|
-
"settings": {
|
|
203
|
-
"account": {
|
|
204
|
-
"delegates": {
|
|
205
|
-
"multiple_rights": "{{rights.0}} and {{rights.1}}",
|
|
206
|
-
"right_sendas": "SendAs",
|
|
207
|
-
"right_sendonbehalfof": "Send on behalf of"
|
|
208
|
-
},
|
|
209
|
-
"new_identity": "New Persona {{number}}"
|
|
210
|
-
},
|
|
211
|
-
"accounts": "Accounts",
|
|
212
|
-
"app": "Settings",
|
|
213
|
-
"appearance": {
|
|
214
|
-
"labels": {
|
|
215
|
-
"a": "A",
|
|
216
|
-
"choose_size_auto": "Automatically resize the text size depending on the device",
|
|
217
|
-
"choose_size_description": "Choose size and style for the Carbonio environment",
|
|
218
|
-
"choose_size_pangram": "The quick brown fox jumps over the lazy dog.",
|
|
219
|
-
"decrease": "Decrease size",
|
|
220
|
-
"decrease_disabled": "Minimum size reached",
|
|
221
|
-
"increase": "Increase size",
|
|
222
|
-
"increase_disabled": "Maximum size reached"
|
|
223
|
-
},
|
|
224
|
-
"option_l": "Large",
|
|
225
|
-
"option_m": "Medium",
|
|
226
|
-
"option_s": "Small",
|
|
227
|
-
"option_xl": "Extralarge",
|
|
228
|
-
"option_xs": "Extrasmall"
|
|
229
|
-
},
|
|
230
|
-
"button": {
|
|
231
|
-
"confirm": "Confirm",
|
|
232
|
-
"primary": "Save"
|
|
233
|
-
},
|
|
234
|
-
"choose": "Choose",
|
|
235
|
-
"general": {
|
|
236
|
-
"account": "Account",
|
|
237
|
-
"account_logout": "Logout",
|
|
238
|
-
"appearance": "Appearance",
|
|
239
|
-
"dark_mode": "Dark Mode",
|
|
240
|
-
"general": "General Settings",
|
|
241
|
-
"theme_auto": "Auto",
|
|
242
|
-
"theme_disabled": "Disabled",
|
|
243
|
-
"theme_enabled": "Enabled",
|
|
244
|
-
"theme_options": "Theme Options"
|
|
245
|
-
},
|
|
246
|
-
"general_tab": "General",
|
|
247
|
-
"out_of_office": {
|
|
248
|
-
"do_not_send_auto_replies": "Do not send auto-replies",
|
|
249
|
-
"external_senders": {
|
|
250
|
-
"do_not_send_to_external": "Don't send an auto-reply message to external sender",
|
|
251
|
-
"send_custom_in_organisation": "Send custom message to those who are not in my organization",
|
|
252
|
-
"send_custom_not_in_organisation": "Send custom message to those who are not in my organization and address book",
|
|
253
|
-
"send_standard_auto_reply": "Send standard auto-reply message"
|
|
254
|
-
},
|
|
255
|
-
"headings": {
|
|
256
|
-
"create_appointment": "Calendar Appointment",
|
|
257
|
-
"settings_label": "Out of Office Settings",
|
|
258
|
-
"time_period": "Time Period"
|
|
259
|
-
},
|
|
260
|
-
"labels": {
|
|
261
|
-
"all_day": "All Day:",
|
|
262
|
-
"auto_reply_message": "Auto-Reply Message:",
|
|
263
|
-
"auto_reply_message_external": "Auto-Reply Message for External senders:",
|
|
264
|
-
"create_appointment": "Create Appointment:",
|
|
265
|
-
"end_date": "End Date",
|
|
266
|
-
"end_time": "End Time:",
|
|
267
|
-
"external_senders": "External Senders",
|
|
268
|
-
"out_of_office_status": "Out Of Office Status:",
|
|
269
|
-
"send_auto_reply_period": "Send auto-replies during the following period:",
|
|
270
|
-
"start_date": "Start Date",
|
|
271
|
-
"start_time": "Start Time:"
|
|
272
|
-
},
|
|
273
|
-
"send_auto_replies": "Send auto-replies",
|
|
274
|
-
"status": {
|
|
275
|
-
"busy": "Busy"
|
|
276
|
-
}
|
|
277
|
-
},
|
|
278
|
-
"search_settings": {
|
|
279
|
-
"labels": {
|
|
280
|
-
"include_search_in_shared_folder": "Include Shared Folder in searches",
|
|
281
|
-
"include_search_in_spam_folder": "Include Spam Folder in searches",
|
|
282
|
-
"include_search_in_trash_folder": "Include Trash Folder in searches"
|
|
283
|
-
}
|
|
284
|
-
},
|
|
285
|
-
"timezone_and_language": "Time Zone and Language"
|
|
286
|
-
},
|
|
287
|
-
"share": {
|
|
288
|
-
"is_contained_in": "Is contained in"
|
|
289
|
-
},
|
|
290
|
-
"snackbar": {
|
|
291
|
-
"error": "Something went wrong, please try again"
|
|
292
|
-
},
|
|
293
|
-
"timezone": {
|
|
294
|
-
"africa_algiers": "{{value}} West Central Africa",
|
|
295
|
-
"africa_cairo": "{{value}} Egypt",
|
|
296
|
-
"africa_casablanca": "{{value}} Casablanca",
|
|
297
|
-
"africa_harare": "{{value}} Harare, Pretoria",
|
|
298
|
-
"africa_juba": "{{value}} Juba",
|
|
299
|
-
"africa_khartoum": "{{value}} Khartoum",
|
|
300
|
-
"africa_monrovia": "{{value}} Monrovia",
|
|
301
|
-
"africa_nairobi": "{{value}} Nairobi",
|
|
302
|
-
"africa_sao_tome": "{{value}} Sao Tome",
|
|
303
|
-
"africa_tripoli": "{{value}} Tripoli",
|
|
304
|
-
"africa_windhoek": "{{value}} Namibia",
|
|
305
|
-
"america_adak": "{{value}} Adak",
|
|
306
|
-
"america_anchorage": "{{value}} Alaska",
|
|
307
|
-
"america_araguaina": "{{value}} Araguaina",
|
|
308
|
-
"america_argentina_buenos_aires": "{{value}} Argentina",
|
|
309
|
-
"america_asuncion": "{{value}} Asuncion",
|
|
310
|
-
"america_bahia": "{{value}} Salvador",
|
|
311
|
-
"america_bogota": "{{value}} Colombia",
|
|
312
|
-
"america_cancun": "{{value}} Cancun, Chetumal",
|
|
313
|
-
"america_caracas": "{{value}} Caracas",
|
|
314
|
-
"america_cayenne": "{{value}} Cayenne, Fortaleza",
|
|
315
|
-
"america_chicago": "{{value}} US/Canada Central",
|
|
316
|
-
"america_chihuahua": "{{value}} Chihuahua, La Paz, Mazatlan",
|
|
317
|
-
"america_cuiaba": "{{value}} Cuiaba",
|
|
318
|
-
"america_denver": "{{value}} US/Canada Mountain",
|
|
319
|
-
"america_fort_nelson": "{{value}} Fort Nelson",
|
|
320
|
-
"america_grand_turk": "{{value}} Turks and Caicos Islands",
|
|
321
|
-
"america_guatemala": "{{value}} Central America",
|
|
322
|
-
"america_guyana": "{{value}} Georgetown, La Paz, Manaus, San Juan",
|
|
323
|
-
"america_halifax": "{{value}} Atlantic Time (Canada)",
|
|
324
|
-
"america_havana": "{{value}} Havana",
|
|
325
|
-
"america_indiana_indianapolis": "{{value}} Indiana (East)",
|
|
326
|
-
"america_los_angeles": "{{value}} US/Canada Pacific",
|
|
327
|
-
"america_mexico_city": "{{value}} Guadalajara, Mexico City, Monterrey",
|
|
328
|
-
"america_miquelon": "{{value}} Miquelon",
|
|
329
|
-
"america_montevideo": "{{value}} Montevideo",
|
|
330
|
-
"america_new_york": "{{value}} US/Canada Eastern",
|
|
331
|
-
"america_phoenix": "{{value}} Arizona",
|
|
332
|
-
"america_port-au-prince": "{{value}} Port-au-Prince",
|
|
333
|
-
"america_punta_arenas": "{{value}} Punta_Arenas",
|
|
334
|
-
"america_regina": "{{value}} Saskatchewan",
|
|
335
|
-
"america_santiago": "{{value}} Pacific South America",
|
|
336
|
-
"america_sao_paulo": "{{value}} Brasilia",
|
|
337
|
-
"america_st_johns": "{{value}} Newfoundland",
|
|
338
|
-
"america_tijuana": "{{value}} Baja California",
|
|
339
|
-
"america_whitehorse": "{{value}} Yukon",
|
|
340
|
-
"asia_almaty": "{{value}} Astana",
|
|
341
|
-
"asia_amman": "{{value}} Jordan",
|
|
342
|
-
"asia_baghdad": "{{value}} Iraq",
|
|
343
|
-
"asia_baku": "{{value}} Baku",
|
|
344
|
-
"asia_bangkok": "{{value}} Bangkok, Hanoi, Jakarta",
|
|
345
|
-
"asia_barnaul": "{{value}} Barnaul",
|
|
346
|
-
"asia_beirut": "{{value}} Beirut",
|
|
347
|
-
"asia_chita": "{{value}} Chita",
|
|
348
|
-
"asia_colombo": "{{value}} Sri Jayawardenepura Kotte",
|
|
349
|
-
"asia_damascus": "{{value}} Damascus",
|
|
350
|
-
"asia_dhaka": "{{value}} Dhaka",
|
|
351
|
-
"asia_gaza": "{{value}} Gaza",
|
|
352
|
-
"asia_hong_kong": "{{value}} Beijing, Chongqing, Hong Kong, Urumqi",
|
|
353
|
-
"asia_hovd": "{{value}} Hovd",
|
|
354
|
-
"asia_irkutsk": "{{value}} Irkutsk (RTZ 7)",
|
|
355
|
-
"asia_jerusalem": "{{value}} Jerusalem",
|
|
356
|
-
"asia_kabul": "{{value}} Kabul",
|
|
357
|
-
"asia_kamchatka": "{{value}} Anadyr, Petropavlovsk-Kamchatsky (RTZ 11)",
|
|
358
|
-
"asia_karachi": "{{value}} Islamabad, Karachi",
|
|
359
|
-
"asia_kathmandu": "{{value}} Kathmandu",
|
|
360
|
-
"asia_kolkata": "{{value}} Chennai, Kolkata, Mumbai, New Delhi",
|
|
361
|
-
"asia_krasnoyarsk": "{{value}} Krasnoyarsk (RTZ 6)",
|
|
362
|
-
"asia_kuala_lumpur": "{{value}} Kuala Lumpur",
|
|
363
|
-
"asia_kuwait": "{{value}} Kuwait, Riyadh",
|
|
364
|
-
"asia_magadan": "{{value}} Magadan",
|
|
365
|
-
"asia_muscat": "{{value}} Abu Dhabi, Muscat",
|
|
366
|
-
"asia_novosibirsk": "{{value}} Novosibirsk (RTZ 5)",
|
|
367
|
-
"asia_omsk": "{{value}} Omsk",
|
|
368
|
-
"asia_pyongyang": "{{value}} Pyongyang",
|
|
369
|
-
"asia_qyzylorda": "{{value}} Qyzylorda",
|
|
370
|
-
"asia_sakhalin": "{{value}} Sakhalin",
|
|
371
|
-
"asia_seoul": "{{value}} Korea",
|
|
372
|
-
"asia_singapore": "{{value}} Singapore",
|
|
373
|
-
"asia_srednekolymsk": "{{value}} Chokurdakh (RTZ 10)",
|
|
374
|
-
"asia_taipei": "{{value}} Taipei",
|
|
375
|
-
"asia_tashkent": "{{value}} Tashkent",
|
|
376
|
-
"asia_tbilisi": "{{value}} Tbilisi",
|
|
377
|
-
"asia_tehran": "{{value}} Tehran",
|
|
378
|
-
"asia_tokyo": "{{value}} Japan",
|
|
379
|
-
"asia_tomsk": "{{value}} Tomsk",
|
|
380
|
-
"asia_ulaanbaatar": "{{value}} Ulaanbaatar",
|
|
381
|
-
"asia_vladivostok": "{{value}} Vladivostok, Magadan (RTZ 9)",
|
|
382
|
-
"asia_yakutsk": "{{value}} Yakutsk (RTZ 8)",
|
|
383
|
-
"asia_yangon": "{{value}} Yangon",
|
|
384
|
-
"asia_yekaterinburg": "{{value}} Ekaterinburg (RTZ 4)",
|
|
385
|
-
"asia_yerevan": "{{value}} Yerevan",
|
|
386
|
-
"atlantic_azores": "{{value}} Azores",
|
|
387
|
-
"atlantic_cape_verde": "{{value}} Cape Verde Is.",
|
|
388
|
-
"atlantic_south_georgia": "{{value}} Mid-Atlantic",
|
|
389
|
-
"australia_adelaide": "{{value}} Adelaide",
|
|
390
|
-
"australia_brisbane": "{{value}} Brisbane",
|
|
391
|
-
"australia_darwin": "{{value}} Darwin",
|
|
392
|
-
"australia_eucla": "{{value}} Eucla",
|
|
393
|
-
"australia_hobart": "{{value}} Hobart",
|
|
394
|
-
"australia_lord_howe": "{{value}} Lord_Howe",
|
|
395
|
-
"australia_perth": "{{value}} Perth",
|
|
396
|
-
"australia_sydney": "{{value}} Canberra, Melbourne, Sydney",
|
|
397
|
-
"etc_gmt+12": "{{value}} Dateline",
|
|
398
|
-
"europe_astrakhan": "{{value}} Astrakhan",
|
|
399
|
-
"europe_athens": "{{value}} Athens, Beirut, Bucharest, Istanbul",
|
|
400
|
-
"europe_belgrade": "{{value}} Belgrade, Bratislava, Budapest, Ljubljana, Prague",
|
|
401
|
-
"europe_berlin": "{{value}} Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna",
|
|
402
|
-
"europe_brussels": "{{value}} Brussels, Copenhagen, Madrid, Paris",
|
|
403
|
-
"europe_bucharest": "{{value}} Bucharest",
|
|
404
|
-
"europe_chisinau": "{{value}} Chisinau",
|
|
405
|
-
"europe_helsinki": "{{value}} Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius",
|
|
406
|
-
"europe_istanbul": "{{value}} Istanbul",
|
|
407
|
-
"europe_kaliningrad": "{{value}} Kaliningrad (RTZ 1)",
|
|
408
|
-
"europe_london": "{{value}} Britain, Ireland, Portugal",
|
|
409
|
-
"europe_minsk": "{{value}} Minsk",
|
|
410
|
-
"europe_moscow": "{{value}} Moscow, St. Petersburg, Volgograd (RTZ 2)",
|
|
411
|
-
"europe_samara": "{{value}} Izhevsk, Samara (RTZ 3)",
|
|
412
|
-
"europe_saratov": "{{value}} Saratov",
|
|
413
|
-
"europe_volgograd": "{{value}} Volgograd",
|
|
414
|
-
"europe_warsaw": "{{value}} Sarajevo, Skopje, Warsaw, Zagreb",
|
|
415
|
-
"indian_mauritius": "{{value}} Port Louis",
|
|
416
|
-
"pacific_apia": "{{value}} Samoa",
|
|
417
|
-
"pacific_auckland": "{{value}} New Zealand",
|
|
418
|
-
"pacific_bougainville": "{{value}} Bougainville Standard Time",
|
|
419
|
-
"pacific_chatham": "{{value}} Chatham",
|
|
420
|
-
"pacific_easter": "{{value}} Easter",
|
|
421
|
-
"pacific_fiji": "{{value}} Fiji",
|
|
422
|
-
"pacific_guadalcanal": "{{value}} Solomon Is. / New Caledonia",
|
|
423
|
-
"pacific_guam": "{{value}} Guam, Port Moresby",
|
|
424
|
-
"pacific_honolulu": "{{value}} Hawaii",
|
|
425
|
-
"pacific_kiritimati": "{{value}} Kiritimati Island",
|
|
426
|
-
"pacific_marquesas": "{{value}} Marquesas",
|
|
427
|
-
"pacific_midway": "{{value}} Samoa",
|
|
428
|
-
"pacific_norfolk": "{{value}} Norfolk",
|
|
429
|
-
"pacific_tongatapu": "{{value}} Nuku’alofa",
|
|
430
|
-
"utc": "{{value}} Coordinated Universal Time"
|
|
431
|
-
},
|
|
432
|
-
"user_quota": {
|
|
433
|
-
"limited": "You have filled {{quota}}% of the available space",
|
|
434
|
-
"space_full": "It seems that all available space is full",
|
|
435
|
-
"title": "User's quota",
|
|
436
|
-
"unlimited": "You have unlimited space available"
|
|
437
|
-
}
|
|
438
|
-
}
|
package/dist/i18n/es-419.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|