From b627a327d1928c7ee5095e017e8c6e85639d8a98 Mon Sep 17 00:00:00 2001 From: Philipp Heckel Date: Thu, 26 May 2022 16:38:09 -0400 Subject: [PATCH] Add Italian, release notes --- docs/releases.md | 14 +++++++++++++- web/src/components/Preferences.js | 5 +++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/docs/releases.md b/docs/releases.md index b4a8c91e..5e76bdc7 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -9,10 +9,12 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release **Features:** * [Message priority](https://ntfy.sh/docs/publish/#message-priority) support (no ticket) +* [Tags/emojis](https://ntfy.sh/docs/publish/#tags-emojis) support (no ticket) +* [Action buttons](https://ntfy.sh/docs/publish/#action-buttons) support (no ticket) +* [Click action](https://ntfy.sh/docs/publish/#click-action) support (no ticket) * Open topic when notification clicked (no ticket) * Notification now makes a sound and vibrates (no ticket) * Cancel notifications when navigating to topic (no ticket) -* Support for ntfy priorities (no ticket) * iOS 14.0 support (no ticket, [PR#1](https://github.com/binwiederhier/ntfy-ios/pull/1), thanks to [@callum-99](https://github.com/callum-99)) **Bugs:** @@ -29,6 +31,16 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release * Support emails without `Content-Type` ([#265](https://github.com/binwiederhier/ntfy/issues/265), thanks to [@dmbonsall](https://github.com/dmbonsall)) +**Additional translations:** + +* Italian (thanks to [@Genio2003](https://hosted.weblate.org/user/Genio2003/)) + +## ntfy Android app v1.14.0 (UNRELEASED) + +**Additional translations:** + +* Italian (thanks to [@Genio2003](https://hosted.weblate.org/user/Genio2003/)) + --> ## ntfy iOS app v1.0 diff --git a/web/src/components/Preferences.js b/web/src/components/Preferences.js index b8f82766..b93702fa 100644 --- a/web/src/components/Preferences.js +++ b/web/src/components/Preferences.js @@ -436,7 +436,7 @@ const Appearance = () => { const Language = () => { const { t, i18n } = useTranslation(); const labelId = "prefLanguage"; - 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"; @@ -449,13 +449,14 @@ const Language = () => {