Skip to content

Commit

Permalink
added italian at localize.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
SiriosDev authored May 1, 2023
1 parent c6c0edb commit 80f01cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/localize/localize.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import * as de from './languages/de.json';
import * as en from './languages/en.json';
import * as fr from './languages/fr.json';
import * as fr from "./languages/fr.json";
import * as it from "./languages/it.json";

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const languages: any = {
de: de,
en: en,
fr: fr,
it: it
};

export function localize(string: string, search = '', replace = ''): string {
Expand Down

0 comments on commit 80f01cb

Please sign in to comment.