1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-20 09:58:13 +09:00

Italian support

This commit is contained in:
Thebigbot
2022-04-11 18:40:52 +02:00
parent 8cf6378de2
commit eea22e1e63
3 changed files with 64 additions and 1 deletions

View File

@@ -49,6 +49,9 @@ const Languages = () => {
<li>
<a href="/?lng=es">Español</a>
</li>
<li>
<a href="/?lng=it">Italiano</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 = '9';
const TRANSLATION_VERSION = '10';
i18n
.use(Backend)
@@ -25,6 +25,7 @@ i18n
'zh-Hant': TRANSLATION_VERSION,
'pt-BR': TRANSLATION_VERSION,
es: TRANSLATION_VERSION,
it: TRANSLATION_VERSION,
},
},
],