diff --git a/src/components/modals/main/marketplace/Item.jsx b/src/components/modals/main/marketplace/Item.jsx index 4dae4a91..955adfab 100644 --- a/src/components/modals/main/marketplace/Item.jsx +++ b/src/components/modals/main/marketplace/Item.jsx @@ -4,7 +4,6 @@ import Tooltip from '../../../helpers/tooltip/Tooltip'; import ImageCarousel from '../../../helpers/carousel/Carousel'; import { toast } from 'react-toastify'; import { - MdArrowBack, MdIosShare, MdFlag, MdWarning, @@ -13,8 +12,6 @@ import { MdFormatQuote, MdImage, MdTranslate, - MdKeyboardArrowDown, - MdKeyboardArrowUp, MdOutlineKeyboardArrowRight, MdExpandMore, } from 'react-icons/md'; diff --git a/src/components/modals/main/marketplace/sections/Marketplace.jsx b/src/components/modals/main/marketplace/sections/Marketplace.jsx index 132e1a52..051c87bf 100644 --- a/src/components/modals/main/marketplace/sections/Marketplace.jsx +++ b/src/components/modals/main/marketplace/sections/Marketplace.jsx @@ -7,7 +7,6 @@ import { MdOutlineKeyboardArrowRight, MdRefresh, MdOutlineArrowForward, - MdOutlineOpenInNew, } from 'react-icons/md'; import Item from '../Item'; diff --git a/src/components/modals/main/settings/sections/Stats.jsx b/src/components/modals/main/settings/sections/Stats.jsx index 95d8162f..c91221e9 100644 --- a/src/components/modals/main/settings/sections/Stats.jsx +++ b/src/components/modals/main/settings/sections/Stats.jsx @@ -149,7 +149,13 @@ export default class Stats extends PureComponent {
- {this.getUnlockedCount()}/{this.state.achievements.length} Unlocked + {variables.language.getMessage( + variables.languagecode, + 'modals.main.settings.sections.stats.unlocked', + { + count: this.getUnlockedCount() + '/' + this.state.achievements.length, + }, + )}
{this.state.achievements.map((achievement, index) => { diff --git a/src/components/modals/main/tabs/backend/Tab.jsx b/src/components/modals/main/tabs/backend/Tab.jsx index aa07e7fe..60a8409b 100644 --- a/src/components/modals/main/tabs/backend/Tab.jsx +++ b/src/components/modals/main/tabs/backend/Tab.jsx @@ -22,7 +22,6 @@ import { MdOutlineAssessment as Stats, MdOutlineNewReleases as Changelog, MdInfoOutline as About, - MdEvent as Reminder, MdCode as Sideload, MdAddCircleOutline as Added, MdAddCircleOutline as Create, diff --git a/src/components/modals/welcome/WelcomeSections.jsx b/src/components/modals/welcome/WelcomeSections.jsx index ca7376e6..0e4405fc 100644 --- a/src/components/modals/welcome/WelcomeSections.jsx +++ b/src/components/modals/welcome/WelcomeSections.jsx @@ -167,11 +167,15 @@ export default class WelcomeSections extends PureComponent {
- Join our Discord - Talk with the Mue community and developers + + {this.getMessage('modals.welcome.sections.intro.notices.discord_title')} + + + {this.getMessage('modals.welcome.sections.intro.notices.discord_description')} +
- Join + {this.getMessage('modals.welcome.sections.intro.notices.discord_join')}
@@ -179,11 +183,15 @@ export default class WelcomeSections extends PureComponent {
- Contribute on GitHub - Report bugs, add features or donate + + {this.getMessage('modals.welcome.sections.intro.notices.github_title')} + + + {this.getMessage('modals.welcome.sections.intro.notices.github_description')} +
- Open + {this.getMessage('modals.welcome.sections.intro.notices.github_open')} @@ -241,20 +249,25 @@ export default class WelcomeSections extends PureComponent { const style = ( <> - Choose a theme + + {this.getMessage('modals.main.settings.sections.appearance.style.title')} + - Mue currently offers the choice between the legacy styling and the newly released modern - styling. + {this.getMessage('modals.main.settings.sections.appearance.style.description')}
this.changeStyle('legacy')}> - Legacy + + {this.getMessage('modals.main.settings.sections.appearance.style.legacy')} +
this.changeStyle('new')}> - Modern + + {this.getMessage('modals.main.settings.sections.appearance.style.modern')} +
@@ -271,7 +284,6 @@ export default class WelcomeSections extends PureComponent { - - location - -
- + + location + ); }; @@ -288,20 +285,16 @@ export default function PhotoInformation({ info, url, api }) { )} {info.location && info.location !== 'N/A' ? ( - -
- - {info.location} -
-
+
+ + {info.location} +
) : null} {info.camera && info.camera !== 'N/A' ? ( - -
- - {info.camera} -
-
+
+ + {info.camera} +
) : null}
diff --git a/src/components/widgets/quote/Quote.jsx b/src/components/widgets/quote/Quote.jsx index 949d8e22..c39ea1bb 100644 --- a/src/components/widgets/quote/Quote.jsx +++ b/src/components/widgets/quote/Quote.jsx @@ -115,7 +115,7 @@ export default class Quote extends PureComponent { const authorimgdata = await ( await fetch( - `https://en.wikipedia.org/w/api.php?action=query&titles=${author}&origin=*&prop=pageimages&format=json&pithumbsize=100`, + `https://${variables.languagecode.split('_')[0]}.wikipedia.org/w/api.php?action=query&titles=${author}&origin=*&prop=pageimages&format=json&pithumbsize=100`, ) ).json(); @@ -126,7 +126,7 @@ export default class Quote extends PureComponent { const authorimglicensedata = await ( await fetch( - `https://en.wikipedia.org/w/api.php?action=query&prop=imageinfo&iiprop=extmetadata&titles=File:${ + `https://${variables.languagecode.split('_')[0]}.wikipedia.org/w/api.php?action=query&prop=imageinfo&iiprop=extmetadata&titles=File:${ authorimgdata.query.pages[Object.keys(authorimgdata.query.pages)[0]].pageimage }&origin=*&format=json`, ) diff --git a/src/components/widgets/weather/Weather.jsx b/src/components/widgets/weather/Weather.jsx index 0bef37a0..b6c03085 100644 --- a/src/components/widgets/weather/Weather.jsx +++ b/src/components/widgets/weather/Weather.jsx @@ -149,7 +149,7 @@ export default class Weather extends PureComponent { render() { const weatherType = localStorage.getItem('weatherType'); const enabled = (setting) => { - return (localStorage.getItem(setting) === 'true' && weatherType >= 3) || weatherType == 3; + return (localStorage.getItem(setting) === 'true' && weatherType >= 3) || weatherType === "3"; }; if ( @@ -199,7 +199,7 @@ export default class Weather extends PureComponent { )} )} - {enabled('cloudiness') || weatherType === 3 ? ( + {enabled('cloudiness') ? ( ) : null} - {enabled('windspeed') || weatherType === 3 ? ( + {enabled('windspeed') ? ( ) : null} - {enabled('atmosphericpressure') || weatherType === 3 ? ( + {enabled('atmosphericpressure') ? ( ) : null} - {enabled('weatherdescription') || weatherType === 3 ? ( + {enabled('weatherdescription') ? ( ) : null} - {enabled('visibility') || weatherType === 3 ? ( + {enabled('visibility') ? ( )}
- {weatherType === 3 ? expandedInfo() : null} + {weatherType >= 3 ? expandedInfo() : null} ); } diff --git a/src/translations/de_DE.json b/src/translations/de_DE.json index 0e36fea2..9c39bb95 100644 --- a/src/translations/de_DE.json +++ b/src/translations/de_DE.json @@ -388,7 +388,8 @@ "addons_installed": "Installierte Add-ons" }, "usage": "Nutzungsstatistiken", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Tastenbindungen", @@ -603,7 +604,15 @@ "sections": { "intro": { "title": "Willkommen bei Mue Tab", - "description": "Vielen Dank für die Installation, wir wünschen Ihnen viel Spaß mit unserer Erweiterung." + "description": "Vielen Dank für die Installation, wir wünschen Ihnen viel Spaß mit unserer Erweiterung.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Wählen Sie Ihre Sprache", @@ -614,6 +623,12 @@ "description": "Mue ist sowohl mit einem hellen als auch mit einem dunklen Erscheinungsbild erhältlich, das je nach dem Erscheinungsbild Ihres Systems automatisch eingestellt werden kann.", "tip": "Bei der Einstellung Automatisch wird das Design auf Ihrem System verwendet. Diese Einstellung wirkt sich auf die Modalitäten und einige der Widgets aus, die auf dem Bildschirm angezeigt werden, z. B. Wetter und Notizen." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Einstellungen importieren", "description": "Installieren Sie Mue auf einem neuen Gerät? So können Sie Ihre alten Einstellungen importieren!", diff --git a/src/translations/en_GB.json b/src/translations/en_GB.json index 5d2419a9..6741cf05 100644 --- a/src/translations/en_GB.json +++ b/src/translations/en_GB.json @@ -387,7 +387,8 @@ "addons_installed": "Add-ons installed" }, "usage": "Usage Stats", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Keybinds", @@ -600,7 +601,15 @@ "sections": { "intro": { "title": "Welcome to Mue Tab", - "description": "Thank you for installing Mue, we hope you enjoy your time with our extension." + "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Choose your language", @@ -611,6 +620,12 @@ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.", "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Import Settings", "description": "Installing Mue on a new device? Feel free to import your old settings!", diff --git a/src/translations/en_US.json b/src/translations/en_US.json index bb0027d5..17f51c3f 100644 --- a/src/translations/en_US.json +++ b/src/translations/en_US.json @@ -387,7 +387,8 @@ "addons_installed": "Add-ons installed" }, "usage": "Usage Stats", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Keybinds", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "Welcome to Mue Tab", - "description": "Thank you for installing Mue, we hope you enjoy your time with our extension." + "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Choose your language", @@ -613,6 +622,12 @@ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.", "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Import Settings", "description": "Installing Mue on a new device? Feel free to import your old settings!", diff --git a/src/translations/es.json b/src/translations/es.json index 268aacb4..d794ce6e 100644 --- a/src/translations/es.json +++ b/src/translations/es.json @@ -387,7 +387,8 @@ "addons_installed": "Complementos instalados" }, "usage": "Estadísticas de uso", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Asignación de teclas", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "Bienvenido a Mue Tab", - "description": "Gracias por instalar Mue, esperamos que disfrute de su tiempo con nuestra extensión." + "description": "Gracias por instalar Mue, esperamos que disfrute de su tiempo con nuestra extensión.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Elige el idioma", @@ -613,6 +622,12 @@ "description": "Mue está disponible tanto en el tema claro como en el oscuro, también se puede configurar automáticamente en función del tema de su sistema.", "tip": "Si utiliza la configuración automática, utilizará el tema de su ordenador. Esta configuración afectará a los modales y a algunos de los widgets que aparecen en la pantalla, como el tiempo y las notas." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Importa los ajustes", "description": "¿Instalando Mue en un nuevo dispositivo? No dudes en importar tu antigua configuración.", diff --git a/src/translations/fr.json b/src/translations/fr.json index b17b2aae..14576c79 100644 --- a/src/translations/fr.json +++ b/src/translations/fr.json @@ -387,7 +387,8 @@ "addons_installed": "Add-ons installed" }, "usage": "Usage Stats", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Keybinds", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "Bienvenue en Mue Tab", - "description": "Merci d'avoir installé Mue, nous espérons que vous apprécierez votre temps avec notre extension." + "description": "Merci d'avoir installé Mue, nous espérons que vous apprécierez votre temps avec notre extension.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Choose your language", @@ -613,6 +622,12 @@ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.", "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Import Settings", "description": "Installing Mue on a new device? Feel free to import your old settings!", diff --git a/src/translations/id_ID.json b/src/translations/id_ID.json index 3da7513c..ea35bef4 100644 --- a/src/translations/id_ID.json +++ b/src/translations/id_ID.json @@ -387,7 +387,8 @@ "addons_installed": "Add-ons ditambahkan" }, "usage": "Statistik Penggunaan", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Keybinds", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "Selamat datang di Mue Tab", - "description": "Terima kasih sudah menginstal Mue, kami harap Anda dapat menikmati pengalaman bersama Mue" + "description": "Terima kasih sudah menginstal Mue, kami harap Anda dapat menikmati pengalaman bersama Mue", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Pilih bahasa", @@ -613,6 +622,12 @@ "description": "Mue tersedia dalam tema terang dan gelap, atau kami juga bisa mengaturnya secara otomatis sesuai dengan preferensi sistem Anda.", "tip": "Pengaturan otomatis akan menyesuaikan dengan tema komputer Anda. Pengaturan ini akan mengubah tampilan modal dan beberapa widget, seperti Cuaca dan Catatan." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Impor Pengaturan", "description": "Sudah pernah menginstal Mue? Yuk coba impor pengaturan lama kamu tanpa perlu mengatur ulang dari awal!", diff --git a/src/translations/nl.json b/src/translations/nl.json index 8e072730..363f0000 100644 --- a/src/translations/nl.json +++ b/src/translations/nl.json @@ -387,7 +387,8 @@ "addons_installed": "Add-ons installed" }, "usage": "Usage Stats", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Keybinds", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "Welcome to Mue Tab", - "description": "Thank you for installing Mue, we hope you enjoy your time with our extension." + "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Choose your language", @@ -613,6 +622,12 @@ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.", "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Import Settings", "description": "Installing Mue on a new device? Feel free to import your old settings!", diff --git a/src/translations/no.json b/src/translations/no.json index a3369a11..777b2e16 100644 --- a/src/translations/no.json +++ b/src/translations/no.json @@ -387,7 +387,8 @@ "addons_installed": "Add-ons installed" }, "usage": "Usage Stats", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Keybinds", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "Welcome to Mue Tab", - "description": "Thank you for installing Mue, we hope you enjoy your time with our extension." + "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Choose your language", @@ -613,6 +622,12 @@ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.", "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Import Settings", "description": "Installing Mue on a new device? Feel free to import your old settings!", diff --git a/src/translations/ru.json b/src/translations/ru.json index eb3607d3..ed924158 100644 --- a/src/translations/ru.json +++ b/src/translations/ru.json @@ -387,7 +387,8 @@ "addons_installed": "Add-ons installed" }, "usage": "Usage Stats", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Keybinds", @@ -603,7 +604,15 @@ "sections": { "intro": { "title": "Welcome to Mue Tab", - "description": "Thank you for installing Mue, we hope you enjoy your time with our extension." + "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Choose your language", @@ -614,6 +623,12 @@ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.", "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Import Settings", "description": "Installing Mue on a new device? Feel free to import your old settings!", diff --git a/src/translations/tr_TR.json b/src/translations/tr_TR.json index 01104221..7ef9ca3c 100644 --- a/src/translations/tr_TR.json +++ b/src/translations/tr_TR.json @@ -387,7 +387,8 @@ "addons_installed": "Eklentiler yüklendi." }, "usage": "Kullanım İstatistikleri", - "achievements": "Başarılar" + "achievements": "Başarılar", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "Tuş Atamaları", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "Mue Sekmesine Hoş Geldiniz", - "description": "Mue'yi yüklediğiniz için teşekkür ederiz, umarız uzantımızla iyi vakit geçirirsiniz." + "description": "Mue'yi yüklediğiniz için teşekkür ederiz, umarız uzantımızla iyi vakit geçirirsiniz.", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "Dilinizi seçin", @@ -613,6 +622,12 @@ "description": "Mue hem açık hem de koyu temada mevcuttur veya sistem temanıza bağlı olarak otomatik olarak ayarlanabilir.", "tip": "Otomatik ayarları kullanmak, bilgisayarınızdaki varsayılan temayı kullanır. Bu ayar, modları ve ekranda görüntülenen hava durumu ve notlar gibi bazı widget'ları etkiler." }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "Ayarları İçe Aktar", "description": "Mue'yi yeni bir cihaza mı yüklüyorsunuz? Eski ayarlarınızı almaktan çekinmeyin!", diff --git a/src/translations/zh_CN.json b/src/translations/zh_CN.json index 7549ecb3..5b03c92b 100644 --- a/src/translations/zh_CN.json +++ b/src/translations/zh_CN.json @@ -387,7 +387,8 @@ "addons_installed": "添加的插件" }, "usage": "启用统计", - "achievements": "Achievements" + "achievements": "Achievements", + "unlocked": "{count} Unlocked" }, "keybinds": { "title": "快捷键", @@ -602,7 +603,15 @@ "sections": { "intro": { "title": "欢迎使用 Mue 新标签插件", - "description": "感谢您的安装。祝您使用愉快。" + "description": "感谢您的安装。祝您使用愉快。", + "notices": { + "discord_title": "Join our Discord", + "discord_description": "Talk with the Mue community and developers", + "discord_join": "Join", + "github_title": "Contribute on GitHub", + "github_description": "Report bugs, add features or donate", + "github_open": "Open" + } }, "language": { "title": "更改语言", @@ -613,6 +622,12 @@ "description": "Mue 支持日间和夜间主题,或者设置为自动选择,主题将跟随系统主题自动切换", "tip": "使用自动选择将使用您的电脑的主题。这个设置也会影响设置界面和一些小组件的主题,比如天气和便签。" }, + "style": { + "title": "Choose a style", + "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.", + "legacy": "Legacy", + "modern": "Modern" + }, "settings": { "title": "导入设置", "description": "在新设备上安装 Mue? 可以直接导入之前的设置!",