Created
October 19, 2022 10:33
-
-
Save el3um4s/1c9a47f569b81275daf7176bf1772b66 to your computer and use it in GitHub Desktop.
MEDIUM - Implementing Multi Language Without Any Library in Svelte - 04
This file contains 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
<script lang="ts"> | |
import Lang from "../../UI/Languages/Lang.svelte"; | |
</script> | |
<ul> | |
<li> | |
<Lang p="Home" w="Encrypt" /> | |
</li> | |
<li> | |
<Lang p="Home" w="Encrypt your text" /> | |
</li> | |
<li> | |
<Lang p="ManagePassword" w="Random Password" /> | |
</li> | |
<li> | |
<Lang p="ManagePassword" w="Generate Random Password" /> | |
</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment