@microbit/ui 0.1.0-alpha.18 → 0.1.0-alpha.20

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.md CHANGED
@@ -51,3 +51,11 @@ Chakra UI is used under the MIT License:
51
51
  > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
52
52
  > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
53
53
  > SOFTWARE.
54
+
55
+ This package's `lang/ui.<locale>.json` catalogs include translations of a few
56
+ user-interface strings copied from
57
+ [React Spectrum](https://github.com/adobe/react-spectrum) (react-aria), taken
58
+ at tag `react-aria-components@1.19.0` (see the README's "Strings" section for
59
+ which). React Spectrum is copyright Adobe and its contributors, and is used
60
+ under the Apache License, Version 2.0:
61
+ <https://www.apache.org/licenses/LICENSE-2.0>.
package/README.md CHANGED
@@ -212,17 +212,40 @@ from the root.
212
212
 
213
213
  ### react-aria's own strings
214
214
 
215
- Separately from all of the above, react-aria has built-in strings of its own
216
- stepper button labels, the toast region's landmark label, hidden dismiss
217
- buttons, listbox and selection announcements and translates them from
218
- catalogs it bundles, nothing to do with react-intl. `SharedUIProvider` hands it
219
- the app's locale so the two agree.
220
-
221
- It covers 32 locales. Of ours, ca, cy and ga-IE (and the `lol` pseudo-locale)
222
- are not among them and fall back to English; the rest resolve, including where
223
- our id is less specific than react-aria's (`fr` finds its fr-FR). There is no
224
- supported way to supply translations for the locales it misses, so where one of
225
- its strings matters we pass our own text in as a label instead.
215
+ Separately from all of the above, react-aria has built-in strings of its own
216
+ and translates them from catalogs it bundles, nothing to do with react-intl.
217
+ `SharedUIProvider` hands it the app's locale so the two agree. It covers 32
218
+ locales; of ours, ca, cy and ga-IE (and the `lol` pseudo-locale) are not among
219
+ them and fall back to English, and there is no supported way to teach it more
220
+ (the rest resolve, including where our id is less specific than react-aria's —
221
+ `fr` finds its fr-FR).
222
+
223
+ Where react-aria lets a prop replace one of those strings, the component
224
+ passes our own react-intl message instead, so the string rides `lang/` and
225
+ Crowdin like everything else and the missing locales can catch up:
226
+
227
+ - `ui.numberfield-increase` / `ui.numberfield-decrease` — NumberField's
228
+ stepper button labels
229
+ - `ui.toast-region` — the toast region's landmark label (counts the visible
230
+ toasts, as react-aria's does)
231
+ - `ui.combobox-trigger` / `ui.combobox-listbox` — the button that opens a
232
+ ComboBox and its popup list
233
+ - `ui.select-placeholder` — Select's placeholder when the caller passes none
234
+ - `ui.select-row-action` — the name of a `slot="selection"` checkbox in a
235
+ GridList row, read together with the row's content. (A future Table's
236
+ select-all header checkbox shares the slot name and will need its own
237
+ message.)
238
+
239
+ Their non-English translations were pre-seeded from react-aria's own catalogs
240
+ ([adobe/react-spectrum](https://github.com/adobe/react-spectrum) at tag
241
+ `react-aria-components@1.19.0`, Apache 2.0 — see the notice in
242
+ [LICENSE.md](LICENSE.md)) for the locales both sides cover, so only ca, cy and
243
+ ga-IE wait on Crowdin. That provenance is recorded here rather than in `lang/`
244
+ because Crowdin roundtrips rewrite those files.
245
+
246
+ What react-aria does not expose as a prop — live announcements ("2 items
247
+ selected"), its hidden dismiss buttons — still comes from its bundled catalogs
248
+ and falls back to English in the locales above.
226
249
 
227
250
  ## Chakra UI heritage and license
228
251
 
package/lang/ui.ca.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Tanca ",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggestions",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Show suggestions",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Decrease {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Increase {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Select an item",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Select",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notification} other {# notifications}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.cy.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Cau",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggestions",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Show suggestions",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Decrease {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Increase {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Select an item",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Select",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notification} other {# notifications}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Gwall",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.de.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Schließen",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Empfehlungen",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Empfehlungen anzeigen",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "{fieldLabel} verringern",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "{fieldLabel} erhöhen",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Element wählen",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Auswählen",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# Benachrichtigung} other {# Benachrichtigungen}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Close",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggestions",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Show suggestions",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Decrease {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Increase {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Select an item",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Select",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notification} other {# notifications}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.en.json CHANGED
@@ -7,10 +7,38 @@
7
7
  "defaultMessage": "Close",
8
8
  "description": "Close button text or label"
9
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggestions",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Show suggestions",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
10
18
  "ui.loading": {
11
19
  "defaultMessage": "Loading",
12
20
  "description": "Announced by screen readers for a button showing a loading spinner"
13
21
  },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Decrease {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Increase {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Select an item",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Select",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notification} other {# notifications}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
14
42
  "ui.toast-status-error": {
15
43
  "defaultMessage": "Error",
16
44
  "description": "Announced by screen readers before an error notification"
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Cerrar",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Sugerencias",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Mostrar sugerencias",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Reducir {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Aumentar {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Seleccionar un artículo",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Seleccionar",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notificación} other {# notificaciones}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.fr.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Fermer",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggestions",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Afficher les suggestions",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Diminuer {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Augmenter {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Sélectionner un élément",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Sélectionner",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notification} other {# notifications}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Dún",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggestions",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Show suggestions",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Decrease {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Increase {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Select an item",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Select",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notification} other {# notifications}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.it.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Chiudi",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggerimenti",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Mostra suggerimenti",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Riduci {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Aumenta {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Seleziona un elemento",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Seleziona",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notifica} other {# notifiche}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Errore",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.ja.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "閉じる",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "候補",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "候補を表示",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "{fieldLabel}を縮小",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "{fieldLabel}を拡大",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "項目を選択",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "選択",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# 個の通知} other {# 個の通知}}。",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.ko.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "닫기",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "제안",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "제안 사항 표시",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "{fieldLabel} 감소",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "{fieldLabel} 증가",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "항목 선택",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "선택",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {#개 알림} other {#개 알림}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.lol.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "crwdns362700:0crwdne362700:0",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggestions",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Show suggestions",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "Decrease {fieldLabel}",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "Increase {fieldLabel}",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Select an item",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Select",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# notification} other {# notifications}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"
package/lang/ui.nl.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
+ "ui.breadcrumb": {
3
+ "defaultMessage": "Breadcrumb",
4
+ "description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
5
+ },
2
6
  "ui.close-action": {
3
7
  "defaultMessage": "Afsluiten",
4
8
  "description": "Close button text or label"
5
9
  },
10
+ "ui.combobox-listbox": {
11
+ "defaultMessage": "Suggesties",
12
+ "description": "Accessible label for a ComboBox's dropdown list of suggestions"
13
+ },
14
+ "ui.combobox-trigger": {
15
+ "defaultMessage": "Suggesties weergeven",
16
+ "description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
17
+ },
18
+ "ui.loading": {
19
+ "defaultMessage": "Loading",
20
+ "description": "Announced by screen readers for a button showing a loading spinner"
21
+ },
22
+ "ui.numberfield-decrease": {
23
+ "defaultMessage": "{fieldLabel} verlagen",
24
+ "description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
25
+ },
26
+ "ui.numberfield-increase": {
27
+ "defaultMessage": "{fieldLabel} verhogen",
28
+ "description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
29
+ },
30
+ "ui.select-placeholder": {
31
+ "defaultMessage": "Selecteer een item",
32
+ "description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
33
+ },
34
+ "ui.select-row-action": {
35
+ "defaultMessage": "Selecteren",
36
+ "description": "Accessible label for a row-selection checkbox in a list or table; screen readers read it together with the row's content"
37
+ },
38
+ "ui.toast-region": {
39
+ "defaultMessage": "{count, plural, one {# melding} other {# meldingen}}.",
40
+ "description": "Accessible label for the notifications area; count is the number of notifications showing"
41
+ },
6
42
  "ui.toast-status-error": {
7
43
  "defaultMessage": "Error",
8
44
  "description": "Announced by screen readers before an error notification"