1
0
mirror of https://github.com/uetchy/namae.git synced 2025-10-14 23:22:19 +09:00

Bahasa Indonesia Translation (#157)

* fix: show spinner when fetching suggestions

* Update src/components/Footer.tsx

* Update i18n.ts

Co-authored-by: Yasuaki Uechi <y@uechi.io>
This commit is contained in:
LukasPurbaW
2022-06-04 03:20:24 +07:00
committed by GitHub
parent 7b207a39f4
commit fe14ba9447
3 changed files with 69 additions and 1 deletions

View File

@@ -58,6 +58,9 @@ const Languages = () => {
<li>
<a href="/?lng=nl">Nederlands</a>
</li>
<li>
<a href="/?lng=id">Bahasa Indonesia</a>
</li>
</ul>
</Pane>
);

View File

@@ -5,7 +5,7 @@ import XHR from 'i18next-xhr-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
import { initReactI18next } from 'react-i18next';
const TRANSLATION_VERSION = '15';
const TRANSLATION_VERSION = '16';
i18n
.use(Backend)
@@ -28,6 +28,7 @@ i18n
it: TRANSLATION_VERSION,
ru: TRANSLATION_VERSION,
nl: TRANSLATION_VERSION,
id: TRANSLATION_VERSION,
},
},
],