diff --git a/src/components/modals/main/scss/index.scss b/src/components/modals/main/scss/index.scss
index 3ccb78e3..7358cc9a 100644
--- a/src/components/modals/main/scss/index.scss
+++ b/src/components/modals/main/scss/index.scss
@@ -92,18 +92,18 @@
}
}
-.ReactModal__Overlay {
+.ReactModal__Content {
opacity: 0;
transform: scale(0);
transition: all 300ms cubic-bezier(.47, 1.64, .41, .8);
}
-.ReactModal__Overlay--after-open {
+.ReactModal__Content--after-open {
opacity: 1;
transform: scale(1);
}
-.ReactModal__Overlay--before-close {
+.ReactModal__Content--before-close {
opacity: 0;
transform: scale(0);
}
@@ -356,6 +356,10 @@ li {
.resetfooter {
position: absolute;
bottom: 20px;
+
+ button.reset {
+ margin-right: 43px;
+ }
}
.resetoverlay {
diff --git a/src/components/modals/main/settings/sections/About.jsx b/src/components/modals/main/settings/sections/About.jsx
index 21e4a737..6fc03988 100644
--- a/src/components/modals/main/settings/sections/About.jsx
+++ b/src/components/modals/main/settings/sections/About.jsx
@@ -72,11 +72,17 @@ export default class About extends React.PureComponent {
{this.language.copyright} 2018-{new Date().getFullYear()} Mue Tab (BSD-3 License)
{this.language.version.title} {window.constants.VERSION} ({this.state.update})
- {window.language.modals.welcome.support}
+ {this.language.contact_us}
+ {this.language.support_mue}
+ GitHub Sponsors
+ • Ko-Fi
+ • Patreon
+
+
{this.language.resources_used.title}
Pexels ({this.language.resources_used.bg_images})
Google ({this.language.resources_used.pin_icon})
diff --git a/src/components/modals/main/settings/sections/Time.jsx b/src/components/modals/main/settings/sections/Time.jsx
index 578b57b4..891eff38 100644
--- a/src/components/modals/main/settings/sections/Time.jsx
+++ b/src/components/modals/main/settings/sections/Time.jsx
@@ -34,10 +34,10 @@ export default class TimeSettings extends React.PureComponent {
const digitalSettings = (
<>
{time.digital.title}
-
+
-
-
+
+
>
);
@@ -62,21 +62,21 @@ export default class TimeSettings extends React.PureComponent {
const longSettings = (
<>
-
-
+
+
>
);
const shortSettings = (
<>
-
+
-
+
@@ -95,7 +95,7 @@ export default class TimeSettings extends React.PureComponent {
<>
{time.title}
- this.setState({ timeType: value })} category='clock'>
+ this.setState({ timeType: value })} category='clock' element='.other'>
@@ -103,13 +103,13 @@ export default class TimeSettings extends React.PureComponent {
{timeSettings}
{time.date.title}
-
- this.setState({ dateType: value })} category='date'>
+
+ this.setState({ dateType: value })} category='date' element='.date'>
-
+
{dateSettings}
>
);
diff --git a/src/components/modals/main/settings/sections/Weather.jsx b/src/components/modals/main/settings/sections/Weather.jsx
index 9b8833a3..4999f798 100644
--- a/src/components/modals/main/settings/sections/Weather.jsx
+++ b/src/components/modals/main/settings/sections/Weather.jsx
@@ -17,6 +17,15 @@ export default class TimeSettings extends React.PureComponent {
localStorage.setItem('location', this.state.location);
}
+ changeLocation(e) {
+ this.setState({
+ location: e.target.value
+ });
+
+ document.querySelector('.reminder-info').style.display = 'block';
+ localStorage.setItem('showReminder', true);
+ }
+
render() {
const language = window.language.modals.main.settings.sections.weather;
@@ -41,11 +50,12 @@ export default class TimeSettings extends React.PureComponent {
{language.extra_info.title}
+
diff --git a/src/components/widgets/navbar/scss/_notes.scss b/src/components/widgets/navbar/scss/_notes.scss
index 1d482bb3..49656481 100644
--- a/src/components/widgets/navbar/scss/_notes.scss
+++ b/src/components/widgets/navbar/scss/_notes.scss
@@ -4,6 +4,8 @@
h3 {
text-shadow: none;
margin: 0;
+ cursor: initial;
+ user-select: none;
}
}
diff --git a/src/components/widgets/quicklinks/QuickLinks.jsx b/src/components/widgets/quicklinks/QuickLinks.jsx
index 3f17e998..08844572 100644
--- a/src/components/widgets/quicklinks/QuickLinks.jsx
+++ b/src/components/widgets/quicklinks/QuickLinks.jsx
@@ -14,7 +14,9 @@ export default class QuickLinks extends React.PureComponent {
items: JSON.parse(localStorage.getItem('quicklinks')),
name: '',
url: '',
- showAddLink: 'hidden'
+ showAddLink: 'hidden',
+ nameError: '',
+ urlError: ''
};
this.language = window.language.widgets.quicklinks;
}
@@ -35,6 +37,22 @@ export default class QuickLinks extends React.PureComponent {
let data = JSON.parse(localStorage.getItem('quicklinks'));
let url = this.state.url;
+ let nameError, urlError;
+ if (this.state.name.length <= 0) {
+ nameError = 'Must provide name';
+ }
+
+ if (url.length <= 0) {
+ urlError = 'Must provide URL';
+ }
+
+ if (nameError || urlError) {
+ return this.setState({
+ nameError: nameError,
+ urlError: urlError
+ });
+ }
+
if (!url.startsWith('http://') && !url.startsWith('https://')) {
url = 'http://' + url;
}
@@ -99,8 +117,8 @@ export default class QuickLinks extends React.PureComponent {
render() {
let target, rel = null;
if (localStorage.getItem('quicklinksnewtab') === 'true') {
- target ='_blank';
- rel ='noopener noreferrer';
+ target = '_blank';
+ rel = 'noopener noreferrer';
}
const tooltipEnabled = localStorage.getItem('quicklinkstooltip');
@@ -113,7 +131,7 @@ export default class QuickLinks extends React.PureComponent {
);
if (tooltipEnabled === 'true') {
- return {link};
+ return {link};
} else {
return link;
}
@@ -129,9 +147,9 @@ export default class QuickLinks extends React.PureComponent {
{this.language.new}
this.setState({ name: e.target.value })} />
-
+ {this.state.nameError}
this.setState({ url: e.target.value })} />
-
+ {this.state.urlError}
diff --git a/src/components/widgets/quicklinks/quicklinks.scss b/src/components/widgets/quicklinks/quicklinks.scss
index 98b0f109..88354b5e 100644
--- a/src/components/widgets/quicklinks/quicklinks.scss
+++ b/src/components/widgets/quicklinks/quicklinks.scss
@@ -15,9 +15,8 @@
text-align: center;
border-radius: 12px;
position: absolute;
- top: 56%;
margin-left: -140px;
- margin-top: 5px;
+ margin-top: 50px;
svg {
float: left;
@@ -43,16 +42,18 @@ textarea {
padding: 9px;
}
- h3 {
- font-size: 46px;
- margin-right: 20px;
- }
-
h4 {
margin: 0;
cursor: initial;
user-select: none;
}
+
+ p {
+ font-size: 16px;
+ cursor: initial;
+ user-select: none;
+ color: rgba(255, 71, 87, 1);
+ }
}
.dark textarea {
@@ -79,6 +80,7 @@ textarea {
height: 32px;
width: auto;
transition: transform .2s;
+ user-select: none;
&:hover {
transform: scale(1.1);
diff --git a/src/components/widgets/search/search.scss b/src/components/widgets/search/search.scss
index 590a6d5c..cbd88058 100644
--- a/src/components/widgets/search/search.scss
+++ b/src/components/widgets/search/search.scss
@@ -13,7 +13,7 @@
font-size: calc(5px + 1.2vmin);
border: none;
position: absolute;
- background-color: rgba(0, 0, 0, 0.1);
+ background-color: rgba(0, 0, 0, 0.3);
-webkit-transition: width 0.5s ease-in-out;
transition: width 0.5s ease-in-out;
color: white;
@@ -22,7 +22,7 @@
&:focus {
width: 400px;
- background-color: rgba(0, 0, 0, .3);
+ background-color: rgba(0, 0, 0, .5);
user-select: text;
}
}
diff --git a/src/components/widgets/time/Clock.jsx b/src/components/widgets/time/Clock.jsx
index 2133c165..586719a9 100644
--- a/src/components/widgets/time/Clock.jsx
+++ b/src/components/widgets/time/Clock.jsx
@@ -114,14 +114,14 @@ export default class Clock extends React.PureComponent {
clockHTML = (
+ className='analogclock clock-container'
+ value={this.state.time}
+ renderMinuteMarks={enabled('minuteMarks')}
+ renderHourMarks={enabled('hourMarks')}
+ renderSecondHand={enabled('secondHand')}
+ renderMinuteHand={enabled('minuteHand')}
+ renderHourHand={enabled('hourHand')}
+ />
);
}
diff --git a/src/components/widgets/weather/Weather.jsx b/src/components/widgets/weather/Weather.jsx
index 8a98f5ad..da251480 100644
--- a/src/components/widgets/weather/Weather.jsx
+++ b/src/components/widgets/weather/Weather.jsx
@@ -48,8 +48,14 @@ export default class Weather extends React.PureComponent {
data = await (await fetch (window.constants.WEATHER_URL + `?city=${this.state.location}`)).json();
}
+ if (data.cod === '404') {
+ return this.setState({
+ location: window.language.widgets.weather.not_found
+ });
+ }
+
let temp = data.main.temp;
- let temp_min = data.main.temp_mix
+ let temp_min = data.main.temp_min;
let temp_max = data.main.temp_max;
let temp_text = 'K';
@@ -105,6 +111,12 @@ export default class Weather extends React.PureComponent {
return (localStorage.getItem(setting) === 'true');
};
+ if (this.state.location === window.language.widgets.weather.not_found) {
+ return (
+ {this.state.location}
+
);
+ };
+
const minmax = () => {
const mintemp = (localStorage.getItem('mintemp') === 'true');
const maxtemp = (localStorage.getItem('maxtemp') === 'true');
@@ -129,7 +141,7 @@ export default class Weather extends React.PureComponent {
{enabled('windspeed') ?
{this.state.weather.windspeed} m/s : null}
{enabled('atmosphericpressure') ?
{this.state.weather.pressure} hPa : null}
- {this.state.location}
+ {enabled('showlocation') ? {this.state.location} : null}
);
}
diff --git a/src/components/widgets/weather/weather.scss b/src/components/widgets/weather/weather.scss
index 083741aa..3b87621c 100644
--- a/src/components/widgets/weather/weather.scss
+++ b/src/components/widgets/weather/weather.scss
@@ -4,14 +4,18 @@
right: 1rem;
cursor: initial;
user-select: none;
+ padding: 20px;
+ background-color: rgba(0, 0, 0, 0.3);
+ border-radius: 20px;
span {
text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
svg {
- filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
- font-size: 0.8em;
+ filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.1));
+ vertical-align: middle;
+ font-size: 35px;
}
.loc {
diff --git a/src/modules/default_settings.json b/src/modules/default_settings.json
index 84ae40e6..bede5a60 100644
--- a/src/modules/default_settings.json
+++ b/src/modules/default_settings.json
@@ -186,5 +186,17 @@
{
"name": "notesEnabled",
"value": true
+ },
+ {
+ "name": "showlocation",
+ "value": true
+ },
+ {
+ "name": "minuteHand",
+ "value": true
+ },
+ {
+ "name": "hourHand",
+ "value": true
}
]
diff --git a/src/translations/de_DE.json b/src/translations/de_DE.json
index 2982d412..a7470ee0 100644
--- a/src/translations/de_DE.json
+++ b/src/translations/de_DE.json
@@ -12,13 +12,30 @@
},
"background": {
"credit": "Foto von",
- "information": "Informationen"
+ "unsplash": "on Unsplash",
+ "information": "Informationen",
+ "download": "Download"
},
"search": "Suche",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
"navbar": {
"tooltips": {
"update": "Update Hinweise",
- "refresh": "Neuladen"
+ "refresh": "Neuladen",
+ "feedback": "Feedback"
},
"notes": {
"title": "Notizen",
@@ -30,21 +47,33 @@
"main": {
"title": "Einstellungen",
"loading": "Loading...",
+ "file_upload_error": "File is over 2MB",
"navbar": {
"settings": "Einstellungen",
"addons": "Meine Addons",
"marketplace": "Marktplatz"
},
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
"settings": {
"enabled": "Aktivieren",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
"sections": {
"time": {
"title": "Uhrzeit",
+ "format": "Format",
+ "type": "Type",
"digital": {
"title": "Digital",
"seconds": "Sekunden",
"twentyfourhour": "24 Stunden",
- "ampm": "AM/PM (12 Stunden)",
+ "twelvehour": "12 hour",
"zero": "Nullen füllen"
},
"analogue": {
@@ -58,8 +87,13 @@
"percentage_complete": "Denn Tages fotschritt in Prozent anzeigen",
"date": {
"title": "Datum",
+ "week_number": "Week number",
"day_of_week": "Wochentag",
"datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
"short_date": "Kurzes Datum",
"short_format": "Kurzes Format",
"short_separator": {
@@ -89,20 +123,31 @@
"default": "Standard-Begrüßungsnachricht",
"name": "Name zur Begrüßung",
"birthday": "Geburtstag",
+ "birthday_age": "Birthday age",
"birthday_date": "Geburtstags Datum"
},
"background": {
"title": "Hintergrund",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
"buttons": {
"title": "Buttons",
"view": "Ansicht",
- "favourite": "Favorit"
+ "favourite": "Favorit",
+ "download": "Download"
},
"effects": {
"title": "Effekte",
"blur": "Unschärfe anpassen",
"brightness": "Helligkeit anpassen"
},
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient"
+ },
"source": {
"title": "Quelle",
"api": "Hintergrund API",
@@ -111,7 +156,9 @@
"custom_colour": "Benutzerdefinierter Hintergrundfarbe",
"upload": "Upload",
"add_colour": "Farbe hinzufügen",
- "disabled": "Deaktiviert"
+ "disabled": "Deaktiviert",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
}
},
"search": {
@@ -120,10 +167,39 @@
"custom": "Abfrage-URL",
"voice_search": "Sprachsuche"
},
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ }
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
+ },
"appearance": {
"title": "Erscheinungsbild",
- "dark_theme": "Dark Mode",
- "night_mode": "Nacht Modus",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
"animations": "Animationen",
"navbar": {
"title": "Navigationsleiste",
@@ -133,26 +209,56 @@
"font": {
"title": "Schriftart",
"custom": "Eigene Schriftart",
- "google": "Importieren von Google Fonts"
+ "google": "Importieren von Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
},
"accessibility": {
"title": "Accessibility",
- "zoom": "Zoom",
+ "widget_zoom": "Widget zoom",
"toast_duration": "Toast Dauer",
- "milliseconds": "Millisekunden"
+ "milliseconds": "Millisekunden",
+ "zoom": "Zoom"
}
},
+ "order": {
+ "title": "Widget Order"
+ },
"advanced": {
"title": "Erweitert",
"offline_mode": "Offline Modus",
"data": "Daten",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
"customisation": "Anpassung",
"custom_css": "Benutzerdefiniertes CSS",
"custom_js": "Benutzerdefiniertes JS",
- "experimental_warning": "Bitte beachten Sie, dass das Mue Team keinen Support leisten kann, wenn Sie den experimentellen Modus aktiviert haben. Bitte deaktivieren Sie ihn zuerst und schauen Sie, ob das Problem weiterhin auftritt, bevor Sie den Support kontaktieren."
+ "tab_name": "Tab name",
+ "experimental_warning": "Bitte beachten Sie, dass das Mue Team keinen Support leisten kann, wenn Sie den experimentellen Modus aktiviert haben. Bitte deaktivieren Sie ihn zuerst und schauen Sie, ob das Problem weiterhin auftritt, bevor Sie den Support kontaktieren."
},
"experimental": {
- "title": "Experimentell"
+ "title": "Experimentell",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer"
},
"language": {
"title": "Sprache",
@@ -169,6 +275,8 @@
"no_update": "Kein Update verfügbar",
"offline_mode": "Im Offline Modus kann nicht nach Updates gesucht werden"
},
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
"resources_used": {
"title": "Verwendete Ressourcen",
"bg_images": "Offline Hintergrundbilder",
@@ -176,7 +284,8 @@
"pin_icon": "Pin Icon"
},
"contributors": "Mitwirkende",
- "supporters": "Unterstützer"
+ "supporters": "Unterstützer",
+ "photographers": "Photographers"
}
},
"buttons": {
@@ -194,16 +303,13 @@
"quote_packs": "Zitat-Pakete",
"preset_settings": "Voreingestellte Einstellungen",
"themes": "Themen",
+ "no_items": "No items in this category",
"product": {
"overview": "Übersicht",
"information": "Information",
"last_updated": "Letzte Aktualisierung",
"version": "Version",
"author": "Autor",
- "notice": {
- "title": "Hinweis",
- "description": "Damit die Änderung erfolgt, muss die Seite neu geladen werden."
- },
"buttons": {
"addtomue": "Zu Mue hinzufügen",
"remove": "Entfernen"
@@ -223,8 +329,7 @@
"added": "Hinzugefügt",
"empty": {
"title": "Hier ist es leer",
- "description": "Gehen Sie zum Marktplatz, um einige hinzuzufügen.",
- "button": "Bring mich dorthin"
+ "description": "Gehen Sie zum Marktplatz, um einige hinzuzufügen."
},
"sideload": "Hochladen"
}
@@ -255,6 +360,9 @@
"question_one": "Wie würden Sie Ihre Erfahrungen mit dieser Mue Version bewerten?",
"question_two": "Auf welche Fehler sind Sie bei der Verwendung von Mue gestoßen?",
"question_three": "Wie wahrscheinlich ist es, dass Sie diese Version von Mue einem Freund oder Kollegen empfehlen würden?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
"submit": "Senden"
}
},
diff --git a/src/translations/en_GB.json b/src/translations/en_GB.json
index fa84d472..5e4ad93b 100644
--- a/src/translations/en_GB.json
+++ b/src/translations/en_GB.json
@@ -21,11 +21,16 @@
"new": "New Link",
"name": "Name",
"url": "URL",
- "add": "Add"
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
},
"date": {
"week": "Week"
},
+ "weather": {
+ "not_found": "Not Found"
+ },
"navbar": {
"tooltips": {
"update": "Update Patch Notes",
@@ -69,7 +74,6 @@
"seconds": "Seconds",
"twentyfourhour": "24 Hour",
"twelvehour": "12 hour",
- "ampm": "AM/PM (12 hour)",
"zero": "Zero-padded"
},
"analogue": {
@@ -175,6 +179,7 @@
},
"extra_info": {
"title": "Extra information",
+ "show_location": "Show Location",
"humidity": "Humidity",
"wind_speed": "Wind speed",
"min_temp": "Minimum temperature",
@@ -247,7 +252,7 @@
"custom_css": "Custom CSS",
"custom_js": "Custom JS",
"tab_name": "Tab name",
- "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
},
"experimental": {
"title": "Experimental",
@@ -269,6 +274,8 @@
"no_update": "No update available",
"offline_mode": "Cannot check for update in offline mode"
},
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
"resources_used": {
"title": "Resources used",
"bg_images": "Offline background images",
@@ -284,10 +291,6 @@
"reset": "Reset",
"import": "Import",
"export": "Export"
- },
- "toasts": {
- "reset": "Reset successfully",
- "imported": "Successfully imported"
}
},
"marketplace": {
diff --git a/src/translations/en_US.json b/src/translations/en_US.json
index 7f896d4f..169a827b 100644
--- a/src/translations/en_US.json
+++ b/src/translations/en_US.json
@@ -1,34 +1,370 @@
{
- "modals": {
- "main": {
- "settings": {
- "sections": {
- "quote": {
- "favourite": "Favorite",
- "author_link": "Author Link",
- "custom_author": "Custom Author"
- },
- "background": {
- "buttons": {
- "favourite": "Favorite"
- },
- "type": {
- "custom_colour": "Custom Color/Gradient"
- },
- "source": {
- "add_colour": "Add color"
- }
- },
- "time": {
- "analogue": {
- "title": "Analog"
- }
- },
- "advanced": {
- "customisation": "Customization"
- }
- }
+ "tabname": "New Tab",
+ "widgets": {
+ "greeting": {
+ "morning": "Good Morning",
+ "afternoon": "Good Afternoon",
+ "evening": "Good Evening",
+ "christmas": "Merry Christmas",
+ "newyear": "Happy New Year",
+ "halloween": "Happy Halloween",
+ "birthday": "Happy Birthday"
+ },
+ "background": {
+ "credit": "Photo by",
+ "unsplash": "on Unsplash",
+ "information": "Information",
+ "download": "Download"
+ },
+ "search": "Search",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
+ "navbar": {
+ "tooltips": {
+ "update": "Update Patch Notes",
+ "refresh": "Refresh Page",
+ "feedback": "Feedback"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
}
}
+ },
+ "modals": {
+ "main": {
+ "title": "Options",
+ "loading": "Loading...",
+ "file_upload_error": "File is over 2MB",
+ "navbar": {
+ "settings": "Settings",
+ "addons": "My Add-ons",
+ "marketplace": "Marketplace"
+ },
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
+ "settings": {
+ "enabled": "Enabled",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
+ "sections": {
+ "time": {
+ "title": "Time",
+ "format": "Format",
+ "type": "Type",
+ "digital": {
+ "title": "Digital",
+ "seconds": "Seconds",
+ "twentyfourhour": "24 Hour",
+ "twelvehour": "12 hour",
+ "zero": "Zero-padded"
+ },
+ "analogue": {
+ "title": "Analog",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks"
+ },
+ "percentage_complete": "Percentage complete",
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
+ }
+ },
+ "quote": {
+ "title": "Quote",
+ "author_link": "Author link",
+ "custom": "Custom quote",
+ "custom_author": "Custom author",
+ "buttons": {
+ "title": "Buttons",
+ "copy": "Copy",
+ "tweet": "Tweet",
+ "favourite": "Favorite"
+ }
+ },
+ "greeting": {
+ "title": "Greeting",
+ "events": "Events",
+ "default": "Default greeting message",
+ "name": "Name for greeting",
+ "birthday": "Birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date"
+ },
+ "background": {
+ "title": "Background",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
+ "buttons": {
+ "title": "Buttons",
+ "view": "Maximize",
+ "favourite": "Favourite",
+ "download": "Download"
+ },
+ "effects": {
+ "title": "Effects",
+ "blur": "Adjust blur",
+ "brightness": "Adjust brightness"
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom color/gradient"
+ },
+ "source": {
+ "title": "Source",
+ "api": "Background API",
+ "custom_url": "Custom background URL",
+ "custom_background": "Custom background",
+ "custom_colour": "Custom background color",
+ "upload": "Upload",
+ "add_colour": "Add color",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
+ }
+ },
+ "search": {
+ "title": "Search",
+ "search_engine": "Search engine",
+ "custom": "Custom search URL",
+ "voice_search": "Voice search"
+ },
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ }
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
+ },
+ "appearance": {
+ "title": "Appearance",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "animations": "Animations",
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button"
+ },
+ "font": {
+ "title": "Font",
+ "custom": "Custom font",
+ "google": "Import from Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Accessibility",
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
+ },
+ "advanced": {
+ "title": "Advanced",
+ "offline_mode": "Offline mode",
+ "data": "Data",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
+ "customisation": "Customization",
+ "custom_css": "Custom CSS",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
+ },
+ "experimental": {
+ "title": "Experimental",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer"
+ },
+ "language": {
+ "title": "Language",
+ "quote": "Quote language"
+ },
+ "changelog": "Change Log",
+ "about": {
+ "title": "About",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Checking for update",
+ "update_available": "Update available",
+ "no_update": "No update available",
+ "offline_mode": "Cannot check for update in offline mode"
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images",
+ "welcome_img": "Welcome image",
+ "pin_icon": "Pin icon"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "photographers": "Photographers"
+ }
+ },
+ "buttons": {
+ "reset": "Reset",
+ "import": "Import",
+ "export": "Export"
+ }
+ },
+ "marketplace": {
+ "photo_packs": "Photo Packs",
+ "quote_packs": "Quote Packs",
+ "preset_settings": "Preset Settings",
+ "themes": "Themes",
+ "no_items": "No items in this category",
+ "product": {
+ "overview": "Overview",
+ "information": "Information",
+ "last_updated": "Last Updated",
+ "version": "Version",
+ "author": "Author",
+ "buttons": {
+ "addtomue": "Add To Mue",
+ "remove": "Remove"
+ },
+ "quote_warning": {
+ "title": "Warning",
+ "description": "This quote pack requests to external servers that may track you!"
+ }
+ },
+ "offline": {
+ "title": "Looks like you're offline",
+ "description": "Please connect to the internet."
+ },
+ "see_more": "See More"
+ },
+ "addons": {
+ "added": "Added",
+ "empty": {
+ "title": "Empty",
+ "description": "No addons are installed"
+ },
+ "sideload": "Sideload"
+ }
+ },
+ "update": {
+ "title": "Update",
+ "offline": {
+ "title": "Offline",
+ "description": "Cannot get update logs while in offline mode"
+ },
+ "error": {
+ "title": "Error",
+ "description": "Could not connect to the server"
+ },
+ "read_blog": "Read on the blog here",
+ "contact_support": "Contact us here"
+ },
+ "welcome": {
+ "title": "Welcome to",
+ "information": "Information",
+ "thankyoumessage1": "Thank you for installing Mue Tab,",
+ "thankyoumessage2": "we hope you enjoy your time with our extension.",
+ "support": "Support",
+ "close": "Close"
+ },
+ "feedback": {
+ "title": "Give us feedback",
+ "question_one": "How would you rate your experience of this Mue build?",
+ "question_two": "What bugs did you encounter in your use of Mue?",
+ "question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
+ "submit": "Submit"
+ }
+ },
+ "toasts": {
+ "quote": "Quote copied",
+ "installed": "Successfully installed",
+ "uninstalled": "Successfully removed",
+ "error": "Something went wrong"
}
}
diff --git a/src/translations/es.json b/src/translations/es.json
index db373a6a..fe3c5669 100644
--- a/src/translations/es.json
+++ b/src/translations/es.json
@@ -1,4 +1,5 @@
{
+ "tabname": "New Tab",
"widgets": {
"greeting": {
"morning": "Buenos días",
@@ -6,38 +7,111 @@
"evening": "Buenas noches",
"christmas": "Feliz Navidad",
"newyear": "Feliz año nuevo",
- "halloween": "Feliz Halloween"
+ "halloween": "Feliz Halloween",
+ "birthday": "Happy Birthday"
},
"background": {
- "credit": "Foto por"
+ "credit": "Foto por",
+ "unsplash": "on Unsplash",
+ "information": "Information",
+ "download": "Download"
},
- "search": "Buscar"
+ "search": "Buscar",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
+ "navbar": {
+ "tooltips": {
+ "update": "Update Patch Notes",
+ "refresh": "Refresh Page",
+ "feedback": "Feedback"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ }
+ }
},
"modals": {
"main": {
"title": "Opciones",
+ "loading": "Loading...",
+ "file_upload_error": "File is over 2MB",
"navbar": {
"settings": "Ajustes",
"addons": "Mis complementos",
"marketplace": "Tienda"
},
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
"settings": {
+ "enabled": "Enabled",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
"sections": {
"time": {
"title": "Tiempo",
+ "format": "Format",
+ "type": "Type",
"digital": {
+ "title": "Digital",
"seconds": "Segundos",
"twentyfourhour": "24 Horas",
- "ampm": "AM/PM (12 horas)",
+ "twelvehour": "12 hour",
"zero": "Sin ceros"
},
"analogue": {
- "title": "Analógico"
+ "title": "Analógico",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks"
+ },
+ "percentage_complete": "Percentage complete",
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
}
},
"quote": {
"title": "Cita",
+ "author_link": "Authour link",
+ "custom": "Custom quote",
+ "custom_author": "Custom authour",
"buttons": {
+ "title": "Buttons",
"copy": "Copiar",
"tweet": "Tweet",
"favourite": "Favoritos"
@@ -47,26 +121,44 @@
"title": "Saludos",
"events": "Eventos",
"default": "Mensaje del saludo por defecto",
- "name": "Nombre para el saludo"
+ "name": "Nombre para el saludo",
+ "birthday": "Birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date"
},
"background": {
"title": "Fondo",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
"buttons": {
+ "title": "Buttons",
+ "view": "Ver",
"favourite": "Favorito",
- "view": "Ver"
+ "download": "Download"
},
"effects": {
+ "title": "Effects",
"blur": "Ajustar difuminado",
"brightness": "Ajustar brillo"
},
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient"
+ },
"source": {
+ "title": "Source",
"api": "Fondos API",
"custom_url": "URL del fondo personalizado",
"custom_background": "Fondo personalizado",
"custom_colour": "Color del fondo personalizado",
"upload": "Subir",
"add_colour": "Añadir color",
- "disabled": "Desactivado"
+ "disabled": "Desactivado",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
}
},
"search": {
@@ -75,19 +167,127 @@
"custom": "URL de búsqueda personalizada",
"voice_search": "Búsqueda por voz"
},
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ }
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
+ },
"appearance": {
- "dark_theme": "Tema Oscuro",
- "night_mode": "Modo nocturno automático"
+ "title": "Appearance",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "animations": "Animations",
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button"
+ },
+ "font": {
+ "title": "Font",
+ "custom": "Custom font",
+ "google": "Import from Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Accessibility",
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
},
"advanced": {
- "offline_mode": "Modo Offline"
+ "title": "Advanced",
+ "offline_mode": "Modo Offline",
+ "data": "Data",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
+ "customisation": "Customisation",
+ "custom_css": "Custom CSS",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
+ },
+ "experimental": {
+ "title": "Experimental",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer"
},
"language": {
- "title": "Language"
+ "title": "Language",
+ "quote": "Quote language"
+ },
+ "changelog": "Change Log",
+ "about": {
+ "title": "About",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Checking for update",
+ "update_available": "Update available",
+ "no_update": "No update available",
+ "offline_mode": "Cannot check for update in offline mode"
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images",
+ "welcome_img": "Welcome image",
+ "pin_icon": "Pin icon"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "photographers": "Photographers"
}
},
"buttons": {
- "apply": "Aplicar",
"reset": "Reiniciar",
"import": "Importar",
"export": "Exportar"
@@ -102,21 +302,18 @@
"quote_packs": "Paquetes de citas",
"preset_settings": "Ajustes preestablecidos",
"themes": "Tema",
+ "no_items": "No items in this category",
"product": {
"overview": "Visión general",
"information": "Información",
"last_updated": "Última actualización",
"version": "Versión",
"author": "Autor",
- "notice": {
- "title": "Aviso",
- "description": "Para que se realice el cambio, la página debe actualizarse."
- },
"buttons": {
"addtomue": "Añadir a Mue",
"remove": "Remover"
},
- "quoteWarning": {
+ "quote_warning": {
"title": "Advertencia",
"description": "¡Este paquete de citas solicita a servidores externos que pueden rastrearlo!"
}
@@ -131,8 +328,7 @@
"added": "Añadido",
"empty": {
"title": "Está vacío aquí",
- "description": "Dirígete a la tienda para agregar algunos.",
- "button": "Llévame allí"
+ "description": "Dirígete a la tienda para agregar algunos."
},
"sideload": "Cargar complemento localmente"
}
@@ -147,14 +343,36 @@
"title": "Error",
"description": "No se pudo conectar con el servidor"
},
+ "read_blog": "Read on the blog here",
+ "contact_support": "Contact us here",
"loading": "Cargando...",
"readblog": "Leer en el blog aquí",
"contactsupport": "Contáctanos aquí"
+ },
+ "welcome": {
+ "title": "Welcome to",
+ "information": "Information",
+ "thankyoumessage1": "Thank you for installing Mue Tab,",
+ "thankyoumessage2": "we hope you enjoy your time with our extension.",
+ "support": "Support",
+ "close": "Close"
+ },
+ "feedback": {
+ "title": "Give us feedback",
+ "question_one": "How would you rate your experience of this Mue build?",
+ "question_two": "What bugs did you encounter in your use of Mue?",
+ "question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
+ "submit": "Submit"
}
},
"toasts": {
"quote": "Cita copiada",
"installed": "Instalado correctamente",
+ "uninstalled": "Successfully removed",
+ "error": "Something went wrong",
"removed": "Retirado correctamente"
}
}
diff --git a/src/translations/fr.json b/src/translations/fr.json
index 1653fe87..bae46a85 100644
--- a/src/translations/fr.json
+++ b/src/translations/fr.json
@@ -1,4 +1,5 @@
{
+ "tabname": "New Tab",
"widgets": {
"greeting": {
"morning": "Bonjour",
@@ -6,37 +7,109 @@
"evening": "Bonsoir",
"christmas": "Joyeux Noël",
"newyear": "Bonne année",
- "halloween": "Joyeux Halloween"
+ "halloween": "Joyeux Halloween",
+ "birthday": "Happy Birthday"
},
"background": {
- "credit": "Photo par"
+ "credit": "Photo par",
+ "unsplash": "on Unsplash",
+ "information": "Information",
+ "download": "Download"
},
- "search": "Rechercher"
+ "search": "Rechercher",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
+ "navbar": {
+ "tooltips": {
+ "update": "Update Patch Notes",
+ "refresh": "Refresh Page",
+ "feedback": "Feedback"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ }
+ }
},
"modals": {
"main": {
"title": "Options",
+ "loading": "Loading...",
+ "file_upload_error": "File is over 2MB",
"navbar": {
"settings": "Paramètres",
"addons": "Mes Options",
"marketplace": "Marché"
},
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
"settings": {
+ "enabled": "Enabled",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
"sections": {
"time": {
"title": "Heure",
+ "format": "Format",
+ "type": "Type",
"digital": {
+ "title": "Digital",
"seconds": "Secondes",
"twentyfourhour": "24 heures",
- "ampm": "AM/PM (12 heures)",
+ "twelvehour": "12 hour",
"zero": "Complétion de zéros"
},
"analogue": {
- "title": "Analogique"
+ "title": "Analogique",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks"
+ },
+ "percentage_complete": "Percentage complete",
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
}
},
"quote": {
"title": "Citation",
+ "author_link": "Authour link",
+ "custom": "Custom quote",
+ "custom_author": "Custom authour",
"buttons": {
"title": "Boutons",
"copy": "Copier",
@@ -48,44 +121,170 @@
"title": "Salutation",
"events": "Événements",
"default": "Salutation par défaut",
- "name": "Nom pour salutation"
+ "name": "Nom pour salutation",
+ "birthday": "Birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date"
},
"background": {
"title": "Fond",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
"buttons": {
+ "title": "Buttons",
+ "view": "Mode vue",
"favourite": "Ajouter aux favoris",
- "view": "Mode vue"
+ "download": "Download"
},
"effects": {
+ "title": "Effects",
"blur": "Ajuster le flou",
"brightness": "Ajuster la luminosité"
},
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient"
+ },
"source": {
+ "title": "Source",
"api": "Source",
"custom_url": "URL d'arrière-plan personnalisé",
"custom_background": "Arrière-plan personnalisé",
"custom_colour": "Couleur d'arrière-plan personnalisée",
"upload": "Ajouter",
- "add_colour": "Ajouter une couleur"
+ "add_colour": "Ajouter une couleur",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
}
},
"search": {
"title": "Barre de Recherche",
"search_engine": "Moteur de recherche",
- "voice_search": "Recherche vocale",
- "custom": "URL de recherche personnalisée"
+ "custom": "URL de recherche personnalisée",
+ "voice_search": "Recherche vocale"
+ },
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ }
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
},
"appearance": {
- "dark_theme": "Thème sombre"
+ "title": "Appearance",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "animations": "Animations",
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button"
+ },
+ "font": {
+ "title": "Font",
+ "custom": "Custom font",
+ "google": "Import from Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Accessibility",
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
},
"advanced": {
- "offline_mode": "Mode Hors-Ligne"
+ "title": "Advanced",
+ "offline_mode": "Mode Hors-Ligne",
+ "data": "Data",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
+ "customisation": "Customisation",
+ "custom_css": "Custom CSS",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
},
"experimental": {
- "title": "Expérimental"
+ "title": "Expérimental",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer"
},
"language": {
- "title": "Langue"
+ "title": "Langue",
+ "quote": "Quote language"
+ },
+ "changelog": "Change Log",
+ "about": {
+ "title": "About",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Checking for update",
+ "update_available": "Update available",
+ "no_update": "No update available",
+ "offline_mode": "Cannot check for update in offline mode"
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images",
+ "welcome_img": "Welcome image",
+ "pin_icon": "Pin icon"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "photographers": "Photographers"
}
},
"buttons": {
@@ -103,16 +302,13 @@
"quote_packs": "Packs Citations",
"preset_settings": "Paramètres prédéfinis",
"themes": "Thèmes",
+ "no_items": "No items in this category",
"product": {
"overview": "Aperçu",
"information": "Information",
"last_updated": "Dernière mise à jour",
"version": "Version",
"author": "Auteur",
- "notice": {
- "title": "Remarque",
- "description": "Pour appliquer les changements, veuillez recharger la page."
- },
"buttons": {
"addtomue": "Ajouter à Mue",
"remove": "Enlever"
@@ -132,8 +328,7 @@
"added": "Ajoutées",
"empty": {
"title": "C'est vide par ici",
- "description": "Dirigez vous vers le marché pour ajouter des options.",
- "button": "Naviguer vers le marché"
+ "description": "Dirigez vous vers le marché pour ajouter des options."
},
"sideload": "Charger"
}
@@ -148,15 +343,34 @@
"title": "Erreur",
"description": "Impossible de se connecter au serveur"
},
- "loading": "Chargement...",
"read_blog": "Lire sur le blog ",
- "contact_support": "Contactez-nous "
+ "contact_support": "Contactez-nous ",
+ "loading": "Chargement..."
+ },
+ "welcome": {
+ "title": "Welcome to",
+ "information": "Information",
+ "thankyoumessage1": "Thank you for installing Mue Tab,",
+ "thankyoumessage2": "we hope you enjoy your time with our extension.",
+ "support": "Support",
+ "close": "Close"
+ },
+ "feedback": {
+ "title": "Give us feedback",
+ "question_one": "How would you rate your experience of this Mue build?",
+ "question_two": "What bugs did you encounter in your use of Mue?",
+ "question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
+ "submit": "Submit"
}
},
"toasts": {
"quote": "Citation copiée",
"installed": "Installé avec succès",
- "removed": "Enlevé avec succès",
- "error": "Quelque chose s'est mal passé"
+ "uninstalled": "Successfully removed",
+ "error": "Quelque chose s'est mal passé",
+ "removed": "Enlevé avec succès"
}
}
diff --git a/src/translations/nl.json b/src/translations/nl.json
index 1e7ece19..5b49e325 100644
--- a/src/translations/nl.json
+++ b/src/translations/nl.json
@@ -1,4 +1,5 @@
{
+ "tabname": "New Tab",
"widgets": {
"greeting": {
"morning": "Goedemorgen",
@@ -6,38 +7,111 @@
"evening": "Goedenavond",
"christmas": "Fijne kerstdagen",
"newyear": "Gelukkig nieuwjaar",
- "halloween": "Fijne Halloween"
+ "halloween": "Fijne Halloween",
+ "birthday": "Happy Birthday"
},
"background": {
- "credit": "Foto van"
+ "credit": "Foto van",
+ "unsplash": "on Unsplash",
+ "information": "Information",
+ "download": "Download"
},
- "search": "Zoeken"
+ "search": "Zoeken",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
+ "navbar": {
+ "tooltips": {
+ "update": "Update Patch Notes",
+ "refresh": "Refresh Page",
+ "feedback": "Feedback"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ }
+ }
},
"modals": {
"main": {
"title": "Opties",
+ "loading": "Loading...",
+ "file_upload_error": "File is over 2MB",
"navbar": {
"settings": "Instellingen",
"addons": "Mijn extensies",
"marketplace": "Marktplaats"
},
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
"settings": {
+ "enabled": "Enabled",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
"sections": {
"time": {
"title": "Tijd",
+ "format": "Format",
+ "type": "Type",
"digital": {
+ "title": "Digital",
"seconds": "Seconden tonen",
"twentyfourhour": "24-uursklok gebruiken",
- "ampm": "AM/PM (12-uursklok) gebruiken",
+ "twelvehour": "12 hour",
"zero": "Nulopvulling"
},
"analogue": {
- "title": "Analoog"
+ "title": "Analoog",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks"
+ },
+ "percentage_complete": "Percentage complete",
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
}
},
"quote": {
"title": "Citaat",
+ "author_link": "Authour link",
+ "custom": "Custom quote",
+ "custom_author": "Custom authour",
"buttons": {
+ "title": "Buttons",
"copy": "Kopieerknop",
"tweet": "Tweetknop",
"favourite": "Knop 'Toevoegen aan favorieten'"
@@ -47,57 +121,186 @@
"title": "Begroetingen",
"events": "Gebeurtenissen",
"default": "Standaard begroetingsnaam",
- "name": "Naam van begroeting"
+ "name": "Naam van begroeting",
+ "birthday": "Birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date"
},
"background": {
"title": "Achtergrond",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
"buttons": {
+ "title": "Buttons",
"view": "Weergave",
+ "favourite": "Favourite",
+ "download": "Download",
"refresh": "Herladen",
"disabled": "Uitgeschakeld"
},
"effects": {
- "blur": "Vervaging instellen"
+ "title": "Effects",
+ "blur": "Vervaging instellen",
+ "brightness": "Adjust brightness"
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient"
},
"source": {
+ "title": "Source",
"api": "Achtergrond-api",
"custom_url": "Aangepaste achtergrond-url",
"custom_background": "Aangepaste achtergrond",
"custom_colour": "Aangepaste achtergrondkleur",
"upload": "Uploaden",
- "add_colour": "Kleur toevoegen"
+ "add_colour": "Kleur toevoegen",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
}
},
"search": {
"title": "Zoekbalk",
"search_engine": "Zoekmachine",
- "custom": "Aangepaste zoekmachine-url"
+ "custom": "Aangepaste zoekmachine-url",
+ "voice_search": "Voice search"
+ },
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ }
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
},
"appearance": {
- "dark_theme": "Donker thema"
+ "title": "Appearance",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "animations": "Animations",
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button"
+ },
+ "font": {
+ "title": "Font",
+ "custom": "Custom font",
+ "google": "Import from Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Accessibility",
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
},
"advanced": {
- "offline_mode": "Offline-modus"
+ "title": "Advanced",
+ "offline_mode": "Offline-modus",
+ "data": "Data",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
+ "customisation": "Customisation",
+ "custom_css": "Custom CSS",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
},
"experimental": {
"title": "Experimenteel",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer",
"animations": "Animaties"
},
"language": {
- "title": "Taal"
+ "title": "Taal",
+ "quote": "Quote language"
+ },
+ "changelog": "Change Log",
+ "about": {
+ "title": "About",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Checking for update",
+ "update_available": "Update available",
+ "no_update": "No update available",
+ "offline_mode": "Cannot check for update in offline mode"
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images",
+ "welcome_img": "Welcome image",
+ "pin_icon": "Pin icon"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "photographers": "Photographers"
}
},
"buttons": {
- "apply": "Toepassen",
"reset": "Herstellen",
"import": "Importeren",
"export": "Exporteren"
},
"toasts": {
+ "reset": "Reset successfully",
+ "imported": "Het importeren is voltooid",
"installed": "De installatie is voltooid",
"removed": "Het verwijderen is voltooid",
- "error": "Er is iets misgegaan",
- "imported": "Het importeren is voltooid"
+ "error": "Er is iets misgegaan"
}
},
"marketplace": {
@@ -105,21 +308,18 @@
"quote_packs": "Citaatverzamelingen",
"preset_settings": "Voorinstellingen",
"themes": "Thema's",
+ "no_items": "No items in this category",
"product": {
"overview": "Overzicht",
"information": "Informatie",
"last_updated": "Laatst geüpdatet",
"version": "Versie",
"author": "Maker",
- "notice": {
- "title": "Aankondiging",
- "description": "Herlaad de pagina om de wijzigingen toe te passen."
- },
"buttons": {
"addtomue": "Toevoegen aan Mue",
"remove": "Verwijderen"
},
- "quoteWarning": {
+ "quote_warning": {
"title": "Waarschuwing",
"description": "Deze citaatverzameling maakt verbinding met externe servers die kunnen worden gebruikt om je te internetverkeer te tracken!"
}
@@ -134,13 +334,49 @@
"added": "Toegevoegd",
"empty": {
"title": "Het is hier erg leeg",
- "description": "Ga naar de marktplaats om een paar extensies toe te voegen.",
- "button": "Open de marktplaats"
+ "description": "Ga naar de marktplaats om een paar extensies toe te voegen."
},
"sideload": "Sideloaden"
}
+ },
+ "update": {
+ "title": "Update",
+ "offline": {
+ "title": "Offline",
+ "description": "Cannot get update logs while in offline mode"
+ },
+ "error": {
+ "title": "Error",
+ "description": "Could not connect to the server"
+ },
+ "read_blog": "Read on the blog here",
+ "contact_support": "Contact us here"
+ },
+ "welcome": {
+ "title": "Welcome to",
+ "information": "Information",
+ "thankyoumessage1": "Thank you for installing Mue Tab,",
+ "thankyoumessage2": "we hope you enjoy your time with our extension.",
+ "support": "Support",
+ "close": "Close"
+ },
+ "feedback": {
+ "title": "Give us feedback",
+ "question_one": "How would you rate your experience of this Mue build?",
+ "question_two": "What bugs did you encounter in your use of Mue?",
+ "question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
+ "submit": "Submit"
}
},
+ "toasts": {
+ "quote": "Quote copied",
+ "installed": "Successfully installed",
+ "uninstalled": "Successfully removed",
+ "error": "Something went wrong"
+ },
"update": {
"title": "Wijzigingen",
"offline": {
diff --git a/src/translations/no.json b/src/translations/no.json
index 8023aa6b..c460a5f7 100644
--- a/src/translations/no.json
+++ b/src/translations/no.json
@@ -1,4 +1,5 @@
{
+ "tabname": "New Tab",
"widgets": {
"greeting": {
"morning": "God Morgen",
@@ -6,85 +7,296 @@
"evening": "God Kveld",
"christmas": "God Jul",
"newyear": "Godt Nyttår",
- "halloween": "Ha en god Halloween"
+ "halloween": "Ha en god Halloween",
+ "birthday": "Happy Birthday"
},
"background": {
- "credit": "Bilde av"
+ "credit": "Bilde av",
+ "unsplash": "on Unsplash",
+ "information": "Information",
+ "download": "Download"
},
- "search": "Søk"
+ "search": "Søk",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
+ "navbar": {
+ "tooltips": {
+ "update": "Update Patch Notes",
+ "refresh": "Refresh Page",
+ "feedback": "Feedback"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ }
+ }
},
"modals": {
"main": {
+ "title": "Options",
+ "loading": "Loading...",
+ "file_upload_error": "File is over 2MB",
"navbar": {
"settings": "Instillinger",
"addons": "Mine add-ons",
"marketplace": "Markedsplass"
},
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
"settings": {
+ "enabled": "Enabled",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
"sections": {
"time": {
"title": "Tid",
+ "format": "Format",
+ "type": "Type",
"digital": {
+ "title": "Digital",
"seconds": "Sekunder",
"twentyfourhour": "24 Timer",
- "ampm": "AM/PM (12 Timer)",
+ "twelvehour": "12 hour",
"zero": "Ekstra Null"
},
"analogue": {
- "title": "Analog"
+ "title": "Analog",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks"
+ },
+ "percentage_complete": "Percentage complete",
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
+ }
+ },
+ "quote": {
+ "title": "Sitat",
+ "author_link": "Authour link",
+ "custom": "Custom quote",
+ "custom_author": "Custom authour",
+ "buttons": {
+ "title": "Buttons",
+ "copy": "Kopier knapp",
+ "tweet": "Tweet",
+ "favourite": "Favourite"
}
},
"greeting": {
"title": "Hallo",
"events": "Planer",
"default": "Standard Hallo Melding",
- "name": "Navn for Hallo"
- },
- "quote": {
- "title": "Sitat",
- "buttons": {
- "copy": "Kopier knapp"
- }
+ "name": "Navn for Hallo",
+ "birthday": "Birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date"
},
"background": {
"title": "Bakgrunn",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
+ "buttons": {
+ "title": "Buttons",
+ "view": "Maximise",
+ "favourite": "Favourite",
+ "download": "Download"
+ },
"effects": {
- "blur": "Juster Blur"
+ "title": "Effects",
+ "blur": "Juster Blur",
+ "brightness": "Adjust brightness"
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient"
},
"source": {
+ "title": "Source",
"api": "Bakgrunn API",
"custom_url": "Personlig bakgrunn URL",
"custom_background": "Personlig bakgrunn",
"custom_colour": "Personlig Bakgrunn Farge",
- "add_colour": "Legg til farge"
+ "upload": "Upload",
+ "add_colour": "Legg til farge",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
}
},
"search": {
"title": "Søkebar",
- "search_engine": "Søkemotor"
+ "search_engine": "Søkemotor",
+ "custom": "Custom search URL",
+ "voice_search": "Voice search"
},
- "language": {
- "title": "Språk"
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ }
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
},
"appearance": {
- "dark": "Mørkt tema"
+ "title": "Appearance",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "animations": "Animations",
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button"
+ },
+ "font": {
+ "title": "Font",
+ "custom": "Custom font",
+ "google": "Import from Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Accessibility",
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
},
"advanced": {
+ "title": "Advanced",
+ "offline_mode": "Offline mode",
+ "data": "Data",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
+ "customisation": "Customisation",
+ "custom_css": "Custom CSS",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support.",
"offline": "Frakoblet Modus"
},
"experimental": {
"title": "Eksperimental",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer",
"animations": "Animasjoner"
+ },
+ "language": {
+ "title": "Språk",
+ "quote": "Quote language"
+ },
+ "changelog": "Change Log",
+ "about": {
+ "title": "About",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Checking for update",
+ "update_available": "Update available",
+ "no_update": "No update available",
+ "offline_mode": "Cannot check for update in offline mode"
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images",
+ "welcome_img": "Welcome image",
+ "pin_icon": "Pin icon"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "photographers": "Photographers"
}
},
"buttons": {
- "apply": "Bruk",
"reset": "Nullstill",
"import": "Importer",
"export": "Eksporter"
},
"toasts": {
"reset": "Tilbakestillte vellykket",
+ "imported": "Successfully imported",
"error": "Noe gikk galt"
}
},
@@ -93,19 +305,20 @@
"quote_packs": "Sitat pakker",
"preset_settings": "Preset instillinger",
"themes": "Themes",
+ "no_items": "No items in this category",
"product": {
"overview": "Oversikt",
"information": "Informasjon",
"last_updated": "Sist oppdatert",
"version": "Versjon",
"author": "Forfatter",
- "notice": {
- "title": "Vær oppmerksom",
- "description": "For at endringen skal ta skje, må siden relastes."
- },
"buttons": {
"addtomue": "Legg Til Mue",
"remove": "Fjern"
+ },
+ "quote_warning": {
+ "title": "Warning",
+ "description": "This quote pack requests to external servers that may track you!"
}
},
"offline": {
@@ -118,9 +331,9 @@
"added": "Lagt til",
"empty": {
"title": "Det er tomt her.",
- "description": "Gå til markedsplassen å legg til noe.",
- "button": "Ta meg der"
- }
+ "description": "Gå til markedsplassen å legg til noe."
+ },
+ "sideload": "Sideload"
}
},
"update": {
@@ -131,9 +344,36 @@
},
"error": {
"title": "Error",
+ "description": "Could not connect to the server",
"content": "Kan ikke koble til serveren."
},
+ "read_blog": "Read on the blog here",
+ "contact_support": "Contact us here",
"loading": "Laster..."
+ },
+ "welcome": {
+ "title": "Welcome to",
+ "information": "Information",
+ "thankyoumessage1": "Thank you for installing Mue Tab,",
+ "thankyoumessage2": "we hope you enjoy your time with our extension.",
+ "support": "Support",
+ "close": "Close"
+ },
+ "feedback": {
+ "title": "Give us feedback",
+ "question_one": "How would you rate your experience of this Mue build?",
+ "question_two": "What bugs did you encounter in your use of Mue?",
+ "question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
+ "submit": "Submit"
}
+ },
+ "toasts": {
+ "quote": "Quote copied",
+ "installed": "Successfully installed",
+ "uninstalled": "Successfully removed",
+ "error": "Something went wrong"
}
}
diff --git a/src/translations/ru.json b/src/translations/ru.json
index b7dc8b5d..5913b9e0 100644
--- a/src/translations/ru.json
+++ b/src/translations/ru.json
@@ -1,4 +1,5 @@
{
+ "tabname": "New Tab",
"widgets": {
"greeting": {
"morning": "Доброе утро",
@@ -6,62 +7,160 @@
"evening": "Добрый вечер",
"christmas": "С Рождеством",
"newyear": "С Новым Годом",
- "halloween": "Счастливого Хэллоуина"
+ "halloween": "Счастливого Хэллоуина",
+ "birthday": "Happy Birthday"
},
"background": {
- "credit": "Фото"
+ "credit": "Фото",
+ "unsplash": "on Unsplash",
+ "information": "Information",
+ "download": "Download"
},
- "search": "Поиск"
+ "search": "Поиск",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
+ "navbar": {
+ "tooltips": {
+ "update": "Update Patch Notes",
+ "refresh": "Refresh Page",
+ "feedback": "Feedback"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ }
+ }
},
"modals": {
"main": {
+ "title": "Options",
+ "loading": "Loading...",
+ "file_upload_error": "File is over 2MB",
+ "navbar": {
+ "settings": "Settings",
+ "addons": "My Add-ons",
+ "marketplace": "Marketplace"
+ },
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
"settings": {
+ "enabled": "Enabled",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
"sections": {
"time": {
"title": "Время",
+ "format": "Format",
+ "type": "Type",
"digital": {
+ "title": "Digital",
"seconds": "Секунды",
"twentyfourhour": "24 Часа",
- "ampm": "AM/PM (12 часов)",
+ "twelvehour": "12 hour",
"zero": "Дополнительный ноль"
},
"analogue": {
- "title": "Аналоговое"
+ "title": "Аналоговое",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks"
+ },
+ "percentage_complete": "Percentage complete",
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
+ }
+ },
+ "quote": {
+ "title": "Цитата",
+ "author_link": "Authour link",
+ "custom": "Custom quote",
+ "custom_author": "Custom authour",
+ "buttons": {
+ "title": "Buttons",
+ "copy": "Кнопка копирования",
+ "tweet": "Кнопка твита",
+ "favourite": "Кнопка для оценки"
}
},
"greeting": {
"title": "Приветствие",
"events": "События",
"default": "Сообщение с приветствием по-умолчанию",
- "name": "Имя для приветствия"
- },
- "quote": {
- "title": "Цитата",
- "buttons": {
- "copy": "Кнопка копирования",
- "tweet": "Кнопка твита",
- "favourite": "Кнопка для оценки"
- }
+ "name": "Имя для приветствия",
+ "birthday": "Birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date"
},
"background": {
"title": "Фон",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
"buttons": {
- "favourite": "Любимые",
+ "title": "Buttons",
"view": "Просмотр",
+ "favourite": "Любимые",
+ "download": "Download",
"refresh": "Обновить",
"disabled": "Выключен"
},
"effects": {
+ "title": "Effects",
"blur": "Размытие",
"brightness": "Яркость"
},
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient"
+ },
"source": {
+ "title": "Source",
"api": "API для фона",
"custom_url": "Ссылка для пользовательского фона",
"custom_background": "Пользовательский фон",
"custom_colour": "Пользовательский цвет фона",
"upload": "Загрузить",
- "add_colour": "Добавить цвет"
+ "add_colour": "Добавить цвет",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
}
},
"search": {
@@ -70,30 +169,136 @@
"custom": "Пользовательский поисковый движок",
"voice_search": "Поиск голосом"
},
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ }
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
+ },
"appearance": {
- "dark_theme": "Тёмная тема"
+ "title": "Appearance",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "animations": "Animations",
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button"
+ },
+ "font": {
+ "title": "Font",
+ "custom": "Custom font",
+ "google": "Import from Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Accessibility",
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
},
"advanced": {
- "offline_mode": "Офлайн режим"
+ "title": "Advanced",
+ "offline_mode": "Офлайн режим",
+ "data": "Data",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
+ "customisation": "Customisation",
+ "custom_css": "Custom CSS",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
},
"experimental": {
"title": "Экспериментальные настройки",
- "animations": "Анимации",
- "nightmode": "Автоматический ночной режим"
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer",
+ "animations": "Анимации"
},
"language": {
- "title": "Язык"
+ "title": "Язык",
+ "quote": "Quote language"
+ },
+ "changelog": "Change Log",
+ "about": {
+ "title": "About",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Checking for update",
+ "update_available": "Update available",
+ "no_update": "No update available",
+ "offline_mode": "Cannot check for update in offline mode"
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images",
+ "welcome_img": "Welcome image",
+ "pin_icon": "Pin icon"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "photographers": "Photographers"
}
},
- "toasts": {
- "reset": "Сброшено!",
- "error": "Что-то пошло не так",
- "imported": "Успешно импортировано"
- },
"buttons": {
"reset": "Сбросить",
"import": "Импорт",
"export": "Экспорт"
+ },
+ "toasts": {
+ "reset": "Сброшено!",
+ "imported": "Успешно импортировано",
+ "error": "Что-то пошло не так"
}
},
"marketplace": {
@@ -101,21 +306,18 @@
"quote_packs": "Наборы цитат",
"preset_settings": "Пресеты настроек",
"themes": "Темы",
+ "no_items": "No items in this category",
"product": {
"overview": "Обзор",
"information": "Информация",
"last_updated": "Последнее обновление",
"version": "Версия",
"author": "Автор",
- "notice": {
- "title": "Предупреждение",
- "description": "Для того, чтобы изменения вступили в силу необходимо обновить страницу."
- },
"buttons": {
"addtomue": "Добавить в Mue",
"remove": "Удалить"
},
- "quoteWarning": {
+ "quote_warning": {
"title": "Предупреждение",
"description": "Этот пакет цитат обращается к внешнему серверу и может отслеживать вас!"
}
@@ -130,8 +332,7 @@
"added": "Добавлен",
"empty": {
"title": "Здесь пусто",
- "description": "Зайдите в магазин, чтобы найти что-то интересное.",
- "button": "Перейти"
+ "description": "Зайдите в магазин, чтобы найти что-то интересное."
},
"sideload": "Загрузить"
}
@@ -144,11 +345,38 @@
},
"error": {
"title": "Ошибка",
+ "description": "Could not connect to the server",
"content": "Не удалось подключиться к серверу"
},
+ "read_blog": "Read on the blog here",
+ "contact_support": "Contact us here",
"loading": "Загрузка...",
"readblog": "Прочитайте об изменениях в блоге",
"contactsupport": "Связаться с нами"
+ },
+ "welcome": {
+ "title": "Welcome to",
+ "information": "Information",
+ "thankyoumessage1": "Thank you for installing Mue Tab,",
+ "thankyoumessage2": "we hope you enjoy your time with our extension.",
+ "support": "Support",
+ "close": "Close"
+ },
+ "feedback": {
+ "title": "Give us feedback",
+ "question_one": "How would you rate your experience of this Mue build?",
+ "question_two": "What bugs did you encounter in your use of Mue?",
+ "question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
+ "submit": "Submit"
}
+ },
+ "toasts": {
+ "quote": "Quote copied",
+ "installed": "Successfully installed",
+ "uninstalled": "Successfully removed",
+ "error": "Something went wrong"
}
}
diff --git a/src/translations/zh_CN.json b/src/translations/zh_CN.json
index d5d80b9a..865081a3 100644
--- a/src/translations/zh_CN.json
+++ b/src/translations/zh_CN.json
@@ -1,4 +1,5 @@
{
+ "tabname": "New Tab",
"widgets": {
"greeting": {
"morning": "早上好",
@@ -6,71 +7,159 @@
"evening": "晚上好",
"christmas": "圣诞节快乐",
"newyear": "新年快乐",
- "halloween": "万圣节快乐"
+ "halloween": "万圣节快乐",
+ "birthday": "Happy Birthday"
},
"background": {
- "credit": "图像作者:"
+ "credit": "图像作者:",
+ "unsplash": "on Unsplash",
+ "information": "Information",
+ "download": "Download"
},
- "search": "搜索"
+ "search": "搜索",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
+ },
+ "date": {
+ "week": "Week"
+ },
+ "weather": {
+ "not_found": "Not Found"
+ },
+ "navbar": {
+ "tooltips": {
+ "update": "Update Patch Notes",
+ "refresh": "Refresh Page",
+ "feedback": "Feedback"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ }
+ }
},
"modals": {
"main": {
"title": "选项",
+ "loading": "载入中...",
+ "file_upload_error": "File is over 2MB",
"navbar": {
"settings": "设置",
"addons": "我的插件",
"marketplace": "插件市场"
},
- "loading": "载入中...",
+ "error_boundary": {
+ "title": "Error",
+ "message": "Failed to load this component of Mue",
+ "refresh": "Refresh"
+ },
"settings": {
"enabled": "已启用",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
"sections": {
"time": {
"title": "时间",
+ "format": "Format",
+ "type": "Type",
"digital": {
+ "title": "Digital",
"seconds": "显示秒",
"twentyfourhour": "使用 24 小时制",
- "ampm": "12 小时制下显示 AM/PM",
+ "twelvehour": "12 hour",
"zero": "加零补足二位数字"
},
"analogue": {
- "title": "使用模拟时钟"
+ "title": "使用模拟时钟",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks"
+ },
+ "percentage_complete": "Percentage complete",
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long"
+ },
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
+ }
+ },
+ "quote": {
+ "title": "名言",
+ "author_link": "Authour link",
+ "custom": "Custom quote",
+ "custom_author": "Custom authour",
+ "buttons": {
+ "title": "Buttons",
+ "copy": "复制按钮",
+ "tweet": "发推按钮",
+ "favourite": "收藏按钮"
}
},
"greeting": {
"title": "问候",
"events": "节日问候",
"default": "常规问候",
- "name": "您在问候中的名字"
- },
- "quote": {
- "title": "名言",
- "buttons": {
- "copy": "复制按钮",
- "tweet": "发推按钮",
- "favourite": "收藏按钮"
- }
+ "name": "您在问候中的名字",
+ "birthday": "Birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date"
},
"background": {
"title": "背景",
- "api": "背景来源",
+ "ddg_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "category": "Category",
"buttons": {
- "favourite": "收藏",
+ "title": "Buttons",
"view": "查看",
- "disabled": "已禁用",
- "download": "下载"
+ "favourite": "收藏",
+ "download": "下载",
+ "disabled": "已禁用"
},
"effects": {
+ "title": "Effects",
"blur": "调整模糊",
"brightness": "调整亮度"
},
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient"
+ },
"source": {
- "custom_url": "自定义背景链接",
+ "title": "Source",
"api": "背景背景来源",
+ "custom_url": "自定义背景链接",
"custom_background": "自定义背景",
"custom_colour": "自定义背景颜色",
"upload": "上传",
- "add_colour": "添加颜色"
+ "add_colour": "添加颜色",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video"
}
},
"search": {
@@ -79,29 +168,136 @@
"custom": "自定义搜索链接",
"voice_search": "语音搜索"
},
- "advanced": {
- "offline_mode": "离线模式"
- },
- "dark": "暗黑主题",
- "experimental": {
- "title": "实验性功能",
- "webp": "启用 WebP",
- "animations": "动画",
- "nightmode": "夜间自动启用暗黑主题"
- },
- "appearance": {
- "navbar": {
- "refresh": "刷新按钮"
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show Location",
+ "humidity": "Humidity",
+ "wind_speed": "Wind speed",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
}
},
+ "quicklinks": {
+ "title": "Quick Links",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip"
+ },
+ "appearance": {
+ "title": "Appearance",
+ "theme": {
+ "title": "Theme",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "animations": "Animations",
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "刷新按钮"
+ },
+ "font": {
+ "title": "Font",
+ "custom": "Custom font",
+ "google": "Import from Google Fonts",
+ "weight": {
+ "title": "Font weight",
+ "thin": "Thin",
+ "extra_light": "Extra Light",
+ "light": "Light",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Accessibility",
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
+ },
+ "advanced": {
+ "title": "Advanced",
+ "offline_mode": "离线模式",
+ "data": "Data",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Do you want to reset Mue?",
+ "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
+ "cancel": "Cancel"
+ },
+ "customisation": "Customisation",
+ "custom_css": "Custom CSS",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
+ },
+ "experimental": {
+ "title": "实验性功能",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer",
+ "webp": "启用 WebP",
+ "animations": "动画"
+ },
"language": {
- "title": "语言"
+ "title": "语言",
+ "quote": "Quote language"
+ },
+ "changelog": "Change Log",
+ "about": {
+ "title": "About",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Checking for update",
+ "update_available": "Update available",
+ "no_update": "No update available",
+ "offline_mode": "Cannot check for update in offline mode"
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images",
+ "welcome_img": "Welcome image",
+ "pin_icon": "Pin icon"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "photographers": "Photographers"
}
},
"buttons": {
"reset": "重置",
"import": "导入",
"export": "导出"
+ },
+ "toasts": {
+ "reset": "Reset successfully",
+ "imported": "Successfully imported"
}
},
"marketplace": {
@@ -109,21 +305,18 @@
"quote_packs": "名言包",
"preset_settings": "预设设定",
"themes": "主题",
+ "no_items": "No items in this category",
"product": {
"overview": "总览",
"information": "信息",
"last_updated": "更新日期",
"version": "版本",
"author": "作者",
- "notice": {
- "title": "温馨提醒",
- "description": "更改会在刷新页面后生效。"
- },
"buttons": {
"addtomue": "添加至 Mue",
"remove": "卸载"
},
- "quoteWarning": {
+ "quote_warning": {
"title": "注意",
"description": "本名言包会连接到可能会跟踪您的外部服务器!"
}
@@ -138,8 +331,7 @@
"added": "已添加",
"empty": {
"title": "这里空空如也",
- "description": "请访问插件市场来添加插件。",
- "button": "带我去那儿"
+ "description": "请访问插件市场来添加插件。"
},
"sideload": "上传插件"
}
@@ -154,17 +346,38 @@
"title": "错误",
"description": "无法连接到服务器"
},
- "loading": "载入中...",
- "readblog": "点此在我们的博客中阅读",
- "contactsupport": "点此联系我们"
+ "read_blog": "点此在我们的博客中阅读",
+ "contact_support": "点此联系我们",
+ "loading": "载入中..."
+ },
+ "welcome": {
+ "title": "Welcome to",
+ "information": "Information",
+ "thankyoumessage1": "Thank you for installing Mue Tab,",
+ "thankyoumessage2": "we hope you enjoy your time with our extension.",
+ "support": "Support",
+ "close": "Close"
+ },
+ "feedback": {
+ "title": "Give us feedback",
+ "question_one": "How would you rate your experience of this Mue build?",
+ "question_two": "What bugs did you encounter in your use of Mue?",
+ "question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
+ "question_four": "What do you want adding to the next Mue build?",
+ "not_filled": "Question box must be filled",
+ "success": "Sent successfully!",
+ "submit": "Submit"
},
"toasts": {
- "quote": "名言已复制",
"reset": "重置成功",
- "installed": "安装成功",
"removed": "卸载成功",
- "error": "发生了错误",
"imported": "导入成功"
}
+ },
+ "toasts": {
+ "quote": "名言已复制",
+ "installed": "安装成功",
+ "uninstalled": "Successfully removed",
+ "error": "发生了错误"
}
}