fix: add missing translations, fix birthday

This commit is contained in:
alexsparkes 2022-08-28 20:19:47 +01:00
parent c2a7e5223b
commit bf1723e63c
20 changed files with 1027 additions and 739 deletions

File diff suppressed because it is too large Load Diff

View File

@ -17,6 +17,9 @@ input {
-webkit-appearance: none;
vertical-align: middle;
background: none;
@include themed() {
border: t($modal-sidebarActive) 1px solid;
}
&::-webkit-color-swatch-wrapper {
padding: 0;

View File

@ -20,7 +20,7 @@ export default function AppearanceSettings() {
<span className="title">
{variables.getMessage('modals.main.settings.sections.appearance.theme.title')}
</span>
<span className="subtitle">Change the theme of the Mue widgets and modals</span>
<span className="subtitle"> {variables.getMessage('modals.main.settings.sections.appearance.theme.description')}</span>
</div>
<div className="action">
<Radio
@ -48,7 +48,7 @@ export default function AppearanceSettings() {
<span className="title">
{variables.getMessage('modals.main.settings.sections.appearance.font.title')}
</span>
<span className="subtitle">Change the font used in Mue</span>
<span className="subtitle">{variables.getMessage('modals.main.settings.sections.appearance.font.description')}</span>
</div>
<div className="action">
<Checkbox
@ -121,19 +121,19 @@ export default function AppearanceSettings() {
</div>
</div>
<SettingsItem
title="Widget Style"
subtitle="Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling."
title={variables.getMessage('modals.main.settings.sections.appearance.style.title')}
subtitle={variables.getMessage('modals.main.settings.sections.appearance.style.description')}
>
<Radio
name="widgetStyle"
element=".other"
options={[
{
name: 'Legacy',
name: variables.getMessage('modals.main.settings.sections.appearance.style.legacy'),
value: 'legacy',
},
{
name: 'New',
name: variables.getMessage('modals.main.settings.sections.appearance.style.new'),
value: 'new',
},
]}
@ -143,19 +143,19 @@ export default function AppearanceSettings() {
<SettingsItem
title={variables.getMessage('modals.main.settings.sections.appearance.accessibility.title')}
subtitle="Accessibility settings for Mue"
subtitle={variables.getMessage('modals.main.settings.sections.appearance.accessibility.description')}
final={true}
>
<Dropdown
label={variables.getMessage(
'modals.main.settings.sections.appearance.accessibility.text_shadow',
'modals.main.settings.sections.appearance.accessibility.text_shadow.title',
)}
name="textBorder"
category="other"
>
<option value="new">New</option> {/* default */}
<option value="true">Old</option> {/* old checkbox setting */}
<option value="none">None</option>
<option value="new">{variables.getMessage('modals.main.settings.sections.appearance.accessibility.text_shadow.new',)}</option> {/* default */}
<option value="true">{variables.getMessage('modals.main.settings.sections.appearance.accessibility.text_shadow.old',)}</option> {/* old checkbox setting */}
<option value="none">{variables.getMessage('modals.main.settings.sections.appearance.accessibility.text_shadow.none')}</option>
</Dropdown>
<Checkbox
text={variables.getMessage(

View File

@ -109,8 +109,8 @@ export default class Changelog extends PureComponent {
return errorMessage(
<>
<MdOutlineWifiOff />
<h1>failed</h1>
<p className="description">error description</p>
<span className='title'>{variables.getMessage('modals.main.error_boundary.title')}</span>
<span className="subtitle">{variables.getMessage('modals.main.error_boundary.message')}</span>
</>,
);
}

View File

@ -115,8 +115,8 @@ export default class Message extends PureComponent {
<div className="photosEmpty">
<div className="emptyNewMessage">
<MdOutlineTextsms />
<span className="title">No messages</span>
<span className="subtitle">Go ahead and add some.</span>
<span className="title">{variables.getMessage('modals.main.settings.sections.message.no_messages')}</span>
<span className="subtitle">{variables.getMessage('modals.main.settings.sections.message.add_some')}</span>
<button onClick={() => this.modifyMessage('add')}>
{variables.getMessage('modals.main.settings.sections.message.add')}
<MdAdd />

View File

@ -69,12 +69,12 @@ export default class TimeSettings extends PureComponent {
zoomCategory="weather"
switch={true}
/>
<SettingsItem title="Widget Type">
<SettingsItem title={variables.getMessage('modals.main.settings.sections.weather.widget_type')}>
<Dropdown label="Type" name="weatherType" category="weather">
<option value="1">Basic</option>
<option value="2">Standard</option>
<option value="3">Expanded</option>
<option value="4">Custom</option>
<option value="1">{variables.getMessage('widgets.weather.options.basic')}</option>
<option value="2">{variables.getMessage('widgets.weather.options.standard')}</option>
<option value="3">{variables.getMessage('widgets.weather.options.expanded')}</option>
<option value="4">{variables.getMessage('widgets.weather.options.custom')}</option>
</Dropdown>
</SettingsItem>
<SettingsItem

View File

@ -264,23 +264,23 @@ export default class WelcomeSections extends PureComponent {
const style = (
<>
<span className="mainTitle">
{variables.getMessage('modals.main.settings.sections.appearance.style.title')}
{variables.getMessage('modals.welcome.sections.style.title')}
</span>
<span className="subtitle">
{variables.getMessage('modals.main.settings.sections.appearance.style.description')}
{variables.getMessage('modals.welcome.sections.style.description')}
</span>
<div className="themesToggleArea">
<div className="options">
<div className={this.state.legacyStyle} onClick={() => this.changeStyle('legacy')}>
<MdArchive />
<span>
{variables.getMessage('modals.main.settings.sections.appearance.style.legacy')}
{variables.getMessage('modals.welcome.sections.style.legacy')}
</span>
</div>
<div className={this.state.newStyle} onClick={() => this.changeStyle('new')}>
<MdOutlineWhatshot />
<span>
{variables.getMessage('modals.main.settings.sections.appearance.style.modern')}
{variables.getMessage('modals.welcome.sections.style.modern')}
</span>
</div>
</div>

View File

@ -95,9 +95,7 @@ export default class Greeting extends PureComponent {
if (birth.getDate() === now.getDate() && birth.getMonth() === now.getMonth()) {
if (localStorage.getItem('birthdayage') === 'true') {
const text = variables.language.variables
.getMessage('widgets.greeting.birthday')
.split(' ');
const text = variables.getMessage('widgets.greeting.birthday').split(' ');
message = `${text[0]} ${nth(this.calculateAge(birth))} ${text[1]}`;
} else {
message = variables.getMessage('widgets.greeting.birthday');

View File

@ -215,9 +215,6 @@ export default class QuickLinks extends PureComponent {
style={{ display: this.state.showAddLink }}
>
<span className="dropdown-title">{variables.getMessage('widgets.quicklinks.new')}</span>
<span className="dropdown-subtitle">
{variables.getMessage('widgets.quicklinks.new')} Description
</span>
<TextareaAutosize
maxRows={1}
placeholder={variables.getMessage('widgets.quicklinks.name')}

View File

@ -34,7 +34,13 @@
"not_found": "Nicht gefunden",
"meters": "{amount} Meter",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Wetter",
"location": "Standort",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Temperatur Format",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Message",
"add": "Add message",
"messages": "Messages",
"text": "Text"
"text": "Text",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Erscheinungsbild",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Design",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Hell",
"dark": "Dunkel"
@ -317,6 +333,7 @@
},
"font": {
"title": "Schriftart",
"description": "Change the font used in Mue",
"custom": "Eigene Schriftart",
"google": "Importieren von Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Barrierefreiheit",
"description": "Accessibility settings for Mue",
"animations": "Animations",
"text_shadow": "Widget-Textschatten",
"widget_zoom": "Widget größe",

View File

@ -34,7 +34,13 @@
"not_found": "Not Found",
"meters": "{amount} metres",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Weather",
"location": "Location",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Temperature format",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Message",
"add": "Add message",
"messages": "Messages",
"text": "Text"
"text": "Text",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Appearance",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Theme",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Light",
"dark": "Dark"
@ -317,6 +333,7 @@
},
"font": {
"title": "Font",
"description": "Change the font used in Mue",
"custom": "Custom font",
"google": "Import from Google Fonts",
"weight": {
@ -339,8 +356,14 @@
},
"accessibility": {
"title": "Accessibility",
"description": "Accessibility settings for Mue",
"animations": "Animations",
"text_shadow": "Widget text shadow",
"text_shadow": {
"title": "Widget text shadow",
"new": "New",
"old": "Old",
"none": "None"
},
"widget_zoom": "Widget zoom",
"toast_duration": "Toast duration",
"milliseconds": "milliseconds"

View File

@ -34,7 +34,13 @@
"not_found": "Not Found",
"meters": "{amount} meters",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Weather",
"location": "Location",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Temperature format",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Message",
"add": "Add message",
"messages": "Messages",
"text": "Text"
"text": "Text",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Appearance",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Theme",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Light",
"dark": "Dark"
@ -317,6 +333,7 @@
},
"font": {
"title": "Font",
"description": "Change the font used in Mue",
"custom": "Custom font",
"google": "Import from Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Accessibility",
"description": "Accessibility settings for Mue",
"animations": "Animations",
"text_shadow": "Widget text shadow",
"widget_zoom": "Widget zoom",

View File

@ -34,7 +34,13 @@
"not_found": "No encontrado",
"meters": "{amount} metros",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Clima",
"location": "Ubicación",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Formato de la temperatura",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Mensaje",
"add": "Añadir mensaje",
"messages": "Messages",
"text": "Texto"
"text": "Texto",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Apariencia",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Tema",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Claro",
"dark": "Oscuro"
@ -317,6 +333,7 @@
},
"font": {
"title": "Fuente",
"description": "Change the font used in Mue",
"custom": "Fuente personalizada",
"google": "Importar desde Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Accesibilidad",
"description": "Accessibility settings for Mue",
"animations": "Animaciones",
"text_shadow": "Sombra de texto del widget",
"widget_zoom": "Zoom del widget",

View File

@ -34,7 +34,13 @@
"not_found": "Pas trouvé",
"meters": "{amount} mètres",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Météo",
"location": "Emplacement",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Format de température",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Message",
"add": "Add message",
"messages": "Messages",
"text": "Text"
"text": "Text",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Apparence",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Thème",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Clair",
"dark": "Sombre"
@ -317,6 +333,7 @@
},
"font": {
"title": "Font",
"description": "Change the font used in Mue",
"custom": "Custom font",
"google": "Import from Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Accessibilité",
"description": "Accessibility settings for Mue",
"animations": "Animations",
"text_shadow": "Widget text shadow",
"widget_zoom": "Zoom du widget",

View File

@ -34,7 +34,13 @@
"not_found": "Tidak Ditemukan",
"meters": "{amount} meter",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Cuaca",
"location": "Lokasi",
"auto": "Otomatis",
"widget_type": "Widget Type",
"temp_format": {
"title": "Format suhu",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Pesan",
"add": "Tambahkan pesan",
"messages": "Messages",
"text": "Teks"
"text": "Teks",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Antarmuka",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Tema",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Otomatis",
"light": "Light",
"dark": "Dark"
@ -317,6 +333,7 @@
},
"font": {
"title": "Font",
"description": "Change the font used in Mue",
"custom": "Font kustom",
"google": "Impor dari Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Aksesibilitas",
"description": "Accessibility settings for Mue",
"animations": "Animasi",
"text_shadow": "Widget text shadow",
"widget_zoom": "Widget zoom",

View File

@ -34,7 +34,13 @@
"not_found": "Not Found",
"meters": "{amount} meter",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Weather",
"location": "Location",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Temperature format",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Message",
"add": "Add message",
"messages": "Messages",
"text": "Text"
"text": "Text",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Appearance",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Theme",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Light",
"dark": "Dark"
@ -317,6 +333,7 @@
},
"font": {
"title": "Font",
"description": "Change the font used in Mue",
"custom": "Custom font",
"google": "Import from Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Accessibility",
"description": "Accessibility settings for Mue",
"animations": "Animations",
"text_shadow": "Widget text shadow",
"widget_zoom": "Widget zoom",

View File

@ -34,7 +34,13 @@
"not_found": "Not Found",
"meters": "{amount} meter",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Weather",
"location": "Location",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Temperature format",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Message",
"add": "Add message",
"messages": "Messages",
"text": "Text"
"text": "Text",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Appearance",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Theme",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Light",
"dark": "Dark"
@ -317,6 +333,7 @@
},
"font": {
"title": "Font",
"description": "Change the font used in Mue",
"custom": "Custom font",
"google": "Import from Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Accessibility",
"description": "Accessibility settings for Mue",
"animations": "Animasjoner",
"text_shadow": "Widget text shadow",
"widget_zoom": "Widget zoom",

View File

@ -34,7 +34,13 @@
"not_found": "Not Found",
"meters": "{amount} метры",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "Weather",
"location": "Location",
"auto": "Auto",
"widget_type": "Widget Type",
"temp_format": {
"title": "Temperature format",
"celsius": "Celsius",
@ -293,12 +300,21 @@
"title": "Message",
"add": "Add message",
"messages": "Messages",
"text": "Text"
"text": "Text",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Appearance",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Theme",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Auto",
"light": "Light",
"dark": "Dark"
@ -317,6 +333,7 @@
},
"font": {
"title": "Font",
"description": "Change the font used in Mue",
"custom": "Custom font",
"google": "Import from Google Fonts",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Accessibility",
"description": "Accessibility settings for Mue",
"animations": "Анимации",
"text_shadow": "Widget text shadow",
"widget_zoom": "Widget zoom",

View File

@ -34,7 +34,13 @@
"not_found": "Bulunamadı.",
"meters": "{amount} metre",
"extra_information": "Ek Bilgilendirme",
"feels_like": "{amount} gibi hissettiriyor."
"feels_like": "{amount} gibi hissettiriyor.",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Wikipedia'da Aç",
@ -262,6 +268,7 @@
"title": "Hava Durumu",
"location": "Konum",
"auto": "Otomatik",
"widget_type": "Widget Type",
"temp_format": {
"title": "Sıcaklık formatı",
"celsius": "Santigrat",
@ -293,12 +300,21 @@
"title": "Mesaj",
"add": "Mesaj Ekle",
"messages": "Mesajlar",
"text": "Metin"
"text": "Metin",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "Görünüm",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "Tema",
"description": "Change the theme of the Mue widgets and modals",
"auto": "Otomatik",
"light": "Açık",
"dark": "Koyu"
@ -317,6 +333,7 @@
},
"font": {
"title": "Yazı tipi",
"description": "Change the font used in Mue",
"custom": "Özel yazı tipi",
"google": "Google Fonts'tan içe aktar",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "Ulaşılabilirlik",
"description": "Accessibility settings for Mue",
"animations": "Animasyonlar",
"text_shadow": "Widget metin gölgesi",
"widget_zoom": "Widget Yakınlaştırma",

View File

@ -34,7 +34,13 @@
"not_found": "未找到",
"meters": "{amount}米",
"extra_information": "Extra Information",
"feels_like": "Feels like {amount}"
"feels_like": "Feels like {amount}",
"options": {
"basic": "Basic",
"standard": "Standard",
"expanded": "Expanded",
"custom": "Custom"
}
},
"quote": {
"link_tooltip": "Open on Wikipedia",
@ -262,6 +268,7 @@
"title": "天气",
"location": "位置",
"auto": "自动定位",
"widget_type": "Widget Type",
"temp_format": {
"title": "温度单位",
"celsius": "摄氏度",
@ -293,12 +300,21 @@
"title": "消息",
"add": "继续添加消息",
"messages": "Messages",
"text": "文本"
"text": "文本",
"no_messages": "No messages",
"add_some": "Go ahead and add some."
},
"appearance": {
"title": "外观",
"style": {
"title": "Widget Style",
"description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
"legacy": "Legacy",
"new": "New"
},
"theme": {
"title": "主题",
"description": "Change the theme of the Mue widgets and modals",
"auto": "自动选择",
"light": "日间主题",
"dark": "夜间主题"
@ -317,6 +333,7 @@
},
"font": {
"title": "字体",
"description": "Change the font used in Mue",
"custom": "自定义字体",
"google": "从 Google Fonts 导入",
"weight": {
@ -339,6 +356,7 @@
},
"accessibility": {
"title": "无障碍设定",
"description": "Accessibility settings for Mue",
"animations": "动画效果",
"text_shadow": "加深字体阴影",
"widget_zoom": "小部件缩放",