@commercetools/nimbus-i18n 0.0.0-canary-20251015171040
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/README.md +46 -0
- package/compiled-data/core.json +278 -0
- package/compiled-data/de.json +2 -0
- package/compiled-data/en.json +2 -0
- package/compiled-data/es.json +2 -0
- package/compiled-data/fr-FR.json +2 -0
- package/compiled-data/pt-BR.json +2 -0
- package/data/core.json +186 -0
- package/data/de.json +1 -0
- package/data/en.json +1 -0
- package/data/es.json +1 -0
- package/data/fr-FR.json +1 -0
- package/data/pt-BR.json +1 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# @commercetools/nimbus-i18n
|
|
2
|
+
|
|
3
|
+
This package contains all translation messages from the Nimbus design system
|
|
4
|
+
components. It's a **pure data package** that provides centralized
|
|
5
|
+
internationalization support for accessibility labels, tooltips, and user-facing
|
|
6
|
+
text across all Nimbus components.
|
|
7
|
+
|
|
8
|
+
> 📖 **For i18n development information (adding messages, extraction workflow,
|
|
9
|
+
> etc.), see the
|
|
10
|
+
> [Nimbus README](../nimbus/README.md#internationalization-i18n-development)**
|
|
11
|
+
|
|
12
|
+
## Package Type
|
|
13
|
+
|
|
14
|
+
This is a **data-only package** - it contains no code, only translation files in
|
|
15
|
+
multiple formats. It's designed to be consumed directly by importing JSON files.
|
|
16
|
+
|
|
17
|
+
## Supported Locales
|
|
18
|
+
|
|
19
|
+
- **English (en)** - Default locale
|
|
20
|
+
- **German (de)**
|
|
21
|
+
- **Spanish (es)**
|
|
22
|
+
- **French (fr-FR)**
|
|
23
|
+
- **Portuguese (pt-BR)**
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pnpm add @commercetools/nimbus-i18n
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
### Primary Usage: App-Kit Integration
|
|
34
|
+
|
|
35
|
+
This package is primarily designed to be consumed by the **Merchant Center
|
|
36
|
+
App-Kit**, which automatically loads and merges Nimbus translations with other
|
|
37
|
+
system translations.
|
|
38
|
+
|
|
39
|
+
## Message Keys Structure
|
|
40
|
+
|
|
41
|
+
All translation keys follow the pattern: `Nimbus.{ComponentName}.{messageKey}`
|
|
42
|
+
|
|
43
|
+
Examples:
|
|
44
|
+
|
|
45
|
+
- `Nimbus.PasswordInput.show` - Show password button
|
|
46
|
+
- `Nimbus.DatePicker.clearInput` - Clear input button
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Nimbus.Alert.dismiss": [
|
|
3
|
+
{
|
|
4
|
+
"type": 0,
|
|
5
|
+
"value": "Dismiss"
|
|
6
|
+
}
|
|
7
|
+
],
|
|
8
|
+
"Nimbus.DatePicker.Time.enterTime": [
|
|
9
|
+
{
|
|
10
|
+
"type": 0,
|
|
11
|
+
"value": "Enter time"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"Nimbus.DatePicker.Time.enterTimeHour": [
|
|
15
|
+
{
|
|
16
|
+
"type": 0,
|
|
17
|
+
"value": "Enter time (hour)"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"Nimbus.DatePicker.Time.enterTimeHourMinute": [
|
|
21
|
+
{
|
|
22
|
+
"type": 0,
|
|
23
|
+
"value": "Enter time (hour and minute)"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"Nimbus.DatePicker.Time.enterTimeHourMinuteSecond": [
|
|
27
|
+
{
|
|
28
|
+
"type": 0,
|
|
29
|
+
"value": "Enter time (hour, minute, and second)"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"Nimbus.DatePicker.Time.startTime": [
|
|
33
|
+
{
|
|
34
|
+
"type": 0,
|
|
35
|
+
"value": "Start time"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"Nimbus.DatePicker.clearInput": [
|
|
39
|
+
{
|
|
40
|
+
"type": 0,
|
|
41
|
+
"value": "Clear input value"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"Nimbus.Dialog.closeTrigger": [
|
|
45
|
+
{
|
|
46
|
+
"type": 0,
|
|
47
|
+
"value": "Close dialog"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"Nimbus.DraggableList.emptyMessage": [
|
|
51
|
+
{
|
|
52
|
+
"type": 0,
|
|
53
|
+
"value": "drop items here"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"Nimbus.DraggableList.removeButtonLabel": [
|
|
57
|
+
{
|
|
58
|
+
"type": 0,
|
|
59
|
+
"value": "remove item"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"Nimbus.Drawer.closeTrigger": [
|
|
63
|
+
{
|
|
64
|
+
"type": 0,
|
|
65
|
+
"value": "Close drawer"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"Nimbus.FieldErrors.duplicateValue": [
|
|
69
|
+
{
|
|
70
|
+
"type": 0,
|
|
71
|
+
"value": "This value is already in use. It must be unique."
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"Nimbus.FieldErrors.emptyValue": [
|
|
75
|
+
{
|
|
76
|
+
"type": 0,
|
|
77
|
+
"value": "This field cannot be empty."
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"Nimbus.FieldErrors.invalidFormat": [
|
|
81
|
+
{
|
|
82
|
+
"type": 0,
|
|
83
|
+
"value": "Please enter a valid format."
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"Nimbus.FieldErrors.invalidFractionalNumber": [
|
|
87
|
+
{
|
|
88
|
+
"type": 0,
|
|
89
|
+
"value": "A whole number is required."
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"Nimbus.FieldErrors.invalidFromServer": [
|
|
93
|
+
{
|
|
94
|
+
"type": 0,
|
|
95
|
+
"value": "Server validation failed. Please check your input."
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"Nimbus.FieldErrors.invalidNegativeNumber": [
|
|
99
|
+
{
|
|
100
|
+
"type": 0,
|
|
101
|
+
"value": "Negative number is not supported."
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"Nimbus.FieldErrors.invalidValue": [
|
|
105
|
+
{
|
|
106
|
+
"type": 0,
|
|
107
|
+
"value": "The provided value is invalid."
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"Nimbus.FieldErrors.missingRequiredField": [
|
|
111
|
+
{
|
|
112
|
+
"type": 0,
|
|
113
|
+
"value": "This field is required. Provide a value."
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"Nimbus.FieldErrors.resourceNotFound": [
|
|
117
|
+
{
|
|
118
|
+
"type": 0,
|
|
119
|
+
"value": "The requested resource was not found."
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"Nimbus.FieldErrors.valueAboveMaximum": [
|
|
123
|
+
{
|
|
124
|
+
"type": 0,
|
|
125
|
+
"value": "Value must be less than or equal to the maximum."
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"Nimbus.FieldErrors.valueBelowMinimum": [
|
|
129
|
+
{
|
|
130
|
+
"type": 0,
|
|
131
|
+
"value": "Value must be greater than or equal to the minimum."
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"Nimbus.FieldErrors.valueBlocked": [
|
|
135
|
+
{
|
|
136
|
+
"type": 0,
|
|
137
|
+
"value": "This value is not allowed."
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"Nimbus.FieldErrors.valueOutOfRange": [
|
|
141
|
+
{
|
|
142
|
+
"type": 0,
|
|
143
|
+
"value": "Value must be within the acceptable range."
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"Nimbus.FieldErrors.valueTooLong": [
|
|
147
|
+
{
|
|
148
|
+
"type": 0,
|
|
149
|
+
"value": "This value is too long."
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"Nimbus.FieldErrors.valueTooShort": [
|
|
153
|
+
{
|
|
154
|
+
"type": 0,
|
|
155
|
+
"value": "This value is too short."
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"Nimbus.LoadingSpinner.default": [
|
|
159
|
+
{
|
|
160
|
+
"type": 0,
|
|
161
|
+
"value": "Loading data"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"Nimbus.LocalizedField.hideCurrencies": [
|
|
165
|
+
{
|
|
166
|
+
"type": 0,
|
|
167
|
+
"value": "Hide all currencies"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"Nimbus.LocalizedField.hideLanguages": [
|
|
171
|
+
{
|
|
172
|
+
"type": 0,
|
|
173
|
+
"value": "Hide all languages"
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
"Nimbus.LocalizedField.infoBoxTriggerAriaLabel": [
|
|
177
|
+
{
|
|
178
|
+
"type": 0,
|
|
179
|
+
"value": "more info"
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"Nimbus.LocalizedField.missingRequiredField": [
|
|
183
|
+
{
|
|
184
|
+
"type": 0,
|
|
185
|
+
"value": "This field is required. Provide at least one value."
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"Nimbus.LocalizedField.showCurrencies": [
|
|
189
|
+
{
|
|
190
|
+
"type": 0,
|
|
191
|
+
"value": "Show all currencies"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"Nimbus.LocalizedField.showLanguages": [
|
|
195
|
+
{
|
|
196
|
+
"type": 0,
|
|
197
|
+
"value": "Show all languages"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"Nimbus.MoneyInput.amountInputLabel": [
|
|
201
|
+
{
|
|
202
|
+
"type": 0,
|
|
203
|
+
"value": "Amount"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"Nimbus.MoneyInput.currencySelectLabel": [
|
|
207
|
+
{
|
|
208
|
+
"type": 0,
|
|
209
|
+
"value": "Currency"
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"Nimbus.MoneyInput.highPrecisionPrice": [
|
|
213
|
+
{
|
|
214
|
+
"type": 0,
|
|
215
|
+
"value": "High precision price"
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
"Nimbus.NumberInput.decrement": [
|
|
219
|
+
{
|
|
220
|
+
"type": 0,
|
|
221
|
+
"value": "Decrement"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"Nimbus.NumberInput.increment": [
|
|
225
|
+
{
|
|
226
|
+
"type": 0,
|
|
227
|
+
"value": "Increment"
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"Nimbus.PasswordInput.hide": [
|
|
231
|
+
{
|
|
232
|
+
"type": 0,
|
|
233
|
+
"value": "Hide password"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"Nimbus.PasswordInput.show": [
|
|
237
|
+
{
|
|
238
|
+
"type": 0,
|
|
239
|
+
"value": "Show password"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"Nimbus.ScopedSearchInput.clearButton": [
|
|
243
|
+
{
|
|
244
|
+
"type": 0,
|
|
245
|
+
"value": "Clear search"
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"Nimbus.ScopedSearchInput.searchLabel": [
|
|
249
|
+
{
|
|
250
|
+
"type": 0,
|
|
251
|
+
"value": "Search"
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"Nimbus.ScopedSearchInput.selectLabel": [
|
|
255
|
+
{
|
|
256
|
+
"type": 0,
|
|
257
|
+
"value": "Filter by"
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"Nimbus.ScopedSearchInput.submitButton": [
|
|
261
|
+
{
|
|
262
|
+
"type": 0,
|
|
263
|
+
"value": "Submit search"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"Nimbus.SearchInput.clearInput": [
|
|
267
|
+
{
|
|
268
|
+
"type": 0,
|
|
269
|
+
"value": "Clear search input"
|
|
270
|
+
}
|
|
271
|
+
],
|
|
272
|
+
"Nimbus.Select.clearSelection": [
|
|
273
|
+
{
|
|
274
|
+
"type": 0,
|
|
275
|
+
"value": "Clear selection"
|
|
276
|
+
}
|
|
277
|
+
]
|
|
278
|
+
}
|
package/data/core.json
ADDED
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Nimbus.Alert.dismiss": {
|
|
3
|
+
"developer_comment": "aria-label for the dismiss button in an alert",
|
|
4
|
+
"string": "Dismiss"
|
|
5
|
+
},
|
|
6
|
+
"Nimbus.DatePicker.Time.enterTime": {
|
|
7
|
+
"developer_comment": "aria-label for time input field in date picker",
|
|
8
|
+
"string": "Enter time"
|
|
9
|
+
},
|
|
10
|
+
"Nimbus.DatePicker.Time.enterTimeHour": {
|
|
11
|
+
"developer_comment": "aria-label for hour-only time input in date picker",
|
|
12
|
+
"string": "Enter time (hour)"
|
|
13
|
+
},
|
|
14
|
+
"Nimbus.DatePicker.Time.enterTimeHourMinute": {
|
|
15
|
+
"developer_comment": "aria-label for hour and minute time input in date picker",
|
|
16
|
+
"string": "Enter time (hour and minute)"
|
|
17
|
+
},
|
|
18
|
+
"Nimbus.DatePicker.Time.enterTimeHourMinuteSecond": {
|
|
19
|
+
"developer_comment": "aria-label for full time input with seconds in date picker",
|
|
20
|
+
"string": "Enter time (hour, minute, and second)"
|
|
21
|
+
},
|
|
22
|
+
"Nimbus.DatePicker.Time.startTime": {
|
|
23
|
+
"developer_comment": "Label for start time in date picker",
|
|
24
|
+
"string": "Start time"
|
|
25
|
+
},
|
|
26
|
+
"Nimbus.DatePicker.clearInput": {
|
|
27
|
+
"developer_comment": "aria-label for clear input button in date picker",
|
|
28
|
+
"string": "Clear input value"
|
|
29
|
+
},
|
|
30
|
+
"Nimbus.Dialog.closeTrigger": {
|
|
31
|
+
"developer_comment": "aria-label for the default close trigger button",
|
|
32
|
+
"string": "Close dialog"
|
|
33
|
+
},
|
|
34
|
+
"Nimbus.DraggableList.emptyMessage": {
|
|
35
|
+
"developer_comment": "message displayed when drag-and-drop enabled list is empty",
|
|
36
|
+
"string": "drop items here"
|
|
37
|
+
},
|
|
38
|
+
"Nimbus.DraggableList.removeButtonLabel": {
|
|
39
|
+
"developer_comment": "label for button that removes an item from the list",
|
|
40
|
+
"string": "remove item"
|
|
41
|
+
},
|
|
42
|
+
"Nimbus.Drawer.closeTrigger": {
|
|
43
|
+
"developer_comment": "aria-label for the default close trigger button",
|
|
44
|
+
"string": "Close drawer"
|
|
45
|
+
},
|
|
46
|
+
"Nimbus.FieldErrors.duplicateValue": {
|
|
47
|
+
"developer_comment": "Error message for duplicate value validation",
|
|
48
|
+
"string": "This value is already in use. It must be unique."
|
|
49
|
+
},
|
|
50
|
+
"Nimbus.FieldErrors.emptyValue": {
|
|
51
|
+
"developer_comment": "Error message for empty value when content is required",
|
|
52
|
+
"string": "This field cannot be empty."
|
|
53
|
+
},
|
|
54
|
+
"Nimbus.FieldErrors.invalidFormat": {
|
|
55
|
+
"developer_comment": "Error message for format validation",
|
|
56
|
+
"string": "Please enter a valid format."
|
|
57
|
+
},
|
|
58
|
+
"Nimbus.FieldErrors.invalidFractionalNumber": {
|
|
59
|
+
"developer_comment": "Error message when fractional number is used",
|
|
60
|
+
"string": "A whole number is required."
|
|
61
|
+
},
|
|
62
|
+
"Nimbus.FieldErrors.invalidFromServer": {
|
|
63
|
+
"developer_comment": "Error message for server-side validation errors",
|
|
64
|
+
"string": "Server validation failed. Please check your input."
|
|
65
|
+
},
|
|
66
|
+
"Nimbus.FieldErrors.invalidNegativeNumber": {
|
|
67
|
+
"developer_comment": "Error message when negative number is used",
|
|
68
|
+
"string": "Negative number is not supported."
|
|
69
|
+
},
|
|
70
|
+
"Nimbus.FieldErrors.invalidValue": {
|
|
71
|
+
"developer_comment": "Error message for invalid value or format",
|
|
72
|
+
"string": "The provided value is invalid."
|
|
73
|
+
},
|
|
74
|
+
"Nimbus.FieldErrors.missingRequiredField": {
|
|
75
|
+
"developer_comment": "Error message for missing required value",
|
|
76
|
+
"string": "This field is required. Provide a value."
|
|
77
|
+
},
|
|
78
|
+
"Nimbus.FieldErrors.resourceNotFound": {
|
|
79
|
+
"developer_comment": "Error message when a resource is not found",
|
|
80
|
+
"string": "The requested resource was not found."
|
|
81
|
+
},
|
|
82
|
+
"Nimbus.FieldErrors.valueAboveMaximum": {
|
|
83
|
+
"developer_comment": "Error message for values above maximum threshold",
|
|
84
|
+
"string": "Value must be less than or equal to the maximum."
|
|
85
|
+
},
|
|
86
|
+
"Nimbus.FieldErrors.valueBelowMinimum": {
|
|
87
|
+
"developer_comment": "Error message for values below minimum threshold",
|
|
88
|
+
"string": "Value must be greater than or equal to the minimum."
|
|
89
|
+
},
|
|
90
|
+
"Nimbus.FieldErrors.valueBlocked": {
|
|
91
|
+
"developer_comment": "Error message for blocked or restricted values",
|
|
92
|
+
"string": "This value is not allowed."
|
|
93
|
+
},
|
|
94
|
+
"Nimbus.FieldErrors.valueOutOfRange": {
|
|
95
|
+
"developer_comment": "Error message for values outside acceptable range",
|
|
96
|
+
"string": "Value must be within the acceptable range."
|
|
97
|
+
},
|
|
98
|
+
"Nimbus.FieldErrors.valueTooLong": {
|
|
99
|
+
"developer_comment": "Error message for maximum length validation",
|
|
100
|
+
"string": "This value is too long."
|
|
101
|
+
},
|
|
102
|
+
"Nimbus.FieldErrors.valueTooShort": {
|
|
103
|
+
"developer_comment": "Error message for minimum length validation",
|
|
104
|
+
"string": "This value is too short."
|
|
105
|
+
},
|
|
106
|
+
"Nimbus.LoadingSpinner.default": {
|
|
107
|
+
"developer_comment": "Default loading message for loading spinners",
|
|
108
|
+
"string": "Loading data"
|
|
109
|
+
},
|
|
110
|
+
"Nimbus.LocalizedField.hideCurrencies": {
|
|
111
|
+
"developer_comment": "Label for hiding all currency inputs when toggle button is pressed",
|
|
112
|
+
"string": "Hide all currencies"
|
|
113
|
+
},
|
|
114
|
+
"Nimbus.LocalizedField.hideLanguages": {
|
|
115
|
+
"developer_comment": "Label for hiding all language inputs when toggle button is pressed",
|
|
116
|
+
"string": "Hide all languages"
|
|
117
|
+
},
|
|
118
|
+
"Nimbus.LocalizedField.infoBoxTriggerAriaLabel": {
|
|
119
|
+
"developer_comment": "aria label for button that triggers more info dialog",
|
|
120
|
+
"string": "more info"
|
|
121
|
+
},
|
|
122
|
+
"Nimbus.LocalizedField.missingRequiredField": {
|
|
123
|
+
"developer_comment": "Error message for missing required value",
|
|
124
|
+
"string": "This field is required. Provide at least one value."
|
|
125
|
+
},
|
|
126
|
+
"Nimbus.LocalizedField.showCurrencies": {
|
|
127
|
+
"developer_comment": "Label for showing all currency inputs when toggle button is pressed",
|
|
128
|
+
"string": "Show all currencies"
|
|
129
|
+
},
|
|
130
|
+
"Nimbus.LocalizedField.showLanguages": {
|
|
131
|
+
"developer_comment": "Label for showing all language inputs when toggle button is pressed",
|
|
132
|
+
"string": "Show all languages"
|
|
133
|
+
},
|
|
134
|
+
"Nimbus.MoneyInput.amountInputLabel": {
|
|
135
|
+
"developer_comment": "aria-label for amount input",
|
|
136
|
+
"string": "Amount"
|
|
137
|
+
},
|
|
138
|
+
"Nimbus.MoneyInput.currencySelectLabel": {
|
|
139
|
+
"developer_comment": "aria-label for currency selection dropdown",
|
|
140
|
+
"string": "Currency"
|
|
141
|
+
},
|
|
142
|
+
"Nimbus.MoneyInput.highPrecisionPrice": {
|
|
143
|
+
"developer_comment": "tooltip text for high precision price badge",
|
|
144
|
+
"string": "High precision price"
|
|
145
|
+
},
|
|
146
|
+
"Nimbus.NumberInput.decrement": {
|
|
147
|
+
"developer_comment": "aria-label for the decrement button in number input",
|
|
148
|
+
"string": "Decrement"
|
|
149
|
+
},
|
|
150
|
+
"Nimbus.NumberInput.increment": {
|
|
151
|
+
"developer_comment": "aria-label for the increment button in number input",
|
|
152
|
+
"string": "Increment"
|
|
153
|
+
},
|
|
154
|
+
"Nimbus.PasswordInput.hide": {
|
|
155
|
+
"developer_comment": "aria-label & tooltip for hide password button",
|
|
156
|
+
"string": "Hide password"
|
|
157
|
+
},
|
|
158
|
+
"Nimbus.PasswordInput.show": {
|
|
159
|
+
"developer_comment": "aria-label & tooltip for show password button",
|
|
160
|
+
"string": "Show password"
|
|
161
|
+
},
|
|
162
|
+
"Nimbus.ScopedSearchInput.clearButton": {
|
|
163
|
+
"developer_comment": "aria-label for clear button",
|
|
164
|
+
"string": "Clear search"
|
|
165
|
+
},
|
|
166
|
+
"Nimbus.ScopedSearchInput.searchLabel": {
|
|
167
|
+
"developer_comment": "Default aria-label for search input",
|
|
168
|
+
"string": "Search"
|
|
169
|
+
},
|
|
170
|
+
"Nimbus.ScopedSearchInput.selectLabel": {
|
|
171
|
+
"developer_comment": "Default aria-label for select dropdown",
|
|
172
|
+
"string": "Filter by"
|
|
173
|
+
},
|
|
174
|
+
"Nimbus.ScopedSearchInput.submitButton": {
|
|
175
|
+
"developer_comment": "aria-label for submit button",
|
|
176
|
+
"string": "Submit search"
|
|
177
|
+
},
|
|
178
|
+
"Nimbus.SearchInput.clearInput": {
|
|
179
|
+
"developer_comment": "aria-label for search input clear button",
|
|
180
|
+
"string": "Clear search input"
|
|
181
|
+
},
|
|
182
|
+
"Nimbus.Select.clearSelection": {
|
|
183
|
+
"developer_comment": "aria-label for select clear button",
|
|
184
|
+
"string": "Clear selection"
|
|
185
|
+
}
|
|
186
|
+
}
|
package/data/de.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/data/en.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/data/es.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/data/fr-FR.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/data/pt-BR.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@commercetools/nimbus-i18n",
|
|
3
|
+
"description": "All translation messages from the Nimbus design system.",
|
|
4
|
+
"version": "0.0.0-canary-20251015171040",
|
|
5
|
+
"bugs": "https://github.com/commercetools/nimbus/issues",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/commercetools/nimbus.git",
|
|
9
|
+
"directory": "packages/i18n"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://nimbus-documentation.vercel.app/home",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"typescript",
|
|
14
|
+
"design-system",
|
|
15
|
+
"react",
|
|
16
|
+
"nimbus"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"files": [
|
|
24
|
+
"data",
|
|
25
|
+
"compiled-data"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "pnpm dlx @formatjs/cli compile-folder --format=transifex --ast data compiled-data"
|
|
29
|
+
}
|
|
30
|
+
}
|