feat: curators list on about page

This commit is contained in:
Isaac
2024-05-19 23:03:18 +01:00
parent 3e79f21eba
commit c82dccbb7b
16 changed files with 283 additions and 45 deletions

View File

@@ -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',
}}
>
<span className="title">
@@ -370,6 +376,27 @@ class About extends PureComponent {
))}
</ul>
</div>
<div
className="settingsRow"
style={{
flexFlow: 'column',
alignItems: 'flex-start',
minHeight: '10px',
borderBottom: '0',
}}
>
<span className="title">
{variables.getMessage('modals.main.settings.sections.about.curators')}
</span>
{!!this.state.loading ? <p>{this.state.loading}</p> : <></>}
<ul>
{this.state.curators.map((name) => (
<li key={name}>
{name}
</li>
))}
</ul>
</div>
</>
);
}

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {

View File

@@ -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": {