@box/tree 0.38.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/LICENSE +379 -0
- package/chunks/node-icon.module.js +6 -0
- package/chunks/nodes.module.js +319 -0
- package/esm/index.js +23 -0
- package/esm/lib/components/content-node/content-node.js +132 -0
- package/esm/lib/components/content-node/index.js +4 -0
- package/esm/lib/components/content-node/messages.js +10 -0
- package/esm/lib/components/error/error.js +34 -0
- package/esm/lib/components/error/index.js +4 -0
- package/esm/lib/components/error/messages.js +18 -0
- package/esm/lib/components/expander/expander.js +33 -0
- package/esm/lib/components/expander/index.js +4 -0
- package/esm/lib/components/expander/messages.js +14 -0
- package/esm/lib/components/index.js +16 -0
- package/esm/lib/components/load-more-node/index.js +4 -0
- package/esm/lib/components/load-more-node/load-more-node.js +32 -0
- package/esm/lib/components/load-more-node/messages.js +14 -0
- package/esm/lib/components/loading-node/index.js +4 -0
- package/esm/lib/components/loading-node/loading-node.js +30 -0
- package/esm/lib/components/loading-node/messages.js +10 -0
- package/esm/lib/components/node-icon/index.js +6 -0
- package/esm/lib/components/node-icon/messages.js +10 -0
- package/esm/lib/components/node-icon/node-avatar.js +36 -0
- package/esm/lib/components/node-icon/node-item-icon.js +42 -0
- package/esm/lib/components/reload-node/index.js +4 -0
- package/esm/lib/components/reload-node/messages.js +22 -0
- package/esm/lib/components/reload-node/reload-node.js +52 -0
- package/esm/lib/components/service-node-wrapper/index.js +4 -0
- package/esm/lib/components/service-node-wrapper/service-node-wrapper.js +20 -0
- package/esm/lib/components/skeleton/index.js +4 -0
- package/esm/lib/components/skeleton/skeleton.js +22 -0
- package/esm/lib/components/truncated-tooltip-text/index.js +4 -0
- package/esm/lib/components/truncated-tooltip-text/truncated-tooltip-text.js +26 -0
- package/esm/lib/constants.js +9 -0
- package/esm/lib/hooks/index.js +6 -0
- package/esm/lib/hooks/useIntersectionObserver.js +18 -0
- package/esm/lib/hooks/useSelectionInheritance.js +21 -0
- package/esm/lib/tree.js +127 -0
- package/esm/lib/utils.js +53 -0
- package/i18n/bn-IN.js +16 -0
- package/i18n/bn-IN.properties +28 -0
- package/i18n/da-DK.js +16 -0
- package/i18n/da-DK.properties +28 -0
- package/i18n/de-DE.js +16 -0
- package/i18n/de-DE.properties +28 -0
- package/i18n/en-AU.js +16 -0
- package/i18n/en-AU.properties +28 -0
- package/i18n/en-CA.js +16 -0
- package/i18n/en-CA.properties +28 -0
- package/i18n/en-GB.js +16 -0
- package/i18n/en-GB.properties +28 -0
- package/i18n/en-US.js +16 -0
- package/i18n/en-US.properties +28 -0
- package/i18n/en-x-pseudo.js +16 -0
- package/i18n/en-x-pseudo.properties +28 -0
- package/i18n/es-419.js +16 -0
- package/i18n/es-419.properties +28 -0
- package/i18n/es-ES.js +16 -0
- package/i18n/es-ES.properties +28 -0
- package/i18n/fi-FI.js +16 -0
- package/i18n/fi-FI.properties +28 -0
- package/i18n/fr-CA.js +16 -0
- package/i18n/fr-CA.properties +28 -0
- package/i18n/fr-FR.js +16 -0
- package/i18n/fr-FR.properties +28 -0
- package/i18n/hi-IN.js +16 -0
- package/i18n/hi-IN.properties +28 -0
- package/i18n/it-IT.js +16 -0
- package/i18n/it-IT.properties +28 -0
- package/i18n/ja-JP.js +16 -0
- package/i18n/ja-JP.properties +28 -0
- package/i18n/json/src/lib/components/content-node/messages.json +1 -0
- package/i18n/json/src/lib/components/error/messages.json +1 -0
- package/i18n/json/src/lib/components/expander/messages.json +1 -0
- package/i18n/json/src/lib/components/load-more-node/messages.json +1 -0
- package/i18n/json/src/lib/components/loading-node/messages.json +1 -0
- package/i18n/json/src/lib/components/node-icon/messages.json +1 -0
- package/i18n/json/src/lib/components/reload-node/messages.json +1 -0
- package/i18n/ko-KR.js +16 -0
- package/i18n/ko-KR.properties +28 -0
- package/i18n/nb-NO.js +16 -0
- package/i18n/nb-NO.properties +28 -0
- package/i18n/nl-NL.js +16 -0
- package/i18n/nl-NL.properties +28 -0
- package/i18n/pl-PL.js +16 -0
- package/i18n/pl-PL.properties +28 -0
- package/i18n/pt-BR.js +16 -0
- package/i18n/pt-BR.properties +28 -0
- package/i18n/ru-RU.js +16 -0
- package/i18n/ru-RU.properties +28 -0
- package/i18n/sv-SE.js +16 -0
- package/i18n/sv-SE.properties +28 -0
- package/i18n/tr-TR.js +16 -0
- package/i18n/tr-TR.properties +28 -0
- package/i18n/zh-CN.js +16 -0
- package/i18n/zh-CN.properties +28 -0
- package/i18n/zh-TW.js +16 -0
- package/i18n/zh-TW.properties +28 -0
- package/package.json +55 -0
- package/styles/content-node.css +1 -0
- package/styles/error.css +1 -0
- package/styles/expander.css +1 -0
- package/styles/loading-node.css +1 -0
- package/styles/node-icon.css +1 -0
- package/styles/nodes.css +1 -0
- package/styles/reload-node.css +1 -0
- package/styles/skeleton.css +1 -0
- package/styles/tree.css +1 -0
- package/types/index.d.ts +3 -0
- package/types/lib/components/content-node/content-node.d.ts +2 -0
- package/types/lib/components/content-node/index.d.ts +1 -0
- package/types/lib/components/content-node/messages.d.ts +8 -0
- package/types/lib/components/error/error.d.ts +4 -0
- package/types/lib/components/error/index.d.ts +1 -0
- package/types/lib/components/error/messages.d.ts +18 -0
- package/types/lib/components/expander/expander.d.ts +11 -0
- package/types/lib/components/expander/index.d.ts +1 -0
- package/types/lib/components/expander/messages.d.ts +13 -0
- package/types/lib/components/index.d.ts +7 -0
- package/types/lib/components/load-more-node/index.d.ts +1 -0
- package/types/lib/components/load-more-node/load-more-node.d.ts +2 -0
- package/types/lib/components/load-more-node/messages.d.ts +13 -0
- package/types/lib/components/loading-node/index.d.ts +1 -0
- package/types/lib/components/loading-node/loading-node.d.ts +2 -0
- package/types/lib/components/loading-node/messages.d.ts +8 -0
- package/types/lib/components/node-icon/index.d.ts +2 -0
- package/types/lib/components/node-icon/messages.d.ts +8 -0
- package/types/lib/components/node-icon/node-avatar.d.ts +9 -0
- package/types/lib/components/node-icon/node-item-icon.d.ts +7 -0
- package/types/lib/components/reload-node/index.d.ts +1 -0
- package/types/lib/components/reload-node/messages.d.ts +23 -0
- package/types/lib/components/reload-node/reload-node.d.ts +2 -0
- package/types/lib/components/service-node-wrapper/index.d.ts +1 -0
- package/types/lib/components/service-node-wrapper/service-node-wrapper.d.ts +10 -0
- package/types/lib/components/skeleton/index.d.ts +1 -0
- package/types/lib/components/skeleton/skeleton.d.ts +4 -0
- package/types/lib/components/truncated-tooltip-text/index.d.ts +1 -0
- package/types/lib/components/truncated-tooltip-text/truncated-tooltip-text.d.ts +8 -0
- package/types/lib/constants.d.ts +6 -0
- package/types/lib/hooks/index.d.ts +2 -0
- package/types/lib/hooks/useIntersectionObserver.d.ts +1 -0
- package/types/lib/hooks/useSelectionInheritance.d.ts +6 -0
- package/types/lib/stories/dynamic-loading-shared.d.ts +30 -0
- package/types/lib/stories/shared.d.ts +17 -0
- package/types/lib/tree.d.ts +3 -0
- package/types/lib/types.d.ts +74 -0
- package/types/lib/utils.d.ts +5 -0
package/i18n/it-IT.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Caricamento di altri contenuti",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Carica altro per {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Carica altro",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Caricamento di contenuti per il ramo",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Errore di caricamento",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Errore",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Ricarica il contenuto per {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Ricarica",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Ricarica per riprovare.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Ricarica",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Non è stato possibile caricare l'albero",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Comprimi ramo",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Espandi ramo",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icona per {iconType}"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Caricamento di altri contenuti
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Carica altro per {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Carica altro
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Caricamento di contenuti per il ramo
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Errore di caricamento
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Errore
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Ricarica il contenuto per {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Ricarica
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Ricarica per riprovare.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Ricarica
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Non è stato possibile caricare l'albero
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Comprimi ramo
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Espandi ramo
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icona per {iconType}
|
package/i18n/ja-JP.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "コンテンツをさらに読み込み中",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "{nodeName}にさらに読み込む",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "さらに読み込む",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "ブランチのコンテンツを読み込み中",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "読み込みエラー",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "エラー",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "{nodeName}にコンテンツを再読み込み",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "再読み込み",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "再読み込みしてもう一度お試しください。",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "再読み込み",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "ツリーを読み込めません",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "ブランチを折りたたむ",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "ブランチを展開",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "{iconType}のアイコン"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = コンテンツをさらに読み込み中
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = {nodeName}にさらに読み込む
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = さらに読み込む
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = ブランチのコンテンツを読み込み中
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = 読み込みエラー
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = エラー
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = {nodeName}にコンテンツを再読み込み
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = 再読み込み
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = 再読み込みしてもう一度お試しください。
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = 再読み込み
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = ツリーを読み込めません
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = ブランチを折りたたむ
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = ブランチを展開
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = {iconType}のアイコン
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.tree.branch.loaderLabel","description":"Aria label for the loading indicator when a branch's content is loading","defaultMessage":"Loading content for branch"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.tree.error.title","description":"Title for the error message when the tree fails to load","defaultMessage":"Unable to load tree"},{"id":"groupSharedFeatures.tree.error.body","description":"Body for the error message when the tree fails to load","defaultMessage":"Reload to try again."},{"id":"groupSharedFeatures.tree.error.reload","description":"Button text to reload tree","defaultMessage":"Reload"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.tree.expander.collapse","description":"Aria label for the collapse button","defaultMessage":"Collapse branch"},{"id":"groupSharedFeatures.tree.expander.expand","description":"Aria label for the expand button","defaultMessage":"Expand branch"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.tree.branch.loadMoreButtonTitle","description":"Title for the 'Load More' button","defaultMessage":"Load More"},{"id":"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel","description":"Aria label for the 'Load More' button","defaultMessage":"Load More for {nodeName}"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.tree.branch.loadMore","description":"Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button","defaultMessage":"Loading more content"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.tree.node.conLabel","description":"Aria label for the icon in a node","defaultMessage":"Icon for {iconType}"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.tree.branch.reloadButtonTitle","description":"Title for the 'Reload' button","defaultMessage":"Reload"},{"id":"groupSharedFeatures.tree.branch.reloadButtonAriaLabel","description":"Aria label for the 'Reload' button","defaultMessage":"Reload content for {nodeName}"},{"id":"groupSharedFeatures.tree.branch.loadingError","description":"Message displayed in an inline notice when loading failed","defaultMessage":"Loading Error"},{"id":"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel","description":"Aria label for the error icon in the error inline notice","defaultMessage":"Error"}]
|
package/i18n/ko-KR.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "더 많은 콘텐츠 로드",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "{nodeName}에 대한 더 많은 로드",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "추가 로드",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "분기의 콘텐츠 로드",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "오류 로드",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "오류",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "{nodeName}에 대한 콘텐츠 다시 로드",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "다시 로드",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "다시 시도하려면 다시 로드하십시오.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "다시 로드",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "트리를 로드할 수 없음",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "분기 축소",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "분기 확장",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "{iconType}에 관한 아이콘"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = 더 많은 콘텐츠 로드
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = {nodeName}에 대한 더 많은 로드
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = 추가 로드
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = 분기의 콘텐츠 로드
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = 오류 로드
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = 오류
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = {nodeName}에 대한 콘텐츠 다시 로드
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = 다시 로드
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = 다시 시도하려면 다시 로드하십시오.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = 다시 로드
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = 트리를 로드할 수 없음
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = 분기 축소
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = 분기 확장
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = {iconType}에 관한 아이콘
|
package/i18n/nb-NO.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Laster mer innhold",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Last inn mer for {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Laste inn mer",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Laster innholdet for avdelingen",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Opplastingsfeil",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Feil",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Last inn innholdet på nytt for {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Last inn på nytt",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Omlast for å prøve igjen.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Last inn på nytt",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Kunne ikke laste inn tre",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Lukk avdelingen",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Utvid avdelingen",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Ikon for {iconType}"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Laster mer innhold
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Last inn mer for {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Laste inn mer
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Laster innholdet for avdelingen
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Opplastingsfeil
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Feil
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Last inn innholdet på nytt for {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Last inn på nytt
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Omlast for å prøve igjen.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Last inn på nytt
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Kunne ikke laste inn tre
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Lukk avdelingen
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Utvid avdelingen
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Ikon for {iconType}
|
package/i18n/nl-NL.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Meer inhoud laden",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Meer laden voor {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Meer laden",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Inhoud laden voor vertakking",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Fout bij het laden",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Fout",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Inhoud opnieuw laden voor {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Opnieuw laden",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Herladen om het opnieuw te proberen.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Opnieuw laden",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Kan boom niet laden",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Vertakking samenvouwen",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Vertakking uitklappen",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Pictogram voor {iconType}"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Meer inhoud laden
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Meer laden voor {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Meer laden
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Inhoud laden voor vertakking
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Fout bij het laden
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Fout
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Inhoud opnieuw laden voor {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Opnieuw laden
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Herladen om het opnieuw te proberen.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Opnieuw laden
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Kan boom niet laden
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Vertakking samenvouwen
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Vertakking uitklappen
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Pictogram voor {iconType}
|
package/i18n/pl-PL.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Wczytuję więcej treści",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Wczytaj więcej dla {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Wczytaj więcej",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Wczytywanie zawartości dla gałęzi",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Błąd wczytywania",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Błąd",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Wczytaj ponownie zawartość dla {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Wczytaj ponownie",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Przeładuj, aby spróbować ponownie.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Wczytaj ponownie",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Nie można wczytać drzewa",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Zwiń gałąź",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Rozwiń gałąź",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Ikona dla {iconType}"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Wczytuję więcej treści
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Wczytaj więcej dla {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Wczytaj więcej
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Wczytywanie zawartości dla gałęzi
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Błąd wczytywania
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Błąd
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Wczytaj ponownie zawartość dla {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Wczytaj ponownie
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Przeładuj, aby spróbować ponownie.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Wczytaj ponownie
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Nie można wczytać drzewa
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Zwiń gałąź
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Rozwiń gałąź
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Ikona dla {iconType}
|
package/i18n/pt-BR.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Carregando mais conteúdo",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Carregar mais para {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Carregar mais",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Carregando conteúdo para a ramificação",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Erro ao carregar",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Erro",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Recarregar conteúdo para {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Recarregar",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Recarregar para tentar novamente.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Recarregar",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Não foi possível carregar árvore",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Recolher ramificação",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expandir ramificação",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Ícone para {iconType}"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Carregando mais conteúdo
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Carregar mais para {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Carregar mais
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Carregando conteúdo para a ramificação
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Erro ao carregar
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Erro
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Recarregar conteúdo para {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Recarregar
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Recarregar para tentar novamente.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Recarregar
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Não foi possível carregar árvore
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Recolher ramificação
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expandir ramificação
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Ícone para {iconType}
|
package/i18n/ru-RU.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Загрузка большего количества контента",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Загрузить больше для {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Загрузить больше",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Загрузка контента для ветки",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Ошибка загрузки",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Ошибка",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Перезагрузить контент для {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Перезагрузить",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Перезагрузить, чтобы повторить попытку.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Перезагрузить",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Не удалось загрузить дерево",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Свернуть ветку",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Развернуть ветку",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Значок для {iconType}"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Загрузка большего количества контента
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Загрузить больше для {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Загрузить больше
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Загрузка контента для ветки
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Ошибка загрузки
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Ошибка
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Перезагрузить контент для {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Перезагрузить
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Перезагрузить, чтобы повторить попытку.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Перезагрузить
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Не удалось загрузить дерево
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Свернуть ветку
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Развернуть ветку
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Значок для {iconType}
|
package/i18n/sv-SE.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Läser in mer innehåll",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Läs in mer för {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Läs in mer",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Läser in innehåll för gren",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Inläsningsfel",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Fel",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Ladda om innehåll för {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Ladda om",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Ladda om för att försöka igen.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Ladda om",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Det gick inte att läsa in träd",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Dölj gren",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expandera gren",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Ikon för {iconType}"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Läser in mer innehåll
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Läs in mer för {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Läs in mer
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Läser in innehåll för gren
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Inläsningsfel
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Fel
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Ladda om innehåll för {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Ladda om
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Ladda om för att försöka igen.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Ladda om
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Det gick inte att läsa in träd
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Dölj gren
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expandera gren
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Ikon för {iconType}
|
package/i18n/tr-TR.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Daha fazla içerik yükleniyor",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "{nodeName} için Daha Fazla Yükle",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Daha Fazla Yükle",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Dal için içerik yükleniyor",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Yükleme Hatası",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Hata",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "{nodeName} için içeriği yeniden yükle",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Yeniden yükle",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Tekrar denemek için yeniden yükleyin.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Yeniden yükle",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Ağaç yüklenemiyor",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Dalı daralt",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Dalı genişlet",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "{iconType} için Simge"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = Daha fazla içerik yükleniyor
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = {nodeName} için Daha Fazla Yükle
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Daha Fazla Yükle
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Dal için içerik yükleniyor
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Yükleme Hatası
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Hata
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = {nodeName} için içeriği yeniden yükle
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Yeniden yükle
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Tekrar denemek için yeniden yükleyin.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Yeniden yükle
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Ağaç yüklenemiyor
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Dalı daralt
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Dalı genişlet
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = {iconType} için Simge
|
package/i18n/zh-CN.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "正在加载更多内容",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "为 {nodeName} 加载更多内容",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "加载更多内容",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "正在加载分支的内容",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "加载错误",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "错误",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "为 {nodeName} 重新加载内容",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "重新加载",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "重新加载以重试。",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "重新加载",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "无法加载树",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "折叠分支",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "展开分支",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "{iconType} 的图标"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = 正在加载更多内容
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = 为 {nodeName} 加载更多内容
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = 加载更多内容
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = 正在加载分支的内容
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = 加载错误
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = 错误
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = 为 {nodeName} 重新加载内容
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = 重新加载
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = 重新加载以重试。
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = 重新加载
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = 无法加载树
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = 折叠分支
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = 展开分支
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = {iconType} 的图标
|
package/i18n/zh-TW.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "正在載入更多內容",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "為 {nodeName} 載入更多",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "載入更多",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "正在載入分支的內容",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "載入錯誤",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "錯誤",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "重新載入 {nodeName} 的內容",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "重新載入",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "重新載入以再次嘗試。",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "重新載入",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "無法載入樹",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "收合分支",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "展開分支",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "{iconType} 的圖示"
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Aria label for the loading indicator that appears when the user clicks the 'Load more' or 'Reload' button
|
|
2
|
+
groupSharedFeatures.tree.branch.loadMore = 正在載入更多內容
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = 為 {nodeName} 載入更多
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = 載入更多
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = 正在載入分支的內容
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = 載入錯誤
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = 錯誤
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = 重新載入 {nodeName} 的內容
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = 重新載入
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = 重新載入以再次嘗試。
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = 重新載入
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = 無法載入樹
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = 收合分支
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = 展開分支
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = {iconType} 的圖示
|