Added Japanese + Indonesian to web app
parent
67ea467501
commit
39bd1fe164
|
@ -20,6 +20,8 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
|
||||||
|
|
||||||
* Bulgarian (thanks to [@StoyanDimitrov](https://github.com/StoyanDimitrov))
|
* Bulgarian (thanks to [@StoyanDimitrov](https://github.com/StoyanDimitrov))
|
||||||
* German (thanks to [@cmeis](https://github.com/cmeis))
|
* German (thanks to [@cmeis](https://github.com/cmeis))
|
||||||
|
* Indonesian (thanks to [@linerly](https://hosted.weblate.org/user/linerly/))
|
||||||
|
* Japanese (thanks to [@shak](https://hosted.weblate.org/user/shak/))
|
||||||
* Turkish (thanks to [@ersen](https://ersen.moe/))
|
* Turkish (thanks to [@ersen](https://ersen.moe/))
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
@ -51,6 +53,7 @@ Released Apr 7, 2022
|
||||||
* German (thanks to [@cmeis](https://github.com/cmeis))
|
* German (thanks to [@cmeis](https://github.com/cmeis))
|
||||||
* Italian (thanks to [@theTranslator](https://hosted.weblate.org/user/theTranslator/))
|
* Italian (thanks to [@theTranslator](https://hosted.weblate.org/user/theTranslator/))
|
||||||
* Indonesian (thanks to [@linerly](https://hosted.weblate.org/user/linerly/))
|
* Indonesian (thanks to [@linerly](https://hosted.weblate.org/user/linerly/))
|
||||||
|
* Japanese (thanks to [@shak](https://hosted.weblate.org/user/shak/))
|
||||||
* Norwegian (*incomplete*, thanks to [@comradekingu](https://github.com/comradekingu))
|
* Norwegian (*incomplete*, thanks to [@comradekingu](https://github.com/comradekingu))
|
||||||
* Portuguese/Brazil (thanks to [@LW](https://hosted.weblate.org/user/LW/))
|
* Portuguese/Brazil (thanks to [@LW](https://hosted.weblate.org/user/LW/))
|
||||||
* Spanish (thanks to [@rogeliodh](https://github.com/rogeliodh))
|
* Spanish (thanks to [@rogeliodh](https://github.com/rogeliodh))
|
||||||
|
|
|
@ -32,7 +32,7 @@ import DialogTitle from "@mui/material/DialogTitle";
|
||||||
import DialogContent from "@mui/material/DialogContent";
|
import DialogContent from "@mui/material/DialogContent";
|
||||||
import DialogActions from "@mui/material/DialogActions";
|
import DialogActions from "@mui/material/DialogActions";
|
||||||
import userManager from "../app/UserManager";
|
import userManager from "../app/UserManager";
|
||||||
import {playSound} from "../app/utils";
|
import {playSound, shuffle} from "../app/utils";
|
||||||
import {useTranslation} from "react-i18next";
|
import {useTranslation} from "react-i18next";
|
||||||
|
|
||||||
const Preferences = () => {
|
const Preferences = () => {
|
||||||
|
@ -40,8 +40,8 @@ const Preferences = () => {
|
||||||
<Container maxWidth="md" sx={{marginTop: 3, marginBottom: 3}}>
|
<Container maxWidth="md" sx={{marginTop: 3, marginBottom: 3}}>
|
||||||
<Stack spacing={3}>
|
<Stack spacing={3}>
|
||||||
<Notifications/>
|
<Notifications/>
|
||||||
<Users/>
|
|
||||||
<Appearance/>
|
<Appearance/>
|
||||||
|
<Users/>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
|
@ -385,13 +385,21 @@ const Appearance = () => {
|
||||||
|
|
||||||
const Language = () => {
|
const Language = () => {
|
||||||
const { t, i18n } = useTranslation();
|
const { t, i18n } = useTranslation();
|
||||||
|
const randomFlags = shuffle(["🇬🇧", "🇺🇸", "🇧🇬", "🇩🇪", "🇮🇩", "🇯🇵", "🇹🇷"]).slice(0, 3);
|
||||||
|
const title = t("prefs_appearance_language_title") + " " + randomFlags.join(" ");
|
||||||
|
|
||||||
|
// Remember: Flags are not languages. Don't put flags next to the language in the list.
|
||||||
|
// Languages names from: https://www.omniglot.com/language/names.htm
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Pref title={t("prefs_appearance_language_title")}>
|
<Pref title={title}>
|
||||||
<FormControl fullWidth variant="standard" sx={{ m: 1 }}>
|
<FormControl fullWidth variant="standard" sx={{ m: 1 }}>
|
||||||
<Select value={i18n.language} onChange={(ev) => i18n.changeLanguage(ev.target.value)}>
|
<Select value={i18n.language} onChange={(ev) => i18n.changeLanguage(ev.target.value)}>
|
||||||
<MenuItem value="en">English</MenuItem>
|
<MenuItem value="en">English</MenuItem>
|
||||||
<MenuItem value="de">Deutsch</MenuItem>
|
|
||||||
<MenuItem value="bg">Български</MenuItem>
|
<MenuItem value="bg">Български</MenuItem>
|
||||||
|
<MenuItem value="de">Deutsch</MenuItem>
|
||||||
|
<MenuItem value="id">Bahasa Indonesia</MenuItem>
|
||||||
|
<MenuItem value="ja">日本語</MenuItem>
|
||||||
<MenuItem value="tr">Türkçe</MenuItem>
|
<MenuItem value="tr">Türkçe</MenuItem>
|
||||||
</Select>
|
</Select>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
|
Loading…
Reference in New Issue