@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/zh_Hans.json
DELETED
|
@@ -1,412 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"settings": {
|
|
3
|
-
"app": "设置",
|
|
4
|
-
"appearance": {
|
|
5
|
-
"labels": {
|
|
6
|
-
"choose_size_pangram": "The quick brown fox jumps over the lazy dog.",
|
|
7
|
-
"a": "8",
|
|
8
|
-
"increase_disabled": "已达到最大尺寸",
|
|
9
|
-
"increase": "增大尺寸",
|
|
10
|
-
"decrease_disabled": "已达到最小尺寸",
|
|
11
|
-
"decrease": "缩小尺寸",
|
|
12
|
-
"choose_size_description": "为Carbonio环境选择尺寸和样式",
|
|
13
|
-
"choose_size_auto": "根据设备自动调整文本大小"
|
|
14
|
-
},
|
|
15
|
-
"option_s": "小",
|
|
16
|
-
"option_l": "大",
|
|
17
|
-
"option_xl": "超大",
|
|
18
|
-
"option_xs": "超小",
|
|
19
|
-
"option_m": "中等"
|
|
20
|
-
},
|
|
21
|
-
"button": {
|
|
22
|
-
"primary": "保存",
|
|
23
|
-
"confirm": "确认"
|
|
24
|
-
},
|
|
25
|
-
"out_of_office": {
|
|
26
|
-
"labels": {
|
|
27
|
-
"start_date": "开始日期",
|
|
28
|
-
"end_date": "结束日期",
|
|
29
|
-
"all_day": "全天:",
|
|
30
|
-
"auto_reply_message": "自动回复消息:",
|
|
31
|
-
"auto_reply_message_external": "外部发送者的自动回复消息:",
|
|
32
|
-
"create_appointment": "创建预约:",
|
|
33
|
-
"end_time": "结束时间:",
|
|
34
|
-
"external_senders": "外部发送者",
|
|
35
|
-
"out_of_office_status": "不在办公室状态:",
|
|
36
|
-
"send_auto_reply_period": "在以下时段发送自动回复:",
|
|
37
|
-
"start_time": "开始时间:"
|
|
38
|
-
},
|
|
39
|
-
"status": {
|
|
40
|
-
"busy": "忙碌"
|
|
41
|
-
},
|
|
42
|
-
"do_not_send_auto_replies": "不发送自动回复",
|
|
43
|
-
"external_senders": {
|
|
44
|
-
"do_not_send_to_external": "不要向外部发送者发送自动回复消息",
|
|
45
|
-
"send_custom_in_organisation": "向不在我组织中的人发送自定义消息",
|
|
46
|
-
"send_custom_not_in_organisation": "向不在我组织和地址簿中的人发送自定义消息",
|
|
47
|
-
"send_standard_auto_reply": "发送标准自动回复消息"
|
|
48
|
-
},
|
|
49
|
-
"headings": {
|
|
50
|
-
"create_appointment": "日历预约",
|
|
51
|
-
"settings_label": "不在办公室设置",
|
|
52
|
-
"time_period": "时间段"
|
|
53
|
-
},
|
|
54
|
-
"send_auto_replies": "发送自动回复"
|
|
55
|
-
},
|
|
56
|
-
"general": {
|
|
57
|
-
"account": "账户",
|
|
58
|
-
"account_logout": "注销",
|
|
59
|
-
"theme_disabled": "已禁用",
|
|
60
|
-
"theme_enabled": "已启用",
|
|
61
|
-
"general": "通用设置",
|
|
62
|
-
"theme_auto": "自动",
|
|
63
|
-
"theme_options": "主题选项",
|
|
64
|
-
"dark_mode": "深色模式",
|
|
65
|
-
"appearance": "外观"
|
|
66
|
-
},
|
|
67
|
-
"general_tab": "通用",
|
|
68
|
-
"timezone_and_language": "时区和语言",
|
|
69
|
-
"accounts": "账户",
|
|
70
|
-
"choose": "选择",
|
|
71
|
-
"search_settings": {
|
|
72
|
-
"labels": {
|
|
73
|
-
"include_search_in_shared_folder": "在搜索中包含共享文件夹",
|
|
74
|
-
"include_search_in_spam_folder": "在搜索中包含垃圾信息文件夹",
|
|
75
|
-
"include_search_in_trash_folder": "在搜索中包含垃圾箱文件夹"
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
"new": "新建",
|
|
80
|
-
"search": {
|
|
81
|
-
"app": "搜索",
|
|
82
|
-
"module": "模块",
|
|
83
|
-
"active_input_label": "使用逗号或空格分隔关键词",
|
|
84
|
-
"clear": "清除搜索输入",
|
|
85
|
-
"idle_input_label": "在{{module}}中搜索",
|
|
86
|
-
"start": "开始搜索",
|
|
87
|
-
"already_clear": "搜索输入已清除",
|
|
88
|
-
"type_to_start_search": "输入一些关键词以开始搜索",
|
|
89
|
-
"type_or_choose_suggestion": "输入或选择一些关键词以开始搜索",
|
|
90
|
-
"unable_to_parse_query": "无法完成搜索,清除并重试"
|
|
91
|
-
},
|
|
92
|
-
"message": {
|
|
93
|
-
"snackbar": {
|
|
94
|
-
"settings_saved": "编辑保存正确",
|
|
95
|
-
"identities_quota_exceeded": "身份无法创建,因为您已超出身份配额"
|
|
96
|
-
},
|
|
97
|
-
"reload": "\t是否立即重新加载应用程序以显示新的语言?\n(或者新语言将在下次登录时显示。)"
|
|
98
|
-
},
|
|
99
|
-
"module": {
|
|
100
|
-
"app": {
|
|
101
|
-
"version": "应用程序版本"
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
"new_tab": "新标签页",
|
|
105
|
-
"snackbar": {
|
|
106
|
-
"error": "出现了一些错误,请重试"
|
|
107
|
-
},
|
|
108
|
-
"user_quota": {
|
|
109
|
-
"limited": "{{quota}}%可用空间已使用",
|
|
110
|
-
"unlimited": "您有无限可用空间",
|
|
111
|
-
"space_full": "似乎所有可用空间均已使用",
|
|
112
|
-
"title": "用户配额"
|
|
113
|
-
},
|
|
114
|
-
"label": {
|
|
115
|
-
"cancel": "取消",
|
|
116
|
-
"language": "语言",
|
|
117
|
-
"no": "否",
|
|
118
|
-
"edit_to_start_search": "编辑搜索以开始新的",
|
|
119
|
-
"reload": "重新加载",
|
|
120
|
-
"time_zone": "时区",
|
|
121
|
-
"clear_search_query": "清除搜索",
|
|
122
|
-
"out_of_office": "不在办公室",
|
|
123
|
-
"discard_changes": "丢弃变更",
|
|
124
|
-
"accounts": "账户",
|
|
125
|
-
"address": "地址",
|
|
126
|
-
"advanced_settings": "高级设置",
|
|
127
|
-
"delete": "删除",
|
|
128
|
-
"folders": "文件夹",
|
|
129
|
-
"new_folder": "新文件夹",
|
|
130
|
-
"delete_permanently": "永久删除",
|
|
131
|
-
"email_address": "邮件地址",
|
|
132
|
-
"filter_folders": "筛选文件夹",
|
|
133
|
-
"go_back": "返回",
|
|
134
|
-
"inbox": "收件箱",
|
|
135
|
-
"logout": "注销",
|
|
136
|
-
"no_results": "未找到结果",
|
|
137
|
-
"password": "密码",
|
|
138
|
-
"primary": "主要",
|
|
139
|
-
"remove": "移除",
|
|
140
|
-
"save": "保存",
|
|
141
|
-
"secondary": "次要",
|
|
142
|
-
"account_menu": "账户菜单",
|
|
143
|
-
"account_name": "账户名称",
|
|
144
|
-
"account_type": "账户类型",
|
|
145
|
-
"account_username": "账户用户名",
|
|
146
|
-
"accounts_list": "账户列表",
|
|
147
|
-
"add_delegate": "添加委派",
|
|
148
|
-
"add_external_account": "添加外部账户",
|
|
149
|
-
"add_new_email": "添加新的邮件地址",
|
|
150
|
-
"add_persona": "添加角色",
|
|
151
|
-
"add_recovery_email": "添加恢复邮件",
|
|
152
|
-
"button": "按钮",
|
|
153
|
-
"change_pop": "更改 POP 端口",
|
|
154
|
-
"choose_account": "选择一个账户",
|
|
155
|
-
"choose_folder": "选择文件夹",
|
|
156
|
-
"click_to_copy": "点击复制",
|
|
157
|
-
"delete_after_download": "下载后从服务器删除消息",
|
|
158
|
-
"documentation": "文档",
|
|
159
|
-
"dont_save": "不要保存已发送消息副本",
|
|
160
|
-
"download_messages": "下载消息至:",
|
|
161
|
-
"edit_permissions": "编辑权限",
|
|
162
|
-
"email_server": "邮件服务器(如:“mail.example.com”)",
|
|
163
|
-
"external_account_settings": "外部账户设置",
|
|
164
|
-
"feedback": "反馈",
|
|
165
|
-
"folder": "文件夹:新外部账户 3",
|
|
166
|
-
"from_name": "发自:“名称”",
|
|
167
|
-
"imap": "IMAP",
|
|
168
|
-
"leave_anyway": "仍然离开",
|
|
169
|
-
"passwords_recovery_settings": "密码恢复账户设置",
|
|
170
|
-
"permanent_delete_title": "确定要永久删除该角色吗?",
|
|
171
|
-
"persona": "角色",
|
|
172
|
-
"persona_name": "角色名称",
|
|
173
|
-
"persona_settings": "角色设置",
|
|
174
|
-
"pop3": "POP3",
|
|
175
|
-
"pop_port": "POP 端口",
|
|
176
|
-
"recipents": "接收者",
|
|
177
|
-
"reply_to_field_example": "如:Bob Smith",
|
|
178
|
-
"save_and_leave": "保存并离开",
|
|
179
|
-
"save_both_folders": "将已发送消息副本保存至我的“已发送”文件夹与委派文件夹",
|
|
180
|
-
"save_delegate_folder": "将已发送消息副本保存至委派“已发送”文件夹",
|
|
181
|
-
"save_to_my_sent_folder": "将已发送消息副本保存至我的“已发送”文件夹",
|
|
182
|
-
"set_reply_to_field": "将邮件消息的“回复至”字段设置为:",
|
|
183
|
-
"settings_sent_messages": "已发送消息设置",
|
|
184
|
-
"test_settings": "测试设置",
|
|
185
|
-
"unsaved_changes": "您有未保存更改",
|
|
186
|
-
"unsaved_changes_line1": "确定要离开此页面且不保存吗?",
|
|
187
|
-
"unsaved_changes_line2": "您所有的未保存更改都将丢失",
|
|
188
|
-
"use_ssl": "在访问此服务器时使用加密器连接(SSL)",
|
|
189
|
-
"when_composing": "在文件夹中撰写、回复或转发消息时:",
|
|
190
|
-
"when_replying": "在回复或转发已发送至以下位置的消息时:",
|
|
191
|
-
"delegates": "委派",
|
|
192
|
-
"update_view": "更新视图",
|
|
193
|
-
"use_persona": "使用该角色",
|
|
194
|
-
"use_personas_line1": "使用角色以在发送邮件消息时快速变更多项设置。",
|
|
195
|
-
"use_personas_line2": "例如,如果您有时候会在工作中以特定角色发送邮件,可为其创建角色。",
|
|
196
|
-
"recovery_email": "恢复邮件",
|
|
197
|
-
"folder_external_account": "文件夹:新外部账户",
|
|
198
|
-
"add_inline_image": "添加内联图像",
|
|
199
|
-
"select_image": "选择图像"
|
|
200
|
-
},
|
|
201
|
-
"locale": {
|
|
202
|
-
"English": "英语",
|
|
203
|
-
"chinese_china": "中文(中国)",
|
|
204
|
-
"dutch": "荷兰语",
|
|
205
|
-
"german": "德语",
|
|
206
|
-
"hindi": "印地语",
|
|
207
|
-
"italian": "意大利语",
|
|
208
|
-
"japanese": "日语",
|
|
209
|
-
"label_chinese": "中文(中国)- {{value}}",
|
|
210
|
-
"label_dutch": "荷兰语 - {{value}}",
|
|
211
|
-
"label_english": "英语 - {{value}}",
|
|
212
|
-
"label_german": "德语 - {{value}}",
|
|
213
|
-
"label_hindi": "印地语 - {{value}}",
|
|
214
|
-
"label_italian": "意大利语 - {{value}}",
|
|
215
|
-
"label_japanese": "日语 - {{value}}",
|
|
216
|
-
"label_portuguese": "葡萄牙语 - {{value}}",
|
|
217
|
-
"label_portuguese_brazil": "葡萄牙语 - {{value}}",
|
|
218
|
-
"label_romanian": "罗马尼亚语 - {{value}}",
|
|
219
|
-
"label_russian": "俄语 - {{value}}",
|
|
220
|
-
"label_spanish": "西班牙语 - {{value}}",
|
|
221
|
-
"label_thai": "泰语 - {{value}}",
|
|
222
|
-
"label_turkish": "土耳其语 - {{value}}",
|
|
223
|
-
"portuguese": "葡萄牙语",
|
|
224
|
-
"portuguese_brazil": "葡萄牙语(巴西)",
|
|
225
|
-
"romanian": "罗马尼亚语",
|
|
226
|
-
"russian": "俄语",
|
|
227
|
-
"spanish": "西班牙语",
|
|
228
|
-
"thai": "泰语",
|
|
229
|
-
"turkish": "土耳其语",
|
|
230
|
-
"label_french": "法语 - {{value}}",
|
|
231
|
-
"french": "法语",
|
|
232
|
-
"vietnamese": "越南语",
|
|
233
|
-
"polish": "波兰语"
|
|
234
|
-
},
|
|
235
|
-
"timezone": {
|
|
236
|
-
"pacific_honolulu": "{{value}} 夏威夷",
|
|
237
|
-
"pacific_midway": "{{value}} 萨摩亚",
|
|
238
|
-
"pacific_tongatapu": "{{value}} 努库阿洛法",
|
|
239
|
-
"utc": "{{value}} 协调世界时",
|
|
240
|
-
"africa_algiers": "{{value}} 中非西部",
|
|
241
|
-
"africa_cairo": "{{value}} 埃及",
|
|
242
|
-
"africa_casablanca": "{{value}} 卡萨布兰卡",
|
|
243
|
-
"africa_harare": "{{value}} 哈拉雷、比勒陀利亚",
|
|
244
|
-
"africa_monrovia": "{{value}} 蒙罗维亚",
|
|
245
|
-
"africa_nairobi": "{{value}} 内罗毕",
|
|
246
|
-
"africa_windhoek": "{{value}} 纳米比亚",
|
|
247
|
-
"america_anchorage": "{{value}} 阿拉斯加",
|
|
248
|
-
"america_argentina_buenos_aires": "{{value}} 阿根廷",
|
|
249
|
-
"america_asuncion": "{{value}} 亚松森",
|
|
250
|
-
"america_bogota": "{{value}} 哥伦比亚",
|
|
251
|
-
"america_caracas": "{{value}} 加拉加斯",
|
|
252
|
-
"america_cayenne": "{{value}} 卡宴、福塔莱萨",
|
|
253
|
-
"america_chicago": "{{value}} 美国/加拿大中部",
|
|
254
|
-
"america_chihuahua": "{{value}} 奇瓦瓦、拉巴斯、马萨特兰",
|
|
255
|
-
"america_cuiaba": "{{value}} 库亚巴",
|
|
256
|
-
"america_denver": "{{value}} 美国/加拿大山地",
|
|
257
|
-
"america_guatemala": "{{value}} 中美洲",
|
|
258
|
-
"america_guyana": "{{value}} 乔治敦、拉巴斯、马瑙斯、圣胡安",
|
|
259
|
-
"america_halifax": "{{value}} 大西洋时间(加拿大)",
|
|
260
|
-
"america_indiana_indianapolis": "{{value}} 印第安纳(东)",
|
|
261
|
-
"america_los_angeles": "{{value}} 美国/加拿大太平洋",
|
|
262
|
-
"america_mexico_city": "{{value}} 瓜达拉哈拉、墨西哥城、蒙特雷",
|
|
263
|
-
"america_montevideo": "{{value}} 蒙得维的亚",
|
|
264
|
-
"america_new_york": "{{value}} 美国/加拿大东部",
|
|
265
|
-
"america_phoenix": "{{value}} 亚利桑那",
|
|
266
|
-
"america_regina": "{{value}} 萨斯喀彻温",
|
|
267
|
-
"america_santiago": "{{value}} 太平洋南美洲",
|
|
268
|
-
"america_sao_paulo": "{{value}} 巴西利亚",
|
|
269
|
-
"america_st_johns": "{{value}} 纽芬兰",
|
|
270
|
-
"america_tijuana": "{{value}} 下加利福尼亚",
|
|
271
|
-
"asia_amman": "{{value}} 约旦",
|
|
272
|
-
"asia_baghdad": "{{value}} 伊拉克",
|
|
273
|
-
"asia_baku": "{{value}} 巴库",
|
|
274
|
-
"asia_bangkok": "{{value}} 曼谷、河内、雅加达",
|
|
275
|
-
"asia_beirut": "{{value}} 贝鲁特",
|
|
276
|
-
"asia_chita": "{{value}} 赤塔",
|
|
277
|
-
"asia_colombo": "{{value}} 斯里贾亚瓦德纳普拉科特",
|
|
278
|
-
"asia_damascus": "{{value}} 大马士革",
|
|
279
|
-
"asia_dhaka": "{{value}} 达卡",
|
|
280
|
-
"asia_hong_kong": "{{value}} 北京、重庆、香港、乌鲁木齐",
|
|
281
|
-
"asia_irkutsk": "{{value}} 伊尔库茨克(RTZ 7)",
|
|
282
|
-
"asia_jerusalem": "{{value}} 耶路撒冷",
|
|
283
|
-
"asia_kabul": "{{value}} 喀布尔",
|
|
284
|
-
"asia_kamchatka": "{{value}} 阿纳迪尔、彼得罗巴甫洛夫斯克 - 堪察加(RTZ 11)",
|
|
285
|
-
"asia_kathmandu": "{{value}} 加德满都",
|
|
286
|
-
"asia_kolkata": "{{value}} 金奈、加尔各答、孟买、新德里",
|
|
287
|
-
"asia_krasnoyarsk": "{{value}} 克拉斯诺亚尔斯克(RTZ 6)",
|
|
288
|
-
"asia_kuwait": "{{value}} 科威特、利雅得",
|
|
289
|
-
"asia_magadan": "{{value}} 马加丹",
|
|
290
|
-
"asia_muscat": "{{value}} 阿布扎比、马斯喀特",
|
|
291
|
-
"asia_pyongyang": "{{value}} 平壤",
|
|
292
|
-
"asia_seoul": "{{value}} 韩国",
|
|
293
|
-
"asia_tbilisi": "{{value}} 第比利斯",
|
|
294
|
-
"asia_tehran": "{{value}} 德黑兰",
|
|
295
|
-
"asia_yangon": "{{value}} 仰光",
|
|
296
|
-
"asia_yekaterinburg": "{{value}} 叶卡捷琳堡(RTZ 4)",
|
|
297
|
-
"asia_yerevan": "{{value}} 埃里温",
|
|
298
|
-
"atlantic_azores": "{{value}} 亚速尔群岛",
|
|
299
|
-
"atlantic_cape_verde": "{{value}} 佛得角群岛",
|
|
300
|
-
"atlantic_south_georgia": "{{value}} 大西洋中部",
|
|
301
|
-
"australia_darwin": "{{value}} 达尔文",
|
|
302
|
-
"australia_eucla": "{{value}} 尤克拉",
|
|
303
|
-
"etc_gmt+12": "{{value}} 日期线",
|
|
304
|
-
"europe_athens": "{{value}} 雅典、贝鲁特、布加勒斯特、伊斯坦布尔",
|
|
305
|
-
"europe_belgrade": "{{value}} 贝尔格莱德、布拉迪斯拉发、布达佩斯、卢布尔雅那、布拉格",
|
|
306
|
-
"europe_berlin": "{{value}} 阿姆斯特丹、柏林、伯尔尼、罗马、斯德哥尔摩、维也纳",
|
|
307
|
-
"europe_brussels": "{{value}} 布鲁塞尔、哥本哈根、马德里、巴黎",
|
|
308
|
-
"europe_helsinki": "{{value}} 赫尔辛基、基辅、里加、索非亚、塔林、维尔纽斯",
|
|
309
|
-
"europe_istanbul": "{{value}} 伊斯坦布尔",
|
|
310
|
-
"europe_kaliningrad": "{{value}} 加里宁格勒(RTZ 1)",
|
|
311
|
-
"europe_london": "{{value}} 英国、爱尔兰、葡萄牙",
|
|
312
|
-
"europe_minsk": "{{value}} 明斯克",
|
|
313
|
-
"europe_moscow": "{{value}} 莫斯科、圣彼得堡、伏尔加格勒(RTZ 2)",
|
|
314
|
-
"europe_warsaw": "{{value}} 萨拉热窝、斯科普里、华沙、萨格勒布",
|
|
315
|
-
"indian_mauritius": "{{value}} 路易港",
|
|
316
|
-
"pacific_apia": "{{value}} 萨摩亚",
|
|
317
|
-
"africa_juba": "{{value}} 朱巴",
|
|
318
|
-
"africa_khartoum": "{{value}} 喀土穆",
|
|
319
|
-
"africa_sao_tome": "{{value}} 圣多美",
|
|
320
|
-
"africa_tripoli": "{{value}} 的黎波里",
|
|
321
|
-
"america_adak": "{{value}} 阿达克",
|
|
322
|
-
"america_araguaina": "{{value}} 阿拉瓜纳",
|
|
323
|
-
"america_bahia": "{{value}} 萨尔瓦多",
|
|
324
|
-
"america_cancun": "{{value}} 坎昆,切图马尔",
|
|
325
|
-
"america_fort_nelson": "{{value}} 纳尔逊堡",
|
|
326
|
-
"america_grand_turk": "{{value}} 特克斯和凯科斯群岛",
|
|
327
|
-
"america_havana": "{{value}} 哈瓦那",
|
|
328
|
-
"america_miquelon": "{{value}} 密克隆",
|
|
329
|
-
"america_port-au-prince": "{{value}} 太子港",
|
|
330
|
-
"america_punta_arenas": "{{value}} 蓬塔阿雷纳斯",
|
|
331
|
-
"america_whitehorse": "{{value}} 育空",
|
|
332
|
-
"asia_almaty": "{{value}} 阿斯塔纳",
|
|
333
|
-
"asia_barnaul": "{{value}} 巴尔瑙尔",
|
|
334
|
-
"asia_gaza": "{{value}} 加沙",
|
|
335
|
-
"asia_hovd": "{{value}} 科布多",
|
|
336
|
-
"asia_karachi": "{{value}} 伊斯兰堡,卡拉奇",
|
|
337
|
-
"asia_kuala_lumpur": "{{value}} 吉隆坡",
|
|
338
|
-
"asia_novosibirsk": "{{value}} 新西伯利亚(RTZ5)",
|
|
339
|
-
"asia_omsk": "{{value}} 鄂木斯克",
|
|
340
|
-
"asia_qyzylorda": "{{value}} 克孜洛尔达",
|
|
341
|
-
"asia_sakhalin": "{{value}} 萨哈林",
|
|
342
|
-
"asia_singapore": "{{value}} 新加坡",
|
|
343
|
-
"asia_srednekolymsk": "{{value}} 乔库尔达克(RTZ10)",
|
|
344
|
-
"asia_taipei": "{{value}} 中国台北",
|
|
345
|
-
"asia_tashkent": "{{value}} 塔什干",
|
|
346
|
-
"asia_tokyo": "{{value}} 日本",
|
|
347
|
-
"asia_tomsk": "{{value}} 托木斯克",
|
|
348
|
-
"asia_ulaanbaatar": "{{value}} 乌兰巴托",
|
|
349
|
-
"asia_vladivostok": "{{value}} 符拉迪沃斯托克,马加丹(RTZ9)",
|
|
350
|
-
"asia_yakutsk": "{{value}} 雅库茨克(RTZ8)",
|
|
351
|
-
"australia_adelaide": "{{value}} 阿德莱德",
|
|
352
|
-
"australia_brisbane": "{{value}} 布里斯班",
|
|
353
|
-
"australia_hobart": "{{value}} 霍巴特",
|
|
354
|
-
"australia_lord_howe": "{{value}} 豪勋爵岛",
|
|
355
|
-
"australia_perth": "{{value}} 珀斯",
|
|
356
|
-
"australia_sydney": "{{value}} 堪培拉,墨尔本,悉尼",
|
|
357
|
-
"europe_astrakhan": "{{value}} 阿斯特拉罕",
|
|
358
|
-
"europe_bucharest": "{{value}} 布加勒斯特",
|
|
359
|
-
"europe_chisinau": "{{value}} 基希讷乌",
|
|
360
|
-
"europe_samara": "{{value}} 伊热夫斯克,萨马拉(RTZ3)",
|
|
361
|
-
"europe_saratov": "{{value}} 萨拉托夫",
|
|
362
|
-
"europe_volgograd": "{{value}} 伏尔加格勒",
|
|
363
|
-
"pacific_auckland": "{{value}} 新西兰",
|
|
364
|
-
"pacific_bougainville": "{{value}} 布干维尔标准时间",
|
|
365
|
-
"pacific_chatham": "{{value}} 查塔姆",
|
|
366
|
-
"pacific_easter": "{{value}} 复活节岛",
|
|
367
|
-
"pacific_fiji": "{{value}} 斐济",
|
|
368
|
-
"pacific_guadalcanal": "{{value}} 所罗门岛/新喀里多尼亚",
|
|
369
|
-
"pacific_guam": "{{value}} 关岛,莫尔兹比港",
|
|
370
|
-
"pacific_kiritimati": "{{value}} 基里蒂马蒂岛",
|
|
371
|
-
"pacific_marquesas": "{{value}} 马克萨斯群岛",
|
|
372
|
-
"pacific_norfolk": "{{value}} 诺福克"
|
|
373
|
-
},
|
|
374
|
-
"board": {
|
|
375
|
-
"close_tab": "关闭标签页",
|
|
376
|
-
"close_tabs": "关闭所有标签页",
|
|
377
|
-
"enlarge": "放大看板",
|
|
378
|
-
"hide": "隐藏看板",
|
|
379
|
-
"reduce": "缩小看板",
|
|
380
|
-
"show_tabs": "显示其他标签页",
|
|
381
|
-
"open_app": "在应用中打开",
|
|
382
|
-
"from_app": "来自{{app}}"
|
|
383
|
-
},
|
|
384
|
-
"feedback": {
|
|
385
|
-
"other": "其他",
|
|
386
|
-
"behaviors": "行为",
|
|
387
|
-
"hint": "请记住:在写下反馈前使用模块和宏区域选择器定义主题。感谢您的帮助。",
|
|
388
|
-
"missing_features": "缺失功能",
|
|
389
|
-
"report_something": "是否上报?",
|
|
390
|
-
"select_a_module": "选择模块",
|
|
391
|
-
"select_a_topic": "选择主题",
|
|
392
|
-
"send": "发送",
|
|
393
|
-
"success": "感谢您的反馈",
|
|
394
|
-
"user_interface": "用户界面",
|
|
395
|
-
"write_here": "在此写下您的反馈",
|
|
396
|
-
"error": "提交反馈时出错",
|
|
397
|
-
"explanation": "请提供有关 Zextras 服务器全新体验的反馈。您的观点对于产品改善有着重要意义。告诉我们您的想法。"
|
|
398
|
-
},
|
|
399
|
-
"messages": {
|
|
400
|
-
"permanent_delete_title": "确定要永久删除该元素吗?",
|
|
401
|
-
"permanent_delete_body": "永久性删除此角色将导致您无法再次将其恢复。是否继续?"
|
|
402
|
-
},
|
|
403
|
-
"share": {
|
|
404
|
-
"is_contained_in": "包含于"
|
|
405
|
-
},
|
|
406
|
-
"passwords_recovery_settings": {
|
|
407
|
-
"title": "密码恢复账户设置"
|
|
408
|
-
},
|
|
409
|
-
"primary_account": {
|
|
410
|
-
"title": "主要账户设置"
|
|
411
|
-
}
|
|
412
|
-
}
|
package/dist/index.html
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
SPDX-FileCopyrightText: 2021 Zextras <https://www.zextras.com>
|
|
3
|
-
|
|
4
|
-
SPDX-License-Identifier: AGPL-3.0-only
|
|
5
|
-
-->
|
|
6
|
-
|
|
7
|
-
<!DOCTYPE html>
|
|
8
|
-
<html lang="">
|
|
9
|
-
|
|
10
|
-
<head>
|
|
11
|
-
<link rel="icon" id="favicon">
|
|
12
|
-
<meta charset="utf-8">
|
|
13
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
14
|
-
<meta name="viewport" content="minimum-scale=1.0, initial-scale=1.0, width=device-width, shrink-to-fit=no">
|
|
15
|
-
<base href="/carbonio/" />
|
|
16
|
-
<meta http-equiv="Cache-Control" content="no-cache" />
|
|
17
|
-
<meta http-equiv="Pragma" content="no-cache" />
|
|
18
|
-
<meta http-equiv="Expires" content="0" />
|
|
19
|
-
<script defer src="/static/iris/carbonio-shell-ui/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8/zapp-shell.bundle.js"></script><link href="/static/iris/carbonio-shell-ui/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8/style.a7eb9e6c.css" rel="stylesheet"></head>
|
|
20
|
-
|
|
21
|
-
<body>
|
|
22
|
-
<div id="app"></div>
|
|
23
|
-
</body>
|
|
24
|
-
|
|
25
|
-
</html>
|
package/dist/notification.mp3
DELETED
|
Binary file
|
package/dist/package/PKGBUILD
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
# This package contains the assets for carbonio ui components (aka zapp)
|
|
2
|
-
|
|
3
|
-
# the package uses commits paths to reduce caching issues as much as possible
|
|
4
|
-
# but it doesn't support multiple versions installed at the same time
|
|
5
|
-
# this could lead to a loading issue if a user is loading the page exactly during the
|
|
6
|
-
# upgrade, but so far there is nothing we can do about it (we would need to coordinate multiple nginx).
|
|
7
|
-
|
|
8
|
-
pkgname="carbonio-shell-ui"
|
|
9
|
-
pkgver="6.0.0"
|
|
10
|
-
pkgrel="1"
|
|
11
|
-
pkgdesc="The Zextras Carbonio web client"
|
|
12
|
-
maintainer="Zextras (packages@zextras.com)"
|
|
13
|
-
arch=("x86_64")
|
|
14
|
-
license=("AGPL-3.0-only")
|
|
15
|
-
copyright=("2022, Zextras <https://www.zextras.com>")
|
|
16
|
-
section="admin"
|
|
17
|
-
priority="optional"
|
|
18
|
-
url="https://github.com/zextras"
|
|
19
|
-
depends=(
|
|
20
|
-
"carbonio-nginx"
|
|
21
|
-
"jq"
|
|
22
|
-
)
|
|
23
|
-
|
|
24
|
-
package() {
|
|
25
|
-
cd "${srcdir}"
|
|
26
|
-
mkdir -p "${pkgdir}/opt/zextras/web/iris/${pkgname}/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8"
|
|
27
|
-
cp -a ../../dist/* "${pkgdir}/opt/zextras/web/iris/${pkgname}/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8"
|
|
28
|
-
chown root:root -R "${pkgdir}/opt/zextras/web/iris/${pkgname}/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8"
|
|
29
|
-
chmod 644 -R "${pkgdir}/opt/zextras/web/iris/${pkgname}/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8"
|
|
30
|
-
find "${pkgdir}/opt/zextras/web/iris/${pkgname}/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8" -type d -exec chmod a+x "{}" \;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
postinst() {
|
|
34
|
-
# copy the index.html to the current directory, no redirect is needed
|
|
35
|
-
mkdir -p "/opt/zextras/web/iris/carbonio-shell-ui/current"
|
|
36
|
-
|
|
37
|
-
# not every package has a index.html
|
|
38
|
-
cd "/opt/zextras/web/iris/carbonio-shell-ui/bbb2a6e88fd7f7507ae3a6dfad2c8be9c16651d8"
|
|
39
|
-
find . -name "*.html" -exec cp --parents "{}" /opt/zextras/web/iris/carbonio-shell-ui/current/ \;
|
|
40
|
-
|
|
41
|
-
# re-generate the component list, for every component
|
|
42
|
-
# depth should be 3 since the path should be iris/NAME/COMMIT/component.json
|
|
43
|
-
find /opt/zextras/web/iris/ -maxdepth 3 -mindepth 3 -type f -name component.json -print |\
|
|
44
|
-
xargs jq -s '{"components":.}' > /opt/zextras/web/iris/components.json
|
|
45
|
-
}
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.de',
|
|
2
|
-
'<h1>Grundlagen der Tastaturnavigation</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>Fokus auf Menüleiste</dt>\n' +
|
|
6
|
-
' <dd>Windows oder Linux: ALT+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>Fokus auf Symbolleiste</dt>\n' +
|
|
9
|
-
' <dd>Windows oder Linux: ALT+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>Fokus auf Fußzeile</dt>\n' +
|
|
12
|
-
' <dd>Windows oder Linux: ALT+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>Fokus auf kontextbezogene Symbolleiste</dt>\n' +
|
|
15
|
-
' <dd>Windows, Linux oder macOS: STRG+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
'<p>Die Navigation beginnt beim ersten Benutzeroberflächenelement, welches hervorgehoben ist. Falls sich das erste Element im Pfad der Fußzeile befindet,\n' +
|
|
19
|
-
' ist es unterstrichen.</p>\n' +
|
|
20
|
-
'\n' +
|
|
21
|
-
'<h1>Zwischen Abschnitten der Benutzeroberfläche navigieren</h1>\n' +
|
|
22
|
-
'\n' +
|
|
23
|
-
'<p>Um von einem Abschnitt der Benutzeroberfläche zum nächsten zu wechseln, drücken Sie <strong>TAB</strong>.</p>\n' +
|
|
24
|
-
'\n' +
|
|
25
|
-
'<p>Um von einem Abschnitt der Benutzeroberfläche zum vorherigen zu wechseln, drücken Sie <strong>UMSCHALT+TAB</strong>.</p>\n' +
|
|
26
|
-
'\n' +
|
|
27
|
-
'<p>Die Abschnitte der Benutzeroberfläche haben folgende <strong>TAB</strong>-Reihenfolge:</p>\n' +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>Menüleiste</li>\n' +
|
|
31
|
-
' <li>Einzelne Gruppen der Symbolleiste</li>\n' +
|
|
32
|
-
' <li>Randleiste</li>\n' +
|
|
33
|
-
' <li>Elementpfad in der Fußzeile</li>\n' +
|
|
34
|
-
' <li>Umschaltfläche „Wörter zählen“ in der Fußzeile</li>\n' +
|
|
35
|
-
' <li>Branding-Link in der Fußzeile</li>\n' +
|
|
36
|
-
' <li>Editor-Ziehpunkt zur Größenänderung in der Fußzeile</li>\n' +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
'<p>Falls ein Abschnitt der Benutzeroberflächen nicht vorhanden ist, wird er übersprungen.</p>\n' +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>Wenn in der Fußzeile die Tastaturnavigation fokussiert ist und keine Randleiste angezeigt wird, wechselt der Fokus durch Drücken von <strong>UMSCHALT+TAB</strong>\n' +
|
|
42
|
-
' zur ersten Gruppe der Symbolleiste, nicht zur letzten.</p>\n' +
|
|
43
|
-
'\n' +
|
|
44
|
-
'<h1>Innerhalb von Abschnitten der Benutzeroberfläche navigieren</h1>\n' +
|
|
45
|
-
'\n' +
|
|
46
|
-
'<p>Um von einem Element der Benutzeroberfläche zum nächsten zu wechseln, drücken Sie die entsprechende <strong>Pfeiltaste</strong>.</p>\n' +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p>Die Pfeiltasten <strong>Links</strong> und <strong>Rechts</strong></p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>wechseln zwischen Menüs in der Menüleiste.</li>\n' +
|
|
52
|
-
' <li>öffnen das Untermenü eines Menüs.</li>\n' +
|
|
53
|
-
' <li>wechseln zwischen Schaltflächen in einer Gruppe der Symbolleiste.</li>\n' +
|
|
54
|
-
' <li>wechseln zwischen Elementen im Elementpfad der Fußzeile.</li>\n' +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p>Die Pfeiltasten <strong>Abwärts</strong> und <strong>Aufwärts</strong></p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>wechseln zwischen Menüelementen in einem Menü.</li>\n' +
|
|
61
|
-
' <li>wechseln zwischen Elementen in einem Popupmenü der Symbolleiste.</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
'<p>Die <strong>Pfeiltasten</strong> rotieren innerhalb des fokussierten Abschnitts der Benutzeroberfläche.</p>\n' +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>Um ein geöffnetes Menü, ein geöffnetes Untermenü oder ein geöffnetes Popupmenü zu schließen, drücken Sie die <strong>ESC</strong>-Taste.</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
'<p>Wenn sich der aktuelle Fokus ganz oben in einem bestimmten Abschnitt der Benutzeroberfläche befindet, wird durch Drücken der <strong>ESC</strong>-Taste auch\n' +
|
|
69
|
-
' die Tastaturnavigation beendet.</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>Ein Menüelement oder eine Symbolleistenschaltfläche ausführen</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>Wenn das gewünschte Menüelement oder die gewünschte Symbolleistenschaltfläche hervorgehoben ist, drücken Sie <strong>Zurück</strong>, <strong>Eingabe</strong>\n' +
|
|
74
|
-
' oder die <strong>Leertaste</strong>, um das Element auszuführen.</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>In Dialogfeldern ohne Registerkarten navigieren</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
'<p>In Dialogfeldern ohne Registerkarten ist beim Öffnen eines Dialogfelds die erste interaktive Komponente fokussiert.</p>\n' +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p>Navigieren Sie zwischen den interaktiven Komponenten eines Dialogfelds, indem Sie <strong>TAB</strong> oder <strong>UMSCHALT+TAB</strong> drücken.</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>In Dialogfeldern mit Registerkarten navigieren</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
'<p>In Dialogfeldern mit Registerkarten ist beim Öffnen eines Dialogfelds die erste Schaltfläche eines Registerkartenmenüs fokussiert.</p>\n' +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>Navigieren Sie zwischen den interaktiven Komponenten auf dieser Registerkarte des Dialogfelds, indem Sie <strong>TAB</strong> oder\n' +
|
|
87
|
-
' <strong>UMSCHALT+TAB</strong> drücken.</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
'<p>Wechseln Sie zu einer anderen Registerkarte des Dialogfelds, indem Sie den Fokus auf das Registerkartenmenü legen und dann die entsprechende <strong>Pfeiltaste</strong>\n' +
|
|
90
|
-
' drücken, um durch die verfügbaren Registerkarten zu rotieren.</p>\n');
|