@box/metadata-view 0.30.4 → 0.32.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/dist/esm/lib/components/action-bar/sort-dropdown.js +26 -19
- package/dist/i18n/bn-IN.js +7 -9
- package/dist/i18n/bn-IN.properties +7 -5
- package/dist/i18n/da-DK.js +7 -9
- package/dist/i18n/da-DK.properties +7 -5
- package/dist/i18n/de-DE.js +7 -9
- package/dist/i18n/de-DE.properties +7 -5
- package/dist/i18n/en-AU.js +1 -3
- package/dist/i18n/en-AU.properties +4 -2
- package/dist/i18n/en-CA.js +1 -3
- package/dist/i18n/en-CA.properties +4 -2
- package/dist/i18n/en-GB.js +1 -3
- package/dist/i18n/en-GB.properties +4 -2
- package/dist/i18n/en-x-pseudo.js +29 -31
- package/dist/i18n/en-x-pseudo.properties +30 -28
- package/dist/i18n/es-419.js +7 -9
- package/dist/i18n/es-419.properties +7 -5
- package/dist/i18n/es-ES.js +7 -9
- package/dist/i18n/es-ES.properties +7 -5
- package/dist/i18n/fi-FI.js +7 -9
- package/dist/i18n/fi-FI.properties +7 -5
- package/dist/i18n/fr-CA.js +7 -9
- package/dist/i18n/fr-CA.properties +7 -5
- package/dist/i18n/fr-FR.js +7 -9
- package/dist/i18n/fr-FR.properties +7 -5
- package/dist/i18n/hi-IN.js +7 -9
- package/dist/i18n/hi-IN.properties +7 -5
- package/dist/i18n/it-IT.js +7 -9
- package/dist/i18n/it-IT.properties +7 -5
- package/dist/i18n/ja-JP.js +7 -9
- package/dist/i18n/ja-JP.properties +7 -5
- package/dist/i18n/ko-KR.js +7 -9
- package/dist/i18n/ko-KR.properties +7 -5
- package/dist/i18n/nb-NO.js +7 -9
- package/dist/i18n/nb-NO.properties +7 -5
- package/dist/i18n/nl-NL.js +7 -9
- package/dist/i18n/nl-NL.properties +7 -5
- package/dist/i18n/pl-PL.js +7 -9
- package/dist/i18n/pl-PL.properties +7 -5
- package/dist/i18n/pt-BR.js +7 -9
- package/dist/i18n/pt-BR.properties +7 -5
- package/dist/i18n/ru-RU.js +7 -9
- package/dist/i18n/ru-RU.properties +7 -5
- package/dist/i18n/sv-SE.js +7 -9
- package/dist/i18n/sv-SE.properties +7 -5
- package/dist/i18n/tr-TR.js +7 -9
- package/dist/i18n/tr-TR.properties +7 -5
- package/dist/i18n/zh-CN.js +7 -9
- package/dist/i18n/zh-CN.properties +7 -5
- package/dist/i18n/zh-TW.js +7 -9
- package/dist/i18n/zh-TW.properties +7 -5
- package/dist/types/lib/components/action-bar/sort-dropdown.d.ts +4 -4
- package/package.json +4 -4
|
@@ -1,33 +1,40 @@
|
|
|
1
|
-
import { DropdownMenu as r, TriggerButton as
|
|
2
|
-
import { ArrowUp as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import { DropdownMenu as r, TriggerButton as w } from "@box/blueprint-web";
|
|
2
|
+
import { ArrowUp as u, ArrowDown as D } from "@box/blueprint-web-assets/icons/Fill";
|
|
3
|
+
import { useState as d } from "react";
|
|
4
|
+
import { jsxs as f, jsx as o } from "react/jsx-runtime";
|
|
5
|
+
const S = ({
|
|
6
|
+
initialSortByColumn: s,
|
|
7
|
+
initialSortDirection: g,
|
|
8
|
+
onSortChange: t,
|
|
9
|
+
sortableColumnNames: p
|
|
9
10
|
}) => {
|
|
10
|
-
const
|
|
11
|
-
|
|
11
|
+
const [i, c] = d(g), [e, h] = d(s), l = (n) => {
|
|
12
|
+
if (n === e) {
|
|
13
|
+
const a = i === "ascending" ? "descending" : "ascending";
|
|
14
|
+
c(a), t(n, a);
|
|
15
|
+
} else
|
|
16
|
+
h(n), c("ascending"), t(n, "ascending");
|
|
17
|
+
};
|
|
18
|
+
return /* @__PURE__ */ f(r.Root, {
|
|
12
19
|
children: [/* @__PURE__ */ o(r.Trigger, {
|
|
13
|
-
children: /* @__PURE__ */ o(
|
|
14
|
-
caretDirection:
|
|
20
|
+
children: /* @__PURE__ */ o(w, {
|
|
21
|
+
caretDirection: i === "ascending" ? "up" : "down",
|
|
15
22
|
label: e,
|
|
16
|
-
startIcon:
|
|
23
|
+
startIcon: i === "ascending" ? u : D,
|
|
17
24
|
variant: "tertiary"
|
|
18
25
|
})
|
|
19
26
|
}), /* @__PURE__ */ o(r.Content, {
|
|
20
27
|
children: /* @__PURE__ */ o(r.RadioGroup, {
|
|
21
|
-
onValueChange:
|
|
28
|
+
onValueChange: l,
|
|
22
29
|
value: e,
|
|
23
|
-
children:
|
|
24
|
-
value:
|
|
25
|
-
children:
|
|
26
|
-
},
|
|
30
|
+
children: p.map((n) => /* @__PURE__ */ o(r.RadioSelectItem, {
|
|
31
|
+
value: n,
|
|
32
|
+
children: n
|
|
33
|
+
}, n))
|
|
27
34
|
})
|
|
28
35
|
})]
|
|
29
36
|
});
|
|
30
37
|
};
|
|
31
38
|
export {
|
|
32
|
-
|
|
39
|
+
S as SortDropdown
|
|
33
40
|
};
|
package/dist/i18n/bn-IN.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.emptyState.body": "আপনার ফিল্টার বা কীওয়ার্ড সামঞ্জস্য করার চেষ্টা করুন।",
|
|
3
3
|
"groupSharedFeatures.emptyState.heading": "দুঃখিত, আপনি যা খুঁজছেন, তা আমরা খুঁজে পাইনি।",
|
|
4
|
-
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "
|
|
5
|
-
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "
|
|
6
|
-
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "
|
|
4
|
+
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "হ্রাস",
|
|
5
|
+
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "বৃদ্ধি",
|
|
6
|
+
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "স্লাইডার",
|
|
7
7
|
"groupSharedFeatures.metadataView.actionBar.switchToGridView": "গ্রিড ভিউতে স্যুইচ করুন",
|
|
8
8
|
"groupSharedFeatures.metadataView.actionBar.switchToListView": "তালিকা ভিউতে স্যুইচ করুন",
|
|
9
9
|
"groupSharedFeatures.metadataView.filterRow.AllFilters": "সকল ফিল্টার",
|
|
10
10
|
"groupSharedFeatures.metadataView.filterRow.applyButton": "প্রয়োগ করুন",
|
|
11
11
|
"groupSharedFeatures.metadataView.filterRow.chipNameWithCount": "{name} ({count})",
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "পরিষ্কার করুন",
|
|
13
|
-
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "
|
|
13
|
+
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "ফাইলের ধরন",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "কিওয়ার্ড লিখুন",
|
|
15
15
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "মূল্য সেট করুন",
|
|
16
16
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "সমস্ত মুছুন",
|
|
@@ -23,12 +23,10 @@ export default {
|
|
|
23
23
|
"groupSharedFeatures.metadataView.itemList.listView": "তালিকা ভিউ",
|
|
24
24
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "রিফ্রেশ করুন",
|
|
25
25
|
"groupSharedFeatures.metadataView.itemList.selectAll": "সমস্ত নির্বাচন করুন",
|
|
26
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "
|
|
27
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "
|
|
26
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "অনুসন্ধান করুন",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "পরিষ্কার করুন",
|
|
28
28
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "পরবর্তী",
|
|
29
29
|
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "{totalCount} এন্ট্রির {startEntryIndex} থেকে {endEntryIndex} দেখানো হচ্ছে",
|
|
30
30
|
"groupSharedFeatures.metadataView.pagination.paginationLabel": "পেজিনেশন নেভিগেশন নিয়ন্ত্রণ এবং বর্তমান পৃষ্ঠার তথ্য",
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "পূর্ববর্তী"
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "অনুসন্ধান করুন",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "পরিষ্কার করুন"
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "পূর্ববর্তী"
|
|
34
32
|
}
|
|
@@ -3,11 +3,11 @@ groupSharedFeatures.emptyState.body = আপনার ফিল্টার ব
|
|
|
3
3
|
# Heading for the empty state when no items are found
|
|
4
4
|
groupSharedFeatures.emptyState.heading = দুঃখিত, আপনি যা খুঁজছেন, তা আমরা খুঁজে পাইনি।
|
|
5
5
|
# Label for decreasing the size of column.
|
|
6
|
-
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize =
|
|
6
|
+
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize = হ্রাস
|
|
7
7
|
# Label for increasing the size of column.
|
|
8
|
-
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize =
|
|
8
|
+
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize = বৃদ্ধি
|
|
9
9
|
# Label for the slider that controls the size of column.
|
|
10
|
-
groupSharedFeatures.metadataView.actionBar.sliderLabel =
|
|
10
|
+
groupSharedFeatures.metadataView.actionBar.sliderLabel = স্লাইডার
|
|
11
11
|
# Label to switch to grid view
|
|
12
12
|
groupSharedFeatures.metadataView.actionBar.switchToGridView = গ্রিড ভিউতে স্যুইচ করুন
|
|
13
13
|
# Label to switch to list view
|
|
@@ -20,6 +20,8 @@ groupSharedFeatures.metadataView.filterRow.applyButton = প্রয়োগ
|
|
|
20
20
|
groupSharedFeatures.metadataView.filterRow.chipNameWithCount = {name} ({count})
|
|
21
21
|
# Button label to clear the current input in a textarea
|
|
22
22
|
groupSharedFeatures.metadataView.filterRow.clearButton = পরিষ্কার করুন
|
|
23
|
+
# Title for the file type filter group
|
|
24
|
+
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = ফাইলের ধরন
|
|
23
25
|
# Placeholder text for the keyword search filter
|
|
24
26
|
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = কিওয়ার্ড লিখুন
|
|
25
27
|
# Placeholder text for the input field in the filter row
|
|
@@ -45,9 +47,9 @@ groupSharedFeatures.metadataView.itemList.refreshButton = রিফ্রেশ
|
|
|
45
47
|
# Label for the select all checkbox in the metadata table
|
|
46
48
|
groupSharedFeatures.metadataView.itemList.selectAll = সমস্ত নির্বাচন করুন
|
|
47
49
|
# Aria label for the search input
|
|
48
|
-
groupSharedFeatures.metadataView.
|
|
50
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = অনুসন্ধান করুন
|
|
49
51
|
# Aria label for the clear button in the search input
|
|
50
|
-
groupSharedFeatures.metadataView.
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel = পরিষ্কার করুন
|
|
51
53
|
# Label for the next page button
|
|
52
54
|
groupSharedFeatures.metadataView.pagination.nextPageButton = পরবর্তী
|
|
53
55
|
# Pagination menu status with the range of entries shown
|
package/dist/i18n/da-DK.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.emptyState.body": "Prøv at justere dine filtre eller søgeord.",
|
|
3
3
|
"groupSharedFeatures.emptyState.heading": "Beklager, vi kunne ikke finde det, du leder efter.",
|
|
4
|
-
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "
|
|
5
|
-
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "
|
|
6
|
-
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "
|
|
4
|
+
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "Fald",
|
|
5
|
+
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "Forøgelse",
|
|
6
|
+
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "Skyder",
|
|
7
7
|
"groupSharedFeatures.metadataView.actionBar.switchToGridView": "Skift til gittervisning",
|
|
8
8
|
"groupSharedFeatures.metadataView.actionBar.switchToListView": "Skift til listevisning",
|
|
9
9
|
"groupSharedFeatures.metadataView.filterRow.AllFilters": "Alle filtre",
|
|
10
10
|
"groupSharedFeatures.metadataView.filterRow.applyButton": "Anvend",
|
|
11
11
|
"groupSharedFeatures.metadataView.filterRow.chipNameWithCount": "{name} ({count})",
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Ryd",
|
|
13
|
-
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "
|
|
13
|
+
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Filtype",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Indtast nøgleord",
|
|
15
15
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Indstil værdi",
|
|
16
16
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Ryd alt",
|
|
@@ -23,12 +23,10 @@ export default {
|
|
|
23
23
|
"groupSharedFeatures.metadataView.itemList.listView": "Listevisning",
|
|
24
24
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Opdater",
|
|
25
25
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Vælg alt/alle",
|
|
26
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "
|
|
27
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "
|
|
26
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Søg",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Ryd",
|
|
28
28
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Næste",
|
|
29
29
|
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "Viser {startEntryIndex} til {endEntryIndex} af {totalCount} indgange",
|
|
30
30
|
"groupSharedFeatures.metadataView.pagination.paginationLabel": "Navigationskontroller og oplysninger om den aktuelle side",
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Foregående"
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "Søg",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "Ryd"
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Foregående"
|
|
34
32
|
}
|
|
@@ -3,11 +3,11 @@ groupSharedFeatures.emptyState.body = Prøv at justere dine filtre eller søgeor
|
|
|
3
3
|
# Heading for the empty state when no items are found
|
|
4
4
|
groupSharedFeatures.emptyState.heading = Beklager, vi kunne ikke finde det, du leder efter.
|
|
5
5
|
# Label for decreasing the size of column.
|
|
6
|
-
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize =
|
|
6
|
+
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize = Fald
|
|
7
7
|
# Label for increasing the size of column.
|
|
8
|
-
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize =
|
|
8
|
+
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize = Forøgelse
|
|
9
9
|
# Label for the slider that controls the size of column.
|
|
10
|
-
groupSharedFeatures.metadataView.actionBar.sliderLabel =
|
|
10
|
+
groupSharedFeatures.metadataView.actionBar.sliderLabel = Skyder
|
|
11
11
|
# Label to switch to grid view
|
|
12
12
|
groupSharedFeatures.metadataView.actionBar.switchToGridView = Skift til gittervisning
|
|
13
13
|
# Label to switch to list view
|
|
@@ -20,6 +20,8 @@ groupSharedFeatures.metadataView.filterRow.applyButton = Anvend
|
|
|
20
20
|
groupSharedFeatures.metadataView.filterRow.chipNameWithCount = {name} ({count})
|
|
21
21
|
# Button label to clear the current input in a textarea
|
|
22
22
|
groupSharedFeatures.metadataView.filterRow.clearButton = Ryd
|
|
23
|
+
# Title for the file type filter group
|
|
24
|
+
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = Filtype
|
|
23
25
|
# Placeholder text for the keyword search filter
|
|
24
26
|
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = Indtast nøgleord
|
|
25
27
|
# Placeholder text for the input field in the filter row
|
|
@@ -45,9 +47,9 @@ groupSharedFeatures.metadataView.itemList.refreshButton = Opdater
|
|
|
45
47
|
# Label for the select all checkbox in the metadata table
|
|
46
48
|
groupSharedFeatures.metadataView.itemList.selectAll = Vælg alt/alle
|
|
47
49
|
# Aria label for the search input
|
|
48
|
-
groupSharedFeatures.metadataView.
|
|
50
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = Søg
|
|
49
51
|
# Aria label for the clear button in the search input
|
|
50
|
-
groupSharedFeatures.metadataView.
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel = Ryd
|
|
51
53
|
# Label for the next page button
|
|
52
54
|
groupSharedFeatures.metadataView.pagination.nextPageButton = Næste
|
|
53
55
|
# Pagination menu status with the range of entries shown
|
package/dist/i18n/de-DE.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.emptyState.body": "Versuchen Sie es damit, dass Sie Ihre Filter oder Schlüsselwörter anpassen.",
|
|
3
3
|
"groupSharedFeatures.emptyState.heading": "Leider ergab Ihre Suche keine Ergebnisse.",
|
|
4
|
-
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "
|
|
5
|
-
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "
|
|
6
|
-
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "
|
|
4
|
+
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "Verkleinern",
|
|
5
|
+
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "Vergrößern",
|
|
6
|
+
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "Schieberegler",
|
|
7
7
|
"groupSharedFeatures.metadataView.actionBar.switchToGridView": "Zur Rasteransicht wechseln",
|
|
8
8
|
"groupSharedFeatures.metadataView.actionBar.switchToListView": "Zur Listenansicht wechseln",
|
|
9
9
|
"groupSharedFeatures.metadataView.filterRow.AllFilters": "Alle Filter",
|
|
10
10
|
"groupSharedFeatures.metadataView.filterRow.applyButton": "Anwenden",
|
|
11
11
|
"groupSharedFeatures.metadataView.filterRow.chipNameWithCount": "{name} ({count})",
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Leeren",
|
|
13
|
-
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "
|
|
13
|
+
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Dateityp",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Schlüsselwörter eingeben",
|
|
15
15
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Wert festlegen",
|
|
16
16
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Alles löschen",
|
|
@@ -23,12 +23,10 @@ export default {
|
|
|
23
23
|
"groupSharedFeatures.metadataView.itemList.listView": "Listenansicht",
|
|
24
24
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Aktualisieren",
|
|
25
25
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Alle auswählen",
|
|
26
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "
|
|
27
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "
|
|
26
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Suchen",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Leeren",
|
|
28
28
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Weiter",
|
|
29
29
|
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "{startEntryIndex} bis {endEntryIndex} von {totalCount} Einträgen werden angezeigt",
|
|
30
30
|
"groupSharedFeatures.metadataView.pagination.paginationLabel": "Steuerelemente für die Navigation zwischen Seiten und aktuelle Seitenangaben",
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Zurück"
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "Suchen",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "Leeren"
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Zurück"
|
|
34
32
|
}
|
|
@@ -3,11 +3,11 @@ groupSharedFeatures.emptyState.body = Versuchen Sie es damit, dass Sie Ihre Filt
|
|
|
3
3
|
# Heading for the empty state when no items are found
|
|
4
4
|
groupSharedFeatures.emptyState.heading = Leider ergab Ihre Suche keine Ergebnisse.
|
|
5
5
|
# Label for decreasing the size of column.
|
|
6
|
-
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize =
|
|
6
|
+
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize = Verkleinern
|
|
7
7
|
# Label for increasing the size of column.
|
|
8
|
-
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize =
|
|
8
|
+
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize = Vergrößern
|
|
9
9
|
# Label for the slider that controls the size of column.
|
|
10
|
-
groupSharedFeatures.metadataView.actionBar.sliderLabel =
|
|
10
|
+
groupSharedFeatures.metadataView.actionBar.sliderLabel = Schieberegler
|
|
11
11
|
# Label to switch to grid view
|
|
12
12
|
groupSharedFeatures.metadataView.actionBar.switchToGridView = Zur Rasteransicht wechseln
|
|
13
13
|
# Label to switch to list view
|
|
@@ -20,6 +20,8 @@ groupSharedFeatures.metadataView.filterRow.applyButton = Anwenden
|
|
|
20
20
|
groupSharedFeatures.metadataView.filterRow.chipNameWithCount = {name} ({count})
|
|
21
21
|
# Button label to clear the current input in a textarea
|
|
22
22
|
groupSharedFeatures.metadataView.filterRow.clearButton = Leeren
|
|
23
|
+
# Title for the file type filter group
|
|
24
|
+
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = Dateityp
|
|
23
25
|
# Placeholder text for the keyword search filter
|
|
24
26
|
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = Schlüsselwörter eingeben
|
|
25
27
|
# Placeholder text for the input field in the filter row
|
|
@@ -45,9 +47,9 @@ groupSharedFeatures.metadataView.itemList.refreshButton = Aktualisieren
|
|
|
45
47
|
# Label for the select all checkbox in the metadata table
|
|
46
48
|
groupSharedFeatures.metadataView.itemList.selectAll = Alle auswählen
|
|
47
49
|
# Aria label for the search input
|
|
48
|
-
groupSharedFeatures.metadataView.
|
|
50
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = Suchen
|
|
49
51
|
# Aria label for the clear button in the search input
|
|
50
|
-
groupSharedFeatures.metadataView.
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel = Leeren
|
|
51
53
|
# Label for the next page button
|
|
52
54
|
groupSharedFeatures.metadataView.pagination.nextPageButton = Weiter
|
|
53
55
|
# Pagination menu status with the range of entries shown
|
package/dist/i18n/en-AU.js
CHANGED
|
@@ -28,7 +28,5 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Next",
|
|
29
29
|
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "Showing {startEntryIndex} to {endEntryIndex} of {totalCount} entries",
|
|
30
30
|
"groupSharedFeatures.metadataView.pagination.paginationLabel": "Pagination navigation controls and current page information",
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Previous"
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "Search",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "Clear"
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Previous"
|
|
34
32
|
}
|
|
@@ -20,6 +20,8 @@ groupSharedFeatures.metadataView.filterRow.applyButton = Apply
|
|
|
20
20
|
groupSharedFeatures.metadataView.filterRow.chipNameWithCount = {name} ({count})
|
|
21
21
|
# Button label to clear the current input in a textarea
|
|
22
22
|
groupSharedFeatures.metadataView.filterRow.clearButton = Clear
|
|
23
|
+
# Title for the file type filter group
|
|
24
|
+
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = File Type
|
|
23
25
|
# Placeholder text for the keyword search filter
|
|
24
26
|
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = Enter keywords
|
|
25
27
|
# Placeholder text for the input field in the filter row
|
|
@@ -45,9 +47,9 @@ groupSharedFeatures.metadataView.itemList.refreshButton = Refresh
|
|
|
45
47
|
# Label for the select all checkbox in the metadata table
|
|
46
48
|
groupSharedFeatures.metadataView.itemList.selectAll = Select all
|
|
47
49
|
# Aria label for the search input
|
|
48
|
-
groupSharedFeatures.metadataView.
|
|
50
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = Search
|
|
49
51
|
# Aria label for the clear button in the search input
|
|
50
|
-
groupSharedFeatures.metadataView.
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel = Clear
|
|
51
53
|
# Label for the next page button
|
|
52
54
|
groupSharedFeatures.metadataView.pagination.nextPageButton = Next
|
|
53
55
|
# Pagination menu status with the range of entries shown
|
package/dist/i18n/en-CA.js
CHANGED
|
@@ -28,7 +28,5 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Next",
|
|
29
29
|
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "Showing {startEntryIndex} to {endEntryIndex} of {totalCount} entries",
|
|
30
30
|
"groupSharedFeatures.metadataView.pagination.paginationLabel": "Pagination navigation controls and current page information",
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Previous"
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "Search",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "Clear"
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Previous"
|
|
34
32
|
}
|
|
@@ -20,6 +20,8 @@ groupSharedFeatures.metadataView.filterRow.applyButton = Apply
|
|
|
20
20
|
groupSharedFeatures.metadataView.filterRow.chipNameWithCount = {name} ({count})
|
|
21
21
|
# Button label to clear the current input in a textarea
|
|
22
22
|
groupSharedFeatures.metadataView.filterRow.clearButton = Clear
|
|
23
|
+
# Title for the file type filter group
|
|
24
|
+
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = File Type
|
|
23
25
|
# Placeholder text for the keyword search filter
|
|
24
26
|
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = Enter keywords
|
|
25
27
|
# Placeholder text for the input field in the filter row
|
|
@@ -45,9 +47,9 @@ groupSharedFeatures.metadataView.itemList.refreshButton = Refresh
|
|
|
45
47
|
# Label for the select all checkbox in the metadata table
|
|
46
48
|
groupSharedFeatures.metadataView.itemList.selectAll = Select all
|
|
47
49
|
# Aria label for the search input
|
|
48
|
-
groupSharedFeatures.metadataView.
|
|
50
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = Search
|
|
49
51
|
# Aria label for the clear button in the search input
|
|
50
|
-
groupSharedFeatures.metadataView.
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel = Clear
|
|
51
53
|
# Label for the next page button
|
|
52
54
|
groupSharedFeatures.metadataView.pagination.nextPageButton = Next
|
|
53
55
|
# Pagination menu status with the range of entries shown
|
package/dist/i18n/en-GB.js
CHANGED
|
@@ -28,7 +28,5 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Next",
|
|
29
29
|
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "Showing {startEntryIndex} to {endEntryIndex} of {totalCount} entries",
|
|
30
30
|
"groupSharedFeatures.metadataView.pagination.paginationLabel": "Pagination navigation controls and current page information",
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Previous"
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "Search",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "Clear"
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Previous"
|
|
34
32
|
}
|
|
@@ -20,6 +20,8 @@ groupSharedFeatures.metadataView.filterRow.applyButton = Apply
|
|
|
20
20
|
groupSharedFeatures.metadataView.filterRow.chipNameWithCount = {name} ({count})
|
|
21
21
|
# Button label to clear the current input in a textarea
|
|
22
22
|
groupSharedFeatures.metadataView.filterRow.clearButton = Clear
|
|
23
|
+
# Title for the file type filter group
|
|
24
|
+
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = File Type
|
|
23
25
|
# Placeholder text for the keyword search filter
|
|
24
26
|
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = Enter keywords
|
|
25
27
|
# Placeholder text for the input field in the filter row
|
|
@@ -45,9 +47,9 @@ groupSharedFeatures.metadataView.itemList.refreshButton = Refresh
|
|
|
45
47
|
# Label for the select all checkbox in the metadata table
|
|
46
48
|
groupSharedFeatures.metadataView.itemList.selectAll = Select all
|
|
47
49
|
# Aria label for the search input
|
|
48
|
-
groupSharedFeatures.metadataView.
|
|
50
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = Search
|
|
49
51
|
# Aria label for the clear button in the search input
|
|
50
|
-
groupSharedFeatures.metadataView.
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel = Clear
|
|
51
53
|
# Label for the next page button
|
|
52
54
|
groupSharedFeatures.metadataView.pagination.nextPageButton = Next
|
|
53
55
|
# Pagination menu status with the range of entries shown
|
package/dist/i18n/en-x-pseudo.js
CHANGED
|
@@ -1,34 +1,32 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
"groupSharedFeatures.emptyState.body": "⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
3
|
-
"groupSharedFeatures.emptyState.heading": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
4
|
-
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "⟦萬萬
|
|
5
|
-
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "⟦萬萬
|
|
6
|
-
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "⟦萬
|
|
7
|
-
"groupSharedFeatures.metadataView.actionBar.switchToGridView": "⟦萬萬萬萬萬
|
|
8
|
-
"groupSharedFeatures.metadataView.actionBar.switchToListView": "⟦萬萬萬萬萬
|
|
9
|
-
"groupSharedFeatures.metadataView.filterRow.AllFilters": "⟦萬萬萬
|
|
10
|
-
"groupSharedFeatures.metadataView.filterRow.applyButton": "⟦萬
|
|
2
|
+
"groupSharedFeatures.emptyState.body": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ţřỳ àďĵµśτĩήĝ ўōúѓ ƒίļτеґŝ όѓ ĸêÿẃōŕďş. 國國國國國國國國國國國⟧",
|
|
3
|
+
"groupSharedFeatures.emptyState.heading": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕояŗŷ, шē çŏŭľďл'ŧ ƒìηď ẃнāţ ўσù'ґē ļòōκîηğ ƒøя. 國國國國國國國國國國國國國國⟧",
|
|
4
|
+
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "⟦萬萬 Ðėçяèãŝέ 國國⟧",
|
|
5
|
+
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "⟦萬萬 Îŋćяēǻśέ 國國⟧",
|
|
6
|
+
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "⟦萬 Ŝļĩďěґ 國⟧",
|
|
7
|
+
"groupSharedFeatures.metadataView.actionBar.switchToGridView": "⟦萬萬萬萬萬 Śωїŧ¢ĥ ŧő Ĝґïď Víĕẃ 國國國國國⟧",
|
|
8
|
+
"groupSharedFeatures.metadataView.actionBar.switchToListView": "⟦萬萬萬萬萬 Śшіŧсн ţő Ļïѕţ Vĩèώ 國國國國國⟧",
|
|
9
|
+
"groupSharedFeatures.metadataView.filterRow.AllFilters": "⟦萬萬萬 Ăľļ ₣ĩĺŧęяś 國國國⟧",
|
|
10
|
+
"groupSharedFeatures.metadataView.filterRow.applyButton": "⟦萬 ÂΡΡľỳ 國⟧",
|
|
11
11
|
"groupSharedFeatures.metadataView.filterRow.chipNameWithCount": "⟦萬萬萬 {name} ({count}) 國國國⟧",
|
|
12
|
-
"groupSharedFeatures.metadataView.filterRow.clearButton": "⟦萬
|
|
13
|
-
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "
|
|
14
|
-
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "⟦萬萬萬萬
|
|
15
|
-
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "⟦萬萬
|
|
16
|
-
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "⟦萬萬
|
|
17
|
-
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "⟦萬
|
|
18
|
-
"groupSharedFeatures.metadataView.filterSidepanel.filtersHeader": "⟦萬萬
|
|
19
|
-
"groupSharedFeatures.metadataView.filterSidepanel.showResultsButton": "⟦萬
|
|
20
|
-
"groupSharedFeatures.metadataView.gridList.gridView": "⟦萬萬
|
|
21
|
-
"groupSharedFeatures.metadataView.itemActionMenu.actionMenu": "⟦萬萬萬
|
|
22
|
-
"groupSharedFeatures.metadataView.itemList.errorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
23
|
-
"groupSharedFeatures.metadataView.itemList.listView": "⟦萬萬
|
|
24
|
-
"groupSharedFeatures.metadataView.itemList.refreshButton": "⟦萬萬
|
|
25
|
-
"groupSharedFeatures.metadataView.itemList.selectAll": "⟦萬萬
|
|
26
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "
|
|
27
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "
|
|
28
|
-
"groupSharedFeatures.metadataView.pagination.nextPageButton": "⟦萬
|
|
29
|
-
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
30
|
-
"groupSharedFeatures.metadataView.pagination.paginationLabel": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "⟦萬萬 P
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "⟦萬 Şéąгċĥ 國⟧",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "⟦萬 Çĺëãѓ 國⟧"
|
|
12
|
+
"groupSharedFeatures.metadataView.filterRow.clearButton": "⟦萬 Ċļėàґ 國⟧",
|
|
13
|
+
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "⟦萬萬 ₣ïľė ΤỳΡè 國國⟧",
|
|
14
|
+
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "⟦萬萬萬萬 Еňτĕґ кęУшŏŕďś 國國國國⟧",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "⟦萬萬 Ŝěŧ Vαľũе 國國⟧",
|
|
16
|
+
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "⟦萬萬 Ćĺėāř Āļĺ 國國⟧",
|
|
17
|
+
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "⟦萬 Ċľοŝĕ 國⟧",
|
|
18
|
+
"groupSharedFeatures.metadataView.filterSidepanel.filtersHeader": "⟦萬萬 ₣íľťêяś 國國⟧",
|
|
19
|
+
"groupSharedFeatures.metadataView.filterSidepanel.showResultsButton": "⟦萬 Śєαŕċĥ 國⟧",
|
|
20
|
+
"groupSharedFeatures.metadataView.gridList.gridView": "⟦萬萬 Ġяіď Vίεω 國國⟧",
|
|
21
|
+
"groupSharedFeatures.metadataView.itemActionMenu.actionMenu": "⟦萬萬萬 Ǻċťĭση mêηũ 國國國⟧",
|
|
22
|
+
"groupSharedFeatures.metadataView.itemList.errorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Şőmετĥïńğ щеňτ ŵřôňğ. Pľèäѕē řéƒŗëŝн ţħïś Ρâğє. 國國國國國國國國國國國國國國⟧",
|
|
23
|
+
"groupSharedFeatures.metadataView.itemList.listView": "⟦萬萬 Ŀīѕτ νīёẃ 國國⟧",
|
|
24
|
+
"groupSharedFeatures.metadataView.itemList.refreshButton": "⟦萬萬 Яεƒŗėśн 國國⟧",
|
|
25
|
+
"groupSharedFeatures.metadataView.itemList.selectAll": "⟦萬萬 Śèĺë¢ţ äĺļ 國國⟧",
|
|
26
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "⟦萬 Ѕěāŗ¢ħ 國⟧",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "⟦萬 Čľέāг 國⟧",
|
|
28
|
+
"groupSharedFeatures.metadataView.pagination.nextPageButton": "⟦萬 Ńέхŧ 國⟧",
|
|
29
|
+
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ŝĥōŵιήğ {startEntryIndex} ťό {endEntryIndex} όƒ {totalCount} ėńτяіеş 國國國國國國國國國國國⟧",
|
|
30
|
+
"groupSharedFeatures.metadataView.pagination.paginationLabel": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pāĝїŋâťĭõŋ ʼnâνιġáŧίòή ¢оηŧгоĺŝ ǻпď ċůŕгёηţ Ράġė îŋƒôґmåţĩöň 國國國國國國國國國國國國國國國國國⟧",
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "⟦萬萬 Přĕνіõůŝ 國國⟧"
|
|
34
32
|
}
|
|
@@ -1,58 +1,60 @@
|
|
|
1
1
|
# Body text for the empty state when no items are found
|
|
2
|
-
groupSharedFeatures.emptyState.body = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
2
|
+
groupSharedFeatures.emptyState.body = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ţřỳ àďĵµśτĩήĝ ўōúѓ ƒίļτеґŝ όѓ ĸêÿẃōŕďş. 國國國國國國國國國國國⟧
|
|
3
3
|
# Heading for the empty state when no items are found
|
|
4
|
-
groupSharedFeatures.emptyState.heading = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
4
|
+
groupSharedFeatures.emptyState.heading = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕояŗŷ, шē çŏŭľďл'ŧ ƒìηď ẃнāţ ўσù'ґē ļòōκîηğ ƒøя. 國國國國國國國國國國國國國國⟧
|
|
5
5
|
# Label for decreasing the size of column.
|
|
6
|
-
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize = ⟦萬萬
|
|
6
|
+
groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize = ⟦萬萬 Ðėçяèãŝέ 國國⟧
|
|
7
7
|
# Label for increasing the size of column.
|
|
8
|
-
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize = ⟦萬萬
|
|
8
|
+
groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize = ⟦萬萬 Îŋćяēǻśέ 國國⟧
|
|
9
9
|
# Label for the slider that controls the size of column.
|
|
10
|
-
groupSharedFeatures.metadataView.actionBar.sliderLabel = ⟦萬
|
|
10
|
+
groupSharedFeatures.metadataView.actionBar.sliderLabel = ⟦萬 Ŝļĩďěґ 國⟧
|
|
11
11
|
# Label to switch to grid view
|
|
12
|
-
groupSharedFeatures.metadataView.actionBar.switchToGridView = ⟦萬萬萬萬萬
|
|
12
|
+
groupSharedFeatures.metadataView.actionBar.switchToGridView = ⟦萬萬萬萬萬 Śωїŧ¢ĥ ŧő Ĝґïď Víĕẃ 國國國國國⟧
|
|
13
13
|
# Label to switch to list view
|
|
14
|
-
groupSharedFeatures.metadataView.actionBar.switchToListView = ⟦萬萬萬萬萬
|
|
14
|
+
groupSharedFeatures.metadataView.actionBar.switchToListView = ⟦萬萬萬萬萬 Śшіŧсн ţő Ļïѕţ Vĩèώ 國國國國國⟧
|
|
15
15
|
# Button label to open the sidepanel with all filters
|
|
16
|
-
groupSharedFeatures.metadataView.filterRow.AllFilters = ⟦萬萬萬
|
|
16
|
+
groupSharedFeatures.metadataView.filterRow.AllFilters = ⟦萬萬萬 Ăľļ ₣ĩĺŧęяś 國國國⟧
|
|
17
17
|
# Button label to apply the current input as a filter to the metadata table
|
|
18
|
-
groupSharedFeatures.metadataView.filterRow.applyButton = ⟦萬
|
|
18
|
+
groupSharedFeatures.metadataView.filterRow.applyButton = ⟦萬 ÂΡΡľỳ 國⟧
|
|
19
19
|
# Label for a filter chip that includes the name and count of selected options
|
|
20
20
|
groupSharedFeatures.metadataView.filterRow.chipNameWithCount = ⟦萬萬萬 {name} ({count}) 國國國⟧
|
|
21
21
|
# Button label to clear the current input in a textarea
|
|
22
|
-
groupSharedFeatures.metadataView.filterRow.clearButton = ⟦萬
|
|
22
|
+
groupSharedFeatures.metadataView.filterRow.clearButton = ⟦萬 Ċļėàґ 國⟧
|
|
23
|
+
# Title for the file type filter group
|
|
24
|
+
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = ⟦萬萬 ₣ïľė ΤỳΡè 國國⟧
|
|
23
25
|
# Placeholder text for the keyword search filter
|
|
24
|
-
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = ⟦萬萬萬萬
|
|
26
|
+
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = ⟦萬萬萬萬 Еňτĕґ кęУшŏŕďś 國國國國⟧
|
|
25
27
|
# Placeholder text for the input field in the filter row
|
|
26
|
-
groupSharedFeatures.metadataView.filterRow.textInputPlaceholder = ⟦萬萬
|
|
28
|
+
groupSharedFeatures.metadataView.filterRow.textInputPlaceholder = ⟦萬萬 Ŝěŧ Vαľũе 國國⟧
|
|
27
29
|
# Button label to clear all filters in the sidepanel
|
|
28
|
-
groupSharedFeatures.metadataView.filterSidepanel.clearAllButton = ⟦萬萬
|
|
30
|
+
groupSharedFeatures.metadataView.filterSidepanel.clearAllButton = ⟦萬萬 Ćĺėāř Āļĺ 國國⟧
|
|
29
31
|
# Aria label for the close button in the filter sidepanel
|
|
30
|
-
groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel = ⟦萬
|
|
32
|
+
groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel = ⟦萬 Ċľοŝĕ 國⟧
|
|
31
33
|
# Header for the filter sidepanel
|
|
32
|
-
groupSharedFeatures.metadataView.filterSidepanel.filtersHeader = ⟦萬萬
|
|
34
|
+
groupSharedFeatures.metadataView.filterSidepanel.filtersHeader = ⟦萬萬 ₣íľťêяś 國國⟧
|
|
33
35
|
# Button label to apply filters and show results
|
|
34
|
-
groupSharedFeatures.metadataView.filterSidepanel.showResultsButton = ⟦萬
|
|
36
|
+
groupSharedFeatures.metadataView.filterSidepanel.showResultsButton = ⟦萬 Śєαŕċĥ 國⟧
|
|
35
37
|
# Label for the grid view of files and folders
|
|
36
|
-
groupSharedFeatures.metadataView.gridList.gridView = ⟦萬萬
|
|
38
|
+
groupSharedFeatures.metadataView.gridList.gridView = ⟦萬萬 Ġяіď Vίεω 國國⟧
|
|
37
39
|
# Label for the action menu for an item in the metadata view list
|
|
38
|
-
groupSharedFeatures.metadataView.itemActionMenu.actionMenu = ⟦萬萬萬
|
|
40
|
+
groupSharedFeatures.metadataView.itemActionMenu.actionMenu = ⟦萬萬萬 Ǻċťĭση mêηũ 國國國⟧
|
|
39
41
|
# Error message displayed when metadata fails to load
|
|
40
|
-
groupSharedFeatures.metadataView.itemList.errorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
42
|
+
groupSharedFeatures.metadataView.itemList.errorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Şőmετĥïńğ щеňτ ŵřôňğ. Pľèäѕē řéƒŗëŝн ţħïś Ρâğє. 國國國國國國國國國國國國國國⟧
|
|
41
43
|
# Label for the list of files and folders displayed in a list view
|
|
42
|
-
groupSharedFeatures.metadataView.itemList.listView = ⟦萬萬
|
|
44
|
+
groupSharedFeatures.metadataView.itemList.listView = ⟦萬萬 Ŀīѕτ νīёẃ 國國⟧
|
|
43
45
|
# Label for the refresh button in error state
|
|
44
|
-
groupSharedFeatures.metadataView.itemList.refreshButton = ⟦萬萬
|
|
46
|
+
groupSharedFeatures.metadataView.itemList.refreshButton = ⟦萬萬 Яεƒŗėśн 國國⟧
|
|
45
47
|
# Label for the select all checkbox in the metadata table
|
|
46
|
-
groupSharedFeatures.metadataView.itemList.selectAll = ⟦萬萬
|
|
48
|
+
groupSharedFeatures.metadataView.itemList.selectAll = ⟦萬萬 Śèĺë¢ţ äĺļ 國國⟧
|
|
47
49
|
# Aria label for the search input
|
|
48
|
-
groupSharedFeatures.metadataView.
|
|
50
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = ⟦萬 Ѕěāŗ¢ħ 國⟧
|
|
49
51
|
# Aria label for the clear button in the search input
|
|
50
|
-
groupSharedFeatures.metadataView.
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel = ⟦萬 Čľέāг 國⟧
|
|
51
53
|
# Label for the next page button
|
|
52
|
-
groupSharedFeatures.metadataView.pagination.nextPageButton = ⟦萬
|
|
54
|
+
groupSharedFeatures.metadataView.pagination.nextPageButton = ⟦萬 Ńέхŧ 國⟧
|
|
53
55
|
# Pagination menu status with the range of entries shown
|
|
54
|
-
groupSharedFeatures.metadataView.pagination.pageEntryStatus = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
56
|
+
groupSharedFeatures.metadataView.pagination.pageEntryStatus = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ŝĥōŵιήğ {startEntryIndex} ťό {endEntryIndex} όƒ {totalCount} ėńτяіеş 國國國國國國國國國國國⟧
|
|
55
57
|
# Aria label for the pagination component, which includes entry status and previous/next page controls
|
|
56
|
-
groupSharedFeatures.metadataView.pagination.paginationLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
58
|
+
groupSharedFeatures.metadataView.pagination.paginationLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pāĝїŋâťĭõŋ ʼnâνιġáŧίòή ¢оηŧгоĺŝ ǻпď ċůŕгёηţ Ράġė îŋƒôґmåţĩöň 國國國國國國國國國國國國國國國國國⟧
|
|
57
59
|
# Label for the previous page button
|
|
58
|
-
groupSharedFeatures.metadataView.pagination.previousPageButton = ⟦萬萬 P
|
|
60
|
+
groupSharedFeatures.metadataView.pagination.previousPageButton = ⟦萬萬 Přĕνіõůŝ 國國⟧
|
package/dist/i18n/es-419.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.emptyState.body": "Intente ajustar los filtros o palabras clave.",
|
|
3
3
|
"groupSharedFeatures.emptyState.heading": "Lo sentimos, no hemos podido encontrar lo que buscaba.",
|
|
4
|
-
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "
|
|
5
|
-
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "
|
|
6
|
-
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "
|
|
4
|
+
"groupSharedFeatures.metadataView.actionBar.sliderDecreaseSize": "Reducir",
|
|
5
|
+
"groupSharedFeatures.metadataView.actionBar.sliderIncreaseSize": "Aumentar",
|
|
6
|
+
"groupSharedFeatures.metadataView.actionBar.sliderLabel": "Deslizador",
|
|
7
7
|
"groupSharedFeatures.metadataView.actionBar.switchToGridView": "Cambiar a vista de cuadrícula",
|
|
8
8
|
"groupSharedFeatures.metadataView.actionBar.switchToListView": "Cambiar a vista de lista",
|
|
9
9
|
"groupSharedFeatures.metadataView.filterRow.AllFilters": "Todos los filtros",
|
|
10
10
|
"groupSharedFeatures.metadataView.filterRow.applyButton": "Aplicar",
|
|
11
11
|
"groupSharedFeatures.metadataView.filterRow.chipNameWithCount": "{name} ({count})",
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Eliminar",
|
|
13
|
-
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "
|
|
13
|
+
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Tipo de archivo",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Introducir palabras clave",
|
|
15
15
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Definir valor",
|
|
16
16
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Borrar todos",
|
|
@@ -23,12 +23,10 @@ export default {
|
|
|
23
23
|
"groupSharedFeatures.metadataView.itemList.listView": "Vista de lista",
|
|
24
24
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Actualizar",
|
|
25
25
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Seleccionar todos",
|
|
26
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "
|
|
27
|
-
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "
|
|
26
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Buscar",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Eliminar",
|
|
28
28
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Siguiente",
|
|
29
29
|
"groupSharedFeatures.metadataView.pagination.pageEntryStatus": "Mostrando {startEntryIndex} a {endEntryIndex} de {totalCount} entradas",
|
|
30
30
|
"groupSharedFeatures.metadataView.pagination.paginationLabel": "Controles de navegación de paginación e información de la página actual",
|
|
31
|
-
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Anterior"
|
|
32
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputAriaLabel": "Buscar",
|
|
33
|
-
"groupSharedFeatures.metadataView.metadataSearchField.searchInputClearAriaLabel": "Eliminar"
|
|
31
|
+
"groupSharedFeatures.metadataView.pagination.previousPageButton": "Anterior"
|
|
34
32
|
}
|