Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<script src="src/locales/de.js"></script>
<script src="src/locales/fr.js"></script>
<script src="src/locales/ko.js"></script>
<script src="src/locales/ru.js"></script>
<script src="src/i18n.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
Expand Down Expand Up @@ -277,6 +278,7 @@ <h3 data-i18n="finances" class="text-xs font-bold text-green-400 uppercase track
<option value="de" class="bg-gray-800 text-white">DE</option>
<option value="fr" class="bg-gray-800 text-white">FR</option>
<option value="ko" class="bg-gray-800 text-white">KO</option>
<option value="ru" class="bg-gray-800 text-white">RU</option>
</select>
</div>
<button onclick="showSaveModal()" id="btn-save"
Expand Down
3 changes: 2 additions & 1 deletion src/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ class I18nManager {
'pt-BR': typeof PT_BR_TRANSLATIONS !== 'undefined' ? PT_BR_TRANSLATIONS : {},
de: typeof DE_TRANSLATIONS !== 'undefined' ? DE_TRANSLATIONS : {},
fr: typeof FR_TRANSLATIONS !== 'undefined' ? FR_TRANSLATIONS : {},
ko: typeof KO_TRANSLATIONS !== 'undefined' ? KO_TRANSLATIONS : {}
ko: typeof KO_TRANSLATIONS !== 'undefined' ? KO_TRANSLATIONS : {},
ru: typeof RU_TRANSLATIONS !== 'undefined' ? RU_TRANSLATIONS : {}
};
}

Expand Down
Loading