@commercetools-uikit/i18n 19.7.0 → 19.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/compiled-data/core.json
CHANGED
|
@@ -261,6 +261,34 @@
|
|
|
261
261
|
"value": "Expand"
|
|
262
262
|
}
|
|
263
263
|
],
|
|
264
|
+
"UIKit.NumberField.aboveMaxError": [
|
|
265
|
+
{
|
|
266
|
+
"type": 0,
|
|
267
|
+
"value": "Value must be less than or equal to "
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"type": 1,
|
|
271
|
+
"value": "max"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"type": 0,
|
|
275
|
+
"value": "."
|
|
276
|
+
}
|
|
277
|
+
],
|
|
278
|
+
"UIKit.NumberField.belowMinError": [
|
|
279
|
+
{
|
|
280
|
+
"type": 0,
|
|
281
|
+
"value": "Value must be greater than or equal to "
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"type": 1,
|
|
285
|
+
"value": "min"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"type": 0,
|
|
289
|
+
"value": "."
|
|
290
|
+
}
|
|
291
|
+
],
|
|
264
292
|
"UIKit.Pagination.PageNavigator.nextPageLabel": [
|
|
265
293
|
{
|
|
266
294
|
"type": 0,
|
package/data/core.json
CHANGED
|
@@ -147,6 +147,14 @@
|
|
|
147
147
|
"developer_comment": "The label for \"expand\" action",
|
|
148
148
|
"string": "Expand"
|
|
149
149
|
},
|
|
150
|
+
"UIKit.NumberField.aboveMaxError": {
|
|
151
|
+
"developer_comment": "An error message to show when the value is above the maximum",
|
|
152
|
+
"string": "Value must be less than or equal to {max}."
|
|
153
|
+
},
|
|
154
|
+
"UIKit.NumberField.belowMinError": {
|
|
155
|
+
"developer_comment": "An error message to show when the value is below the minimum",
|
|
156
|
+
"string": "Value must be greater than or equal to {min}."
|
|
157
|
+
},
|
|
150
158
|
"UIKit.Pagination.PageNavigator.nextPageLabel": {
|
|
151
159
|
"developer_comment": "Label for next page button",
|
|
152
160
|
"string": "Next page"
|
package/package.json
CHANGED