Browse Source

Update language array to match finished languages

Philipp Heckel 3 years ago
parent
commit
aa58242551
2 changed files with 5 additions and 1 deletions
  1. 4 0
      docs/releases.md
  2. 1 1
      web/src/components/Preferences.js

+ 4 - 0
docs/releases.md

@@ -15,6 +15,10 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
 
 * Web app: English language strings fixes ([#203](https://github.com/binwiederhier/ntfy/issues/203), thanks to [@StoyanDimitrov](https://github.com/StoyanDimitrov))
 
+**Translations (web app):**
+
+* Bulgarian (thanks to [@StoyanDimitrov](https://github.com/StoyanDimitrov))
+
 -->
 
 ## ntfy Android app v1.11.0

+ 1 - 1
web/src/components/Preferences.js

@@ -390,7 +390,7 @@ const Language = () => {
             <FormControl fullWidth variant="standard" sx={{ m: 1 }}>
                 <Select value={i18n.language} onChange={(ev) => i18n.changeLanguage(ev.target.value)}>
                     <MenuItem value="en">English</MenuItem>
-                    <MenuItem value="de">Deutsch</MenuItem>
+                    <MenuItem value="bg">Български</MenuItem>
                 </Select>
             </FormControl>
         </Pref>