Skip to content

Commit

Permalink
Added sv.json
Browse files Browse the repository at this point in the history
Added sv.json and changed the order so it's alphabetical.
  • Loading branch information
el97 authored May 12, 2023
1 parent c472daa commit af80c2d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/localize/localize.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import * as de from './languages/de.json';
import * as en from './languages/en.json';
import * as fr from './languages/fr.json';
import * as pt from './languages/pt.json';
import * as nl from './languages/nl.json';
import * as it from "./languages/it.json";
import * as nl from './languages/nl.json';
import * as pt from './languages/pt.json';
import * as sv from "./languages/sv.json";

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

export const CARD_LANGUAGES = [...Object.keys(languages), ''].sort();
Expand Down

0 comments on commit af80c2d

Please sign in to comment.