From c82dccbb7ba509c6b5d24deaa6810ca53e300999 Mon Sep 17 00:00:00 2001 From: Isaac Date: Sun, 19 May 2024 23:03:18 +0100 Subject: [PATCH] feat: curators list on about page --- src/features/misc/sections/About.jsx | 31 ++++++++++++++++++++++++++-- src/i18n/locales/bn.json | 21 ++++++++++++++++--- src/i18n/locales/de_DE.json | 21 ++++++++++++++++--- src/i18n/locales/en_GB.json | 3 ++- src/i18n/locales/en_US.json | 21 ++++++++++++++++--- src/i18n/locales/es.json | 21 ++++++++++++++++--- src/i18n/locales/es_419.json | 21 ++++++++++++++++--- src/i18n/locales/fr.json | 21 ++++++++++++++++--- src/i18n/locales/id_ID.json | 21 ++++++++++++++++--- src/i18n/locales/nl.json | 21 ++++++++++++++++--- src/i18n/locales/no.json | 21 ++++++++++++++++--- src/i18n/locales/pt.json | 21 ++++++++++++++++--- src/i18n/locales/pt_BR.json | 21 ++++++++++++++++--- src/i18n/locales/ru.json | 21 ++++++++++++++++--- src/i18n/locales/tr_TR.json | 21 ++++++++++++++++--- src/i18n/locales/zh_CN.json | 21 ++++++++++++++++--- 16 files changed, 283 insertions(+), 45 deletions(-) diff --git a/src/features/misc/sections/About.jsx b/src/features/misc/sections/About.jsx index 2f885743..2c6254d9 100644 --- a/src/features/misc/sections/About.jsx +++ b/src/features/misc/sections/About.jsx @@ -16,6 +16,7 @@ class About extends PureComponent { sponsors: [], other_contributors: [], photographers: [], + curators: [], update: variables.getMessage('modals.main.settings.sections.about.version.checking_update'), loading: variables.getMessage('modals.main.loading') }; @@ -23,7 +24,7 @@ class About extends PureComponent { } async getGitHubData() { - let contributors, sponsors, photographers, versionData; + let contributors, sponsors, photographers, curators, versionData; try { versionData = await ( @@ -60,6 +61,11 @@ class About extends PureComponent { signal: this.controller.signal, }) ).json(); + curators = (await ( + await fetch(variables.constants.API_URL + '/marketplace/curators', { + signal: this.controller.signal, + }) + ).json()).data; } catch (e) { if (this.controller.signal.aborted === true) { return; @@ -100,6 +106,7 @@ class About extends PureComponent { update, other_contributors, photographers, + curators, loading: null, }); } @@ -354,7 +361,6 @@ class About extends PureComponent { flexFlow: 'column', alignItems: 'flex-start', minHeight: '10px', - borderBottom: '0', }} > @@ -370,6 +376,27 @@ class About extends PureComponent { ))} +
+ + {variables.getMessage('modals.main.settings.sections.about.curators')} + + {!!this.state.loading ?

{this.state.loading}

: <>} +
    + {this.state.curators.map((name) => ( +
  • + {name} +
  • + ))} +
