mirror of
				https://github.com/binwiederhier/ntfy.git
				synced 2025-10-31 13:02:24 +01:00 
			
		
		
		
	Add Czech as language
This commit is contained in:
		
							parent
							
								
									cf3238859c
								
							
						
					
					
						commit
						5344337b43
					
				
					 2 changed files with 8 additions and 2 deletions
				
			
		|  | @ -31,6 +31,10 @@ to [@Joeharrison94](https://github.com/Joeharrison94) for the input. | |||
| * `Upgrade` header check is now case in-sensitive ([#228](https://github.com/binwiederhier/ntfy/issues/228), thanks to [@wunter8](https://github.com/wunter8) for finding it) | ||||
| * Made web app sounds quieter ([#222](https://github.com/binwiederhier/ntfy/issues/222)) | ||||
| 
 | ||||
| **Additional translations:** | ||||
| 
 | ||||
| * Czech (thanks to [@waclaw66](https://hosted.weblate.org/user/waclaw66/)) | ||||
| 
 | ||||
| **Thanks for testing:** | ||||
| 
 | ||||
| Thanks to [@wunter8](https://github.com/wunter8) for testing. | ||||
|  |  | |||
|  | @ -423,8 +423,9 @@ const Appearance = () => { | |||
| 
 | ||||
| const Language = () => { | ||||
|     const { t, i18n } = useTranslation(); | ||||
|     const randomFlags = shuffle(["🇬🇧", "🇺🇸", "🇪🇸", "🇧🇬", "🇩🇪", "🇮🇩", "🇯🇵", "🇷🇺", "🇹🇷"]).slice(0, 3); | ||||
|     const randomFlags = shuffle(["🇬🇧", "🇺🇸", "🇪🇸", "🇧🇬", "🇨🇿", "🇩🇪", "🇮🇩", "🇯🇵", "🇷🇺", "🇹🇷"]).slice(0, 3); | ||||
|     const title = t("prefs_appearance_language_title") + " " + randomFlags.join(" "); | ||||
|     const lang = i18n.language ?? "en"; | ||||
| 
 | ||||
|     // 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
 | ||||
|  | @ -433,10 +434,11 @@ const Language = () => { | |||
|     return ( | ||||
|         <Pref title={title}> | ||||
|             <FormControl fullWidth variant="standard" sx={{ m: 1 }}> | ||||
|                 <Select value={i18n.language} onChange={(ev) => i18n.changeLanguage(ev.target.value)}> | ||||
|                 <Select value={lang} onChange={(ev) => i18n.changeLanguage(ev.target.value)}> | ||||
|                     <MenuItem value="en">English</MenuItem> | ||||
|                     <MenuItem value="es">Español</MenuItem> | ||||
|                     <MenuItem value="bg">Български</MenuItem> | ||||
|                     <MenuItem value="cs">Čeština</MenuItem> | ||||
|                     <MenuItem value="de">Deutsch</MenuItem> | ||||
|                     <MenuItem value="id">Bahasa Indonesia</MenuItem> | ||||
|                     <MenuItem value="ja">日本語</MenuItem> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Philipp Heckel
						Philipp Heckel