@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
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.en',
|
|
2
|
-
'<h1>Begin keyboard navigation</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>Focus the Menu bar</dt>\n' +
|
|
6
|
-
' <dd>Windows or Linux: Alt+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>Focus the Toolbar</dt>\n' +
|
|
9
|
-
' <dd>Windows or Linux: Alt+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>Focus the footer</dt>\n' +
|
|
12
|
-
' <dd>Windows or Linux: Alt+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>Focus a contextual toolbar</dt>\n' +
|
|
15
|
-
' <dd>Windows, Linux or macOS: Ctrl+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
'<p>Navigation will start at the first UI item, which will be highlighted, or underlined in the case of the first item in\n' +
|
|
19
|
-
' the Footer element path.</p>\n' +
|
|
20
|
-
'\n' +
|
|
21
|
-
'<h1>Navigate between UI sections</h1>\n' +
|
|
22
|
-
'\n' +
|
|
23
|
-
'<p>To move from one UI section to the next, press <strong>Tab</strong>.</p>\n' +
|
|
24
|
-
'\n' +
|
|
25
|
-
'<p>To move from one UI section to the previous, press <strong>Shift+Tab</strong>.</p>\n' +
|
|
26
|
-
'\n' +
|
|
27
|
-
'<p>The <strong>Tab</strong> order of these UI sections is:</p>\n' +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>Menu bar</li>\n' +
|
|
31
|
-
' <li>Each toolbar group</li>\n' +
|
|
32
|
-
' <li>Sidebar</li>\n' +
|
|
33
|
-
' <li>Element path in the footer</li>\n' +
|
|
34
|
-
' <li>Word count toggle button in the footer</li>\n' +
|
|
35
|
-
' <li>Branding link in the footer</li>\n' +
|
|
36
|
-
' <li>Editor resize handle in the footer</li>\n' +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
'<p>If a UI section is not present, it is skipped.</p>\n' +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>If the footer has keyboard navigation focus, and there is no visible sidebar, pressing <strong>Shift+Tab</strong>\n' +
|
|
42
|
-
' moves focus to the first toolbar group, not the last.</p>\n' +
|
|
43
|
-
'\n' +
|
|
44
|
-
'<h1>Navigate within UI sections</h1>\n' +
|
|
45
|
-
'\n' +
|
|
46
|
-
'<p>To move from one UI element to the next, press the appropriate <strong>Arrow</strong> key.</p>\n' +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p>The <strong>Left</strong> and <strong>Right</strong> arrow keys</p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>move between menus in the menu bar.</li>\n' +
|
|
52
|
-
' <li>open a sub-menu in a menu.</li>\n' +
|
|
53
|
-
' <li>move between buttons in a toolbar group.</li>\n' +
|
|
54
|
-
' <li>move between items in the footer’s element path.</li>\n' +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p>The <strong>Down</strong> and <strong>Up</strong> arrow keys</p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>move between menu items in a menu.</li>\n' +
|
|
61
|
-
' <li>move between items in a toolbar pop-up menu.</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
'<p><strong>Arrow</strong> keys cycle within the focused UI section.</p>\n' +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>To close an open menu, an open sub-menu, or an open pop-up menu, press the <strong>Esc</strong> key.</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
'<p>If the current focus is at the ‘top’ of a particular UI section, pressing the <strong>Esc</strong> key also exits\n' +
|
|
69
|
-
' keyboard navigation entirely.</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>Execute a menu item or toolbar button</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>When the desired menu item or toolbar button is highlighted, press <strong>Return</strong>, <strong>Enter</strong>,\n' +
|
|
74
|
-
' or the <strong>Space bar</strong> to execute the item.</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>Navigate non-tabbed dialogs</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
'<p>In non-tabbed dialogs, the first interactive component takes focus when the dialog opens.</p>\n' +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p>Navigate between interactive dialog components by pressing <strong>Tab</strong> or <strong>Shift+Tab</strong>.</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>Navigate tabbed dialogs</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
'<p>In tabbed dialogs, the first button in the tab menu takes focus when the dialog opens.</p>\n' +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>Navigate between interactive components of this dialog tab by pressing <strong>Tab</strong> or\n' +
|
|
87
|
-
' <strong>Shift+Tab</strong>.</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
'<p>Switch to another dialog tab by giving the tab menu focus and then pressing the appropriate <strong>Arrow</strong>\n' +
|
|
90
|
-
' key to cycle through the available tabs.</p>\n');
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.es',
|
|
2
|
-
'<h1>Iniciar la navegación con el teclado</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>Enfocar la barra de menús</dt>\n' +
|
|
6
|
-
' <dd>Windows o Linux: Alt+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>Enfocar la barra de herramientas</dt>\n' +
|
|
9
|
-
' <dd>Windows o Linux: Alt+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>Enfocar el pie de página</dt>\n' +
|
|
12
|
-
' <dd>Windows o Linux: Alt+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>Enfocar una barra de herramientas contextual</dt>\n' +
|
|
15
|
-
' <dd>Windows, Linux o macOS: Ctrl+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
'<p>La navegación comenzará por el primer elemento de la interfaz de usuario (IU), de tal manera que se resaltará, o bien se subrayará si se trata del primer elemento de\n' +
|
|
19
|
-
' la ruta de elemento del pie de página.</p>\n' +
|
|
20
|
-
'\n' +
|
|
21
|
-
'<h1>Navegar entre las secciones de la IU</h1>\n' +
|
|
22
|
-
'\n' +
|
|
23
|
-
'<p>Para pasar de una sección de la IU a la siguiente, pulse la tecla <strong>Tab</strong>.</p>\n' +
|
|
24
|
-
'\n' +
|
|
25
|
-
'<p>Para pasar de una sección de la IU a la anterior, pulse <strong>Mayús+Tab</strong>.</p>\n' +
|
|
26
|
-
'\n' +
|
|
27
|
-
'<p>El orden de <strong>tabulación</strong> de estas secciones de la IU es:</p>\n' +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>Barra de menús</li>\n' +
|
|
31
|
-
' <li>Cada grupo de barra de herramientas</li>\n' +
|
|
32
|
-
' <li>Barra lateral</li>\n' +
|
|
33
|
-
' <li>Ruta del elemento en el pie de página</li>\n' +
|
|
34
|
-
' <li>Botón de alternancia de recuento de palabras en el pie de página</li>\n' +
|
|
35
|
-
' <li>Enlace de personalización de marca en el pie de página</li>\n' +
|
|
36
|
-
' <li>Controlador de cambio de tamaño en el pie de página</li>\n' +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
'<p>Si una sección de la IU no está presente, esta se omite.</p>\n' +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>Si el pie de página tiene un enfoque de navegación con el teclado y no hay ninguna barra lateral visible, al pulsar <strong>Mayús+Tab</strong>,\n' +
|
|
42
|
-
' el enfoque se moverá al primer grupo de barra de herramientas, en lugar de al último.</p>\n' +
|
|
43
|
-
'\n' +
|
|
44
|
-
'<h1>Navegar dentro de las secciones de la IU</h1>\n' +
|
|
45
|
-
'\n' +
|
|
46
|
-
'<p>Para pasar de un elemento de la IU al siguiente, pulse la tecla de <strong>flecha</strong> correspondiente.</p>\n' +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p>Las teclas de flecha <strong>izquierda</strong> y <strong>derecha</strong> permiten</p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>desplazarse entre los menús de la barra de menús.</li>\n' +
|
|
52
|
-
' <li>abrir el submenú de un menú.</li>\n' +
|
|
53
|
-
' <li>desplazarse entre los botones de un grupo de barra de herramientas.</li>\n' +
|
|
54
|
-
' <li>desplazarse entre los elementos de la ruta de elemento del pie de página.</li>\n' +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p>Las teclas de flecha <strong>abajo</strong> y <strong>arriba</strong> permiten</p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>desplazarse entre los elementos de menú de un menú.</li>\n' +
|
|
61
|
-
' <li>desplazarse entre los elementos de un menú emergente de una barra de herramientas.</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
'<p>Las teclas de <strong>flecha</strong> van cambiando dentro de la sección de la IU enfocada.</p>\n' +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>Para cerrar un menú, un submenú o un menú emergente que estén abiertos, pulse la tecla <strong>Esc</strong>.</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
'<p>Si el enfoque actual se encuentra en la parte superior de una sección de la IU determinada, al pulsar la tecla <strong>Esc</strong> saldrá\n' +
|
|
69
|
-
' de la navegación con el teclado por completo.</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>Ejecutar un elemento de menú o un botón de barra de herramientas</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>Si el elemento de menú o el botón de barra de herramientas deseado está resaltado, pulse la tecla <strong>Retorno</strong> o <strong>Entrar</strong>,\n' +
|
|
74
|
-
' o la <strong>barra espaciadora</strong> para ejecutar el elemento.</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>Navegar por cuadros de diálogo sin pestañas</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
'<p>En los cuadros de diálogo sin pestañas, el primer componente interactivo se enfoca al abrirse el cuadro de diálogo.</p>\n' +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p>Para navegar entre los componentes interactivos del cuadro de diálogo, pulse las teclas <strong>Tab</strong> o <strong>Mayús+Tab</strong>.</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>Navegar por cuadros de diálogo con pestañas</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
'<p>En los cuadros de diálogo con pestañas, el primer botón del menú de pestaña se enfoca al abrirse el cuadro de diálogo.</p>\n' +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>Para navegar entre componentes interactivos de esta pestaña del cuadro de diálogo, pulse las teclas <strong>Tab</strong> o\n' +
|
|
87
|
-
' <strong>Mayús+Tab</strong>.</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
'<p>Si desea cambiar a otra pestaña del cuadro de diálogo, enfoque el menú de pestañas y, a continuación, pulse la tecla de <strong>flecha</strong>\n' +
|
|
90
|
-
' correspondiente para moverse por las pestañas disponibles.</p>\n');
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.fr_FR',
|
|
2
|
-
'<h1>Débuter la navigation au clavier</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>Cibler la barre du menu</dt>\n' +
|
|
6
|
-
' <dd>Windows ou Linux : Alt+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS : ⌥F9</dd>\n' +
|
|
8
|
-
" <dt>Cibler la barre d'outils</dt>\n" +
|
|
9
|
-
' <dd>Windows ou Linux : Alt+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS : ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>Cibler le pied de page</dt>\n' +
|
|
12
|
-
' <dd>Windows ou Linux : Alt+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS : ⌥F11</dd>\n' +
|
|
14
|
-
" <dt>Cibler une barre d'outils contextuelle</dt>\n" +
|
|
15
|
-
' <dd>Windows, Linux ou macOS : Ctrl+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
"<p>La navigation débutera sur le premier élément de l'interface utilisateur, qui sera mis en surbrillance ou bien souligné dans le cas du premier élément du\n" +
|
|
19
|
-
" chemin d'éléments du pied de page.</p>\n" +
|
|
20
|
-
'\n' +
|
|
21
|
-
"<h1>Naviguer entre les sections de l'interface utilisateur</h1>\n" +
|
|
22
|
-
'\n' +
|
|
23
|
-
"<p>Pour passer d'une section de l'interface utilisateur à la suivante, appuyez sur <strong>Tabulation</strong>.</p>\n" +
|
|
24
|
-
'\n' +
|
|
25
|
-
"<p>Pour passer d'une section de l'interface utilisateur à la précédente, appuyez sur <strong>Maj+Tabulation</strong>.</p>\n" +
|
|
26
|
-
'\n' +
|
|
27
|
-
"<p>L'ordre de <strong>Tabulation</strong> de ces sections de l'interface utilisateur est le suivant :</p>\n" +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>Barre du menu</li>\n' +
|
|
31
|
-
" <li>Chaque groupe de barres d'outils</li>\n" +
|
|
32
|
-
' <li>Barre latérale</li>\n' +
|
|
33
|
-
" <li>Chemin d'éléments du pied de page</li>\n" +
|
|
34
|
-
" <li>Bouton d'activation du compteur de mots dans le pied de page</li>\n" +
|
|
35
|
-
' <li>Lien de marque dans le pied de page</li>\n' +
|
|
36
|
-
" <li>Poignée de redimensionnement de l'éditeur dans le pied de page</li>\n" +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
"<p>Si une section de l'interface utilisateur n'est pas présente, elle sera ignorée.</p>\n" +
|
|
40
|
-
'\n' +
|
|
41
|
-
"<p>Si le pied de page comporte un ciblage par navigation au clavier et qu'il n'y a aucune barre latérale visible, appuyer sur <strong>Maj+Tabulation</strong>\n" +
|
|
42
|
-
" déplace le ciblage vers le premier groupe de barres d'outils et non le dernier.</p>\n" +
|
|
43
|
-
'\n' +
|
|
44
|
-
"<h1>Naviguer au sein des sections de l'interface utilisateur</h1>\n" +
|
|
45
|
-
'\n' +
|
|
46
|
-
"<p>Pour passer d'un élément de l'interface utilisateur au suivant, appuyez sur la <strong>Flèche</strong> appropriée.</p>\n" +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p>Les touches fléchées <strong>Gauche</strong> et <strong>Droite</strong></p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>se déplacent entre les menus de la barre des menus.</li>\n' +
|
|
52
|
-
" <li>ouvrent un sous-menu au sein d'un menu.</li>\n" +
|
|
53
|
-
" <li>se déplacent entre les boutons d'un groupe de barres d'outils.</li>\n" +
|
|
54
|
-
" <li>se déplacent entre les éléments du chemin d'éléments du pied de page.</li>\n" +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p>Les touches fléchées <strong>Bas</strong> et <strong>Haut</strong></p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
" <li>se déplacent entre les éléments de menu au sein d'un menu.</li>\n" +
|
|
61
|
-
" <li>se déplacent entre les éléments au sein d'un menu contextuel de barre d'outils.</li>\n" +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
"<p>Les <strong>Flèches</strong> parcourent la section de l'interface utilisateur ciblée.</p>\n" +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>Pour fermer un menu ouvert, un sous-menu ouvert ou un menu contextuel ouvert, appuyez sur <strong>Echap</strong>.</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
"<p>Si l'actuel ciblage se trouve en « haut » d'une section spécifique de l'interface utilisateur, appuyer sur <strong>Echap</strong> permet également de quitter\n" +
|
|
69
|
-
' entièrement la navigation au clavier.</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
"<h1>Exécuter un élément de menu ou un bouton de barre d'outils</h1>\n" +
|
|
72
|
-
'\n' +
|
|
73
|
-
"<p>Lorsque l'élément de menu ou le bouton de barre d'outils désiré est mis en surbrillance, appuyez sur la touche <strong>Retour arrière</strong>, <strong>Entrée</strong>\n" +
|
|
74
|
-
" ou la <strong>Barre d'espace</strong> pour exécuter l'élément.</p>\n" +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>Naviguer au sein de dialogues sans onglets</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
"<p>Dans les dialogues sans onglets, le premier composant interactif est ciblé lorsque le dialogue s'ouvre.</p>\n" +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p>Naviguez entre les composants du dialogue interactif en appuyant sur <strong>Tabulation</strong> ou <strong>Maj+Tabulation</strong>.</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>Naviguer au sein de dialogues avec onglets</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
"<p>Dans les dialogues avec onglets, le premier bouton du menu de l'onglet est ciblé lorsque le dialogue s'ouvre.</p>\n" +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>Naviguez entre les composants interactifs de cet onglet de dialogue en appuyant sur <strong>Tabulation</strong> ou\n' +
|
|
87
|
-
' <strong>Maj+Tabulation</strong>.</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
"<p>Passez à un autre onglet de dialogue en ciblant le menu de l'onglet et en appuyant sur la <strong>Flèche</strong>\n" +
|
|
90
|
-
' appropriée pour parcourir les onglets disponibles.</p>\n');
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.hi',
|
|
2
|
-
'<h1>कीबोर्ड नेविगेशन शुरू करें</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>मेन्यू बार पर फ़ोकस करें</dt>\n' +
|
|
6
|
-
' <dd>Windows या Linux: Alt+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>टूलबार पर फ़ोकस करें</dt>\n' +
|
|
9
|
-
' <dd>Windows या Linux: Alt+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>फ़ुटर पर फ़ोकस करें</dt>\n' +
|
|
12
|
-
' <dd>Windows या Linux: Alt+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>प्रासंगिक टूलबार पर फ़ोकस करें</dt>\n' +
|
|
15
|
-
' <dd>Windows, Linux या macOS: Ctrl+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
'<p>नेविगेशन पहले UI आइटम पर शुरू होगा, जिसे हाइलाइट किया जाएगा या पहले आइटम के मामले में फ़ुटर तत्व पथ में\n' +
|
|
19
|
-
' रेखांकित किया जाएगा।</p>\n' +
|
|
20
|
-
'\n' +
|
|
21
|
-
'<h1>UI सेक्शन के बीच नेविगेट करें</h1>\n' +
|
|
22
|
-
'\n' +
|
|
23
|
-
'<p>एक UI सेक्शन से दूसरे सेक्शन में जाने के लिए, <strong>Tab</strong> दबाएं।</p>\n' +
|
|
24
|
-
'\n' +
|
|
25
|
-
'<p>एक UI सेक्शन से पिछले सेक्शन में जाने के लिए, <strong>Shift+Tab</strong> दबाएं।</p>\n' +
|
|
26
|
-
'\n' +
|
|
27
|
-
'<p>इन UI सेक्शन का <strong>Tab</strong> क्रम नीचे दिया गया है:</p>\n' +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>मेन्यू बार</li>\n' +
|
|
31
|
-
' <li>प्रत्येक टूलबार समूह</li>\n' +
|
|
32
|
-
' <li>साइडबार</li>\n' +
|
|
33
|
-
' <li>फ़ुटर में तत्व पथ</li>\n' +
|
|
34
|
-
' <li>फ़ुटर में शब्द गणना टॉगल बटन</li>\n' +
|
|
35
|
-
' <li>फ़ुटर में ब्रांडिंग लिंक</li>\n' +
|
|
36
|
-
' <li>फ़ुटर में संपादक का आकार बदलने का हैंडल</li>\n' +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
'<p>अगर कोई UI सेक्शन मौजूद नहीं है, तो उसे छोड़ दिया जाता है।</p>\n' +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>अगर फ़ुटर में कीबोर्ड नेविगेशन फ़ोकस है, और कोई दिखा देने वाला साइडबार नहीं है, तो <strong>Shift+Tab</strong> दबाने से\n' +
|
|
42
|
-
' फ़ोकस पहले टूलबार समूह पर चला जाता है, पिछले पर नहीं।</p>\n' +
|
|
43
|
-
'\n' +
|
|
44
|
-
'<h1>UI सेक्शन के भीतर नेविगेट करें</h1>\n' +
|
|
45
|
-
'\n' +
|
|
46
|
-
'<p>एक UI तत्व से दूसरे में जाने के लिए उपयुक्त <strong>ऐरो</strong> कुंजी दबाएं।</p>\n' +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p><strong>बाएं</strong> और <strong>दाएं</strong> ऐरो कुंजियां</p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>मेन्यू बार में मेन्यू के बीच ले जाती हैं।</li>\n' +
|
|
52
|
-
' <li>मेन्यू में एक सब-मेन्यू खोलें।</li>\n' +
|
|
53
|
-
' <li>टूलबार समूह में बटनों के बीच ले जाएं।</li>\n' +
|
|
54
|
-
' <li>फ़ुटर के तत्व पथ में आइटम के बीच ले जाएं।</li>\n' +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p><strong>नीचे</strong> और <strong>ऊपर</strong> ऐरो कुंजियां</p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>मेन्यू में मेन्यू आइटम के बीच ले जाती हैं।</li>\n' +
|
|
61
|
-
' <li>टूलबार पॉप-अप मेन्यू में आइटम के बीच ले जाएं।</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
'<p>फ़ोकस वाले UI सेक्शन के भीतर <strong>ऐरो</strong> कुंजियां चलाती रहती हैं।</p>\n' +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>कोई खुला मेन्यू, कोई खुला सब-मेन्यू या कोई खुला पॉप-अप मेन्यू बंद करने के लिए <strong>Esc</strong> कुंजी दबाएं।</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
"<p>अगर मौजूदा फ़ोकस किसी विशेष UI सेक्शन के 'शीर्ष' पर है, तो <strong>Esc</strong> कुंजी दबाने से भी\n" +
|
|
69
|
-
' कीबोर्ड नेविगेशन पूरी तरह से बाहर हो जाता है।</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>मेन्यू आइटम या टूलबार बटन निष्पादित करें</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>जब वांछित मेन्यू आइटम या टूलबार बटन हाइलाइट किया जाता है, तो आइटम को निष्पादित करने के लिए <strong>Return</strong>, <strong>Enter</strong>,\n' +
|
|
74
|
-
' या <strong>Space bar</strong> दबाएं।</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>गैर-टैब वाले डायलॉग पर नेविगेट करें</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
'<p>गैर-टैब वाले डायलॉग में, डायलॉग खुलने पर पहला इंटरैक्टिव घटक फ़ोकस लेता है।</p>\n' +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p><strong>Tab</strong> or <strong>Shift+Tab</strong> दबाकर इंटरैक्टिव डायलॉग घटकों के बीच नेविगेट करें।</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>टैब किए गए डायलॉग पर नेविगेट करें</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
'<p>टैब किए गए डायलॉग में, डायलॉग खुलने पर टैब मेन्यू में पहला बटन फ़ोकस लेता है।</p>\n' +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>इस डायलॉग टैब के इंटरैक्टिव घटकों के बीच नेविगेट करने के लिए <strong>Tab</strong> या\n' +
|
|
87
|
-
' <strong>Shift+Tab</strong> दबाएं।</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
'<p>टैब मेन्यू को फ़ोकस देकर और फिर उपलब्ध टैब में के बीच जाने के लिए उपयुक्त <strong>ऐरो</strong>\n' +
|
|
90
|
-
' कुंजी दबाकर दूसरे डायलॉग टैब पर स्विच करें।</p>\n');
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.it',
|
|
2
|
-
'<h1>Iniziare la navigazione tramite tastiera</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>Impostare lo stato attivo per la barra dei menu</dt>\n' +
|
|
6
|
-
' <dd>Windows o Linux: ALT+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>Impostare lo stato attivo per la barra degli strumenti</dt>\n' +
|
|
9
|
-
' <dd>Windows o Linux: ALT+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>Impostare lo stato attivo per il piè di pagina</dt>\n' +
|
|
12
|
-
' <dd>Windows o Linux: ALT+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>Impostare lo stato attivo per la barra degli strumenti contestuale</dt>\n' +
|
|
15
|
-
' <dd>Windows, Linux o macOS: CTRL+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
"<p>La navigazione inizierà dalla prima voce dell'interfaccia utente, che sarà evidenziata o sottolineata nel caso della prima voce\n" +
|
|
19
|
-
" nel percorso dell'elemento del piè di pagina.</p>\n" +
|
|
20
|
-
'\n' +
|
|
21
|
-
"<h1>Navigare tra le sezioni dell'interfaccia utente</h1>\n" +
|
|
22
|
-
'\n' +
|
|
23
|
-
"<p>Per passare da una sezione dell'interfaccia utente alla successiva, premere <strong>TAB</strong>.</p>\n" +
|
|
24
|
-
'\n' +
|
|
25
|
-
"<p>Per passare da una sezione dell'interfaccia utente alla precedente, premere <strong>MAIUSC+TAB</strong>.</p>\n" +
|
|
26
|
-
'\n' +
|
|
27
|
-
"<p>L'ordine di <strong>tabulazione</strong> di queste sezioni dell'interfaccia utente è:</p>\n" +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>Barra dei menu</li>\n' +
|
|
31
|
-
' <li>Ogni gruppo di barre degli strumenti</li>\n' +
|
|
32
|
-
' <li>Barra laterale</li>\n' +
|
|
33
|
-
" <li>Percorso dell'elemento nel piè di pagina</li>\n" +
|
|
34
|
-
' <li>Pulsante di attivazione/disattivazione del conteggio delle parole nel piè di pagina</li>\n' +
|
|
35
|
-
' <li>Collegamento al marchio nel piè di pagina</li>\n' +
|
|
36
|
-
" <li>Quadratino di ridimensionamento dell'editor nel piè di pagina</li>\n" +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
"<p>Se una sezione dell'interfaccia utente non è presente, viene saltata.</p>\n" +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>Se il piè di pagina ha lo stato attivo per la navigazione tramite tastiera e non è presente alcuna barra laterale visibile, premendo <strong>MAIUSC+TAB</strong>\n' +
|
|
42
|
-
" si sposta lo stato attivo sul primo gruppo di barre degli strumenti, non sull'ultimo.</p>\n" +
|
|
43
|
-
'\n' +
|
|
44
|
-
"<h1>Navigare all'interno delle sezioni dell'interfaccia utente</h1>\n" +
|
|
45
|
-
'\n' +
|
|
46
|
-
"<p>Per passare da un elemento dell'interfaccia utente al successivo, premere il tasto <strong>freccia</strong> appropriato.</p>\n" +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p>I tasti freccia <strong>Sinistra</strong> e <strong>Destra</strong></p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>consentono di spostarsi tra i menu della barra dei menu.</li>\n' +
|
|
52
|
-
' <li>aprono un sottomenu in un menu.</li>\n' +
|
|
53
|
-
' <li>consentono di spostarsi tra i pulsanti di un gruppo di barre degli strumenti.</li>\n' +
|
|
54
|
-
" <li>consentono di spostarsi tra le voci nel percorso dell'elemento del piè di pagina.</li>\n" +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p>I tasti freccia <strong>Giù</strong> e <strong>Su</strong></p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>consentono di spostarsi tra le voci di un menu.</li>\n' +
|
|
61
|
-
' <li>consentono di spostarsi tra le voci di un menu a comparsa della barra degli strumenti.</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
"<p>I tasti <strong>freccia</strong> consentono di spostarsi all'interno della sezione dell'interfaccia utente con stato attivo.</p>\n" +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>Per chiudere un menu aperto, un sottomenu aperto o un menu a comparsa aperto, premere il tasto <strong>ESC</strong>.</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
"<p>Se lo stato attivo corrente si trova nella parte superiore di una particolare sezione dell'interfaccia utente, premendo il tasto <strong>ESC</strong> si esce\n" +
|
|
69
|
-
' completamente dalla navigazione tramite tastiera.</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>Eseguire una voce di menu o un pulsante della barra degli strumenti</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>Quando la voce di menu o il pulsante della barra degli strumenti desiderati sono evidenziati, premere il tasto di<strong>ritorno a capo</strong>, il tasto <strong>Invio</strong>\n' +
|
|
74
|
-
' o la <strong>barra spaziatrice</strong> per eseguirli.</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>Navigare nelle finestre di dialogo non a schede</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
"<p>Nelle finestre di dialogo non a schede, all'apertura della finestra di dialogo diventa attivo il primo componente interattivo.</p>\n" +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p>Per spostarsi tra i componenti interattivi della finestra di dialogo, premere <strong>TAB</strong> o <strong>MAIUSC+TAB</strong>.</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>Navigare nelle finestre di dialogo a schede</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
"<p>Nelle finestre di dialogo a schede, all'apertura della finestra di dialogo diventa attivo il primo pulsante del menu della scheda.</p>\n" +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>Per spostarsi tra i componenti interattivi di questa scheda della finestra di dialogo, premere <strong>TAB</strong> o\n' +
|
|
87
|
-
' <strong>MAIUSC+TAB</strong>.</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
"<p>Per passare a un'altra scheda della finestra di dialogo, attivare il menu della scheda e premere il tasto <strong>freccia</strong>\n" +
|
|
90
|
-
' appropriato per scorrere le schede disponibili.</p>\n');
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.ja',
|
|
2
|
-
'<h1>キーボード ナビゲーションの開始</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>メニュー バーをフォーカス</dt>\n' +
|
|
6
|
-
' <dd>Windows または Linux: Alt+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>ツール バーをフォーカス</dt>\n' +
|
|
9
|
-
' <dd>Windows または Linux: Alt+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>フッターをフォーカス</dt>\n' +
|
|
12
|
-
' <dd>Windows または Linux: Alt+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>コンテキスト ツール バーをフォーカス</dt>\n' +
|
|
15
|
-
' <dd>Windows、Linux または macOS: Ctrl+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
'<p>ナビゲーションは最初の UI 項目から開始され、強調表示されるか、フッターの要素パスにある最初の項目の場合は\n' +
|
|
19
|
-
' 下線が引かれます。</p>\n' +
|
|
20
|
-
'\n' +
|
|
21
|
-
'<h1>UI セクション間の移動</h1>\n' +
|
|
22
|
-
'\n' +
|
|
23
|
-
'<p>次の UI セクションに移動するには、<strong>Tab</strong> を押します。</p>\n' +
|
|
24
|
-
'\n' +
|
|
25
|
-
'<p>前の UI セクションに移動するには、<strong>Shift+Tab</strong> を押します。</p>\n' +
|
|
26
|
-
'\n' +
|
|
27
|
-
'<p>これらの UI セクションの <strong>Tab</strong> の順序:</p>\n' +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>メニュー バー</li>\n' +
|
|
31
|
-
' <li>各ツール バー グループ</li>\n' +
|
|
32
|
-
' <li>サイド バー</li>\n' +
|
|
33
|
-
' <li>フッターの要素パス</li>\n' +
|
|
34
|
-
' <li>フッターの単語数切り替えボタン</li>\n' +
|
|
35
|
-
' <li>フッターのブランド リンク</li>\n' +
|
|
36
|
-
' <li>フッターのエディター サイズ変更ハンドル</li>\n' +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
'<p>UI セクションが存在しない場合は、スキップされます。</p>\n' +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>フッターにキーボード ナビゲーション フォーカスがあり、表示可能なサイド バーがない場合、<strong>Shift+Tab</strong> を押すと、\n' +
|
|
42
|
-
' フォーカスが最後ではなく最初のツール バー グループに移動します。</p>\n' +
|
|
43
|
-
'\n' +
|
|
44
|
-
'<h1>UI セクション内の移動</h1>\n' +
|
|
45
|
-
'\n' +
|
|
46
|
-
'<p>次の UI 要素に移動するには、適切な<strong>矢印</strong>キーを押します。</p>\n' +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p><strong>左矢印</strong>と<strong>右矢印</strong>のキー</p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>メニュー バーのメニュー間で移動します。</li>\n' +
|
|
52
|
-
' <li>メニュー内のサブメニューを開きます。</li>\n' +
|
|
53
|
-
' <li>ツール バー グループのボタン間で移動します。</li>\n' +
|
|
54
|
-
' <li>フッターの要素パスの項目間で移動します。</li>\n' +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p><strong>下矢印</strong>と<strong>上矢印</strong>のキー</p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>メニュー内のメニュー項目間で移動します。</li>\n' +
|
|
61
|
-
' <li>ツール バー ポップアップ メニュー内のメニュー項目間で移動します。</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
'<p><strong>矢印</strong>キーで、フォーカスされた UI セクション内で循環します。</p>\n' +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>開いたメニュー、開いたサブメニュー、開いたポップアップ メニューを閉じるには、<strong>Esc</strong> キーを押します。</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
'<p>現在のフォーカスが特定の UI セクションの「一番上」にある場合、<strong>Esc</strong> キーを押すと\n' +
|
|
69
|
-
' キーボード ナビゲーションも完全に閉じられます。</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>メニュー項目またはツール バー ボタンの実行</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>目的のメニュー項目やツール バー ボタンが強調表示されている場合、<strong>リターン</strong>、<strong>Enter</strong>、\n' +
|
|
74
|
-
' または<strong>スペース キー</strong>を押して項目を実行します。</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>タブのないダイアログの移動</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
'<p>タブのないダイアログでは、ダイアログが開くと最初の対話型コンポーネントがフォーカスされます。</p>\n' +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p><strong>Tab</strong> または <strong>Shift+Tab</strong> を押して、対話型ダイアログ コンポーネント間で移動します。</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>タブ付きダイアログの移動</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
'<p>タブ付きダイアログでは、ダイアログが開くとタブ メニューの最初のボタンがフォーカスされます。</p>\n' +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p><strong>Tab</strong> または\n' +
|
|
87
|
-
' <strong>Shift+Tab</strong> を押して、このダイアログ タブの対話型コンポーネント間で移動します。</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
'<p>タブ メニューをフォーカスしてから適切な<strong>矢印</strong>キーを押して表示可能なタブを循環して、\n' +
|
|
90
|
-
' 別のダイアログに切り替えます。</p>\n');
|