+
); } diff --git a/src/i18n/locales/bn.json b/src/i18n/locales/bn.json index 54f1470d..53a9f6dd 100644 --- a/src/i18n/locales/bn.json +++ b/src/i18n/locales/bn.json @@ -182,13 +182,22 @@ "greeting": { "title": "শুভেচ্ছা", "events": "ঘটনা", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "ডিফল্ট শুভেচ্ছা বার্তা", "name": "অভিবাদনের জন্য নাম", "birthday": "জন্মদিন", "birthday_subtitle": "আপনার জন্মদিন হলে একটি শুভ জন্মদিনের বার্তা দেখান", "birthday_age": "জন্মদিনের বয়স", "birthday_date": "জন্মদিনের তারিখ", - "additional": "অভিবাদন প্রদর্শনের জন্য সেটিংস" + "additional": "অভিবাদন প্রদর্শনের জন্য সেটিংস", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "পটভূমি", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Navbar", + "widgets": "Navbar Widgets", "notes": "Notes", "refresh": "Refresh", "refresh_subtitle": "Choose what is refreshed when you click the refresh button", @@ -445,7 +455,11 @@ "usage": "ব্যবহারের পরিসংখ্যান", "achievements": "অর্জনগুলি", "unlocked": "{count} আনলক করা হয়েছে", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "পরীক্ষামূলক", @@ -485,7 +499,8 @@ "contributors": "Contributors", "supporters": "Supporters", "no_supporters": "There are currently no Mue supporters", - "photographers": "Photographers" + "photographers": "Photographers", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/de_DE.json b/src/i18n/locales/de_DE.json index b0ec4950..034cb9fa 100644 --- a/src/i18n/locales/de_DE.json +++ b/src/i18n/locales/de_DE.json @@ -182,13 +182,22 @@ "greeting": { "title": "Begrüßung", "events": "Veranstaltungen", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Standard-Begrüßungsnachricht", "name": "Name zur Begrüßung", "birthday": "Geburtstag", "birthday_subtitle": "Zeigen Sie eine Geburtstagsnachricht an, wenn Sie Geburtstag haben", "birthday_age": "Alter", "birthday_date": "Datum", - "additional": "Einstellungen für die Begrüßungsanzeige" + "additional": "Einstellungen für die Begrüßungsanzeige", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Hintergrund", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Navigationsleiste", + "widgets": "Navbar Widgets", "notes": "Notizen", "refresh": "Aktualisieren", "refresh_subtitle": "Wählen Sie aus, was aktualisiert werden soll, wenn Sie auf die Schaltfläche \"Aktualisieren\" klicken", @@ -445,7 +455,11 @@ "usage": "Nutzungsstatistiken", "achievements": "Errungenschaften", "unlocked": "{count} Freigeschaltet", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimentell", @@ -485,7 +499,8 @@ "contributors": "Mitwirkende", "supporters": "Unterstützer", "no_supporters": "Derzeit gibt es keine Mue-Unterstützer", - "photographers": "Fotografen" + "photographers": "Fotografen", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/en_GB.json b/src/i18n/locales/en_GB.json index f5d1a929..97e9013d 100644 --- a/src/i18n/locales/en_GB.json +++ b/src/i18n/locales/en_GB.json @@ -499,7 +499,8 @@ "contributors": "Contributors", "supporters": "Supporters", "no_supporters": "There are currently no Mue supporters", - "photographers": "Photographers" + "photographers": "Photographers", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/en_US.json b/src/i18n/locales/en_US.json index 7276ec9c..49491716 100644 --- a/src/i18n/locales/en_US.json +++ b/src/i18n/locales/en_US.json @@ -182,13 +182,22 @@ "greeting": { "title": "Greeting", "events": "Events", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Default greeting message", "name": "Name for greeting", "birthday": "Birthday", "birthday_subtitle": "Show a Happy Birthday message when it is your birthday", "birthday_age": "Birthday age", "birthday_date": "Birthday date", - "additional": "Settings for the greeting display" + "additional": "Settings for the greeting display", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Background", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Navbar", + "widgets": "Navbar Widgets", "notes": "Notes", "refresh": "Refresh", "refresh_subtitle": "Choose what is refreshed when you click the refresh button", @@ -445,7 +455,11 @@ "usage": "Usage Stats", "achievements": "Achievements", "unlocked": "{count} Unlocked", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimental", @@ -485,7 +499,8 @@ "contributors": "Contributors", "supporters": "Supporters", "no_supporters": "There are currently no Mue supporters", - "photographers": "Photographers" + "photographers": "Photographers", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index 9b4327e3..33ec0975 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -182,13 +182,22 @@ "greeting": { "title": "Saludo", "events": "Eventos", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Mensaje del saludo por defecto", "name": "Nombre para el saludo", "birthday": "Cumpleaños", "birthday_subtitle": "Mostrar un mensaje de Feliz Cumpleaños cuando sea su cumpleaños", "birthday_age": "Edad de cumpleaños", "birthday_date": "Fecha de cumpleaños", - "additional": "Ajustes para la visualización del saludo" + "additional": "Ajustes para la visualización del saludo", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Fondo", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Barra de búsqueda", + "widgets": "Navbar Widgets", "notes": "Notas", "refresh": "Botón de recargar", "refresh_subtitle": "Elija qué se actualiza al pulsar el botón de actualización", @@ -445,7 +455,11 @@ "usage": "Estadísticas de uso", "achievements": "Logros", "unlocked": "{count} Desbloqueado", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimental", @@ -485,7 +499,8 @@ "contributors": "Contribuyentes", "supporters": "Partidarios", "no_supporters": "Actualmente no hay partidarios de Mue", - "photographers": "Fotógrafos" + "photographers": "Fotógrafos", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/es_419.json b/src/i18n/locales/es_419.json index 396a7d39..37044299 100644 --- a/src/i18n/locales/es_419.json +++ b/src/i18n/locales/es_419.json @@ -182,13 +182,22 @@ "greeting": { "title": "Saludo", "events": "Eventos", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Mensaje del saludo por defecto", "name": "Nombre para el saludo", "birthday": "Cumpleaños", "birthday_subtitle": "Show a Happy Birthday message when it is your birthday", "birthday_age": "Edad de cumpleaños", "birthday_date": "Fecha de cumpleaños", - "additional": "Settings for the greeting display" + "additional": "Settings for the greeting display", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Fondo", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Barra de búsqueda", + "widgets": "Navbar Widgets", "notes": "Notas", "refresh": "Botón de recargar", "refresh_subtitle": "Choose what is refreshed when you click the refresh button", @@ -445,7 +455,11 @@ "usage": "Estadísticas de uso", "achievements": "Achievements", "unlocked": "{count} Unlocked", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimental", @@ -485,7 +499,8 @@ "contributors": "Contribuidores", "supporters": "Supporters", "no_supporters": "Actualmente no hay partidarios de Mue", - "photographers": "Fotógrafos" + "photographers": "Fotógrafos", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json index 4ca8c37b..252987dc 100644 --- a/src/i18n/locales/fr.json +++ b/src/i18n/locales/fr.json @@ -182,13 +182,22 @@ "greeting": { "title": "Salutation", "events": "Événements", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Salutation par défaut", "name": "Nom pour salutation", "birthday": "Anniversaire", "birthday_subtitle": "Show a Happy Birthday message when it is your birthday", "birthday_age": "âge d'anniversaire", "birthday_date": "date d'anniversaire", - "additional": "Settings for the greeting display" + "additional": "Settings for the greeting display", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Fond", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Navbar", + "widgets": "Navbar Widgets", "notes": "Notes", "refresh": "Refresh", "refresh_subtitle": "Choose what is refreshed when you click the refresh button", @@ -445,7 +455,11 @@ "usage": "Usage Stats", "achievements": "Achievements", "unlocked": "{count} Unlocked", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Expérimental", @@ -485,7 +499,8 @@ "contributors": "Collaborateurs", "supporters": "Partisans", "no_supporters": "There are currently no Mue supporters", - "photographers": "Photographes" + "photographers": "Photographes", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/id_ID.json b/src/i18n/locales/id_ID.json index 279b9e07..344b5a6d 100644 --- a/src/i18n/locales/id_ID.json +++ b/src/i18n/locales/id_ID.json @@ -182,13 +182,22 @@ "greeting": { "title": "Sapaan", "events": "Hari Besar", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Sapaan bawaan", "name": "Nama", "birthday": "Hari Ulang Tahun", "birthday_subtitle": "Show a Happy Birthday message when it is your birthday", "birthday_age": "Usia", "birthday_date": "Tanggal Ulang Tahun", - "additional": "Settings for the greeting display" + "additional": "Settings for the greeting display", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Background", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Navbar", + "widgets": "Navbar Widgets", "notes": "Catatan", "refresh": "Muat ulang", "refresh_subtitle": "Choose what is refreshed when you click the refresh button", @@ -445,7 +455,11 @@ "usage": "Statistik Penggunaan", "achievements": "Achievements", "unlocked": "{count} Unlocked", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimental", @@ -485,7 +499,8 @@ "contributors": "Kontributor", "supporters": "Suporter", "no_supporters": "Mue belum punya suporter saat ini.", - "photographers": "Fotografer" + "photographers": "Fotografer", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json index 80b884b9..660b3743 100644 --- a/src/i18n/locales/nl.json +++ b/src/i18n/locales/nl.json @@ -182,13 +182,22 @@ "greeting": { "title": "Begroetingen", "events": "Gebeurtenissen", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Standaard begroetingsnaam", "name": "Naam van begroeting", "birthday": "Birthday", "birthday_subtitle": "Laat een felicitatie zien wanneer het je verjaardag is", "birthday_age": "Birthday age", "birthday_date": "Birthday date", - "additional": "Instellingen voor de begroetingsweergave" + "additional": "Instellingen voor de begroetingsweergave", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Achtergrond", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Navbar", + "widgets": "Navbar Widgets", "notes": "Notes", "refresh": "Refresh", "refresh_subtitle": "Kies wat vernieuwd wordt als je op de vernieuw knop klikt", @@ -445,7 +455,11 @@ "usage": "Usage Stats", "achievements": "Prestaties", "unlocked": "{count} Ontgrendeld", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimenteel", @@ -485,7 +499,8 @@ "contributors": "Contributors", "supporters": "Supporters", "no_supporters": "There are currently no Mue supporters", - "photographers": "Photographers" + "photographers": "Photographers", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json index c58a10d5..6ae61f6d 100644 --- a/src/i18n/locales/no.json +++ b/src/i18n/locales/no.json @@ -182,13 +182,22 @@ "greeting": { "title": "Hallo", "events": "Planer", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Standard Hallo Melding", "name": "Navn for Hallo", "birthday": "Birthday", "birthday_subtitle": "Show a Happy Birthday message when it is your birthday", "birthday_age": "Birthday age", "birthday_date": "Birthday date", - "additional": "Settings for the greeting display" + "additional": "Settings for the greeting display", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Bakgrunn", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Navbar", + "widgets": "Navbar Widgets", "notes": "Notes", "refresh": "Refresh", "refresh_subtitle": "Choose what is refreshed when you click the refresh button", @@ -445,7 +455,11 @@ "usage": "Usage Stats", "achievements": "Achievements", "unlocked": "{count} Unlocked", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Eksperimental", @@ -485,7 +499,8 @@ "contributors": "Contributors", "supporters": "Supporters", "no_supporters": "There are currently no Mue supporters", - "photographers": "Photographers" + "photographers": "Photographers", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json index 0d51086d..4b5aaa92 100644 --- a/src/i18n/locales/pt.json +++ b/src/i18n/locales/pt.json @@ -182,13 +182,22 @@ "greeting": { "title": "Saudações", "events": "Eventos", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Mensagem de saudação padrão", "name": "Nome para saudação", "birthday": "Aniversário", "birthday_subtitle": "Mostrar uma mensagem de feliz aniversário quando for o seu aniversário", "birthday_age": "idade de aniversário", "birthday_date": "Data de nascimento", - "additional": "Configurações para a exibição de saudação" + "additional": "Configurações para a exibição de saudação", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Plano de fundo", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Barra de navegação", + "widgets": "Navbar Widgets", "notes": "Notas", "refresh": "Botão atualizar", "refresh_subtitle": "Escolha o que é atualizado quando clica no botão de atualização", @@ -445,7 +455,11 @@ "usage": "Estatísticas de uso", "achievements": "Conquistas", "unlocked": "{count} Desbloqueado", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimental", @@ -485,7 +499,8 @@ "contributors": "Contribuintes", "supporters": "Apoiadores", "no_supporters": "Atualmente não há apoiadores do Mue", - "photographers": "Fotógrafos" + "photographers": "Fotógrafos", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/pt_BR.json b/src/i18n/locales/pt_BR.json index b2c92277..bdab801f 100644 --- a/src/i18n/locales/pt_BR.json +++ b/src/i18n/locales/pt_BR.json @@ -182,13 +182,22 @@ "greeting": { "title": "Saudações", "events": "Eventos", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Mensagem de saudação padrão", "name": "Nome para saudação", "birthday": "Aniversário", "birthday_subtitle": "Mostrar uma mensagem de feliz aniversário quando for seu aniversário", "birthday_age": "idade de aniversário", "birthday_date": "Data de nascimento", - "additional": "Configurações para a exibição de saudação" + "additional": "Configurações para a exibição de saudação", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Plano de fundo", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Barra de navegação", + "widgets": "Navbar Widgets", "notes": "Notas", "refresh": "Botão atualizar", "refresh_subtitle": "Escolha o que é atualizado quando você clica no botão de atualização", @@ -445,7 +455,11 @@ "usage": "Estatísticas de uso", "achievements": "Conquistas", "unlocked": "{count} Desbloqueado", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Experimental", @@ -485,7 +499,8 @@ "contributors": "Contribuintes", "supporters": "Apoiadores", "no_supporters": "Atualmente não há apoiadores do Mue", - "photographers": "Fotógrafos" + "photographers": "Fotógrafos", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json index fa5aa04d..9b006b49 100644 --- a/src/i18n/locales/ru.json +++ b/src/i18n/locales/ru.json @@ -182,13 +182,22 @@ "greeting": { "title": "Приветствие", "events": "События", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Сообщение с приветствием по-умолчанию", "name": "Имя для приветствия", "birthday": "День рождения", "birthday_subtitle": "Показать сообщение с днем рождения, когда это ваш день рождения", "birthday_age": "Возраст рождения", "birthday_date": "Дата рождения", - "additional": "Настройки отображения приветствия" + "additional": "Настройки отображения приветствия", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Фон", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Навбар", + "widgets": "Navbar Widgets", "notes": "Notes", "refresh": "Кнопка перезагрузки", "refresh_subtitle": "Выберите, что будет обновляться при нажатии кнопки обновления", @@ -445,7 +455,11 @@ "usage": "Статистика использования", "achievements": "Достижения", "unlocked": "{count} разблокировано", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Экспериментальные настройки", @@ -485,7 +499,8 @@ "contributors": "Участники", "supporters": "Поддержка", "no_supporters": "В настоящее время нет поддержки Mue", - "photographers": "Фотографы" + "photographers": "Фотографы", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/tr_TR.json b/src/i18n/locales/tr_TR.json index 6f368bba..e421392c 100644 --- a/src/i18n/locales/tr_TR.json +++ b/src/i18n/locales/tr_TR.json @@ -182,13 +182,22 @@ "greeting": { "title": "Karşılama Ekranı", "events": "Olaylar", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "Karşılama mesajları görünsün.", "name": "İsminiz", "birthday": "Doğum Günü", "birthday_subtitle": "Doğum günüm olduğunda bir 'Mutlu Yıllar' mesajı göster.", "birthday_age": "Doğum günümde yaş bilgisi gözüksün.", "birthday_date": "Doğum günü tarihim", - "additional": "Karşılama ekranı için ek ayarlarınızı belirleyin." + "additional": "Karşılama ekranı için ek ayarlarınızı belirleyin.", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "Arka Plan", @@ -353,6 +362,7 @@ }, "navbar": { "title": "Gezinme Çubuğu", + "widgets": "Navbar Widgets", "notes": "Notlar", "refresh": "Yenile Butonu", "refresh_subtitle": "Yenile düğmesine tıkladığınızda yenilenecek öğeleri seçin.", @@ -445,7 +455,11 @@ "usage": "Kullanım İstatistikleri", "achievements": "Başarılar", "unlocked": "{count} Kilidi Açıldı", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "Deneysel Özellikler", @@ -485,7 +499,8 @@ "contributors": "Katkıda Bulunanlar", "supporters": "Destekleyenler", "no_supporters": "Şu anda Mue destekçisi yok!", - "photographers": "Fotoğrafçılar" + "photographers": "Fotoğrafçılar", + "curators": "Add-on creators" } }, "buttons": { diff --git a/src/i18n/locales/zh_CN.json b/src/i18n/locales/zh_CN.json index 54ec1805..be18b97a 100644 --- a/src/i18n/locales/zh_CN.json +++ b/src/i18n/locales/zh_CN.json @@ -182,13 +182,22 @@ "greeting": { "title": "问候", "events": "节日问候", + "events_description": "Control events on Mue such as birthdays.", + "enable_events": "Show messages on special days", "default": "常规问候", "name": "您在问候中的名字", "birthday": "生日", "birthday_subtitle": "Show a Happy Birthday message when it is your birthday", "birthday_age": "显示年龄", "birthday_date": "生日日期", - "additional": "Settings for the greeting display" + "additional": "Settings for the greeting display", + "custom": "Custom events", + "event_name": "Event Name", + "day": "Day", + "month": "Month", + "no_events": "No Events", + "no_events_description": "Add Some Events", + "add_event": "Add Event" }, "background": { "title": "背景", @@ -353,6 +362,7 @@ }, "navbar": { "title": "右上方功能键", + "widgets": "Navbar Widgets", "notes": "便签", "refresh": "刷新键", "refresh_subtitle": "Choose what is refreshed when you click the refresh button", @@ -445,7 +455,11 @@ "usage": "启用统计", "achievements": "Achievements", "unlocked": "{count} Unlocked", - "locked": "Locked" + "locked": "Locked", + "clear_modal": { + "question": "Do you want to clear your stats?", + "information": "This will clear all achievements and usage statistics." + } }, "experimental": { "title": "实验性功能", @@ -485,7 +499,8 @@ "contributors": "贡献者", "supporters": "支持者", "no_supporters": "There are currently no Mue supporters", - "photographers": "背景摄影者" + "photographers": "背景摄影者", + "curators": "Add-on creators" } }, "buttons": {