Created
October 19, 2022 10:28
-
-
Save el3um4s/e40ef73c445c5a7df96a4c033630839d to your computer and use it in GitHub Desktop.
MEDIUM - Implementing Multi Language Without Any Library in Svelte - 02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const languages = { | |
Home: { | |
Encrypt: { | |
en: "Encrypt", | |
it: "Cifra", | |
}, | |
"Encrypt your text": { | |
en: "Encrypt your text", | |
it: "Cifra un messaggio di testo", | |
}, | |
}, | |
ManagePassword: { | |
"Random Password": { | |
en: "Random Password", | |
it: "Password Casuale", | |
}, | |
"Generate Random Password": { | |
en: "Generate Random Password", | |
it: "Crea un password a caso", | |
}, | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment