@brightspace-ui/core 3.142.0 → 3.142.2
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/components/button/button-add.js +8 -6
- package/components/list/list-item-mixin.js +7 -0
- package/components/list/list-item-nav-mixin.js +42 -0
- package/components/list/list.js +24 -3
- package/lang/ar.js +85 -12
- package/lang/cy.js +85 -12
- package/lang/da.js +85 -12
- package/lang/de.js +85 -12
- package/lang/en-gb.js +85 -12
- package/lang/en.js +85 -12
- package/lang/es-es.js +85 -12
- package/lang/es.js +85 -12
- package/lang/fr-fr.js +85 -12
- package/lang/fr.js +85 -12
- package/lang/haw.js +85 -12
- package/lang/hi.js +85 -12
- package/lang/ja.js +77 -12
- package/lang/ko.js +77 -12
- package/lang/mi.js +85 -12
- package/lang/nl.js +85 -12
- package/lang/pt.js +85 -12
- package/lang/sv.js +85 -12
- package/lang/tr.js +85 -12
- package/lang/zh-cn.js +77 -12
- package/lang/zh-tw.js +78 -12
- package/package.json +1 -1
package/lang/de.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export default {
|
2
|
+
"__test__": "This will be removed in a follow-up PR (before translation)",
|
2
3
|
"components.alert.close": "Benachrichtigung schließen",
|
3
4
|
"components.breadcrumbs.breadcrumb": "Brotkrümelnavigation",
|
4
5
|
"components.button-add.addItem": "Element hinzufügen",
|
@@ -22,14 +23,33 @@ export default {
|
|
22
23
|
"components.filter.clearAnnounce": "Filter für {filterName} werden gelöscht",
|
23
24
|
"components.filter.clearDescription": "Filter für {filterName} löschen",
|
24
25
|
"components.filter.loading": "Filter werden geladen",
|
25
|
-
"components.filter.filterCountDescription":
|
26
|
+
"components.filter.filterCountDescription":
|
27
|
+
`{number, plural,
|
28
|
+
=0 {Keine Filter angewendet.}
|
29
|
+
one {{number} Filter angewendet.}
|
30
|
+
other {{number} Filter angewendet.}
|
31
|
+
}`,
|
26
32
|
"components.filter.filters": "Filter",
|
27
33
|
"components.filter.noFilters": "Keine verfügbaren Filter",
|
28
|
-
"components.filter.searchResults":
|
34
|
+
"components.filter.searchResults":
|
35
|
+
`{number, plural,
|
36
|
+
=0 {Kein Suchergebnis}
|
37
|
+
one {{number} Suchergebnis}
|
38
|
+
other {{number} Suchergebnisse}
|
39
|
+
}`,
|
29
40
|
"components.filter.selectedFirstListLabel": "{headerText}. Ausgewählte Filter werden zuerst angezeigt.",
|
30
41
|
"components.filter.singleDimensionDescription": "Filtern nach: {filterName}",
|
31
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
32
|
-
|
42
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
43
|
+
`{num, plural,
|
44
|
+
=1 {Letzte Stunde}
|
45
|
+
other {Letzte {num} Stunden}
|
46
|
+
}`,
|
47
|
+
"components.filter-dimension-set-date-text-value.textDays":
|
48
|
+
`{num, plural,
|
49
|
+
=0 {Heute}
|
50
|
+
one {Letzter Tag}
|
51
|
+
other {Letzte {num} Tage}
|
52
|
+
}`,
|
33
53
|
"components.filter-dimension-set-date-text-value.textMonths": "Letzte {num} Monate",
|
34
54
|
"components.filter-dimension-set-date-time-range-value.label": "{text} – erweitern, um Daten auszuwählen",
|
35
55
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} nach {endValue}",
|
@@ -39,13 +59,35 @@ export default {
|
|
39
59
|
"components.form-element.defaultError": "{label} ist ungültig",
|
40
60
|
"components.form-element.defaultFieldLabel": "Feld",
|
41
61
|
"components.form-element.input.email.typeMismatch": "Die E-Mail-Adresse ist ungültig",
|
42
|
-
"components.form-element.input.number.rangeError":
|
43
|
-
|
44
|
-
|
62
|
+
"components.form-element.input.number.rangeError":
|
63
|
+
`{minExclusive, select,
|
64
|
+
true {{maxExclusive, select,
|
65
|
+
true {Zahl muss größer als {min} und kleiner als {max} sein.}
|
66
|
+
other {Zahl muss größer als {min} und kleiner als oder gleich {max} sein.}
|
67
|
+
}}
|
68
|
+
other {{maxExclusive, select,
|
69
|
+
true {Zahl muss größer als oder gleich {min} und kleiner als {max} sein.}
|
70
|
+
other {Zahl muss größer als oder gleich {min} und kleiner als oder gleich {max} sein.}
|
71
|
+
}}
|
72
|
+
}`,
|
73
|
+
"components.form-element.input.number.rangeOverflow":
|
74
|
+
`{maxExclusive, select,
|
75
|
+
true {Zahl muss kleiner als {max} sein.}
|
76
|
+
other {Zahl muss kleiner als oder gleich {max} sein.}
|
77
|
+
}`,
|
78
|
+
"components.form-element.input.number.rangeUnderflow":
|
79
|
+
`{minExclusive, select,
|
80
|
+
true {Zahl muss größer als {min} sein.}
|
81
|
+
other {Zahl muss größer als oder gleich {min} sein.}
|
82
|
+
}`,
|
45
83
|
"components.form-element.input.text.tooShort": "{label} muss mindestens {minlength} Zeichen enthalten",
|
46
84
|
"components.form-element.input.url.typeMismatch": "URL ist ungültig",
|
47
85
|
"components.form-element.valueMissing": "{label} ist erforderlich",
|
48
|
-
"components.form-error-summary.errorSummary":
|
86
|
+
"components.form-error-summary.errorSummary":
|
87
|
+
`{count, plural,
|
88
|
+
one {Die von Ihnen übermittelten Informationen enthalten {count} Fehler}
|
89
|
+
other {Die von Ihnen übermittelten Informationen enthalten {count} Fehler}
|
90
|
+
}`,
|
49
91
|
"components.form-error-summary.text": "Fehlerdetails ein-/ausschalten",
|
50
92
|
"components.input-color.backgroundColor": "Hintergrundfarbe",
|
51
93
|
"components.input-color.foregroundColor": "Vordergrundfarbe",
|
@@ -109,10 +151,22 @@ export default {
|
|
109
151
|
"components.overflow-group.moreActions": "Weitere Aktionen",
|
110
152
|
"components.pager-load-more.action": "Mehr laden",
|
111
153
|
"components.pager-load-more.action-with-page-size": "{count} weitere laden",
|
112
|
-
"components.pageable.info":
|
113
|
-
|
154
|
+
"components.pageable.info":
|
155
|
+
`{count, plural,
|
156
|
+
one {{countFormatted} Element}
|
157
|
+
other {{countFormatted} Elemente}
|
158
|
+
}`,
|
159
|
+
"components.pageable.info-with-total":
|
160
|
+
`{totalCount, plural,
|
161
|
+
one {{countFormatted} von {totalCountFormatted} Element}
|
162
|
+
other {{countFormatted} von {totalCountFormatted} Elemente}
|
163
|
+
}`,
|
114
164
|
"components.pager-load-more.status-loading": "Weitere Elemente werden geladen",
|
115
|
-
"components.selection.action-max-hint":
|
165
|
+
"components.selection.action-max-hint":
|
166
|
+
`{count, plural,
|
167
|
+
one {Deaktiviert, wenn mehr als {countFormatted} Element ausgewählt ist}
|
168
|
+
other {Deaktiviert, wenn mehr als {countFormatted} Elemente ausgewählt sind}
|
169
|
+
}`,
|
116
170
|
"components.selection.action-required-hint": "Wählen Sie ein Element aus, um diese Aktion auszuführen",
|
117
171
|
"components.selection.select-all": "Alle auswählen",
|
118
172
|
"components.selection.select-all-items": "Alle {count} Elemente auswählen",
|
@@ -125,7 +179,26 @@ export default {
|
|
125
179
|
"components.switch.conditions": "Bedingungen müssen erfüllt sein",
|
126
180
|
"components.table-col-sort-button.addSortOrder": "Wählen Sie diese Option, um eine Sortierreihenfolge hinzuzufügen",
|
127
181
|
"components.table-col-sort-button.changeSortOrder": "Wählen Sie diese Option, um die Sortierreihenfolge zu ändern",
|
128
|
-
"components.table-col-sort-button.title":
|
182
|
+
"components.table-col-sort-button.title":
|
183
|
+
`{sourceType, select,
|
184
|
+
dates {{direction, select,
|
185
|
+
desc {Von neu nach alt sortiert}
|
186
|
+
other {Von alt nach neu sortiert}
|
187
|
+
}}
|
188
|
+
numbers {{direction, select,
|
189
|
+
desc {Von hoch nach niedrig sortiert}
|
190
|
+
other {Von niedrig nach hoch sortiert}
|
191
|
+
}}
|
192
|
+
words {{direction, select,
|
193
|
+
desc {Von Z nach A sortiert}
|
194
|
+
other {Von A nach Z sortiert}
|
195
|
+
}}
|
196
|
+
value {Sortiert {selectedMenuItemText}}
|
197
|
+
other {{direction, select,
|
198
|
+
desc {Absteigend sortiert}
|
199
|
+
other {Aufsteigend sortiert}
|
200
|
+
}}
|
201
|
+
}`,
|
129
202
|
"components.table-controls.label": "Aktionen für Tabelle",
|
130
203
|
"components.tabs.next": "Weiterblättern",
|
131
204
|
"components.tabs.previous": "Zurückblättern",
|
package/lang/en-gb.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export default {
|
2
|
+
"__test__": "This will be removed in a follow-up PR (before translation)",
|
2
3
|
"components.alert.close": "Close Alert",
|
3
4
|
"components.breadcrumbs.breadcrumb": "Breadcrumb",
|
4
5
|
"components.button-add.addItem": "Add Item",
|
@@ -22,14 +23,33 @@ export default {
|
|
22
23
|
"components.filter.clearAnnounce": "Clearing filters for: {filterName}",
|
23
24
|
"components.filter.clearDescription": "Clear filters for: {filterName}",
|
24
25
|
"components.filter.loading": "Loading filters",
|
25
|
-
"components.filter.filterCountDescription":
|
26
|
+
"components.filter.filterCountDescription":
|
27
|
+
`{number, plural,
|
28
|
+
=0 {No filters applied.}
|
29
|
+
one {{number} filter applied.}
|
30
|
+
other {{number} filters applied.}
|
31
|
+
}`,
|
26
32
|
"components.filter.filters": "Filters",
|
27
33
|
"components.filter.noFilters": "No available filters",
|
28
|
-
"components.filter.searchResults":
|
34
|
+
"components.filter.searchResults":
|
35
|
+
`{number, plural,
|
36
|
+
=0 {No search results}
|
37
|
+
one {{number} search result}
|
38
|
+
other {{number} search results}
|
39
|
+
}`,
|
29
40
|
"components.filter.selectedFirstListLabel": "{headerText}. Selected filters appear first.",
|
30
41
|
"components.filter.singleDimensionDescription": "Filter by: {filterName}",
|
31
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
32
|
-
|
42
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
43
|
+
`{num, plural,
|
44
|
+
=1 {Last hour}
|
45
|
+
other {Last {num} hours}
|
46
|
+
}`,
|
47
|
+
"components.filter-dimension-set-date-text-value.textDays":
|
48
|
+
`{num, plural,
|
49
|
+
=0 {Today}
|
50
|
+
one {Last {num} day}
|
51
|
+
other {Last {num} days}
|
52
|
+
}`,
|
33
53
|
"components.filter-dimension-set-date-text-value.textMonths": "Last {num} months",
|
34
54
|
"components.filter-dimension-set-date-time-range-value.label": "{text}, expand to choose dates",
|
35
55
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} to {endValue}",
|
@@ -39,13 +59,35 @@ export default {
|
|
39
59
|
"components.form-element.defaultError": "{label} is invalid",
|
40
60
|
"components.form-element.defaultFieldLabel": "Field",
|
41
61
|
"components.form-element.input.email.typeMismatch": "Email is not valid",
|
42
|
-
"components.form-element.input.number.rangeError":
|
43
|
-
|
44
|
-
|
62
|
+
"components.form-element.input.number.rangeError":
|
63
|
+
`{minExclusive, select,
|
64
|
+
true {{maxExclusive, select,
|
65
|
+
true {Number must be greater than {min} and less than {max}.}
|
66
|
+
other {Number must be greater than {min} and less than or equal to {max}.}
|
67
|
+
}}
|
68
|
+
other {{maxExclusive, select,
|
69
|
+
true {Number must be greater than or equal to {min} and less than {max}.}
|
70
|
+
other {Number must be greater than or equal to {min} and less than or equal to {max}.}
|
71
|
+
}}
|
72
|
+
}`,
|
73
|
+
"components.form-element.input.number.rangeOverflow":
|
74
|
+
`{maxExclusive, select,
|
75
|
+
true {Number must be less than {max}.}
|
76
|
+
other {Number must be less than or equal to {max}.}
|
77
|
+
}`,
|
78
|
+
"components.form-element.input.number.rangeUnderflow":
|
79
|
+
`{minExclusive, select,
|
80
|
+
true {Number must be greater than {min}.}
|
81
|
+
other {Number must be greater than or equal to {min}.}
|
82
|
+
}`,
|
45
83
|
"components.form-element.input.text.tooShort": "{label} must be at least {minlength} characters",
|
46
84
|
"components.form-element.input.url.typeMismatch": "URL is not valid",
|
47
85
|
"components.form-element.valueMissing": "{label} is required",
|
48
|
-
"components.form-error-summary.errorSummary":
|
86
|
+
"components.form-error-summary.errorSummary":
|
87
|
+
`{count, plural,
|
88
|
+
one {There was {count} error found in the information you submitted}
|
89
|
+
other {There were {count} errors found in the information you submitted}
|
90
|
+
}`,
|
49
91
|
"components.form-error-summary.text": "Toggle error details",
|
50
92
|
"components.input-color.backgroundColor": "Background Colour",
|
51
93
|
"components.input-color.foregroundColor": "Foreground Colour",
|
@@ -109,10 +151,22 @@ export default {
|
|
109
151
|
"components.overflow-group.moreActions": "More Actions",
|
110
152
|
"components.pager-load-more.action": "Load More",
|
111
153
|
"components.pager-load-more.action-with-page-size": "Load {count} More",
|
112
|
-
"components.pageable.info":
|
113
|
-
|
154
|
+
"components.pageable.info":
|
155
|
+
`{count, plural,
|
156
|
+
one {{countFormatted} item}
|
157
|
+
other {{countFormatted} items}
|
158
|
+
}`,
|
159
|
+
"components.pageable.info-with-total":
|
160
|
+
`{totalCount, plural,
|
161
|
+
one {{countFormatted} of {totalCountFormatted} item}
|
162
|
+
other {{countFormatted} of {totalCountFormatted} items}
|
163
|
+
}`,
|
114
164
|
"components.pager-load-more.status-loading": "Loading more items",
|
115
|
-
"components.selection.action-max-hint":
|
165
|
+
"components.selection.action-max-hint":
|
166
|
+
`{count, plural,
|
167
|
+
one {Disabled when more than {countFormatted} item is selected}
|
168
|
+
other {Disabled when more than {countFormatted} items are selected}
|
169
|
+
}`,
|
116
170
|
"components.selection.action-required-hint": "Select an item to perform this action",
|
117
171
|
"components.selection.select-all": "Select All",
|
118
172
|
"components.selection.select-all-items": "Select All {count} Items",
|
@@ -125,7 +179,26 @@ export default {
|
|
125
179
|
"components.switch.conditions": "Conditions must be met",
|
126
180
|
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
127
181
|
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
128
|
-
"components.table-col-sort-button.title":
|
182
|
+
"components.table-col-sort-button.title":
|
183
|
+
`{sourceType, select,
|
184
|
+
dates {{direction, select,
|
185
|
+
desc {Sorted new to old}
|
186
|
+
other {Sorted old to new}
|
187
|
+
}}
|
188
|
+
numbers {{direction, select,
|
189
|
+
desc {Sorted high to low}
|
190
|
+
other {Sorted low to high}
|
191
|
+
}}
|
192
|
+
words {{direction, select,
|
193
|
+
desc {Sorted Z to A}
|
194
|
+
other {Sorted A to Z}
|
195
|
+
}}
|
196
|
+
value {Sorted {selectedMenuItemText}}
|
197
|
+
other {{direction, select,
|
198
|
+
desc {Sorted descending}
|
199
|
+
other {Sorted ascending}
|
200
|
+
}}
|
201
|
+
}`,
|
129
202
|
"components.table-controls.label": "Actions for table",
|
130
203
|
"components.tabs.next": "Scroll Forwards",
|
131
204
|
"components.tabs.previous": "Scroll Backwards",
|
package/lang/en.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export default {
|
2
|
+
"__test__": "This will be removed in a follow-up PR (before translation)",
|
2
3
|
"components.alert.close": "Close Alert",
|
3
4
|
"components.breadcrumbs.breadcrumb": "Breadcrumb",
|
4
5
|
"components.button-add.addItem": "Add Item",
|
@@ -22,14 +23,33 @@ export default {
|
|
22
23
|
"components.filter.clearAnnounce": "Clearing filters for: {filterName}",
|
23
24
|
"components.filter.clearDescription": "Clear filters for: {filterName}",
|
24
25
|
"components.filter.loading": "Loading filters",
|
25
|
-
"components.filter.filterCountDescription":
|
26
|
+
"components.filter.filterCountDescription":
|
27
|
+
`{number, plural,
|
28
|
+
=0 {No filters applied.}
|
29
|
+
one {{number} filter applied.}
|
30
|
+
other {{number} filters applied.}
|
31
|
+
}`,
|
26
32
|
"components.filter.filters": "Filters",
|
27
33
|
"components.filter.noFilters": "No available filters",
|
28
|
-
"components.filter.searchResults":
|
34
|
+
"components.filter.searchResults":
|
35
|
+
`{number, plural,
|
36
|
+
=0 {No search results}
|
37
|
+
one {{number} search result}
|
38
|
+
other {{number} search results}
|
39
|
+
}`,
|
29
40
|
"components.filter.selectedFirstListLabel": "{headerText}. Selected filters appear first.",
|
30
41
|
"components.filter.singleDimensionDescription": "Filter by: {filterName}",
|
31
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
32
|
-
|
42
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
43
|
+
`{num, plural,
|
44
|
+
=1 {Last hour}
|
45
|
+
other {Last {num} hours}
|
46
|
+
}`,
|
47
|
+
"components.filter-dimension-set-date-text-value.textDays":
|
48
|
+
`{num, plural,
|
49
|
+
=0 {Today}
|
50
|
+
one {Last {num} day}
|
51
|
+
other {Last {num} days}
|
52
|
+
}`,
|
33
53
|
"components.filter-dimension-set-date-text-value.textMonths": "Last {num} months",
|
34
54
|
"components.filter-dimension-set-date-time-range-value.label": "{text}, expand to choose dates",
|
35
55
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} to {endValue}",
|
@@ -39,13 +59,35 @@ export default {
|
|
39
59
|
"components.form-element.defaultError": "{label} is invalid",
|
40
60
|
"components.form-element.defaultFieldLabel": "Field",
|
41
61
|
"components.form-element.input.email.typeMismatch": "Email is not valid",
|
42
|
-
"components.form-element.input.number.rangeError":
|
43
|
-
|
44
|
-
|
62
|
+
"components.form-element.input.number.rangeError":
|
63
|
+
`{minExclusive, select,
|
64
|
+
true {{maxExclusive, select,
|
65
|
+
true {Number must be greater than {min} and less than {max}.}
|
66
|
+
other {Number must be greater than {min} and less than or equal to {max}.}
|
67
|
+
}}
|
68
|
+
other {{maxExclusive, select,
|
69
|
+
true {Number must be greater than or equal to {min} and less than {max}.}
|
70
|
+
other {Number must be greater than or equal to {min} and less than or equal to {max}.}
|
71
|
+
}}
|
72
|
+
}`,
|
73
|
+
"components.form-element.input.number.rangeOverflow":
|
74
|
+
`{maxExclusive, select,
|
75
|
+
true {Number must be less than {max}.}
|
76
|
+
other {Number must be less than or equal to {max}.}
|
77
|
+
}`,
|
78
|
+
"components.form-element.input.number.rangeUnderflow":
|
79
|
+
`{minExclusive, select,
|
80
|
+
true {Number must be greater than {min}.}
|
81
|
+
other {Number must be greater than or equal to {min}.}
|
82
|
+
}`,
|
45
83
|
"components.form-element.input.text.tooShort": "{label} must be at least {minlength} characters",
|
46
84
|
"components.form-element.input.url.typeMismatch": "URL is not valid",
|
47
85
|
"components.form-element.valueMissing": "{label} is required",
|
48
|
-
"components.form-error-summary.errorSummary":
|
86
|
+
"components.form-error-summary.errorSummary":
|
87
|
+
`{count, plural,
|
88
|
+
one {There was {count} error found in the information you submitted}
|
89
|
+
other {There were {count} errors found in the information you submitted}
|
90
|
+
}`,
|
49
91
|
"components.form-error-summary.text": "Toggle error details",
|
50
92
|
"components.input-color.backgroundColor": "Background Color",
|
51
93
|
"components.input-color.foregroundColor": "Foreground Color",
|
@@ -109,10 +151,22 @@ export default {
|
|
109
151
|
"components.overflow-group.moreActions": "More Actions",
|
110
152
|
"components.pager-load-more.action": "Load More",
|
111
153
|
"components.pager-load-more.action-with-page-size": "Load {count} More",
|
112
|
-
"components.pageable.info":
|
113
|
-
|
154
|
+
"components.pageable.info":
|
155
|
+
`{count, plural,
|
156
|
+
one {{countFormatted} item}
|
157
|
+
other {{countFormatted} items}
|
158
|
+
}`,
|
159
|
+
"components.pageable.info-with-total":
|
160
|
+
`{totalCount, plural,
|
161
|
+
one {{countFormatted} of {totalCountFormatted} item}
|
162
|
+
other {{countFormatted} of {totalCountFormatted} items}
|
163
|
+
}`,
|
114
164
|
"components.pager-load-more.status-loading": "Loading more items",
|
115
|
-
"components.selection.action-max-hint":
|
165
|
+
"components.selection.action-max-hint":
|
166
|
+
`{count, plural,
|
167
|
+
one {Disabled when more than {countFormatted} item is selected}
|
168
|
+
other {Disabled when more than {countFormatted} items are selected}
|
169
|
+
}`,
|
116
170
|
"components.selection.action-required-hint": "Select an item to perform this action",
|
117
171
|
"components.selection.select-all": "Select All",
|
118
172
|
"components.selection.select-all-items": "Select All {count} Items",
|
@@ -125,7 +179,26 @@ export default {
|
|
125
179
|
"components.switch.conditions": "Conditions must be met",
|
126
180
|
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
127
181
|
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
128
|
-
"components.table-col-sort-button.title":
|
182
|
+
"components.table-col-sort-button.title":
|
183
|
+
`{sourceType, select,
|
184
|
+
dates {{direction, select,
|
185
|
+
desc {Sorted new to old}
|
186
|
+
other {Sorted old to new}
|
187
|
+
}}
|
188
|
+
numbers {{direction, select,
|
189
|
+
desc {Sorted high to low}
|
190
|
+
other {Sorted low to high}
|
191
|
+
}}
|
192
|
+
words {{direction, select,
|
193
|
+
desc {Sorted Z to A}
|
194
|
+
other {Sorted A to Z}
|
195
|
+
}}
|
196
|
+
value {Sorted {selectedMenuItemText}}
|
197
|
+
other {{direction, select,
|
198
|
+
desc {Sorted descending}
|
199
|
+
other {Sorted ascending}
|
200
|
+
}}
|
201
|
+
}`,
|
129
202
|
"components.table-controls.label": "Actions for table",
|
130
203
|
"components.tabs.next": "Scroll Forward",
|
131
204
|
"components.tabs.previous": "Scroll Backward",
|
package/lang/es-es.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export default {
|
2
|
+
"__test__": "This will be removed in a follow-up PR (before translation)",
|
2
3
|
"components.alert.close": "Cerrar alerta",
|
3
4
|
"components.breadcrumbs.breadcrumb": "Ruta de navegación",
|
4
5
|
"components.button-add.addItem": "Agregar elemento",
|
@@ -22,14 +23,33 @@ export default {
|
|
22
23
|
"components.filter.clearAnnounce": "Borrando filtros para: {filterName}",
|
23
24
|
"components.filter.clearDescription": "Borrar filtros para: {filterName}",
|
24
25
|
"components.filter.loading": "Cargando filtros",
|
25
|
-
"components.filter.filterCountDescription":
|
26
|
+
"components.filter.filterCountDescription":
|
27
|
+
`{number, plural,
|
28
|
+
=0 {Sin filtros aplicados.}
|
29
|
+
one {{number} filtro aplicado.}
|
30
|
+
other {{number} filtros aplicados.}
|
31
|
+
}`,
|
26
32
|
"components.filter.filters": "Filtros",
|
27
33
|
"components.filter.noFilters": "No hay filtros disponibles",
|
28
|
-
"components.filter.searchResults":
|
34
|
+
"components.filter.searchResults":
|
35
|
+
`{number, plural,
|
36
|
+
=0 {No hay resultados de búsqueda}
|
37
|
+
one {{number} resultado de búsqueda}
|
38
|
+
other {{number} resultados de búsqueda}
|
39
|
+
}`,
|
29
40
|
"components.filter.selectedFirstListLabel": "{headerText}. Los filtros seleccionados aparecen primero.",
|
30
41
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
31
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
32
|
-
|
42
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
43
|
+
`{num, plural,
|
44
|
+
=1 {Última hora}
|
45
|
+
other {Últimas {num} horas}
|
46
|
+
}`,
|
47
|
+
"components.filter-dimension-set-date-text-value.textDays":
|
48
|
+
`{num, plural,
|
49
|
+
=0 {Hoy}
|
50
|
+
one {Último día}
|
51
|
+
other {Últimos {num} días}
|
52
|
+
}`,
|
33
53
|
"components.filter-dimension-set-date-text-value.textMonths": "Últimos {num} meses",
|
34
54
|
"components.filter-dimension-set-date-time-range-value.label": "{text}, amplíe para elegir fechas",
|
35
55
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} a {endValue}",
|
@@ -39,13 +59,35 @@ export default {
|
|
39
59
|
"components.form-element.defaultError": "{label} no es válido",
|
40
60
|
"components.form-element.defaultFieldLabel": "Campo",
|
41
61
|
"components.form-element.input.email.typeMismatch": "El correo electrónico no es válido",
|
42
|
-
"components.form-element.input.number.rangeError":
|
43
|
-
|
44
|
-
|
62
|
+
"components.form-element.input.number.rangeError":
|
63
|
+
`{minExclusive, select,
|
64
|
+
true {{maxExclusive, select,
|
65
|
+
true {El número debe ser mayor que {min} y menor que {max}.}
|
66
|
+
other {El número debe ser mayor que {min} y menor o igual que {max}.}
|
67
|
+
}}
|
68
|
+
other {{maxExclusive, select,
|
69
|
+
true {El número debe ser mayor o igual que {min} y menor que {max}.}
|
70
|
+
other {El número debe ser mayor o igual que {min} y menor o igual que {max}.}
|
71
|
+
}}
|
72
|
+
}`,
|
73
|
+
"components.form-element.input.number.rangeOverflow":
|
74
|
+
`{maxExclusive, select,
|
75
|
+
true {El número debe ser menor que {max}.}
|
76
|
+
other {El número debe ser menor o igual que {max}.}
|
77
|
+
}`,
|
78
|
+
"components.form-element.input.number.rangeUnderflow":
|
79
|
+
`{minExclusive, select,
|
80
|
+
true {El número debe ser mayor que {min}.}
|
81
|
+
other {El número debe ser mayor o igual que {min}.}
|
82
|
+
}`,
|
45
83
|
"components.form-element.input.text.tooShort": "{label} debe tener al menos {minlength} caracteres",
|
46
84
|
"components.form-element.input.url.typeMismatch": "La dirección URL no es válida",
|
47
85
|
"components.form-element.valueMissing": "{label} es obligatorio",
|
48
|
-
"components.form-error-summary.errorSummary":
|
86
|
+
"components.form-error-summary.errorSummary":
|
87
|
+
`{count, plural,
|
88
|
+
one {Se ha encontrado {count} error en la información que ha enviado}
|
89
|
+
other {Se han encontrado {count} errores en la información que ha enviado}
|
90
|
+
}`,
|
49
91
|
"components.form-error-summary.text": "Alternar detalles del error",
|
50
92
|
"components.input-color.backgroundColor": "Color de fondo",
|
51
93
|
"components.input-color.foregroundColor": "Color del primer plano",
|
@@ -109,10 +151,22 @@ export default {
|
|
109
151
|
"components.overflow-group.moreActions": "Más acciones",
|
110
152
|
"components.pager-load-more.action": "Cargar más",
|
111
153
|
"components.pager-load-more.action-with-page-size": "Cargar {count} más",
|
112
|
-
"components.pageable.info":
|
113
|
-
|
154
|
+
"components.pageable.info":
|
155
|
+
`{count, plural,
|
156
|
+
one {{countFormatted} elemento}
|
157
|
+
other {{countFormatted} elementos}
|
158
|
+
}`,
|
159
|
+
"components.pageable.info-with-total":
|
160
|
+
`{totalCount, plural,
|
161
|
+
one {{countFormatted} de {totalCountFormatted} elemento}
|
162
|
+
other {{countFormatted} de {totalCountFormatted} elementos}
|
163
|
+
}`,
|
114
164
|
"components.pager-load-more.status-loading": "Cargando más elementos",
|
115
|
-
"components.selection.action-max-hint":
|
165
|
+
"components.selection.action-max-hint":
|
166
|
+
`{count, plural,
|
167
|
+
one {Deshabilitado cuando se selecciona más de {countFormatted} elemento}
|
168
|
+
other {Deshabilitado cuando se seleccionan más de {countFormatted} elementos}
|
169
|
+
}`,
|
116
170
|
"components.selection.action-required-hint": "Seleccione un elemento para realizar esta acción",
|
117
171
|
"components.selection.select-all": "Seleccionar todo",
|
118
172
|
"components.selection.select-all-items": "Seleccione los {count} elementos",
|
@@ -125,7 +179,26 @@ export default {
|
|
125
179
|
"components.switch.conditions": "Deben cumplirse las condiciones",
|
126
180
|
"components.table-col-sort-button.addSortOrder": "Seleccionar para añadir un orden de clasificación",
|
127
181
|
"components.table-col-sort-button.changeSortOrder": "Seleccionar para cambiar el orden de clasificación",
|
128
|
-
"components.table-col-sort-button.title":
|
182
|
+
"components.table-col-sort-button.title":
|
183
|
+
`{sourceType, select,
|
184
|
+
dates {{direction, select,
|
185
|
+
desc {Orden de más reciente a más antiguo}
|
186
|
+
other {Orden de más antiguo a más reciente}
|
187
|
+
}}
|
188
|
+
numbers {{direction, select,
|
189
|
+
desc {Orden de mayor a menor}
|
190
|
+
other {Orden de menor a mayor}
|
191
|
+
}}
|
192
|
+
words {{direction, select,
|
193
|
+
desc {Orden de a Z a la A}
|
194
|
+
other {Orden de a A a la Z}
|
195
|
+
}}
|
196
|
+
value {Sorted {selectedMenuItemText}}
|
197
|
+
other {{direction, select,
|
198
|
+
desc {Orden descendente}
|
199
|
+
other {Orden ascendente}
|
200
|
+
}}
|
201
|
+
}`,
|
129
202
|
"components.table-controls.label": "Acciones para la tabla",
|
130
203
|
"components.tabs.next": "Desplazarse hacia delante",
|
131
204
|
"components.tabs.previous": "Desplazarse hacia atrás",
|