@microbit/ui 0.1.0-alpha.22 → 0.1.0-alpha.24
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 +5 -5
- package/README.md +40 -13
- package/lang/ui.ca.json +12 -12
- package/lang/ui.cy.json +4 -4
- package/lang/ui.de.json +6 -6
- package/lang/ui.es-es.json +5 -5
- package/lang/ui.fr.json +6 -6
- package/lang/ui.ga-ie.json +6 -6
- package/lang/ui.it.json +4 -4
- package/lang/ui.ja.json +7 -7
- package/lang/ui.ko.json +6 -6
- package/lang/ui.lo.json +58 -0
- package/lang/ui.nl.json +9 -9
- package/lang/ui.pl.json +8 -8
- package/lang/ui.pt-br.json +7 -7
- package/lang/ui.vi.json +58 -0
- package/lang/ui.zh-cn.json +6 -6
- package/lang/ui.zh-tw.json +7 -7
- package/package.json +1 -1
- package/src/Avatar.recipe.ts +16 -20
- package/src/Avatar.tsx +31 -29
- package/src/Breadcrumb.recipe.ts +3 -7
- package/src/Breadcrumb.tsx +6 -8
- package/src/Button.recipe.ts +22 -33
- package/src/Button.tsx +10 -12
- package/src/ButtonGroup.tsx +10 -9
- package/src/Card.recipe.ts +1 -2
- package/src/Card.tsx +2 -1
- package/src/Checkbox.recipe.ts +7 -9
- package/src/Checkbox.tsx +2 -3
- package/src/CheckboxGroup.tsx +5 -7
- package/src/CloseButton.tsx +2 -2
- package/src/CloseIcon.tsx +6 -4
- package/src/Code.tsx +1 -1
- package/src/Collapse.tsx +13 -14
- package/src/Divider.tsx +3 -3
- package/src/Drawer.recipe.ts +4 -5
- package/src/Drawer.tsx +3 -4
- package/src/Fade.tsx +6 -10
- package/src/Field.recipe.ts +9 -12
- package/src/Field.tsx +16 -18
- package/src/GridList.recipe.ts +1 -2
- package/src/Heading.recipe.ts +5 -5
- package/src/Heading.tsx +3 -3
- package/src/Icon.tsx +7 -11
- package/src/IconButton.tsx +1 -1
- package/src/Image.tsx +1 -1
- package/src/Input.recipe.ts +5 -6
- package/src/Input.tsx +4 -4
- package/src/InputGroup.tsx +4 -5
- package/src/Kbd.tsx +1 -1
- package/src/Link.tsx +2 -2
- package/src/LinkBox.tsx +2 -3
- package/src/LinkButton.tsx +4 -4
- package/src/List.tsx +5 -7
- package/src/Menu.recipe.ts +15 -16
- package/src/Menu.tsx +9 -13
- package/src/Modal.recipe.ts +7 -8
- package/src/Modal.tsx +19 -24
- package/src/NativeSelect.tsx +16 -16
- package/src/NumberField.recipe.ts +8 -10
- package/src/NumberField.tsx +4 -4
- package/src/PopoverArrow.tsx +1 -2
- package/src/ProgressBar.tsx +2 -3
- package/src/Radio.recipe.ts +8 -9
- package/src/Radio.tsx +2 -2
- package/src/RadioGroup.tsx +4 -5
- package/src/Select.recipe.ts +9 -9
- package/src/Select.tsx +8 -9
- package/src/Skeleton.tsx +13 -15
- package/src/Slide.tsx +2 -2
- package/src/Slider.recipe.ts +11 -14
- package/src/Slider.tsx +3 -7
- package/src/Spinner.tsx +6 -9
- package/src/Svg.tsx +2 -3
- package/src/Switch.recipe.ts +4 -5
- package/src/Switch.tsx +3 -4
- package/src/Text.recipe.ts +4 -7
- package/src/Text.tsx +2 -2
- package/src/TextField.tsx +3 -4
- package/src/Toast.recipe.ts +43 -11
- package/src/Toast.tsx +29 -28
- package/src/Tooltip.recipe.ts +4 -9
- package/src/Tooltip.tsx +9 -11
- package/src/TooltipButton.tsx +1 -2
- package/src/UnmountCallback.tsx +2 -2
- package/src/VisuallyHidden.tsx +1 -1
- package/src/base-preset.ts +40 -44
- package/src/button-icon.ts +2 -3
- package/src/dense-preset.ts +6 -7
- package/src/hooks/useBreakpointValue.ts +4 -4
- package/src/hooks/useClipboard.ts +5 -6
- package/src/hooks/useDisclosure.ts +4 -5
- package/src/hooks/useMediaQuery.ts +3 -4
- package/src/hooks/usePrevious.ts +1 -4
- package/src/index.ts +3 -3
- package/src/system.ts +2 -2
package/LICENSE.md
CHANGED
|
@@ -54,8 +54,8 @@ Chakra UI is used under the MIT License:
|
|
|
54
54
|
|
|
55
55
|
This package's `lang/ui.<locale>.json` catalogs include translations of a few
|
|
56
56
|
user-interface strings copied from
|
|
57
|
-
[React Spectrum](https://github.com/adobe/react-spectrum)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
<https://www.apache.org/licenses/LICENSE-2.0>.
|
|
57
|
+
[React Spectrum](https://github.com/adobe/react-spectrum) — from react-aria at
|
|
58
|
+
tag `react-aria-components@1.19.0`, and from the Spectrum 2 InlineAlert
|
|
59
|
+
component's catalogs (see the README's "Strings" section for which). React
|
|
60
|
+
Spectrum is copyright Adobe and its contributors, and is used under the Apache
|
|
61
|
+
License, Version 2.0: <https://www.apache.org/licenses/LICENSE-2.0>.
|
package/README.md
CHANGED
|
@@ -64,11 +64,11 @@ an app must do:
|
|
|
64
64
|
@import "@microbit/ui/reset.css" layer(reset);
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
-
The `reset.css` import is **required**: it carries the
|
|
67
|
+
The `reset.css` import is **required**: it carries the
|
|
68
68
|
`* { border-color; word-wrap }` defaults, which must sit in the bottom
|
|
69
69
|
layer (the legacy-Safari cascade-layer flattening specificity-boosts
|
|
70
70
|
higher layers above CSS it can't see — runtime-injected styles, other
|
|
71
|
-
files
|
|
71
|
+
files). Without it, elements that set a border
|
|
72
72
|
width but no colour render `currentColor` borders.
|
|
73
73
|
The `vendor` layer is for third-party stylesheets: import any vendor CSS
|
|
74
74
|
with `@import "..." layer(vendor)` so it beats the preflight reset but
|
|
@@ -92,6 +92,17 @@ node_modules/@microbit/ui/lang/ui.fr.json --ast --out-file ...` (multiple
|
|
|
92
92
|
the tree (e.g. the Android hardware back button).
|
|
93
93
|
7. **`ToastProvider`** once near the root, inside the two providers above.
|
|
94
94
|
|
|
95
|
+
## Upgrading in an app
|
|
96
|
+
|
|
97
|
+
After bumping the `@microbit/ui` version:
|
|
98
|
+
|
|
99
|
+
1. `npm install` — the apps' postinstall runs `panda codegen`, but incremental
|
|
100
|
+
codegen does not detect external preset changes, so regenerate clean:
|
|
101
|
+
`rm -rf styled-system && npm run panda`.
|
|
102
|
+
2. `npm run i18n:compile` — recompiles the app's per-locale catalogs so new
|
|
103
|
+
and retranslated `ui.*` strings ship (otherwise they fall back to English,
|
|
104
|
+
or stay missing).
|
|
105
|
+
|
|
95
106
|
## Legacy browser support (Safari < 15) — temporary
|
|
96
107
|
|
|
97
108
|
Panda's output uses two things Safari below 15 mishandles. If an app must
|
|
@@ -174,9 +185,8 @@ apply wherever the token is consumed.
|
|
|
174
185
|
## Runtime token lookups
|
|
175
186
|
|
|
176
187
|
For values that feed _computation_ rather than stylesheets (canvas painting,
|
|
177
|
-
colour math, inline `style` for data-driven values
|
|
178
|
-
|
|
179
|
-
runtime lookup:
|
|
188
|
+
colour math, inline `style` for data-driven values that Panda's static
|
|
189
|
+
extraction can't see), import the runtime lookup:
|
|
180
190
|
|
|
181
191
|
```ts
|
|
182
192
|
import { token } from "@microbit/ui"; // re-exports styled-system/tokens
|
|
@@ -210,15 +220,32 @@ Crowdin ZIP>` (config-driven over packages in
|
|
|
210
220
|
`bin/update-translations.cjs`), after which you run `npm run i18n:tidy`
|
|
211
221
|
from the root.
|
|
212
222
|
|
|
223
|
+
`bin/i18n-packages.cjs` lists every locale a consuming app ships, so a string
|
|
224
|
+
translated for one app is in place for the next. `i18n:tidy` backfills anything
|
|
225
|
+
missing from English, so an untranslated string renders English rather than
|
|
226
|
+
blank.
|
|
227
|
+
|
|
228
|
+
Until this package's Crowdin project is wired up, the non-English catalogs are
|
|
229
|
+
pre-Crowdin seeds — some strings AI-drafted, all of them for Crowdin to review
|
|
230
|
+
— credited as follows. Translations of the same strings elsewhere in the
|
|
231
|
+
micro:bit translation programme: ml-trainer and python-editor-v3, and
|
|
232
|
+
MakeCode's editor strings, which are not in the pxt repo but can be fetched per
|
|
233
|
+
locale from
|
|
234
|
+
`https://makecode.microbit.org/api/translations?lang=<locale>&filename=strings.json&approved=true`.
|
|
235
|
+
The `ui.toast-status-*` words come from Spectrum 2's InlineAlert catalogs
|
|
236
|
+
(`@react-spectrum/s2/intl/*.json`, keys `inlinealert.informative` / `notice` /
|
|
237
|
+
`negative` / `positive`), under the same licence and notice as the react-aria
|
|
238
|
+
seed below.
|
|
239
|
+
|
|
213
240
|
### react-aria's own strings
|
|
214
241
|
|
|
215
242
|
Separately from all of the above, react-aria has built-in strings of its own
|
|
216
243
|
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
|
|
218
|
-
locales; of ours, ca, cy
|
|
219
|
-
them and fall back to English, and there is no supported way to teach it
|
|
220
|
-
(the rest resolve, including where our id is less specific than
|
|
221
|
-
`fr` finds its fr-FR).
|
|
244
|
+
`SharedUIProvider` hands it the app's locale so the two agree. It bundles 34
|
|
245
|
+
locales; of ours, ca, cy, ga-IE, lo and vi (and the `lol` pseudo-locale) are not
|
|
246
|
+
among them and fall back to English, and there is no supported way to teach it
|
|
247
|
+
more (the rest resolve, including where our id is less specific than
|
|
248
|
+
react-aria's — `fr` finds its fr-FR).
|
|
222
249
|
|
|
223
250
|
Where react-aria lets a prop replace one of those strings, the component
|
|
224
251
|
passes our own react-intl message instead, so the string rides `lang/` and
|
|
@@ -239,9 +266,9 @@ Crowdin like everything else and the missing locales can catch up:
|
|
|
239
266
|
Their non-English translations were pre-seeded from react-aria's own catalogs
|
|
240
267
|
([adobe/react-spectrum](https://github.com/adobe/react-spectrum) at tag
|
|
241
268
|
`react-aria-components@1.19.0`, Apache 2.0 — see the notice in
|
|
242
|
-
[LICENSE.md](LICENSE.md)) for the locales both sides cover
|
|
243
|
-
|
|
244
|
-
|
|
269
|
+
[LICENSE.md](LICENSE.md)) for the locales both sides cover; the five above had
|
|
270
|
+
no such source. That provenance is recorded here rather than in `lang/` because
|
|
271
|
+
Crowdin roundtrips rewrite those files.
|
|
245
272
|
|
|
246
273
|
What react-aria does not expose as a prop — live announcements ("2 items
|
|
247
274
|
selected"), its hidden dismiss buttons — still comes from its bundled catalogs
|
package/lang/ui.ca.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Rastres de navegació",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -8,35 +8,35 @@
|
|
|
8
8
|
"description": "Close button text or label"
|
|
9
9
|
},
|
|
10
10
|
"ui.combobox-listbox": {
|
|
11
|
-
"defaultMessage": "
|
|
11
|
+
"defaultMessage": "Suggeriments",
|
|
12
12
|
"description": "Accessible label for a ComboBox's dropdown list of suggestions"
|
|
13
13
|
},
|
|
14
14
|
"ui.combobox-trigger": {
|
|
15
|
-
"defaultMessage": "
|
|
15
|
+
"defaultMessage": "Mostra els suggeriments",
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "S'està carregant",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
23
|
-
"defaultMessage": "
|
|
23
|
+
"defaultMessage": "Decrementa {fieldLabel}",
|
|
24
24
|
"description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
|
|
25
25
|
},
|
|
26
26
|
"ui.numberfield-increase": {
|
|
27
|
-
"defaultMessage": "
|
|
27
|
+
"defaultMessage": "Incrementa {fieldLabel}",
|
|
28
28
|
"description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
|
|
29
29
|
},
|
|
30
30
|
"ui.select-placeholder": {
|
|
31
|
-
"defaultMessage": "
|
|
31
|
+
"defaultMessage": "Selecciona un element",
|
|
32
32
|
"description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
|
|
33
33
|
},
|
|
34
34
|
"ui.select-row-action": {
|
|
35
|
-
"defaultMessage": "
|
|
35
|
+
"defaultMessage": "Selecciona",
|
|
36
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
37
|
},
|
|
38
38
|
"ui.toast-region": {
|
|
39
|
-
"defaultMessage": "{count, plural, one {#
|
|
39
|
+
"defaultMessage": "{count, plural, one {# notificació} other {# notificacions}}.",
|
|
40
40
|
"description": "Accessible label for the notifications area; count is the number of notifications showing"
|
|
41
41
|
},
|
|
42
42
|
"ui.toast-status-error": {
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "Informació",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "Completat amb èxit",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "Advertència",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/lang/ui.cy.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Briwsionyn Bara",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "Wrthi'n Llwytho",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
|
|
33
33
|
},
|
|
34
34
|
"ui.select-row-action": {
|
|
35
|
-
"defaultMessage": "
|
|
35
|
+
"defaultMessage": "Dewis",
|
|
36
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
37
|
},
|
|
38
38
|
"ui.toast-region": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "Llwyddiant",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
package/lang/ui.de.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Navigationspfad",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "Laden",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"description": "Accessible label for the notifications area; count is the number of notifications showing"
|
|
41
41
|
},
|
|
42
42
|
"ui.toast-status-error": {
|
|
43
|
-
"defaultMessage": "
|
|
43
|
+
"defaultMessage": "Fehler",
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "Informationen",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "Erfolg",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "Warnung",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/lang/ui.es-es.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Sendero de navegación",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "Cargando",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "Información",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "Éxito",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "Advertencia",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/lang/ui.fr.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Fil d'Ariane",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "Chargement",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"description": "Accessible label for the notifications area; count is the number of notifications showing"
|
|
41
41
|
},
|
|
42
42
|
"ui.toast-status-error": {
|
|
43
|
-
"defaultMessage": "
|
|
43
|
+
"defaultMessage": "Erreur",
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "Informations",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "Succès",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "Avertissement",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/lang/ui.ga-ie.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Mionrian",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "Ag lódáil",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
|
|
33
33
|
},
|
|
34
34
|
"ui.select-row-action": {
|
|
35
|
-
"defaultMessage": "
|
|
35
|
+
"defaultMessage": "Roghnaigh",
|
|
36
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
37
|
},
|
|
38
38
|
"ui.toast-region": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"description": "Accessible label for the notifications area; count is the number of notifications showing"
|
|
41
41
|
},
|
|
42
42
|
"ui.toast-status-error": {
|
|
43
|
-
"defaultMessage": "
|
|
43
|
+
"defaultMessage": "Earráid",
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "D'éirigh leis",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "Rabhadh",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/lang/ui.it.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Percorso di navigazione",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "Caricamento",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "Informazioni",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "Successo",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
package/lang/ui.ja.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "パンくずリスト",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "読み込み中",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
|
|
33
33
|
},
|
|
34
34
|
"ui.select-row-action": {
|
|
35
|
-
"defaultMessage": "
|
|
35
|
+
"defaultMessage": "選択する",
|
|
36
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
37
|
},
|
|
38
38
|
"ui.toast-region": {
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"description": "Accessible label for the notifications area; count is the number of notifications showing"
|
|
41
41
|
},
|
|
42
42
|
"ui.toast-status-error": {
|
|
43
|
-
"defaultMessage": "
|
|
43
|
+
"defaultMessage": "エラー",
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "情報",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "成功",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "警告",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/lang/ui.ko.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "이동경로",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "불러오는 중...",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"description": "Accessible label for the notifications area; count is the number of notifications showing"
|
|
41
41
|
},
|
|
42
42
|
"ui.toast-status-error": {
|
|
43
|
-
"defaultMessage": "
|
|
43
|
+
"defaultMessage": "오류",
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "정보",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "성공",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "경고",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/lang/ui.lo.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ui.breadcrumb": {
|
|
3
|
+
"defaultMessage": "ແຖບເສັ້ນທາງນຳທາງ",
|
|
4
|
+
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
|
+
},
|
|
6
|
+
"ui.close-action": {
|
|
7
|
+
"defaultMessage": "ປິດໜ້າ",
|
|
8
|
+
"description": "Close button text or label"
|
|
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": "ກຳລັງໂຫຼດ",
|
|
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
|
+
},
|
|
42
|
+
"ui.toast-status-error": {
|
|
43
|
+
"defaultMessage": "ຂໍ້ຜິດພາດ",
|
|
44
|
+
"description": "Announced by screen readers before an error notification"
|
|
45
|
+
},
|
|
46
|
+
"ui.toast-status-info": {
|
|
47
|
+
"defaultMessage": "Information",
|
|
48
|
+
"description": "Announced by screen readers before an informational notification"
|
|
49
|
+
},
|
|
50
|
+
"ui.toast-status-success": {
|
|
51
|
+
"defaultMessage": "Success",
|
|
52
|
+
"description": "Announced by screen readers before a success notification"
|
|
53
|
+
},
|
|
54
|
+
"ui.toast-status-warning": {
|
|
55
|
+
"defaultMessage": "ຄຳເຕືອນ",
|
|
56
|
+
"description": "Announced by screen readers before a warning notification"
|
|
57
|
+
}
|
|
58
|
+
}
|
package/lang/ui.nl.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ui.breadcrumb": {
|
|
3
|
-
"defaultMessage": "
|
|
3
|
+
"defaultMessage": "Kruimelpad",
|
|
4
4
|
"description": "Accessible label for the breadcrumb navigation trail (the WAI-ARIA APG's conventional name)"
|
|
5
5
|
},
|
|
6
6
|
"ui.close-action": {
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"description": "Accessible label for the button that opens a ComboBox's suggestions dropdown"
|
|
17
17
|
},
|
|
18
18
|
"ui.loading": {
|
|
19
|
-
"defaultMessage": "
|
|
19
|
+
"defaultMessage": "Laden",
|
|
20
20
|
"description": "Announced by screen readers for a button showing a loading spinner"
|
|
21
21
|
},
|
|
22
22
|
"ui.numberfield-decrease": {
|
|
23
|
-
"defaultMessage": "{fieldLabel}
|
|
23
|
+
"defaultMessage": "Verlaag {fieldLabel}",
|
|
24
24
|
"description": "Accessible label for a number field's decrement stepper; fieldLabel is the field's label and may be empty"
|
|
25
25
|
},
|
|
26
26
|
"ui.numberfield-increase": {
|
|
27
|
-
"defaultMessage": "{fieldLabel}
|
|
27
|
+
"defaultMessage": "Verhoog {fieldLabel}",
|
|
28
28
|
"description": "Accessible label for a number field's increment stepper; fieldLabel is the field's label and may be empty"
|
|
29
29
|
},
|
|
30
30
|
"ui.select-placeholder": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"description": "Shown in a Select's trigger while nothing is chosen and the app supplies no placeholder"
|
|
33
33
|
},
|
|
34
34
|
"ui.select-row-action": {
|
|
35
|
-
"defaultMessage": "
|
|
35
|
+
"defaultMessage": "Selecteer",
|
|
36
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
37
|
},
|
|
38
38
|
"ui.toast-region": {
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"description": "Accessible label for the notifications area; count is the number of notifications showing"
|
|
41
41
|
},
|
|
42
42
|
"ui.toast-status-error": {
|
|
43
|
-
"defaultMessage": "
|
|
43
|
+
"defaultMessage": "Fout",
|
|
44
44
|
"description": "Announced by screen readers before an error notification"
|
|
45
45
|
},
|
|
46
46
|
"ui.toast-status-info": {
|
|
47
|
-
"defaultMessage": "
|
|
47
|
+
"defaultMessage": "Informatie",
|
|
48
48
|
"description": "Announced by screen readers before an informational notification"
|
|
49
49
|
},
|
|
50
50
|
"ui.toast-status-success": {
|
|
51
|
-
"defaultMessage": "
|
|
51
|
+
"defaultMessage": "Succes",
|
|
52
52
|
"description": "Announced by screen readers before a success notification"
|
|
53
53
|
},
|
|
54
54
|
"ui.toast-status-warning": {
|
|
55
|
-
"defaultMessage": "
|
|
55
|
+
"defaultMessage": "Waarschuwing",
|
|
56
56
|
"description": "Announced by screen readers before a warning notification"
|
|
57
57
|
}
|
|
58
58
|
}
|