@anime.club/translations 1.1.59 → 1.1.60
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 +1 -1
- package/src/arabic-standard.ts +1 -0
- package/src/chinese-simplified.ts +1 -0
- package/src/english.ts +1 -0
- package/src/french.ts +1 -0
- package/src/german.ts +1 -0
- package/src/hindi.ts +1 -0
- package/src/indonesian.ts +1 -0
- package/src/japanese.ts +1 -0
- package/src/korean.ts +1 -0
- package/src/portuguese.ts +1 -0
- package/src/russian.ts +1 -0
- package/src/spanish.ts +1 -0
- package/src/thai.ts +1 -0
- package/src/vietnamese.ts +1 -0
package/package.json
CHANGED
package/src/arabic-standard.ts
CHANGED
package/src/english.ts
CHANGED
@@ -247,6 +247,7 @@ export const text = {
|
|
247
247
|
openToWork: `Open to work`,
|
248
248
|
optional: `Optional`,
|
249
249
|
or: `or`,
|
250
|
+
ordered: (relativeTime: string) => `Ordered ${relativeTime}`,
|
250
251
|
orderAgain: `Order again`,
|
251
252
|
orderDetails: `Order details`,
|
252
253
|
orderStatus: `Order status`,
|
package/src/french.ts
CHANGED
@@ -248,6 +248,7 @@ export const text: text = {
|
|
248
248
|
openToWork: `Ouvert au travail`,
|
249
249
|
optional: `Optionnel`,
|
250
250
|
or: `OU`,
|
251
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
251
252
|
orderAgain: `Commander à nouveau`,
|
252
253
|
orderDetails: `Détails de la commande`,
|
253
254
|
orderStatus: `Statut de la commande`,
|
package/src/german.ts
CHANGED
@@ -247,6 +247,7 @@ export const text: text = {
|
|
247
247
|
openToWork: `Offen für Arbeit`,
|
248
248
|
optional: `Optional`,
|
249
249
|
or: `ODER`,
|
250
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
250
251
|
orderAgain: `Erneut bestellen`,
|
251
252
|
orderDetails: `Bestelldetails`,
|
252
253
|
orderStatus: `Bestellstatus`,
|
package/src/hindi.ts
CHANGED
package/src/indonesian.ts
CHANGED
@@ -247,6 +247,7 @@ export const text: text = {
|
|
247
247
|
openToWork: `Terbuka untuk bekerja`,
|
248
248
|
optional: `Opsional`,
|
249
249
|
or: `ATAU`,
|
250
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
250
251
|
orderAgain: `Pesan lagi`,
|
251
252
|
orderDetails: `Detail pesanan`,
|
252
253
|
orderStatus: `Status pesanan`,
|
package/src/japanese.ts
CHANGED
package/src/korean.ts
CHANGED
package/src/portuguese.ts
CHANGED
@@ -248,6 +248,7 @@ export const text: text = {
|
|
248
248
|
openToWork: `Aberto para trabalhar`,
|
249
249
|
optional: `Opcional`,
|
250
250
|
or: `OU`,
|
251
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
251
252
|
orderAgain: `Fazer pedido novamente`,
|
252
253
|
orderDetails: `Detalhes do pedido`,
|
253
254
|
orderStatus: `Status do pedido`,
|
package/src/russian.ts
CHANGED
@@ -247,6 +247,7 @@ export const text: text = {
|
|
247
247
|
openToWork: `Открыт для работы`,
|
248
248
|
optional: `Необязательно`,
|
249
249
|
or: `или`,
|
250
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
250
251
|
orderAgain: `Заказать снова`,
|
251
252
|
orderDetails: `Детали заказа`,
|
252
253
|
orderStatus: `Статус заказа`,
|
package/src/spanish.ts
CHANGED
@@ -248,6 +248,7 @@ export const text: text = {
|
|
248
248
|
openToWork: `Abierto a trabajar`,
|
249
249
|
optional: `Opcional`,
|
250
250
|
or: `O`,
|
251
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
251
252
|
orderAgain: `Volver a ordenar`,
|
252
253
|
orderDetails: `Detalles del pedido`,
|
253
254
|
orderStatus: `Estado del pedido`,
|
package/src/thai.ts
CHANGED
@@ -246,6 +246,7 @@ export const text: text = {
|
|
246
246
|
openToWork: `เปิดรับงาน`,
|
247
247
|
optional: `ไม่บังคับ`,
|
248
248
|
or: `หรือ`,
|
249
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
249
250
|
orderAgain: `สั่งซื้ออีกครั้ง`,
|
250
251
|
orderDetails: `รายละเอียดคำสั่งซื้อ`,
|
251
252
|
orderStatus: `สถานะคำสั่งซื้อ`,
|
package/src/vietnamese.ts
CHANGED
@@ -245,6 +245,7 @@ export const text: text = {
|
|
245
245
|
openToWork: `Mở để làm việc`,
|
246
246
|
optional: `Tùy chọn`,
|
247
247
|
or: `HOẶC`,
|
248
|
+
ordered: (...v) => `(en) Ordered ${v[0]}`,
|
248
249
|
orderAgain: `Đặt hàng lại`,
|
249
250
|
orderDetails: `Chi tiết đơn hàng`,
|
250
251
|
orderStatus: `Trạng thái đơn hàng`,
|