@cascivo/i18n 0.2.14 → 0.16.1

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/dist/index.d.ts CHANGED
@@ -182,6 +182,17 @@ declare const builtin: {
182
182
  readonly label: Message<"Actions">;
183
183
  readonly cancel: Message<"Cancel">;
184
184
  };
185
+ reorderList: {
186
+ readonly handle: Message<"Reorder {name}">;
187
+ readonly grabbed: Message<"Picked up {name}. Position {position} of {total}.">;
188
+ readonly moved: Message<"Moved {name} to position {position} of {total}.">;
189
+ readonly dropped: Message<"Dropped {name} at position {position} of {total}.">;
190
+ readonly cancelled: Message<"Reordering cancelled. {name} returned to its original position.">;
191
+ };
192
+ infiniteScroll: {
193
+ readonly loadMore: Message<"Load more">;
194
+ readonly loading: Message<"Loading more">;
195
+ };
185
196
  pullToRefresh: {
186
197
  readonly pull: Message<"Pull to refresh">;
187
198
  readonly release: Message<"Release to refresh">;
package/dist/index.js CHANGED
@@ -195,6 +195,17 @@ var w = {
195
195
  label: "Actions",
196
196
  cancel: "Cancel"
197
197
  }),
198
+ reorderList: s("cascade.reorderList", {
199
+ handle: "Reorder {name}",
200
+ grabbed: "Picked up {name}. Position {position} of {total}.",
201
+ moved: "Moved {name} to position {position} of {total}.",
202
+ dropped: "Dropped {name} at position {position} of {total}.",
203
+ cancelled: "Reordering cancelled. {name} returned to its original position."
204
+ }),
205
+ infiniteScroll: s("cascade.infiniteScroll", {
206
+ loadMore: "Load more",
207
+ loading: "Loading more"
208
+ }),
198
209
  pullToRefresh: s("cascade.pullToRefresh", {
199
210
  pull: "Pull to refresh",
200
211
  release: "Release to refresh",
@@ -421,6 +432,15 @@ c(w.pagination, "de", {
421
432
  }), c(w.actionSheet, "de", {
422
433
  label: "Aktionen",
423
434
  cancel: "Abbrechen"
435
+ }), c(w.reorderList, "de", {
436
+ handle: "{name} neu anordnen",
437
+ grabbed: "{name} aufgenommen. Position {position} von {total}.",
438
+ moved: "{name} auf Position {position} von {total} verschoben.",
439
+ dropped: "{name} auf Position {position} von {total} abgelegt.",
440
+ cancelled: "Neuanordnung abgebrochen. {name} an der ursprünglichen Position."
441
+ }), c(w.infiniteScroll, "de", {
442
+ loadMore: "Mehr laden",
443
+ loading: "Weitere werden geladen"
424
444
  }), c(w.pullToRefresh, "de", {
425
445
  pull: "Zum Aktualisieren ziehen",
426
446
  release: "Zum Aktualisieren loslassen",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cascivo/i18n",
3
- "version": "0.2.14",
3
+ "version": "0.16.1",
4
4
  "private": false,
5
5
  "description": "Signal-driven locale store, typed message catalogs, and Intl-based formatting for cascivo",
6
6
  "keywords": [
@@ -40,7 +40,7 @@
40
40
  "provenance": true
41
41
  },
42
42
  "dependencies": {
43
- "@cascivo/core": "^0.7.1"
43
+ "@cascivo/core": "^0.16.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@preact/signals-react": "^3",