@djangocfg/ext-support 1.0.26 → 1.0.27
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/config.cjs +1 -1
- package/dist/config.js +1 -1
- package/dist/hooks.cjs +1010 -2
- package/dist/hooks.js +1010 -2
- package/dist/i18n.cjs +1039 -3
- package/dist/i18n.d.cts +29 -1
- package/dist/i18n.d.ts +29 -1
- package/dist/i18n.js +1024 -2
- package/dist/index.cjs +1010 -2
- package/dist/index.js +1010 -2
- package/package.json +8 -8
- package/src/i18n/index.ts +14 -0
- package/src/i18n/locales/ar.ts +81 -0
- package/src/i18n/locales/da.ts +81 -0
- package/src/i18n/locales/de.ts +81 -0
- package/src/i18n/locales/es.ts +81 -0
- package/src/i18n/locales/fr.ts +81 -0
- package/src/i18n/locales/it.ts +81 -0
- package/src/i18n/locales/ja.ts +81 -0
- package/src/i18n/locales/nl.ts +81 -0
- package/src/i18n/locales/no.ts +81 -0
- package/src/i18n/locales/pl.ts +81 -0
- package/src/i18n/locales/pt-BR.ts +81 -0
- package/src/i18n/locales/sv.ts +81 -0
- package/src/i18n/locales/tr.ts +81 -0
- package/src/i18n/locales/zh.ts +81 -0
- package/src/i18n/useSupportT.ts +15 -1
package/dist/i18n.d.cts
CHANGED
|
@@ -114,4 +114,32 @@ declare const ru: SupportTranslations;
|
|
|
114
114
|
|
|
115
115
|
declare const ko: SupportTranslations;
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
declare const ja: SupportTranslations;
|
|
118
|
+
|
|
119
|
+
declare const de: SupportTranslations;
|
|
120
|
+
|
|
121
|
+
declare const fr: SupportTranslations;
|
|
122
|
+
|
|
123
|
+
declare const zh: SupportTranslations;
|
|
124
|
+
|
|
125
|
+
declare const it: SupportTranslations;
|
|
126
|
+
|
|
127
|
+
declare const es: SupportTranslations;
|
|
128
|
+
|
|
129
|
+
declare const nl: SupportTranslations;
|
|
130
|
+
|
|
131
|
+
declare const ar: SupportTranslations;
|
|
132
|
+
|
|
133
|
+
declare const tr: SupportTranslations;
|
|
134
|
+
|
|
135
|
+
declare const ptBR: SupportTranslations;
|
|
136
|
+
|
|
137
|
+
declare const pl: SupportTranslations;
|
|
138
|
+
|
|
139
|
+
declare const sv: SupportTranslations;
|
|
140
|
+
|
|
141
|
+
declare const no: SupportTranslations;
|
|
142
|
+
|
|
143
|
+
declare const da: SupportTranslations;
|
|
144
|
+
|
|
145
|
+
export { type SupportLocalKeys, type SupportTranslations, ar, da, de, en, es, fr, it, ja, ko, nl, no, pl, ptBR, ru, sv, tr, useSupportT, zh };
|
package/dist/i18n.d.ts
CHANGED
|
@@ -114,4 +114,32 @@ declare const ru: SupportTranslations;
|
|
|
114
114
|
|
|
115
115
|
declare const ko: SupportTranslations;
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
declare const ja: SupportTranslations;
|
|
118
|
+
|
|
119
|
+
declare const de: SupportTranslations;
|
|
120
|
+
|
|
121
|
+
declare const fr: SupportTranslations;
|
|
122
|
+
|
|
123
|
+
declare const zh: SupportTranslations;
|
|
124
|
+
|
|
125
|
+
declare const it: SupportTranslations;
|
|
126
|
+
|
|
127
|
+
declare const es: SupportTranslations;
|
|
128
|
+
|
|
129
|
+
declare const nl: SupportTranslations;
|
|
130
|
+
|
|
131
|
+
declare const ar: SupportTranslations;
|
|
132
|
+
|
|
133
|
+
declare const tr: SupportTranslations;
|
|
134
|
+
|
|
135
|
+
declare const ptBR: SupportTranslations;
|
|
136
|
+
|
|
137
|
+
declare const pl: SupportTranslations;
|
|
138
|
+
|
|
139
|
+
declare const sv: SupportTranslations;
|
|
140
|
+
|
|
141
|
+
declare const no: SupportTranslations;
|
|
142
|
+
|
|
143
|
+
declare const da: SupportTranslations;
|
|
144
|
+
|
|
145
|
+
export { type SupportLocalKeys, type SupportTranslations, ar, da, de, en, es, fr, it, ja, ko, nl, no, pl, ptBR, ru, sv, tr, useSupportT, zh };
|