@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/tr.json
DELETED
|
@@ -1,438 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"message": {
|
|
3
|
-
"snackbar": {
|
|
4
|
-
"settings_saved": "Değişiklikler başarıyla kaydedildi",
|
|
5
|
-
"identities_quota_exceeded": "Kimlik kotanızı aştığınız için kimlik oluşturulamadı"
|
|
6
|
-
},
|
|
7
|
-
"reload": "\tYeni dilde görüntülemek için uygulamayı şimdi yeniden başlatmak ister misiniz?\n(Yoksa, daha sonra giriş yaptığınızda yeni dilde görüntülenecek.)"
|
|
8
|
-
},
|
|
9
|
-
"new": "Yeni",
|
|
10
|
-
"new_tab": "Yeni Sekme",
|
|
11
|
-
"search": {
|
|
12
|
-
"active_input_label": "Anahtar kelimelerinizi virgül veya BOŞLUK ile ayırın",
|
|
13
|
-
"app": "Ara",
|
|
14
|
-
"start": "Aramayı başlat",
|
|
15
|
-
"clear": "Arama girişini sil",
|
|
16
|
-
"idle_input_label": "{{module}} içinde ara",
|
|
17
|
-
"module": "Modül",
|
|
18
|
-
"already_clear": "Arama girişi zaten silinmiş",
|
|
19
|
-
"type_or_choose_suggestion": "Aramayı başlatmak için bazı anahtar kelimeler yazın veya seçin",
|
|
20
|
-
"type_to_start_search": "Aramayı başlatmak için bazı anahtar kelimeler yazın",
|
|
21
|
-
"unable_to_parse_query": "Arama tamamlanamadı, silip yeniden deneyin"
|
|
22
|
-
},
|
|
23
|
-
"settings": {
|
|
24
|
-
"app": "Ayarlar",
|
|
25
|
-
"appearance": {
|
|
26
|
-
"labels": {
|
|
27
|
-
"choose_size_pangram": "Pijamalı hasta, yağız şoföre çabucak güvendi.",
|
|
28
|
-
"increase_disabled": "Maksimum boyut",
|
|
29
|
-
"increase": "Boyutu artır",
|
|
30
|
-
"decrease_disabled": "Minimum boyut",
|
|
31
|
-
"decrease": "Boyutu azalt",
|
|
32
|
-
"choose_size_description": "Carbonio genelinde kullanılacak boyut ve stilleri seçin",
|
|
33
|
-
"choose_size_auto": "Metin boyutunu cihaza göre otomatik ayarla",
|
|
34
|
-
"a": "A"
|
|
35
|
-
},
|
|
36
|
-
"option_xs": "Ekstra küçük",
|
|
37
|
-
"option_xl": "Ekstra büyük",
|
|
38
|
-
"option_s": "Küçük",
|
|
39
|
-
"option_m": "Orta",
|
|
40
|
-
"option_l": "Büyük"
|
|
41
|
-
},
|
|
42
|
-
"button": {
|
|
43
|
-
"primary": "Kaydet",
|
|
44
|
-
"confirm": "Onayla"
|
|
45
|
-
},
|
|
46
|
-
"general": {
|
|
47
|
-
"account": "Hesap",
|
|
48
|
-
"account_logout": "Oturumu kapat",
|
|
49
|
-
"general": "Genel Ayarlar",
|
|
50
|
-
"theme_auto": "Auto",
|
|
51
|
-
"theme_disabled": "Kullanıma kapalı",
|
|
52
|
-
"theme_enabled": "Kullanıma açık",
|
|
53
|
-
"theme_options": "Tema Seçenekleri",
|
|
54
|
-
"dark_mode": "Koyu Mod",
|
|
55
|
-
"appearance": "Görünüm"
|
|
56
|
-
},
|
|
57
|
-
"general_tab": "Genel",
|
|
58
|
-
"out_of_office": {
|
|
59
|
-
"external_senders": {
|
|
60
|
-
"do_not_send_to_external": "Dışarıdan kullanıcılara otomatik yanıt gönderme",
|
|
61
|
-
"send_custom_in_organisation": "Benim organizasyonumda olmayanlara özel mesaj gönder",
|
|
62
|
-
"send_custom_not_in_organisation": "Benim organizasyonumda ve adres defterimde olmayanlara özel mesaj gönder",
|
|
63
|
-
"send_standard_auto_reply": "Standart otomatik yanıt mesajı gönder"
|
|
64
|
-
},
|
|
65
|
-
"do_not_send_auto_replies": "Otomatik yanıtları gönderme",
|
|
66
|
-
"headings": {
|
|
67
|
-
"create_appointment": "Takvim Randevusu",
|
|
68
|
-
"settings_label": "Ofis Dışında Ayarları",
|
|
69
|
-
"time_period": "Zaman Aralığı"
|
|
70
|
-
},
|
|
71
|
-
"labels": {
|
|
72
|
-
"all_day": "Tüm Gün:",
|
|
73
|
-
"auto_reply_message": "Otomatik Yanıt Mesajı:",
|
|
74
|
-
"auto_reply_message_external": "Dışarıdan gönderenler için Otomatik Yanıt Mesajı:",
|
|
75
|
-
"create_appointment": "Randevu Oluştur:",
|
|
76
|
-
"end_date": "Bitiş Tarihi",
|
|
77
|
-
"end_time": "Bitiş Zamanı:",
|
|
78
|
-
"external_senders": "Dışarıdan Gönderenler",
|
|
79
|
-
"out_of_office_status": "Ofis Dışında Durumu:",
|
|
80
|
-
"send_auto_reply_period": "Bu zaman aralığında otomatik yanıtlar gönder:",
|
|
81
|
-
"start_date": "Başlangıç Tarihi",
|
|
82
|
-
"start_time": "Başlama Zamanı:"
|
|
83
|
-
},
|
|
84
|
-
"send_auto_replies": "Otomatik yanıtlar gönder",
|
|
85
|
-
"status": {
|
|
86
|
-
"busy": "Meşgul"
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"timezone_and_language": "Saat Dilimi ve Dil",
|
|
90
|
-
"search_settings": {
|
|
91
|
-
"labels": {
|
|
92
|
-
"include_search_in_shared_folder": "Aramalara Paylaşılan Klasörü ekle",
|
|
93
|
-
"include_search_in_spam_folder": "Aramalara Spam Klasörü ekle",
|
|
94
|
-
"include_search_in_trash_folder": "Aramalara Çöp Kutusu Klasörü ekle"
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
"accounts": "Hesaplar",
|
|
98
|
-
"choose": "Seç",
|
|
99
|
-
"account": {
|
|
100
|
-
"delegates": {
|
|
101
|
-
"right_sendonbehalfof": "Kişi adına gönder",
|
|
102
|
-
"multiple_rights": "{{rights.0}} ve {{rights.1}}",
|
|
103
|
-
"right_sendas": "Adresi Kullanarak gönder"
|
|
104
|
-
},
|
|
105
|
-
"new_identity": "Yeni Kişilik {{number}}"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
"snackbar": {
|
|
109
|
-
"error": "Bir hata oluştu, lütfen tekrar deneyin"
|
|
110
|
-
},
|
|
111
|
-
"user_quota": {
|
|
112
|
-
"limited": "Kullanılabilir kotanızdan % {{quota}} kullanıldı",
|
|
113
|
-
"unlimited": "Sınırsız kota kullanıyorsunuz",
|
|
114
|
-
"space_full": "Tüm kullanılabilir kotanız doldu",
|
|
115
|
-
"title": "Kullanıcı kotası"
|
|
116
|
-
},
|
|
117
|
-
"module": {
|
|
118
|
-
"app": {
|
|
119
|
-
"version": "Uygulama sürümleri"
|
|
120
|
-
}
|
|
121
|
-
},
|
|
122
|
-
"board": {
|
|
123
|
-
"close_tab": "Sekmeyi Kapat",
|
|
124
|
-
"close_tabs": "Tüm sekmeleri kapat",
|
|
125
|
-
"enlarge": "Panoyu büyüt",
|
|
126
|
-
"hide": "Panoyu gizle",
|
|
127
|
-
"reduce": "Panoyu küçült",
|
|
128
|
-
"show_tabs": "Diğer sekmeleri göster",
|
|
129
|
-
"open_app": "Uygulamada aç",
|
|
130
|
-
"from_app": "Nereden: {{app}}",
|
|
131
|
-
"reset_size": {
|
|
132
|
-
"disabled": "Pano zaten varsayılan konumda",
|
|
133
|
-
"enabled": "Varsayılan konuma ve boyuta dön"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"label": {
|
|
137
|
-
"cancel": "İptal",
|
|
138
|
-
"clear_search_query": "ARAMAYI TEMİZLE",
|
|
139
|
-
"edit_to_start_search": "Yeni bir arama yapmak için düzenleyin",
|
|
140
|
-
"out_of_office": "Ofis Dışında",
|
|
141
|
-
"language": "Dil",
|
|
142
|
-
"no": "Hayır",
|
|
143
|
-
"reload": "Yeniden yükle",
|
|
144
|
-
"discard_changes": "DEĞİŞİKLİKLERİ UYGULAMA",
|
|
145
|
-
"time_zone": "Saat Dilimi",
|
|
146
|
-
"no_results": "Sonuç bulunamadı",
|
|
147
|
-
"account_menu": "Hesap menüsü",
|
|
148
|
-
"account_name": "Hesap Adı",
|
|
149
|
-
"account_type": "Hesap Türü",
|
|
150
|
-
"account_username": "Hesap Kullanıcı Adı",
|
|
151
|
-
"accounts": "Hesaplar",
|
|
152
|
-
"accounts_list": "Hesap Listesi",
|
|
153
|
-
"add_external_account": "Dışarıdan hesap ekle",
|
|
154
|
-
"add_delegate": "Alt yetkili ekle",
|
|
155
|
-
"add_new_email": "Yeni e-posta adresi ekle",
|
|
156
|
-
"add_persona": "Kişilik ekle",
|
|
157
|
-
"address": "Adres",
|
|
158
|
-
"advanced_settings": "Gelişmiş Ayarlar",
|
|
159
|
-
"change_pop": "POP port değiştir",
|
|
160
|
-
"choose_account": "Hesap seç",
|
|
161
|
-
"choose_folder": "Klasör seç",
|
|
162
|
-
"delegates": "Temsilciler",
|
|
163
|
-
"delete": "Sil",
|
|
164
|
-
"delete_after_download": "İndirildikten sonra mesajları sunucudan sil",
|
|
165
|
-
"delete_permanently": "Kalıcı olarak sil",
|
|
166
|
-
"documentation": "Yardımcı belgeler",
|
|
167
|
-
"dont_save": "Gönderilen mesajların kopyasını kaydetme",
|
|
168
|
-
"download_messages": "Mesajları indirme yeri:",
|
|
169
|
-
"edit_permissions": "İzinleri düzenle",
|
|
170
|
-
"email_address": "E-posta adresi",
|
|
171
|
-
"external_account_settings": "Dış Hesap Ayarları",
|
|
172
|
-
"feedback": "Geri bildirim",
|
|
173
|
-
"filter_folders": "Klasörleri filtrele",
|
|
174
|
-
"folder": "Klasör: Yeni Dış Hesap 3",
|
|
175
|
-
"folders": "Klasörler",
|
|
176
|
-
"from_name": "Gönderen: \" Ad\"",
|
|
177
|
-
"go_back": "Geriye git",
|
|
178
|
-
"imap": "IMAP",
|
|
179
|
-
"inbox": "Gelen Kutusu",
|
|
180
|
-
"leave_anyway": "Evet çıkmak istiyorum",
|
|
181
|
-
"logout": "Oturumu kapat",
|
|
182
|
-
"new_folder": "Yeni Klasör",
|
|
183
|
-
"password": "Parola",
|
|
184
|
-
"passwords_recovery_settings": "Parola Kurtarma Hesap Ayarları",
|
|
185
|
-
"persona": "Kişilik",
|
|
186
|
-
"persona_name": "Kişilik Adı",
|
|
187
|
-
"persona_settings": "Kişilik Ayarları",
|
|
188
|
-
"pop3": "POP3",
|
|
189
|
-
"pop_port": "POP port",
|
|
190
|
-
"primary": "Birincil",
|
|
191
|
-
"recipents": "Alıcılar",
|
|
192
|
-
"recovery_email": "Kurtarma E-postası",
|
|
193
|
-
"remove": "kaldır",
|
|
194
|
-
"reply_to_field_example": "ör. Dilara Can Ute",
|
|
195
|
-
"save": "Kaydet",
|
|
196
|
-
"save_and_leave": "Kaydet ve çık",
|
|
197
|
-
"save_delegate_folder": "Gönderilen mesajların bir kopyasını yardımcımın Gönderilenler klasörüne kaydet",
|
|
198
|
-
"save_to_my_sent_folder": "Gönderilen mesajların bir kopyasını Gönderilenler klasörüme kaydet",
|
|
199
|
-
"secondary": "İkincil",
|
|
200
|
-
"set_reply_to_field": "E-posta mesajı için \"yanıtlama adresi\" alanını belirle:",
|
|
201
|
-
"settings_sent_messages": "Gönderilen Mesajlar için Ayarlar",
|
|
202
|
-
"test_settings": "Ayarları test et",
|
|
203
|
-
"unsaved_changes": "Kaydedilmemiş değişiklikler var",
|
|
204
|
-
"unsaved_changes_line1": "Kaydetmeden bu sayfadan çıkmak istediğinize emin misiniz?",
|
|
205
|
-
"unsaved_changes_line2": "Değişiklikleriniz kaydedilmeden çıkılacak",
|
|
206
|
-
"update_view": "Görünümü güncelle",
|
|
207
|
-
"use_persona": "Bu kişiliği kullan",
|
|
208
|
-
"use_personas_line2": "Örneğin, işinizle ilgili farklı rollere ait e-posta gönderiyorsanız, bunun için kişilik profili hazırlayabilirsiniz.",
|
|
209
|
-
"use_ssl": "Bu sunucuya erişirken sifreli bağlantı (SSL) kullan",
|
|
210
|
-
"when_composing": "Klasör(ler)de mesajları hazırlarken, yanıtlarken veya iletirken:",
|
|
211
|
-
"when_replying": "Aşağıdaki alıcılara gönderilen mesajları yanıtlarken veya iletirken:",
|
|
212
|
-
"add_recovery_email": "Kurtarma e-posta adresi ekle",
|
|
213
|
-
"email_server": "E-posta sunucu adı (ör. \"posta.alanadi.com\")",
|
|
214
|
-
"permanent_delete_title": "Bu Kişiliği tamamen silmek istediğinizden emin misiniz?",
|
|
215
|
-
"save_both_folders": "Gönderilen mesajların bir kopyasını Gönderilenler klasörüme ve yardımcımın klasörüne kaydet",
|
|
216
|
-
"use_personas_line1": "E-posta mesajları gönderirken bir çok ayarı kolayca değiştirmek için kişilik özelliğini kullanabilirsiniz.",
|
|
217
|
-
"button": "Buton",
|
|
218
|
-
"click_to_copy": "Kopyalamak için tıklayın",
|
|
219
|
-
"folder_external_account": "Klasör: Yeni Dış Hesap",
|
|
220
|
-
"add_inline_image": "Resim ekle",
|
|
221
|
-
"select_image": "Resim seçin",
|
|
222
|
-
"cannot_save_changes": "Bazı değişiklikler kaydedilemedi",
|
|
223
|
-
"close": "Kapat"
|
|
224
|
-
},
|
|
225
|
-
"locale": {
|
|
226
|
-
"label_italian": "Italian - {{value}}",
|
|
227
|
-
"label_turkish": "Türkçe - {{value}}",
|
|
228
|
-
"chinese_china": "Chinese (China)",
|
|
229
|
-
"dutch": "Dutch",
|
|
230
|
-
"german": "German",
|
|
231
|
-
"hindi": "Hindi",
|
|
232
|
-
"italian": "Italian",
|
|
233
|
-
"japanese": "Japanese",
|
|
234
|
-
"label_chinese": "Chinese (China) - {{value}}",
|
|
235
|
-
"label_dutch": "Dutch - {{value}}",
|
|
236
|
-
"label_english": "English - {{value}}",
|
|
237
|
-
"label_german": "German - {{value}}",
|
|
238
|
-
"English": "English",
|
|
239
|
-
"label_hindi": "Hindi - {{value}}",
|
|
240
|
-
"label_japanese": "Japanese - {{value}}",
|
|
241
|
-
"label_portuguese": "Portuguese - {{value}}",
|
|
242
|
-
"label_portuguese_brazil": "Portuguese - {{value}}",
|
|
243
|
-
"label_romanian": "Romanian - {{value}}",
|
|
244
|
-
"label_russian": "Russian - {{value}}",
|
|
245
|
-
"label_spanish": "Spanish - {{value}}",
|
|
246
|
-
"label_thai": "Thai - {{value}}",
|
|
247
|
-
"portuguese": "Portuguese",
|
|
248
|
-
"portuguese_brazil": "Portuguese (Brazil)",
|
|
249
|
-
"romanian": "Romanian",
|
|
250
|
-
"russian": "Russian",
|
|
251
|
-
"spanish": "Spanish",
|
|
252
|
-
"thai": "Thai",
|
|
253
|
-
"turkish": "Türkçe",
|
|
254
|
-
"french": "Fransızca",
|
|
255
|
-
"label_french": "Fransızca - {{value}}",
|
|
256
|
-
"vietnamese": "Vietnamese",
|
|
257
|
-
"polish": "Polish",
|
|
258
|
-
"label_polish": "Polish - {{value}}",
|
|
259
|
-
"label_vietnamese": "Vietnamese - {{value}}"
|
|
260
|
-
},
|
|
261
|
-
"timezone": {
|
|
262
|
-
"africa_cairo": "{{value}} Egypt",
|
|
263
|
-
"africa_casablanca": "{{value}} Casablanca",
|
|
264
|
-
"africa_harare": "{{value}} Harare, Pretoria",
|
|
265
|
-
"africa_juba": "{{value}} Juba",
|
|
266
|
-
"africa_monrovia": "{{value}} Monrovia",
|
|
267
|
-
"africa_sao_tome": "{{value}} Sao Tome",
|
|
268
|
-
"africa_tripoli": "{{value}} Tripoli",
|
|
269
|
-
"america_adak": "{{value}} Adak",
|
|
270
|
-
"america_araguaina": "{{value}} Araguaina",
|
|
271
|
-
"america_argentina_buenos_aires": "{{value}} Argentina",
|
|
272
|
-
"america_asuncion": "{{value}} Asuncion",
|
|
273
|
-
"america_bahia": "{{value}} Salvador",
|
|
274
|
-
"america_bogota": "{{value}} Colombia",
|
|
275
|
-
"america_cancun": "{{value}} Cancun, Chetumal",
|
|
276
|
-
"america_caracas": "{{value}} Caracas",
|
|
277
|
-
"america_chicago": "{{value}} US/Canada Central",
|
|
278
|
-
"america_chihuahua": "{{value}} Chihuahua, La Paz, Mazatlan",
|
|
279
|
-
"america_cuiaba": "{{value}} Cuiaba",
|
|
280
|
-
"america_denver": "{{value}} US/Canada Mountain",
|
|
281
|
-
"america_fort_nelson": "{{value}} Fort Nelson",
|
|
282
|
-
"america_guatemala": "{{value}} Central America",
|
|
283
|
-
"america_guyana": "{{value}} Georgetown, La Paz, Manaus, San Juan",
|
|
284
|
-
"america_halifax": "{{value}} Atlantic Time (Canada)",
|
|
285
|
-
"america_havana": "{{value}} Havana",
|
|
286
|
-
"america_indiana_indianapolis": "{{value}} Indiana (East)",
|
|
287
|
-
"america_mexico_city": "{{value}} Guadalajara, Mexico City, Monterrey",
|
|
288
|
-
"america_miquelon": "{{value}} Miquelon",
|
|
289
|
-
"america_montevideo": "{{value}} Montevideo",
|
|
290
|
-
"america_phoenix": "{{value}} Arizona",
|
|
291
|
-
"america_port-au-prince": "{{value}} Port-au-Prince",
|
|
292
|
-
"america_punta_arenas": "{{value}} Punta_Arenas",
|
|
293
|
-
"america_regina": "{{value}} Saskatchewan",
|
|
294
|
-
"america_santiago": "{{value}} Pacific South America",
|
|
295
|
-
"america_sao_paulo": "{{value}} Brasilia",
|
|
296
|
-
"america_st_johns": "{{value}} Newfoundland",
|
|
297
|
-
"america_tijuana": "{{value}} Baja California",
|
|
298
|
-
"asia_almaty": "{{value}} Astana",
|
|
299
|
-
"asia_amman": "{{value}} Jordan",
|
|
300
|
-
"asia_baghdad": "{{value}} Iraq",
|
|
301
|
-
"asia_baku": "{{value}} Bakü",
|
|
302
|
-
"asia_barnaul": "{{value}} Barnaul",
|
|
303
|
-
"asia_beirut": "{{value}} Beirut",
|
|
304
|
-
"asia_chita": "{{value}} Chita",
|
|
305
|
-
"asia_dhaka": "{{value}} Dhaka",
|
|
306
|
-
"asia_gaza": "{{value}} Gaza",
|
|
307
|
-
"asia_hong_kong": "{{value}} Beijing, Chongqing, Hong Kong, Urumqi",
|
|
308
|
-
"asia_hovd": "{{value}} Hovd",
|
|
309
|
-
"asia_irkutsk": "{{value}} Irkutsk (RTZ 7)",
|
|
310
|
-
"asia_jerusalem": "{{value}} Jerusalem",
|
|
311
|
-
"asia_kabul": "{{value}} Kabul",
|
|
312
|
-
"asia_karachi": "{{value}} Islamabad, Karachi",
|
|
313
|
-
"asia_kathmandu": "{{value}} Kathmandu",
|
|
314
|
-
"asia_kolkata": "{{value}} Chennai, Kolkata, Mumbai, New Delhi",
|
|
315
|
-
"asia_krasnoyarsk": "{{value}} Krasnoyarsk (RTZ 6)",
|
|
316
|
-
"asia_kuala_lumpur": "{{value}} Kuala Lumpur",
|
|
317
|
-
"asia_kuwait": "{{value}} Kuwait, Riyadh",
|
|
318
|
-
"asia_magadan": "{{value}} Magadan",
|
|
319
|
-
"asia_omsk": "{{value}} Omsk",
|
|
320
|
-
"asia_pyongyang": "{{value}} Pyongyang",
|
|
321
|
-
"asia_qyzylorda": "{{value}} Qyzylorda",
|
|
322
|
-
"asia_sakhalin": "{{value}} Sakhalin",
|
|
323
|
-
"asia_seoul": "{{value}} Korea",
|
|
324
|
-
"asia_singapore": "{{value}} Singapore",
|
|
325
|
-
"asia_srednekolymsk": "{{value}} Chokurdakh (RTZ 10)",
|
|
326
|
-
"asia_taipei": "{{value}} Taipei",
|
|
327
|
-
"asia_tashkent": "{{value}} Tashkent",
|
|
328
|
-
"asia_tehran": "{{value}} Tehran",
|
|
329
|
-
"asia_tokyo": "{{value}} Japan",
|
|
330
|
-
"asia_ulaanbaatar": "{{value}} Ulaanbaatar",
|
|
331
|
-
"asia_vladivostok": "{{value}} Vladivostok, Magadan (RTZ 9)",
|
|
332
|
-
"asia_yakutsk": "{{value}} Yakutsk (RTZ 8)",
|
|
333
|
-
"asia_yangon": "{{value}} Yangon",
|
|
334
|
-
"asia_yekaterinburg": "{{value}} Ekaterinburg (RTZ 4)",
|
|
335
|
-
"asia_yerevan": "{{value}} Yerevan",
|
|
336
|
-
"atlantic_cape_verde": "{{value}} Cape Verde Is.",
|
|
337
|
-
"atlantic_south_georgia": "{{value}} Mid-Atlantic",
|
|
338
|
-
"australia_adelaide": "{{value}} Adelaide",
|
|
339
|
-
"australia_brisbane": "{{value}} Brisbane",
|
|
340
|
-
"australia_darwin": "{{value}} Darwin",
|
|
341
|
-
"australia_eucla": "{{value}} Eucla",
|
|
342
|
-
"australia_hobart": "{{value}} Hobart",
|
|
343
|
-
"australia_sydney": "{{value}} Canberra, Melbourne, Sydney",
|
|
344
|
-
"etc_gmt+12": "{{value}} Dateline",
|
|
345
|
-
"europe_astrakhan": "{{value}} Astrakhan",
|
|
346
|
-
"europe_athens": "{{value}} Athens, Beirut, Bucharest, Istanbul",
|
|
347
|
-
"europe_berlin": "{{value}} Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna",
|
|
348
|
-
"europe_brussels": "{{value}} Brussels, Copenhagen, Madrid, Paris",
|
|
349
|
-
"europe_bucharest": "{{value}} Bucharest",
|
|
350
|
-
"europe_chisinau": "{{value}} Chisinau",
|
|
351
|
-
"europe_istanbul": "{{value}} İstanbul",
|
|
352
|
-
"europe_minsk": "{{value}} Minsk",
|
|
353
|
-
"europe_moscow": "{{value}} Moscow, St. Petersburg, Volgograd (RTZ 2)",
|
|
354
|
-
"europe_samara": "{{value}} Izhevsk, Samara (RTZ 3)",
|
|
355
|
-
"europe_saratov": "{{value}} Saratov",
|
|
356
|
-
"europe_warsaw": "{{value}} Sarajevo, Skopje, Warsaw, Zagreb",
|
|
357
|
-
"indian_mauritius": "{{value}} Port Louis",
|
|
358
|
-
"pacific_apia": "{{value}} Samoa",
|
|
359
|
-
"pacific_bougainville": "{{value}} Bougainville Standard Time",
|
|
360
|
-
"pacific_chatham": "{{value}} Chatham",
|
|
361
|
-
"pacific_easter": "{{value}} Easter",
|
|
362
|
-
"pacific_fiji": "{{value}} Fiji",
|
|
363
|
-
"pacific_guam": "{{value}} Guam, Port Moresby",
|
|
364
|
-
"pacific_honolulu": "{{value}} Hawaii",
|
|
365
|
-
"pacific_marquesas": "{{value}} Marquesas",
|
|
366
|
-
"pacific_midway": "{{value}} Samoa",
|
|
367
|
-
"pacific_norfolk": "{{value}} Norfolk",
|
|
368
|
-
"pacific_tongatapu": "{{value}} Nuku’alofa",
|
|
369
|
-
"africa_algiers": "{{value}} West Central Africa",
|
|
370
|
-
"africa_khartoum": "{{value}} Khartoum",
|
|
371
|
-
"africa_nairobi": "{{value}} Nairobi",
|
|
372
|
-
"africa_windhoek": "{{value}} Namibia",
|
|
373
|
-
"america_anchorage": "{{value}} Alaska",
|
|
374
|
-
"america_cayenne": "{{value}} Cayenne, Fortaleza",
|
|
375
|
-
"america_grand_turk": "{{value}} Turks ve Caicos Adaları",
|
|
376
|
-
"america_los_angeles": "{{value}} US/Canada Pacific",
|
|
377
|
-
"america_new_york": "{{value}} US/Canada Eastern",
|
|
378
|
-
"america_whitehorse": "{{value}} Yukon",
|
|
379
|
-
"asia_bangkok": "{{value}} Bangkok, Hanoi, Jakarta",
|
|
380
|
-
"asia_colombo": "{{value}} Sri Jayawardenepura Kotte",
|
|
381
|
-
"asia_kamchatka": "{{value}} Anadyr, Petropavlovsk-Kamchatsky (RTZ 11)",
|
|
382
|
-
"asia_muscat": "{{value}} Abu Dhabi, Muscat",
|
|
383
|
-
"asia_novosibirsk": "{{value}} Novosibirsk (RTZ 5)",
|
|
384
|
-
"asia_tbilisi": "{{value}} Tbilisi",
|
|
385
|
-
"asia_tomsk": "{{value}} Tomsk",
|
|
386
|
-
"atlantic_azores": "{{value}} Azores",
|
|
387
|
-
"australia_lord_howe": "{{value}} Lord_Howe",
|
|
388
|
-
"australia_perth": "{{value}} Perth",
|
|
389
|
-
"europe_belgrade": "{{value}} Belgrade, Bratislava, Budapest, Ljubljana, Prague",
|
|
390
|
-
"europe_helsinki": "{{value}} Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius",
|
|
391
|
-
"europe_kaliningrad": "{{value}} Kaliningrad (RTZ 1)",
|
|
392
|
-
"europe_london": "{{value}} Britain, Ireland, Portugal",
|
|
393
|
-
"europe_volgograd": "{{value}} Volgograd",
|
|
394
|
-
"pacific_auckland": "{{value}} New Zealand",
|
|
395
|
-
"pacific_guadalcanal": "{{value}} Solomon Is. / New Caledonia",
|
|
396
|
-
"pacific_kiritimati": "{{value}} Kiritimati Island",
|
|
397
|
-
"utc": "{{value}} Coordinated Universal Time",
|
|
398
|
-
"asia_damascus": "{{value}} Damascus"
|
|
399
|
-
},
|
|
400
|
-
"feedback": {
|
|
401
|
-
"behaviors": "Davranışlar",
|
|
402
|
-
"error": "Geri bildiriminiz gönderilirken hata oluştu",
|
|
403
|
-
"hint": "Hatırlatma: Geri bildirimi yazmadan önce modülü ve alt bölümleri seçerek başlığı tanımlayın. Yardımlarınız için teşekkürler.",
|
|
404
|
-
"missing_features": "Eksik özellikler",
|
|
405
|
-
"other": "Diğer",
|
|
406
|
-
"report_something": "Rapor göndermek istiyor musunuz?",
|
|
407
|
-
"select_a_module": "Modül seçin",
|
|
408
|
-
"select_a_topic": "Başlık seçin",
|
|
409
|
-
"send": "GÖNDER",
|
|
410
|
-
"success": "Geri bildirim için teşekkürler",
|
|
411
|
-
"user_interface": "Kullanıcı arayüzü",
|
|
412
|
-
"write_here": "Geri bildiriminizi buraya yazın",
|
|
413
|
-
"explanation": "Zextras Sunucu ile yeni deneyiminiz hakkında lütfen bize geri bildirim gönderin. Ürünümüzü geliştirmek için görüşleriniz bizim için önemli, o nedenle düşüncelerinizi lütfen bizimle paylaşın."
|
|
414
|
-
},
|
|
415
|
-
"messages": {
|
|
416
|
-
"permanent_delete_body": "Bu Kişiliği kalıcı olarak silerseniz geri alamazsınız. Devam edilsin mi?",
|
|
417
|
-
"permanent_delete_title": "Bu öğeyi tamamen silmek istiyor musunuz?"
|
|
418
|
-
},
|
|
419
|
-
"passwords_recovery_settings": {
|
|
420
|
-
"title": "Parola Kurtarma Hesap Ayarları"
|
|
421
|
-
},
|
|
422
|
-
"primary_account": {
|
|
423
|
-
"title": "Birincil Hesap Ayarları"
|
|
424
|
-
},
|
|
425
|
-
"share": {
|
|
426
|
-
"is_contained_in": "Bulunduğu klasör"
|
|
427
|
-
},
|
|
428
|
-
"bootstrap": {
|
|
429
|
-
"failure": {
|
|
430
|
-
"modal": {
|
|
431
|
-
"confirmButtonLabel": "yenile",
|
|
432
|
-
"secondaryButtonLabel": "giriş sayfası",
|
|
433
|
-
"title": "Bir hata oluştu…",
|
|
434
|
-
"body": "İsteğiniz işlenirken bazı teknik sorunlar oluştu. Lütfen sayfayı yeniden yüklemeyi deneyin veya kullanıcı giriş sayfasına geri gidin."
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
}
|
package/dist/i18n/uk.json
DELETED
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"board": {
|
|
3
|
-
"close_tab": "Закрити вкладку",
|
|
4
|
-
"enlarge": "Розгорнути дошку",
|
|
5
|
-
"hide": "Приховати дошку",
|
|
6
|
-
"from_app": "Від {{app}}",
|
|
7
|
-
"open_app": "Відкрити в додатку",
|
|
8
|
-
"reduce": "Зменшити дошку",
|
|
9
|
-
"close_tabs": "Закрити всі вкладки",
|
|
10
|
-
"show_tabs": "Показати інші вкладки"
|
|
11
|
-
},
|
|
12
|
-
"bootstrap": {
|
|
13
|
-
"failure": {
|
|
14
|
-
"modal": {
|
|
15
|
-
"body": "Під час обробки вашого запиту виникли деякі технічні проблеми. Будь ласка, спробуйте оновити сторінку або поверніться на сторінку входу.",
|
|
16
|
-
"confirmButtonLabel": "оновити",
|
|
17
|
-
"secondaryButtonLabel": "сторінка входу"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"feedback": {
|
|
22
|
-
"error": "Виникла помилка при відправці вашого відгуку",
|
|
23
|
-
"explanation": "Будь ласка, залиште нам свій відгук про ваш новий досвід роботи з Zextras Server. Ваша думка важлива для нас, щоб покращити наш продукт. Повідомте нам свої думки.",
|
|
24
|
-
"behaviors": "Поведінка",
|
|
25
|
-
"hint": "Пам'ятайте: перш ніж писати відгук, визначте тему за допомогою модулів і селекторів макрообластей. Дякуємо за вашу допомогу.",
|
|
26
|
-
"missing_features": "Відсутні функції",
|
|
27
|
-
"other": "Інше",
|
|
28
|
-
"report_something": "Хочете щось повідомити?",
|
|
29
|
-
"select_a_module": "Виберіть модуль",
|
|
30
|
-
"select_a_topic": "Виберіть тему",
|
|
31
|
-
"send": "НАДІСЛАТИ",
|
|
32
|
-
"success": "Дякуємо за ваш відгук",
|
|
33
|
-
"user_interface": "Інтерфейс користувача",
|
|
34
|
-
"write_here": "Напишіть свій відгук тут"
|
|
35
|
-
},
|
|
36
|
-
"label": {
|
|
37
|
-
"account_menu": "Меню облікового запису",
|
|
38
|
-
"account_name": "Назва облікового запису",
|
|
39
|
-
"account_username": "Ім'я користувача облікового запису",
|
|
40
|
-
"accounts": "Облікові записи",
|
|
41
|
-
"accounts_list": "Список облікових записів",
|
|
42
|
-
"add_external_account": "Додати зовнішній обліковий запис",
|
|
43
|
-
"add_new_email": "Додати нову адресу електронної пошти",
|
|
44
|
-
"add_persona": "Додати особу",
|
|
45
|
-
"address": "Адреса",
|
|
46
|
-
"advanced_settings": "Розширені налаштування",
|
|
47
|
-
"button": "Кнопка",
|
|
48
|
-
"cancel": "Скасувати",
|
|
49
|
-
"change_pop": "Змінити POP-порт",
|
|
50
|
-
"choose_folder": "Виберіть папку",
|
|
51
|
-
"clear_search_query": "ОЧИСТИТИ ПОШУК",
|
|
52
|
-
"click_to_copy": "Натисніть, щоб скопіювати",
|
|
53
|
-
"delegates": "Делегати",
|
|
54
|
-
"delete_permanently": "Видалити назавжди",
|
|
55
|
-
"discard_changes": "СКАСУВАТИ ЗМІНИ",
|
|
56
|
-
"dont_save": "Не зберігати копії надісланих повідомлень",
|
|
57
|
-
"download_messages": "Завантажити повідомлення до:",
|
|
58
|
-
"edit_permissions": "Редагування прав доступу",
|
|
59
|
-
"email_address": "Адреса електронної пошти",
|
|
60
|
-
"email_server": "Сервер електронної пошти (наприклад, \"mail.example.com\")",
|
|
61
|
-
"feedback": "Зворотній зв'язок",
|
|
62
|
-
"filter_folders": "Фільтр папок",
|
|
63
|
-
"folder": "Папка: Новий зовнішній акаунт 3",
|
|
64
|
-
"folders": "Папки",
|
|
65
|
-
"from_name": "Від: \"Ім'я\"",
|
|
66
|
-
"go_back": "Назад",
|
|
67
|
-
"imap": "IMAP",
|
|
68
|
-
"inbox": "Вхідні",
|
|
69
|
-
"language": "Мова",
|
|
70
|
-
"leave_anyway": "Все одно вийти",
|
|
71
|
-
"logout": "Вийти",
|
|
72
|
-
"no": "Ні",
|
|
73
|
-
"no_results": "Не знайдено жодного результату",
|
|
74
|
-
"out_of_office": "Поза офісом",
|
|
75
|
-
"password": "Пароль",
|
|
76
|
-
"permanent_delete_title": "Ви впевнені, що хочете назавжди видалити цю Персону?",
|
|
77
|
-
"persona": "Персона",
|
|
78
|
-
"persona_name": "Ім'я персони",
|
|
79
|
-
"pop3": "POP3",
|
|
80
|
-
"pop_port": "POP-порт",
|
|
81
|
-
"primary": "Первинний",
|
|
82
|
-
"recipents": "Одержувачі",
|
|
83
|
-
"recovery_email": "Резервна адреса електронної пошти",
|
|
84
|
-
"remove": "видалити",
|
|
85
|
-
"reply_to_field_example": "наприклад Богдан Хмельницький",
|
|
86
|
-
"save_and_leave": "Зберегти та вийти",
|
|
87
|
-
"save_delegate_folder": "Зберігати копії надісланих повідомлень у папці \"Надіслані\" делегата",
|
|
88
|
-
"secondary": "Вторинний",
|
|
89
|
-
"set_reply_to_field": "Встановіть значення поля \"Відповісти на\" у повідомленні електронної пошти:",
|
|
90
|
-
"settings_sent_messages": "Налаштування відправлених повідомлень",
|
|
91
|
-
"test_settings": "Тестові налаштування",
|
|
92
|
-
"time_zone": "Часовий пояс",
|
|
93
|
-
"unsaved_changes": "У вас є незбережені зміни",
|
|
94
|
-
"unsaved_changes_line1": "Ви дійсно хочете залишити цю сторінку без збереження?",
|
|
95
|
-
"update_view": "Оновити перегляд",
|
|
96
|
-
"use_persona": "Використовуйте цю персону",
|
|
97
|
-
"use_personas_line2": "Наприклад, якщо ви іноді надсилаєте електронні листи в певній ролі на роботі, створіть для цього персону.",
|
|
98
|
-
"use_ssl": "Використовуйте з'єднання з шифруванням (SSL) для доступу до цього сервера",
|
|
99
|
-
"when_replying": "При відповіді або пересиланні повідомлень, надісланих на:",
|
|
100
|
-
"account_type": "Тип облікового запису",
|
|
101
|
-
"add_delegate": "Додати делегата",
|
|
102
|
-
"add_recovery_email": "Додайте резервну адресу електронної пошти",
|
|
103
|
-
"choose_account": "Виберіть обліковий запис",
|
|
104
|
-
"delete_after_download": "Видалити повідомлення з сервера після завантаження",
|
|
105
|
-
"delete": "Видалити",
|
|
106
|
-
"edit_to_start_search": "Відредагуйте пошук, щоб почати новий",
|
|
107
|
-
"new_folder": "Нова папка",
|
|
108
|
-
"passwords_recovery_settings": "Налаштування облікового запису для відновлення пароля",
|
|
109
|
-
"persona_settings": "Налаштування персони",
|
|
110
|
-
"save_both_folders": "Зберігати копії надісланих повідомлень у моїй папці \"Надіслані\" та папці делегата",
|
|
111
|
-
"save_to_my_sent_folder": "Зберігати копію надісланих повідомлень у папці \"Надіслані\"",
|
|
112
|
-
"save": "Зберегти",
|
|
113
|
-
"external_account_settings": "Налаштування зовнішнього облікового запису",
|
|
114
|
-
"reload": "Перезавантажити",
|
|
115
|
-
"use_personas_line1": "Використовуйте персони для швидкої зміни багатьох налаштувань під час надсилання електронних листів.",
|
|
116
|
-
"unsaved_changes_line2": "Усі незбережені зміни буде втрачено",
|
|
117
|
-
"when_composing": "Під час створення, відповіді або пересилання повідомлень у папці (папках):"
|
|
118
|
-
},
|
|
119
|
-
"locale": {
|
|
120
|
-
"English": "Англійська",
|
|
121
|
-
"chinese_china": "Китайська",
|
|
122
|
-
"dutch": "Голландська",
|
|
123
|
-
"french": "Французька",
|
|
124
|
-
"german": "Німецька",
|
|
125
|
-
"hindi": "Хінді",
|
|
126
|
-
"japanese": "Японська",
|
|
127
|
-
"label_chinese": "Китайська - {{value}}",
|
|
128
|
-
"label_dutch": "Голландська - {{value}}",
|
|
129
|
-
"label_english": "Англійська - {{value}}",
|
|
130
|
-
"label_french": "Французька - {{value}}",
|
|
131
|
-
"label_german": "Німецька - {{value}}",
|
|
132
|
-
"label_hindi": "Хінді - {{value}}",
|
|
133
|
-
"label_italian": "Італійська - {{value}}",
|
|
134
|
-
"label_japanese": "Японська - {{value}}",
|
|
135
|
-
"label_portuguese": "Португальська - {{value}}",
|
|
136
|
-
"label_portuguese_brazil": "Португальська - {{value}}",
|
|
137
|
-
"label_romanian": "Румунська - {{value}}",
|
|
138
|
-
"label_russian": "Російська - {{value}}",
|
|
139
|
-
"label_spanish": "Іспанська - {{value}}",
|
|
140
|
-
"label_thai": "Тайська - {{value}}",
|
|
141
|
-
"label_turkish": "Турецька - {{value}}",
|
|
142
|
-
"polish": "Польська",
|
|
143
|
-
"portuguese": "Португальська",
|
|
144
|
-
"portuguese_brazil": "Португальська (Бразилія)",
|
|
145
|
-
"romanian": "Румунська",
|
|
146
|
-
"russian": "Російська",
|
|
147
|
-
"spanish": "Іспанська",
|
|
148
|
-
"thai": "Тайська",
|
|
149
|
-
"turkish": "Турецька",
|
|
150
|
-
"vietnamese": "В'єтнамська",
|
|
151
|
-
"italian": "Італійська"
|
|
152
|
-
},
|
|
153
|
-
"message": {
|
|
154
|
-
"snackbar": {
|
|
155
|
-
"settings_saved": "Зміни збережено"
|
|
156
|
-
},
|
|
157
|
-
"reload": "\tБажаєте перезавантажити систему, щоб відобразити нову мову?\n(В іншому випадку нова мова з'явиться при наступному вході)."
|
|
158
|
-
},
|
|
159
|
-
"messages": {
|
|
160
|
-
"permanent_delete_body": "Якщо ви видалите цю Персону назавжди, ви не зможете її відновити. Продовжити?",
|
|
161
|
-
"permanent_delete_title": "Ви впевнені, що хочете назавжди видалити цей елемент?"
|
|
162
|
-
},
|
|
163
|
-
"module": {
|
|
164
|
-
"app": {
|
|
165
|
-
"version": "Версії програми"
|
|
166
|
-
}
|
|
167
|
-
},
|
|
168
|
-
"new": "Створити",
|
|
169
|
-
"new_tab": "Нова вкладка",
|
|
170
|
-
"passwords_recovery_settings": {
|
|
171
|
-
"title": "Налаштування облікового запису для відновлення пароля"
|
|
172
|
-
},
|
|
173
|
-
"search": {
|
|
174
|
-
"already_clear": "Поле пошуку очищено",
|
|
175
|
-
"app": "Пошук",
|
|
176
|
-
"clear": "Очистити умови пошуку",
|
|
177
|
-
"idle_input_label": "Пошук у {{module}}",
|
|
178
|
-
"module": "Модуль",
|
|
179
|
-
"start": "Почати пошук",
|
|
180
|
-
"type_or_choose_suggestion": "Напишіть або оберіть кілька ключових слів, щоб почати пошук",
|
|
181
|
-
"type_to_start_search": "Введіть кілька ключових слів, щоб почати пошук"
|
|
182
|
-
},
|
|
183
|
-
"primary_account": {
|
|
184
|
-
"title": "Налаштування основного облікового запису"
|
|
185
|
-
}
|
|
186
|
-
}
|