We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c80e9f commit b256b09Copy full SHA for b256b09
src/localize/localize.ts
@@ -15,6 +15,8 @@ import * as uk from './languages/uk.json';
15
import * as el from './languages/el.json';
16
import * as nl from './languages/nl.json';
17
import * as no from './languages/no.json';
18
+import * as cs from './languages/cs.json';
19
+import * as sl from './languages/sl.json';
20
21
// eslint-disable-next-line @typescript-eslint/no-explicit-any
22
const languages: any = {
@@ -34,7 +36,9 @@ const languages: any = {
34
36
uk: uk,
35
37
el: el,
38
nl: nl,
- no: no
39
+ no: no,
40
+ cs: cs,
41
+ sl: sl
42
};
43
44
export function localize(string: string, search = '', replace = ''): string {
0 commit comments