Skip to content

Commit

Permalink
Add french translation
Browse files Browse the repository at this point in the history
  • Loading branch information
tmjo committed May 7, 2023
1 parent 5ce6bed commit 963205c
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
Expand Up @@ -4,6 +4,7 @@ import * as sv from './languages/sv.json';
import * as de from './languages/de.json';
import * as da from './languages/da.json';
import * as ca from './languages/ca.json';
import * as fr from './languages/fr.json';

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const languages: any = {
Expand All @@ -12,7 +13,8 @@ const languages: any = {
sv: sv,
de: de,
da: da,
ca: ca
ca: ca,
fr: fr,
};

export function localize(string, brand=null, search = '', replace = '', debug=false){
Expand Down

0 comments on commit 963205c

Please sign in to comment.