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; -webkit-appearance: none;
vertical-align: middle; vertical-align: middle;
background: none; background: none;
@include themed() {
border: t($modal-sidebarActive) 1px solid;
}
&::-webkit-color-swatch-wrapper { &::-webkit-color-swatch-wrapper {
padding: 0; padding: 0;

View File

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

View File

@ -109,8 +109,8 @@ export default class Changelog extends PureComponent {
return errorMessage( return errorMessage(
<> <>
<MdOutlineWifiOff /> <MdOutlineWifiOff />
<h1>failed</h1> <span className='title'>{variables.getMessage('modals.main.error_boundary.title')}</span>
<p className="description">error description</p> <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="photosEmpty">
<div className="emptyNewMessage"> <div className="emptyNewMessage">
<MdOutlineTextsms /> <MdOutlineTextsms />
<span className="title">No messages</span> <span className="title">{variables.getMessage('modals.main.settings.sections.message.no_messages')}</span>
<span className="subtitle">Go ahead and add some.</span> <span className="subtitle">{variables.getMessage('modals.main.settings.sections.message.add_some')}</span>
<button onClick={() => this.modifyMessage('add')}> <button onClick={() => this.modifyMessage('add')}>
{variables.getMessage('modals.main.settings.sections.message.add')} {variables.getMessage('modals.main.settings.sections.message.add')}
<MdAdd /> <MdAdd />

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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