@cosmicdrift/kumiko-locale-es 0.246.0 → 0.248.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/package.json +2 -2
- package/src/__tests__/en-catalog.ts +2 -0
- package/src/strings.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-locale-es",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.248.0",
|
|
4
4
|
"description": "Spanish UI and mail copy for Kumiko framework screens. Opt in by mounting localeEs() + localeEsClient().",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
31
|
+
"@cosmicdrift/kumiko-framework": "0.248.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"registry": "https://registry.npmjs.org",
|
|
@@ -533,6 +533,8 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
|
|
|
533
533
|
"kumiko.list.empty.title": "No entries yet.",
|
|
534
534
|
"kumiko.list.end-of-list": "— End of list —",
|
|
535
535
|
"kumiko.list.no-entries": "No entries.",
|
|
536
|
+
"kumiko.list.related-list-truncated":
|
|
537
|
+
"Showing the first {count} entries. More are available but not loaded — this list does not paginate.",
|
|
536
538
|
"kumiko.list.search-placeholder": "Search…",
|
|
537
539
|
"kumiko.list.sort.label": "Sort",
|
|
538
540
|
"kumiko.list.sort.unsorted": "Unsorted",
|
package/src/strings.ts
CHANGED
|
@@ -544,6 +544,8 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
|
|
|
544
544
|
"kumiko.list.empty.title": "Todavía no hay entradas.",
|
|
545
545
|
"kumiko.list.end-of-list": "— Fin de la lista —",
|
|
546
546
|
"kumiko.list.no-entries": "Sin entradas.",
|
|
547
|
+
"kumiko.list.related-list-truncated":
|
|
548
|
+
"Mostrando las primeras {count} entradas. Hay más disponibles pero no se cargaron — esta lista no pagina.",
|
|
547
549
|
"kumiko.list.search-placeholder": "Buscar…",
|
|
548
550
|
"kumiko.list.sort.label": "Ordenar",
|
|
549
551
|
"kumiko.list.sort.unsorted": "Sin ordenar",
|