@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/da-DK.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Indlæser mere indhold",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Indlæs mere for {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Læs mere",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Indlæser indhold til gren",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Fejl ved indlæsning",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Fejl",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Genindlæs indhold for {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Genindlæs",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Genindlæs for at prøve igen.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Genindlæs",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Træet kunne ikke indlæses",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Sammenbrud gren",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Udvid gren",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Ikon til {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 = Indlæser mere indhold
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Indlæs mere for {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Læs mere
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Indlæser indhold til gren
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Fejl ved indlæsning
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Fejl
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Genindlæs indhold for {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Genindlæs
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Genindlæs for at prøve igen.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Genindlæs
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Træet kunne ikke indlæses
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Sammenbrud gren
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Udvid gren
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Ikon til {iconType}
|
package/i18n/de-DE.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Weitere Inhalte werden geladen",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Mehr laden für {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Mehr laden",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Inhalt für Verzweigung wird geladen",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Fehler beim Laden",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Fehler",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Inhalt für {nodeName} neu laden",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Neu laden",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Neu laden, um es erneut zu versuchen.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Neu laden",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Baum kann nicht geladen werden",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Verzweigung reduzieren",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Verzweigung erweitern",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Symbol 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 = Weitere Inhalte werden geladen
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Mehr laden für {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Mehr laden
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Inhalt für Verzweigung wird geladen
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Fehler beim Laden
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Fehler
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Inhalt für {nodeName} neu laden
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Neu laden
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Neu laden, um es erneut zu versuchen.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Neu laden
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Baum kann nicht geladen werden
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Verzweigung reduzieren
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Verzweigung erweitern
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Symbol für {iconType}
|
package/i18n/en-AU.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Loading more content",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Load More for {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Load More",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Loading content for branch",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Loading Error",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Error",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Reload content for {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Reload",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Re-load to try again.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Reload",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Unable to load tree",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Collapse branch",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expand branch",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icon 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 = Loading more content
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Load More for {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Load More
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Loading content for branch
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Loading Error
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Error
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Reload content for {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Reload
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Re-load to try again.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Reload
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Unable to load tree
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Collapse branch
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expand branch
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icon for {iconType}
|
package/i18n/en-CA.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Loading more content",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Load More for {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Load More",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Loading content for branch",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Loading Error",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Error",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Reload content for {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Reload",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Reload to try again.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Reload",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Unable to load tree",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Collapse branch",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expand branch",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icon 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 = Loading more content
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Load More for {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Load More
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Loading content for branch
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Loading Error
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Error
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Reload content for {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Reload
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Reload to try again.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Reload
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Unable to load tree
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Collapse branch
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expand branch
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icon for {iconType}
|
package/i18n/en-GB.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Loading more content",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Load More for {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Load More",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Loading content for branch",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Loading Error",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Error",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Reload content for {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Reload",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Re-load to try again.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Reload",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Unable to load tree",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Collapse branch",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expand branch",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icon 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 = Loading more content
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Load More for {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Load More
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Loading content for branch
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Loading Error
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Error
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Reload content for {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Reload
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Re-load to try again.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Reload
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Unable to load tree
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Collapse branch
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expand branch
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icon for {iconType}
|
package/i18n/en-US.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Loading more content",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Load More for {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Load More",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Loading content for branch",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Loading Error",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Error",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Reload content for {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Reload",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Reload to try again.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Reload",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Unable to load tree",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Collapse branch",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expand branch",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icon 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 = Loading more content
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Load More for {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Load More
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Loading content for branch
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Loading Error
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Error
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Reload content for {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Reload
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Reload to try again.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Reload
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Unable to load tree
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Collapse branch
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expand branch
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icon for {iconType}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "⟦萬萬萬萬萬 Ľσáďįлĝ móгê ĉòηţēŋť 國國國國國⟧",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "⟦萬萬萬萬萬 Ĺõǻď Μσгє ƒоґ {nodeName} 國國國國國⟧",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "⟦萬萬 Ļõāď Мøґë 國國⟧",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "⟦萬萬萬萬萬萬萬 Ļοāďĭńğ čøηţėήŧ ƒőг ьřàʼn¢н 國國國國國國國⟧",
|
|
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 = ⟦萬萬萬萬萬 Ľσáďįлĝ móгê ĉòηţēŋť 國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬 Ļοāďĭńğ čøηţėήŧ ƒőг ьřàʼn¢н 國國國國國國國⟧
|
|
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/es-419.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Cargar más contenido",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Cargar más para {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Cargar más",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Cargando contenido para la sección",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Error de carga",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Error",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Recargar contenido para {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Recargar",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Vuelve a cargar para intentarlo de nuevo.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Recargar",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "No se pudo cargar el árbol",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Contraer sección",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expandir sección",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icono 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 = Cargar más contenido
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Cargar más para {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Cargar más
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Cargando contenido para la sección
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Error de carga
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Error
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Recargar contenido para {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Recargar
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Vuelve a cargar para intentarlo de nuevo.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Recargar
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = No se pudo cargar el árbol
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Contraer sección
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expandir sección
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icono para {iconType}
|
package/i18n/es-ES.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Cargar más contenido",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Cargar más para {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Cargar más",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Cargando contenido para la sección",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Error de carga",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Error",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Recargar contenido para {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Recargar",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Vuelve a cargar para intentarlo de nuevo.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Recargar",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "No se pudo cargar el árbol",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Contraer sección",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Expandir sección",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icono 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 = Cargar más contenido
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Cargar más para {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Cargar más
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Cargando contenido para la sección
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Error de carga
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Error
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Recargar contenido para {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Recargar
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Vuelve a cargar para intentarlo de nuevo.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Recargar
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = No se pudo cargar el árbol
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Contraer sección
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Expandir sección
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icono para {iconType}
|
package/i18n/fi-FI.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Ladataan lisää sisältöä",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Lataa lisää {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "lataa Lisää",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Haaran sisällön lataaminen",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Latausvirhe",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Virhe",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Lataa sisältö kohteelle {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Lataa uudelleen",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Yritä lataamalla uudelleen.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Lataa uudelleen",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Puuta ei voi ladata",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Pienennö haara",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Laajenna haara",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Kuvake kohteelle {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 = Ladataan lisää sisältöä
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Lataa lisää {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = lataa Lisää
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Haaran sisällön lataaminen
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Latausvirhe
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Virhe
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Lataa sisältö kohteelle {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Lataa uudelleen
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Yritä lataamalla uudelleen.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Lataa uudelleen
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Puuta ei voi ladata
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Pienennö haara
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Laajenna haara
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Kuvake kohteelle {iconType}
|
package/i18n/fr-CA.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Chargement de plus de contenu",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Charger plus pour {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Charger plus",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Chargement du contenu de la branche",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Erreur de chargement",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Erreur",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Recharger le contenu pour {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Recharger",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Recharger pour réessayer.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Recharger",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Impossible de charger l'arbre",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Réduire la branche",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Agrandir la branche",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icône pour {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 = Chargement de plus de contenu
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Charger plus pour {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Charger plus
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Chargement du contenu de la branche
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Erreur de chargement
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Erreur
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Recharger le contenu pour {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Recharger
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Recharger pour réessayer.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Recharger
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Impossible de charger l'arbre
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Réduire la branche
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Agrandir la branche
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icône pour {iconType}
|
package/i18n/fr-FR.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.tree.branch.loadMore": "Chargement de plus de contenu",
|
|
3
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel": "Charger plus pour {nodeName}",
|
|
4
|
+
"groupSharedFeatures.tree.branch.loadMoreButtonTitle": "Charger plus",
|
|
5
|
+
"groupSharedFeatures.tree.branch.loaderLabel": "Chargement du contenu de la branche",
|
|
6
|
+
"groupSharedFeatures.tree.branch.loadingError": "Erreur de chargement",
|
|
7
|
+
"groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel": "Erreur",
|
|
8
|
+
"groupSharedFeatures.tree.branch.reloadButtonAriaLabel": "Recharger le contenu pour {nodeName}",
|
|
9
|
+
"groupSharedFeatures.tree.branch.reloadButtonTitle": "Recharger",
|
|
10
|
+
"groupSharedFeatures.tree.error.body": "Recharger pour réessayer.",
|
|
11
|
+
"groupSharedFeatures.tree.error.reload": "Recharger",
|
|
12
|
+
"groupSharedFeatures.tree.error.title": "Impossible de charger l'arbre",
|
|
13
|
+
"groupSharedFeatures.tree.expander.collapse": "Réduire la branche",
|
|
14
|
+
"groupSharedFeatures.tree.expander.expand": "Agrandir la branche",
|
|
15
|
+
"groupSharedFeatures.tree.node.conLabel": "Icône pour {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 = Chargement de plus de contenu
|
|
3
|
+
# Aria label for the 'Load More' button
|
|
4
|
+
groupSharedFeatures.tree.branch.loadMoreButtonAriaLabel = Charger plus pour {nodeName}
|
|
5
|
+
# Title for the 'Load More' button
|
|
6
|
+
groupSharedFeatures.tree.branch.loadMoreButtonTitle = Charger plus
|
|
7
|
+
# Aria label for the loading indicator when a branch's content is loading
|
|
8
|
+
groupSharedFeatures.tree.branch.loaderLabel = Chargement du contenu de la branche
|
|
9
|
+
# Message displayed in an inline notice when loading failed
|
|
10
|
+
groupSharedFeatures.tree.branch.loadingError = Erreur de chargement
|
|
11
|
+
# Aria label for the error icon in the error inline notice
|
|
12
|
+
groupSharedFeatures.tree.branch.loadingErrorIconAriaLabel = Erreur
|
|
13
|
+
# Aria label for the 'Reload' button
|
|
14
|
+
groupSharedFeatures.tree.branch.reloadButtonAriaLabel = Recharger le contenu pour {nodeName}
|
|
15
|
+
# Title for the 'Reload' button
|
|
16
|
+
groupSharedFeatures.tree.branch.reloadButtonTitle = Recharger
|
|
17
|
+
# Body for the error message when the tree fails to load
|
|
18
|
+
groupSharedFeatures.tree.error.body = Recharger pour réessayer.
|
|
19
|
+
# Button text to reload tree
|
|
20
|
+
groupSharedFeatures.tree.error.reload = Recharger
|
|
21
|
+
# Title for the error message when the tree fails to load
|
|
22
|
+
groupSharedFeatures.tree.error.title = Impossible de charger l'arbre
|
|
23
|
+
# Aria label for the collapse button
|
|
24
|
+
groupSharedFeatures.tree.expander.collapse = Réduire la branche
|
|
25
|
+
# Aria label for the expand button
|
|
26
|
+
groupSharedFeatures.tree.expander.expand = Agrandir la branche
|
|
27
|
+
# Aria label for the icon in a node
|
|
28
|
+
groupSharedFeatures.tree.node.conLabel = Icône pour {iconType}
|
package/i18n/hi-IN.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} के लिए आइकन
|