Skip to content

Commit

Permalink
feat: SK translations
Browse files Browse the repository at this point in the history
  • Loading branch information
misa1515 authored Oct 6, 2023
1 parent 6b11634 commit 19f89e5
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,8 +1,10 @@
import * as en from './languages/en.json';
import * as en from './languages/en.json'
import * as sk from './languages/sk.json';

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

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

0 comments on commit 19f89e5

Please sign in to comment.