diff --git a/src/components/modals/main/marketplace/sections/Create.jsx b/src/components/modals/main/marketplace/sections/Create.jsx
index 90f8ecf0..09289b03 100644
--- a/src/components/modals/main/marketplace/sections/Create.jsx
+++ b/src/components/modals/main/marketplace/sections/Create.jsx
@@ -1,523 +1,36 @@
/* eslint-disable no-unused-vars */
-// todo: refactor all of this
import variables from 'modules/variables';
import { PureComponent } from 'react';
-import {
- MdSettings as Settings,
- MdOutlineInsertPhoto as Photos,
- MdOutlineFormatQuote as Quotes,
- MdUpload as ImportIcon,
- MdDownload as ExportIcon,
- MdArrowBack,
- MdDownload,
- MdOpenInNew,
-} from 'react-icons/md';
-import { TextField } from '@mui/material';
-import { toast } from 'react-toastify';
-import SettingsItem from '../../../main/settings/SettingsItem';
-
-import { saveFile } from 'modules/helpers/settings/modals';
-import InfoTooltip from '../../../../helpers/tooltip/infoTooltip';
-import Tooltip from '../../../../helpers/tooltip/Tooltip';
-
-import FileUpload from '../../settings/FileUpload';
-
-import photos from '../examples/photos.json';
-import quotes from '../examples/quotes.json';
-import settings from '../examples/settings.json';
-
-import '../../../welcome/welcome.scss';
+import { MdOutlineExtensionOff } from 'react-icons/md';
export default class Create extends PureComponent {
constructor() {
super();
- this.state = {
- currentTab: 1,
- addonMetadata: {
- name: '',
- description: '',
- type: '',
- version: '',
- author: '',
- icon_url: '',
- screenshot_url: '',
- },
- addonData: '',
- settingsClasses: {
- current: 'toggle lightTheme',
- json: 'toggle lightTheme',
- },
- };
- }
-
- changeTab(tab, type) {
- if (type) {
- return this.setState({
- currentTab: tab,
- addonMetadata: {
- type,
- },
- });
- } else {
- this.setState({
- currentTab: tab,
- });
- }
- }
-
- importSettings(input) {
- const data = input || localStorage;
- let settings = {};
- const ignore = [
- 'statsData',
- 'firstRun',
- 'showWelcome',
- 'language',
- 'installed',
- 'stats',
- 'backup_settings',
- 'showReminder',
- 'experimental',
- 'debugtimeout',
- 'quoteLanguage',
- 'birthday',
- 'location',
- 'greetingName',
- 'backgroundStartTime',
- ];
- Object.keys(data).forEach((key) => {
- if (ignore.includes(key)) {
- return;
- }
- settings[key] = localStorage.getItem(key);
- });
-
- this.setState({
- addonData: settings,
- settingsClasses: {
- current: input ? 'toggle lightTheme active' : 'toggle lightTheme',
- json: input ? 'toggle lightTheme active' : 'toggle lightTheme',
- },
- });
-
- toast(variables.getMessage('toasts.imported'));
- }
-
- importQuotes() {
- this.setState({
- addonData: JSON.parse(localStorage.getItem('customQuote')) || [],
- });
-
- toast(variables.getMessage('toasts.imported'));
- }
-
- importPhotos() {
- let data = [];
- try {
- const current = JSON.parse(localStorage.getItem('customBackground')) || [];
- data = current.map((item) => {
- return {
- photographer: '???',
- location: '???',
- url: {
- default: item,
- },
- };
- });
- toast(variables.getMessage('toasts.imported'));
- } catch (e) {
- console.log(e);
- toast(variables.getMessage('toasts.error'));
- }
-
- this.setState({
- addonData: data,
- });
- }
-
- downloadAddon() {
- saveFile(
- {
- name: this.state.addonMetadata.name,
- description: this.state.addonMetadata.description,
- type: this.state.addonMetadata.type,
- version: this.state.addonMetadata.version,
- author: this.state.addonMetadata.author,
- icon_url: this.state.addonMetadata.icon_url,
- screenshot_url: this.state.addonMetadata.screenshot_url,
- [this.state.addonMetadata.type]: this.state.addonData,
- },
- this.state.addonMetadata.name + '.json',
- );
+ this.state = {};
}
render() {
- let tabContent;
-
- const chooseType = (
- <>
- {/*
-
- Help Centre
-
- Home of all docs and guides on creating addons for Mue's marketplace
-
-
-
-
*/}
-
-
-
this.changeTab(2, 'photos')}>
-
-
{variables.getMessage('modals.main.marketplace.photo_packs')}
-
-
this.changeTab(2, 'quotes')}>
-
- {variables.getMessage('modals.main.marketplace.quote_packs')}
-
-
this.changeTab(2, 'settings')}>
-
- {variables.getMessage('modals.main.marketplace.preset_settings')}
-
-
-
- >
- );
-
- const nextDescriptionDisabled = !(
- this.state.addonMetadata.name !== undefined &&
- this.state.addonMetadata.description !== undefined &&
- this.state.addonMetadata.version !== undefined &&
- this.state.addonMetadata.author !== undefined &&
- this.state.addonMetadata.icon_url !== undefined &&
- this.state.addonMetadata.screenshot_url !== undefined
- );
-
- const setMetadata = (data, type) => {
- this.setState({
- addonMetadata: {
- name: type === 'name' ? data : this.state.addonMetadata.name,
- description: type === 'description' ? data : this.state.addonMetadata.description,
- version: type === 'version' ? data : this.state.addonMetadata.version,
- author: type === 'author' ? data : this.state.addonMetadata.author,
- icon_url: type === 'icon_url' ? data : this.state.addonMetadata.icon_url,
- screenshot_url:
- type === 'screenshot_url' ? data : this.state.addonMetadata.screenshot_url,
- type: this.state.addonMetadata.type,
- },
- });
- };
-
- const writeDescription = (
- <>
-
-
-
- {variables.getMessage(
- 'modals.main.addons.create.types.' + this.state.addonMetadata.type,
- ) || 'marketplace'}
-
-
- {variables.getMessage(
- 'modals.main.addons.create.descriptions.' + this.state.addonMetadata.type,
- ) || 'marketplace'}
-
-
-
-
-
- setMetadata(e.target.value, 'name')}
- />
-
-
-
-
- {variables.getMessage('modals.main.marketplace.product.version')}
-
-
-
-
-
-
- setMetadata(e.target.value, 'version')}
- />
-
-
-
- setMetadata(e.target.value, 'author')}
- />
-
-
- setMetadata(e.target.value, 'icon_url')}
- />
-
-
- setMetadata(e.target.value, 'screenshot_url')}
- />
-
-
- setMetadata(e.target.value, 'description')}
- />
-
-
-
-
-
- >
- );
-
- // settings
- const nextSettingsDisabled = this.state.addonData === '';
- const importSettings = (
- <>
-
-
-
-
this.importSettings()}
- >
-
- {variables.getMessage('modals.main.addons.create.settings.current')}
-
-
document.getElementById('file-input').click()}
- >
-
- {variables.getMessage('modals.main.addons.create.settings.json')}
-
-
-
-
-
- this.importSettings(JSON.parse(e))}
- />
-
-
-
-
-
- >
- );
-
- // quotes
- const nextQuotesDisabled = !(
- this.state.addonMetadata.type === 'quotes' && this.state.addonData.quotes !== ''
- );
- const addQuotes = (
- <>
-
-
-
-
-
this.importQuotes()}
- className="toggle lightTheme"
- style={{ width: '60%', margin: '10px 0 10px 0' }}
- >
-
- {variables.getMessage('modals.main.addons.create.settings.current')}
-
-
-
-
-
-
-
-
- >
- );
-
- // photos
- const nextPhotosDisabled = !(this.state.addonData.photos !== '');
- const addPhotos = (
- <>
-
-
-
-
this.importPhotos()}
- className="toggle lightTheme"
- style={{ width: '60%', margin: '10px 0 10px 0' }}
- >
-
- {variables.getMessage('modals.main.addons.create.settings.current')}
-
-
-
-
-
-
-
-
-
- >
- );
-
- const downloadAddon = (
- <>
-
-
-
- {variables.getMessage('modals.main.addons.create.publishing.title')}
-
-
- {variables.getMessage('modals.main.addons.create.publishing.subtitle')}
-
-
-
-
-
-
-
-
this.downloadAddon()}
- className="toggle lightTheme"
- style={{ width: '60%', margin: '10px 0 10px 0' }}
- >
-
- {variables.getMessage('modals.main.addons.create.finish.download')}
-
-
-
-
-
-
-
- >
- );
-
- switch (this.state.currentTab) {
- case 2:
- tabContent = writeDescription;
- break;
- case 'settings':
- tabContent = importSettings;
- break;
- case 'quotes':
- tabContent = addQuotes;
- break;
- case 'photos':
- tabContent = addPhotos;
- break;
- case 3:
- tabContent = downloadAddon;
- break;
- default:
- tabContent = chooseType;
- }
-
return (
<>
- {this.state.currentTab !== 1 && (
-
-
- this.changeTab(1)} />
-
-
- )}
- {variables.getMessage('modals.main.addons.create.other_title')}
+ {variables.getMessage('modals.main.addons.create.title')}
- {tabContent}
+
+
+
+
+ {variables.getMessage('modals.main.addons.create.moved_title')}
+
+
+ {variables.getMessage('modals.main.addons.create.moved_description')}
+
+
+
+
+
+
>
);
}
diff --git a/src/translations/de_DE.json b/src/translations/de_DE.json
index dc87c9e8..f43f10de 100644
--- a/src/translations/de_DE.json
+++ b/src/translations/de_DE.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Hinzugefügt",
- "check_updates": "Check for updates",
- "create": {
- "create_type": "Create {type} Pack",
- "descriptions": {
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Example",
- "finish": {
- "download": "Add-on herunterladen",
- "title": "Fertig"
- },
- "import_custom": "Import from custom settings.",
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "metadata": {
- "description": "Beschreibung",
- "example": "Download example",
- "icon_url": "Icon URL",
- "name": "Name",
- "screenshot_url": "Screenshot URL"
- },
- "other_title": "Add-on erstellen",
- "photos": {
- "title": "Fotos hinzufügen"
- },
- "publishing": {
- "button": "Learn more",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
- },
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Zitate hinzufügen"
- },
- "settings": {
- "current": "Aktuelle Einstellungen importieren",
- "json": "Upload JSON"
- },
- "title": "Erstellen",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "Gehen Sie zum Marktplatz, um einige hinzuzufügen",
- "title": "Hier ist es leer"
- },
- "no_updates": "No updates available",
- "sideload": {
- "description": "Install a Mue addon not on the marketplace from your computer",
- "errors": {
- "invalid_photos": "Invalid photos object",
- "invalid_quotes": "Invalid quotes object",
- "no_author": "No author provided",
- "no_name": "No name provided",
- "no_type": "No type provided"
- },
- "failed": "Failed to sideload addon",
- "title": "Hochladen"
- },
- "sort": {
- "a_z": "Alphabetisch (A-Z)",
- "newest": "Installiert (Neueste)",
- "oldest": "Installiert (Älteste)",
- "title": "Sortieren",
- "z_a": "Alphabetisch (Z-A)"
- },
- "updates_available": "Updates available {amount}"
- },
- "error_boundary": {
- "message": "Diese Komponente von Mue konnte nicht geladen werden",
- "refresh": "Neuladen",
- "report_error": "Send Error Report",
- "sent": "Sent!",
- "title": "Fehler"
- },
- "file_upload_error": "Datei ist größer als 2MB",
- "loading": "Läd...",
- "marketplace": {
- "add_all": "Add All To Mue",
- "all": "All",
- "by": "by {author}",
- "cant_find": "Can't find what you're looking for?",
- "collection": "Collection",
- "collections": "Collections",
- "explore_collection": "Explore Collection",
- "knowledgebase_one": "Visit the",
- "knowledgebase_three": "to create your own.",
- "knowledgebase_two": "knowledgebase",
- "learn_more": "Learn More",
- "no_items": "Keine Einträge in dieser Kategorie",
- "offline": {
- "description": "Bitte stellen Sie eine Verbindung zum Internet her",
- "title": "Sieht aus, als ob Sie offline sind"
- },
- "photo_packs": "Fotopakete",
- "preset_settings": "Voreingestellte Einstellungen",
- "product": {
- "author": "Autor",
- "buttons": {
- "addtomue": "Zu Mue hinzufügen",
- "back": "Back",
- "remove": "Entfernen",
- "report": "Report",
- "update_addon": "Update Add-on"
- },
- "description": "Description",
- "explore": "Explore",
- "information": "Information",
- "last_updated": "Letzte Aktualisierung",
- "no_images": "No. Images",
- "no_quotes": "No. Quotes",
- "overview": "Übersicht",
- "part_of": "Part of",
- "setting": "Setting",
- "show_all": "Show All",
- "show_less": "Show Less",
- "show_more": "Show More",
- "showing": "Showing",
- "value": "Value",
- "version": "Version"
- },
- "quote_packs": "Zitat-Pakete"
- },
- "navbar": {
- "addons": "Meine Addons",
- "marketplace": "Marktplatz",
- "settings": "Einstellungen"
- },
- "settings": {
- "additional_settings": "Additional Settings",
- "buttons": {
- "export": "Exportieren",
- "import": "Importieren",
- "reset": "Zurücksetzen"
- },
- "enabled": "Aktivieren",
- "open_knowledgebase": "Open Knowledgebase",
- "reminder": {
- "message": "Damit alle Änderungen vorgenommen werden können, muss die Seite aktualisiert werden.",
- "title": "HINWEIS"
- },
- "sections": {
- "about": {
- "contact_us": "Kontaktieren Sie uns",
- "contributors": "Mitwirkende",
- "copyright": "Urheberrechte",
- "form_button": "Form",
- "no_supporters": "There are currently no Mue supporters",
- "photographers": "Photographers",
- "resources_used": {
- "bg_images": "Offline Hintergrundbilder",
- "title": "Verwendete Ressourcen"
- },
- "support_donate": "Donate",
- "support_mue": "Mue unterstützen",
- "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
- "supporters": "Unterstützer",
- "title": "Über",
- "version": {
- "checking_update": "Auf Update prüfen",
- "error": {
- "description": "Es ist ein Fehler aufgetreten",
- "title": "Update-Informationen konnten nicht abgerufen werden"
- },
- "no_update": "Kein Update verfügbar",
- "offline_mode": "Im Offline Modus kann nicht nach Updates gesucht werden",
- "title": "Version",
- "update_available": "Update verfügbar"
- }
- },
- "advanced": {
- "custom_css": "Benutzerdefiniertes CSS",
- "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
- "custom_js": "Benutzerdefiniertes JS",
- "customisation": "Anpassung",
- "data": "Daten",
- "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
- "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.",
- "offline_mode": "Offline Modus",
- "offline_subtitle": "When enabled, all requests to online services will be disabled.",
- "reset_modal": {
- "cancel": "Abbrechen",
- "information": "Dadurch werden alle Daten gelöscht. Wenn Sie Ihre Daten und Einstellungen behalten möchten, exportieren Sie sie bitte zuerst.",
- "question": "Möchten Sie Mue zurücksetzen?",
- "title": "ACHTUNG"
- },
- "tab_name": "Tab Name",
- "tab_name_subtitle": "Change the name of the tab that appears in your browser",
- "timezone": {
- "automatic": "Automatisch",
- "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
- "title": "Zeitzone"
- },
- "title": "Erweitert"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animations",
- "description": "Accessibility settings for Mue",
- "milliseconds": "ms",
- "text_shadow": {
- "new": "New",
- "none": "None",
- "old": "Old",
- "title": "Widget text shadow"
- },
- "title": "Barrierefreiheit",
- "toast_duration": "Toast Dauer",
- "widget_zoom": "Widget größe"
- },
- "font": {
- "custom": "Eigene Schriftart",
- "description": "Change the font used in Mue",
- "google": "Importieren von Google Fonts",
- "style": {
- "italic": "Italic",
- "normal": "Normal",
- "oblique": "Oblique",
- "title": "Schriftart"
- },
- "title": "Schriftart",
- "weight": {
- "bold": "Bold",
- "extra_bold": "Extra-Bold",
- "extra_light": "Extra hell",
- "light": "Hell",
- "medium": "Mittel",
- "normal": "Normal",
- "semi_bold": "Semi-Bold",
- "thin": "Dünn",
- "title": "Schriftgröße"
- }
- },
- "navbar": {
- "additional": "Modify navbar style and which buttons you want to display",
- "hover": "Only display on hover",
- "notes": "Notizen",
- "refresh": "Aktualisieren",
- "refresh_options": {
- "none": "Keine",
- "page": "Seite"
- },
- "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
- "title": "Navigationsleiste"
- },
- "style": {
- "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
- "legacy": "Legacy",
- "new": "New",
- "title": "Widget Style"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Dunkel",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "Hell",
- "title": "Design"
- },
- "title": "Erscheinungsbild"
- },
- "background": {
- "api": "API Settings",
- "api_subtitle": "Options for getting an image from an external service (API)",
- "buttons": {
- "download": "Download",
- "favourite": "Favorit",
- "title": "Schaltflächen",
- "view": "Vollbild"
- },
- "categories": "Categories",
- "ddg_image_proxy": "DuckDuckGo Bilder Proxy verwenden",
- "display": "Display",
- "display_subtitle": "Change how background and photo information are loaded",
- "effects": {
- "blur": "Unschärfe anpassen",
- "brightness": "Helligkeit anpassen",
- "filters": {
- "amount": "Filtermenge",
- "contrast": "Kontrast",
- "grayscale": "Graustufen",
- "invert": "Invertieren",
- "saturate": "Sättigen",
- "sepia": "Sepia",
- "title": "Background filter"
- },
- "subtitle": "Add effects to the background images",
- "title": "Effekte"
- },
- "interval": {
- "day": "Tag",
- "half_hour": "Halbe Stunde",
- "hour": "Stunde",
- "minute": "Minute",
- "month": "Monat",
- "subtitle": "Change how often the background is updated",
- "title": "Ändern Sie alle"
- },
- "photo_information": "Foto-Informationen anzeigen",
- "show_map": "Show location map on photo information if available",
- "source": {
- "add_background": "Add background",
- "add_colour": "Farbe hinzufügen",
- "add_url": "Add URL",
- "api": "Hintergrund API",
- "custom_background": "Benutzerdefinierter Hintergrund",
- "custom_colour": "Benutzerdefinierter Hintergrundfarbe",
- "custom_description": "Select images from your local computer",
- "custom_title": "Custom Images",
- "disabled": "Deaktiviert",
- "drop_to_upload": "Drop to upload",
- "formats": "Available formats: {list}",
- "loop_video": "Video schleife",
- "mute_video": "Video stumm",
- "quality": {
- "datasaver": "Datensparer",
- "high": "Hohe Qualität",
- "normal": "Normale Qualität",
- "original": "Original",
- "title": "Qualität"
- },
- "remove": "Remove Image",
- "select": "Or Select",
- "subtitle": "Select where to get background images from",
- "title": "Quelle",
- "upload": "Hochladen"
- },
- "title": "Hintergrund",
- "transition": "Weicher übergang",
- "type": {
- "api": "API",
- "custom_colour": "Benutzerdefinierte Farbe/Farbverlauf",
- "custom_image": "Benutzerdefiniertes Bild",
- "random_colour": "Random colour",
- "random_gradient": "Random gradient",
- "title": "Type"
- }
- },
- "changelog": {
- "by": "By {author}",
- "title": "Änderungshinweise"
- },
- "date": {
- "datenth": "Mit nullen füllen",
- "day_of_week": "Wochentag",
- "long_format": "Long format",
- "short_date": "Kurzes Datum",
- "short_format": "Kurzes Format",
- "short_separator": {
- "dash": "Bindestrich",
- "dots": "Punkte",
- "gaps": "Lücke",
- "slashes": "Schrägstriche",
- "title": "Kurzer Trenner"
- },
- "title": "Datum",
- "type": {
- "long": "Lang",
- "short": "Kurz",
- "subtitle": "Whether to display the date in long form or short form"
- },
- "type_settings": "Display settings and format for the selected date type",
- "week_number": "Kalenderwoche"
- },
- "experimental": {
- "developer": "Entwickler",
- "title": "Experimentell",
- "warning": "Diese Einstellungen sind nicht vollständig getestet/implementiert und funktionieren möglicherweise nicht korrekt!"
- },
- "greeting": {
- "additional": "Settings for the greeting display",
- "birthday": "Geburtstag",
- "birthday_age": "Alter",
- "birthday_date": "Datum",
- "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
- "default": "Standard-Begrüßungsnachricht",
- "events": "Veranstaltungen",
- "name": "Name zur Begrüßung",
- "title": "Begrüßung"
- },
- "header": {
- "enabled": "Choose whether or not to show this widget",
- "more_info": "More info",
- "report_issue": "Report Issue",
- "size": "Slider to control how large the widget is"
- },
- "language": {
- "quote": "Zitat-Sprache",
- "title": "Sprache"
- },
- "message": {
- "add": "Add message",
- "add_some": "Go ahead and add some.",
- "content": "Message Content",
- "messages": "Messages",
- "no_messages": "No messages",
- "text": "Text",
- "title": "Message"
- },
- "order": {
- "title": "Widget Sortieren"
- },
- "quicklinks": {
- "add_link": "Add Link",
- "additional": "Additional settings for quick links display and functions",
- "edit": "Edit",
- "no_quicklinks": "No quicklinks",
- "open_new": "In neuen Tab öffnen",
- "options": {
- "icon": "Icon",
- "metro": "Metro",
- "text_only": "Text Only"
- },
- "style": "Style",
- "styling": "Quick Links Styling",
- "styling_description": "Customise Quick Links appearance",
- "text_only": "Show text only",
- "title": "Quick Links",
- "tooltip": "Tooltip"
- },
- "quote": {
- "add": "Add quote",
- "additional": "Other settings to customise the style of the quote widget",
- "author": "Author",
- "author_img": "Show author image",
- "author_link": "Autor Link",
- "buttons": {
- "copy": "Kopieren",
- "favourite": "Favorit",
- "subtitle": "Choose which buttons to show on the quote",
- "title": "Schaltflächen",
- "tweet": "Twitter"
- },
- "custom": "Benutzerdefiniertes Zitat",
- "custom_author": "Benutzerdefinierter Autor",
- "custom_buttons": "Buttons",
- "custom_subtitle": "Set your own custom quotes",
- "no_quotes": "No quotes",
- "source_subtitle": "Choose where to get quotes from",
- "title": "Zitat"
- },
- "search": {
- "additional": "Additional options for search widget display and functionality",
- "autocomplete": "Autovervollständigen",
- "autocomplete_provider": "Anbieter von Autovervollständigung",
- "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
- "custom": "Abfrage-URL",
- "dropdown": "Auswahlmenü Suche",
- "focus": "Focus on tab open",
- "search_engine": "Suchmaschine",
- "search_engine_subtitle": "Choose search engine to use in the search bar",
- "title": "Suche",
- "voice_search": "Sprachsuche"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "Installierte Add-ons",
- "backgrounds_downloaded": "Hintergründe heruntergeladen",
- "backgrounds_favourited": "Bevorzugte Hintergründe",
- "quicklinks_added": "Quicklinks hinzugefügt",
- "quotes_favourited": "Bevorzugte Zitate",
- "settings_changed": "Einstellungen geändert",
- "tabs_opened": "Geöffnete Tabs"
- },
- "title": "Statistiken",
- "unlocked": "{count} Unlocked",
- "usage": "Nutzungsstatistiken"
- },
- "time": {
- "analogue": {
- "hour_hand": "Stundenzeiger",
- "hour_marks": "Stunden-Markierungen",
- "minute_hand": "Minutenzeiger",
- "minute_marks": "Minuten-Markierungen",
- "round_clock": "Rounded background",
- "second_hand": "Sekundenzeiger",
- "subtitle": "Change how the analogue clock looks",
- "title": "Analog"
- },
- "digital": {
- "seconds": "Sekunden",
- "subtitle": "Change how the digital clock looks",
- "title": "Digital",
- "twelvehour": "12 Stunden",
- "twentyfourhour": "24 Stunden",
- "zero": "Mit nullen füllen"
- },
- "format": "Format",
- "percentage_complete": "Denn Tages fotschritt in Prozent anzeigen",
- "title": "Uhrzeit",
- "type": "Typ",
- "type_subtitle": "Choose whether to display the time in digital or analogue format, or a percentage completion of the day",
- "vertical_clock": {
- "change_hour_colour": "Change hour text colour",
- "change_minute_colour": "Change minute text colour",
- "title": "Vertical Clock"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Custom Settings",
- "extra_info": {
- "atmospheric_pressure": "Atmosphärischer Druck",
- "cloudiness": "Bewölkungsgrad",
- "humidity": "Luftfeuchtigkeit",
- "max_temp": "Höchsttemperatur",
- "min_temp": "Mindesttemperatur",
- "show_description": "Beschreibung anzeigen",
- "show_location": "Standort anzeigen",
- "title": "Zusätzliche informationen",
- "visibility": "Sichtbarkeit",
- "weather_description": "Weather description",
- "wind_direction": "Windrichtung",
- "wind_speed": "Windgeschwindigkeit"
- },
- "location": "Standort",
- "options": {
- "basic": "Basic",
- "custom": "Custom",
- "expanded": "Expanded",
- "standard": "Standard"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Temperatur Format"
- },
- "title": "Wetter",
- "widget_type": "Widget Type"
- }
- }
- },
- "title": "Einstellungen"
- },
- "share": {
- "copy_link": "Copy link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "Konnte keine Verbindung zum Server herstellen",
- "title": "Fehler"
- },
- "offline": {
- "description": "Update-Protokolle können im Offline-Modus nicht abgerufen werden",
- "title": "Offline"
- },
- "title": "Update"
- },
- "welcome": {
- "buttons": {
- "close": "Schließen",
- "next": "Weiter",
- "preview": "Preview",
- "previous": "Zurück"
- },
- "preview": {
- "continue": "Continue setup",
- "description": "You are currently in preview mode. Settings will be reset on closing this tab."
- },
- "sections": {
- "final": {
- "changes": "Änderungen",
- "changes_description": "Um die Einstellungen später zu ändern, klicken Sie auf das Einstellungssymbol in der oberen rechten Ecke Ihrer Registerkarte.",
- "description": "Ihr Mue Tab Erlebnis kann beginnen.",
- "imported": "Importiert {amount} Einstellung",
- "title": "Letzter Abschnitt"
- },
- "intro": {
- "description": "Vielen Dank für die Installation, wir wünschen Ihnen viel Spaß mit unserer Erweiterung.",
- "notices": {
- "discord_description": "Talk with the Mue community and developers",
- "discord_join": "Join",
- "discord_title": "Join our Discord",
- "github_description": "Report bugs, add features or donate",
- "github_open": "Open",
- "github_title": "Contribute on GitHub"
- },
- "title": "Willkommen bei Mue Tab"
- },
- "language": {
- "description": "Mue kann in den unten aufgeführten Sprachen angezeigt werden. Sie können auch neue Übersetzungen auf GitHub hinzufügen!",
- "title": "Wählen Sie Ihre Sprache"
- },
- "privacy": {
- "ddg_proxy_description": "Sie können Bildanfragen über DuckDuckGo laufen lassen, wenn Sie dies wünschen. Standardmäßig laufen API-Anfragen über unsere Open-Source-Server und Bildanfragen über den ursprünglichen Server. Wenn Sie dies für Quicklinks deaktivieren, werden die Symbole von Google statt von DuckDuckGo abgerufen. Der DuckDuckGo-Proxy ist für den Marketplace immer aktiviert.",
- "description": "Aktivieren Sie die Einstellungen, um Ihre Privatsphäre mit Mue weiter zu schützen.",
- "links": {
- "privacy_policy": "Datenschutzerklärung",
- "source_code": "Quellcode",
- "title": "Links"
- },
- "offline_mode_description": "Wenn Sie den Offline-Modus aktivieren, werden alle Anfragen an jeden Dienst deaktiviert. Dies hat zur Folge, dass Online-Hintergründe, Online-Zitate, Marktplatz, Wetter, Quicklinks, Änderungshinweise und einige Informationen über die Registerkarte deaktiviert werden.",
- "title": "Datenschutz Optionen"
- },
- "settings": {
- "description": "Installieren Sie Mue auf einem neuen Gerät? So können Sie Ihre alten Einstellungen importieren!",
- "tip": "Sie können Ihre alten Einstellungen exportieren, indem Sie in Ihrem alten Mue-Einstellungen zur Registerkarte Erweitert navigieren. Klicken Sie dann auf die Schaltfläche Exportieren, um die JSON-Datei herunterzuladen. Sie können diese Datei hier hochladen, um Ihre Einstellungen und Präferenzen von Ihrer vorherigen Mue-Installation zu übernehmen.",
- "title": "Einstellungen importieren"
- },
- "style": {
- "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
- "legacy": "Legacy",
- "modern": "Modern",
- "title": "Choose a style"
- },
- "theme": {
- "description": "Mue ist sowohl mit einem hellen als auch mit einem dunklen Erscheinungsbild erhältlich, das je nach dem Erscheinungsbild Ihres Systems automatisch eingestellt werden kann.",
- "tip": "Bei der Einstellung Automatisch wird das Design auf Ihrem System verwendet. Diese Einstellung wirkt sich auf die Modalitäten und einige der Widgets aus, die auf dem Bildschirm angezeigt werden, z. B. Wetter und Notizen.",
- "title": "Wählen Sie Ihr Erscheinungsbild"
- }
- },
- "tip": "Quick Tip"
- }
- },
"tabname": "Neuer Tab",
- "toasts": {
- "error": "Etwas ist schief gelaufen",
- "imported": "Erfolgreich importiert",
- "installed": "Erfolgreich installiert",
- "link_copied": "Link copied",
- "no_storage": "Not enough storage",
- "notes": "Kopierte notizen",
- "quote": "Kopierte zitate",
- "reset": "Reset successfully",
- "uninstalled": "Erfolgreich entfernt",
- "updated": "Successfully updated"
- },
"widgets": {
+ "greeting": {
+ "morning": "Guten Morgen",
+ "afternoon": "Guten Tag",
+ "evening": "Guten Abend",
+ "christmas": "Fröhliche Weihnachten",
+ "newyear": "Frohes neues Jahr",
+ "halloween": "Happy Halloween",
+ "birthday": "Glückwunsch zum Geburtstag"
+ },
"background": {
- "camera": "Camera",
- "category": "Category",
- "confirm": "Confirm",
"credit": "Foto von",
+ "unsplash": "unsplash.com",
+ "information": "Informationen",
"download": "Download",
"downloads": "Downloads",
- "exclude": "Don't show again",
- "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
- "information": "Informationen",
+ "views": "Ansichten",
"likes": "Likes",
"location": "Location",
+ "camera": "Camera",
"resolution": "Resolution",
"source": "Source",
- "unsplash": "unsplash.com",
- "views": "Ansichten"
+ "category": "Category",
+ "exclude": "Don't show again",
+ "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
+ "confirm": "Confirm"
+ },
+ "search": "Suche",
+ "quicklinks": {
+ "new": "Neuer Link",
+ "name": "Name",
+ "url": "URL",
+ "icon": "Icon (optional)",
+ "add": "Hinzufügen",
+ "name_error": "Muss einen Namen angeben",
+ "url_error": "Muss eine URL angeben"
},
"date": {
"week": "Kalenderwoche"
},
- "greeting": {
- "afternoon": "Guten Tag",
- "birthday": "Glückwunsch zum Geburtstag",
- "christmas": "Fröhliche Weihnachten",
- "evening": "Guten Abend",
- "halloween": "Happy Halloween",
- "morning": "Guten Morgen",
- "newyear": "Frohes neues Jahr"
- },
- "navbar": {
- "notes": {
- "placeholder": "Hier eingeben",
- "title": "Notizen"
- },
- "todo": {
- "add": "Add",
- "no_todos": "No Todos",
- "pin": "Pin",
- "title": "Todo"
- },
- "tooltips": {
- "refresh": "Neuladen"
- }
- },
- "quicklinks": {
- "add": "Hinzufügen",
- "icon": "Icon (optional)",
- "name": "Name",
- "name_error": "Muss einen Namen angeben",
- "new": "Neuer Link",
- "url": "URL",
- "url_error": "Muss eine URL angeben"
+ "weather": {
+ "not_found": "Nicht gefunden",
+ "meters": "{amount} Meter",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
},
"quote": {
- "copy": "Copy",
- "favourite": "Favourite",
"link_tooltip": "Open on Wikipedia",
"share": "Share",
+ "copy": "Copy",
+ "favourite": "Favourite",
"unfavourite": "Unfavourite"
},
- "search": "Suche",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount} Meter",
- "not_found": "Nicht gefunden"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Neuladen"
+ },
+ "notes": {
+ "title": "Notizen",
+ "placeholder": "Hier eingeben"
+ },
+ "todo": {
+ "title": "Todo",
+ "pin": "Pin",
+ "add": "Add",
+ "no_todos": "No Todos"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Einstellungen",
+ "loading": "Läd...",
+ "file_upload_error": "Datei ist größer als 2MB",
+ "navbar": {
+ "settings": "Einstellungen",
+ "addons": "Meine Addons",
+ "marketplace": "Marktplatz"
+ },
+ "error_boundary": {
+ "title": "Fehler",
+ "message": "Diese Komponente von Mue konnte nicht geladen werden",
+ "report_error": "Send Error Report",
+ "sent": "Sent!",
+ "refresh": "Neuladen"
+ },
+ "settings": {
+ "enabled": "Aktivieren",
+ "open_knowledgebase": "Open Knowledgebase",
+ "additional_settings": "Additional Settings",
+ "reminder": {
+ "title": "HINWEIS",
+ "message": "Damit alle Änderungen vorgenommen werden können, muss die Seite aktualisiert werden."
+ },
+ "sections": {
+ "header": {
+ "more_info": "More info",
+ "report_issue": "Report Issue",
+ "enabled": "Choose whether or not to show this widget",
+ "size": "Slider to control how large the widget is"
+ },
+ "time": {
+ "title": "Uhrzeit",
+ "format": "Format",
+ "type": "Typ",
+ "type_subtitle": "Choose whether to display the time in digital or analogue format, or a percentage completion of the day",
+ "digital": {
+ "title": "Digital",
+ "subtitle": "Change how the digital clock looks",
+ "seconds": "Sekunden",
+ "twentyfourhour": "24 Stunden",
+ "twelvehour": "12 Stunden",
+ "zero": "Mit nullen füllen"
+ },
+ "analogue": {
+ "title": "Analog",
+ "subtitle": "Change how the analogue clock looks",
+ "second_hand": "Sekundenzeiger",
+ "minute_hand": "Minutenzeiger",
+ "hour_hand": "Stundenzeiger",
+ "hour_marks": "Stunden-Markierungen",
+ "minute_marks": "Minuten-Markierungen",
+ "round_clock": "Rounded background"
+ },
+ "percentage_complete": "Denn Tages fotschritt in Prozent anzeigen",
+ "vertical_clock": {
+ "title": "Vertical Clock",
+ "change_hour_colour": "Change hour text colour",
+ "change_minute_colour": "Change minute text colour"
+ }
+ },
+ "date": {
+ "title": "Datum",
+ "week_number": "Kalenderwoche",
+ "day_of_week": "Wochentag",
+ "datenth": "Mit nullen füllen",
+ "type": {
+ "short": "Kurz",
+ "long": "Lang",
+ "subtitle": "Whether to display the date in long form or short form"
+ },
+ "type_settings": "Display settings and format for the selected date type",
+ "short_date": "Kurzes Datum",
+ "short_format": "Kurzes Format",
+ "long_format": "Long format",
+ "short_separator": {
+ "title": "Kurzer Trenner",
+ "dots": "Punkte",
+ "dash": "Bindestrich",
+ "gaps": "Lücke",
+ "slashes": "Schrägstriche"
+ }
+ },
+ "quote": {
+ "title": "Zitat",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "Autor Link",
+ "custom": "Benutzerdefiniertes Zitat",
+ "custom_subtitle": "Set your own custom quotes",
+ "no_quotes": "No quotes",
+ "author": "Author",
+ "custom_buttons": "Buttons",
+ "custom_author": "Benutzerdefinierter Autor",
+ "author_img": "Show author image",
+ "add": "Add quote",
+ "source_subtitle": "Choose where to get quotes from",
+ "buttons": {
+ "title": "Schaltflächen",
+ "subtitle": "Choose which buttons to show on the quote",
+ "copy": "Kopieren",
+ "tweet": "Twitter",
+ "favourite": "Favorit"
+ }
+ },
+ "greeting": {
+ "title": "Begrüßung",
+ "events": "Veranstaltungen",
+ "default": "Standard-Begrüßungsnachricht",
+ "name": "Name zur Begrüßung",
+ "birthday": "Geburtstag",
+ "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
+ "birthday_age": "Alter",
+ "birthday_date": "Datum",
+ "additional": "Settings for the greeting display"
+ },
+ "background": {
+ "title": "Hintergrund",
+ "ddg_image_proxy": "DuckDuckGo Bilder Proxy verwenden",
+ "transition": "Weicher übergang",
+ "photo_information": "Foto-Informationen anzeigen",
+ "show_map": "Show location map on photo information if available",
+ "categories": "Categories",
+ "buttons": {
+ "title": "Schaltflächen",
+ "view": "Vollbild",
+ "favourite": "Favorit",
+ "download": "Download"
+ },
+ "effects": {
+ "title": "Effekte",
+ "subtitle": "Add effects to the background images",
+ "blur": "Unschärfe anpassen",
+ "brightness": "Helligkeit anpassen",
+ "filters": {
+ "title": "Background filter",
+ "amount": "Filtermenge",
+ "grayscale": "Graustufen",
+ "sepia": "Sepia",
+ "invert": "Invertieren",
+ "saturate": "Sättigen",
+ "contrast": "Kontrast"
+ }
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Benutzerdefiniertes Bild",
+ "custom_colour": "Benutzerdefinierte Farbe/Farbverlauf",
+ "random_colour": "Random colour",
+ "random_gradient": "Random gradient"
+ },
+ "source": {
+ "title": "Quelle",
+ "subtitle": "Select where to get background images from",
+ "api": "Hintergrund API",
+ "custom_background": "Benutzerdefinierter Hintergrund",
+ "custom_colour": "Benutzerdefinierter Hintergrundfarbe",
+ "upload": "Hochladen",
+ "add_colour": "Farbe hinzufügen",
+ "add_background": "Add background",
+ "drop_to_upload": "Drop to upload",
+ "formats": "Available formats: {list}",
+ "select": "Or Select",
+ "add_url": "Add URL",
+ "disabled": "Deaktiviert",
+ "loop_video": "Video schleife",
+ "mute_video": "Video stumm",
+ "quality": {
+ "title": "Qualität",
+ "original": "Original",
+ "high": "Hohe Qualität",
+ "normal": "Normale Qualität",
+ "datasaver": "Datensparer"
+ },
+ "custom_title": "Custom Images",
+ "custom_description": "Select images from your local computer",
+ "remove": "Remove Image"
+ },
+ "display": "Display",
+ "display_subtitle": "Change how background and photo information are loaded",
+ "api": "API Settings",
+ "api_subtitle": "Options for getting an image from an external service (API)",
+ "interval": {
+ "title": "Ändern Sie alle",
+ "subtitle": "Change how often the background is updated",
+ "minute": "Minute",
+ "half_hour": "Halbe Stunde",
+ "hour": "Stunde",
+ "day": "Tag",
+ "month": "Monat"
+ }
+ },
+ "search": {
+ "title": "Suche",
+ "additional": "Additional options for search widget display and functionality",
+ "search_engine": "Suchmaschine",
+ "search_engine_subtitle": "Choose search engine to use in the search bar",
+ "custom": "Abfrage-URL",
+ "autocomplete": "Autovervollständigen",
+ "autocomplete_provider": "Anbieter von Autovervollständigung",
+ "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
+ "voice_search": "Sprachsuche",
+ "dropdown": "Auswahlmenü Suche",
+ "focus": "Focus on tab open"
+ },
+ "weather": {
+ "title": "Wetter",
+ "location": "Standort",
+ "auto": "Auto",
+ "widget_type": "Widget Type",
+ "temp_format": {
+ "title": "Temperatur Format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Zusätzliche informationen",
+ "show_location": "Standort anzeigen",
+ "show_description": "Beschreibung anzeigen",
+ "weather_description": "Weather description",
+ "cloudiness": "Bewölkungsgrad",
+ "humidity": "Luftfeuchtigkeit",
+ "visibility": "Sichtbarkeit",
+ "wind_speed": "Windgeschwindigkeit",
+ "wind_direction": "Windrichtung",
+ "min_temp": "Mindesttemperatur",
+ "max_temp": "Höchsttemperatur",
+ "atmospheric_pressure": "Atmosphärischer Druck"
+ },
+ "options": {
+ "basic": "Basic",
+ "standard": "Standard",
+ "expanded": "Expanded",
+ "custom": "Custom"
+ },
+ "custom_settings": "Custom Settings"
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "additional": "Additional settings for quick links display and functions",
+ "open_new": "In neuen Tab öffnen",
+ "tooltip": "Tooltip",
+ "text_only": "Show text only",
+ "add_link": "Add Link",
+ "no_quicklinks": "No quicklinks",
+ "edit": "Edit",
+ "style": "Style",
+ "options": {
+ "icon": "Icon",
+ "text_only": "Text Only",
+ "metro": "Metro"
+ },
+ "styling": "Quick Links Styling",
+ "styling_description": "Customise Quick Links appearance"
+ },
+ "message": {
+ "title": "Message",
+ "add": "Add message",
+ "messages": "Messages",
+ "text": "Text",
+ "no_messages": "No messages",
+ "add_some": "Go ahead and add some.",
+ "content": "Message Content"
+ },
+ "appearance": {
+ "title": "Erscheinungsbild",
+ "style": {
+ "title": "Widget Style",
+ "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
+ "legacy": "Legacy",
+ "new": "New"
+ },
+ "theme": {
+ "title": "Design",
+ "description": "Change the theme of the Mue widgets and modals",
+ "auto": "Auto",
+ "light": "Hell",
+ "dark": "Dunkel"
+ },
+ "navbar": {
+ "title": "Navigationsleiste",
+ "notes": "Notizen",
+ "refresh": "Aktualisieren",
+ "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
+ "hover": "Only display on hover",
+ "additional": "Modify navbar style and which buttons you want to display",
+ "refresh_options": {
+ "none": "Keine",
+ "page": "Seite"
+ }
+ },
+ "font": {
+ "title": "Schriftart",
+ "description": "Change the font used in Mue",
+ "custom": "Eigene Schriftart",
+ "google": "Importieren von Google Fonts",
+ "weight": {
+ "title": "Schriftgröße",
+ "thin": "Dünn",
+ "extra_light": "Extra hell",
+ "light": "Hell",
+ "normal": "Normal",
+ "medium": "Mittel",
+ "semi_bold": "Semi-Bold",
+ "bold": "Bold",
+ "extra_bold": "Extra-Bold"
+ },
+ "style": {
+ "title": "Schriftart",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Oblique"
+ }
+ },
+ "accessibility": {
+ "title": "Barrierefreiheit",
+ "description": "Accessibility settings for Mue",
+ "animations": "Animations",
+ "text_shadow": {
+ "title": "Widget text shadow",
+ "new": "New",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "Widget größe",
+ "toast_duration": "Toast Dauer",
+ "milliseconds": "ms"
+ }
+ },
+ "order": {
+ "title": "Widget Sortieren"
+ },
+ "advanced": {
+ "title": "Erweitert",
+ "offline_mode": "Offline Modus",
+ "offline_subtitle": "When enabled, all requests to online services will be disabled.",
+ "data": "Daten",
+ "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
+ "reset_modal": {
+ "title": "ACHTUNG",
+ "question": "Möchten Sie Mue zurücksetzen?",
+ "information": "Dadurch werden alle Daten gelöscht. Wenn Sie Ihre Daten und Einstellungen behalten möchten, exportieren Sie sie bitte zuerst.",
+ "cancel": "Abbrechen"
+ },
+ "customisation": "Anpassung",
+ "custom_css": "Benutzerdefiniertes CSS",
+ "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
+ "custom_js": "Benutzerdefiniertes JS",
+ "tab_name": "Tab Name",
+ "tab_name_subtitle": "Change the name of the tab that appears in your browser",
+ "timezone": {
+ "title": "Zeitzone",
+ "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
+ "automatic": "Automatisch"
+ },
+ "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."
+ },
+ "stats": {
+ "title": "Statistiken",
+ "sections": {
+ "tabs_opened": "Geöffnete Tabs",
+ "backgrounds_favourited": "Bevorzugte Hintergründe",
+ "backgrounds_downloaded": "Hintergründe heruntergeladen",
+ "quotes_favourited": "Bevorzugte Zitate",
+ "quicklinks_added": "Quicklinks hinzugefügt",
+ "settings_changed": "Einstellungen geändert",
+ "addons_installed": "Installierte Add-ons"
+ },
+ "usage": "Nutzungsstatistiken",
+ "achievements": "Achievements",
+ "unlocked": "{count} Unlocked"
+ },
+ "experimental": {
+ "title": "Experimentell",
+ "warning": "Diese Einstellungen sind nicht vollständig getestet/implementiert und funktionieren möglicherweise nicht korrekt!",
+ "developer": "Entwickler"
+ },
+ "language": {
+ "title": "Sprache",
+ "quote": "Zitat-Sprache"
+ },
+ "changelog": {
+ "title": "Änderungshinweise",
+ "by": "By {author}"
+ },
+ "about": {
+ "title": "Über",
+ "copyright": "Urheberrechte",
+ "version": {
+ "title": "Version",
+ "checking_update": "Auf Update prüfen",
+ "update_available": "Update verfügbar",
+ "no_update": "Kein Update verfügbar",
+ "offline_mode": "Im Offline Modus kann nicht nach Updates gesucht werden",
+ "error": {
+ "title": "Update-Informationen konnten nicht abgerufen werden",
+ "description": "Es ist ein Fehler aufgetreten"
+ }
+ },
+ "contact_us": "Kontaktieren Sie uns",
+ "support_mue": "Mue unterstützen",
+ "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
+ "support_donate": "Donate",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "Verwendete Ressourcen",
+ "bg_images": "Offline Hintergrundbilder"
+ },
+ "contributors": "Mitwirkende",
+ "supporters": "Unterstützer",
+ "no_supporters": "There are currently no Mue supporters",
+ "photographers": "Photographers"
+ }
+ },
+ "buttons": {
+ "reset": "Zurücksetzen",
+ "import": "Importieren",
+ "export": "Exportieren"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "All",
+ "learn_more": "Learn More",
+ "photo_packs": "Fotopakete",
+ "quote_packs": "Zitat-Pakete",
+ "preset_settings": "Voreingestellte Einstellungen",
+ "no_items": "Keine Einträge in dieser Kategorie",
+ "collection": "Collection",
+ "explore_collection": "Explore Collection",
+ "add_all": "Add All To Mue",
+ "collections": "Collections",
+ "cant_find": "Can't find what you're looking for?",
+ "knowledgebase_one": "Visit the",
+ "knowledgebase_two": "knowledgebase",
+ "knowledgebase_three": "to create your own.",
+ "product": {
+ "overview": "Übersicht",
+ "information": "Information",
+ "last_updated": "Letzte Aktualisierung",
+ "description": "Description",
+ "show_more": "Show More",
+ "show_less": "Show Less",
+ "show_all": "Show All",
+ "showing": "Showing",
+ "no_images": "No. Images",
+ "no_quotes": "No. Quotes",
+ "version": "Version",
+ "author": "Autor",
+ "part_of": "Part of",
+ "explore": "Explore",
+ "buttons": {
+ "addtomue": "Zu Mue hinzufügen",
+ "remove": "Entfernen",
+ "update_addon": "Update Add-on",
+ "back": "Back",
+ "report": "Report"
+ },
+ "setting": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Sieht aus, als ob Sie offline sind",
+ "description": "Bitte stellen Sie eine Verbindung zum Internet her"
+ }
+ },
+ "addons": {
+ "added": "Hinzugefügt",
+ "check_updates": "Check for updates",
+ "no_updates": "No updates available",
+ "updates_available": "Updates available {amount}",
+ "empty": {
+ "title": "Hier ist es leer",
+ "description": "Gehen Sie zum Marktplatz, um einige hinzuzufügen"
+ },
+ "sideload": {
+ "title": "Hochladen",
+ "description": "Install a Mue addon not on the marketplace from your computer",
+ "failed": "Failed to sideload addon",
+ "errors": {
+ "no_name": "No name provided",
+ "no_author": "No author provided",
+ "no_type": "No type provided",
+ "invalid_photos": "Invalid photos object",
+ "invalid_quotes": "Invalid quotes object"
+ }
+ },
+ "sort": {
+ "title": "Sortieren",
+ "newest": "Installiert (Neueste)",
+ "oldest": "Installiert (Älteste)",
+ "a_z": "Alphabetisch (A-Z)",
+ "z_a": "Alphabetisch (Z-A)"
+ },
+ "create": {
+ "title": "Erstellen",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Update",
+ "offline": {
+ "title": "Offline",
+ "description": "Update-Protokolle können im Offline-Modus nicht abgerufen werden"
+ },
+ "error": {
+ "title": "Fehler",
+ "description": "Konnte keine Verbindung zum Server herstellen"
+ }
+ },
+ "welcome": {
+ "tip": "Quick Tip",
+ "sections": {
+ "intro": {
+ "title": "Willkommen bei Mue Tab",
+ "description": "Vielen Dank für die Installation, wir wünschen Ihnen viel Spaß mit unserer Erweiterung.",
+ "notices": {
+ "discord_title": "Join our Discord",
+ "discord_description": "Talk with the Mue community and developers",
+ "discord_join": "Join",
+ "github_title": "Contribute on GitHub",
+ "github_description": "Report bugs, add features or donate",
+ "github_open": "Open"
+ }
+ },
+ "language": {
+ "title": "Wählen Sie Ihre Sprache",
+ "description": "Mue kann in den unten aufgeführten Sprachen angezeigt werden. Sie können auch neue Übersetzungen auf GitHub hinzufügen!"
+ },
+ "theme": {
+ "title": "Wählen Sie Ihr Erscheinungsbild",
+ "description": "Mue ist sowohl mit einem hellen als auch mit einem dunklen Erscheinungsbild erhältlich, das je nach dem Erscheinungsbild Ihres Systems automatisch eingestellt werden kann.",
+ "tip": "Bei der Einstellung Automatisch wird das Design auf Ihrem System verwendet. Diese Einstellung wirkt sich auf die Modalitäten und einige der Widgets aus, die auf dem Bildschirm angezeigt werden, z. B. Wetter und Notizen."
+ },
+ "style": {
+ "title": "Choose a style",
+ "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
+ "legacy": "Legacy",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "Einstellungen importieren",
+ "description": "Installieren Sie Mue auf einem neuen Gerät? So können Sie Ihre alten Einstellungen importieren!",
+ "tip": "Sie können Ihre alten Einstellungen exportieren, indem Sie in Ihrem alten Mue-Einstellungen zur Registerkarte Erweitert navigieren. Klicken Sie dann auf die Schaltfläche Exportieren, um die JSON-Datei herunterzuladen. Sie können diese Datei hier hochladen, um Ihre Einstellungen und Präferenzen von Ihrer vorherigen Mue-Installation zu übernehmen."
+ },
+ "privacy": {
+ "title": "Datenschutz Optionen",
+ "description": "Aktivieren Sie die Einstellungen, um Ihre Privatsphäre mit Mue weiter zu schützen.",
+ "offline_mode_description": "Wenn Sie den Offline-Modus aktivieren, werden alle Anfragen an jeden Dienst deaktiviert. Dies hat zur Folge, dass Online-Hintergründe, Online-Zitate, Marktplatz, Wetter, Quicklinks, Änderungshinweise und einige Informationen über die Registerkarte deaktiviert werden.",
+ "ddg_proxy_description": "Sie können Bildanfragen über DuckDuckGo laufen lassen, wenn Sie dies wünschen. Standardmäßig laufen API-Anfragen über unsere Open-Source-Server und Bildanfragen über den ursprünglichen Server. Wenn Sie dies für Quicklinks deaktivieren, werden die Symbole von Google statt von DuckDuckGo abgerufen. Der DuckDuckGo-Proxy ist für den Marketplace immer aktiviert.",
+ "links": {
+ "title": "Links",
+ "privacy_policy": "Datenschutzerklärung",
+ "source_code": "Quellcode"
+ }
+ },
+ "final": {
+ "title": "Letzter Abschnitt",
+ "description": "Ihr Mue Tab Erlebnis kann beginnen.",
+ "changes": "Änderungen",
+ "changes_description": "Um die Einstellungen später zu ändern, klicken Sie auf das Einstellungssymbol in der oberen rechten Ecke Ihrer Registerkarte.",
+ "imported": "Importiert {amount} Einstellung"
+ }
+ },
+ "buttons": {
+ "next": "Weiter",
+ "preview": "Preview",
+ "previous": "Zurück",
+ "close": "Schließen"
+ },
+ "preview": {
+ "description": "You are currently in preview mode. Settings will be reset on closing this tab.",
+ "continue": "Continue setup"
+ }
+ },
+ "share": {
+ "copy_link": "Copy link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Kopierte zitate",
+ "notes": "Kopierte notizen",
+ "reset": "Reset successfully",
+ "installed": "Erfolgreich installiert",
+ "uninstalled": "Erfolgreich entfernt",
+ "updated": "Successfully updated",
+ "error": "Etwas ist schief gelaufen",
+ "imported": "Erfolgreich importiert",
+ "no_storage": "Not enough storage",
+ "link_copied": "Link copied"
}
}
diff --git a/src/translations/en_GB.json b/src/translations/en_GB.json
index b8aab137..dd36a2b0 100644
--- a/src/translations/en_GB.json
+++ b/src/translations/en_GB.json
@@ -567,57 +567,9 @@
},
"create": {
"title": "Create",
- "example": "Example",
- "other_title": "Create Add-on",
- "create_type": "Create {type} Pack",
- "types": {
- "settings": "Preset Settings",
- "photos": "Photo Pack",
- "quotes": "Quote Pack"
- },
- "descriptions": {
- "settings": "Collection of settings to customise Mue.",
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic."
- },
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "import_custom": "Import from custom settings.",
- "publishing": {
- "title": "Next step, Publishing...",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "button": "Learn more"
- },
- "metadata": {
- "name": "Name",
- "icon_url": "Icon URL",
- "screenshot_url": "Screenshot URL",
- "description": "Description",
- "example": "Download example"
- },
- "finish": {
- "title": "Finish",
- "download": "Download Add-on"
- },
- "settings": {
- "current": "Import current",
- "json": "Upload JSON"
- },
- "photos": {
- "title": "Add Photos"
- },
- "quotes": {
- "title": "Add Quotes",
- "api": {
- "title": "API",
- "url": "Quote URL",
- "name": "JSON quote name",
- "author": "JSON quote author (or override)"
- },
- "local": {
- "title": "Local"
- }
- }
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
}
}
},
diff --git a/src/translations/en_US.json b/src/translations/en_US.json
index bd9627a0..d3c2dfb2 100644
--- a/src/translations/en_US.json
+++ b/src/translations/en_US.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Added",
- "check_updates": "Check for updates",
- "create": {
- "create_type": "Create {type} Pack",
- "descriptions": {
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Example",
- "finish": {
- "download": "Download Add-on",
- "title": "Finish"
- },
- "import_custom": "Import from custom settings.",
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "metadata": {
- "description": "Description",
- "example": "Download example",
- "icon_url": "Icon URL",
- "name": "Name",
- "screenshot_url": "Screenshot URL"
- },
- "other_title": "Create Add-on",
- "photos": {
- "title": "Add Photos"
- },
- "publishing": {
- "button": "Learn more",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
- },
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Add Quotes"
- },
- "settings": {
- "current": "Import current setup",
- "json": "Upload JSON"
- },
- "title": "Create",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "No addons are installed",
- "title": "Empty"
- },
- "no_updates": "No updates available",
- "sideload": {
- "description": "Install a Mue addon not on the marketplace from your computer",
- "errors": {
- "invalid_photos": "Invalid photos object",
- "invalid_quotes": "Invalid quotes object",
- "no_author": "No author provided",
- "no_name": "No name provided",
- "no_type": "No type provided"
- },
- "failed": "Failed to sideload addon",
- "title": "Sideload"
- },
- "sort": {
- "a_z": "Alphabetical (A-Z)",
- "newest": "Installed (Newest)",
- "oldest": "Installed (Oldest)",
- "title": "Sort",
- "z_a": "Alphabetical (Z-A)"
- },
- "updates_available": "Updates available {amount}"
- },
- "error_boundary": {
- "message": "Failed to load this component of Mue",
- "refresh": "Refresh",
- "report_error": "Send Error Report",
- "sent": "Sent!",
- "title": "Error"
- },
- "file_upload_error": "File is over 2MB",
- "loading": "Loading...",
- "marketplace": {
- "add_all": "Add All To Mue",
- "all": "All",
- "by": "by {author}",
- "cant_find": "Can't find what you're looking for?",
- "collection": "Collection",
- "collections": "Collections",
- "explore_collection": "Explore Collection",
- "knowledgebase_one": "Visit the",
- "knowledgebase_three": "to create your own.",
- "knowledgebase_two": "knowledgebase",
- "learn_more": "Learn More",
- "no_items": "No items in this category",
- "offline": {
- "description": "Please connect to the internet",
- "title": "Looks like you're offline"
- },
- "photo_packs": "Photo Packs",
- "preset_settings": "Preset Settings",
- "product": {
- "author": "Author",
- "buttons": {
- "addtomue": "Add To Mue",
- "back": "Back",
- "remove": "Remove",
- "report": "Report",
- "update_addon": "Update Add-on"
- },
- "description": "Description",
- "explore": "Explore",
- "information": "Information",
- "last_updated": "Last Updated",
- "no_images": "No. Images",
- "no_quotes": "No. Quotes",
- "overview": "Overview",
- "part_of": "Part of",
- "setting": "Setting",
- "show_all": "Show All",
- "show_less": "Show Less",
- "show_more": "Show More",
- "showing": "Showing",
- "value": "Value",
- "version": "Version"
- },
- "quote_packs": "Quote Packs"
- },
- "navbar": {
- "addons": "My Add-ons",
- "marketplace": "Marketplace",
- "settings": "Settings"
- },
- "settings": {
- "additional_settings": "Additional Settings",
- "buttons": {
- "export": "Export",
- "import": "Import",
- "reset": "Reset"
- },
- "enabled": "Enabled",
- "open_knowledgebase": "Open Knowledgebase",
- "reminder": {
- "message": "In order for all of the changes to take place, the page must be refreshed.",
- "title": "NOTICE"
- },
- "sections": {
- "about": {
- "contact_us": "Contact Us",
- "contributors": "Contributors",
- "copyright": "Copyright",
- "form_button": "Form",
- "no_supporters": "There are currently no Mue supporters",
- "photographers": "Photographers",
- "resources_used": {
- "bg_images": "Offline background images",
- "title": "Resources used"
- },
- "support_donate": "Donate",
- "support_mue": "Support Mue",
- "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
- "supporters": "Supporters",
- "title": "About",
- "version": {
- "checking_update": "Checking for update",
- "error": {
- "description": "An error occured",
- "title": "Failed to get update information"
- },
- "no_update": "No update available",
- "offline_mode": "Cannot check for update in offline mode",
- "title": "Version",
- "update_available": "Update available"
- }
- },
- "advanced": {
- "custom_css": "Custom CSS",
- "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
- "custom_js": "Custom JS",
- "customisation": "Customization",
- "data": "Data",
- "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
- "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_mode": "Offline mode",
- "offline_subtitle": "When enabled, all requests to online services will be disabled.",
- "reset_modal": {
- "cancel": "Cancel",
- "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
- "question": "Do you want to reset Mue?",
- "title": "WARNING"
- },
- "tab_name": "Tab name",
- "tab_name_subtitle": "Change the name of the tab that appears in your browser",
- "timezone": {
- "automatic": "Automatic",
- "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
- "title": "Time Zone"
- },
- "title": "Advanced"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animations",
- "description": "Accessibility settings for Mue",
- "milliseconds": "milliseconds",
- "text_shadow": {
- "new": "New",
- "none": "None",
- "old": "Old",
- "title": "Widget text shadow"
- },
- "title": "Accessibility",
- "toast_duration": "Toast duration",
- "widget_zoom": "Widget zoom"
- },
- "font": {
- "custom": "Custom font",
- "description": "Change the font used in Mue",
- "google": "Import from Google Fonts",
- "style": {
- "italic": "Italic",
- "normal": "Normal",
- "oblique": "Oblique",
- "title": "Font style"
- },
- "title": "Font",
- "weight": {
- "bold": "Bold",
- "extra_bold": "Extra-Bold",
- "extra_light": "Extra Light",
- "light": "Light",
- "medium": "Medium",
- "normal": "Normal",
- "semi_bold": "Semi-Bold",
- "thin": "Thin",
- "title": "Font weight"
- }
- },
- "navbar": {
- "additional": "Modify navbar style and which buttons you want to display",
- "hover": "Only display on hover",
- "notes": "Notes",
- "refresh": "Refresh button",
- "refresh_options": {
- "none": "None",
- "page": "Page"
- },
- "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
- "title": "Navbar"
- },
- "style": {
- "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
- "legacy": "Legacy",
- "new": "New",
- "title": "Widget Style"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Dark",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "Light",
- "title": "Theme"
- },
- "title": "Appearance"
- },
- "background": {
- "api": "API Settings",
- "api_subtitle": "Options for getting an image from an external service (API)",
- "buttons": {
- "download": "Download",
- "favourite": "Favourite",
- "title": "Buttons",
- "view": "Maximize"
- },
- "categories": "Categories",
- "ddg_image_proxy": "Use DuckDuckGo image proxy",
- "display": "Display",
- "display_subtitle": "Change how background and photo information are loaded",
- "effects": {
- "blur": "Adjust blur",
- "brightness": "Adjust brightness",
- "filters": {
- "amount": "Filter amount",
- "contrast": "Contrast",
- "grayscale": "Grayscale",
- "invert": "Invert",
- "saturate": "Saturate",
- "sepia": "Sepia",
- "title": "Background filter"
- },
- "subtitle": "Add effects to the background images",
- "title": "Effects"
- },
- "interval": {
- "day": "Day",
- "half_hour": "Half hour",
- "hour": "Hour",
- "minute": "Minute",
- "month": "Month",
- "subtitle": "Change how often the background is updated",
- "title": "Change every"
- },
- "photo_information": "Show photo information",
- "show_map": "Show location map on photo information if available",
- "source": {
- "add_background": "Add background",
- "add_colour": "Add color",
- "add_url": "Add URL",
- "api": "Background API",
- "custom_background": "Custom background",
- "custom_colour": "Custom background color",
- "custom_description": "Select images from your local computer",
- "custom_title": "Custom Images",
- "disabled": "Disabled",
- "drop_to_upload": "Drop to upload",
- "formats": "Available formats: {list}",
- "loop_video": "Loop video",
- "mute_video": "Mute video",
- "quality": {
- "datasaver": "Data Saver",
- "high": "High Quality",
- "normal": "Normal Quality",
- "original": "Original",
- "title": "Quality"
- },
- "remove": "Remove Image",
- "select": "Or Select",
- "subtitle": "Select where to get background images from",
- "title": "Source",
- "upload": "Upload"
- },
- "title": "Background",
- "transition": "Fade-in transition",
- "type": {
- "api": "API",
- "custom_colour": "Custom color/gradient",
- "custom_image": "Custom image",
- "random_colour": "Random colour",
- "random_gradient": "Random gradient",
- "title": "Type"
- }
- },
- "changelog": {
- "by": "By {author}",
- "title": "Change Log"
- },
- "date": {
- "datenth": "Date nth",
- "day_of_week": "Day of week",
- "long_format": "Long format",
- "short_date": "Short date",
- "short_format": "Short format",
- "short_separator": {
- "dash": "Dash",
- "dots": "Dots",
- "gaps": "Gaps",
- "slashes": "Slashes",
- "title": "Short separator"
- },
- "title": "Date",
- "type": {
- "long": "Long",
- "short": "Short",
- "subtitle": "Whether to display the date in long form or short form"
- },
- "type_settings": "Display settings and format for the selected date type",
- "week_number": "Week number"
- },
- "experimental": {
- "developer": "Developer",
- "title": "Experimental",
- "warning": "These settings have not been fully tested/implemented and may not work correctly!"
- },
- "greeting": {
- "additional": "Settings for the greeting display",
- "birthday": "Birthday",
- "birthday_age": "Birthday age",
- "birthday_date": "Birthday date",
- "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
- "default": "Default greeting message",
- "events": "Events",
- "name": "Name for greeting",
- "title": "Greeting"
- },
- "header": {
- "enabled": "Choose whether or not to show this widget",
- "more_info": "More info",
- "report_issue": "Report Issue",
- "size": "Slider to control how large the widget is"
- },
- "language": {
- "quote": "Quote language",
- "title": "Language"
- },
- "message": {
- "add": "Add message",
- "add_some": "Go ahead and add some.",
- "content": "Message Content",
- "messages": "Messages",
- "no_messages": "No messages",
- "text": "Text",
- "title": "Message"
- },
- "order": {
- "title": "Widget Order"
- },
- "quicklinks": {
- "add_link": "Add Link",
- "additional": "Additional settings for quick links display and functions",
- "edit": "Edit",
- "no_quicklinks": "No quicklinks",
- "open_new": "Open in new tab",
- "options": {
- "icon": "Icon",
- "metro": "Metro",
- "text_only": "Text Only"
- },
- "style": "Style",
- "styling": "Quick Links Styling",
- "styling_description": "Customise Quick Links appearance",
- "text_only": "Show text only",
- "title": "Quick Links",
- "tooltip": "Tooltip"
- },
- "quote": {
- "add": "Add quote",
- "additional": "Other settings to customise the style of the quote widget",
- "author": "Author",
- "author_img": "Show author image",
- "author_link": "Author link",
- "buttons": {
- "copy": "Copy",
- "favourite": "Favorite",
- "subtitle": "Choose which buttons to show on the quote",
- "title": "Buttons",
- "tweet": "Tweet"
- },
- "custom": "Custom quote",
- "custom_author": "Custom author",
- "custom_buttons": "Buttons",
- "custom_subtitle": "Set your own custom quotes",
- "no_quotes": "No quotes",
- "source_subtitle": "Choose where to get quotes from",
- "title": "Quote"
- },
- "search": {
- "additional": "Additional options for search widget display and functionality",
- "autocomplete": "Autocomplete",
- "autocomplete_provider": "Autocomplete Provider",
- "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
- "custom": "Custom search URL",
- "dropdown": "Search dropdown",
- "focus": "Focus on tab open",
- "search_engine": "Search engine",
- "search_engine_subtitle": "Choose search engine to use in the search bar",
- "title": "Search",
- "voice_search": "Voice search"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "Add-ons installed",
- "backgrounds_downloaded": "Backgrounds downloaded",
- "backgrounds_favourited": "Backgrounds favourited",
- "quicklinks_added": "Quicklinks added",
- "quotes_favourited": "Quotes favourited",
- "settings_changed": "Settings changed",
- "tabs_opened": "Tabs opened"
- },
- "title": "Stats",
- "unlocked": "{count} Unlocked",
- "usage": "Usage Stats"
- },
- "time": {
- "analogue": {
- "hour_hand": "Hours hand",
- "hour_marks": "Hour marks",
- "minute_hand": "Minutes hand",
- "minute_marks": "Minute marks",
- "round_clock": "Rounded background",
- "second_hand": "Seconds hand",
- "subtitle": "Change how the analogue clock looks",
- "title": "Analog"
- },
- "digital": {
- "seconds": "Seconds",
- "subtitle": "Change how the digital clock looks",
- "title": "Digital",
- "twelvehour": "12 hour",
- "twentyfourhour": "24 Hour",
- "zero": "Zero-padded"
- },
- "format": "Format",
- "percentage_complete": "Percentage complete",
- "title": "Time",
- "type": "Type",
- "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
- "vertical_clock": {
- "change_hour_colour": "Change hour text color",
- "change_minute_colour": "Change minute text color",
- "title": "Vertical Clock"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Custom Settings",
- "extra_info": {
- "atmospheric_pressure": "Atmospheric pressure",
- "cloudiness": "Cloudiness",
- "humidity": "Humidity",
- "max_temp": "Maximum temperature",
- "min_temp": "Minimum temperature",
- "show_description": "Show description",
- "show_location": "Show location",
- "title": "Extra information",
- "visibility": "Visibility",
- "weather_description": "Weather description",
- "wind_direction": "Wind direction",
- "wind_speed": "Wind speed"
- },
- "location": "Location",
- "options": {
- "basic": "Basic",
- "custom": "Custom",
- "expanded": "Expanded",
- "standard": "Standard"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Temperature format"
- },
- "title": "Weather",
- "widget_type": "Widget Type"
- }
- }
- },
- "title": "Options"
- },
- "share": {
- "copy_link": "Copy link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "Could not connect to the server",
- "title": "Error"
- },
- "offline": {
- "description": "Cannot get update logs while in offline mode",
- "title": "Offline"
- },
- "title": "Update"
- },
- "welcome": {
- "buttons": {
- "close": "Close",
- "next": "Next",
- "preview": "Preview",
- "previous": "Previous"
- },
- "preview": {
- "continue": "Continue setup",
- "description": "You are currently in preview mode. Settings will be reset on closing this tab."
- },
- "sections": {
- "final": {
- "changes": "Changes",
- "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
- "description": "Your Mue Tab experience is about to begin.",
- "imported": "Imported {amount} settings",
- "title": "Final step"
- },
- "intro": {
- "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
- "notices": {
- "discord_description": "Talk with the Mue community and developers",
- "discord_join": "Join",
- "discord_title": "Join our Discord",
- "github_description": "Report bugs, add features or donate",
- "github_open": "Open",
- "github_title": "Contribute on GitHub"
- },
- "title": "Welcome to Mue Tab"
- },
- "language": {
- "description": "Mue can be displayed the languages listed below. You can also add new translations on our",
- "title": "Choose your language"
- },
- "privacy": {
- "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
- "description": "Enable settings to further protect your privacy with Mue.",
- "links": {
- "privacy_policy": "Privacy Policy",
- "source_code": "Source Code",
- "title": "Links"
- },
- "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
- "title": "Privacy Options"
- },
- "settings": {
- "description": "Installing Mue on a new device? Feel free to import your old settings!",
- "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation.",
- "title": "Import Settings"
- },
- "style": {
- "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
- "legacy": "Legacy",
- "modern": "Modern",
- "title": "Choose a style"
- },
- "theme": {
- "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
- "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes.",
- "title": "Select a theme"
- }
- },
- "tip": "Quick Tip"
- }
- },
"tabname": "New Tab",
- "toasts": {
- "error": "Something went wrong",
- "imported": "Successfully imported",
- "installed": "Successfully installed",
- "link_copied": "Link copied",
- "no_storage": "Not enough storage",
- "notes": "Notes copied",
- "quote": "Quote copied",
- "reset": "Reset successfully",
- "uninstalled": "Successfully removed",
- "updated": "Successfully updated"
- },
"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": {
- "camera": "Camera",
- "category": "Category",
- "confirm": "Confirm",
"credit": "Photo by",
+ "unsplash": "on Unsplash",
+ "information": "Information",
"download": "Download",
"downloads": "Downloads",
- "exclude": "Don't show again",
- "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
- "information": "Information",
+ "views": "Views",
"likes": "Likes",
"location": "Location",
+ "camera": "Camera",
"resolution": "Resolution",
"source": "Source",
- "unsplash": "on Unsplash",
- "views": "Views"
+ "category": "Category",
+ "exclude": "Don't show again",
+ "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
+ "confirm": "Confirm"
+ },
+ "search": "Search",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "icon": "Icon (optional)",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
},
"date": {
"week": "Week"
},
- "greeting": {
- "afternoon": "Good Afternoon",
- "birthday": "Happy Birthday",
- "christmas": "Merry Christmas",
- "evening": "Good Evening",
- "halloween": "Happy Halloween",
- "morning": "Good Morning",
- "newyear": "Happy New Year"
- },
- "navbar": {
- "notes": {
- "placeholder": "Type here",
- "title": "Notes"
- },
- "todo": {
- "add": "Add",
- "no_todos": "No Todos",
- "pin": "Pin",
- "title": "Todo"
- },
- "tooltips": {
- "refresh": "Refresh"
- }
- },
- "quicklinks": {
- "add": "Add",
- "icon": "Icon (optional)",
- "name": "Name",
- "name_error": "Must provide name",
- "new": "New Link",
- "url": "URL",
- "url_error": "Must provide URL"
+ "weather": {
+ "not_found": "Not Found",
+ "meters": "{amount} meters",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
},
"quote": {
- "copy": "Copy",
- "favourite": "Favorite",
"link_tooltip": "Open on Wikipedia",
"share": "Share",
+ "copy": "Copy",
+ "favourite": "Favorite",
"unfavourite": "Unfavorite"
},
- "search": "Search",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount} meters",
- "not_found": "Not Found"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Refresh"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ },
+ "todo": {
+ "title": "Todo",
+ "pin": "Pin",
+ "add": "Add",
+ "no_todos": "No Todos"
+ }
}
+ },
+ "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",
+ "report_error": "Send Error Report",
+ "sent": "Sent!",
+ "refresh": "Refresh"
+ },
+ "settings": {
+ "enabled": "Enabled",
+ "open_knowledgebase": "Open Knowledgebase",
+ "additional_settings": "Additional Settings",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
+ "sections": {
+ "header": {
+ "more_info": "More info",
+ "report_issue": "Report Issue",
+ "enabled": "Choose whether or not to show this widget",
+ "size": "Slider to control how large the widget is"
+ },
+ "time": {
+ "title": "Time",
+ "format": "Format",
+ "type": "Type",
+ "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
+ "digital": {
+ "title": "Digital",
+ "subtitle": "Change how the digital clock looks",
+ "seconds": "Seconds",
+ "twentyfourhour": "24 Hour",
+ "twelvehour": "12 hour",
+ "zero": "Zero-padded"
+ },
+ "analogue": {
+ "title": "Analog",
+ "subtitle": "Change how the analogue clock looks",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks",
+ "round_clock": "Rounded background"
+ },
+ "percentage_complete": "Percentage complete",
+ "vertical_clock": {
+ "title": "Vertical Clock",
+ "change_hour_colour": "Change hour text color",
+ "change_minute_colour": "Change minute text color"
+ }
+ },
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long",
+ "subtitle": "Whether to display the date in long form or short form"
+ },
+ "type_settings": "Display settings and format for the selected date type",
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "long_format": "Long format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
+ },
+ "quote": {
+ "title": "Quote",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "Author link",
+ "custom": "Custom quote",
+ "custom_subtitle": "Set your own custom quotes",
+ "no_quotes": "No quotes",
+ "author": "Author",
+ "custom_buttons": "Buttons",
+ "custom_author": "Custom author",
+ "author_img": "Show author image",
+ "add": "Add quote",
+ "source_subtitle": "Choose where to get quotes from",
+ "buttons": {
+ "title": "Buttons",
+ "subtitle": "Choose which buttons to show on the quote",
+ "copy": "Copy",
+ "tweet": "Tweet",
+ "favourite": "Favorite"
+ }
+ },
+ "greeting": {
+ "title": "Greeting",
+ "events": "Events",
+ "default": "Default greeting message",
+ "name": "Name for greeting",
+ "birthday": "Birthday",
+ "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date",
+ "additional": "Settings for the greeting display"
+ },
+ "background": {
+ "title": "Background",
+ "ddg_image_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "photo_information": "Show photo information",
+ "show_map": "Show location map on photo information if available",
+ "categories": "Categories",
+ "buttons": {
+ "title": "Buttons",
+ "view": "Maximize",
+ "favourite": "Favourite",
+ "download": "Download"
+ },
+ "effects": {
+ "title": "Effects",
+ "subtitle": "Add effects to the background images",
+ "blur": "Adjust blur",
+ "brightness": "Adjust brightness",
+ "filters": {
+ "title": "Background filter",
+ "amount": "Filter amount",
+ "grayscale": "Grayscale",
+ "sepia": "Sepia",
+ "invert": "Invert",
+ "saturate": "Saturate",
+ "contrast": "Contrast"
+ }
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom color/gradient",
+ "random_colour": "Random colour",
+ "random_gradient": "Random gradient"
+ },
+ "source": {
+ "title": "Source",
+ "subtitle": "Select where to get background images from",
+ "api": "Background API",
+ "custom_background": "Custom background",
+ "custom_colour": "Custom background color",
+ "upload": "Upload",
+ "add_colour": "Add color",
+ "add_background": "Add background",
+ "drop_to_upload": "Drop to upload",
+ "formats": "Available formats: {list}",
+ "select": "Or Select",
+ "add_url": "Add URL",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video",
+ "quality": {
+ "title": "Quality",
+ "original": "Original",
+ "high": "High Quality",
+ "normal": "Normal Quality",
+ "datasaver": "Data Saver"
+ },
+ "custom_title": "Custom Images",
+ "custom_description": "Select images from your local computer",
+ "remove": "Remove Image"
+ },
+ "display": "Display",
+ "display_subtitle": "Change how background and photo information are loaded",
+ "api": "API Settings",
+ "api_subtitle": "Options for getting an image from an external service (API)",
+ "interval": {
+ "title": "Change every",
+ "subtitle": "Change how often the background is updated",
+ "minute": "Minute",
+ "half_hour": "Half hour",
+ "hour": "Hour",
+ "day": "Day",
+ "month": "Month"
+ }
+ },
+ "search": {
+ "title": "Search",
+ "additional": "Additional options for search widget display and functionality",
+ "search_engine": "Search engine",
+ "search_engine_subtitle": "Choose search engine to use in the search bar",
+ "custom": "Custom search URL",
+ "autocomplete": "Autocomplete",
+ "autocomplete_provider": "Autocomplete Provider",
+ "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
+ "voice_search": "Voice search",
+ "dropdown": "Search dropdown",
+ "focus": "Focus on tab open"
+ },
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "widget_type": "Widget Type",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show location",
+ "show_description": "Show description",
+ "weather_description": "Weather description",
+ "cloudiness": "Cloudiness",
+ "humidity": "Humidity",
+ "visibility": "Visibility",
+ "wind_speed": "Wind speed",
+ "wind_direction": "Wind direction",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ },
+ "options": {
+ "basic": "Basic",
+ "standard": "Standard",
+ "expanded": "Expanded",
+ "custom": "Custom"
+ },
+ "custom_settings": "Custom Settings"
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "additional": "Additional settings for quick links display and functions",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip",
+ "text_only": "Show text only",
+ "add_link": "Add Link",
+ "no_quicklinks": "No quicklinks",
+ "edit": "Edit",
+ "style": "Style",
+ "options": {
+ "icon": "Icon",
+ "text_only": "Text Only",
+ "metro": "Metro"
+ },
+ "styling": "Quick Links Styling",
+ "styling_description": "Customise Quick Links appearance"
+ },
+ "message": {
+ "title": "Message",
+ "add": "Add message",
+ "messages": "Messages",
+ "text": "Text",
+ "no_messages": "No messages",
+ "add_some": "Go ahead and add some.",
+ "content": "Message Content"
+ },
+ "appearance": {
+ "title": "Appearance",
+ "style": {
+ "title": "Widget Style",
+ "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
+ "legacy": "Legacy",
+ "new": "New"
+ },
+ "theme": {
+ "title": "Theme",
+ "description": "Change the theme of the Mue widgets and modals",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button",
+ "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
+ "hover": "Only display on hover",
+ "additional": "Modify navbar style and which buttons you want to display",
+ "refresh_options": {
+ "none": "None",
+ "page": "Page"
+ }
+ },
+ "font": {
+ "title": "Font",
+ "description": "Change the font used in Mue",
+ "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",
+ "description": "Accessibility settings for Mue",
+ "animations": "Animations",
+ "text_shadow": {
+ "title": "Widget text shadow",
+ "new": "New",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
+ },
+ "advanced": {
+ "title": "Advanced",
+ "offline_mode": "Offline mode",
+ "offline_subtitle": "When enabled, all requests to online services will be disabled.",
+ "data": "Data",
+ "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
+ "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_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "tab_name_subtitle": "Change the name of the tab that appears in your browser",
+ "timezone": {
+ "title": "Time Zone",
+ "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
+ "automatic": "Automatic"
+ },
+ "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."
+ },
+ "stats": {
+ "title": "Stats",
+ "sections": {
+ "tabs_opened": "Tabs opened",
+ "backgrounds_favourited": "Backgrounds favourited",
+ "backgrounds_downloaded": "Backgrounds downloaded",
+ "quotes_favourited": "Quotes favourited",
+ "quicklinks_added": "Quicklinks added",
+ "settings_changed": "Settings changed",
+ "addons_installed": "Add-ons installed"
+ },
+ "usage": "Usage Stats",
+ "achievements": "Achievements",
+ "unlocked": "{count} Unlocked"
+ },
+ "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": {
+ "title": "Change Log",
+ "by": "By {author}"
+ },
+ "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",
+ "error": {
+ "title": "Failed to get update information",
+ "description": "An error occured"
+ }
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
+ "support_donate": "Donate",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "no_supporters": "There are currently no Mue supporters",
+ "photographers": "Photographers"
+ }
+ },
+ "buttons": {
+ "reset": "Reset",
+ "import": "Import",
+ "export": "Export"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "All",
+ "learn_more": "Learn More",
+ "photo_packs": "Photo Packs",
+ "quote_packs": "Quote Packs",
+ "preset_settings": "Preset Settings",
+ "no_items": "No items in this category",
+ "collection": "Collection",
+ "explore_collection": "Explore Collection",
+ "add_all": "Add All To Mue",
+ "collections": "Collections",
+ "cant_find": "Can't find what you're looking for?",
+ "knowledgebase_one": "Visit the",
+ "knowledgebase_two": "knowledgebase",
+ "knowledgebase_three": "to create your own.",
+ "product": {
+ "overview": "Overview",
+ "information": "Information",
+ "last_updated": "Last Updated",
+ "description": "Description",
+ "show_more": "Show More",
+ "show_less": "Show Less",
+ "show_all": "Show All",
+ "showing": "Showing",
+ "no_images": "No. Images",
+ "no_quotes": "No. Quotes",
+ "version": "Version",
+ "author": "Author",
+ "part_of": "Part of",
+ "explore": "Explore",
+ "buttons": {
+ "addtomue": "Add To Mue",
+ "remove": "Remove",
+ "update_addon": "Update Add-on",
+ "back": "Back",
+ "report": "Report"
+ },
+ "setting": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Looks like you're offline",
+ "description": "Please connect to the internet"
+ }
+ },
+ "addons": {
+ "added": "Added",
+ "check_updates": "Check for updates",
+ "no_updates": "No updates available",
+ "updates_available": "Updates available {amount}",
+ "empty": {
+ "title": "Empty",
+ "description": "No addons are installed"
+ },
+ "sideload": {
+ "title": "Sideload",
+ "description": "Install a Mue addon not on the marketplace from your computer",
+ "failed": "Failed to sideload addon",
+ "errors": {
+ "no_name": "No name provided",
+ "no_author": "No author provided",
+ "no_type": "No type provided",
+ "invalid_photos": "Invalid photos object",
+ "invalid_quotes": "Invalid quotes object"
+ }
+ },
+ "sort": {
+ "title": "Sort",
+ "newest": "Installed (Newest)",
+ "oldest": "Installed (Oldest)",
+ "a_z": "Alphabetical (A-Z)",
+ "z_a": "Alphabetical (Z-A)"
+ },
+ "create": {
+ "title": "Create",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "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"
+ }
+ },
+ "welcome": {
+ "tip": "Quick Tip",
+ "sections": {
+ "intro": {
+ "title": "Welcome to Mue Tab",
+ "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
+ "notices": {
+ "discord_title": "Join our Discord",
+ "discord_description": "Talk with the Mue community and developers",
+ "discord_join": "Join",
+ "github_title": "Contribute on GitHub",
+ "github_description": "Report bugs, add features or donate",
+ "github_open": "Open"
+ }
+ },
+ "language": {
+ "title": "Choose your language",
+ "description": "Mue can be displayed the languages listed below. You can also add new translations on our"
+ },
+ "theme": {
+ "title": "Select a theme",
+ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
+ "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes."
+ },
+ "style": {
+ "title": "Choose a style",
+ "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
+ "legacy": "Legacy",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "Import Settings",
+ "description": "Installing Mue on a new device? Feel free to import your old settings!",
+ "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation."
+ },
+ "privacy": {
+ "title": "Privacy Options",
+ "description": "Enable settings to further protect your privacy with Mue.",
+ "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
+ "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
+ "links": {
+ "title": "Links",
+ "privacy_policy": "Privacy Policy",
+ "source_code": "Source Code"
+ }
+ },
+ "final": {
+ "title": "Final step",
+ "description": "Your Mue Tab experience is about to begin.",
+ "changes": "Changes",
+ "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
+ "imported": "Imported {amount} settings"
+ }
+ },
+ "buttons": {
+ "next": "Next",
+ "preview": "Preview",
+ "previous": "Previous",
+ "close": "Close"
+ },
+ "preview": {
+ "description": "You are currently in preview mode. Settings will be reset on closing this tab.",
+ "continue": "Continue setup"
+ }
+ },
+ "share": {
+ "copy_link": "Copy link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Quote copied",
+ "notes": "Notes copied",
+ "reset": "Reset successfully",
+ "installed": "Successfully installed",
+ "uninstalled": "Successfully removed",
+ "updated": "Successfully updated",
+ "error": "Something went wrong",
+ "imported": "Successfully imported",
+ "no_storage": "Not enough storage",
+ "link_copied": "Link copied"
}
}
diff --git a/src/translations/es.json b/src/translations/es.json
index 3927bf5d..37c4422b 100644
--- a/src/translations/es.json
+++ b/src/translations/es.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Añadidos",
- "check_updates": "Comprobar actualizaciones",
- "create": {
- "create_type": "Create {type} Pack",
- "descriptions": {
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Example",
- "finish": {
- "download": "Descargar complemento",
- "title": "Acabar"
- },
- "import_custom": "Import from custom settings.",
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "metadata": {
- "description": "Descripción",
- "example": "Download example",
- "icon_url": "URL del icono",
- "name": "Nombre",
- "screenshot_url": "URL de la captura de pantalla"
- },
- "other_title": "Crear complemento",
- "photos": {
- "title": "Añadir fotos"
- },
- "publishing": {
- "button": "Learn more",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
- },
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Añadir citas"
- },
- "settings": {
- "current": "Importar la configuración actual",
- "json": "Subir JSON"
- },
- "title": "Crear",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "Dirígete a la tienda para agregar algunos.",
- "title": "Vacío"
- },
- "no_updates": "No hay actualizaciones disponibles",
- "sideload": {
- "description": "Install a Mue addon not on the marketplace from your computer",
- "errors": {
- "invalid_photos": "Objeto de fotos inválido",
- "invalid_quotes": "Objeto de citas inválido",
- "no_author": "No se ha indicado el autor",
- "no_name": "No se ha indicado el nombre",
- "no_type": "No se ha indicado el tipo"
- },
- "failed": "Fallo en la carga lateral del complemento",
- "title": "Cargar localmente"
- },
- "sort": {
- "a_z": "Alfabético (A-Z)",
- "newest": "Instalado (Nuevos)",
- "oldest": "Instalado (Antiguos)",
- "title": "Ordenar",
- "z_a": "Alfabético (Z-A)"
- },
- "updates_available": "Actualizaciones disponibles {amount}"
- },
- "error_boundary": {
- "message": "No se ha podido cargar este componente de Mue",
- "refresh": "Recargar",
- "report_error": "Send Error Report",
- "sent": "Sent!",
- "title": "Error"
- },
- "file_upload_error": "El archivo pesa más de 2MB",
- "loading": "Cargando...",
- "marketplace": {
- "add_all": "Add All To Mue",
- "all": "All",
- "by": "by {author}",
- "cant_find": "Can't find what you're looking for?",
- "collection": "Collection",
- "collections": "Collections",
- "explore_collection": "Explore Collection",
- "knowledgebase_one": "Visit the",
- "knowledgebase_three": "to create your own.",
- "knowledgebase_two": "knowledgebase",
- "learn_more": "Learn More",
- "no_items": "No hay artículos en esta categoría",
- "offline": {
- "description": "Por favor conéctate a Internet",
- "title": "Parece que estás desconectado"
- },
- "photo_packs": "Paquetes de fotos",
- "preset_settings": "Ajustes preestablecidos",
- "product": {
- "author": "Autor",
- "buttons": {
- "addtomue": "Añadir a Mue",
- "back": "Back",
- "remove": "Desinstalar",
- "report": "Report",
- "update_addon": "Actualizar complemento"
- },
- "description": "Description",
- "explore": "Explore",
- "information": "Información",
- "last_updated": "Última actualización",
- "no_images": "No. Images",
- "no_quotes": "No. Quotes",
- "overview": "Vista general",
- "part_of": "Part of",
- "setting": "Setting",
- "show_all": "Show All",
- "show_less": "Show Less",
- "show_more": "Show More",
- "showing": "Showing",
- "value": "Value",
- "version": "Versión"
- },
- "quote_packs": "Paquetes de citas"
- },
- "navbar": {
- "addons": "Mis complementos",
- "marketplace": "Tienda",
- "settings": "Ajustes"
- },
- "settings": {
- "additional_settings": "Additional Settings",
- "buttons": {
- "export": "Exportar",
- "import": "Importar",
- "reset": "Reiniciar"
- },
- "enabled": "Activado",
- "open_knowledgebase": "Open Knowledgebase",
- "reminder": {
- "message": "Para que se produzcan todos los cambios hay que recargar la página.",
- "title": "AVISO"
- },
- "sections": {
- "about": {
- "contact_us": "Contacto",
- "contributors": "Contribuyentes",
- "copyright": "Copyright",
- "form_button": "Form",
- "no_supporters": "Actualmente no hay partidarios de Mue",
- "photographers": "Fotógrafos",
- "resources_used": {
- "bg_images": "Imágenes de fondo sin conexión",
- "title": "Recursos usados"
- },
- "support_donate": "Donate",
- "support_mue": "Apoya Mue",
- "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
- "supporters": "Partidarios",
- "title": "Acerca de",
- "version": {
- "checking_update": "Comprobando actualizaciones",
- "error": {
- "description": "Ha ocurrido un error",
- "title": "Fallo al obtener la información de la actualización"
- },
- "no_update": "Actualizaciones no disponibles",
- "offline_mode": "No se puede comprobar la actualización en modo sin conexión",
- "title": "Versión",
- "update_available": "Actualización disponible"
- }
- },
- "advanced": {
- "custom_css": "CSS personalizado",
- "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
- "custom_js": "JS personalizado",
- "customisation": "Personalización",
- "data": "Datos",
- "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
- "experimental_warning": "Por favor, ten en cuenta que el equipo de Mue no puede dar soporte si tienes el modo experimental activado. Por favor, desactívalo primero y comprueba si el problema sigue ocurriendo antes de contactar con el equipo de soporte.",
- "offline_mode": "Modo sin conexión",
- "offline_subtitle": "When enabled, all requests to online services will be disabled.",
- "reset_modal": {
- "cancel": "Cancelar",
- "information": "Esto borrará todos los datos. Si desea mantener sus datos y preferencias, por favor, expórtelos primero.",
- "question": "¿Quieres reiniciar Mue?",
- "title": "ADVERTENCIA"
- },
- "tab_name": "Nombre de la pestaña",
- "tab_name_subtitle": "Change the name of the tab that appears in your browser",
- "timezone": {
- "automatic": "Automático",
- "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
- "title": "Zona horaria"
- },
- "title": "Avanzado"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animaciones",
- "description": "Accessibility settings for Mue",
- "milliseconds": "milisegundos",
- "text_shadow": {
- "new": "New",
- "none": "None",
- "old": "Old",
- "title": "Widget text shadow"
- },
- "title": "Accesibilidad",
- "toast_duration": "Duración de la notificación",
- "widget_zoom": "Zoom del widget"
- },
- "font": {
- "custom": "Fuente personalizada",
- "description": "Change the font used in Mue",
- "google": "Importar desde Google Fonts",
- "style": {
- "italic": "Cursiva",
- "normal": "Normal",
- "oblique": "Oblicua",
- "title": "Estilo de la fuente"
- },
- "title": "Fuente",
- "weight": {
- "bold": "Negrita",
- "extra_bold": "Extra negrita",
- "extra_light": "Extra fino",
- "light": "Fino",
- "medium": "Mediano",
- "normal": "Normal",
- "semi_bold": "Semi negrita",
- "thin": "Delgado",
- "title": "Tipo de la fuente"
- }
- },
- "navbar": {
- "additional": "Modify navbar style and which buttons you want to display",
- "hover": "Solo mostrar al pasar el cursor",
- "notes": "Notas",
- "refresh": "Botón de recargar",
- "refresh_options": {
- "none": "Ninguno",
- "page": "Página"
- },
- "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
- "title": "Barra de búsqueda"
- },
- "style": {
- "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
- "legacy": "Legacy",
- "new": "New",
- "title": "Widget Style"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Oscuro",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "Claro",
- "title": "Tema"
- },
- "title": "Apariencia"
- },
- "background": {
- "api": "Configuración de la API",
- "api_subtitle": "Options for getting an image from an external service (API)",
- "buttons": {
- "download": "Descargar",
- "favourite": "Favorito",
- "title": "Botones",
- "view": "Ver"
- },
- "categories": "Categories",
- "ddg_image_proxy": "Utilizar el proxy de imágenes de DuckDuckGo",
- "display": "Display",
- "display_subtitle": "Cambiar cómo se carga la información de fondo y de la foto",
- "effects": {
- "blur": "Ajustar difuminado",
- "brightness": "Ajustar brillo",
- "filters": {
- "amount": "Cantidad del filtro",
- "contrast": "Contraste",
- "grayscale": "Escala de grises",
- "invert": "Invertir",
- "saturate": "Saturar",
- "sepia": "Sepia",
- "title": "Filtros del fondo"
- },
- "subtitle": "Add effects to the background images",
- "title": "Efectos"
- },
- "interval": {
- "day": "Día",
- "half_hour": "Media hora",
- "hour": "Hora",
- "minute": "Minuto",
- "month": "Mes",
- "subtitle": "Change how often the background is updated",
- "title": "Cambiar cada"
- },
- "photo_information": "Ver información de la foto",
- "show_map": "Mostrar el mapa de la ubicación en la información de la foto si está disponible",
- "source": {
- "add_background": "Añadir fondo",
- "add_colour": "Añadir color",
- "add_url": "Añadir URL",
- "api": "API de fondos",
- "custom_background": "Fondo personalizado",
- "custom_colour": "Color del fondo personalizado",
- "custom_description": "Select images from your local computer",
- "custom_title": "Custom Images",
- "disabled": "Desactivado",
- "drop_to_upload": "Drop to upload",
- "formats": "Available formats: {list}",
- "loop_video": "Vídeo en bucle",
- "mute_video": "Silenciar video",
- "quality": {
- "datasaver": "Ahorro de datos",
- "high": "Calidad alta",
- "normal": "Calidad normal",
- "original": "Original",
- "title": "Calidad"
- },
- "remove": "Remove Image",
- "select": "Or Select",
- "subtitle": "Select where to get background images from",
- "title": "Fuente",
- "upload": "Subir"
- },
- "title": "Fondo",
- "transition": "Transición fade-in",
- "type": {
- "api": "API",
- "custom_colour": "Color/degradado personalizado",
- "custom_image": "Imagen personalizada",
- "random_colour": "Color aleatorio",
- "random_gradient": "Degradado aleatorio",
- "title": "Tipo"
- }
- },
- "changelog": {
- "by": "Por {author}",
- "title": "Registro de cambios"
- },
- "date": {
- "datenth": "Fecha nth",
- "day_of_week": "Día de la semana",
- "long_format": "Long format",
- "short_date": "Fecha corta",
- "short_format": "Formato corto",
- "short_separator": {
- "dash": "Guiones",
- "dots": "Puntos",
- "gaps": "Guiones con espacios",
- "slashes": "Barras",
- "title": "Separador corto"
- },
- "title": "Fecha",
- "type": {
- "long": "Largo",
- "short": "Corto",
- "subtitle": "Whether to display the date in long form or short form"
- },
- "type_settings": "Display settings and format for the selected date type",
- "week_number": "Número de la semana"
- },
- "experimental": {
- "developer": "Desarrollador",
- "title": "Experimental",
- "warning": "Estos ajustes no han sido totalmente probados/implementados y pueden no funcionar correctamente."
- },
- "greeting": {
- "additional": "Settings for the greeting display",
- "birthday": "Cumpleaños",
- "birthday_age": "Edad de cumpleaños",
- "birthday_date": "Fecha de cumpleaños",
- "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
- "default": "Mensaje del saludo por defecto",
- "events": "Eventos",
- "name": "Nombre para el saludo",
- "title": "Saludo"
- },
- "header": {
- "enabled": "Choose whether or not to show this widget",
- "more_info": "More info",
- "report_issue": "Report Issue",
- "size": "Slider to control how large the widget is"
- },
- "language": {
- "quote": "Idioma de las citas",
- "title": "Idioma"
- },
- "message": {
- "add": "Añadir mensaje",
- "add_some": "Go ahead and add some.",
- "content": "Message Content",
- "messages": "Messages",
- "no_messages": "No messages",
- "text": "Texto",
- "title": "Mensaje"
- },
- "order": {
- "title": "Orden de widgets"
- },
- "quicklinks": {
- "add_link": "Add Link",
- "additional": "Additional settings for quick links display and functions",
- "edit": "Edit",
- "no_quicklinks": "No quicklinks",
- "open_new": "Abrir en una nueva pestaña",
- "options": {
- "icon": "Icon",
- "metro": "Metro",
- "text_only": "Text Only"
- },
- "style": "Style",
- "styling": "Quick Links Styling",
- "styling_description": "Customise Quick Links appearance",
- "text_only": "Mostrar solo texto",
- "title": "Enlaces rápidos",
- "tooltip": "Descripción emergente"
- },
- "quote": {
- "add": "Añadir cita",
- "additional": "Other settings to customise the style of the quote widget",
- "author": "Author",
- "author_img": "Show author image",
- "author_link": "Enlace del autor",
- "buttons": {
- "copy": "Botón de copiar",
- "favourite": "Botón de favoritos",
- "subtitle": "Choose which buttons to show on the quote",
- "title": "Botones",
- "tweet": "Botón de Tweet"
- },
- "custom": "Cita personalizada",
- "custom_author": "Autor personalizado",
- "custom_buttons": "Buttons",
- "custom_subtitle": "Set your own custom quotes",
- "no_quotes": "No quotes",
- "source_subtitle": "Choose where to get quotes from",
- "title": "Cita"
- },
- "search": {
- "additional": "Additional options for search widget display and functionality",
- "autocomplete": "Autocompletado",
- "autocomplete_provider": "Proveedor del autocompletado",
- "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
- "custom": "URL de búsqueda personalizada",
- "dropdown": "Menú desplegable de búsqueda",
- "focus": "Focus on tab open",
- "search_engine": "Motor de búsqueda",
- "search_engine_subtitle": "Elija el motor de búsqueda para usar en la barra de búsqueda",
- "title": "Búsqueda",
- "voice_search": "Búsqueda por voz"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "Complementos instalados",
- "backgrounds_downloaded": "Fondos descargados",
- "backgrounds_favourited": "Fondos favoritos",
- "quicklinks_added": "Enlaces rápidos añadidos",
- "quotes_favourited": "Citas favoritas",
- "settings_changed": "Ajustes cambiados",
- "tabs_opened": "Pestañas abiertas"
- },
- "title": "Estadísticas",
- "unlocked": "{count} Unlocked",
- "usage": "Estadísticas de uso"
- },
- "time": {
- "analogue": {
- "hour_hand": "Manecilla de las horas",
- "hour_marks": "Marcas de las horas",
- "minute_hand": "Manecilla de los minutos",
- "minute_marks": "Marcas de los minutos",
- "round_clock": "Rounded background",
- "second_hand": "Manecilla de los segundos",
- "subtitle": "Change how the analogue clock looks",
- "title": "Analógico"
- },
- "digital": {
- "seconds": "Segundos",
- "subtitle": "Change how the digital clock looks",
- "title": "Digital",
- "twelvehour": "12 Horas",
- "twentyfourhour": "24 Horas",
- "zero": "Sin ceros"
- },
- "format": "Formato",
- "percentage_complete": "Porcentaje completado",
- "title": "Tiempo",
- "type": "Tipo",
- "type_subtitle": "Elija si desea mostrar la hora en formato digital, formato analógico o un porcentaje de finalización del día",
- "vertical_clock": {
- "change_hour_colour": "Change hour text colour",
- "change_minute_colour": "Change minute text colour",
- "title": "Vertical Clock"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Custom Settings",
- "extra_info": {
- "atmospheric_pressure": "Presión atmosférica",
- "cloudiness": "Nubosidad",
- "humidity": "Humedad",
- "max_temp": "Temperatura máxima",
- "min_temp": "Temperatura mínima",
- "show_description": "Mostrar descripción",
- "show_location": "Mostrar ubicación",
- "title": "Información extra",
- "visibility": "Visibilidad",
- "weather_description": "Weather description",
- "wind_direction": "Dirección del viento",
- "wind_speed": "Velocidad del viento"
- },
- "location": "Ubicación",
- "options": {
- "basic": "Basic",
- "custom": "Custom",
- "expanded": "Expanded",
- "standard": "Standard"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Formato de la temperatura"
- },
- "title": "Clima",
- "widget_type": "Widget Type"
- }
- }
- },
- "title": "Opciones"
- },
- "share": {
- "copy_link": "Copy link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "No se pudo conectar con el servidor",
- "title": "Error"
- },
- "offline": {
- "description": "No se pueden obtener actualizaciones en modo sin conexión",
- "title": "Sin conexión"
- },
- "title": "Actualizar"
- },
- "welcome": {
- "buttons": {
- "close": "Cerrar",
- "next": "Siguiente",
- "preview": "Vista previa",
- "previous": "Anterior"
- },
- "preview": {
- "continue": "Continuar con la configuración",
- "description": "Actualmente se encuentra en el modo de vista previa. La configuración se restablecerá al cerrar esta pestaña."
- },
- "sections": {
- "final": {
- "changes": "Cambios",
- "changes_description": "Para cambiar la configuración más tarde, haga clic en el icono de configuración en la esquina superior derecha de su pestaña.",
- "description": "Tu experiencia con Mue Tab está a punto de comenzar",
- "imported": "Importados {amount} ajustes",
- "title": "Último paso"
- },
- "intro": {
- "description": "Gracias por instalar Mue, esperamos que disfrute de su tiempo con nuestra extensión.",
- "notices": {
- "discord_description": "Talk with the Mue community and developers",
- "discord_join": "Join",
- "discord_title": "Join our Discord",
- "github_description": "Report bugs, add features or donate",
- "github_open": "Open",
- "github_title": "Contribute on GitHub"
- },
- "title": "Bienvenido a Mue Tab"
- },
- "language": {
- "description": "Mue puede mostrarse en los idiomas que se indican debajo. ¡También puedes contribuir con traducciones en nuestro",
- "title": "Elige el idioma"
- },
- "privacy": {
- "ddg_proxy_description": "Puedes hacer que las solicitudes de imágenes pasen por DuckDuckGo si lo deseas. Por defecto, las solicitudes a la API van a tráves de nuestros servidores de código abierto y las solicitudes de imágenes van a través del servidor original. Si desactivas esta opción para los enlaces rápidos y los iconos de obtendrán de Google en lugar de DuckDuckGo. El proxy de DuckDuckGo está siempre activado para la tienda.",
- "description": "Activa estos ajustes para proteger aún más tu privacidad con Mue.",
- "links": {
- "privacy_policy": "Política de privacidad",
- "source_code": "Código fuente",
- "title": "Enlaces"
- },
- "offline_mode_description": "Al activar el modo offline se deshabilitarán todas las peticiones a cualquier servicio. Esto hará que se desactiven los fondos en línea, las citas en línea, la tienda, el tiempo, los enlaces rápidos, el registro de cambios y alguna información de la pestaña Acerca de.",
- "title": "Opciones de privacidad"
- },
- "settings": {
- "description": "¿Instalando Mue en un nuevo dispositivo? No dudes en importar tu antigua configuración.",
- "tip": "Puedes exportar tu antigua configuración navegando a la pestaña Avanzado en tu antigua configuración de Mue. Luego debes hacer clic en el botón de exportación que descargará el archivo JSON. Puedes subir este archivo aquí para mantener tus ajustes y preferencias de tu anterior instalación de Mue.",
- "title": "Importa los ajustes"
- },
- "style": {
- "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
- "legacy": "Legacy",
- "modern": "Modern",
- "title": "Choose a style"
- },
- "theme": {
- "description": "Mue está disponible tanto en el tema claro como en el oscuro, también se puede configurar automáticamente en función del tema de su sistema.",
- "tip": "Si utiliza la configuración automática, utilizará el tema de su ordenador. Esta configuración afectará a los modales y a algunos de los widgets que aparecen en la pantalla, como el tiempo y las notas.",
- "title": "Selecciona un tema"
- }
- },
- "tip": "Consejo"
- }
- },
"tabname": "Nueva pestaña",
- "toasts": {
- "error": "Algo salió mal",
- "imported": "Importado correctamente",
- "installed": "Instalado correctamente",
- "link_copied": "Link copied",
- "no_storage": "Not enough storage",
- "notes": "Notas copiadas",
- "quote": "Cita copiada",
- "reset": "Restablecido correctamente",
- "uninstalled": "Desinstalado correctamente",
- "updated": "Actualizado correctamente"
- },
"widgets": {
+ "greeting": {
+ "morning": "Buenos días",
+ "afternoon": "Buenas tardes",
+ "evening": "Buenas noches",
+ "christmas": "Feliz Navidad",
+ "newyear": "Feliz año nuevo",
+ "halloween": "Feliz Halloween",
+ "birthday": "Feliz cumpleaños"
+ },
"background": {
- "camera": "Camera",
- "category": "Category",
- "confirm": "Confirm",
"credit": "Foto por",
+ "unsplash": "en Unsplash",
+ "information": "Información",
"download": "Descargar",
"downloads": "Descargas",
- "exclude": "Don't show again",
- "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
- "information": "Información",
+ "views": "Views",
"likes": "Likes",
"location": "Location",
+ "camera": "Camera",
"resolution": "Resolution",
"source": "Source",
- "unsplash": "en Unsplash",
- "views": "Views"
+ "category": "Category",
+ "exclude": "Don't show again",
+ "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
+ "confirm": "Confirm"
+ },
+ "search": "Buscar",
+ "quicklinks": {
+ "new": "Nuevo enlace",
+ "name": "Nombre",
+ "url": "URL",
+ "icon": "Icono (opcional)",
+ "add": "Añadir",
+ "name_error": "Debe indicar el nombre",
+ "url_error": "Debe indicar la URL"
},
"date": {
"week": "Semana"
},
- "greeting": {
- "afternoon": "Buenas tardes",
- "birthday": "Feliz cumpleaños",
- "christmas": "Feliz Navidad",
- "evening": "Buenas noches",
- "halloween": "Feliz Halloween",
- "morning": "Buenos días",
- "newyear": "Feliz año nuevo"
- },
- "navbar": {
- "notes": {
- "placeholder": "Escribe aquí",
- "title": "Notas"
- },
- "todo": {
- "add": "Add",
- "no_todos": "No Todos",
- "pin": "Pin",
- "title": "Todo"
- },
- "tooltips": {
- "refresh": "Recargar"
- }
- },
- "quicklinks": {
- "add": "Añadir",
- "icon": "Icono (opcional)",
- "name": "Nombre",
- "name_error": "Debe indicar el nombre",
- "new": "Nuevo enlace",
- "url": "URL",
- "url_error": "Debe indicar la URL"
+ "weather": {
+ "not_found": "No encontrado",
+ "meters": "{amount} metros",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
},
"quote": {
- "copy": "Copy",
- "favourite": "Favourite",
"link_tooltip": "Open on Wikipedia",
"share": "Share",
+ "copy": "Copy",
+ "favourite": "Favourite",
"unfavourite": "Unfavourite"
},
- "search": "Buscar",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount} metros",
- "not_found": "No encontrado"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Recargar"
+ },
+ "notes": {
+ "title": "Notas",
+ "placeholder": "Escribe aquí"
+ },
+ "todo": {
+ "title": "Todo",
+ "pin": "Pin",
+ "add": "Add",
+ "no_todos": "No Todos"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Opciones",
+ "loading": "Cargando...",
+ "file_upload_error": "El archivo pesa más de 2MB",
+ "navbar": {
+ "settings": "Ajustes",
+ "addons": "Mis complementos",
+ "marketplace": "Tienda"
+ },
+ "error_boundary": {
+ "title": "Error",
+ "message": "No se ha podido cargar este componente de Mue",
+ "report_error": "Send Error Report",
+ "sent": "Sent!",
+ "refresh": "Recargar"
+ },
+ "settings": {
+ "enabled": "Activado",
+ "open_knowledgebase": "Open Knowledgebase",
+ "additional_settings": "Additional Settings",
+ "reminder": {
+ "title": "AVISO",
+ "message": "Para que se produzcan todos los cambios hay que recargar la página."
+ },
+ "sections": {
+ "header": {
+ "more_info": "More info",
+ "report_issue": "Report Issue",
+ "enabled": "Choose whether or not to show this widget",
+ "size": "Slider to control how large the widget is"
+ },
+ "time": {
+ "title": "Tiempo",
+ "format": "Formato",
+ "type": "Tipo",
+ "type_subtitle": "Elija si desea mostrar la hora en formato digital, formato analógico o un porcentaje de finalización del día",
+ "digital": {
+ "title": "Digital",
+ "subtitle": "Change how the digital clock looks",
+ "seconds": "Segundos",
+ "twentyfourhour": "24 Horas",
+ "twelvehour": "12 Horas",
+ "zero": "Sin ceros"
+ },
+ "analogue": {
+ "title": "Analógico",
+ "subtitle": "Change how the analogue clock looks",
+ "second_hand": "Manecilla de los segundos",
+ "minute_hand": "Manecilla de los minutos",
+ "hour_hand": "Manecilla de las horas",
+ "hour_marks": "Marcas de las horas",
+ "minute_marks": "Marcas de los minutos",
+ "round_clock": "Rounded background"
+ },
+ "percentage_complete": "Porcentaje completado",
+ "vertical_clock": {
+ "title": "Vertical Clock",
+ "change_hour_colour": "Change hour text colour",
+ "change_minute_colour": "Change minute text colour"
+ }
+ },
+ "date": {
+ "title": "Fecha",
+ "week_number": "Número de la semana",
+ "day_of_week": "Día de la semana",
+ "datenth": "Fecha nth",
+ "type": {
+ "short": "Corto",
+ "long": "Largo",
+ "subtitle": "Whether to display the date in long form or short form"
+ },
+ "type_settings": "Display settings and format for the selected date type",
+ "short_date": "Fecha corta",
+ "short_format": "Formato corto",
+ "long_format": "Long format",
+ "short_separator": {
+ "title": "Separador corto",
+ "dots": "Puntos",
+ "dash": "Guiones",
+ "gaps": "Guiones con espacios",
+ "slashes": "Barras"
+ }
+ },
+ "quote": {
+ "title": "Cita",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "Enlace del autor",
+ "custom": "Cita personalizada",
+ "custom_subtitle": "Set your own custom quotes",
+ "no_quotes": "No quotes",
+ "author": "Author",
+ "custom_buttons": "Buttons",
+ "custom_author": "Autor personalizado",
+ "author_img": "Show author image",
+ "add": "Añadir cita",
+ "source_subtitle": "Choose where to get quotes from",
+ "buttons": {
+ "title": "Botones",
+ "subtitle": "Choose which buttons to show on the quote",
+ "copy": "Botón de copiar",
+ "tweet": "Botón de Tweet",
+ "favourite": "Botón de favoritos"
+ }
+ },
+ "greeting": {
+ "title": "Saludo",
+ "events": "Eventos",
+ "default": "Mensaje del saludo por defecto",
+ "name": "Nombre para el saludo",
+ "birthday": "Cumpleaños",
+ "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
+ "birthday_age": "Edad de cumpleaños",
+ "birthday_date": "Fecha de cumpleaños",
+ "additional": "Settings for the greeting display"
+ },
+ "background": {
+ "title": "Fondo",
+ "ddg_image_proxy": "Utilizar el proxy de imágenes de DuckDuckGo",
+ "transition": "Transición fade-in",
+ "photo_information": "Ver información de la foto",
+ "show_map": "Mostrar el mapa de la ubicación en la información de la foto si está disponible",
+ "categories": "Categories",
+ "buttons": {
+ "title": "Botones",
+ "view": "Ver",
+ "favourite": "Favorito",
+ "download": "Descargar"
+ },
+ "effects": {
+ "title": "Efectos",
+ "subtitle": "Add effects to the background images",
+ "blur": "Ajustar difuminado",
+ "brightness": "Ajustar brillo",
+ "filters": {
+ "title": "Filtros del fondo",
+ "amount": "Cantidad del filtro",
+ "grayscale": "Escala de grises",
+ "sepia": "Sepia",
+ "invert": "Invertir",
+ "saturate": "Saturar",
+ "contrast": "Contraste"
+ }
+ },
+ "type": {
+ "title": "Tipo",
+ "api": "API",
+ "custom_image": "Imagen personalizada",
+ "custom_colour": "Color/degradado personalizado",
+ "random_colour": "Color aleatorio",
+ "random_gradient": "Degradado aleatorio"
+ },
+ "source": {
+ "title": "Fuente",
+ "subtitle": "Select where to get background images from",
+ "api": "API de fondos",
+ "custom_background": "Fondo personalizado",
+ "custom_colour": "Color del fondo personalizado",
+ "upload": "Subir",
+ "add_colour": "Añadir color",
+ "add_background": "Añadir fondo",
+ "drop_to_upload": "Drop to upload",
+ "formats": "Available formats: {list}",
+ "select": "Or Select",
+ "add_url": "Añadir URL",
+ "disabled": "Desactivado",
+ "loop_video": "Vídeo en bucle",
+ "mute_video": "Silenciar video",
+ "quality": {
+ "title": "Calidad",
+ "original": "Original",
+ "high": "Calidad alta",
+ "normal": "Calidad normal",
+ "datasaver": "Ahorro de datos"
+ },
+ "custom_title": "Custom Images",
+ "custom_description": "Select images from your local computer",
+ "remove": "Remove Image"
+ },
+ "display": "Display",
+ "display_subtitle": "Cambiar cómo se carga la información de fondo y de la foto",
+ "api": "Configuración de la API",
+ "api_subtitle": "Options for getting an image from an external service (API)",
+ "interval": {
+ "title": "Cambiar cada",
+ "subtitle": "Change how often the background is updated",
+ "minute": "Minuto",
+ "half_hour": "Media hora",
+ "hour": "Hora",
+ "day": "Día",
+ "month": "Mes"
+ }
+ },
+ "search": {
+ "title": "Búsqueda",
+ "additional": "Additional options for search widget display and functionality",
+ "search_engine": "Motor de búsqueda",
+ "search_engine_subtitle": "Elija el motor de búsqueda para usar en la barra de búsqueda",
+ "custom": "URL de búsqueda personalizada",
+ "autocomplete": "Autocompletado",
+ "autocomplete_provider": "Proveedor del autocompletado",
+ "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
+ "voice_search": "Búsqueda por voz",
+ "dropdown": "Menú desplegable de búsqueda",
+ "focus": "Focus on tab open"
+ },
+ "weather": {
+ "title": "Clima",
+ "location": "Ubicación",
+ "auto": "Auto",
+ "widget_type": "Widget Type",
+ "temp_format": {
+ "title": "Formato de la temperatura",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Información extra",
+ "show_location": "Mostrar ubicación",
+ "show_description": "Mostrar descripción",
+ "weather_description": "Weather description",
+ "cloudiness": "Nubosidad",
+ "humidity": "Humedad",
+ "visibility": "Visibilidad",
+ "wind_speed": "Velocidad del viento",
+ "wind_direction": "Dirección del viento",
+ "min_temp": "Temperatura mínima",
+ "max_temp": "Temperatura máxima",
+ "atmospheric_pressure": "Presión atmosférica"
+ },
+ "options": {
+ "basic": "Basic",
+ "standard": "Standard",
+ "expanded": "Expanded",
+ "custom": "Custom"
+ },
+ "custom_settings": "Custom Settings"
+ },
+ "quicklinks": {
+ "title": "Enlaces rápidos",
+ "additional": "Additional settings for quick links display and functions",
+ "open_new": "Abrir en una nueva pestaña",
+ "tooltip": "Descripción emergente",
+ "text_only": "Mostrar solo texto",
+ "add_link": "Add Link",
+ "no_quicklinks": "No quicklinks",
+ "edit": "Edit",
+ "style": "Style",
+ "options": {
+ "icon": "Icon",
+ "text_only": "Text Only",
+ "metro": "Metro"
+ },
+ "styling": "Quick Links Styling",
+ "styling_description": "Customise Quick Links appearance"
+ },
+ "message": {
+ "title": "Mensaje",
+ "add": "Añadir mensaje",
+ "messages": "Messages",
+ "text": "Texto",
+ "no_messages": "No messages",
+ "add_some": "Go ahead and add some.",
+ "content": "Message Content"
+ },
+ "appearance": {
+ "title": "Apariencia",
+ "style": {
+ "title": "Widget Style",
+ "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
+ "legacy": "Legacy",
+ "new": "New"
+ },
+ "theme": {
+ "title": "Tema",
+ "description": "Change the theme of the Mue widgets and modals",
+ "auto": "Auto",
+ "light": "Claro",
+ "dark": "Oscuro"
+ },
+ "navbar": {
+ "title": "Barra de búsqueda",
+ "notes": "Notas",
+ "refresh": "Botón de recargar",
+ "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
+ "hover": "Solo mostrar al pasar el cursor",
+ "additional": "Modify navbar style and which buttons you want to display",
+ "refresh_options": {
+ "none": "Ninguno",
+ "page": "Página"
+ }
+ },
+ "font": {
+ "title": "Fuente",
+ "description": "Change the font used in Mue",
+ "custom": "Fuente personalizada",
+ "google": "Importar desde Google Fonts",
+ "weight": {
+ "title": "Tipo de la fuente",
+ "thin": "Delgado",
+ "extra_light": "Extra fino",
+ "light": "Fino",
+ "normal": "Normal",
+ "medium": "Mediano",
+ "semi_bold": "Semi negrita",
+ "bold": "Negrita",
+ "extra_bold": "Extra negrita"
+ },
+ "style": {
+ "title": "Estilo de la fuente",
+ "normal": "Normal",
+ "italic": "Cursiva",
+ "oblique": "Oblicua"
+ }
+ },
+ "accessibility": {
+ "title": "Accesibilidad",
+ "description": "Accessibility settings for Mue",
+ "animations": "Animaciones",
+ "text_shadow": {
+ "title": "Widget text shadow",
+ "new": "New",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "Zoom del widget",
+ "toast_duration": "Duración de la notificación",
+ "milliseconds": "milisegundos"
+ }
+ },
+ "order": {
+ "title": "Orden de widgets"
+ },
+ "advanced": {
+ "title": "Avanzado",
+ "offline_mode": "Modo sin conexión",
+ "offline_subtitle": "When enabled, all requests to online services will be disabled.",
+ "data": "Datos",
+ "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
+ "reset_modal": {
+ "title": "ADVERTENCIA",
+ "question": "¿Quieres reiniciar Mue?",
+ "information": "Esto borrará todos los datos. Si desea mantener sus datos y preferencias, por favor, expórtelos primero.",
+ "cancel": "Cancelar"
+ },
+ "customisation": "Personalización",
+ "custom_css": "CSS personalizado",
+ "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
+ "custom_js": "JS personalizado",
+ "tab_name": "Nombre de la pestaña",
+ "tab_name_subtitle": "Change the name of the tab that appears in your browser",
+ "timezone": {
+ "title": "Zona horaria",
+ "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
+ "automatic": "Automático"
+ },
+ "experimental_warning": "Por favor, ten en cuenta que el equipo de Mue no puede dar soporte si tienes el modo experimental activado. Por favor, desactívalo primero y comprueba si el problema sigue ocurriendo antes de contactar con el equipo de soporte."
+ },
+ "stats": {
+ "title": "Estadísticas",
+ "sections": {
+ "tabs_opened": "Pestañas abiertas",
+ "backgrounds_favourited": "Fondos favoritos",
+ "backgrounds_downloaded": "Fondos descargados",
+ "quotes_favourited": "Citas favoritas",
+ "quicklinks_added": "Enlaces rápidos añadidos",
+ "settings_changed": "Ajustes cambiados",
+ "addons_installed": "Complementos instalados"
+ },
+ "usage": "Estadísticas de uso",
+ "achievements": "Achievements",
+ "unlocked": "{count} Unlocked"
+ },
+ "experimental": {
+ "title": "Experimental",
+ "warning": "Estos ajustes no han sido totalmente probados/implementados y pueden no funcionar correctamente.",
+ "developer": "Desarrollador"
+ },
+ "language": {
+ "title": "Idioma",
+ "quote": "Idioma de las citas"
+ },
+ "changelog": {
+ "title": "Registro de cambios",
+ "by": "Por {author}"
+ },
+ "about": {
+ "title": "Acerca de",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Versión",
+ "checking_update": "Comprobando actualizaciones",
+ "update_available": "Actualización disponible",
+ "no_update": "Actualizaciones no disponibles",
+ "offline_mode": "No se puede comprobar la actualización en modo sin conexión",
+ "error": {
+ "title": "Fallo al obtener la información de la actualización",
+ "description": "Ha ocurrido un error"
+ }
+ },
+ "contact_us": "Contacto",
+ "support_mue": "Apoya Mue",
+ "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
+ "support_donate": "Donate",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "Recursos usados",
+ "bg_images": "Imágenes de fondo sin conexión"
+ },
+ "contributors": "Contribuyentes",
+ "supporters": "Partidarios",
+ "no_supporters": "Actualmente no hay partidarios de Mue",
+ "photographers": "Fotógrafos"
+ }
+ },
+ "buttons": {
+ "reset": "Reiniciar",
+ "import": "Importar",
+ "export": "Exportar"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "All",
+ "learn_more": "Learn More",
+ "photo_packs": "Paquetes de fotos",
+ "quote_packs": "Paquetes de citas",
+ "preset_settings": "Ajustes preestablecidos",
+ "no_items": "No hay artículos en esta categoría",
+ "collection": "Collection",
+ "explore_collection": "Explore Collection",
+ "add_all": "Add All To Mue",
+ "collections": "Collections",
+ "cant_find": "Can't find what you're looking for?",
+ "knowledgebase_one": "Visit the",
+ "knowledgebase_two": "knowledgebase",
+ "knowledgebase_three": "to create your own.",
+ "product": {
+ "overview": "Vista general",
+ "information": "Información",
+ "last_updated": "Última actualización",
+ "description": "Description",
+ "show_more": "Show More",
+ "show_less": "Show Less",
+ "show_all": "Show All",
+ "showing": "Showing",
+ "no_images": "No. Images",
+ "no_quotes": "No. Quotes",
+ "version": "Versión",
+ "author": "Autor",
+ "part_of": "Part of",
+ "explore": "Explore",
+ "buttons": {
+ "addtomue": "Añadir a Mue",
+ "remove": "Desinstalar",
+ "update_addon": "Actualizar complemento",
+ "back": "Back",
+ "report": "Report"
+ },
+ "setting": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Parece que estás desconectado",
+ "description": "Por favor conéctate a Internet"
+ }
+ },
+ "addons": {
+ "added": "Añadidos",
+ "check_updates": "Comprobar actualizaciones",
+ "no_updates": "No hay actualizaciones disponibles",
+ "updates_available": "Actualizaciones disponibles {amount}",
+ "empty": {
+ "title": "Vacío",
+ "description": "Dirígete a la tienda para agregar algunos."
+ },
+ "sideload": {
+ "title": "Cargar localmente",
+ "description": "Install a Mue addon not on the marketplace from your computer",
+ "failed": "Fallo en la carga lateral del complemento",
+ "errors": {
+ "no_name": "No se ha indicado el nombre",
+ "no_author": "No se ha indicado el autor",
+ "no_type": "No se ha indicado el tipo",
+ "invalid_photos": "Objeto de fotos inválido",
+ "invalid_quotes": "Objeto de citas inválido"
+ }
+ },
+ "sort": {
+ "title": "Ordenar",
+ "newest": "Instalado (Nuevos)",
+ "oldest": "Instalado (Antiguos)",
+ "a_z": "Alfabético (A-Z)",
+ "z_a": "Alfabético (Z-A)"
+ },
+ "create": {
+ "title": "Crear",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Actualizar",
+ "offline": {
+ "title": "Sin conexión",
+ "description": "No se pueden obtener actualizaciones en modo sin conexión"
+ },
+ "error": {
+ "title": "Error",
+ "description": "No se pudo conectar con el servidor"
+ }
+ },
+ "welcome": {
+ "tip": "Consejo",
+ "sections": {
+ "intro": {
+ "title": "Bienvenido a Mue Tab",
+ "description": "Gracias por instalar Mue, esperamos que disfrute de su tiempo con nuestra extensión.",
+ "notices": {
+ "discord_title": "Join our Discord",
+ "discord_description": "Talk with the Mue community and developers",
+ "discord_join": "Join",
+ "github_title": "Contribute on GitHub",
+ "github_description": "Report bugs, add features or donate",
+ "github_open": "Open"
+ }
+ },
+ "language": {
+ "title": "Elige el idioma",
+ "description": "Mue puede mostrarse en los idiomas que se indican debajo. ¡También puedes contribuir con traducciones en nuestro"
+ },
+ "theme": {
+ "title": "Selecciona un tema",
+ "description": "Mue está disponible tanto en el tema claro como en el oscuro, también se puede configurar automáticamente en función del tema de su sistema.",
+ "tip": "Si utiliza la configuración automática, utilizará el tema de su ordenador. Esta configuración afectará a los modales y a algunos de los widgets que aparecen en la pantalla, como el tiempo y las notas."
+ },
+ "style": {
+ "title": "Choose a style",
+ "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
+ "legacy": "Legacy",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "Importa los ajustes",
+ "description": "¿Instalando Mue en un nuevo dispositivo? No dudes en importar tu antigua configuración.",
+ "tip": "Puedes exportar tu antigua configuración navegando a la pestaña Avanzado en tu antigua configuración de Mue. Luego debes hacer clic en el botón de exportación que descargará el archivo JSON. Puedes subir este archivo aquí para mantener tus ajustes y preferencias de tu anterior instalación de Mue."
+ },
+ "privacy": {
+ "title": "Opciones de privacidad",
+ "description": "Activa estos ajustes para proteger aún más tu privacidad con Mue.",
+ "offline_mode_description": "Al activar el modo offline se deshabilitarán todas las peticiones a cualquier servicio. Esto hará que se desactiven los fondos en línea, las citas en línea, la tienda, el tiempo, los enlaces rápidos, el registro de cambios y alguna información de la pestaña Acerca de.",
+ "ddg_proxy_description": "Puedes hacer que las solicitudes de imágenes pasen por DuckDuckGo si lo deseas. Por defecto, las solicitudes a la API van a tráves de nuestros servidores de código abierto y las solicitudes de imágenes van a través del servidor original. Si desactivas esta opción para los enlaces rápidos y los iconos de obtendrán de Google en lugar de DuckDuckGo. El proxy de DuckDuckGo está siempre activado para la tienda.",
+ "links": {
+ "title": "Enlaces",
+ "privacy_policy": "Política de privacidad",
+ "source_code": "Código fuente"
+ }
+ },
+ "final": {
+ "title": "Último paso",
+ "description": "Tu experiencia con Mue Tab está a punto de comenzar",
+ "changes": "Cambios",
+ "changes_description": "Para cambiar la configuración más tarde, haga clic en el icono de configuración en la esquina superior derecha de su pestaña.",
+ "imported": "Importados {amount} ajustes"
+ }
+ },
+ "buttons": {
+ "next": "Siguiente",
+ "preview": "Vista previa",
+ "previous": "Anterior",
+ "close": "Cerrar"
+ },
+ "preview": {
+ "description": "Actualmente se encuentra en el modo de vista previa. La configuración se restablecerá al cerrar esta pestaña.",
+ "continue": "Continuar con la configuración"
+ }
+ },
+ "share": {
+ "copy_link": "Copy link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Cita copiada",
+ "notes": "Notas copiadas",
+ "reset": "Restablecido correctamente",
+ "installed": "Instalado correctamente",
+ "uninstalled": "Desinstalado correctamente",
+ "updated": "Actualizado correctamente",
+ "error": "Algo salió mal",
+ "imported": "Importado correctamente",
+ "no_storage": "Not enough storage",
+ "link_copied": "Link copied"
}
}
diff --git a/src/translations/es_419.json b/src/translations/es_419.json
index ae1eb4e5..e771be1a 100644
--- a/src/translations/es_419.json
+++ b/src/translations/es_419.json
@@ -567,57 +567,9 @@
},
"create": {
"title": "Crear",
- "example": "Example",
- "other_title": "Crear complemento",
- "create_type": "Create {type} Pack",
- "types": {
- "settings": "Preset Settings Pack",
- "photos": "Photo Pack",
- "quotes": "Quotes Pack"
- },
- "descriptions": {
- "settings": "Collection of settings to customise Mue.",
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic."
- },
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "import_custom": "Import from custom settings.",
- "publishing": {
- "title": "Next step, Publishing...",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "button": "Learn more"
- },
- "metadata": {
- "name": "Nombre",
- "icon_url": "URL del icono",
- "screenshot_url": "URL de la captura de pantalla",
- "description": "Descripción",
- "example": "Download example"
- },
- "finish": {
- "title": "Terminar",
- "download": "Descargar complemento"
- },
- "settings": {
- "current": "Importar la configuración actual",
- "json": "Subir JSON"
- },
- "photos": {
- "title": "Añadir fotos"
- },
- "quotes": {
- "title": "Añadir citación",
- "api": {
- "title": "API",
- "url": "Quote URL",
- "name": "JSON quote name",
- "author": "JSON quote author (or override)"
- },
- "local": {
- "title": "Local"
- }
- }
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
}
}
},
diff --git a/src/translations/fr.json b/src/translations/fr.json
index 734d5714..cc95e451 100644
--- a/src/translations/fr.json
+++ b/src/translations/fr.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Ajoutées",
- "check_updates": "Check for updates",
- "create": {
- "create_type": "Create {type} Pack",
- "descriptions": {
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Example",
- "finish": {
- "download": "Download Add-on",
- "title": "Finish"
- },
- "import_custom": "Import from custom settings.",
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "metadata": {
- "description": "Description",
- "example": "Download example",
- "icon_url": "Icon URL",
- "name": "Name",
- "screenshot_url": "Screenshot URL"
- },
- "other_title": "Create Add-on",
- "photos": {
- "title": "Add Photos"
- },
- "publishing": {
- "button": "Learn more",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
- },
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Add Quotes"
- },
- "settings": {
- "current": "Import current setup",
- "json": "Upload JSON"
- },
- "title": "Create",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "Dirigez vous vers le marché pour ajouter des options",
- "title": "C'est vide par ici"
- },
- "no_updates": "No updates available",
- "sideload": {
- "description": "Install a Mue addon not on the marketplace from your computer",
- "errors": {
- "invalid_photos": "Invalid photos object",
- "invalid_quotes": "Invalid quotes object",
- "no_author": "No author provided",
- "no_name": "No name provided",
- "no_type": "No type provided"
- },
- "failed": "Failed to sideload addon",
- "title": "Charger"
- },
- "sort": {
- "a_z": "Alphabetical (A-Z)",
- "newest": "Installed (Newest)",
- "oldest": "Installed (Oldest)",
- "title": "Sort",
- "z_a": "Alphabetical (Z-A)"
- },
- "updates_available": "Updates available {amount}"
- },
- "error_boundary": {
- "message": "Failed to load this component of Mue",
- "refresh": "Rafraîchir",
- "report_error": "Send Error Report",
- "sent": "Sent!",
- "title": "Erreur"
- },
- "file_upload_error": "File is over 2MB",
- "loading": "Chargement...",
- "marketplace": {
- "add_all": "Add All To Mue",
- "all": "All",
- "by": "by {author}",
- "cant_find": "Can't find what you're looking for?",
- "collection": "Collection",
- "collections": "Collections",
- "explore_collection": "Explore Collection",
- "knowledgebase_one": "Visit the",
- "knowledgebase_three": "to create your own.",
- "knowledgebase_two": "knowledgebase",
- "learn_more": "Learn More",
- "no_items": "Aucun article dans cette catégorie",
- "offline": {
- "description": "Veuillez vous connecter à Internet.",
- "title": "Hors ligne"
- },
- "photo_packs": "Packs Photos",
- "preset_settings": "Paramètres prédéfinis",
- "product": {
- "author": "Auteur",
- "buttons": {
- "addtomue": "Ajouter à Mue",
- "back": "Back",
- "remove": "Enlever",
- "report": "Report",
- "update_addon": "Update Add-on"
- },
- "description": "Description",
- "explore": "Explore",
- "information": "Information",
- "last_updated": "Dernière mise à jour",
- "no_images": "No. Images",
- "no_quotes": "No. Quotes",
- "overview": "Aperçu",
- "part_of": "Part of",
- "setting": "Setting",
- "show_all": "Show All",
- "show_less": "Show Less",
- "show_more": "Show More",
- "showing": "Showing",
- "value": "Value",
- "version": "Version"
- },
- "quote_packs": "Packs Citations"
- },
- "navbar": {
- "addons": "Mes Options",
- "marketplace": "Marché",
- "settings": "Paramètres"
- },
- "settings": {
- "additional_settings": "Additional Settings",
- "buttons": {
- "export": "Exporter",
- "import": "Importer",
- "reset": "Réinitialiser"
- },
- "enabled": "Activé",
- "open_knowledgebase": "Open Knowledgebase",
- "reminder": {
- "message": "Pour que toutes les modifications aient lieu, la page doit être actualisée.",
- "title": "REMARQUER"
- },
- "sections": {
- "about": {
- "contact_us": "Nous contacter",
- "contributors": "Collaborateurs",
- "copyright": "Droits d'auteur",
- "form_button": "Form",
- "no_supporters": "There are currently no Mue supporters",
- "photographers": "Photographes",
- "resources_used": {
- "bg_images": "Images d'arrière-plan hors ligne",
- "title": "Ressources utilisées"
- },
- "support_donate": "Donate",
- "support_mue": "Soutenir Mue",
- "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
- "supporters": "Partisans",
- "title": "à propos de",
- "version": {
- "checking_update": "Vérification de la mise à jour",
- "error": {
- "description": "An error occured",
- "title": "Failed to get update information"
- },
- "no_update": "Pas de mise a jour disponible",
- "offline_mode": "Impossible de vérifier la mise à jour en mode hors ligne",
- "title": "Version",
- "update_available": "Mise à jour disponible"
- }
- },
- "advanced": {
- "custom_css": "CSS personnalisé",
- "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
- "custom_js": "JS personnalisé",
- "customisation": "Personnalisation",
- "data": "Donnés",
- "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
- "experimental_warning": "Veuillez noter que l'équipe Mue ne peut pas fournir d'assistance si vous avez activé le mode expérimental. Veuillez d'abord le désactiver et voir si le problème persiste avant de contacter le support.",
- "offline_mode": "Mode hors-ligne",
- "offline_subtitle": "When enabled, all requests to online services will be disabled.",
- "reset_modal": {
- "cancel": "Annuler",
- "information": "Cela supprimera toutes les données. Si vous souhaitez conserver vos données et préférences, veuillez d'abord les exporter.",
- "question": "Voulez-vous réinitialiser Mue?",
- "title": "ATTENTION"
- },
- "tab_name": "Nom de l'onglet",
- "tab_name_subtitle": "Change the name of the tab that appears in your browser",
- "timezone": {
- "automatic": "Automatic",
- "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
- "title": "Time Zone"
- },
- "title": "Avancée"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animations",
- "description": "Accessibility settings for Mue",
- "milliseconds": "millisecondes",
- "text_shadow": {
- "new": "New",
- "none": "None",
- "old": "Old",
- "title": "Widget text shadow"
- },
- "title": "Accessibilité",
- "toast_duration": "Durée du toast",
- "widget_zoom": "Zoom du widget"
- },
- "font": {
- "custom": "Custom font",
- "description": "Change the font used in Mue",
- "google": "Import from Google Fonts",
- "style": {
- "italic": "Italic",
- "normal": "Normal",
- "oblique": "Oblique",
- "title": "Font style"
- },
- "title": "Font",
- "weight": {
- "bold": "Bold",
- "extra_bold": "Extra-Bold",
- "extra_light": "Extra Light",
- "light": "Light",
- "medium": "Medium",
- "normal": "Normal",
- "semi_bold": "Semi-Bold",
- "thin": "Thin",
- "title": "Font weight"
- }
- },
- "navbar": {
- "additional": "Modify navbar style and which buttons you want to display",
- "hover": "Only display on hover",
- "notes": "Notes",
- "refresh": "Refresh button",
- "refresh_options": {
- "none": "None",
- "page": "Page"
- },
- "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
- "title": "Navbar"
- },
- "style": {
- "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
- "legacy": "Legacy",
- "new": "New",
- "title": "Widget Style"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Sombre",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "Clair",
- "title": "Thème"
- },
- "title": "Apparence"
- },
- "background": {
- "api": "API Settings",
- "api_subtitle": "Options for getting an image from an external service (API)",
- "buttons": {
- "download": "Télécharger",
- "favourite": "Ajouter aux favoris",
- "title": "Boutons",
- "view": "Mode vue"
- },
- "categories": "Categories",
- "ddg_image_proxy": "Utiliser le proxy d'image DuckDuckGo",
- "display": "Display",
- "display_subtitle": "Change how background and photo information are loaded",
- "effects": {
- "blur": "Ajuster le flou",
- "brightness": "Ajuster la luminosité",
- "filters": {
- "amount": "Filter amount",
- "contrast": "Contrast",
- "grayscale": "Grayscale",
- "invert": "Invert",
- "saturate": "Saturate",
- "sepia": "Sepia",
- "title": "Background filter"
- },
- "subtitle": "Add effects to the background images",
- "title": "Effets"
- },
- "interval": {
- "day": "Day",
- "half_hour": "Half hour",
- "hour": "Hour",
- "minute": "Minute",
- "month": "Month",
- "subtitle": "Change how often the background is updated",
- "title": "Change every"
- },
- "photo_information": "Show photo information",
- "show_map": "Show location map on photo information if available",
- "source": {
- "add_background": "Add background",
- "add_colour": "Ajouter une couleur",
- "add_url": "Add URL",
- "api": "Source",
- "custom_background": "Arrière-plan personnalisé",
- "custom_colour": "Couleur d'arrière-plan personnalisée",
- "custom_description": "Select images from your local computer",
- "custom_title": "Custom Images",
- "disabled": "Disabled",
- "drop_to_upload": "Drop to upload",
- "formats": "Available formats: {list}",
- "loop_video": "Boucle vidéo",
- "mute_video": "Mettre la vidéo en sourdine",
- "quality": {
- "datasaver": "Data Saver",
- "high": "High Quality",
- "normal": "Normal Quality",
- "original": "Original",
- "title": "Quality"
- },
- "remove": "Remove Image",
- "select": "Or Select",
- "subtitle": "Select where to get background images from",
- "title": "Source",
- "upload": "Ajouter"
- },
- "title": "Fond",
- "transition": "Transition en fondu",
- "type": {
- "api": "API",
- "custom_colour": "Couleur / dégradé personnalisé",
- "custom_image": "Image personnalisée",
- "random_colour": "Random colour",
- "random_gradient": "Random gradient",
- "title": "Type"
- }
- },
- "changelog": {
- "by": "By {author}",
- "title": "Journal des modifications"
- },
- "date": {
- "datenth": "Date nth",
- "day_of_week": "Jour de la semaine",
- "long_format": "Long format",
- "short_date": "Date courte",
- "short_format": "Format court",
- "short_separator": {
- "dash": "Tiret",
- "dots": "Points",
- "gaps": "Blancs",
- "slashes": "Barres",
- "title": "Séparateur court"
- },
- "title": "Date",
- "type": {
- "long": "Long",
- "short": "Courtt",
- "subtitle": "Whether to display the date in long form or short form"
- },
- "type_settings": "Display settings and format for the selected date type",
- "week_number": "Numéro de semaine"
- },
- "experimental": {
- "developer": "Developer",
- "title": "Expérimental",
- "warning": "These settings have not been fully tested/implemented and may not work correctly!"
- },
- "greeting": {
- "additional": "Settings for the greeting display",
- "birthday": "Anniversaire",
- "birthday_age": "âge d'anniversaire",
- "birthday_date": "date d'anniversaire",
- "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
- "default": "Salutation par défaut",
- "events": "Événements",
- "name": "Nom pour salutation",
- "title": "Salutation"
- },
- "header": {
- "enabled": "Choose whether or not to show this widget",
- "more_info": "More info",
- "report_issue": "Report Issue",
- "size": "Slider to control how large the widget is"
- },
- "language": {
- "quote": "Citation langue",
- "title": "Langue"
- },
- "message": {
- "add": "Add message",
- "add_some": "Go ahead and add some.",
- "content": "Message Content",
- "messages": "Messages",
- "no_messages": "No messages",
- "text": "Text",
- "title": "Message"
- },
- "order": {
- "title": "Ordre des widgets"
- },
- "quicklinks": {
- "add_link": "Add Link",
- "additional": "Additional settings for quick links display and functions",
- "edit": "Edit",
- "no_quicklinks": "No quicklinks",
- "open_new": "Ouvrir dans un nouvel onglet",
- "options": {
- "icon": "Icon",
- "metro": "Metro",
- "text_only": "Text Only"
- },
- "style": "Style",
- "styling": "Quick Links Styling",
- "styling_description": "Customise Quick Links appearance",
- "text_only": "Show text only",
- "title": "Liens rapides",
- "tooltip": "Info-bulle"
- },
- "quote": {
- "add": "Add quote",
- "additional": "Other settings to customise the style of the quote widget",
- "author": "Author",
- "author_img": "Show author image",
- "author_link": "Lien auteur",
- "buttons": {
- "copy": "Copier",
- "favourite": "Ajouter aux favoris",
- "subtitle": "Choose which buttons to show on the quote",
- "title": "Boutons",
- "tweet": "Twitter"
- },
- "custom": "Citation personnalisé",
- "custom_author": "Auteur de devis personnalisé",
- "custom_buttons": "Buttons",
- "custom_subtitle": "Set your own custom quotes",
- "no_quotes": "No quotes",
- "source_subtitle": "Choose where to get quotes from",
- "title": "Citation"
- },
- "search": {
- "additional": "Additional options for search widget display and functionality",
- "autocomplete": "Autocomplete",
- "autocomplete_provider": "Autocomplete Provider",
- "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
- "custom": "URL de recherche personnalisée",
- "dropdown": "Search dropdown",
- "focus": "Focus on tab open",
- "search_engine": "Moteur de recherche",
- "search_engine_subtitle": "Choose search engine to use in the search bar",
- "title": "Barre de Recherche",
- "voice_search": "Recherche vocale"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "Add-ons installed",
- "backgrounds_downloaded": "Backgrounds downloaded",
- "backgrounds_favourited": "Backgrounds favourited",
- "quicklinks_added": "Quicklinks added",
- "quotes_favourited": "Quotes favourited",
- "settings_changed": "Settings changed",
- "tabs_opened": "Tabs opened"
- },
- "title": "Stats",
- "unlocked": "{count} Unlocked",
- "usage": "Usage Stats"
- },
- "time": {
- "analogue": {
- "hour_hand": "Aiguille de heure",
- "hour_marks": "Marques d'heure",
- "minute_hand": "Aiguille des minutes",
- "minute_marks": "Marques des minutes",
- "round_clock": "Rounded background",
- "second_hand": "Aiguille des secondes",
- "subtitle": "Change how the analogue clock looks",
- "title": "Analogique"
- },
- "digital": {
- "seconds": "Secondes",
- "subtitle": "Change how the digital clock looks",
- "title": "Affichage numériquel",
- "twelvehour": "12 heures",
- "twentyfourhour": "24 heures",
- "zero": "Complétion de zéros"
- },
- "format": "Format",
- "percentage_complete": "Pourcentage achevé",
- "title": "Heure",
- "type": "Genre",
- "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
- "vertical_clock": {
- "change_hour_colour": "Change hour text colour",
- "change_minute_colour": "Change minute text colour",
- "title": "Vertical Clock"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Custom Settings",
- "extra_info": {
- "atmospheric_pressure": "Pression atmosphérique",
- "cloudiness": "Cloudiness",
- "humidity": "Humidité",
- "max_temp": "Température maximale",
- "min_temp": "Température minimale",
- "show_description": "Show description",
- "show_location": "Afficher l'emplacement",
- "title": "Informations supplémentaires",
- "visibility": "Visibility",
- "weather_description": "Weather description",
- "wind_direction": "Wind direction",
- "wind_speed": "Vitesse du vent"
- },
- "location": "Emplacement",
- "options": {
- "basic": "Basic",
- "custom": "Custom",
- "expanded": "Expanded",
- "standard": "Standard"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Format de température"
- },
- "title": "Météo",
- "widget_type": "Widget Type"
- }
- }
- },
- "title": "Options"
- },
- "share": {
- "copy_link": "Copy link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "Impossible de se connecter au serveur",
- "title": "Erreur"
- },
- "offline": {
- "description": "Vous ne pouvez pas obtenir de mise à jour si vous êtes hors ligne",
- "title": "Hors"
- },
- "title": "Mettre à jour"
- },
- "welcome": {
- "buttons": {
- "close": "Fermer",
- "next": "Next",
- "preview": "Preview",
- "previous": "Previous"
- },
- "preview": {
- "continue": "Continue setup",
- "description": "You are currently in preview mode. Settings will be reset on closing this tab."
- },
- "sections": {
- "final": {
- "changes": "Changes",
- "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
- "description": "Your Mue Tab experience is about to begin.",
- "imported": "Imported {amount} settings",
- "title": "Final step"
- },
- "intro": {
- "description": "Merci d'avoir installé Mue, nous espérons que vous apprécierez votre temps avec notre extension.",
- "notices": {
- "discord_description": "Talk with the Mue community and developers",
- "discord_join": "Join",
- "discord_title": "Join our Discord",
- "github_description": "Report bugs, add features or donate",
- "github_open": "Open",
- "github_title": "Contribute on GitHub"
- },
- "title": "Bienvenue en Mue Tab"
- },
- "language": {
- "description": "Mue can be displayed the languages listed below. You can also add new translations on our",
- "title": "Choose your language"
- },
- "privacy": {
- "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
- "description": "Enable settings to further protect your privacy with Mue.",
- "links": {
- "privacy_policy": "Privacy Policy",
- "source_code": "Source Code",
- "title": "Links"
- },
- "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
- "title": "Privacy Options"
- },
- "settings": {
- "description": "Installing Mue on a new device? Feel free to import your old settings!",
- "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation.",
- "title": "Import Settings"
- },
- "style": {
- "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
- "legacy": "Legacy",
- "modern": "Modern",
- "title": "Choose a style"
- },
- "theme": {
- "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
- "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes.",
- "title": "Select a theme"
- }
- },
- "tip": "Quick Tip"
- }
- },
"tabname": "Nouvel Onglet",
- "toasts": {
- "error": "Quelque chose s'est mal passé",
- "imported": "Importé avec succès",
- "installed": "Installé avec succès",
- "link_copied": "Link copied",
- "no_storage": "Not enough storage",
- "notes": "Remarques copiée",
- "quote": "Citation copiée",
- "reset": "Réinitialisé avec succès",
- "uninstalled": "Enlevé avec succès",
- "updated": "Successfully updated"
- },
"widgets": {
+ "greeting": {
+ "morning": "Bonjour",
+ "afternoon": "Bon après-midi",
+ "evening": "Bonsoir",
+ "christmas": "Joyeux Noël",
+ "newyear": "Bonne année",
+ "halloween": "Joyeux Halloween",
+ "birthday": "Bon anniversaire"
+ },
"background": {
- "camera": "Camera",
- "category": "Category",
- "confirm": "Confirm",
"credit": "Photo par",
+ "unsplash": "sur Unsplash",
+ "information": "Information",
"download": "Téléchargement",
"downloads": "Téléchargements",
- "exclude": "Don't show again",
- "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
- "information": "Information",
+ "views": "Views",
"likes": "Likes",
"location": "Location",
+ "camera": "Camera",
"resolution": "Resolution",
"source": "Source",
- "unsplash": "sur Unsplash",
- "views": "Views"
+ "category": "Category",
+ "exclude": "Don't show again",
+ "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
+ "confirm": "Confirm"
+ },
+ "search": "Rechercher",
+ "quicklinks": {
+ "new": "Nouveau lien",
+ "name": "Nom",
+ "url": "URL",
+ "icon": "Icon (optional)",
+ "add": "Ajouter",
+ "name_error": "Doit fournir le nom",
+ "url_error": "Doit fournir une URL"
},
"date": {
"week": "Semaine"
},
- "greeting": {
- "afternoon": "Bon après-midi",
- "birthday": "Bon anniversaire",
- "christmas": "Joyeux Noël",
- "evening": "Bonsoir",
- "halloween": "Joyeux Halloween",
- "morning": "Bonjour",
- "newyear": "Bonne année"
- },
- "navbar": {
- "notes": {
- "placeholder": "Écrivez ici",
- "title": "Remarques"
- },
- "todo": {
- "add": "Add",
- "no_todos": "No Todos",
- "pin": "Pin",
- "title": "Todo"
- },
- "tooltips": {
- "refresh": "Refresh"
- }
- },
- "quicklinks": {
- "add": "Ajouter",
- "icon": "Icon (optional)",
- "name": "Nom",
- "name_error": "Doit fournir le nom",
- "new": "Nouveau lien",
- "url": "URL",
- "url_error": "Doit fournir une URL"
+ "weather": {
+ "not_found": "Pas trouvé",
+ "meters": "{amount} mètres",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
},
"quote": {
- "copy": "Copy",
- "favourite": "Favourite",
"link_tooltip": "Open on Wikipedia",
"share": "Share",
+ "copy": "Copy",
+ "favourite": "Favourite",
"unfavourite": "Unfavourite"
},
- "search": "Rechercher",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount} mètres",
- "not_found": "Pas trouvé"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Refresh"
+ },
+ "notes": {
+ "title": "Remarques",
+ "placeholder": "Écrivez ici"
+ },
+ "todo": {
+ "title": "Todo",
+ "pin": "Pin",
+ "add": "Add",
+ "no_todos": "No Todos"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Options",
+ "loading": "Chargement...",
+ "file_upload_error": "File is over 2MB",
+ "navbar": {
+ "settings": "Paramètres",
+ "addons": "Mes Options",
+ "marketplace": "Marché"
+ },
+ "error_boundary": {
+ "title": "Erreur",
+ "message": "Failed to load this component of Mue",
+ "report_error": "Send Error Report",
+ "sent": "Sent!",
+ "refresh": "Rafraîchir"
+ },
+ "settings": {
+ "enabled": "Activé",
+ "open_knowledgebase": "Open Knowledgebase",
+ "additional_settings": "Additional Settings",
+ "reminder": {
+ "title": "REMARQUER",
+ "message": "Pour que toutes les modifications aient lieu, la page doit être actualisée."
+ },
+ "sections": {
+ "header": {
+ "more_info": "More info",
+ "report_issue": "Report Issue",
+ "enabled": "Choose whether or not to show this widget",
+ "size": "Slider to control how large the widget is"
+ },
+ "time": {
+ "title": "Heure",
+ "format": "Format",
+ "type": "Genre",
+ "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
+ "digital": {
+ "title": "Affichage numériquel",
+ "subtitle": "Change how the digital clock looks",
+ "seconds": "Secondes",
+ "twentyfourhour": "24 heures",
+ "twelvehour": "12 heures",
+ "zero": "Complétion de zéros"
+ },
+ "analogue": {
+ "title": "Analogique",
+ "subtitle": "Change how the analogue clock looks",
+ "second_hand": "Aiguille des secondes",
+ "minute_hand": "Aiguille des minutes",
+ "hour_hand": "Aiguille de heure",
+ "hour_marks": "Marques d'heure",
+ "minute_marks": "Marques des minutes",
+ "round_clock": "Rounded background"
+ },
+ "percentage_complete": "Pourcentage achevé",
+ "vertical_clock": {
+ "title": "Vertical Clock",
+ "change_hour_colour": "Change hour text colour",
+ "change_minute_colour": "Change minute text colour"
+ }
+ },
+ "date": {
+ "title": "Date",
+ "week_number": "Numéro de semaine",
+ "day_of_week": "Jour de la semaine",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Courtt",
+ "long": "Long",
+ "subtitle": "Whether to display the date in long form or short form"
+ },
+ "type_settings": "Display settings and format for the selected date type",
+ "short_date": "Date courte",
+ "short_format": "Format court",
+ "long_format": "Long format",
+ "short_separator": {
+ "title": "Séparateur court",
+ "dots": "Points",
+ "dash": "Tiret",
+ "gaps": "Blancs",
+ "slashes": "Barres"
+ }
+ },
+ "quote": {
+ "title": "Citation",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "Lien auteur",
+ "custom": "Citation personnalisé",
+ "custom_subtitle": "Set your own custom quotes",
+ "no_quotes": "No quotes",
+ "author": "Author",
+ "custom_buttons": "Buttons",
+ "custom_author": "Auteur de devis personnalisé",
+ "author_img": "Show author image",
+ "add": "Add quote",
+ "source_subtitle": "Choose where to get quotes from",
+ "buttons": {
+ "title": "Boutons",
+ "subtitle": "Choose which buttons to show on the quote",
+ "copy": "Copier",
+ "tweet": "Twitter",
+ "favourite": "Ajouter aux favoris"
+ }
+ },
+ "greeting": {
+ "title": "Salutation",
+ "events": "Événements",
+ "default": "Salutation par défaut",
+ "name": "Nom pour salutation",
+ "birthday": "Anniversaire",
+ "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
+ "birthday_age": "âge d'anniversaire",
+ "birthday_date": "date d'anniversaire",
+ "additional": "Settings for the greeting display"
+ },
+ "background": {
+ "title": "Fond",
+ "ddg_image_proxy": "Utiliser le proxy d'image DuckDuckGo",
+ "transition": "Transition en fondu",
+ "photo_information": "Show photo information",
+ "show_map": "Show location map on photo information if available",
+ "categories": "Categories",
+ "buttons": {
+ "title": "Boutons",
+ "view": "Mode vue",
+ "favourite": "Ajouter aux favoris",
+ "download": "Télécharger"
+ },
+ "effects": {
+ "title": "Effets",
+ "subtitle": "Add effects to the background images",
+ "blur": "Ajuster le flou",
+ "brightness": "Ajuster la luminosité",
+ "filters": {
+ "title": "Background filter",
+ "amount": "Filter amount",
+ "grayscale": "Grayscale",
+ "sepia": "Sepia",
+ "invert": "Invert",
+ "saturate": "Saturate",
+ "contrast": "Contrast"
+ }
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Image personnalisée",
+ "custom_colour": "Couleur / dégradé personnalisé",
+ "random_colour": "Random colour",
+ "random_gradient": "Random gradient"
+ },
+ "source": {
+ "title": "Source",
+ "subtitle": "Select where to get background images from",
+ "api": "Source",
+ "custom_background": "Arrière-plan personnalisé",
+ "custom_colour": "Couleur d'arrière-plan personnalisée",
+ "upload": "Ajouter",
+ "add_colour": "Ajouter une couleur",
+ "add_background": "Add background",
+ "drop_to_upload": "Drop to upload",
+ "formats": "Available formats: {list}",
+ "select": "Or Select",
+ "add_url": "Add URL",
+ "disabled": "Disabled",
+ "loop_video": "Boucle vidéo",
+ "mute_video": "Mettre la vidéo en sourdine",
+ "quality": {
+ "title": "Quality",
+ "original": "Original",
+ "high": "High Quality",
+ "normal": "Normal Quality",
+ "datasaver": "Data Saver"
+ },
+ "custom_title": "Custom Images",
+ "custom_description": "Select images from your local computer",
+ "remove": "Remove Image"
+ },
+ "display": "Display",
+ "display_subtitle": "Change how background and photo information are loaded",
+ "api": "API Settings",
+ "api_subtitle": "Options for getting an image from an external service (API)",
+ "interval": {
+ "title": "Change every",
+ "subtitle": "Change how often the background is updated",
+ "minute": "Minute",
+ "half_hour": "Half hour",
+ "hour": "Hour",
+ "day": "Day",
+ "month": "Month"
+ }
+ },
+ "search": {
+ "title": "Barre de Recherche",
+ "additional": "Additional options for search widget display and functionality",
+ "search_engine": "Moteur de recherche",
+ "search_engine_subtitle": "Choose search engine to use in the search bar",
+ "custom": "URL de recherche personnalisée",
+ "autocomplete": "Autocomplete",
+ "autocomplete_provider": "Autocomplete Provider",
+ "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
+ "voice_search": "Recherche vocale",
+ "dropdown": "Search dropdown",
+ "focus": "Focus on tab open"
+ },
+ "weather": {
+ "title": "Météo",
+ "location": "Emplacement",
+ "auto": "Auto",
+ "widget_type": "Widget Type",
+ "temp_format": {
+ "title": "Format de température",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Informations supplémentaires",
+ "show_location": "Afficher l'emplacement",
+ "show_description": "Show description",
+ "weather_description": "Weather description",
+ "cloudiness": "Cloudiness",
+ "humidity": "Humidité",
+ "visibility": "Visibility",
+ "wind_speed": "Vitesse du vent",
+ "wind_direction": "Wind direction",
+ "min_temp": "Température minimale",
+ "max_temp": "Température maximale",
+ "atmospheric_pressure": "Pression atmosphérique"
+ },
+ "options": {
+ "basic": "Basic",
+ "standard": "Standard",
+ "expanded": "Expanded",
+ "custom": "Custom"
+ },
+ "custom_settings": "Custom Settings"
+ },
+ "quicklinks": {
+ "title": "Liens rapides",
+ "additional": "Additional settings for quick links display and functions",
+ "open_new": "Ouvrir dans un nouvel onglet",
+ "tooltip": "Info-bulle",
+ "text_only": "Show text only",
+ "add_link": "Add Link",
+ "no_quicklinks": "No quicklinks",
+ "edit": "Edit",
+ "style": "Style",
+ "options": {
+ "icon": "Icon",
+ "text_only": "Text Only",
+ "metro": "Metro"
+ },
+ "styling": "Quick Links Styling",
+ "styling_description": "Customise Quick Links appearance"
+ },
+ "message": {
+ "title": "Message",
+ "add": "Add message",
+ "messages": "Messages",
+ "text": "Text",
+ "no_messages": "No messages",
+ "add_some": "Go ahead and add some.",
+ "content": "Message Content"
+ },
+ "appearance": {
+ "title": "Apparence",
+ "style": {
+ "title": "Widget Style",
+ "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
+ "legacy": "Legacy",
+ "new": "New"
+ },
+ "theme": {
+ "title": "Thème",
+ "description": "Change the theme of the Mue widgets and modals",
+ "auto": "Auto",
+ "light": "Clair",
+ "dark": "Sombre"
+ },
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button",
+ "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
+ "hover": "Only display on hover",
+ "additional": "Modify navbar style and which buttons you want to display",
+ "refresh_options": {
+ "none": "None",
+ "page": "Page"
+ }
+ },
+ "font": {
+ "title": "Font",
+ "description": "Change the font used in Mue",
+ "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": "Accessibilité",
+ "description": "Accessibility settings for Mue",
+ "animations": "Animations",
+ "text_shadow": {
+ "title": "Widget text shadow",
+ "new": "New",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "Zoom du widget",
+ "toast_duration": "Durée du toast",
+ "milliseconds": "millisecondes"
+ }
+ },
+ "order": {
+ "title": "Ordre des widgets"
+ },
+ "advanced": {
+ "title": "Avancée",
+ "offline_mode": "Mode hors-ligne",
+ "offline_subtitle": "When enabled, all requests to online services will be disabled.",
+ "data": "Donnés",
+ "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
+ "reset_modal": {
+ "title": "ATTENTION",
+ "question": "Voulez-vous réinitialiser Mue?",
+ "information": "Cela supprimera toutes les données. Si vous souhaitez conserver vos données et préférences, veuillez d'abord les exporter.",
+ "cancel": "Annuler"
+ },
+ "customisation": "Personnalisation",
+ "custom_css": "CSS personnalisé",
+ "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
+ "custom_js": "JS personnalisé",
+ "tab_name": "Nom de l'onglet",
+ "tab_name_subtitle": "Change the name of the tab that appears in your browser",
+ "timezone": {
+ "title": "Time Zone",
+ "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
+ "automatic": "Automatic"
+ },
+ "experimental_warning": "Veuillez noter que l'équipe Mue ne peut pas fournir d'assistance si vous avez activé le mode expérimental. Veuillez d'abord le désactiver et voir si le problème persiste avant de contacter le support."
+ },
+ "stats": {
+ "title": "Stats",
+ "sections": {
+ "tabs_opened": "Tabs opened",
+ "backgrounds_favourited": "Backgrounds favourited",
+ "backgrounds_downloaded": "Backgrounds downloaded",
+ "quotes_favourited": "Quotes favourited",
+ "quicklinks_added": "Quicklinks added",
+ "settings_changed": "Settings changed",
+ "addons_installed": "Add-ons installed"
+ },
+ "usage": "Usage Stats",
+ "achievements": "Achievements",
+ "unlocked": "{count} Unlocked"
+ },
+ "experimental": {
+ "title": "Expérimental",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer"
+ },
+ "language": {
+ "title": "Langue",
+ "quote": "Citation langue"
+ },
+ "changelog": {
+ "title": "Journal des modifications",
+ "by": "By {author}"
+ },
+ "about": {
+ "title": "à propos de",
+ "copyright": "Droits d'auteur",
+ "version": {
+ "title": "Version",
+ "checking_update": "Vérification de la mise à jour",
+ "update_available": "Mise à jour disponible",
+ "no_update": "Pas de mise a jour disponible",
+ "offline_mode": "Impossible de vérifier la mise à jour en mode hors ligne",
+ "error": {
+ "title": "Failed to get update information",
+ "description": "An error occured"
+ }
+ },
+ "contact_us": "Nous contacter",
+ "support_mue": "Soutenir Mue",
+ "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
+ "support_donate": "Donate",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "Ressources utilisées",
+ "bg_images": "Images d'arrière-plan hors ligne"
+ },
+ "contributors": "Collaborateurs",
+ "supporters": "Partisans",
+ "no_supporters": "There are currently no Mue supporters",
+ "photographers": "Photographes"
+ }
+ },
+ "buttons": {
+ "reset": "Réinitialiser",
+ "import": "Importer",
+ "export": "Exporter"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "All",
+ "learn_more": "Learn More",
+ "photo_packs": "Packs Photos",
+ "quote_packs": "Packs Citations",
+ "preset_settings": "Paramètres prédéfinis",
+ "no_items": "Aucun article dans cette catégorie",
+ "collection": "Collection",
+ "explore_collection": "Explore Collection",
+ "add_all": "Add All To Mue",
+ "collections": "Collections",
+ "cant_find": "Can't find what you're looking for?",
+ "knowledgebase_one": "Visit the",
+ "knowledgebase_two": "knowledgebase",
+ "knowledgebase_three": "to create your own.",
+ "product": {
+ "overview": "Aperçu",
+ "information": "Information",
+ "last_updated": "Dernière mise à jour",
+ "description": "Description",
+ "show_more": "Show More",
+ "show_less": "Show Less",
+ "show_all": "Show All",
+ "showing": "Showing",
+ "no_images": "No. Images",
+ "no_quotes": "No. Quotes",
+ "version": "Version",
+ "author": "Auteur",
+ "part_of": "Part of",
+ "explore": "Explore",
+ "buttons": {
+ "addtomue": "Ajouter à Mue",
+ "remove": "Enlever",
+ "update_addon": "Update Add-on",
+ "back": "Back",
+ "report": "Report"
+ },
+ "setting": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Hors ligne",
+ "description": "Veuillez vous connecter à Internet."
+ }
+ },
+ "addons": {
+ "added": "Ajoutées",
+ "check_updates": "Check for updates",
+ "no_updates": "No updates available",
+ "updates_available": "Updates available {amount}",
+ "empty": {
+ "title": "C'est vide par ici",
+ "description": "Dirigez vous vers le marché pour ajouter des options"
+ },
+ "sideload": {
+ "title": "Charger",
+ "description": "Install a Mue addon not on the marketplace from your computer",
+ "failed": "Failed to sideload addon",
+ "errors": {
+ "no_name": "No name provided",
+ "no_author": "No author provided",
+ "no_type": "No type provided",
+ "invalid_photos": "Invalid photos object",
+ "invalid_quotes": "Invalid quotes object"
+ }
+ },
+ "sort": {
+ "title": "Sort",
+ "newest": "Installed (Newest)",
+ "oldest": "Installed (Oldest)",
+ "a_z": "Alphabetical (A-Z)",
+ "z_a": "Alphabetical (Z-A)"
+ },
+ "create": {
+ "title": "Create",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Mettre à jour",
+ "offline": {
+ "title": "Hors",
+ "description": "Vous ne pouvez pas obtenir de mise à jour si vous êtes hors ligne"
+ },
+ "error": {
+ "title": "Erreur",
+ "description": "Impossible de se connecter au serveur"
+ }
+ },
+ "welcome": {
+ "tip": "Quick Tip",
+ "sections": {
+ "intro": {
+ "title": "Bienvenue en Mue Tab",
+ "description": "Merci d'avoir installé Mue, nous espérons que vous apprécierez votre temps avec notre extension.",
+ "notices": {
+ "discord_title": "Join our Discord",
+ "discord_description": "Talk with the Mue community and developers",
+ "discord_join": "Join",
+ "github_title": "Contribute on GitHub",
+ "github_description": "Report bugs, add features or donate",
+ "github_open": "Open"
+ }
+ },
+ "language": {
+ "title": "Choose your language",
+ "description": "Mue can be displayed the languages listed below. You can also add new translations on our"
+ },
+ "theme": {
+ "title": "Select a theme",
+ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
+ "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes."
+ },
+ "style": {
+ "title": "Choose a style",
+ "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
+ "legacy": "Legacy",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "Import Settings",
+ "description": "Installing Mue on a new device? Feel free to import your old settings!",
+ "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation."
+ },
+ "privacy": {
+ "title": "Privacy Options",
+ "description": "Enable settings to further protect your privacy with Mue.",
+ "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
+ "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
+ "links": {
+ "title": "Links",
+ "privacy_policy": "Privacy Policy",
+ "source_code": "Source Code"
+ }
+ },
+ "final": {
+ "title": "Final step",
+ "description": "Your Mue Tab experience is about to begin.",
+ "changes": "Changes",
+ "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
+ "imported": "Imported {amount} settings"
+ }
+ },
+ "buttons": {
+ "next": "Next",
+ "preview": "Preview",
+ "previous": "Previous",
+ "close": "Fermer"
+ },
+ "preview": {
+ "description": "You are currently in preview mode. Settings will be reset on closing this tab.",
+ "continue": "Continue setup"
+ }
+ },
+ "share": {
+ "copy_link": "Copy link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Citation copiée",
+ "notes": "Remarques copiée",
+ "reset": "Réinitialisé avec succès",
+ "installed": "Installé avec succès",
+ "uninstalled": "Enlevé avec succès",
+ "updated": "Successfully updated",
+ "error": "Quelque chose s'est mal passé",
+ "imported": "Importé avec succès",
+ "no_storage": "Not enough storage",
+ "link_copied": "Link copied"
}
}
diff --git a/src/translations/id_ID.json b/src/translations/id_ID.json
index f6d4a8b1..6a91b198 100644
--- a/src/translations/id_ID.json
+++ b/src/translations/id_ID.json
@@ -567,57 +567,9 @@
},
"create": {
"title": "Buat",
- "example": "Example",
- "other_title": "Buat Add-on",
- "create_type": "Create {type} Pack",
- "types": {
- "settings": "Preset Settings Pack",
- "photos": "Photo Pack",
- "quotes": "Quotes Pack"
- },
- "descriptions": {
- "settings": "Collection of settings to customise Mue.",
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic."
- },
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "import_custom": "Import from custom settings.",
- "publishing": {
- "title": "Next step, Publishing...",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "button": "Learn more"
- },
- "metadata": {
- "name": "Nama",
- "icon_url": "URL Ikon",
- "screenshot_url": "URL Screenshot",
- "description": "Deskripsi",
- "example": "Download example"
- },
- "finish": {
- "title": "Selesai",
- "download": "Unduh Add-on"
- },
- "settings": {
- "current": "Impor",
- "json": "Unggah JSON"
- },
- "photos": {
- "title": "Tambahkan foto"
- },
- "quotes": {
- "title": "Tambahkan Kutipan",
- "api": {
- "title": "API",
- "url": "URL Kutipan",
- "name": "Nama Kutipan",
- "author": "Penulis kutipan"
- },
- "local": {
- "title": "Lokal"
- }
- }
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
}
}
},
diff --git a/src/translations/nl.json b/src/translations/nl.json
index 02867f35..4617077d 100644
--- a/src/translations/nl.json
+++ b/src/translations/nl.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Toegevoegd",
- "check_updates": "Check for updates",
- "create": {
- "create_type": "Create {type} Pack",
- "descriptions": {
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Example",
- "finish": {
- "download": "Download Add-on",
- "title": "Finish"
- },
- "import_custom": "Import from custom settings.",
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "metadata": {
- "description": "Description",
- "example": "Download example",
- "icon_url": "Icon URL",
- "name": "Name",
- "screenshot_url": "Screenshot URL"
- },
- "other_title": "Create Add-on",
- "photos": {
- "title": "Add Photos"
- },
- "publishing": {
- "button": "Learn more",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
- },
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Add Quotes"
- },
- "settings": {
- "current": "Import current setup",
- "json": "Upload JSON"
- },
- "title": "Create",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "Ga naar de marktplaats om een paar extensies toe te voegen",
- "title": "Het is hier erg leeg"
- },
- "no_updates": "No updates available",
- "sideload": {
- "description": "Install a Mue addon not on the marketplace from your computer",
- "errors": {
- "invalid_photos": "Invalid photos object",
- "invalid_quotes": "Invalid quotes object",
- "no_author": "No author provided",
- "no_name": "No name provided",
- "no_type": "No type provided"
- },
- "failed": "Failed to sideload addon",
- "title": "Sideloaden"
- },
- "sort": {
- "a_z": "Alphabetical (A-Z)",
- "newest": "Installed (Newest)",
- "oldest": "Installed (Oldest)",
- "title": "Sort",
- "z_a": "Alphabetical (Z-A)"
- },
- "updates_available": "Updates available {amount}"
- },
- "error_boundary": {
- "message": "Failed to load this component of Mue",
- "refresh": "Refresh",
- "report_error": "Send Error Report",
- "sent": "Sent!",
- "title": "Foutmelding"
- },
- "file_upload_error": "File is over 2MB",
- "loading": "Bezig met laden…",
- "marketplace": {
- "add_all": "Add All To Mue",
- "all": "All",
- "by": "by {author}",
- "cant_find": "Can't find what you're looking for?",
- "collection": "Collection",
- "collections": "Collections",
- "explore_collection": "Explore Collection",
- "knowledgebase_one": "Visit the",
- "knowledgebase_three": "to create your own.",
- "knowledgebase_two": "knowledgebase",
- "learn_more": "Learn More",
- "no_items": "No items in this category",
- "offline": {
- "description": "Maak verbinding met het internet",
- "title": "Het lijkt er op dat je niet verbonden bent het internet"
- },
- "photo_packs": "Fotoverzamelingen",
- "preset_settings": "Voorinstellingen",
- "product": {
- "author": "Maker",
- "buttons": {
- "addtomue": "Toevoegen aan Mue",
- "back": "Back",
- "remove": "Verwijderen",
- "report": "Report",
- "update_addon": "Update Add-on"
- },
- "description": "Description",
- "explore": "Explore",
- "information": "Informatie",
- "last_updated": "Laatst geüpdatet",
- "no_images": "No. Images",
- "no_quotes": "No. Quotes",
- "overview": "Overzicht",
- "part_of": "Part of",
- "setting": "Setting",
- "show_all": "Show All",
- "show_less": "Show Less",
- "show_more": "Show More",
- "showing": "Showing",
- "value": "Value",
- "version": "Versie"
- },
- "quote_packs": "Citaatverzamelingen"
- },
- "navbar": {
- "addons": "Mijn extensies",
- "marketplace": "Marktplaats",
- "settings": "Instellingen"
- },
- "settings": {
- "additional_settings": "Additional Settings",
- "buttons": {
- "export": "Exporteren",
- "import": "Importeren",
- "reset": "Herstellen"
- },
- "enabled": "Enabled",
- "open_knowledgebase": "Open Knowledgebase",
- "reminder": {
- "message": "In order for all of the changes to take place, the page must be refreshed.",
- "title": "NOTICE"
- },
- "sections": {
- "about": {
- "contact_us": "Contact Us",
- "contributors": "Contributors",
- "copyright": "Copyright",
- "form_button": "Form",
- "no_supporters": "There are currently no Mue supporters",
- "photographers": "Photographers",
- "resources_used": {
- "bg_images": "Offline background images",
- "title": "Resources used"
- },
- "support_donate": "Donate",
- "support_mue": "Support Mue",
- "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
- "supporters": "Supporters",
- "title": "About",
- "version": {
- "checking_update": "Checking for update",
- "error": {
- "description": "An error occured",
- "title": "Failed to get update information"
- },
- "no_update": "No update available",
- "offline_mode": "Cannot check for update in offline mode",
- "title": "Version",
- "update_available": "Update available"
- }
- },
- "advanced": {
- "custom_css": "Custom CSS",
- "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
- "custom_js": "Custom JS",
- "customisation": "Customisation",
- "data": "Data",
- "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
- "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_mode": "Offline-modus",
- "offline_subtitle": "When enabled, all requests to online services will be disabled.",
- "reset_modal": {
- "cancel": "Cancel",
- "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
- "question": "Do you want to reset Mue?",
- "title": "WARNING"
- },
- "tab_name": "Tab name",
- "tab_name_subtitle": "Change the name of the tab that appears in your browser",
- "timezone": {
- "automatic": "Automatic",
- "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
- "title": "Time Zone"
- },
- "title": "Advanced"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animations",
- "description": "Accessibility settings for Mue",
- "milliseconds": "milliseconds",
- "text_shadow": {
- "new": "New",
- "none": "None",
- "old": "Old",
- "title": "Widget text shadow"
- },
- "title": "Accessibility",
- "toast_duration": "Toast duration",
- "widget_zoom": "Widget zoom"
- },
- "font": {
- "custom": "Custom font",
- "description": "Change the font used in Mue",
- "google": "Import from Google Fonts",
- "style": {
- "italic": "Italic",
- "normal": "Normal",
- "oblique": "Oblique",
- "title": "Font style"
- },
- "title": "Font",
- "weight": {
- "bold": "Bold",
- "extra_bold": "Extra-Bold",
- "extra_light": "Extra Light",
- "light": "Light",
- "medium": "Medium",
- "normal": "Normal",
- "semi_bold": "Semi-Bold",
- "thin": "Thin",
- "title": "Font weight"
- }
- },
- "navbar": {
- "additional": "Modify navbar style and which buttons you want to display",
- "hover": "Only display on hover",
- "notes": "Notes",
- "refresh": "Refresh button",
- "refresh_options": {
- "none": "None",
- "page": "Page"
- },
- "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
- "title": "Navbar"
- },
- "style": {
- "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
- "legacy": "Legacy",
- "new": "New",
- "title": "Widget Style"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Dark",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "Light",
- "title": "Theme"
- },
- "title": "Appearance"
- },
- "background": {
- "api": "API Settings",
- "api_subtitle": "Options for getting an image from an external service (API)",
- "buttons": {
- "download": "Download",
- "favourite": "Favourite",
- "title": "Buttons",
- "view": "Weergave"
- },
- "categories": "Categories",
- "ddg_image_proxy": "Use DuckDuckGo image proxy",
- "display": "Display",
- "display_subtitle": "Change how background and photo information are loaded",
- "effects": {
- "blur": "Vervaging instellen",
- "brightness": "Adjust brightness",
- "filters": {
- "amount": "Filter amount",
- "contrast": "Contrast",
- "grayscale": "Grayscale",
- "invert": "Invert",
- "saturate": "Saturate",
- "sepia": "Sepia",
- "title": "Background filter"
- },
- "subtitle": "Add effects to the background images",
- "title": "Effects"
- },
- "interval": {
- "day": "Day",
- "half_hour": "Half hour",
- "hour": "Hour",
- "minute": "Minute",
- "month": "Month",
- "subtitle": "Change how often the background is updated",
- "title": "Change every"
- },
- "photo_information": "Show photo information",
- "show_map": "Show location map on photo information if available",
- "source": {
- "add_background": "Add background",
- "add_colour": "Kleur toevoegen",
- "add_url": "Add URL",
- "api": "Achtergrond-api",
- "custom_background": "Aangepaste achtergrond",
- "custom_colour": "Aangepaste achtergrondkleur",
- "custom_description": "Select images from your local computer",
- "custom_title": "Custom Images",
- "disabled": "Uitgeschakeld",
- "drop_to_upload": "Drop to upload",
- "formats": "Available formats: {list}",
- "loop_video": "Loop video",
- "mute_video": "Mute video",
- "quality": {
- "datasaver": "Data Saver",
- "high": "High Quality",
- "normal": "Normal Quality",
- "original": "Original",
- "title": "Quality"
- },
- "remove": "Remove Image",
- "select": "Or Select",
- "subtitle": "Select where to get background images from",
- "title": "Source",
- "upload": "Uploaden"
- },
- "title": "Achtergrond",
- "transition": "Fade-in transition",
- "type": {
- "api": "API",
- "custom_colour": "Custom colour/gradient",
- "custom_image": "Custom image",
- "random_colour": "Random colour",
- "random_gradient": "Random gradient",
- "title": "Type"
- }
- },
- "changelog": {
- "by": "By {author}",
- "title": "Change Log"
- },
- "date": {
- "datenth": "Date nth",
- "day_of_week": "Day of week",
- "long_format": "Long format",
- "short_date": "Short date",
- "short_format": "Short format",
- "short_separator": {
- "dash": "Dash",
- "dots": "Dots",
- "gaps": "Gaps",
- "slashes": "Slashes",
- "title": "Short separator"
- },
- "title": "Date",
- "type": {
- "long": "Long",
- "short": "Short",
- "subtitle": "Whether to display the date in long form or short form"
- },
- "type_settings": "Display settings and format for the selected date type",
- "week_number": "Week number"
- },
- "experimental": {
- "developer": "Developer",
- "title": "Experimenteel",
- "warning": "These settings have not been fully tested/implemented and may not work correctly!"
- },
- "greeting": {
- "additional": "Settings for the greeting display",
- "birthday": "Birthday",
- "birthday_age": "Birthday age",
- "birthday_date": "Birthday date",
- "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
- "default": "Standaard begroetingsnaam",
- "events": "Gebeurtenissen",
- "name": "Naam van begroeting",
- "title": "Begroetingen"
- },
- "header": {
- "enabled": "Choose whether or not to show this widget",
- "more_info": "More info",
- "report_issue": "Report Issue",
- "size": "Slider to control how large the widget is"
- },
- "language": {
- "quote": "Quote language",
- "title": "Taal"
- },
- "message": {
- "add": "Add message",
- "add_some": "Go ahead and add some.",
- "content": "Message Content",
- "messages": "Messages",
- "no_messages": "No messages",
- "text": "Text",
- "title": "Message"
- },
- "order": {
- "title": "Widget Order"
- },
- "quicklinks": {
- "add_link": "Add Link",
- "additional": "Additional settings for quick links display and functions",
- "edit": "Edit",
- "no_quicklinks": "No quicklinks",
- "open_new": "Open in new tab",
- "options": {
- "icon": "Icon",
- "metro": "Metro",
- "text_only": "Text Only"
- },
- "style": "Style",
- "styling": "Quick Links Styling",
- "styling_description": "Customise Quick Links appearance",
- "text_only": "Show text only",
- "title": "Quick Links",
- "tooltip": "Tooltip"
- },
- "quote": {
- "add": "Add quote",
- "additional": "Other settings to customise the style of the quote widget",
- "author": "Author",
- "author_img": "Show author image",
- "author_link": "Author link",
- "buttons": {
- "copy": "Kopieerknop",
- "favourite": "Knop 'Toevoegen aan favorieten'",
- "subtitle": "Choose which buttons to show on the quote",
- "title": "Buttons",
- "tweet": "Tweetknop"
- },
- "custom": "Custom quote",
- "custom_author": "Custom author",
- "custom_buttons": "Buttons",
- "custom_subtitle": "Set your own custom quotes",
- "no_quotes": "No quotes",
- "source_subtitle": "Choose where to get quotes from",
- "title": "Citaat"
- },
- "search": {
- "additional": "Additional options for search widget display and functionality",
- "autocomplete": "Autocomplete",
- "autocomplete_provider": "Autocomplete Provider",
- "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
- "custom": "Aangepaste zoekmachine-url",
- "dropdown": "Search dropdown",
- "focus": "Focus on tab open",
- "search_engine": "Zoekmachine",
- "search_engine_subtitle": "Choose search engine to use in the search bar",
- "title": "Zoekbalk",
- "voice_search": "Spraakgestuurd zoeken gebruiken"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "Add-ons installed",
- "backgrounds_downloaded": "Backgrounds downloaded",
- "backgrounds_favourited": "Backgrounds favourited",
- "quicklinks_added": "Quicklinks added",
- "quotes_favourited": "Quotes favourited",
- "settings_changed": "Settings changed",
- "tabs_opened": "Tabs opened"
- },
- "title": "Stats",
- "unlocked": "{count} Unlocked",
- "usage": "Usage Stats"
- },
- "time": {
- "analogue": {
- "hour_hand": "Hours hand",
- "hour_marks": "Hour marks",
- "minute_hand": "Minutes hand",
- "minute_marks": "Minute marks",
- "round_clock": "Rounded background",
- "second_hand": "Seconds hand",
- "subtitle": "Change how the analogue clock looks",
- "title": "Analogue"
- },
- "digital": {
- "seconds": "Seconden tonen",
- "subtitle": "Change how the digital clock looks",
- "title": "Digital",
- "twelvehour": "12-uursklok gebruiken",
- "twentyfourhour": "24-uursklok gebruiken",
- "zero": "Nulopvulling"
- },
- "format": "Format",
- "percentage_complete": "Percentage complete",
- "title": "Tijd",
- "type": "Type",
- "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
- "vertical_clock": {
- "change_hour_colour": "Change hour text colour",
- "change_minute_colour": "Change minute text colour",
- "title": "Vertical Clock"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Custom Settings",
- "extra_info": {
- "atmospheric_pressure": "Atmospheric pressure",
- "cloudiness": "Cloudiness",
- "humidity": "Humidity",
- "max_temp": "Maximum temperature",
- "min_temp": "Minimum temperature",
- "show_description": "Show description",
- "show_location": "Show location",
- "title": "Extra information",
- "visibility": "Visibility",
- "weather_description": "Weather description",
- "wind_direction": "Wind direction",
- "wind_speed": "Wind speed"
- },
- "location": "Location",
- "options": {
- "basic": "Basic",
- "custom": "Custom",
- "expanded": "Expanded",
- "standard": "Standard"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Temperature format"
- },
- "title": "Weather",
- "widget_type": "Widget Type"
- }
- }
- },
- "title": "Opties"
- },
- "share": {
- "copy_link": "Copy link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "Could not connect to the server",
- "title": "Error"
- },
- "offline": {
- "description": "Cannot get update logs while in offline mode",
- "title": "Offline"
- },
- "title": "Update"
- },
- "welcome": {
- "buttons": {
- "close": "Close",
- "next": "Next",
- "preview": "Preview",
- "previous": "Previous"
- },
- "preview": {
- "continue": "Continue setup",
- "description": "You are currently in preview mode. Settings will be reset on closing this tab."
- },
- "sections": {
- "final": {
- "changes": "Changes",
- "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
- "description": "Your Mue Tab experience is about to begin.",
- "imported": "Imported {amount} settings",
- "title": "Final step"
- },
- "intro": {
- "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
- "notices": {
- "discord_description": "Talk with the Mue community and developers",
- "discord_join": "Join",
- "discord_title": "Join our Discord",
- "github_description": "Report bugs, add features or donate",
- "github_open": "Open",
- "github_title": "Contribute on GitHub"
- },
- "title": "Welcome to Mue Tab"
- },
- "language": {
- "description": "Mue can be displayed the languages listed below. You can also add new translations on our",
- "title": "Choose your language"
- },
- "privacy": {
- "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
- "description": "Enable settings to further protect your privacy with Mue.",
- "links": {
- "privacy_policy": "Privacy Policy",
- "source_code": "Source Code",
- "title": "Links"
- },
- "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
- "title": "Privacy Options"
- },
- "settings": {
- "description": "Installing Mue on a new device? Feel free to import your old settings!",
- "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation.",
- "title": "Import Settings"
- },
- "style": {
- "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
- "legacy": "Legacy",
- "modern": "Modern",
- "title": "Choose a style"
- },
- "theme": {
- "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
- "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes.",
- "title": "Select a theme"
- }
- },
- "tip": "Quick Tip"
- }
- },
"tabname": "New Tab",
- "toasts": {
- "error": "Er is iets misgegaan",
- "imported": "Het importeren is voltooid",
- "installed": "De installatie is voltooid",
- "link_copied": "Link copied",
- "no_storage": "Not enough storage",
- "notes": "Notes copied",
- "quote": "Het citaat is gekopieerd",
- "reset": "Het herstellen is voltooid",
- "uninstalled": "Het verwijderen is voltooid",
- "updated": "Successfully updated"
- },
"widgets": {
+ "greeting": {
+ "morning": "Goedemorgen",
+ "afternoon": "Goedemiddag",
+ "evening": "Goedenavond",
+ "christmas": "Fijne kerstdagen",
+ "newyear": "Gelukkig nieuwjaar",
+ "halloween": "Fijne Halloween",
+ "birthday": "Happy Birthday"
+ },
"background": {
- "camera": "Camera",
- "category": "Category",
- "confirm": "Confirm",
"credit": "Foto van",
+ "unsplash": "on Unsplash",
+ "information": "Information",
"download": "Download",
"downloads": "Downloaden",
- "exclude": "Don't show again",
- "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
- "information": "Information",
+ "views": "Keer bekeken",
"likes": "houdt van",
"location": "Location",
+ "camera": "Camera",
"resolution": "Resolution",
"source": "Source",
- "unsplash": "on Unsplash",
- "views": "Keer bekeken"
+ "category": "Category",
+ "exclude": "Don't show again",
+ "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
+ "confirm": "Confirm"
+ },
+ "search": "Zoeken",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "icon": "Icon (optional)",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
},
"date": {
"week": "Week"
},
- "greeting": {
- "afternoon": "Goedemiddag",
- "birthday": "Happy Birthday",
- "christmas": "Fijne kerstdagen",
- "evening": "Goedenavond",
- "halloween": "Fijne Halloween",
- "morning": "Goedemorgen",
- "newyear": "Gelukkig nieuwjaar"
- },
- "navbar": {
- "notes": {
- "placeholder": "Type here",
- "title": "Notes"
- },
- "todo": {
- "add": "Add",
- "no_todos": "No Todos",
- "pin": "Pin",
- "title": "Todo"
- },
- "tooltips": {
- "refresh": "Refresh"
- }
- },
- "quicklinks": {
- "add": "Add",
- "icon": "Icon (optional)",
- "name": "Name",
- "name_error": "Must provide name",
- "new": "New Link",
- "url": "URL",
- "url_error": "Must provide URL"
+ "weather": {
+ "not_found": "Not Found",
+ "meters": "{amount} meter",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
},
"quote": {
- "copy": "Copy",
- "favourite": "Favourite",
"link_tooltip": "Open on Wikipedia",
"share": "Share",
+ "copy": "Copy",
+ "favourite": "Favourite",
"unfavourite": "Unfavourite"
},
- "search": "Zoeken",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount} meter",
- "not_found": "Not Found"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Refresh"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ },
+ "todo": {
+ "title": "Todo",
+ "pin": "Pin",
+ "add": "Add",
+ "no_todos": "No Todos"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Opties",
+ "loading": "Bezig met laden…",
+ "file_upload_error": "File is over 2MB",
+ "navbar": {
+ "settings": "Instellingen",
+ "addons": "Mijn extensies",
+ "marketplace": "Marktplaats"
+ },
+ "error_boundary": {
+ "title": "Foutmelding",
+ "message": "Failed to load this component of Mue",
+ "report_error": "Send Error Report",
+ "sent": "Sent!",
+ "refresh": "Refresh"
+ },
+ "settings": {
+ "enabled": "Enabled",
+ "open_knowledgebase": "Open Knowledgebase",
+ "additional_settings": "Additional Settings",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
+ "sections": {
+ "header": {
+ "more_info": "More info",
+ "report_issue": "Report Issue",
+ "enabled": "Choose whether or not to show this widget",
+ "size": "Slider to control how large the widget is"
+ },
+ "time": {
+ "title": "Tijd",
+ "format": "Format",
+ "type": "Type",
+ "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
+ "digital": {
+ "title": "Digital",
+ "subtitle": "Change how the digital clock looks",
+ "seconds": "Seconden tonen",
+ "twentyfourhour": "24-uursklok gebruiken",
+ "twelvehour": "12-uursklok gebruiken",
+ "zero": "Nulopvulling"
+ },
+ "analogue": {
+ "title": "Analogue",
+ "subtitle": "Change how the analogue clock looks",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks",
+ "round_clock": "Rounded background"
+ },
+ "percentage_complete": "Percentage complete",
+ "vertical_clock": {
+ "title": "Vertical Clock",
+ "change_hour_colour": "Change hour text colour",
+ "change_minute_colour": "Change minute text colour"
+ }
+ },
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long",
+ "subtitle": "Whether to display the date in long form or short form"
+ },
+ "type_settings": "Display settings and format for the selected date type",
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "long_format": "Long format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
+ },
+ "quote": {
+ "title": "Citaat",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "Author link",
+ "custom": "Custom quote",
+ "custom_subtitle": "Set your own custom quotes",
+ "no_quotes": "No quotes",
+ "author": "Author",
+ "custom_buttons": "Buttons",
+ "custom_author": "Custom author",
+ "author_img": "Show author image",
+ "add": "Add quote",
+ "source_subtitle": "Choose where to get quotes from",
+ "buttons": {
+ "title": "Buttons",
+ "subtitle": "Choose which buttons to show on the quote",
+ "copy": "Kopieerknop",
+ "tweet": "Tweetknop",
+ "favourite": "Knop 'Toevoegen aan favorieten'"
+ }
+ },
+ "greeting": {
+ "title": "Begroetingen",
+ "events": "Gebeurtenissen",
+ "default": "Standaard begroetingsnaam",
+ "name": "Naam van begroeting",
+ "birthday": "Birthday",
+ "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date",
+ "additional": "Settings for the greeting display"
+ },
+ "background": {
+ "title": "Achtergrond",
+ "ddg_image_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "photo_information": "Show photo information",
+ "show_map": "Show location map on photo information if available",
+ "categories": "Categories",
+ "buttons": {
+ "title": "Buttons",
+ "view": "Weergave",
+ "favourite": "Favourite",
+ "download": "Download"
+ },
+ "effects": {
+ "title": "Effects",
+ "subtitle": "Add effects to the background images",
+ "blur": "Vervaging instellen",
+ "brightness": "Adjust brightness",
+ "filters": {
+ "title": "Background filter",
+ "amount": "Filter amount",
+ "grayscale": "Grayscale",
+ "sepia": "Sepia",
+ "invert": "Invert",
+ "saturate": "Saturate",
+ "contrast": "Contrast"
+ }
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient",
+ "random_colour": "Random colour",
+ "random_gradient": "Random gradient"
+ },
+ "source": {
+ "title": "Source",
+ "subtitle": "Select where to get background images from",
+ "api": "Achtergrond-api",
+ "custom_background": "Aangepaste achtergrond",
+ "custom_colour": "Aangepaste achtergrondkleur",
+ "upload": "Uploaden",
+ "add_colour": "Kleur toevoegen",
+ "add_background": "Add background",
+ "drop_to_upload": "Drop to upload",
+ "formats": "Available formats: {list}",
+ "select": "Or Select",
+ "add_url": "Add URL",
+ "disabled": "Uitgeschakeld",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video",
+ "quality": {
+ "title": "Quality",
+ "original": "Original",
+ "high": "High Quality",
+ "normal": "Normal Quality",
+ "datasaver": "Data Saver"
+ },
+ "custom_title": "Custom Images",
+ "custom_description": "Select images from your local computer",
+ "remove": "Remove Image"
+ },
+ "display": "Display",
+ "display_subtitle": "Change how background and photo information are loaded",
+ "api": "API Settings",
+ "api_subtitle": "Options for getting an image from an external service (API)",
+ "interval": {
+ "title": "Change every",
+ "subtitle": "Change how often the background is updated",
+ "minute": "Minute",
+ "half_hour": "Half hour",
+ "hour": "Hour",
+ "day": "Day",
+ "month": "Month"
+ }
+ },
+ "search": {
+ "title": "Zoekbalk",
+ "additional": "Additional options for search widget display and functionality",
+ "search_engine": "Zoekmachine",
+ "search_engine_subtitle": "Choose search engine to use in the search bar",
+ "custom": "Aangepaste zoekmachine-url",
+ "autocomplete": "Autocomplete",
+ "autocomplete_provider": "Autocomplete Provider",
+ "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
+ "voice_search": "Spraakgestuurd zoeken gebruiken",
+ "dropdown": "Search dropdown",
+ "focus": "Focus on tab open"
+ },
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "widget_type": "Widget Type",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show location",
+ "show_description": "Show description",
+ "weather_description": "Weather description",
+ "cloudiness": "Cloudiness",
+ "humidity": "Humidity",
+ "visibility": "Visibility",
+ "wind_speed": "Wind speed",
+ "wind_direction": "Wind direction",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ },
+ "options": {
+ "basic": "Basic",
+ "standard": "Standard",
+ "expanded": "Expanded",
+ "custom": "Custom"
+ },
+ "custom_settings": "Custom Settings"
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "additional": "Additional settings for quick links display and functions",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip",
+ "text_only": "Show text only",
+ "add_link": "Add Link",
+ "no_quicklinks": "No quicklinks",
+ "edit": "Edit",
+ "style": "Style",
+ "options": {
+ "icon": "Icon",
+ "text_only": "Text Only",
+ "metro": "Metro"
+ },
+ "styling": "Quick Links Styling",
+ "styling_description": "Customise Quick Links appearance"
+ },
+ "message": {
+ "title": "Message",
+ "add": "Add message",
+ "messages": "Messages",
+ "text": "Text",
+ "no_messages": "No messages",
+ "add_some": "Go ahead and add some.",
+ "content": "Message Content"
+ },
+ "appearance": {
+ "title": "Appearance",
+ "style": {
+ "title": "Widget Style",
+ "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
+ "legacy": "Legacy",
+ "new": "New"
+ },
+ "theme": {
+ "title": "Theme",
+ "description": "Change the theme of the Mue widgets and modals",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button",
+ "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
+ "hover": "Only display on hover",
+ "additional": "Modify navbar style and which buttons you want to display",
+ "refresh_options": {
+ "none": "None",
+ "page": "Page"
+ }
+ },
+ "font": {
+ "title": "Font",
+ "description": "Change the font used in Mue",
+ "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",
+ "description": "Accessibility settings for Mue",
+ "animations": "Animations",
+ "text_shadow": {
+ "title": "Widget text shadow",
+ "new": "New",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
+ },
+ "advanced": {
+ "title": "Advanced",
+ "offline_mode": "Offline-modus",
+ "offline_subtitle": "When enabled, all requests to online services will be disabled.",
+ "data": "Data",
+ "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
+ "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_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "tab_name_subtitle": "Change the name of the tab that appears in your browser",
+ "timezone": {
+ "title": "Time Zone",
+ "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
+ "automatic": "Automatic"
+ },
+ "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."
+ },
+ "stats": {
+ "title": "Stats",
+ "sections": {
+ "tabs_opened": "Tabs opened",
+ "backgrounds_favourited": "Backgrounds favourited",
+ "backgrounds_downloaded": "Backgrounds downloaded",
+ "quotes_favourited": "Quotes favourited",
+ "quicklinks_added": "Quicklinks added",
+ "settings_changed": "Settings changed",
+ "addons_installed": "Add-ons installed"
+ },
+ "usage": "Usage Stats",
+ "achievements": "Achievements",
+ "unlocked": "{count} Unlocked"
+ },
+ "experimental": {
+ "title": "Experimenteel",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer"
+ },
+ "language": {
+ "title": "Taal",
+ "quote": "Quote language"
+ },
+ "changelog": {
+ "title": "Change Log",
+ "by": "By {author}"
+ },
+ "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",
+ "error": {
+ "title": "Failed to get update information",
+ "description": "An error occured"
+ }
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
+ "support_donate": "Donate",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "no_supporters": "There are currently no Mue supporters",
+ "photographers": "Photographers"
+ }
+ },
+ "buttons": {
+ "reset": "Herstellen",
+ "import": "Importeren",
+ "export": "Exporteren"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "All",
+ "learn_more": "Learn More",
+ "photo_packs": "Fotoverzamelingen",
+ "quote_packs": "Citaatverzamelingen",
+ "preset_settings": "Voorinstellingen",
+ "no_items": "No items in this category",
+ "collection": "Collection",
+ "explore_collection": "Explore Collection",
+ "add_all": "Add All To Mue",
+ "collections": "Collections",
+ "cant_find": "Can't find what you're looking for?",
+ "knowledgebase_one": "Visit the",
+ "knowledgebase_two": "knowledgebase",
+ "knowledgebase_three": "to create your own.",
+ "product": {
+ "overview": "Overzicht",
+ "information": "Informatie",
+ "last_updated": "Laatst geüpdatet",
+ "description": "Description",
+ "show_more": "Show More",
+ "show_less": "Show Less",
+ "show_all": "Show All",
+ "showing": "Showing",
+ "no_images": "No. Images",
+ "no_quotes": "No. Quotes",
+ "version": "Versie",
+ "author": "Maker",
+ "part_of": "Part of",
+ "explore": "Explore",
+ "buttons": {
+ "addtomue": "Toevoegen aan Mue",
+ "remove": "Verwijderen",
+ "update_addon": "Update Add-on",
+ "back": "Back",
+ "report": "Report"
+ },
+ "setting": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Het lijkt er op dat je niet verbonden bent het internet",
+ "description": "Maak verbinding met het internet"
+ }
+ },
+ "addons": {
+ "added": "Toegevoegd",
+ "check_updates": "Check for updates",
+ "no_updates": "No updates available",
+ "updates_available": "Updates available {amount}",
+ "empty": {
+ "title": "Het is hier erg leeg",
+ "description": "Ga naar de marktplaats om een paar extensies toe te voegen"
+ },
+ "sideload": {
+ "title": "Sideloaden",
+ "description": "Install a Mue addon not on the marketplace from your computer",
+ "failed": "Failed to sideload addon",
+ "errors": {
+ "no_name": "No name provided",
+ "no_author": "No author provided",
+ "no_type": "No type provided",
+ "invalid_photos": "Invalid photos object",
+ "invalid_quotes": "Invalid quotes object"
+ }
+ },
+ "sort": {
+ "title": "Sort",
+ "newest": "Installed (Newest)",
+ "oldest": "Installed (Oldest)",
+ "a_z": "Alphabetical (A-Z)",
+ "z_a": "Alphabetical (Z-A)"
+ },
+ "create": {
+ "title": "Create",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "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"
+ }
+ },
+ "welcome": {
+ "tip": "Quick Tip",
+ "sections": {
+ "intro": {
+ "title": "Welcome to Mue Tab",
+ "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
+ "notices": {
+ "discord_title": "Join our Discord",
+ "discord_description": "Talk with the Mue community and developers",
+ "discord_join": "Join",
+ "github_title": "Contribute on GitHub",
+ "github_description": "Report bugs, add features or donate",
+ "github_open": "Open"
+ }
+ },
+ "language": {
+ "title": "Choose your language",
+ "description": "Mue can be displayed the languages listed below. You can also add new translations on our"
+ },
+ "theme": {
+ "title": "Select a theme",
+ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
+ "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes."
+ },
+ "style": {
+ "title": "Choose a style",
+ "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
+ "legacy": "Legacy",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "Import Settings",
+ "description": "Installing Mue on a new device? Feel free to import your old settings!",
+ "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation."
+ },
+ "privacy": {
+ "title": "Privacy Options",
+ "description": "Enable settings to further protect your privacy with Mue.",
+ "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
+ "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
+ "links": {
+ "title": "Links",
+ "privacy_policy": "Privacy Policy",
+ "source_code": "Source Code"
+ }
+ },
+ "final": {
+ "title": "Final step",
+ "description": "Your Mue Tab experience is about to begin.",
+ "changes": "Changes",
+ "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
+ "imported": "Imported {amount} settings"
+ }
+ },
+ "buttons": {
+ "next": "Next",
+ "preview": "Preview",
+ "previous": "Previous",
+ "close": "Close"
+ },
+ "preview": {
+ "description": "You are currently in preview mode. Settings will be reset on closing this tab.",
+ "continue": "Continue setup"
+ }
+ },
+ "share": {
+ "copy_link": "Copy link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Het citaat is gekopieerd",
+ "notes": "Notes copied",
+ "reset": "Het herstellen is voltooid",
+ "installed": "De installatie is voltooid",
+ "uninstalled": "Het verwijderen is voltooid",
+ "updated": "Successfully updated",
+ "error": "Er is iets misgegaan",
+ "imported": "Het importeren is voltooid",
+ "no_storage": "Not enough storage",
+ "link_copied": "Link copied"
}
}
diff --git a/src/translations/no.json b/src/translations/no.json
index ae6a4849..4551cbef 100644
--- a/src/translations/no.json
+++ b/src/translations/no.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Lagt til",
- "check_updates": "Check for updates",
- "create": {
- "create_type": "Create {type} Pack",
- "descriptions": {
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Example",
- "finish": {
- "download": "Download Add-on",
- "title": "Finish"
- },
- "import_custom": "Import from custom settings.",
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "metadata": {
- "description": "Description",
- "example": "Download example",
- "icon_url": "Icon URL",
- "name": "Name",
- "screenshot_url": "Screenshot URL"
- },
- "other_title": "Create Add-on",
- "photos": {
- "title": "Add Photos"
- },
- "publishing": {
- "button": "Learn more",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
- },
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Add Quotes"
- },
- "settings": {
- "current": "Import current setup",
- "json": "Upload JSON"
- },
- "title": "Create",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "Gå til markedsplassen å legg til noe",
- "title": "Det er tomt her."
- },
- "no_updates": "No updates available",
- "sideload": {
- "description": "Install a Mue addon not on the marketplace from your computer",
- "errors": {
- "invalid_photos": "Invalid photos object",
- "invalid_quotes": "Invalid quotes object",
- "no_author": "No author provided",
- "no_name": "No name provided",
- "no_type": "No type provided"
- },
- "failed": "Failed to sideload addon",
- "title": "Sideload"
- },
- "sort": {
- "a_z": "Alphabetical (A-Z)",
- "newest": "Installed (Newest)",
- "oldest": "Installed (Oldest)",
- "title": "Sort",
- "z_a": "Alphabetical (Z-A)"
- },
- "updates_available": "Updates available {amount}"
- },
- "error_boundary": {
- "message": "Failed to load this component of Mue",
- "refresh": "Refresh",
- "report_error": "Send Error Report",
- "sent": "Sent!",
- "title": "Error"
- },
- "file_upload_error": "File is over 2MB",
- "loading": "Laster...",
- "marketplace": {
- "add_all": "Add All To Mue",
- "all": "All",
- "by": "by {author}",
- "cant_find": "Can't find what you're looking for?",
- "collection": "Collection",
- "collections": "Collections",
- "explore_collection": "Explore Collection",
- "knowledgebase_one": "Visit the",
- "knowledgebase_three": "to create your own.",
- "knowledgebase_two": "knowledgebase",
- "learn_more": "Learn More",
- "no_items": "No items in this category",
- "offline": {
- "description": "Vær så snill, koble til internettet",
- "title": "Ser ut som at du er offiline"
- },
- "photo_packs": "Bilde pakker",
- "preset_settings": "Preset instillinger",
- "product": {
- "author": "Forfatter",
- "buttons": {
- "addtomue": "Legg Til Mue",
- "back": "Back",
- "remove": "Fjern",
- "report": "Report",
- "update_addon": "Update Add-on"
- },
- "description": "Description",
- "explore": "Explore",
- "information": "Informasjon",
- "last_updated": "Sist oppdatert",
- "no_images": "No. Images",
- "no_quotes": "No. Quotes",
- "overview": "Oversikt",
- "part_of": "Part of",
- "setting": "Setting",
- "show_all": "Show All",
- "show_less": "Show Less",
- "show_more": "Show More",
- "showing": "Showing",
- "value": "Value",
- "version": "Versjon"
- },
- "quote_packs": "Sitat pakker"
- },
- "navbar": {
- "addons": "Mine add-ons",
- "marketplace": "Markedsplass",
- "settings": "Instillinger"
- },
- "settings": {
- "additional_settings": "Additional Settings",
- "buttons": {
- "export": "Eksporter",
- "import": "Importer",
- "reset": "Nullstill"
- },
- "enabled": "Enabled",
- "open_knowledgebase": "Open Knowledgebase",
- "reminder": {
- "message": "In order for all of the changes to take place, the page must be refreshed.",
- "title": "NOTICE"
- },
- "sections": {
- "about": {
- "contact_us": "Contact Us",
- "contributors": "Contributors",
- "copyright": "Copyright",
- "form_button": "Form",
- "no_supporters": "There are currently no Mue supporters",
- "photographers": "Photographers",
- "resources_used": {
- "bg_images": "Offline background images",
- "title": "Resources used"
- },
- "support_donate": "Donate",
- "support_mue": "Support Mue",
- "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
- "supporters": "Supporters",
- "title": "About",
- "version": {
- "checking_update": "Checking for update",
- "error": {
- "description": "An error occured",
- "title": "Failed to get update information"
- },
- "no_update": "No update available",
- "offline_mode": "Cannot check for update in offline mode",
- "title": "Version",
- "update_available": "Update available"
- }
- },
- "advanced": {
- "custom_css": "Custom CSS",
- "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
- "custom_js": "Custom JS",
- "customisation": "Customisation",
- "data": "Data",
- "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
- "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_mode": "Frakoblet Modus",
- "offline_subtitle": "When enabled, all requests to online services will be disabled.",
- "reset_modal": {
- "cancel": "Cancel",
- "information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
- "question": "Do you want to reset Mue?",
- "title": "WARNING"
- },
- "tab_name": "Tab name",
- "tab_name_subtitle": "Change the name of the tab that appears in your browser",
- "timezone": {
- "automatic": "Automatic",
- "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
- "title": "Time Zone"
- },
- "title": "Advanced"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animasjoner",
- "description": "Accessibility settings for Mue",
- "milliseconds": "milliseconds",
- "text_shadow": {
- "new": "New",
- "none": "None",
- "old": "Old",
- "title": "Widget text shadow"
- },
- "title": "Accessibility",
- "toast_duration": "Toast duration",
- "widget_zoom": "Widget zoom"
- },
- "font": {
- "custom": "Custom font",
- "description": "Change the font used in Mue",
- "google": "Import from Google Fonts",
- "style": {
- "italic": "Italic",
- "normal": "Normal",
- "oblique": "Oblique",
- "title": "Font style"
- },
- "title": "Font",
- "weight": {
- "bold": "Bold",
- "extra_bold": "Extra-Bold",
- "extra_light": "Extra Light",
- "light": "Light",
- "medium": "Medium",
- "normal": "Normal",
- "semi_bold": "Semi-Bold",
- "thin": "Thin",
- "title": "Font weight"
- }
- },
- "navbar": {
- "additional": "Modify navbar style and which buttons you want to display",
- "hover": "Only display on hover",
- "notes": "Notes",
- "refresh": "Refresh button",
- "refresh_options": {
- "none": "None",
- "page": "Page"
- },
- "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
- "title": "Navbar"
- },
- "style": {
- "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
- "legacy": "Legacy",
- "new": "New",
- "title": "Widget Style"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Dark",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "Light",
- "title": "Theme"
- },
- "title": "Appearance"
- },
- "background": {
- "api": "API Settings",
- "api_subtitle": "Options for getting an image from an external service (API)",
- "buttons": {
- "download": "Download",
- "favourite": "Favourite",
- "title": "Buttons",
- "view": "Maximise"
- },
- "categories": "Categories",
- "ddg_image_proxy": "Use DuckDuckGo image proxy",
- "display": "Display",
- "display_subtitle": "Change how background and photo information are loaded",
- "effects": {
- "blur": "Juster Blur",
- "brightness": "Adjust brightness",
- "filters": {
- "amount": "Filter amount",
- "contrast": "Contrast",
- "grayscale": "Grayscale",
- "invert": "Invert",
- "saturate": "Saturate",
- "sepia": "Sepia",
- "title": "Background filter"
- },
- "subtitle": "Add effects to the background images",
- "title": "Effects"
- },
- "interval": {
- "day": "Day",
- "half_hour": "Half hour",
- "hour": "Hour",
- "minute": "Minute",
- "month": "Month",
- "subtitle": "Change how often the background is updated",
- "title": "Change every"
- },
- "photo_information": "Show photo information",
- "show_map": "Show location map on photo information if available",
- "source": {
- "add_background": "Add background",
- "add_colour": "Legg til farge",
- "add_url": "Add URL",
- "api": "Bakgrunn API",
- "custom_background": "Personlig bakgrunn",
- "custom_colour": "Personlig Bakgrunn Farge",
- "custom_description": "Select images from your local computer",
- "custom_title": "Custom Images",
- "disabled": "Disabled",
- "drop_to_upload": "Drop to upload",
- "formats": "Available formats: {list}",
- "loop_video": "Loop video",
- "mute_video": "Mute video",
- "quality": {
- "datasaver": "Data Saver",
- "high": "High Quality",
- "normal": "Normal Quality",
- "original": "Original",
- "title": "Quality"
- },
- "remove": "Remove Image",
- "select": "Or Select",
- "subtitle": "Select where to get background images from",
- "title": "Source",
- "upload": "Upload"
- },
- "title": "Bakgrunn",
- "transition": "Fade-in transition",
- "type": {
- "api": "API",
- "custom_colour": "Custom colour/gradient",
- "custom_image": "Custom image",
- "random_colour": "Random colour",
- "random_gradient": "Random gradient",
- "title": "Type"
- }
- },
- "changelog": {
- "by": "By {author}",
- "title": "Change Log"
- },
- "date": {
- "datenth": "Date nth",
- "day_of_week": "Day of week",
- "long_format": "Long format",
- "short_date": "Short date",
- "short_format": "Short format",
- "short_separator": {
- "dash": "Dash",
- "dots": "Dots",
- "gaps": "Gaps",
- "slashes": "Slashes",
- "title": "Short separator"
- },
- "title": "Date",
- "type": {
- "long": "Long",
- "short": "Short",
- "subtitle": "Whether to display the date in long form or short form"
- },
- "type_settings": "Display settings and format for the selected date type",
- "week_number": "Week number"
- },
- "experimental": {
- "developer": "Developer",
- "title": "Eksperimental",
- "warning": "These settings have not been fully tested/implemented and may not work correctly!"
- },
- "greeting": {
- "additional": "Settings for the greeting display",
- "birthday": "Birthday",
- "birthday_age": "Birthday age",
- "birthday_date": "Birthday date",
- "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
- "default": "Standard Hallo Melding",
- "events": "Planer",
- "name": "Navn for Hallo",
- "title": "Hallo"
- },
- "header": {
- "enabled": "Choose whether or not to show this widget",
- "more_info": "More info",
- "report_issue": "Report Issue",
- "size": "Slider to control how large the widget is"
- },
- "language": {
- "quote": "Quote language",
- "title": "Språk"
- },
- "message": {
- "add": "Add message",
- "add_some": "Go ahead and add some.",
- "content": "Message Content",
- "messages": "Messages",
- "no_messages": "No messages",
- "text": "Text",
- "title": "Message"
- },
- "order": {
- "title": "Widget Order"
- },
- "quicklinks": {
- "add_link": "Add Link",
- "additional": "Additional settings for quick links display and functions",
- "edit": "Edit",
- "no_quicklinks": "No quicklinks",
- "open_new": "Open in new tab",
- "options": {
- "icon": "Icon",
- "metro": "Metro",
- "text_only": "Text Only"
- },
- "style": "Style",
- "styling": "Quick Links Styling",
- "styling_description": "Customise Quick Links appearance",
- "text_only": "Show text only",
- "title": "Quick Links",
- "tooltip": "Tooltip"
- },
- "quote": {
- "add": "Add quote",
- "additional": "Other settings to customise the style of the quote widget",
- "author": "Author",
- "author_img": "Show author image",
- "author_link": "Author link",
- "buttons": {
- "copy": "Kopier knapp",
- "favourite": "Favourite",
- "subtitle": "Choose which buttons to show on the quote",
- "title": "Buttons",
- "tweet": "Tweet"
- },
- "custom": "Custom quote",
- "custom_author": "Custom author",
- "custom_buttons": "Buttons",
- "custom_subtitle": "Set your own custom quotes",
- "no_quotes": "No quotes",
- "source_subtitle": "Choose where to get quotes from",
- "title": "Sitat"
- },
- "search": {
- "additional": "Additional options for search widget display and functionality",
- "autocomplete": "Autocomplete",
- "autocomplete_provider": "Autocomplete Provider",
- "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
- "custom": "Custom search URL",
- "dropdown": "Search dropdown",
- "focus": "Focus on tab open",
- "search_engine": "Søkemotor",
- "search_engine_subtitle": "Choose search engine to use in the search bar",
- "title": "Søkebar",
- "voice_search": "Voice search"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "Add-ons installed",
- "backgrounds_downloaded": "Backgrounds downloaded",
- "backgrounds_favourited": "Backgrounds favourited",
- "quicklinks_added": "Quicklinks added",
- "quotes_favourited": "Quotes favourited",
- "settings_changed": "Settings changed",
- "tabs_opened": "Tabs opened"
- },
- "title": "Stats",
- "unlocked": "{count} Unlocked",
- "usage": "Usage Stats"
- },
- "time": {
- "analogue": {
- "hour_hand": "Hours hand",
- "hour_marks": "Hour marks",
- "minute_hand": "Minutes hand",
- "minute_marks": "Minute marks",
- "round_clock": "Rounded background",
- "second_hand": "Seconds hand",
- "subtitle": "Change how the analogue clock looks",
- "title": "Analogue"
- },
- "digital": {
- "seconds": "Sekunder",
- "subtitle": "Change how the digital clock looks",
- "title": "Digital",
- "twelvehour": "12 hour",
- "twentyfourhour": "24 Timer",
- "zero": "Ekstra Null"
- },
- "format": "Format",
- "percentage_complete": "Percentage complete",
- "title": "Tid",
- "type": "Type",
- "type_subtitle": "Choose whether to display the time in digital or analogue format, or a percentage completion of the day",
- "vertical_clock": {
- "change_hour_colour": "Change hour text colour",
- "change_minute_colour": "Change minute text colour",
- "title": "Vertical Clock"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Custom Settings",
- "extra_info": {
- "atmospheric_pressure": "Atmospheric pressure",
- "cloudiness": "Cloudiness",
- "humidity": "Humidity",
- "max_temp": "Maximum temperature",
- "min_temp": "Minimum temperature",
- "show_description": "Show description",
- "show_location": "Show location",
- "title": "Extra information",
- "visibility": "Visibility",
- "weather_description": "Weather description",
- "wind_direction": "Wind direction",
- "wind_speed": "Wind speed"
- },
- "location": "Location",
- "options": {
- "basic": "Basic",
- "custom": "Custom",
- "expanded": "Expanded",
- "standard": "Standard"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Temperature format"
- },
- "title": "Weather",
- "widget_type": "Widget Type"
- }
- }
- },
- "title": "Options"
- },
- "share": {
- "copy_link": "Copy link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "Kan ikke koble til serveren.",
- "title": "Error"
- },
- "offline": {
- "description": "Kan ikke få oppdatering loggene når i offline modus",
- "title": "Offline"
- },
- "title": "Oppdater"
- },
- "welcome": {
- "buttons": {
- "close": "Close",
- "next": "Next",
- "preview": "Preview",
- "previous": "Previous"
- },
- "preview": {
- "continue": "Continue setup",
- "description": "You are currently in preview mode. Settings will be reset on closing this tab."
- },
- "sections": {
- "final": {
- "changes": "Changes",
- "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
- "description": "Your Mue Tab experience is about to begin.",
- "imported": "Imported {amount} settings",
- "title": "Final step"
- },
- "intro": {
- "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
- "notices": {
- "discord_description": "Talk with the Mue community and developers",
- "discord_join": "Join",
- "discord_title": "Join our Discord",
- "github_description": "Report bugs, add features or donate",
- "github_open": "Open",
- "github_title": "Contribute on GitHub"
- },
- "title": "Welcome to Mue Tab"
- },
- "language": {
- "description": "Mue can be displayed the languages listed below. You can also add new translations on our",
- "title": "Choose your language"
- },
- "privacy": {
- "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
- "description": "Enable settings to further protect your privacy with Mue.",
- "links": {
- "privacy_policy": "Privacy Policy",
- "source_code": "Source Code",
- "title": "Links"
- },
- "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
- "title": "Privacy Options"
- },
- "settings": {
- "description": "Installing Mue on a new device? Feel free to import your old settings!",
- "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation.",
- "title": "Import Settings"
- },
- "style": {
- "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
- "legacy": "Legacy",
- "modern": "Modern",
- "title": "Choose a style"
- },
- "theme": {
- "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
- "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes.",
- "title": "Select a theme"
- }
- },
- "tip": "Quick Tip"
- }
- },
"tabname": "New Tab",
- "toasts": {
- "error": "Noe gikk galt",
- "imported": "Successfully imported",
- "installed": "Installert",
- "link_copied": "Link copied",
- "no_storage": "Not enough storage",
- "notes": "Notes copied",
- "quote": "Sitat kopiert",
- "reset": "Tilbakestillte vellykket",
- "uninstalled": "Fjernet",
- "updated": "Successfully updated"
- },
"widgets": {
+ "greeting": {
+ "morning": "God Morgen",
+ "afternoon": "God Ettermiddag",
+ "evening": "God Kveld",
+ "christmas": "God Jul",
+ "newyear": "Godt Nyttår",
+ "halloween": "Ha en god Halloween",
+ "birthday": "Happy Birthday"
+ },
"background": {
- "camera": "Camera",
- "category": "Category",
- "confirm": "Confirm",
"credit": "Bilde av",
+ "unsplash": "on Unsplash",
+ "information": "Information",
"download": "Download",
"downloads": "Nedlastinger",
- "exclude": "Don't show again",
- "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
- "information": "Information",
+ "views": "Views",
"likes": "Likes",
"location": "Location",
+ "camera": "Camera",
"resolution": "Resolution",
"source": "Source",
- "unsplash": "on Unsplash",
- "views": "Views"
+ "category": "Category",
+ "exclude": "Don't show again",
+ "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
+ "confirm": "Confirm"
+ },
+ "search": "Søk",
+ "quicklinks": {
+ "new": "New Link",
+ "name": "Name",
+ "url": "URL",
+ "icon": "Icon (optional)",
+ "add": "Add",
+ "name_error": "Must provide name",
+ "url_error": "Must provide URL"
},
"date": {
"week": "Week"
},
- "greeting": {
- "afternoon": "God Ettermiddag",
- "birthday": "Happy Birthday",
- "christmas": "God Jul",
- "evening": "God Kveld",
- "halloween": "Ha en god Halloween",
- "morning": "God Morgen",
- "newyear": "Godt Nyttår"
- },
- "navbar": {
- "notes": {
- "placeholder": "Type here",
- "title": "Notes"
- },
- "todo": {
- "add": "Add",
- "no_todos": "No Todos",
- "pin": "Pin",
- "title": "Todo"
- },
- "tooltips": {
- "refresh": "Refresh"
- }
- },
- "quicklinks": {
- "add": "Add",
- "icon": "Icon (optional)",
- "name": "Name",
- "name_error": "Must provide name",
- "new": "New Link",
- "url": "URL",
- "url_error": "Must provide URL"
+ "weather": {
+ "not_found": "Not Found",
+ "meters": "{amount} meter",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
},
"quote": {
- "copy": "Copy",
- "favourite": "Favourite",
"link_tooltip": "Open on Wikipedia",
"share": "Share",
+ "copy": "Copy",
+ "favourite": "Favourite",
"unfavourite": "Unfavourite"
},
- "search": "Søk",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount} meter",
- "not_found": "Not Found"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Refresh"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Type here"
+ },
+ "todo": {
+ "title": "Todo",
+ "pin": "Pin",
+ "add": "Add",
+ "no_todos": "No Todos"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Options",
+ "loading": "Laster...",
+ "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",
+ "report_error": "Send Error Report",
+ "sent": "Sent!",
+ "refresh": "Refresh"
+ },
+ "settings": {
+ "enabled": "Enabled",
+ "open_knowledgebase": "Open Knowledgebase",
+ "additional_settings": "Additional Settings",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "In order for all of the changes to take place, the page must be refreshed."
+ },
+ "sections": {
+ "header": {
+ "more_info": "More info",
+ "report_issue": "Report Issue",
+ "enabled": "Choose whether or not to show this widget",
+ "size": "Slider to control how large the widget is"
+ },
+ "time": {
+ "title": "Tid",
+ "format": "Format",
+ "type": "Type",
+ "type_subtitle": "Choose whether to display the time in digital or analogue format, or a percentage completion of the day",
+ "digital": {
+ "title": "Digital",
+ "subtitle": "Change how the digital clock looks",
+ "seconds": "Sekunder",
+ "twentyfourhour": "24 Timer",
+ "twelvehour": "12 hour",
+ "zero": "Ekstra Null"
+ },
+ "analogue": {
+ "title": "Analogue",
+ "subtitle": "Change how the analogue clock looks",
+ "second_hand": "Seconds hand",
+ "minute_hand": "Minutes hand",
+ "hour_hand": "Hours hand",
+ "hour_marks": "Hour marks",
+ "minute_marks": "Minute marks",
+ "round_clock": "Rounded background"
+ },
+ "percentage_complete": "Percentage complete",
+ "vertical_clock": {
+ "title": "Vertical Clock",
+ "change_hour_colour": "Change hour text colour",
+ "change_minute_colour": "Change minute text colour"
+ }
+ },
+ "date": {
+ "title": "Date",
+ "week_number": "Week number",
+ "day_of_week": "Day of week",
+ "datenth": "Date nth",
+ "type": {
+ "short": "Short",
+ "long": "Long",
+ "subtitle": "Whether to display the date in long form or short form"
+ },
+ "type_settings": "Display settings and format for the selected date type",
+ "short_date": "Short date",
+ "short_format": "Short format",
+ "long_format": "Long format",
+ "short_separator": {
+ "title": "Short separator",
+ "dots": "Dots",
+ "dash": "Dash",
+ "gaps": "Gaps",
+ "slashes": "Slashes"
+ }
+ },
+ "quote": {
+ "title": "Sitat",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "Author link",
+ "custom": "Custom quote",
+ "custom_subtitle": "Set your own custom quotes",
+ "no_quotes": "No quotes",
+ "author": "Author",
+ "custom_buttons": "Buttons",
+ "custom_author": "Custom author",
+ "author_img": "Show author image",
+ "add": "Add quote",
+ "source_subtitle": "Choose where to get quotes from",
+ "buttons": {
+ "title": "Buttons",
+ "subtitle": "Choose which buttons to show on the quote",
+ "copy": "Kopier knapp",
+ "tweet": "Tweet",
+ "favourite": "Favourite"
+ }
+ },
+ "greeting": {
+ "title": "Hallo",
+ "events": "Planer",
+ "default": "Standard Hallo Melding",
+ "name": "Navn for Hallo",
+ "birthday": "Birthday",
+ "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
+ "birthday_age": "Birthday age",
+ "birthday_date": "Birthday date",
+ "additional": "Settings for the greeting display"
+ },
+ "background": {
+ "title": "Bakgrunn",
+ "ddg_image_proxy": "Use DuckDuckGo image proxy",
+ "transition": "Fade-in transition",
+ "photo_information": "Show photo information",
+ "show_map": "Show location map on photo information if available",
+ "categories": "Categories",
+ "buttons": {
+ "title": "Buttons",
+ "view": "Maximise",
+ "favourite": "Favourite",
+ "download": "Download"
+ },
+ "effects": {
+ "title": "Effects",
+ "subtitle": "Add effects to the background images",
+ "blur": "Juster Blur",
+ "brightness": "Adjust brightness",
+ "filters": {
+ "title": "Background filter",
+ "amount": "Filter amount",
+ "grayscale": "Grayscale",
+ "sepia": "Sepia",
+ "invert": "Invert",
+ "saturate": "Saturate",
+ "contrast": "Contrast"
+ }
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Custom image",
+ "custom_colour": "Custom colour/gradient",
+ "random_colour": "Random colour",
+ "random_gradient": "Random gradient"
+ },
+ "source": {
+ "title": "Source",
+ "subtitle": "Select where to get background images from",
+ "api": "Bakgrunn API",
+ "custom_background": "Personlig bakgrunn",
+ "custom_colour": "Personlig Bakgrunn Farge",
+ "upload": "Upload",
+ "add_colour": "Legg til farge",
+ "add_background": "Add background",
+ "drop_to_upload": "Drop to upload",
+ "formats": "Available formats: {list}",
+ "select": "Or Select",
+ "add_url": "Add URL",
+ "disabled": "Disabled",
+ "loop_video": "Loop video",
+ "mute_video": "Mute video",
+ "quality": {
+ "title": "Quality",
+ "original": "Original",
+ "high": "High Quality",
+ "normal": "Normal Quality",
+ "datasaver": "Data Saver"
+ },
+ "custom_title": "Custom Images",
+ "custom_description": "Select images from your local computer",
+ "remove": "Remove Image"
+ },
+ "display": "Display",
+ "display_subtitle": "Change how background and photo information are loaded",
+ "api": "API Settings",
+ "api_subtitle": "Options for getting an image from an external service (API)",
+ "interval": {
+ "title": "Change every",
+ "subtitle": "Change how often the background is updated",
+ "minute": "Minute",
+ "half_hour": "Half hour",
+ "hour": "Hour",
+ "day": "Day",
+ "month": "Month"
+ }
+ },
+ "search": {
+ "title": "Søkebar",
+ "additional": "Additional options for search widget display and functionality",
+ "search_engine": "Søkemotor",
+ "search_engine_subtitle": "Choose search engine to use in the search bar",
+ "custom": "Custom search URL",
+ "autocomplete": "Autocomplete",
+ "autocomplete_provider": "Autocomplete Provider",
+ "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
+ "voice_search": "Voice search",
+ "dropdown": "Search dropdown",
+ "focus": "Focus on tab open"
+ },
+ "weather": {
+ "title": "Weather",
+ "location": "Location",
+ "auto": "Auto",
+ "widget_type": "Widget Type",
+ "temp_format": {
+ "title": "Temperature format",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Show location",
+ "show_description": "Show description",
+ "weather_description": "Weather description",
+ "cloudiness": "Cloudiness",
+ "humidity": "Humidity",
+ "visibility": "Visibility",
+ "wind_speed": "Wind speed",
+ "wind_direction": "Wind direction",
+ "min_temp": "Minimum temperature",
+ "max_temp": "Maximum temperature",
+ "atmospheric_pressure": "Atmospheric pressure"
+ },
+ "options": {
+ "basic": "Basic",
+ "standard": "Standard",
+ "expanded": "Expanded",
+ "custom": "Custom"
+ },
+ "custom_settings": "Custom Settings"
+ },
+ "quicklinks": {
+ "title": "Quick Links",
+ "additional": "Additional settings for quick links display and functions",
+ "open_new": "Open in new tab",
+ "tooltip": "Tooltip",
+ "text_only": "Show text only",
+ "add_link": "Add Link",
+ "no_quicklinks": "No quicklinks",
+ "edit": "Edit",
+ "style": "Style",
+ "options": {
+ "icon": "Icon",
+ "text_only": "Text Only",
+ "metro": "Metro"
+ },
+ "styling": "Quick Links Styling",
+ "styling_description": "Customise Quick Links appearance"
+ },
+ "message": {
+ "title": "Message",
+ "add": "Add message",
+ "messages": "Messages",
+ "text": "Text",
+ "no_messages": "No messages",
+ "add_some": "Go ahead and add some.",
+ "content": "Message Content"
+ },
+ "appearance": {
+ "title": "Appearance",
+ "style": {
+ "title": "Widget Style",
+ "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
+ "legacy": "Legacy",
+ "new": "New"
+ },
+ "theme": {
+ "title": "Theme",
+ "description": "Change the theme of the Mue widgets and modals",
+ "auto": "Auto",
+ "light": "Light",
+ "dark": "Dark"
+ },
+ "navbar": {
+ "title": "Navbar",
+ "notes": "Notes",
+ "refresh": "Refresh button",
+ "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
+ "hover": "Only display on hover",
+ "additional": "Modify navbar style and which buttons you want to display",
+ "refresh_options": {
+ "none": "None",
+ "page": "Page"
+ }
+ },
+ "font": {
+ "title": "Font",
+ "description": "Change the font used in Mue",
+ "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",
+ "description": "Accessibility settings for Mue",
+ "animations": "Animasjoner",
+ "text_shadow": {
+ "title": "Widget text shadow",
+ "new": "New",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Toast duration",
+ "milliseconds": "milliseconds"
+ }
+ },
+ "order": {
+ "title": "Widget Order"
+ },
+ "advanced": {
+ "title": "Advanced",
+ "offline_mode": "Frakoblet Modus",
+ "offline_subtitle": "When enabled, all requests to online services will be disabled.",
+ "data": "Data",
+ "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
+ "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_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
+ "custom_js": "Custom JS",
+ "tab_name": "Tab name",
+ "tab_name_subtitle": "Change the name of the tab that appears in your browser",
+ "timezone": {
+ "title": "Time Zone",
+ "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
+ "automatic": "Automatic"
+ },
+ "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."
+ },
+ "stats": {
+ "title": "Stats",
+ "sections": {
+ "tabs_opened": "Tabs opened",
+ "backgrounds_favourited": "Backgrounds favourited",
+ "backgrounds_downloaded": "Backgrounds downloaded",
+ "quotes_favourited": "Quotes favourited",
+ "quicklinks_added": "Quicklinks added",
+ "settings_changed": "Settings changed",
+ "addons_installed": "Add-ons installed"
+ },
+ "usage": "Usage Stats",
+ "achievements": "Achievements",
+ "unlocked": "{count} Unlocked"
+ },
+ "experimental": {
+ "title": "Eksperimental",
+ "warning": "These settings have not been fully tested/implemented and may not work correctly!",
+ "developer": "Developer"
+ },
+ "language": {
+ "title": "Språk",
+ "quote": "Quote language"
+ },
+ "changelog": {
+ "title": "Change Log",
+ "by": "By {author}"
+ },
+ "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",
+ "error": {
+ "title": "Failed to get update information",
+ "description": "An error occured"
+ }
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
+ "support_donate": "Donate",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "Resources used",
+ "bg_images": "Offline background images"
+ },
+ "contributors": "Contributors",
+ "supporters": "Supporters",
+ "no_supporters": "There are currently no Mue supporters",
+ "photographers": "Photographers"
+ }
+ },
+ "buttons": {
+ "reset": "Nullstill",
+ "import": "Importer",
+ "export": "Eksporter"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "All",
+ "learn_more": "Learn More",
+ "photo_packs": "Bilde pakker",
+ "quote_packs": "Sitat pakker",
+ "preset_settings": "Preset instillinger",
+ "no_items": "No items in this category",
+ "collection": "Collection",
+ "explore_collection": "Explore Collection",
+ "add_all": "Add All To Mue",
+ "collections": "Collections",
+ "cant_find": "Can't find what you're looking for?",
+ "knowledgebase_one": "Visit the",
+ "knowledgebase_two": "knowledgebase",
+ "knowledgebase_three": "to create your own.",
+ "product": {
+ "overview": "Oversikt",
+ "information": "Informasjon",
+ "last_updated": "Sist oppdatert",
+ "description": "Description",
+ "show_more": "Show More",
+ "show_less": "Show Less",
+ "show_all": "Show All",
+ "showing": "Showing",
+ "no_images": "No. Images",
+ "no_quotes": "No. Quotes",
+ "version": "Versjon",
+ "author": "Forfatter",
+ "part_of": "Part of",
+ "explore": "Explore",
+ "buttons": {
+ "addtomue": "Legg Til Mue",
+ "remove": "Fjern",
+ "update_addon": "Update Add-on",
+ "back": "Back",
+ "report": "Report"
+ },
+ "setting": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Ser ut som at du er offiline",
+ "description": "Vær så snill, koble til internettet"
+ }
+ },
+ "addons": {
+ "added": "Lagt til",
+ "check_updates": "Check for updates",
+ "no_updates": "No updates available",
+ "updates_available": "Updates available {amount}",
+ "empty": {
+ "title": "Det er tomt her.",
+ "description": "Gå til markedsplassen å legg til noe"
+ },
+ "sideload": {
+ "title": "Sideload",
+ "description": "Install a Mue addon not on the marketplace from your computer",
+ "failed": "Failed to sideload addon",
+ "errors": {
+ "no_name": "No name provided",
+ "no_author": "No author provided",
+ "no_type": "No type provided",
+ "invalid_photos": "Invalid photos object",
+ "invalid_quotes": "Invalid quotes object"
+ }
+ },
+ "sort": {
+ "title": "Sort",
+ "newest": "Installed (Newest)",
+ "oldest": "Installed (Oldest)",
+ "a_z": "Alphabetical (A-Z)",
+ "z_a": "Alphabetical (Z-A)"
+ },
+ "create": {
+ "title": "Create",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Oppdater",
+ "offline": {
+ "title": "Offline",
+ "description": "Kan ikke få oppdatering loggene når i offline modus"
+ },
+ "error": {
+ "title": "Error",
+ "description": "Kan ikke koble til serveren."
+ }
+ },
+ "welcome": {
+ "tip": "Quick Tip",
+ "sections": {
+ "intro": {
+ "title": "Welcome to Mue Tab",
+ "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
+ "notices": {
+ "discord_title": "Join our Discord",
+ "discord_description": "Talk with the Mue community and developers",
+ "discord_join": "Join",
+ "github_title": "Contribute on GitHub",
+ "github_description": "Report bugs, add features or donate",
+ "github_open": "Open"
+ }
+ },
+ "language": {
+ "title": "Choose your language",
+ "description": "Mue can be displayed the languages listed below. You can also add new translations on our"
+ },
+ "theme": {
+ "title": "Select a theme",
+ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
+ "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes."
+ },
+ "style": {
+ "title": "Choose a style",
+ "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
+ "legacy": "Legacy",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "Import Settings",
+ "description": "Installing Mue on a new device? Feel free to import your old settings!",
+ "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation."
+ },
+ "privacy": {
+ "title": "Privacy Options",
+ "description": "Enable settings to further protect your privacy with Mue.",
+ "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
+ "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
+ "links": {
+ "title": "Links",
+ "privacy_policy": "Privacy Policy",
+ "source_code": "Source Code"
+ }
+ },
+ "final": {
+ "title": "Final step",
+ "description": "Your Mue Tab experience is about to begin.",
+ "changes": "Changes",
+ "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
+ "imported": "Imported {amount} settings"
+ }
+ },
+ "buttons": {
+ "next": "Next",
+ "preview": "Preview",
+ "previous": "Previous",
+ "close": "Close"
+ },
+ "preview": {
+ "description": "You are currently in preview mode. Settings will be reset on closing this tab.",
+ "continue": "Continue setup"
+ }
+ },
+ "share": {
+ "copy_link": "Copy link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Sitat kopiert",
+ "notes": "Notes copied",
+ "reset": "Tilbakestillte vellykket",
+ "installed": "Installert",
+ "uninstalled": "Fjernet",
+ "updated": "Successfully updated",
+ "error": "Noe gikk galt",
+ "imported": "Successfully imported",
+ "no_storage": "Not enough storage",
+ "link_copied": "Link copied"
}
}
diff --git a/src/translations/pt.json b/src/translations/pt.json
index 0131b7ad..099e39c5 100644
--- a/src/translations/pt.json
+++ b/src/translations/pt.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Adicionado",
- "check_updates": "Verifique se há atualizações",
- "create": {
- "create_type": "Criar pacote {type}",
- "descriptions": {
- "photos": "Coleção de fotos relacionadas a um tópico.",
- "quotes": "Coleção de citações relacionadas a um tópico.",
- "settings": "Coleção de configurações para personalizar o Mue."
- },
- "example": "Exemplo",
- "finish": {
- "download": "Descarregar complemento",
- "title": "Finalizar"
- },
- "import_custom": "Importar de configurações personalizadas.",
- "information": "Informações",
- "information_subtitle": "Por exemplo: 1.2.3 (atualização principal, atualização secundária, atualização de patch)",
- "metadata": {
- "description": "Descrição",
- "example": "Descarregar exemplo",
- "icon_url": "URL do ícone",
- "name": "Nome",
- "screenshot_url": "URL da captura de ecrã"
- },
- "other_title": "Criar Complemento",
- "photos": {
- "title": "Adicionar fotos"
- },
- "publishing": {
- "button": "Saber mais",
- "subtitle": "Visite a Base de dados de conhecimento do Mue para obter informações sobre como publicar o seu complemento recém-criado.",
- "title": "Próxima etapa, Publicando..."
- },
- "quotes": {
- "api": {
- "author": "Autor da citação JSON (ou substituição)",
- "name": "Nome da citação JSON",
- "title": "API",
- "url": "URL da citação"
- },
- "local": {
- "title": "Local"
- },
- "title": "Adicionar citações"
- },
- "settings": {
- "current": "Importar atual",
- "json": "Carregar JSON"
- },
- "title": "Criar",
- "types": {
- "photos": "Pacotes de fotos",
- "quotes": "Pacotes de citações",
- "settings": "Configurações predefinidas"
- }
- },
- "empty": {
- "description": "Nenhum complemento está instalado",
- "title": "Vazio"
- },
- "no_updates": "Nenhuma atualização disponível",
- "sideload": {
- "description": "Instale um complemento Mue que não esteja no mercado do seu computador",
- "errors": {
- "invalid_photos": "Objeto de fotos inválido",
- "invalid_quotes": "Objeto de citações inválido",
- "no_author": "Nenhum autor fornecido",
- "no_name": "Nenhum nome fornecido",
- "no_type": "Nenhum tipo fornecido"
- },
- "failed": "Falha ao carregar o complemento",
- "title": "Carregar localmente"
- },
- "sort": {
- "a_z": "Alfabética (A-Z)",
- "newest": "Instalado (mais recente)",
- "oldest": "Instalado (mais antigo)",
- "title": "Organizar",
- "z_a": "Alfabética (Z-A)"
- },
- "updates_available": "Atualizações disponíveis {amount}"
- },
- "error_boundary": {
- "message": "Falha ao carregar este componente do Mue",
- "refresh": "Atualizar",
- "report_error": "Enviar relatório de erro",
- "sent": "Enviei!",
- "title": "Erro"
- },
- "file_upload_error": "O ficheiro tem mais de 2 MB",
- "loading": "Carregando...",
- "marketplace": {
- "add_all": "Adicionar tudo ao Mue",
- "all": "Todos",
- "by": "Por {author}",
- "cant_find": "Não consegue encontrar o que procura?",
- "collection": "Coleção",
- "collections": "Coleções",
- "explore_collection": "Explorar coleção",
- "knowledgebase_one": "Visite a",
- "knowledgebase_three": "para criar o seu próprio.",
- "knowledgebase_two": "base de conhecimento",
- "learn_more": "Saber mais",
- "no_items": "Não há itens nesta categoria",
- "offline": {
- "description": "Conecte-se à Internet",
- "title": "Parece que está offline"
- },
- "photo_packs": "Pacotes de fotos",
- "preset_settings": "Configurações predefinidas",
- "product": {
- "author": "Autor",
- "buttons": {
- "addtomue": "Adicionar ao Mue",
- "back": "Voltar",
- "remove": "Remover",
- "report": "Reportar",
- "update_addon": "Atualizar complemento"
- },
- "description": "Descrição",
- "explore": "Explorar",
- "information": "Informações",
- "last_updated": "Ultima atualização",
- "no_images": "Sem imagens",
- "no_quotes": "Sem citações",
- "overview": "Visão geral",
- "part_of": "Parte de",
- "setting": "Configuração",
- "show_all": "Mostrar tudo",
- "show_less": "Mostrar menos",
- "show_more": "Mostrar mais",
- "showing": "Mostrando",
- "value": "Valor",
- "version": "Versão"
- },
- "quote_packs": "Pacotes de citações"
- },
- "navbar": {
- "addons": "Complementos",
- "marketplace": "Mercado",
- "settings": "Configurações"
- },
- "settings": {
- "additional_settings": "Configurações adicionais",
- "buttons": {
- "export": "Exportar",
- "import": "Importar",
- "reset": "Redefinir"
- },
- "enabled": "Ativado",
- "open_knowledgebase": "Abrir base de conhecimento",
- "reminder": {
- "message": "Para que todas as alterações ocorram, a página deve ser atualizada.",
- "title": "AVISO"
- },
- "sections": {
- "about": {
- "contact_us": "Contate-nos",
- "contributors": "Contribuintes",
- "copyright": "Direito autoral",
- "form_button": "Formulário",
- "no_supporters": "Atualmente não há apoiadores do Mue",
- "photographers": "Fotógrafos",
- "resources_used": {
- "bg_images": "Imagens de plano de fundo offline",
- "title": "Recursos usados"
- },
- "support_donate": "Doar",
- "support_mue": "Apoie Mue",
- "support_subtitle": "Como o Mue é totalmente gratuito, contamos com doações para cobrir as contas do servidor e financiar o desenvolvimento",
- "supporters": "Apoiadores",
- "title": "Sobre",
- "version": {
- "checking_update": "Verificando atualização",
- "error": {
- "description": "Ocorreu um erro",
- "title": "Falha ao obter informações de atualização"
- },
- "no_update": "Nenhuma atualização disponível",
- "offline_mode": "Não é possível verificar por atualizações no modo offline",
- "title": "Versão",
- "update_available": "Atualização disponível"
- }
- },
- "advanced": {
- "custom_css": "CSS customizado",
- "custom_css_subtitle": "Faça o estilo de Mue personalizado para com Cascading Style Sheets (CSS).",
- "custom_js": "JS personalizado",
- "customisation": "Customização",
- "data": "Dados",
- "data_subtitle": "Escolha se deseja exportar as suas configurações de Mue para o seu computador, importar um ficheiro de configurações existente ou redefinir as suas configurações para os valores padrão deles",
- "experimental_warning": "Observe que a equipa Mue não pode fornecer suporte se tiver o modo experimental ativado. Desative-o primeiro e veja se o problema continua antes de entrar em contato com o suporte.",
- "offline_mode": "Modo offline",
- "offline_subtitle": "Quando ativado, todos os pedidos de serviços online serão desativados.",
- "reset_modal": {
- "cancel": "Cancelar",
- "information": "Isso excluirá todos os dados. Se deseja manter os seus dados e preferências, exporte-os primeiro.",
- "question": "Deseja redefinir o Mue?",
- "title": "AVISO"
- },
- "tab_name": "Nome da guia",
- "tab_name_subtitle": "Mude o nome da guia que aparece no seu navegador",
- "timezone": {
- "automatic": "Automático",
- "subtitle": "Escolha um fuso horário na lista em vez do padrão automático do seu computador",
- "title": "Fuso horário"
- },
- "title": "Avançado"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animações",
- "description": "Configurações de acessibilidade para Mue",
- "milliseconds": "milissegundos",
- "text_shadow": {
- "new": "Novo",
- "none": "Nenhum",
- "old": "Velho",
- "title": "Sombra de texto do widget"
- },
- "title": "Acessibilidade",
- "toast_duration": "Duração do Toast de notificação",
- "widget_zoom": "Zoom do widget"
- },
- "font": {
- "custom": "Fonte personalizada",
- "description": "Alterar a fonte usada no Mue",
- "google": "Importar do Google Fonts",
- "style": {
- "italic": "itálico",
- "normal": "Normal",
- "oblique": "Oblíquo",
- "title": "Estilo de fonte"
- },
- "title": "Fonte",
- "weight": {
- "bold": "Negrito",
- "extra_bold": "Extra Negrito",
- "extra_light": "Extra Leve",
- "light": "Leve",
- "medium": "Médio",
- "normal": "Normal",
- "semi_bold": "Semi-negrito",
- "thin": "Fina",
- "title": "Espessura da fonte"
- }
- },
- "navbar": {
- "additional": "Modifique o estilo da barra de navegação e quais botões você deseja exibir",
- "hover": "Exibir apenas ao passar o mouse",
- "notes": "Notas",
- "refresh": "Botão atualizar",
- "refresh_options": {
- "none": "Nenhum",
- "page": "Página"
- },
- "refresh_subtitle": "Escolha o que é atualizado quando clica no botão de atualização",
- "title": "Barra de navegação"
- },
- "style": {
- "description": "Escolha entre os dois estilos, legado (ativado para utilizadores pré 7.0) e nosso estilo moderno e elegante.",
- "legacy": "Legado",
- "new": "Novo",
- "title": "Estilo do widget"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Escuro",
- "description": "Alterar o tema dos widgets e modais do Mue",
- "light": "Claro",
- "title": "Tema"
- },
- "title": "Aparência"
- },
- "background": {
- "api": "Configurações da API",
- "api_subtitle": "Opções para obter uma imagem de um serviço externo (API)",
- "buttons": {
- "download": "Descarregar",
- "favourite": "Favorito",
- "title": "Botões",
- "view": "Maximizar"
- },
- "categories": "Categorias",
- "ddg_image_proxy": "Use o proxy de imagem DuckDuckGo",
- "display": "Ecrã",
- "display_subtitle": "Alterar como as informações de plano de fundo e foto são carregadas",
- "effects": {
- "blur": "Ajustar desfoque",
- "brightness": "Ajustar o brilho",
- "filters": {
- "amount": "Quantidade de filtro",
- "contrast": "Contraste",
- "grayscale": "Escala de cinzento",
- "invert": "Invertido",
- "saturate": "Saturação",
- "sepia": "Sépia",
- "title": "Filtro de fundo"
- },
- "subtitle": "Adicione efeitos às imagens de fundo",
- "title": "efeitos"
- },
- "interval": {
- "day": "Dia",
- "half_hour": "Meia hora",
- "hour": "Hora",
- "minute": "Minuto",
- "month": "Mês",
- "subtitle": "Alterar a frequência com que o plano de fundo é atualizado",
- "title": "mudar a cada"
- },
- "photo_information": "Mostrar informações da foto",
- "show_map": "Mostrar mapa de localização nas informações da foto, se disponível",
- "source": {
- "add_background": "Adicionar plano de fundo",
- "add_colour": "Adicionar cor",
- "add_url": "Adicione URL",
- "api": "API de Planos de fundo",
- "custom_background": "Plano de fundo personalizado",
- "custom_colour": "Cor de fundo personalizada",
- "custom_description": "Selecione imagens do seu computador",
- "custom_title": "Imagens personalizadas",
- "disabled": "Desativado",
- "drop_to_upload": "Solte para carregar",
- "formats": "Formatos disponíveis: {lista}",
- "loop_video": "Vídeo em loop",
- "mute_video": "mutar vídeo",
- "quality": {
- "datasaver": "Economizar dados",
- "high": "Alta qualidade",
- "normal": "qualidade normal",
- "original": "Original",
- "title": "Qualidade"
- },
- "remove": "Remover imagem",
- "select": "Ou selecione",
- "subtitle": "Selecione de onde obter as imagens de plano de fundo",
- "title": "Fonte",
- "upload": "Carregar"
- },
- "title": "Plano de fundo",
- "transition": "Transição gradual",
- "type": {
- "api": "API",
- "custom_colour": "Cor/gradiente personalizados",
- "custom_image": "Imagem personalizada",
- "random_colour": "cor aleatória",
- "random_gradient": "Gradiente aleatório",
- "title": "Tipo"
- }
- },
- "changelog": {
- "by": "Por {author}",
- "title": "Registo de alterações"
- },
- "date": {
- "datenth": "Data nth",
- "day_of_week": "Dia da semana",
- "long_format": "formato longo",
- "short_date": "Data curta",
- "short_format": "formato curto",
- "short_separator": {
- "dash": "Traço",
- "dots": "pontos",
- "gaps": "Traço espaçado",
- "slashes": "Barras",
- "title": "Separador curto"
- },
- "title": "Data",
- "type": {
- "long": "Longo",
- "short": "Curto",
- "subtitle": "Se a data deve ser exibida em forma longa ou abreviada"
- },
- "type_settings": "Exibir configurações e formato para o tipo de data selecionado",
- "week_number": "Número da semana"
- },
- "experimental": {
- "developer": "Programador",
- "title": "Experimental",
- "warning": "Essas configurações não foram totalmente testadas/implementadas e podem não funcionar corretamente!"
- },
- "greeting": {
- "additional": "Configurações para a exibição de saudação",
- "birthday": "Aniversário",
- "birthday_age": "idade de aniversário",
- "birthday_date": "Data de nascimento",
- "birthday_subtitle": "Mostrar uma mensagem de feliz aniversário quando for o seu aniversário",
- "default": "Mensagem de saudação padrão",
- "events": "Eventos",
- "name": "Nome para saudação",
- "title": "Saudações"
- },
- "header": {
- "enabled": "Escolha se deseja ou não mostrar este widget",
- "more_info": "Mais informações",
- "report_issue": "Relatório De Problema",
- "size": "Controle deslizante para controlar o tamanho do widget"
- },
- "language": {
- "quote": "Idioma das citações",
- "title": "Idioma"
- },
- "message": {
- "add": "Adicionar mensagem",
- "add_some": "Vá em frente e adicione alguns.",
- "content": "Conteúdo da mensagem",
- "messages": "Mensagens",
- "no_messages": "Sem mensagens",
- "text": "Texto",
- "title": "Mensagem"
- },
- "order": {
- "title": "Ordem do widget"
- },
- "quicklinks": {
- "add_link": "Adicionar Ligação",
- "additional": "Configurações adicionais para exibição e funções de ligações rápidas",
- "edit": "Editar",
- "no_quicklinks": "Sem links rápidos",
- "open_new": "Abrir em nova guia",
- "options": {
- "icon": "Ícone",
- "metro": "Metro",
- "text_only": "Somente texto"
- },
- "style": "Estilo",
- "styling": "Estilo de Ligações Rápidas",
- "styling_description": "Personalizar a aparência de Ligações Rápidas",
- "text_only": "Mostrar apenas texto",
- "title": "Ligações Rápidas",
- "tooltip": "Dica de ferramenta"
- },
- "quote": {
- "add": "Adicionar citação",
- "additional": "Outras configurações para personalizar o estilo do widget de citações",
- "author": "Autor",
- "author_img": "Mostrar imagem do autor",
- "author_link": "Ligação do autor",
- "buttons": {
- "copy": "Copiar",
- "favourite": "Favorito",
- "subtitle": "Escolha quais botões mostrar na citação",
- "title": "Botões",
- "tweet": "Tweetar"
- },
- "custom": "Citação personalizada",
- "custom_author": "Autor personalizado",
- "custom_buttons": "Botões",
- "custom_subtitle": "Define as suas próprias citações personalizadas",
- "no_quotes": "sem aspas",
- "source_subtitle": "Escolha de onde obter citações",
- "title": "Citações"
- },
- "search": {
- "additional": "Opções adicionais para exibição e funcionalidade do widget de pesquisa",
- "autocomplete": "autocompletar",
- "autocomplete_provider": "Provedor de preenchimento automático",
- "autocomplete_provider_subtitle": "Mecanismo de pesquisa a ser usado para resultados suspensos de preenchimento automático",
- "custom": "URL de pesquisa personalizada",
- "dropdown": "Lista suspensa de pesquisa",
- "focus": "Foco na guia aberta",
- "search_engine": "Motor de busca",
- "search_engine_subtitle": "Escolha o mecanismo de pesquisa para usar na barra de pesquisa",
- "title": "Pesquisar",
- "voice_search": "Pesquisa por voz"
- },
- "stats": {
- "achievements": "Conquistas",
- "sections": {
- "addons_installed": "Complementos instalados",
- "backgrounds_downloaded": "Planos de fundo descarregados",
- "backgrounds_favourited": "Planos de fundo favoritos",
- "quicklinks_added": "Links rápidos adicionados",
- "quotes_favourited": "Citações favoritas",
- "settings_changed": "Configurações alteradas",
- "tabs_opened": "Abas abertas"
- },
- "title": "Estatísticas",
- "unlocked": "{count} Desbloqueado",
- "usage": "Estatísticas de uso"
- },
- "time": {
- "analogue": {
- "hour_hand": "Ponteiro das horas",
- "hour_marks": "Marcas de horas",
- "minute_hand": "ponteiro dos minutos",
- "minute_marks": "Marcas de minutos",
- "round_clock": "Fundo arredondado",
- "second_hand": "Ponteiro dos segundos",
- "subtitle": "Alterar a aparência do relógio analógico",
- "title": "Analógico"
- },
- "digital": {
- "seconds": "Segundos",
- "subtitle": "Alterar a aparência do relógio digital",
- "title": "Digital",
- "twelvehour": "12 horas",
- "twentyfourhour": "24 Horas",
- "zero": "Preenchimento com zeros"
- },
- "format": "Formato",
- "percentage_complete": "Percentagem concluída",
- "title": "Hora",
- "type": "Modelo",
- "type_subtitle": "Escolha se deseja exibir a hora em formato digital, analógico ou uma conclusão percentual do dia",
- "vertical_clock": {
- "change_hour_colour": "Alterar a cor das horas",
- "change_minute_colour": "Alterar a cor dos minutos",
- "title": "Relógio Vertical"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Configurações personalizadas",
- "extra_info": {
- "atmospheric_pressure": "Pressão atmosférica",
- "cloudiness": "Nebulosidade",
- "humidity": "Humidade",
- "max_temp": "Temperatura máxima",
- "min_temp": "Temperatura mínima",
- "show_description": "Mostrar descrição",
- "show_location": "Mostrar localização",
- "title": "Informação extra",
- "visibility": "Visibilidade",
- "weather_description": "Descrição do clima",
- "wind_direction": "Direção do vento",
- "wind_speed": "Velocidade do vento"
- },
- "location": "Localização",
- "options": {
- "basic": "básico",
- "custom": "Personalizado",
- "expanded": "expandido",
- "standard": "Padrão"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Unidade de temperatura"
- },
- "title": "Tempo",
- "widget_type": "Tipo de widget"
- }
- }
- },
- "title": "Opções"
- },
- "share": {
- "copy_link": "Copiar ligação",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "Não pode conectar-se ao servidor",
- "title": "Erro"
- },
- "offline": {
- "description": "Não é possível obter logs de atualização no modo offline",
- "title": "Offline"
- },
- "title": "Atualizar"
- },
- "welcome": {
- "buttons": {
- "close": "Fechar",
- "next": "Próximo",
- "preview": "Pré-visualizar",
- "previous": "Anterior"
- },
- "preview": {
- "continue": "Continuar configuração",
- "description": "Está atualmente no modo de visualização. As configurações serão redefinidas ao fechar esta guia."
- },
- "sections": {
- "final": {
- "changes": "Mudanças",
- "changes_description": "Para alterar as configurações mais tarde, clique no ícone de engrenagem no canto superior direito da sua guia.",
- "description": "A sua experiência sobre a Mue Tab está prestes a começar.",
- "imported": "Configurações {amount} importadas",
- "title": "Último passo"
- },
- "intro": {
- "description": "Obrigado por instalar o Mue, esperamos que aproveite o seu tempo com nossa extensão.",
- "notices": {
- "discord_description": "Fale com a comunidade Mue e programadores",
- "discord_join": "Participar",
- "discord_title": "Junte-se ao nosso Discord",
- "github_description": "Relatar bugs, adicionar recursos ou doar",
- "github_open": "Abrir",
- "github_title": "Contribua no GitHub"
- },
- "title": "Bem-vindo ao Mue Tab"
- },
- "language": {
- "description": "Mue pode ser exibido nos idiomas listados abaixo. Também pode adicionar novas traduções em nosso",
- "title": "Escolha o seu idioma"
- },
- "privacy": {
- "ddg_proxy_description": "Pode fazer solicitações de imagem através do DuckDuckGo, se desejar. Por padrão, as solicitações de API passam por nossos servidores de código aberto e as solicitações de imagem passam pelo servidor original. Desativar isso para links rápidos obterá os ícones do Google em vez do DuckDuckGo. O proxy DuckDuckGo está sempre ativado para o Marketplace.",
- "description": "Ative as configurações para proteger ainda mais a sua privacidade com o Mue.",
- "links": {
- "privacy_policy": "Política de Privacidade",
- "source_code": "Código fonte",
- "title": "Ligações"
- },
- "offline_mode_description": "A ativação do modo offline desativará todas as solicitações para qualquer serviço. Isso resultará na desativação de planos de fundo online, citações online, marketplace, previsão do tempo, ligações rápidas, log de alterações e algumas informações sobre as guias.",
- "title": "Opções de privacidade"
- },
- "settings": {
- "description": "Instalando o Mue num novo aparelho? Sinta-se à vontade para importar as suas configurações antigas!",
- "tip": "Pode exportar as suas configurações antigas navegando até a guia Avançado na sua configuração antiga do Mue. Depois deve clicar no botão de exportação que descarregará o ficheiro JSON. Pode enviar este ficheiro aqui para transportar as suas configurações e preferências da sua instalação anterior do Mue.",
- "title": "Configurações de Importação"
- },
- "style": {
- "description": "Atualmente, o Mue oferece a escolha entre o estilo legado e o estilo moderno recém-lançado.",
- "legacy": "Legado",
- "modern": "Moderno",
- "title": "Escolha um estilo"
- },
- "theme": {
- "description": "O Mue está disponível nos temas claro e escuro, ou pode ser definido automaticamente dependendo do tema do sistema.",
- "tip": "Usar as configurações automáticas usará o tema no seu computador. Essa configuração afetará os modais e alguns dos widgets exibidos no ecrã, como previsão do tempo e notas.",
- "title": "Selecione um tema"
- }
- },
- "tip": "Dica rápida"
- }
- },
"tabname": "Nova Guia",
- "toasts": {
- "error": "Algo deu errado",
- "imported": "Importado com sucesso",
- "installed": "Instalado com sucesso",
- "link_copied": "Ligação copiada",
- "no_storage": "Espaço de armazenamento insuficiente",
- "notes": "Notas copiadas",
- "quote": "Citação copiada",
- "reset": "Redefinido com sucesso",
- "uninstalled": "Removido com sucesso",
- "updated": "Atualizado com sucesso"
- },
"widgets": {
+ "greeting": {
+ "morning": "Bom Dia",
+ "afternoon": "Boa Tarde",
+ "evening": "Boa noite",
+ "christmas": "Feliz Natal",
+ "newyear": "Feliz Ano Novo",
+ "halloween": "Feliz Dia das Bruxas",
+ "birthday": "Feliz Aniversário"
+ },
"background": {
- "camera": "Câmara",
- "category": "Categoria",
- "confirm": "Confirmar",
"credit": "Foto por",
+ "unsplash": "no Unsplash",
+ "information": "Informação",
"download": "Descarregar",
"downloads": "Descarregados",
- "exclude": "Não mostrar novamente",
- "exclude_confirm": "Tem certeza de que não deseja ver esta imagem novamente?\nNota: se não gosta de imagens \"{category}\", pode desmarcar a categoria nas configurações de origem do plano de fundo.",
- "information": "Informação",
+ "views": "Visualizações",
"likes": "Curtidas",
"location": "Localização",
+ "camera": "Câmara",
"resolution": "Resolução",
"source": "Fonte",
- "unsplash": "no Unsplash",
- "views": "Visualizações"
+ "category": "Categoria",
+ "exclude": "Não mostrar novamente",
+ "exclude_confirm": "Tem certeza de que não deseja ver esta imagem novamente?\nNota: se não gosta de imagens \"{category}\", pode desmarcar a categoria nas configurações de origem do plano de fundo.",
+ "confirm": "Confirmar"
+ },
+ "search": "Pesquisar",
+ "quicklinks": {
+ "new": "Nova ligação",
+ "name": "Nome",
+ "url": "URL",
+ "icon": "Ícone (opcional)",
+ "add": "Adicionar",
+ "name_error": "Deve fornecer o nome",
+ "url_error": "Forneça uma URL"
},
"date": {
"week": "Semana"
},
- "greeting": {
- "afternoon": "Boa Tarde",
- "birthday": "Feliz Aniversário",
- "christmas": "Feliz Natal",
- "evening": "Boa noite",
- "halloween": "Feliz Dia das Bruxas",
- "morning": "Bom Dia",
- "newyear": "Feliz Ano Novo"
- },
- "navbar": {
- "notes": {
- "placeholder": "Digite aqui",
- "title": "Notas"
- },
- "todo": {
- "add": "Adicionar",
- "no_todos": "Sem Tarefas",
- "pin": "Fixar",
- "title": "Tarefas"
- },
- "tooltips": {
- "refresh": "Atualizar"
- }
- },
- "quicklinks": {
- "add": "Adicionar",
- "icon": "Ícone (opcional)",
- "name": "Nome",
- "name_error": "Deve fornecer o nome",
- "new": "Nova ligação",
- "url": "URL",
- "url_error": "Forneça uma URL"
+ "weather": {
+ "not_found": "Não encontrado",
+ "meters": "{quantidade} metros",
+ "extra_information": "Informação extra",
+ "feels_like": "Parece {quantia}"
},
"quote": {
- "copy": "Copiar",
- "favourite": "Favorito",
"link_tooltip": "Abrir na Wikipédia",
"share": "Compartilhar",
+ "copy": "Copiar",
+ "favourite": "Favorito",
"unfavourite": "Não favorito"
},
- "search": "Pesquisar",
- "weather": {
- "extra_information": "Informação extra",
- "feels_like": "Parece {quantia}",
- "meters": "{quantidade} metros",
- "not_found": "Não encontrado"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Atualizar"
+ },
+ "notes": {
+ "title": "Notas",
+ "placeholder": "Digite aqui"
+ },
+ "todo": {
+ "title": "Tarefas",
+ "pin": "Fixar",
+ "add": "Adicionar",
+ "no_todos": "Sem Tarefas"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Opções",
+ "loading": "Carregando...",
+ "file_upload_error": "O ficheiro tem mais de 2 MB",
+ "navbar": {
+ "settings": "Configurações",
+ "addons": "Complementos",
+ "marketplace": "Mercado"
+ },
+ "error_boundary": {
+ "title": "Erro",
+ "message": "Falha ao carregar este componente do Mue",
+ "report_error": "Enviar relatório de erro",
+ "sent": "Enviei!",
+ "refresh": "Atualizar"
+ },
+ "settings": {
+ "enabled": "Ativado",
+ "open_knowledgebase": "Abrir base de conhecimento",
+ "additional_settings": "Configurações adicionais",
+ "reminder": {
+ "title": "AVISO",
+ "message": "Para que todas as alterações ocorram, a página deve ser atualizada."
+ },
+ "sections": {
+ "header": {
+ "more_info": "Mais informações",
+ "report_issue": "Relatório De Problema",
+ "enabled": "Escolha se deseja ou não mostrar este widget",
+ "size": "Controle deslizante para controlar o tamanho do widget"
+ },
+ "time": {
+ "title": "Hora",
+ "format": "Formato",
+ "type": "Modelo",
+ "type_subtitle": "Escolha se deseja exibir a hora em formato digital, analógico ou uma conclusão percentual do dia",
+ "digital": {
+ "title": "Digital",
+ "subtitle": "Alterar a aparência do relógio digital",
+ "seconds": "Segundos",
+ "twentyfourhour": "24 Horas",
+ "twelvehour": "12 horas",
+ "zero": "Preenchimento com zeros"
+ },
+ "analogue": {
+ "title": "Analógico",
+ "subtitle": "Alterar a aparência do relógio analógico",
+ "second_hand": "Ponteiro dos segundos",
+ "minute_hand": "ponteiro dos minutos",
+ "hour_hand": "Ponteiro das horas",
+ "hour_marks": "Marcas de horas",
+ "minute_marks": "Marcas de minutos",
+ "round_clock": "Fundo arredondado"
+ },
+ "percentage_complete": "Percentagem concluída",
+ "vertical_clock": {
+ "title": "Relógio Vertical",
+ "change_hour_colour": "Alterar a cor das horas",
+ "change_minute_colour": "Alterar a cor dos minutos"
+ }
+ },
+ "date": {
+ "title": "Data",
+ "week_number": "Número da semana",
+ "day_of_week": "Dia da semana",
+ "datenth": "Data nth",
+ "type": {
+ "short": "Curto",
+ "long": "Longo",
+ "subtitle": "Se a data deve ser exibida em forma longa ou abreviada"
+ },
+ "type_settings": "Exibir configurações e formato para o tipo de data selecionado",
+ "short_date": "Data curta",
+ "short_format": "formato curto",
+ "long_format": "formato longo",
+ "short_separator": {
+ "title": "Separador curto",
+ "dots": "pontos",
+ "dash": "Traço",
+ "gaps": "Traço espaçado",
+ "slashes": "Barras"
+ }
+ },
+ "quote": {
+ "title": "Citações",
+ "additional": "Outras configurações para personalizar o estilo do widget de citações",
+ "author_link": "Ligação do autor",
+ "custom": "Citação personalizada",
+ "custom_subtitle": "Define as suas próprias citações personalizadas",
+ "no_quotes": "sem aspas",
+ "author": "Autor",
+ "custom_buttons": "Botões",
+ "custom_author": "Autor personalizado",
+ "author_img": "Mostrar imagem do autor",
+ "add": "Adicionar citação",
+ "source_subtitle": "Escolha de onde obter citações",
+ "buttons": {
+ "title": "Botões",
+ "subtitle": "Escolha quais botões mostrar na citação",
+ "copy": "Copiar",
+ "tweet": "Tweetar",
+ "favourite": "Favorito"
+ }
+ },
+ "greeting": {
+ "title": "Saudações",
+ "events": "Eventos",
+ "default": "Mensagem de saudação padrão",
+ "name": "Nome para saudação",
+ "birthday": "Aniversário",
+ "birthday_subtitle": "Mostrar uma mensagem de feliz aniversário quando for o seu aniversário",
+ "birthday_age": "idade de aniversário",
+ "birthday_date": "Data de nascimento",
+ "additional": "Configurações para a exibição de saudação"
+ },
+ "background": {
+ "title": "Plano de fundo",
+ "ddg_image_proxy": "Use o proxy de imagem DuckDuckGo",
+ "transition": "Transição gradual",
+ "photo_information": "Mostrar informações da foto",
+ "show_map": "Mostrar mapa de localização nas informações da foto, se disponível",
+ "categories": "Categorias",
+ "buttons": {
+ "title": "Botões",
+ "view": "Maximizar",
+ "favourite": "Favorito",
+ "download": "Descarregar"
+ },
+ "effects": {
+ "title": "efeitos",
+ "subtitle": "Adicione efeitos às imagens de fundo",
+ "blur": "Ajustar desfoque",
+ "brightness": "Ajustar o brilho",
+ "filters": {
+ "title": "Filtro de fundo",
+ "amount": "Quantidade de filtro",
+ "grayscale": "Escala de cinzento",
+ "sepia": "Sépia",
+ "invert": "Invertido",
+ "saturate": "Saturação",
+ "contrast": "Contraste"
+ }
+ },
+ "type": {
+ "title": "Tipo",
+ "api": "API",
+ "custom_image": "Imagem personalizada",
+ "custom_colour": "Cor/gradiente personalizados",
+ "random_colour": "cor aleatória",
+ "random_gradient": "Gradiente aleatório"
+ },
+ "source": {
+ "title": "Fonte",
+ "subtitle": "Selecione de onde obter as imagens de plano de fundo",
+ "api": "API de Planos de fundo",
+ "custom_background": "Plano de fundo personalizado",
+ "custom_colour": "Cor de fundo personalizada",
+ "upload": "Carregar",
+ "add_colour": "Adicionar cor",
+ "add_background": "Adicionar plano de fundo",
+ "drop_to_upload": "Solte para carregar",
+ "formats": "Formatos disponíveis: {lista}",
+ "select": "Ou selecione",
+ "add_url": "Adicione URL",
+ "disabled": "Desativado",
+ "loop_video": "Vídeo em loop",
+ "mute_video": "mutar vídeo",
+ "quality": {
+ "title": "Qualidade",
+ "original": "Original",
+ "high": "Alta qualidade",
+ "normal": "qualidade normal",
+ "datasaver": "Economizar dados"
+ },
+ "custom_title": "Imagens personalizadas",
+ "custom_description": "Selecione imagens do seu computador",
+ "remove": "Remover imagem"
+ },
+ "display": "Ecrã",
+ "display_subtitle": "Alterar como as informações de plano de fundo e foto são carregadas",
+ "api": "Configurações da API",
+ "api_subtitle": "Opções para obter uma imagem de um serviço externo (API)",
+ "interval": {
+ "title": "mudar a cada",
+ "subtitle": "Alterar a frequência com que o plano de fundo é atualizado",
+ "minute": "Minuto",
+ "half_hour": "Meia hora",
+ "hour": "Hora",
+ "day": "Dia",
+ "month": "Mês"
+ }
+ },
+ "search": {
+ "title": "Pesquisar",
+ "additional": "Opções adicionais para exibição e funcionalidade do widget de pesquisa",
+ "search_engine": "Motor de busca",
+ "search_engine_subtitle": "Escolha o mecanismo de pesquisa para usar na barra de pesquisa",
+ "custom": "URL de pesquisa personalizada",
+ "autocomplete": "autocompletar",
+ "autocomplete_provider": "Provedor de preenchimento automático",
+ "autocomplete_provider_subtitle": "Mecanismo de pesquisa a ser usado para resultados suspensos de preenchimento automático",
+ "voice_search": "Pesquisa por voz",
+ "dropdown": "Lista suspensa de pesquisa",
+ "focus": "Foco na guia aberta"
+ },
+ "weather": {
+ "title": "Tempo",
+ "location": "Localização",
+ "auto": "Auto",
+ "widget_type": "Tipo de widget",
+ "temp_format": {
+ "title": "Unidade de temperatura",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Informação extra",
+ "show_location": "Mostrar localização",
+ "show_description": "Mostrar descrição",
+ "weather_description": "Descrição do clima",
+ "cloudiness": "Nebulosidade",
+ "humidity": "Humidade",
+ "visibility": "Visibilidade",
+ "wind_speed": "Velocidade do vento",
+ "wind_direction": "Direção do vento",
+ "min_temp": "Temperatura mínima",
+ "max_temp": "Temperatura máxima",
+ "atmospheric_pressure": "Pressão atmosférica"
+ },
+ "options": {
+ "basic": "básico",
+ "standard": "Padrão",
+ "expanded": "expandido",
+ "custom": "Personalizado"
+ },
+ "custom_settings": "Configurações personalizadas"
+ },
+ "quicklinks": {
+ "title": "Ligações Rápidas",
+ "additional": "Configurações adicionais para exibição e funções de ligações rápidas",
+ "open_new": "Abrir em nova guia",
+ "tooltip": "Dica de ferramenta",
+ "text_only": "Mostrar apenas texto",
+ "add_link": "Adicionar Ligação",
+ "no_quicklinks": "Sem links rápidos",
+ "edit": "Editar",
+ "style": "Estilo",
+ "options": {
+ "icon": "Ícone",
+ "text_only": "Somente texto",
+ "metro": "Metro"
+ },
+ "styling": "Estilo de Ligações Rápidas",
+ "styling_description": "Personalizar a aparência de Ligações Rápidas"
+ },
+ "message": {
+ "title": "Mensagem",
+ "add": "Adicionar mensagem",
+ "messages": "Mensagens",
+ "text": "Texto",
+ "no_messages": "Sem mensagens",
+ "add_some": "Vá em frente e adicione alguns.",
+ "content": "Conteúdo da mensagem"
+ },
+ "appearance": {
+ "title": "Aparência",
+ "style": {
+ "title": "Estilo do widget",
+ "description": "Escolha entre os dois estilos, legado (ativado para utilizadores pré 7.0) e nosso estilo moderno e elegante.",
+ "legacy": "Legado",
+ "new": "Novo"
+ },
+ "theme": {
+ "title": "Tema",
+ "description": "Alterar o tema dos widgets e modais do Mue",
+ "auto": "Auto",
+ "light": "Claro",
+ "dark": "Escuro"
+ },
+ "navbar": {
+ "title": "Barra de navegação",
+ "notes": "Notas",
+ "refresh": "Botão atualizar",
+ "refresh_subtitle": "Escolha o que é atualizado quando clica no botão de atualização",
+ "hover": "Exibir apenas ao passar o mouse",
+ "additional": "Modifique o estilo da barra de navegação e quais botões você deseja exibir",
+ "refresh_options": {
+ "none": "Nenhum",
+ "page": "Página"
+ }
+ },
+ "font": {
+ "title": "Fonte",
+ "description": "Alterar a fonte usada no Mue",
+ "custom": "Fonte personalizada",
+ "google": "Importar do Google Fonts",
+ "weight": {
+ "title": "Espessura da fonte",
+ "thin": "Fina",
+ "extra_light": "Extra Leve",
+ "light": "Leve",
+ "normal": "Normal",
+ "medium": "Médio",
+ "semi_bold": "Semi-negrito",
+ "bold": "Negrito",
+ "extra_bold": "Extra Negrito"
+ },
+ "style": {
+ "title": "Estilo de fonte",
+ "normal": "Normal",
+ "italic": "itálico",
+ "oblique": "Oblíquo"
+ }
+ },
+ "accessibility": {
+ "title": "Acessibilidade",
+ "description": "Configurações de acessibilidade para Mue",
+ "animations": "Animações",
+ "text_shadow": {
+ "title": "Sombra de texto do widget",
+ "new": "Novo",
+ "old": "Velho",
+ "none": "Nenhum"
+ },
+ "widget_zoom": "Zoom do widget",
+ "toast_duration": "Duração do Toast de notificação",
+ "milliseconds": "milissegundos"
+ }
+ },
+ "order": {
+ "title": "Ordem do widget"
+ },
+ "advanced": {
+ "title": "Avançado",
+ "offline_mode": "Modo offline",
+ "offline_subtitle": "Quando ativado, todos os pedidos de serviços online serão desativados.",
+ "data": "Dados",
+ "data_subtitle": "Escolha se deseja exportar as suas configurações de Mue para o seu computador, importar um ficheiro de configurações existente ou redefinir as suas configurações para os valores padrão deles",
+ "reset_modal": {
+ "title": "AVISO",
+ "question": "Deseja redefinir o Mue?",
+ "information": "Isso excluirá todos os dados. Se deseja manter os seus dados e preferências, exporte-os primeiro.",
+ "cancel": "Cancelar"
+ },
+ "customisation": "Customização",
+ "custom_css": "CSS customizado",
+ "custom_css_subtitle": "Faça o estilo de Mue personalizado para com Cascading Style Sheets (CSS).",
+ "custom_js": "JS personalizado",
+ "tab_name": "Nome da guia",
+ "tab_name_subtitle": "Mude o nome da guia que aparece no seu navegador",
+ "timezone": {
+ "title": "Fuso horário",
+ "subtitle": "Escolha um fuso horário na lista em vez do padrão automático do seu computador",
+ "automatic": "Automático"
+ },
+ "experimental_warning": "Observe que a equipa Mue não pode fornecer suporte se tiver o modo experimental ativado. Desative-o primeiro e veja se o problema continua antes de entrar em contato com o suporte."
+ },
+ "stats": {
+ "title": "Estatísticas",
+ "sections": {
+ "tabs_opened": "Abas abertas",
+ "backgrounds_favourited": "Planos de fundo favoritos",
+ "backgrounds_downloaded": "Planos de fundo descarregados",
+ "quotes_favourited": "Citações favoritas",
+ "quicklinks_added": "Links rápidos adicionados",
+ "settings_changed": "Configurações alteradas",
+ "addons_installed": "Complementos instalados"
+ },
+ "usage": "Estatísticas de uso",
+ "achievements": "Conquistas",
+ "unlocked": "{count} Desbloqueado"
+ },
+ "experimental": {
+ "title": "Experimental",
+ "warning": "Essas configurações não foram totalmente testadas/implementadas e podem não funcionar corretamente!",
+ "developer": "Programador"
+ },
+ "language": {
+ "title": "Idioma",
+ "quote": "Idioma das citações"
+ },
+ "changelog": {
+ "title": "Registo de alterações",
+ "by": "Por {author}"
+ },
+ "about": {
+ "title": "Sobre",
+ "copyright": "Direito autoral",
+ "version": {
+ "title": "Versão",
+ "checking_update": "Verificando atualização",
+ "update_available": "Atualização disponível",
+ "no_update": "Nenhuma atualização disponível",
+ "offline_mode": "Não é possível verificar por atualizações no modo offline",
+ "error": {
+ "title": "Falha ao obter informações de atualização",
+ "description": "Ocorreu um erro"
+ }
+ },
+ "contact_us": "Contate-nos",
+ "support_mue": "Apoie Mue",
+ "support_subtitle": "Como o Mue é totalmente gratuito, contamos com doações para cobrir as contas do servidor e financiar o desenvolvimento",
+ "support_donate": "Doar",
+ "form_button": "Formulário",
+ "resources_used": {
+ "title": "Recursos usados",
+ "bg_images": "Imagens de plano de fundo offline"
+ },
+ "contributors": "Contribuintes",
+ "supporters": "Apoiadores",
+ "no_supporters": "Atualmente não há apoiadores do Mue",
+ "photographers": "Fotógrafos"
+ }
+ },
+ "buttons": {
+ "reset": "Redefinir",
+ "import": "Importar",
+ "export": "Exportar"
+ }
+ },
+ "marketplace": {
+ "by": "Por {author}",
+ "all": "Todos",
+ "learn_more": "Saber mais",
+ "photo_packs": "Pacotes de fotos",
+ "quote_packs": "Pacotes de citações",
+ "preset_settings": "Configurações predefinidas",
+ "no_items": "Não há itens nesta categoria",
+ "collection": "Coleção",
+ "explore_collection": "Explorar coleção",
+ "add_all": "Adicionar tudo ao Mue",
+ "collections": "Coleções",
+ "cant_find": "Não consegue encontrar o que procura?",
+ "knowledgebase_one": "Visite a",
+ "knowledgebase_two": "base de conhecimento",
+ "knowledgebase_three": "para criar o seu próprio.",
+ "product": {
+ "overview": "Visão geral",
+ "information": "Informações",
+ "last_updated": "Ultima atualização",
+ "description": "Descrição",
+ "show_more": "Mostrar mais",
+ "show_less": "Mostrar menos",
+ "show_all": "Mostrar tudo",
+ "showing": "Mostrando",
+ "no_images": "Sem imagens",
+ "no_quotes": "Sem citações",
+ "version": "Versão",
+ "author": "Autor",
+ "part_of": "Parte de",
+ "explore": "Explorar",
+ "buttons": {
+ "addtomue": "Adicionar ao Mue",
+ "remove": "Remover",
+ "update_addon": "Atualizar complemento",
+ "back": "Voltar",
+ "report": "Reportar"
+ },
+ "setting": "Configuração",
+ "value": "Valor"
+ },
+ "offline": {
+ "title": "Parece que está offline",
+ "description": "Conecte-se à Internet"
+ }
+ },
+ "addons": {
+ "added": "Adicionado",
+ "check_updates": "Verifique se há atualizações",
+ "no_updates": "Nenhuma atualização disponível",
+ "updates_available": "Atualizações disponíveis {amount}",
+ "empty": {
+ "title": "Vazio",
+ "description": "Nenhum complemento está instalado"
+ },
+ "sideload": {
+ "title": "Carregar localmente",
+ "description": "Instale um complemento Mue que não esteja no mercado do seu computador",
+ "failed": "Falha ao carregar o complemento",
+ "errors": {
+ "no_name": "Nenhum nome fornecido",
+ "no_author": "Nenhum autor fornecido",
+ "no_type": "Nenhum tipo fornecido",
+ "invalid_photos": "Objeto de fotos inválido",
+ "invalid_quotes": "Objeto de citações inválido"
+ }
+ },
+ "sort": {
+ "title": "Organizar",
+ "newest": "Instalado (mais recente)",
+ "oldest": "Instalado (mais antigo)",
+ "a_z": "Alfabética (A-Z)",
+ "z_a": "Alfabética (Z-A)"
+ },
+ "create": {
+ "title": "Criar",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Atualizar",
+ "offline": {
+ "title": "Offline",
+ "description": "Não é possível obter logs de atualização no modo offline"
+ },
+ "error": {
+ "title": "Erro",
+ "description": "Não pode conectar-se ao servidor"
+ }
+ },
+ "welcome": {
+ "tip": "Dica rápida",
+ "sections": {
+ "intro": {
+ "title": "Bem-vindo ao Mue Tab",
+ "description": "Obrigado por instalar o Mue, esperamos que aproveite o seu tempo com nossa extensão.",
+ "notices": {
+ "discord_title": "Junte-se ao nosso Discord",
+ "discord_description": "Fale com a comunidade Mue e programadores",
+ "discord_join": "Participar",
+ "github_title": "Contribua no GitHub",
+ "github_description": "Relatar bugs, adicionar recursos ou doar",
+ "github_open": "Abrir"
+ }
+ },
+ "language": {
+ "title": "Escolha o seu idioma",
+ "description": "Mue pode ser exibido nos idiomas listados abaixo. Também pode adicionar novas traduções em nosso"
+ },
+ "theme": {
+ "title": "Selecione um tema",
+ "description": "O Mue está disponível nos temas claro e escuro, ou pode ser definido automaticamente dependendo do tema do sistema.",
+ "tip": "Usar as configurações automáticas usará o tema no seu computador. Essa configuração afetará os modais e alguns dos widgets exibidos no ecrã, como previsão do tempo e notas."
+ },
+ "style": {
+ "title": "Escolha um estilo",
+ "description": "Atualmente, o Mue oferece a escolha entre o estilo legado e o estilo moderno recém-lançado.",
+ "legacy": "Legado",
+ "modern": "Moderno"
+ },
+ "settings": {
+ "title": "Configurações de Importação",
+ "description": "Instalando o Mue num novo aparelho? Sinta-se à vontade para importar as suas configurações antigas!",
+ "tip": "Pode exportar as suas configurações antigas navegando até a guia Avançado na sua configuração antiga do Mue. Depois deve clicar no botão de exportação que descarregará o ficheiro JSON. Pode enviar este ficheiro aqui para transportar as suas configurações e preferências da sua instalação anterior do Mue."
+ },
+ "privacy": {
+ "title": "Opções de privacidade",
+ "description": "Ative as configurações para proteger ainda mais a sua privacidade com o Mue.",
+ "offline_mode_description": "A ativação do modo offline desativará todas as solicitações para qualquer serviço. Isso resultará na desativação de planos de fundo online, citações online, marketplace, previsão do tempo, ligações rápidas, log de alterações e algumas informações sobre as guias.",
+ "ddg_proxy_description": "Pode fazer solicitações de imagem através do DuckDuckGo, se desejar. Por padrão, as solicitações de API passam por nossos servidores de código aberto e as solicitações de imagem passam pelo servidor original. Desativar isso para links rápidos obterá os ícones do Google em vez do DuckDuckGo. O proxy DuckDuckGo está sempre ativado para o Marketplace.",
+ "links": {
+ "title": "Ligações",
+ "privacy_policy": "Política de Privacidade",
+ "source_code": "Código fonte"
+ }
+ },
+ "final": {
+ "title": "Último passo",
+ "description": "A sua experiência sobre a Mue Tab está prestes a começar.",
+ "changes": "Mudanças",
+ "changes_description": "Para alterar as configurações mais tarde, clique no ícone de engrenagem no canto superior direito da sua guia.",
+ "imported": "Configurações {amount} importadas"
+ }
+ },
+ "buttons": {
+ "next": "Próximo",
+ "preview": "Pré-visualizar",
+ "previous": "Anterior",
+ "close": "Fechar"
+ },
+ "preview": {
+ "description": "Está atualmente no modo de visualização. As configurações serão redefinidas ao fechar esta guia.",
+ "continue": "Continuar configuração"
+ }
+ },
+ "share": {
+ "copy_link": "Copiar ligação",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Citação copiada",
+ "notes": "Notas copiadas",
+ "reset": "Redefinido com sucesso",
+ "installed": "Instalado com sucesso",
+ "uninstalled": "Removido com sucesso",
+ "updated": "Atualizado com sucesso",
+ "error": "Algo deu errado",
+ "imported": "Importado com sucesso",
+ "no_storage": "Espaço de armazenamento insuficiente",
+ "link_copied": "Ligação copiada"
}
}
diff --git a/src/translations/pt_BR.json b/src/translations/pt_BR.json
index 5f00e756..6def1d95 100644
--- a/src/translations/pt_BR.json
+++ b/src/translations/pt_BR.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Adicionado",
- "check_updates": "Verifique se há atualizações",
- "create": {
- "create_type": "Criar pacote {type}",
- "descriptions": {
- "photos": "Coleção de fotos relacionadas a um tópico.",
- "quotes": "Coleção de citações relacionadas a um tópico.",
- "settings": "Coleção de configurações para personalizar o Mue."
- },
- "example": "Exemplo",
- "finish": {
- "download": "Baixar complemento",
- "title": "Finalizar"
- },
- "import_custom": "Importar de configurações personalizadas.",
- "information": "Informações",
- "information_subtitle": "Por exemplo: 1.2.3 (atualização principal, atualização secundária, atualização de patch)",
- "metadata": {
- "description": "Descrição",
- "example": "Baixar exemplo",
- "icon_url": "URL do ícone",
- "name": "Nome",
- "screenshot_url": "URL da captura de tela"
- },
- "other_title": "Criar Complemento",
- "photos": {
- "title": "Adicionar fotos"
- },
- "publishing": {
- "button": "Saber mais",
- "subtitle": "Visite a Base de dados de conhecimento do Mue para obter informações sobre como publicar seu complemento recém-criado.",
- "title": "Próxima etapa, Publicando..."
- },
- "quotes": {
- "api": {
- "author": "Autor da citação JSON (ou substituição)",
- "name": "Nome da citação JSON",
- "title": "API",
- "url": "URL da citação"
- },
- "local": {
- "title": "Local"
- },
- "title": "Adicionar citações"
- },
- "settings": {
- "current": "Importar atual",
- "json": "Carregar JSON"
- },
- "title": "Criar",
- "types": {
- "photos": "Pacotes de fotos",
- "quotes": "Pacotes de citações",
- "settings": "Configurações predefinidas"
- }
- },
- "empty": {
- "description": "Nenhum complemento está instalado",
- "title": "Vazio"
- },
- "no_updates": "Nenhuma atualização disponível",
- "sideload": {
- "description": "Instale um complemento Mue que não esteja no mercado a partir do seu computador",
- "errors": {
- "invalid_photos": "Objeto de fotos inválido",
- "invalid_quotes": "Objeto de citações inválido",
- "no_author": "Nenhum autor fornecido",
- "no_name": "Nenhum nome fornecido",
- "no_type": "Nenhum tipo fornecido"
- },
- "failed": "Falha ao carregar o complemento",
- "title": "Carregar localmente"
- },
- "sort": {
- "a_z": "Alfabética (A-Z)",
- "newest": "Instalado (mais recente)",
- "oldest": "Instalado (mais antigo)",
- "title": "Organizar",
- "z_a": "Alfabética (Z-A)"
- },
- "updates_available": "Atualizações disponíveis {amount}"
- },
- "error_boundary": {
- "message": "Falha ao carregar este componente do Mue",
- "refresh": "Atualizar",
- "report_error": "Enviar relatório de erro",
- "sent": "Enviei!",
- "title": "Erro"
- },
- "file_upload_error": "O arquivo tem mais de 2 MB",
- "loading": "Carregando...",
- "marketplace": {
- "add_all": "Adicionar tudo ao Mue",
- "all": "Todos",
- "by": "Por {author}",
- "cant_find": "Não consegue encontrar o que procura?",
- "collection": "Coleção",
- "collections": "Coleções",
- "explore_collection": "Explorar coleção",
- "knowledgebase_one": "Visite a",
- "knowledgebase_three": "para criar o seu próprio.",
- "knowledgebase_two": "base de conhecimento",
- "learn_more": "Saber mais",
- "no_items": "Não há itens nesta categoria",
- "offline": {
- "description": "Conecte-se à Internet",
- "title": "Parece que você está offline"
- },
- "photo_packs": "Pacotes de fotos",
- "preset_settings": "Configurações predefinidas",
- "product": {
- "author": "Autor",
- "buttons": {
- "addtomue": "Adicionar ao Mue",
- "back": "Voltar",
- "remove": "Remover",
- "report": "Reportar",
- "update_addon": "Atualizar complemento"
- },
- "description": "Descrição",
- "explore": "Explorar",
- "information": "Informações",
- "last_updated": "Ultima atualização",
- "no_images": "Sem imagens",
- "no_quotes": "Sem citações",
- "overview": "Visão geral",
- "part_of": "Parte de",
- "setting": "Configuração",
- "show_all": "Mostrar tudo",
- "show_less": "Mostrar menos",
- "show_more": "Mostrar mais",
- "showing": "Mostrando",
- "value": "Valor",
- "version": "Versão"
- },
- "quote_packs": "Pacotes de citações"
- },
- "navbar": {
- "addons": "Complementos",
- "marketplace": "Mercado",
- "settings": "Configurações"
- },
- "settings": {
- "additional_settings": "Configurações adicionais",
- "buttons": {
- "export": "Exportar",
- "import": "Importar",
- "reset": "Redefinir"
- },
- "enabled": "Habilitado",
- "open_knowledgebase": "Abrir base de conhecimento",
- "reminder": {
- "message": "Para que todas as alterações ocorram, a página deve ser atualizada.",
- "title": "AVISO"
- },
- "sections": {
- "about": {
- "contact_us": "Contate-nos",
- "contributors": "Contribuintes",
- "copyright": "Direito autoral",
- "form_button": "Formulário",
- "no_supporters": "Atualmente não há apoiadores do Mue",
- "photographers": "Fotógrafos",
- "resources_used": {
- "bg_images": "Imagens de plano de fundo offline",
- "title": "Recursos usados"
- },
- "support_donate": "Doar",
- "support_mue": "Apoie Mue",
- "support_subtitle": "Como o Mue é totalmente gratuito, contamos com doações para cobrir as contas do servidor e financiar o desenvolvimento",
- "supporters": "Apoiadores",
- "title": "Sobre",
- "version": {
- "checking_update": "Verificando atualização",
- "error": {
- "description": "Ocorreu um erro",
- "title": "Falha ao obter informações de atualização"
- },
- "no_update": "Nenhuma atualização disponível",
- "offline_mode": "Não é possível verificar por atualizações no modo offline",
- "title": "Versão",
- "update_available": "Atualização disponível"
- }
- },
- "advanced": {
- "custom_css": "CSS customizado",
- "custom_css_subtitle": "Faça o estilo de Mue personalizado para você com Cascading Style Sheets (CSS).",
- "custom_js": "JS personalizado",
- "customisation": "Customização",
- "data": "Dados",
- "data_subtitle": "Escolha se deseja exportar suas configurações de Mue para o seu computador, importar um arquivo de configurações existente ou redefinir suas configurações para seus valores padrão",
- "experimental_warning": "Observe que a equipe Mue não pode fornecer suporte se você tiver o modo experimental ativado. Desative-o primeiro e veja se o problema continua antes de entrar em contato com o suporte.",
- "offline_mode": "Modo offline",
- "offline_subtitle": "Quando ativado, todos os pedidos de serviços online serão desativados.",
- "reset_modal": {
- "cancel": "Cancelar",
- "information": "Isso excluirá todos os dados. Se você deseja manter seus dados e preferências, exporte-os primeiro.",
- "question": "Deseja redefinir o Mue?",
- "title": "AVISO"
- },
- "tab_name": "Nome da guia",
- "tab_name_subtitle": "Mude o nome da aba que aparece no seu navegador",
- "timezone": {
- "automatic": "Automático",
- "subtitle": "Escolha um fuso horário na lista em vez do padrão automático do seu computador",
- "title": "Fuso horário"
- },
- "title": "Avançado"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animações",
- "description": "Configurações de acessibilidade para Mue",
- "milliseconds": "milissegundos",
- "text_shadow": {
- "new": "Novo",
- "none": "Nenhum",
- "old": "Velho",
- "title": "Sombra de texto do widget"
- },
- "title": "Acessibilidade",
- "toast_duration": "Duração do Toast de notificação",
- "widget_zoom": "Zoom do widget"
- },
- "font": {
- "custom": "Fonte personalizada",
- "description": "Alterar a fonte usada no Mue",
- "google": "Importar do Google Fonts",
- "style": {
- "italic": "itálico",
- "normal": "Normal",
- "oblique": "Oblíquo",
- "title": "Estilo de fonte"
- },
- "title": "Fonte",
- "weight": {
- "bold": "Negrito",
- "extra_bold": "Extra Negrito",
- "extra_light": "Extra Leve",
- "light": "Leve",
- "medium": "Médio",
- "normal": "Normal",
- "semi_bold": "Semi-negrito",
- "thin": "Fina",
- "title": "Espessura da fonte"
- }
- },
- "navbar": {
- "additional": "Modifique o estilo da barra de navegação e quais botões você deseja exibir",
- "hover": "Exibir apenas ao passar o mouse",
- "notes": "Notas",
- "refresh": "Botão atualizar",
- "refresh_options": {
- "none": "Nenhum",
- "page": "Página"
- },
- "refresh_subtitle": "Escolha o que é atualizado quando você clica no botão de atualização",
- "title": "Barra de navegação"
- },
- "style": {
- "description": "Escolha entre os dois estilos, legado (ativado para usuários pré 7.0) e nosso estilo moderno e elegante.",
- "legacy": "Legado",
- "new": "Novo",
- "title": "Estilo do widget"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Escuro",
- "description": "Alterar o tema dos widgets e modais do Mue",
- "light": "Claro",
- "title": "Tema"
- },
- "title": "Aparência"
- },
- "background": {
- "api": "Configurações da API",
- "api_subtitle": "Opções para obter uma imagem de um serviço externo (API)",
- "buttons": {
- "download": "Baixar",
- "favourite": "Favorito",
- "title": "Botões",
- "view": "Maximizar"
- },
- "categories": "Categorias",
- "ddg_image_proxy": "Use o proxy de imagem DuckDuckGo",
- "display": "Tela",
- "display_subtitle": "Alterar como as informações de plano de fundo e foto são carregadas",
- "effects": {
- "blur": "Ajustar desfoque",
- "brightness": "Ajustar o brilho",
- "filters": {
- "amount": "Quantidade de filtro",
- "contrast": "Contraste",
- "grayscale": "Escala de cinza",
- "invert": "Invertido",
- "saturate": "Saturação",
- "sepia": "Sépia",
- "title": "Filtro de fundo"
- },
- "subtitle": "Adicione efeitos às imagens de fundo",
- "title": "efeitos"
- },
- "interval": {
- "day": "Dia",
- "half_hour": "Meia hora",
- "hour": "Hora",
- "minute": "Minuto",
- "month": "Mês",
- "subtitle": "Alterar a frequência com que o plano de fundo é atualizado",
- "title": "mudar a cada"
- },
- "photo_information": "Mostrar informações da foto",
- "show_map": "Mostrar mapa de localização nas informações da foto, se disponível",
- "source": {
- "add_background": "Adicionar plano de fundo",
- "add_colour": "Adicionar cor",
- "add_url": "Adicione URL",
- "api": "API de Planos de fundo",
- "custom_background": "Plano de fundo personalizado",
- "custom_colour": "Cor de fundo personalizada",
- "custom_description": "Selecione imagens do seu computador",
- "custom_title": "Imagens personalizadas",
- "disabled": "Desativado",
- "drop_to_upload": "Solte para carregar",
- "formats": "Formatos disponíveis: {lista}",
- "loop_video": "Vídeo em loop",
- "mute_video": "mutar vídeo",
- "quality": {
- "datasaver": "Economizar dados",
- "high": "Alta qualidade",
- "normal": "qualidade normal",
- "original": "Original",
- "title": "Qualidade"
- },
- "remove": "Remover imagem",
- "select": "Ou selecione",
- "subtitle": "Selecione de onde obter as imagens de plano de fundo",
- "title": "Fonte",
- "upload": "Carregar"
- },
- "title": "Plano de fundo",
- "transition": "Transição gradual",
- "type": {
- "api": "API",
- "custom_colour": "Cor/gradiente personalizados",
- "custom_image": "Imagem personalizada",
- "random_colour": "cor aleatória",
- "random_gradient": "Gradiente aleatório",
- "title": "Tipo"
- }
- },
- "changelog": {
- "by": "Por {author}",
- "title": "Registo de alterações"
- },
- "date": {
- "datenth": "Data nth",
- "day_of_week": "Dia da semana",
- "long_format": "formato longo",
- "short_date": "Data curta",
- "short_format": "formato curto",
- "short_separator": {
- "dash": "Traço",
- "dots": "pontos",
- "gaps": "Traço espaçado",
- "slashes": "Barras",
- "title": "Separador curto"
- },
- "title": "Data",
- "type": {
- "long": "Longo",
- "short": "Curto",
- "subtitle": "Se a data deve ser exibida em forma longa ou abreviada"
- },
- "type_settings": "Exibir configurações e formato para o tipo de data selecionado",
- "week_number": "Número da semana"
- },
- "experimental": {
- "developer": "Desenvolvedor",
- "title": "Experimental",
- "warning": "Essas configurações não foram totalmente testadas/implementadas e podem não funcionar corretamente!"
- },
- "greeting": {
- "additional": "Configurações para a exibição de saudação",
- "birthday": "Aniversário",
- "birthday_age": "idade de aniversário",
- "birthday_date": "Data de nascimento",
- "birthday_subtitle": "Mostrar uma mensagem de feliz aniversário quando for seu aniversário",
- "default": "Mensagem de saudação padrão",
- "events": "Eventos",
- "name": "Nome para saudação",
- "title": "Saudações"
- },
- "header": {
- "enabled": "Escolha se deseja ou não mostrar este widget",
- "more_info": "Mais informações",
- "report_issue": "Relatório De Problema",
- "size": "Controle deslizante para controlar o tamanho do widget"
- },
- "language": {
- "quote": "Idioma das citações",
- "title": "Idioma"
- },
- "message": {
- "add": "Adicionar mensagem",
- "add_some": "Vá em frente e adicione alguns.",
- "content": "Conteúdo da mensagem",
- "messages": "Mensagens",
- "no_messages": "Sem mensagens",
- "text": "Texto",
- "title": "Mensagem"
- },
- "order": {
- "title": "Ordem do widget"
- },
- "quicklinks": {
- "add_link": "Adicionar link",
- "additional": "Configurações adicionais para exibição e funções de links rápidos",
- "edit": "Editar",
- "no_quicklinks": "Sem links rápidos",
- "open_new": "Abrir em nova guia",
- "options": {
- "icon": "Ícone",
- "metro": "Metro",
- "text_only": "Somente texto"
- },
- "style": "Estilo",
- "styling": "Estilizar links rápidos",
- "styling_description": "Personalizar a aparência dos Links rápidos",
- "text_only": "Mostrar apenas texto",
- "title": "Links Rápidos",
- "tooltip": "Dica de ferramenta"
- },
- "quote": {
- "add": "Adicionar citação",
- "additional": "Outras configurações para personalizar o estilo do widget de citações",
- "author": "Autor",
- "author_img": "Mostrar imagem do autor",
- "author_link": "link do autor",
- "buttons": {
- "copy": "Copiar",
- "favourite": "Favorito",
- "subtitle": "Escolha quais botões mostrar na citação",
- "title": "Botões",
- "tweet": "Tweetar"
- },
- "custom": "Citação personalizada",
- "custom_author": "Autor personalizado",
- "custom_buttons": "Botões",
- "custom_subtitle": "Defina suas próprias citações personalizadas",
- "no_quotes": "sem aspas",
- "source_subtitle": "Escolha de onde obter citações",
- "title": "Citações"
- },
- "search": {
- "additional": "Opções adicionais para exibição e funcionalidade do widget de pesquisa",
- "autocomplete": "autocompletar",
- "autocomplete_provider": "Provedor de preenchimento automático",
- "autocomplete_provider_subtitle": "Mecanismo de pesquisa a ser usado para resultados suspensos de preenchimento automático",
- "custom": "URL de pesquisa personalizada",
- "dropdown": "Lista suspensa de pesquisa",
- "focus": "Foco na guia aberta",
- "search_engine": "Motor de busca",
- "search_engine_subtitle": "Escolha o mecanismo de pesquisa para usar na barra de pesquisa",
- "title": "Pesquisar",
- "voice_search": "Pesquisa por voz"
- },
- "stats": {
- "achievements": "Conquistas",
- "sections": {
- "addons_installed": "Complementos instalados",
- "backgrounds_downloaded": "Planos de fundo baixados",
- "backgrounds_favourited": "Planos de fundo favoritos",
- "quicklinks_added": "Links rápidos adicionados",
- "quotes_favourited": "Citações favoritas",
- "settings_changed": "Configurações alteradas",
- "tabs_opened": "Abas abertas"
- },
- "title": "Estatísticas",
- "unlocked": "{count} Desbloqueado",
- "usage": "Estatísticas de uso"
- },
- "time": {
- "analogue": {
- "hour_hand": "Ponteiro das horas",
- "hour_marks": "Marcas de horas",
- "minute_hand": "ponteiro dos minutos",
- "minute_marks": "Marcas de minutos",
- "round_clock": "Fundo arredondado",
- "second_hand": "Ponteiro dos segundos",
- "subtitle": "Alterar a aparência do relógio analógico",
- "title": "Analógico"
- },
- "digital": {
- "seconds": "Segundos",
- "subtitle": "Alterar a aparência do relógio digital",
- "title": "Digital",
- "twelvehour": "12 horas",
- "twentyfourhour": "24 Horas",
- "zero": "Preenchimento com zeros"
- },
- "format": "Formato",
- "percentage_complete": "Porcentagem concluída",
- "title": "Hora",
- "type": "Modelo",
- "type_subtitle": "Escolha se deseja exibir a hora em formato digital, analógico ou em uma porcentagem de duração do dia",
- "vertical_clock": {
- "change_hour_colour": "Alterar a cor das horas",
- "change_minute_colour": "Alterar a cor dos minutos",
- "title": "Relógio Vertical"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Configurações personalizadas",
- "extra_info": {
- "atmospheric_pressure": "Pressão atmosférica",
- "cloudiness": "Nebulosidade",
- "humidity": "Umidade",
- "max_temp": "Temperatura máxima",
- "min_temp": "Temperatura mínima",
- "show_description": "Mostrar descrição",
- "show_location": "Mostrar localização",
- "title": "Informação extra",
- "visibility": "Visibilidade",
- "weather_description": "Descrição do tempo",
- "wind_direction": "Direção do vento",
- "wind_speed": "Velocidade do vento"
- },
- "location": "Localização",
- "options": {
- "basic": "básico",
- "custom": "Personalizado",
- "expanded": "expandido",
- "standard": "Padrão"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Unidade de temperatura"
- },
- "title": "Tempo",
- "widget_type": "Tipo de widget"
- }
- }
- },
- "title": "Opções"
- },
- "share": {
- "copy_link": "Copiar link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "Não pode conectar-se ao servidor",
- "title": "Erro"
- },
- "offline": {
- "description": "Não é possível obter logs de atualização no modo offline",
- "title": "Offline"
- },
- "title": "Atualizar"
- },
- "welcome": {
- "buttons": {
- "close": "Fechar",
- "next": "Próximo",
- "preview": "Pré-visualizar",
- "previous": "Anterior"
- },
- "preview": {
- "continue": "Continuar configuração",
- "description": "Você está atualmente no modo de visualização. As configurações serão redefinidas ao fechar esta guia."
- },
- "sections": {
- "final": {
- "changes": "Mudanças",
- "changes_description": "Para alterar as configurações mais tarde, clique no ícone de engrenagem no canto superior direito da sua guia.",
- "description": "Sua experiência Mue Tab está prestes a começar.",
- "imported": "Configurações {amount} importadas",
- "title": "Último passo"
- },
- "intro": {
- "description": "Obrigado por instalar o Mue, esperamos que você aproveite seu tempo com nossa extensão.",
- "notices": {
- "discord_description": "Fale com a comunidade Mue e desenvolvedores",
- "discord_join": "Participar",
- "discord_title": "Junte-se ao nosso Discord",
- "github_description": "Relatar bugs, adicionar recursos ou doar",
- "github_open": "Abrir",
- "github_title": "Contribua no GitHub"
- },
- "title": "Bem-vindo ao Mue Tab"
- },
- "language": {
- "description": "Mue pode ser exibido nos idiomas listados abaixo. Você também pode adicionar novas traduções em nosso",
- "title": "Escolha seu idioma"
- },
- "privacy": {
- "ddg_proxy_description": "Você pode fazer solicitações de imagem através do DuckDuckGo, se desejar. Por padrão, as solicitações de API passam por nossos servidores de código aberto e as solicitações de imagem passam pelo servidor original. Desativar isso para links rápidos obterá os ícones do Google em vez do DuckDuckGo. O proxy DuckDuckGo está sempre ativado para o Marketplace.",
- "description": "Ative as configurações para proteger ainda mais sua privacidade com o Mue.",
- "links": {
- "privacy_policy": "Política de Privacidade",
- "source_code": "Código fonte",
- "title": "Links"
- },
- "offline_mode_description": "A ativação do modo offline desativará todas as solicitações para qualquer serviço. Isso resultará na desativação de planos de fundo online, citações online, marketplace, previsão do tempo, links rápidos, log de alterações e algumas informações sobre as guias.",
- "title": "Opções de privacidade"
- },
- "settings": {
- "description": "Instalando o Mue em um novo dispositivo? Sinta-se à vontade para importar suas configurações antigas!",
- "tip": "Você pode exportar suas configurações antigas navegando até a guia Avançado em sua configuração antiga do Mue. Então você precisa clicar no botão de exportação que fará o download do arquivo JSON. Você pode carregar este arquivo aqui para carregar suas configurações e preferências de sua instalação anterior do Mue.",
- "title": "Configurações de Importação"
- },
- "style": {
- "description": "Atualmente, o Mue oferece a escolha entre o estilo legado e o estilo moderno recém-lançado.",
- "legacy": "Legado",
- "modern": "Moderno",
- "title": "Escolha um estilo"
- },
- "theme": {
- "description": "O Mue está disponível nos temas claro e escuro, ou pode ser definido automaticamente dependendo do tema do sistema.",
- "tip": "Usar as configurações automáticas usará o tema em seu computador. Essa configuração afetará os modais e alguns dos widgets exibidos na tela, como previsão do tempo e notas.",
- "title": "Selecione um tema"
- }
- },
- "tip": "Dica rápida"
- }
- },
"tabname": "Nova Guia",
- "toasts": {
- "error": "Algo deu errado",
- "imported": "Importado com sucesso",
- "installed": "Instalado com sucesso",
- "link_copied": "Link copiado",
- "no_storage": "Espaço de armazenamento insuficiente",
- "notes": "Notas copiadas",
- "quote": "Citação copiada",
- "reset": "Redefinido com sucesso",
- "uninstalled": "Removido com sucesso",
- "updated": "Atualizado com sucesso"
- },
"widgets": {
+ "greeting": {
+ "morning": "Bom Dia",
+ "afternoon": "Boa Tarde",
+ "evening": "Boa noite",
+ "christmas": "Feliz Natal",
+ "newyear": "Feliz Ano Novo",
+ "halloween": "Feliz Dia das Bruxas",
+ "birthday": "Feliz Aniversário"
+ },
"background": {
- "camera": "Câmera",
- "category": "Categoria",
- "confirm": "Confirmar",
"credit": "Foto por",
+ "unsplash": "no Unsplash",
+ "information": "Informação",
"download": "Baixar",
"downloads": "Baixados",
- "exclude": "Não mostrar novamente",
- "exclude_confirm": "Tem certeza de que não deseja ver esta imagem novamente?\nNota: se você não gosta de imagens \"{category}\", pode desmarcar a categoria nas configurações de origem do plano de fundo.",
- "information": "Informação",
+ "views": "Visualizações",
"likes": "Curtidas",
"location": "Localização",
+ "camera": "Câmera",
"resolution": "Resolução",
"source": "Fonte",
- "unsplash": "no Unsplash",
- "views": "Visualizações"
+ "category": "Categoria",
+ "exclude": "Não mostrar novamente",
+ "exclude_confirm": "Tem certeza de que não deseja ver esta imagem novamente?\nNota: se você não gosta de imagens \"{category}\", pode desmarcar a categoria nas configurações de origem do plano de fundo.",
+ "confirm": "Confirmar"
+ },
+ "search": "Pesquisar",
+ "quicklinks": {
+ "new": "Novo link",
+ "name": "Nome",
+ "url": "URL",
+ "icon": "Ícone (opcional)",
+ "add": "Adicionar",
+ "name_error": "Deve fornecer o nome",
+ "url_error": "Forneça uma URL"
},
"date": {
"week": "Semana"
},
- "greeting": {
- "afternoon": "Boa Tarde",
- "birthday": "Feliz Aniversário",
- "christmas": "Feliz Natal",
- "evening": "Boa noite",
- "halloween": "Feliz Dia das Bruxas",
- "morning": "Bom Dia",
- "newyear": "Feliz Ano Novo"
- },
- "navbar": {
- "notes": {
- "placeholder": "Digite aqui",
- "title": "Notas"
- },
- "todo": {
- "add": "Adicionar",
- "no_todos": "Sem afazeres",
- "pin": "Fixar",
- "title": "Tarefas"
- },
- "tooltips": {
- "refresh": "Atualizar"
- }
- },
- "quicklinks": {
- "add": "Adicionar",
- "icon": "Ícone (opcional)",
- "name": "Nome",
- "name_error": "Deve fornecer o nome",
- "new": "Novo link",
- "url": "URL",
- "url_error": "Forneça uma URL"
+ "weather": {
+ "not_found": "Não encontrado",
+ "meters": "{quantidade} metros",
+ "extra_information": "Informação extra",
+ "feels_like": "Parece {quantia}"
},
"quote": {
- "copy": "Copiar",
- "favourite": "Favorito",
"link_tooltip": "Abrir na Wikipédia",
"share": "Compartilhar",
+ "copy": "Copiar",
+ "favourite": "Favorito",
"unfavourite": "Não favorito"
},
- "search": "Pesquisar",
- "weather": {
- "extra_information": "Informação extra",
- "feels_like": "Parece {quantia}",
- "meters": "{quantidade} metros",
- "not_found": "Não encontrado"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Atualizar"
+ },
+ "notes": {
+ "title": "Notas",
+ "placeholder": "Digite aqui"
+ },
+ "todo": {
+ "title": "Tarefas",
+ "pin": "Fixar",
+ "add": "Adicionar",
+ "no_todos": "Sem afazeres"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Opções",
+ "loading": "Carregando...",
+ "file_upload_error": "O arquivo tem mais de 2 MB",
+ "navbar": {
+ "settings": "Configurações",
+ "addons": "Complementos",
+ "marketplace": "Mercado"
+ },
+ "error_boundary": {
+ "title": "Erro",
+ "message": "Falha ao carregar este componente do Mue",
+ "report_error": "Enviar relatório de erro",
+ "sent": "Enviei!",
+ "refresh": "Atualizar"
+ },
+ "settings": {
+ "enabled": "Habilitado",
+ "open_knowledgebase": "Abrir base de conhecimento",
+ "additional_settings": "Configurações adicionais",
+ "reminder": {
+ "title": "AVISO",
+ "message": "Para que todas as alterações ocorram, a página deve ser atualizada."
+ },
+ "sections": {
+ "header": {
+ "more_info": "Mais informações",
+ "report_issue": "Relatório De Problema",
+ "enabled": "Escolha se deseja ou não mostrar este widget",
+ "size": "Controle deslizante para controlar o tamanho do widget"
+ },
+ "time": {
+ "title": "Hora",
+ "format": "Formato",
+ "type": "Modelo",
+ "type_subtitle": "Escolha se deseja exibir a hora em formato digital, analógico ou em uma porcentagem de duração do dia",
+ "digital": {
+ "title": "Digital",
+ "subtitle": "Alterar a aparência do relógio digital",
+ "seconds": "Segundos",
+ "twentyfourhour": "24 Horas",
+ "twelvehour": "12 horas",
+ "zero": "Preenchimento com zeros"
+ },
+ "analogue": {
+ "title": "Analógico",
+ "subtitle": "Alterar a aparência do relógio analógico",
+ "second_hand": "Ponteiro dos segundos",
+ "minute_hand": "ponteiro dos minutos",
+ "hour_hand": "Ponteiro das horas",
+ "hour_marks": "Marcas de horas",
+ "minute_marks": "Marcas de minutos",
+ "round_clock": "Fundo arredondado"
+ },
+ "percentage_complete": "Porcentagem concluída",
+ "vertical_clock": {
+ "title": "Relógio Vertical",
+ "change_hour_colour": "Alterar a cor das horas",
+ "change_minute_colour": "Alterar a cor dos minutos"
+ }
+ },
+ "date": {
+ "title": "Data",
+ "week_number": "Número da semana",
+ "day_of_week": "Dia da semana",
+ "datenth": "Data nth",
+ "type": {
+ "short": "Curto",
+ "long": "Longo",
+ "subtitle": "Se a data deve ser exibida em forma longa ou abreviada"
+ },
+ "type_settings": "Exibir configurações e formato para o tipo de data selecionado",
+ "short_date": "Data curta",
+ "short_format": "formato curto",
+ "long_format": "formato longo",
+ "short_separator": {
+ "title": "Separador curto",
+ "dots": "pontos",
+ "dash": "Traço",
+ "gaps": "Traço espaçado",
+ "slashes": "Barras"
+ }
+ },
+ "quote": {
+ "title": "Citações",
+ "additional": "Outras configurações para personalizar o estilo do widget de citações",
+ "author_link": "link do autor",
+ "custom": "Citação personalizada",
+ "custom_subtitle": "Defina suas próprias citações personalizadas",
+ "no_quotes": "sem aspas",
+ "author": "Autor",
+ "custom_buttons": "Botões",
+ "custom_author": "Autor personalizado",
+ "author_img": "Mostrar imagem do autor",
+ "add": "Adicionar citação",
+ "source_subtitle": "Escolha de onde obter citações",
+ "buttons": {
+ "title": "Botões",
+ "subtitle": "Escolha quais botões mostrar na citação",
+ "copy": "Copiar",
+ "tweet": "Tweetar",
+ "favourite": "Favorito"
+ }
+ },
+ "greeting": {
+ "title": "Saudações",
+ "events": "Eventos",
+ "default": "Mensagem de saudação padrão",
+ "name": "Nome para saudação",
+ "birthday": "Aniversário",
+ "birthday_subtitle": "Mostrar uma mensagem de feliz aniversário quando for seu aniversário",
+ "birthday_age": "idade de aniversário",
+ "birthday_date": "Data de nascimento",
+ "additional": "Configurações para a exibição de saudação"
+ },
+ "background": {
+ "title": "Plano de fundo",
+ "ddg_image_proxy": "Use o proxy de imagem DuckDuckGo",
+ "transition": "Transição gradual",
+ "photo_information": "Mostrar informações da foto",
+ "show_map": "Mostrar mapa de localização nas informações da foto, se disponível",
+ "categories": "Categorias",
+ "buttons": {
+ "title": "Botões",
+ "view": "Maximizar",
+ "favourite": "Favorito",
+ "download": "Baixar"
+ },
+ "effects": {
+ "title": "efeitos",
+ "subtitle": "Adicione efeitos às imagens de fundo",
+ "blur": "Ajustar desfoque",
+ "brightness": "Ajustar o brilho",
+ "filters": {
+ "title": "Filtro de fundo",
+ "amount": "Quantidade de filtro",
+ "grayscale": "Escala de cinza",
+ "sepia": "Sépia",
+ "invert": "Invertido",
+ "saturate": "Saturação",
+ "contrast": "Contraste"
+ }
+ },
+ "type": {
+ "title": "Tipo",
+ "api": "API",
+ "custom_image": "Imagem personalizada",
+ "custom_colour": "Cor/gradiente personalizados",
+ "random_colour": "cor aleatória",
+ "random_gradient": "Gradiente aleatório"
+ },
+ "source": {
+ "title": "Fonte",
+ "subtitle": "Selecione de onde obter as imagens de plano de fundo",
+ "api": "API de Planos de fundo",
+ "custom_background": "Plano de fundo personalizado",
+ "custom_colour": "Cor de fundo personalizada",
+ "upload": "Carregar",
+ "add_colour": "Adicionar cor",
+ "add_background": "Adicionar plano de fundo",
+ "drop_to_upload": "Solte para carregar",
+ "formats": "Formatos disponíveis: {lista}",
+ "select": "Ou selecione",
+ "add_url": "Adicione URL",
+ "disabled": "Desativado",
+ "loop_video": "Vídeo em loop",
+ "mute_video": "mutar vídeo",
+ "quality": {
+ "title": "Qualidade",
+ "original": "Original",
+ "high": "Alta qualidade",
+ "normal": "qualidade normal",
+ "datasaver": "Economizar dados"
+ },
+ "custom_title": "Imagens personalizadas",
+ "custom_description": "Selecione imagens do seu computador",
+ "remove": "Remover imagem"
+ },
+ "display": "Tela",
+ "display_subtitle": "Alterar como as informações de plano de fundo e foto são carregadas",
+ "api": "Configurações da API",
+ "api_subtitle": "Opções para obter uma imagem de um serviço externo (API)",
+ "interval": {
+ "title": "mudar a cada",
+ "subtitle": "Alterar a frequência com que o plano de fundo é atualizado",
+ "minute": "Minuto",
+ "half_hour": "Meia hora",
+ "hour": "Hora",
+ "day": "Dia",
+ "month": "Mês"
+ }
+ },
+ "search": {
+ "title": "Pesquisar",
+ "additional": "Opções adicionais para exibição e funcionalidade do widget de pesquisa",
+ "search_engine": "Motor de busca",
+ "search_engine_subtitle": "Escolha o mecanismo de pesquisa para usar na barra de pesquisa",
+ "custom": "URL de pesquisa personalizada",
+ "autocomplete": "autocompletar",
+ "autocomplete_provider": "Provedor de preenchimento automático",
+ "autocomplete_provider_subtitle": "Mecanismo de pesquisa a ser usado para resultados suspensos de preenchimento automático",
+ "voice_search": "Pesquisa por voz",
+ "dropdown": "Lista suspensa de pesquisa",
+ "focus": "Foco na guia aberta"
+ },
+ "weather": {
+ "title": "Tempo",
+ "location": "Localização",
+ "auto": "Auto",
+ "widget_type": "Tipo de widget",
+ "temp_format": {
+ "title": "Unidade de temperatura",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Informação extra",
+ "show_location": "Mostrar localização",
+ "show_description": "Mostrar descrição",
+ "weather_description": "Descrição do tempo",
+ "cloudiness": "Nebulosidade",
+ "humidity": "Umidade",
+ "visibility": "Visibilidade",
+ "wind_speed": "Velocidade do vento",
+ "wind_direction": "Direção do vento",
+ "min_temp": "Temperatura mínima",
+ "max_temp": "Temperatura máxima",
+ "atmospheric_pressure": "Pressão atmosférica"
+ },
+ "options": {
+ "basic": "básico",
+ "standard": "Padrão",
+ "expanded": "expandido",
+ "custom": "Personalizado"
+ },
+ "custom_settings": "Configurações personalizadas"
+ },
+ "quicklinks": {
+ "title": "Links Rápidos",
+ "additional": "Configurações adicionais para exibição e funções de links rápidos",
+ "open_new": "Abrir em nova guia",
+ "tooltip": "Dica de ferramenta",
+ "text_only": "Mostrar apenas texto",
+ "add_link": "Adicionar link",
+ "no_quicklinks": "Sem links rápidos",
+ "edit": "Editar",
+ "style": "Estilo",
+ "options": {
+ "icon": "Ícone",
+ "text_only": "Somente texto",
+ "metro": "Metro"
+ },
+ "styling": "Estilizar links rápidos",
+ "styling_description": "Personalizar a aparência dos Links rápidos"
+ },
+ "message": {
+ "title": "Mensagem",
+ "add": "Adicionar mensagem",
+ "messages": "Mensagens",
+ "text": "Texto",
+ "no_messages": "Sem mensagens",
+ "add_some": "Vá em frente e adicione alguns.",
+ "content": "Conteúdo da mensagem"
+ },
+ "appearance": {
+ "title": "Aparência",
+ "style": {
+ "title": "Estilo do widget",
+ "description": "Escolha entre os dois estilos, legado (ativado para usuários pré 7.0) e nosso estilo moderno e elegante.",
+ "legacy": "Legado",
+ "new": "Novo"
+ },
+ "theme": {
+ "title": "Tema",
+ "description": "Alterar o tema dos widgets e modais do Mue",
+ "auto": "Auto",
+ "light": "Claro",
+ "dark": "Escuro"
+ },
+ "navbar": {
+ "title": "Barra de navegação",
+ "notes": "Notas",
+ "refresh": "Botão atualizar",
+ "refresh_subtitle": "Escolha o que é atualizado quando você clica no botão de atualização",
+ "hover": "Exibir apenas ao passar o mouse",
+ "additional": "Modifique o estilo da barra de navegação e quais botões você deseja exibir",
+ "refresh_options": {
+ "none": "Nenhum",
+ "page": "Página"
+ }
+ },
+ "font": {
+ "title": "Fonte",
+ "description": "Alterar a fonte usada no Mue",
+ "custom": "Fonte personalizada",
+ "google": "Importar do Google Fonts",
+ "weight": {
+ "title": "Espessura da fonte",
+ "thin": "Fina",
+ "extra_light": "Extra Leve",
+ "light": "Leve",
+ "normal": "Normal",
+ "medium": "Médio",
+ "semi_bold": "Semi-negrito",
+ "bold": "Negrito",
+ "extra_bold": "Extra Negrito"
+ },
+ "style": {
+ "title": "Estilo de fonte",
+ "normal": "Normal",
+ "italic": "itálico",
+ "oblique": "Oblíquo"
+ }
+ },
+ "accessibility": {
+ "title": "Acessibilidade",
+ "description": "Configurações de acessibilidade para Mue",
+ "animations": "Animações",
+ "text_shadow": {
+ "title": "Sombra de texto do widget",
+ "new": "Novo",
+ "old": "Velho",
+ "none": "Nenhum"
+ },
+ "widget_zoom": "Zoom do widget",
+ "toast_duration": "Duração do Toast de notificação",
+ "milliseconds": "milissegundos"
+ }
+ },
+ "order": {
+ "title": "Ordem do widget"
+ },
+ "advanced": {
+ "title": "Avançado",
+ "offline_mode": "Modo offline",
+ "offline_subtitle": "Quando ativado, todos os pedidos de serviços online serão desativados.",
+ "data": "Dados",
+ "data_subtitle": "Escolha se deseja exportar suas configurações de Mue para o seu computador, importar um arquivo de configurações existente ou redefinir suas configurações para seus valores padrão",
+ "reset_modal": {
+ "title": "AVISO",
+ "question": "Deseja redefinir o Mue?",
+ "information": "Isso excluirá todos os dados. Se você deseja manter seus dados e preferências, exporte-os primeiro.",
+ "cancel": "Cancelar"
+ },
+ "customisation": "Customização",
+ "custom_css": "CSS customizado",
+ "custom_css_subtitle": "Faça o estilo de Mue personalizado para você com Cascading Style Sheets (CSS).",
+ "custom_js": "JS personalizado",
+ "tab_name": "Nome da guia",
+ "tab_name_subtitle": "Mude o nome da aba que aparece no seu navegador",
+ "timezone": {
+ "title": "Fuso horário",
+ "subtitle": "Escolha um fuso horário na lista em vez do padrão automático do seu computador",
+ "automatic": "Automático"
+ },
+ "experimental_warning": "Observe que a equipe Mue não pode fornecer suporte se você tiver o modo experimental ativado. Desative-o primeiro e veja se o problema continua antes de entrar em contato com o suporte."
+ },
+ "stats": {
+ "title": "Estatísticas",
+ "sections": {
+ "tabs_opened": "Abas abertas",
+ "backgrounds_favourited": "Planos de fundo favoritos",
+ "backgrounds_downloaded": "Planos de fundo baixados",
+ "quotes_favourited": "Citações favoritas",
+ "quicklinks_added": "Links rápidos adicionados",
+ "settings_changed": "Configurações alteradas",
+ "addons_installed": "Complementos instalados"
+ },
+ "usage": "Estatísticas de uso",
+ "achievements": "Conquistas",
+ "unlocked": "{count} Desbloqueado"
+ },
+ "experimental": {
+ "title": "Experimental",
+ "warning": "Essas configurações não foram totalmente testadas/implementadas e podem não funcionar corretamente!",
+ "developer": "Desenvolvedor"
+ },
+ "language": {
+ "title": "Idioma",
+ "quote": "Idioma das citações"
+ },
+ "changelog": {
+ "title": "Registo de alterações",
+ "by": "Por {author}"
+ },
+ "about": {
+ "title": "Sobre",
+ "copyright": "Direito autoral",
+ "version": {
+ "title": "Versão",
+ "checking_update": "Verificando atualização",
+ "update_available": "Atualização disponível",
+ "no_update": "Nenhuma atualização disponível",
+ "offline_mode": "Não é possível verificar por atualizações no modo offline",
+ "error": {
+ "title": "Falha ao obter informações de atualização",
+ "description": "Ocorreu um erro"
+ }
+ },
+ "contact_us": "Contate-nos",
+ "support_mue": "Apoie Mue",
+ "support_subtitle": "Como o Mue é totalmente gratuito, contamos com doações para cobrir as contas do servidor e financiar o desenvolvimento",
+ "support_donate": "Doar",
+ "form_button": "Formulário",
+ "resources_used": {
+ "title": "Recursos usados",
+ "bg_images": "Imagens de plano de fundo offline"
+ },
+ "contributors": "Contribuintes",
+ "supporters": "Apoiadores",
+ "no_supporters": "Atualmente não há apoiadores do Mue",
+ "photographers": "Fotógrafos"
+ }
+ },
+ "buttons": {
+ "reset": "Redefinir",
+ "import": "Importar",
+ "export": "Exportar"
+ }
+ },
+ "marketplace": {
+ "by": "Por {author}",
+ "all": "Todos",
+ "learn_more": "Saber mais",
+ "photo_packs": "Pacotes de fotos",
+ "quote_packs": "Pacotes de citações",
+ "preset_settings": "Configurações predefinidas",
+ "no_items": "Não há itens nesta categoria",
+ "collection": "Coleção",
+ "explore_collection": "Explorar coleção",
+ "add_all": "Adicionar tudo ao Mue",
+ "collections": "Coleções",
+ "cant_find": "Não consegue encontrar o que procura?",
+ "knowledgebase_one": "Visite a",
+ "knowledgebase_two": "base de conhecimento",
+ "knowledgebase_three": "para criar o seu próprio.",
+ "product": {
+ "overview": "Visão geral",
+ "information": "Informações",
+ "last_updated": "Ultima atualização",
+ "description": "Descrição",
+ "show_more": "Mostrar mais",
+ "show_less": "Mostrar menos",
+ "show_all": "Mostrar tudo",
+ "showing": "Mostrando",
+ "no_images": "Sem imagens",
+ "no_quotes": "Sem citações",
+ "version": "Versão",
+ "author": "Autor",
+ "part_of": "Parte de",
+ "explore": "Explorar",
+ "buttons": {
+ "addtomue": "Adicionar ao Mue",
+ "remove": "Remover",
+ "update_addon": "Atualizar complemento",
+ "back": "Voltar",
+ "report": "Reportar"
+ },
+ "setting": "Configuração",
+ "value": "Valor"
+ },
+ "offline": {
+ "title": "Parece que você está offline",
+ "description": "Conecte-se à Internet"
+ }
+ },
+ "addons": {
+ "added": "Adicionado",
+ "check_updates": "Verifique se há atualizações",
+ "no_updates": "Nenhuma atualização disponível",
+ "updates_available": "Atualizações disponíveis {amount}",
+ "empty": {
+ "title": "Vazio",
+ "description": "Nenhum complemento está instalado"
+ },
+ "sideload": {
+ "title": "Carregar localmente",
+ "description": "Instale um complemento Mue que não esteja no mercado a partir do seu computador",
+ "failed": "Falha ao carregar o complemento",
+ "errors": {
+ "no_name": "Nenhum nome fornecido",
+ "no_author": "Nenhum autor fornecido",
+ "no_type": "Nenhum tipo fornecido",
+ "invalid_photos": "Objeto de fotos inválido",
+ "invalid_quotes": "Objeto de citações inválido"
+ }
+ },
+ "sort": {
+ "title": "Organizar",
+ "newest": "Instalado (mais recente)",
+ "oldest": "Instalado (mais antigo)",
+ "a_z": "Alfabética (A-Z)",
+ "z_a": "Alfabética (Z-A)"
+ },
+ "create": {
+ "title": "Criar",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Atualizar",
+ "offline": {
+ "title": "Offline",
+ "description": "Não é possível obter logs de atualização no modo offline"
+ },
+ "error": {
+ "title": "Erro",
+ "description": "Não pode conectar-se ao servidor"
+ }
+ },
+ "welcome": {
+ "tip": "Dica rápida",
+ "sections": {
+ "intro": {
+ "title": "Bem-vindo ao Mue Tab",
+ "description": "Obrigado por instalar o Mue, esperamos que você aproveite seu tempo com nossa extensão.",
+ "notices": {
+ "discord_title": "Junte-se ao nosso Discord",
+ "discord_description": "Fale com a comunidade Mue e desenvolvedores",
+ "discord_join": "Participar",
+ "github_title": "Contribua no GitHub",
+ "github_description": "Relatar bugs, adicionar recursos ou doar",
+ "github_open": "Abrir"
+ }
+ },
+ "language": {
+ "title": "Escolha seu idioma",
+ "description": "Mue pode ser exibido nos idiomas listados abaixo. Você também pode adicionar novas traduções em nosso"
+ },
+ "theme": {
+ "title": "Selecione um tema",
+ "description": "O Mue está disponível nos temas claro e escuro, ou pode ser definido automaticamente dependendo do tema do sistema.",
+ "tip": "Usar as configurações automáticas usará o tema em seu computador. Essa configuração afetará os modais e alguns dos widgets exibidos na tela, como previsão do tempo e notas."
+ },
+ "style": {
+ "title": "Escolha um estilo",
+ "description": "Atualmente, o Mue oferece a escolha entre o estilo legado e o estilo moderno recém-lançado.",
+ "legacy": "Legado",
+ "modern": "Moderno"
+ },
+ "settings": {
+ "title": "Configurações de Importação",
+ "description": "Instalando o Mue em um novo dispositivo? Sinta-se à vontade para importar suas configurações antigas!",
+ "tip": "Você pode exportar suas configurações antigas navegando até a guia Avançado em sua configuração antiga do Mue. Então você precisa clicar no botão de exportação que fará o download do arquivo JSON. Você pode carregar este arquivo aqui para carregar suas configurações e preferências de sua instalação anterior do Mue."
+ },
+ "privacy": {
+ "title": "Opções de privacidade",
+ "description": "Ative as configurações para proteger ainda mais sua privacidade com o Mue.",
+ "offline_mode_description": "A ativação do modo offline desativará todas as solicitações para qualquer serviço. Isso resultará na desativação de planos de fundo online, citações online, marketplace, previsão do tempo, links rápidos, log de alterações e algumas informações sobre as guias.",
+ "ddg_proxy_description": "Você pode fazer solicitações de imagem através do DuckDuckGo, se desejar. Por padrão, as solicitações de API passam por nossos servidores de código aberto e as solicitações de imagem passam pelo servidor original. Desativar isso para links rápidos obterá os ícones do Google em vez do DuckDuckGo. O proxy DuckDuckGo está sempre ativado para o Marketplace.",
+ "links": {
+ "title": "Links",
+ "privacy_policy": "Política de Privacidade",
+ "source_code": "Código fonte"
+ }
+ },
+ "final": {
+ "title": "Último passo",
+ "description": "Sua experiência Mue Tab está prestes a começar.",
+ "changes": "Mudanças",
+ "changes_description": "Para alterar as configurações mais tarde, clique no ícone de engrenagem no canto superior direito da sua guia.",
+ "imported": "Configurações {amount} importadas"
+ }
+ },
+ "buttons": {
+ "next": "Próximo",
+ "preview": "Pré-visualizar",
+ "previous": "Anterior",
+ "close": "Fechar"
+ },
+ "preview": {
+ "description": "Você está atualmente no modo de visualização. As configurações serão redefinidas ao fechar esta guia.",
+ "continue": "Continuar configuração"
+ }
+ },
+ "share": {
+ "copy_link": "Copiar link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "Citação copiada",
+ "notes": "Notas copiadas",
+ "reset": "Redefinido com sucesso",
+ "installed": "Instalado com sucesso",
+ "uninstalled": "Removido com sucesso",
+ "updated": "Atualizado com sucesso",
+ "error": "Algo deu errado",
+ "imported": "Importado com sucesso",
+ "no_storage": "Espaço de armazenamento insuficiente",
+ "link_copied": "Link copiado"
}
}
diff --git a/src/translations/ru.json b/src/translations/ru.json
index b88097f8..e5f7b026 100644
--- a/src/translations/ru.json
+++ b/src/translations/ru.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Добавлен",
- "check_updates": "Проверка обновлений",
- "create": {
- "create_type": "Создать пакет {type}",
- "descriptions": {
- "photos": "Подборка фотографий по теме.",
- "quotes": "Сборник цитат по теме.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Пример",
- "finish": {
- "download": "Download Add-on",
- "title": "Finish"
- },
- "import_custom": "Импорт из пользовательских настроек.",
- "information": "Информация",
- "information_subtitle": "Например: 1.2.3 (крупное обновление, минорное обновление, исправление)",
- "metadata": {
- "description": "Description",
- "example": "Скачать пример",
- "icon_url": "Icon URL",
- "name": "Name",
- "screenshot_url": "Screenshot URL"
- },
- "other_title": "Создать аддон",
- "photos": {
- "title": "Add Photos"
- },
- "publishing": {
- "button": "Узнать больше",
- "subtitle": "Посетите базу знаний Mue, чтобы узнать, как опубликовать только что созданный аддон.",
- "title": "Следующий шаг, публикация..."
- },
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Add Quotes"
- },
- "settings": {
- "current": "Import current setup",
- "json": "Загрузить JSON"
- },
- "title": "Создать",
- "types": {
- "photos": "Набор фото",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "Зайдите в магазин, чтобы найти что-то интересное",
- "title": "Здесь пусто"
- },
- "no_updates": "Обновления отсутствуют",
- "sideload": {
- "description": "Установить аддон Mue, не представленную на торговой площадке, со своего компьютера",
- "errors": {
- "invalid_photos": "Недопустимый объект фотографии",
- "invalid_quotes": "Invalid quotes object",
- "no_author": "Автор не указан",
- "no_name": "Название не указано",
- "no_type": "Тип не указан"
- },
- "failed": "Не удалось загрузить аддоны",
- "title": "Загрузить"
- },
- "sort": {
- "a_z": "Alphabetical (A-Z)",
- "newest": "Installed (Newest)",
- "oldest": "Installed (Oldest)",
- "title": "Сортировка",
- "z_a": "Alphabetical (Z-A)"
- },
- "updates_available": "Доступны обновления {amount}"
- },
- "error_boundary": {
- "message": "Не удалось загрузить этот компонент Mue",
- "refresh": "Обновить",
- "report_error": "Отправить сообщение об ошибке",
- "sent": "Отправил!",
- "title": "Ошибка"
- },
- "file_upload_error": "Файл больше 2 МБ",
- "loading": "Загрузка...",
- "marketplace": {
- "add_all": "Добавить все в Mue",
- "all": "Все",
- "by": "от {author}",
- "cant_find": "Не можете найти то, что ищете?",
- "collection": "Коллекция",
- "collections": "Коллекции",
- "explore_collection": "Исследуйте коллекцию",
- "knowledgebase_one": "Посетить",
- "knowledgebase_three": "чтобы создать свой собственный.",
- "knowledgebase_two": "база знаний",
- "learn_more": "Узнать больше",
- "no_items": "Нет элементов в этой категории",
- "offline": {
- "description": "Пожалуйста, подключитесь к интернету",
- "title": "Похоже, что вы офлайн"
- },
- "photo_packs": "Наборы фото",
- "preset_settings": "Пресеты настроек",
- "product": {
- "author": "Автор",
- "buttons": {
- "addtomue": "Добавить в Mue",
- "back": "Назад",
- "remove": "Удалить",
- "report": "Жалоба",
- "update_addon": "Update Add-on"
- },
- "description": "Описание",
- "explore": "Обзор",
- "information": "Информация",
- "last_updated": "Последнее обновление",
- "no_images": "№ Изображения",
- "no_quotes": "Цитаты",
- "overview": "Обзор",
- "part_of": "Часть",
- "setting": "Параметр",
- "show_all": "Показать все",
- "show_less": "Показать меньше",
- "show_more": "Показать больше",
- "showing": "Показаны",
- "value": "Цена",
- "version": "Версия"
- },
- "quote_packs": "Наборы цитат"
- },
- "navbar": {
- "addons": "Аддоны",
- "marketplace": "Магазин",
- "settings": "Настройки"
- },
- "settings": {
- "additional_settings": "Дополнительные настройки",
- "buttons": {
- "export": "Экспорт",
- "import": "Импорт",
- "reset": "Сбросить"
- },
- "enabled": "Включено",
- "open_knowledgebase": "Открытая база знаний",
- "reminder": {
- "message": "Для того чтобы все изменения произошли, необходимо обновить страницу.",
- "title": "NOTICE"
- },
- "sections": {
- "about": {
- "contact_us": "Contact Us",
- "contributors": "Участники",
- "copyright": "Copyright",
- "form_button": "Форма",
- "no_supporters": "В настоящее время нет поддержки Mue",
- "photographers": "Фотографы",
- "resources_used": {
- "bg_images": "Фоновые изображения в оффлайне",
- "title": "Используемые ресурсы"
- },
- "support_donate": "Пожертвовать",
- "support_mue": "Support Mue",
- "support_subtitle": "Поскольку Mue полностью бесплатен, мы полагаемся на пожертвования для покрытия счетов за сервер и финансирования развития",
- "supporters": "Поддержка",
- "title": "О программе",
- "version": {
- "checking_update": "Проверка обновлений",
- "error": {
- "description": "Обнаружена ошибка",
- "title": "Не удалось получить информацию об обновлении"
- },
- "no_update": "Нет доступных обновлений",
- "offline_mode": "Невозможно проверить наличие обновления в автономном режиме",
- "title": "Version",
- "update_available": "Обновление доступно"
- }
- },
- "advanced": {
- "custom_css": "Пользовательский CSS",
- "custom_css_subtitle": "Настройте стиль Mue под себя с помощью каскадных таблиц стилей (CSS).",
- "custom_js": "Пользовательский JS",
- "customisation": "Кастомизация",
- "data": "Data",
- "data_subtitle": "Выберите, следует ли экспортировать настройки Mue на компьютер, импортировать существующий файл настроек или сбросить настройки до значений по умолчанию",
- "experimental_warning": "Обратите внимание, что команда Mue не может оказать поддержку, если у вас включен экспериментальный режим. Пожалуйста, сначала отключите его и посмотрите, сохранится ли проблема, прежде чем обращаться в службу поддержки.",
- "offline_mode": "Офлайн режим",
- "offline_subtitle": "При включении все запросы к онлайн-сервисам будут отключены.",
- "reset_modal": {
- "cancel": "Отменить",
- "information": "Это приведет к удалению всех данных. Если вы хотите сохранить свои данные и предпочтения, сначала экспортируйте их.",
- "question": "Вы хотите сбросить Mue?",
- "title": "WARNING"
- },
- "tab_name": "Tab name",
- "tab_name_subtitle": "Измените название вкладки, которая появляется в вашем браузере",
- "timezone": {
- "automatic": "Автоматически",
- "subtitle": "Выберите часовой пояс из списка вместо автоматического по умолчанию с вашего компьютера",
- "title": "Часовой пояс"
- },
- "title": "Дополнительно"
- },
- "appearance": {
- "accessibility": {
- "animations": "Анимации",
- "description": "Настройки специальных возможностей для Mue",
- "milliseconds": "миллисекунды",
- "text_shadow": {
- "new": "Новое",
- "none": "None",
- "old": "Old",
- "title": "Тень текста виджета"
- },
- "title": "Доступность",
- "toast_duration": "Продолжительность подсказки",
- "widget_zoom": "Widget zoom"
- },
- "font": {
- "custom": "Пользовательский шрифт",
- "description": "Измените шрифт, используемый в Mue",
- "google": "Импортировать из Google Fonts",
- "style": {
- "italic": "Italic",
- "normal": "Normal",
- "oblique": "Курсив",
- "title": "Font style"
- },
- "title": "Font",
- "weight": {
- "bold": "Жирный",
- "extra_bold": "Сверхжирный",
- "extra_light": "Очень тонкий",
- "light": "Лёгкий",
- "medium": "Medium",
- "normal": "Normal",
- "semi_bold": "Полужирный",
- "thin": "Тонкий",
- "title": "Толщина шрифта"
- }
- },
- "navbar": {
- "additional": "Измените стиль панели навигации и какие кнопки вы хотите отображать",
- "hover": "Отображение только при наведении",
- "notes": "Notes",
- "refresh": "Кнопка перезагрузки",
- "refresh_options": {
- "none": "None",
- "page": "Page"
- },
- "refresh_subtitle": "Выберите, что будет обновляться при нажатии кнопки обновления",
- "title": "Навбар"
- },
- "style": {
- "description": "Выберите один из двух стилей: устаревший (доступен для пользователей, предшествующих версии 7.0) и наш стильный современный стиль.",
- "legacy": "Устаревшее",
- "new": "Новый",
- "title": "Стиль виджета"
- },
- "theme": {
- "auto": "Auto",
- "dark": "Тёмная",
- "description": "Измените тему виджетов и модальных окон Mue",
- "light": "Светлая",
- "title": "Theme"
- },
- "title": "Оформление"
- },
- "background": {
- "api": "Настройки API",
- "api_subtitle": "Варианты получения изображения из внешнего сервиса (API)",
- "buttons": {
- "download": "Download",
- "favourite": "Любимые",
- "title": "Кнопки",
- "view": "Просмотр"
- },
- "categories": "Категории",
- "ddg_image_proxy": "Использование прокси-сервера изображений DuckDuckGo",
- "display": "Отображать",
- "display_subtitle": "Изменение способа загрузки фона и информации о фотографии",
- "effects": {
- "blur": "Размытие",
- "brightness": "Яркость",
- "filters": {
- "amount": "Количество фильтров",
- "contrast": "Контраст",
- "grayscale": "Градации серого",
- "invert": "Негатив",
- "saturate": "Насыщенность",
- "sepia": "Сепия",
- "title": "Фильтр фона"
- },
- "subtitle": "Добавляйте эффекты к фоновым изображениям",
- "title": "Эффекты"
- },
- "interval": {
- "day": "Day",
- "half_hour": "Полчаса",
- "hour": "Час",
- "minute": "Minute",
- "month": "Месяц",
- "subtitle": "Изменить частоту обновления фона",
- "title": "Менять каждые"
- },
- "photo_information": "Показать информацию о фотографии",
- "show_map": "Показывать карту местоположения на фотографии, если она доступна",
- "source": {
- "add_background": "Добавить фон",
- "add_colour": "Добавить цвет",
- "add_url": "Add URL",
- "api": "API для фона",
- "custom_background": "Пользовательский фон",
- "custom_colour": "Пользовательский цвет фон",
- "custom_description": "Выберите изображения с вашего локального компьютера",
- "custom_title": "Пользовательские изображения",
- "disabled": "Выключен",
- "drop_to_upload": "Перетащите, чтобы загрузить",
- "formats": "Доступные форматы: {список}",
- "loop_video": "Зацикленное видео",
- "mute_video": "Отключить звук видео",
- "quality": {
- "datasaver": "Data Saver",
- "high": "Высокое качество",
- "normal": "Нормальное качество",
- "original": "Original",
- "title": "Качество"
- },
- "remove": "Удалить изображение",
- "select": "Или выберите",
- "subtitle": "Выберите, откуда брать фоновые изображения",
- "title": "Source",
- "upload": "Загрузить"
- },
- "title": "Фон",
- "transition": "Затухающий переход",
- "type": {
- "api": "API",
- "custom_colour": "Пользовательский цвет/градиент",
- "custom_image": "Пользовательское изображение",
- "random_colour": "Случайный цвет",
- "random_gradient": "Случайный градиент",
- "title": "Type"
- }
- },
- "changelog": {
- "by": "By {author}",
- "title": "Журнал изменений"
- },
- "date": {
- "datenth": "Дата n-ая",
- "day_of_week": "День недели",
- "long_format": "Длинный формат",
- "short_date": "Короткая дата",
- "short_format": "Короткий формат",
- "short_separator": {
- "dash": "Тире",
- "dots": "Точки",
- "gaps": "Пробелы",
- "slashes": "Слэшы",
- "title": "Короткий разделитель"
- },
- "title": "Date",
- "type": {
- "long": "Длинная",
- "short": "Короткая",
- "subtitle": "Отображать ли дату в длинной или короткой форме"
- },
- "type_settings": "Настройки отображения и формат для выбранного типа даты",
- "week_number": "Число недели"
- },
- "experimental": {
- "developer": "Developer",
- "title": "Экспериментальные настройки",
- "warning": "Данные настройки не были полностью протестированы/реализованы и могут работать некорректно!"
- },
- "greeting": {
- "additional": "Настройки отображения приветствия",
- "birthday": "День рождения",
- "birthday_age": "Возраст рождения",
- "birthday_date": "Дата рождения",
- "birthday_subtitle": "Показать сообщение с днем рождения, когда это ваш день рождения",
- "default": "Сообщение с приветствием по-умолчанию",
- "events": "События",
- "name": "Имя для приветствия",
- "title": "Приветствие"
- },
- "header": {
- "enabled": "Выберите, показывать ли этот виджет",
- "more_info": "Больше информации",
- "report_issue": "Сообщить о проблеме",
- "size": "Ползунок для управления размером виджета"
- },
- "language": {
- "quote": "Язык цитат",
- "title": "Язык"
- },
- "message": {
- "add": "Add message",
- "add_some": "Идем дальше и добавить некоторые.",
- "content": "Содержание сообщения",
- "messages": "Сообщения",
- "no_messages": "Нет сообщений",
- "text": "Text",
- "title": "Message"
- },
- "order": {
- "title": "Порядок виджетов"
- },
- "quicklinks": {
- "add_link": "Добавить ссылку",
- "additional": "Дополнительные настройки отображения и функций быстрых ссылок",
- "edit": "Редактировать",
- "no_quicklinks": "Нет быстрых ссылок",
- "open_new": "Открывать в новой вкладке",
- "options": {
- "icon": "Иконка",
- "metro": "Метро",
- "text_only": "Только текст"
- },
- "style": "Стиль",
- "styling": "Стиль быстрых ссылок",
- "styling_description": "Настройка внешнего вида быстрых ссылок",
- "text_only": "Показывать только текст",
- "title": "Быстрые ссылки",
- "tooltip": "Всплывающая подсказка"
- },
- "quote": {
- "add": "Добавить цитату",
- "additional": "Другие настройки для настройки стиля виджета котировок",
- "author": "Автор",
- "author_img": "Показать изображение автора",
- "author_link": "Author link",
- "buttons": {
- "copy": "Кнопка копирования",
- "favourite": "Кнопка для оценки",
- "subtitle": "Выберите, какие кнопки отображать в котировке",
- "title": "Кнопки",
- "tweet": "Кнопка твита"
- },
- "custom": "Пользовательская цитата",
- "custom_author": "Пользовательский автор",
- "custom_buttons": "Кнопки",
- "custom_subtitle": "Установите свои собственные пользовательские цитаты",
- "no_quotes": "Без кавычек",
- "source_subtitle": "Выберите, откуда брать цитаты",
- "title": "Цитата"
- },
- "search": {
- "additional": "Дополнительные параметры отображения и функциональности поискового виджета",
- "autocomplete": "Автозаполнение",
- "autocomplete_provider": "Поставщик автозаполнения",
- "autocomplete_provider_subtitle": "Поисковая система, используемая для выпадающих результатов автозаполнения",
- "custom": "Пользовательский поисковый движок",
- "dropdown": "Выпадающий список поиска",
- "focus": "Фокус на открытой вкладке",
- "search_engine": "Поисковый движок",
- "search_engine_subtitle": "Выберите поисковую систему для использования в строке поиска",
- "title": "Панель поиска",
- "voice_search": "Поиск голосом"
- },
- "stats": {
- "achievements": "Достижения",
- "sections": {
- "addons_installed": "Установленные аддоны",
- "backgrounds_downloaded": "Загруженные фоны",
- "backgrounds_favourited": "Избранные фоны",
- "quicklinks_added": "Добавлены быстрые ссылки",
- "quotes_favourited": "Избранные цитаты",
- "settings_changed": "Изменены настройки",
- "tabs_opened": "Открытые вкладки"
- },
- "title": "Stats",
- "unlocked": "{count} разблокировано",
- "usage": "Статистика использования"
- },
- "time": {
- "analogue": {
- "hour_hand": "Часовая стрелка",
- "hour_marks": "Часовые метки",
- "minute_hand": "Минутная стрелка",
- "minute_marks": "Минутные метки",
- "round_clock": "Округлый фон",
- "second_hand": "Секундная стрелка",
- "subtitle": "Измените внешний вид аналоговых часов",
- "title": "Аналоговые"
- },
- "digital": {
- "seconds": "Секунды",
- "subtitle": "Измените внешний вид цифровых часов",
- "title": "Цифровые",
- "twelvehour": "12 часов",
- "twentyfourhour": "24 Часа",
- "zero": "Дополнительный ноль"
- },
- "format": "Format",
- "percentage_complete": "Процент завершения",
- "title": "Время",
- "type": "Type",
- "type_subtitle": "Выберите, в каком формате будет отображаться время: в цифровом, аналоговом или в процентах завершения дня",
- "vertical_clock": {
- "change_hour_colour": "Изменить цвет текста часа",
- "change_minute_colour": "Изменить цвет текста минут",
- "title": "Вертикальные часы"
- }
- },
- "weather": {
- "auto": "Auto",
- "custom_settings": "Пользовательские настройки",
- "extra_info": {
- "atmospheric_pressure": "Атмосферное давление",
- "cloudiness": "Облачность",
- "humidity": "Влажность",
- "max_temp": "Максимальная температура",
- "min_temp": "Минимальная температура",
- "show_description": "Показать описание",
- "show_location": "Показать расположение",
- "title": "Extra information",
- "visibility": "Видимость",
- "weather_description": "Описание погоды",
- "wind_direction": "Направление ветра",
- "wind_speed": "Сила ветра"
- },
- "location": "Локация",
- "options": {
- "basic": "Базовый",
- "custom": "Свой",
- "expanded": "Расширенный",
- "standard": "Стандарт"
- },
- "temp_format": {
- "celsius": "Цельсии",
- "fahrenheit": "Фаренгейт",
- "kelvin": "Кельвин",
- "title": "Формат температуры"
- },
- "title": "Погода",
- "widget_type": "Тип виджета"
- }
- }
- },
- "title": "Options"
- },
- "share": {
- "copy_link": "Копировать ссылку",
- "email": "Эл. адрес"
- },
- "update": {
- "error": {
- "description": "Could not connect to the server",
- "title": "Ошибка"
- },
- "offline": {
- "description": "Не удалось получить журнал обновления в офлайн режиме",
- "title": "Офлайн"
- },
- "title": "Обновление"
- },
- "welcome": {
- "buttons": {
- "close": "Закрыть",
- "next": "Next",
- "preview": "Preview",
- "previous": "Previous"
- },
- "preview": {
- "continue": "Продолжить установку",
- "description": "You are currently in preview mode. Settings will be reset on closing this tab."
- },
- "sections": {
- "final": {
- "changes": "Изменения",
- "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
- "description": "Your Mue Tab experience is about to begin.",
- "imported": "Imported {amount} settings",
- "title": "Последний шаг"
- },
- "intro": {
- "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
- "notices": {
- "discord_description": "Поговорите с сообществом Mue и разработчиками",
- "discord_join": "Присоединиться",
- "discord_title": "Присоединяйтесь к нашему дискорду",
- "github_description": "Сообщайте об ошибках, добавляйте функции или пожертвуйте",
- "github_open": "Открыть",
- "github_title": "Внесите свой вклад в GitHub"
- },
- "title": "Добро пожаловать в Mue Tab"
- },
- "language": {
- "description": "Mue can be displayed the languages listed below. You can also add new translations on our",
- "title": "Выберите свой язык"
- },
- "privacy": {
- "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
- "description": "Enable settings to further protect your privacy with Mue.",
- "links": {
- "privacy_policy": "Privacy Policy",
- "source_code": "Source Code",
- "title": "Links"
- },
- "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
- "title": "Privacy Options"
- },
- "settings": {
- "description": "Installing Mue on a new device? Feel free to import your old settings!",
- "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation.",
- "title": "Импортировать настройки"
- },
- "style": {
- "description": "В настоящее время Mue предлагает выбор между устаревшим стилем и недавно выпущенным современным стилем.",
- "legacy": "Устаревший",
- "modern": "Современное",
- "title": "Выберите стиль"
- },
- "theme": {
- "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
- "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes.",
- "title": "Выберите тему"
- }
- },
- "tip": "Quick Tip"
- }
- },
"tabname": "Новая вкладка",
- "toasts": {
- "error": "Что-то пошло не так",
- "imported": "Успешно импортировано",
- "installed": "Успешно установлено",
- "link_copied": "Ссылка скопирована",
- "no_storage": "Недостаточно места",
- "notes": "Notes copied",
- "quote": "Цитата скопирована",
- "reset": "Сброшено",
- "uninstalled": "Успешно удалено",
- "updated": "Successfully updated"
- },
"widgets": {
+ "greeting": {
+ "morning": "Доброе утро",
+ "afternoon": "Добрый день",
+ "evening": "Добрый вечер",
+ "christmas": "С Рождеством",
+ "newyear": "С Новым Годом",
+ "halloween": "Счастливого Хэллоуина",
+ "birthday": "С Днём рождения"
+ },
"background": {
- "camera": "Камера",
- "category": "Категория",
- "confirm": "Подтверждаю",
"credit": "Фото",
+ "unsplash": "на Unsplash",
+ "information": "Information",
"download": "Download",
"downloads": "Загрузки",
- "exclude": "Больше не показывать",
- "exclude_confirm": "Вы уверены, что больше не хотите видеть это изображение?\nПримечание: если вам не нравятся изображения \"{category}\", вы можете отменить выбор категории в настройках источника фона.",
- "information": "Information",
+ "views": "Просмотры",
"likes": "Нравится",
"location": "Локация",
+ "camera": "Камера",
"resolution": "Разрешение",
"source": "Источник",
- "unsplash": "на Unsplash",
- "views": "Просмотры"
+ "category": "Категория",
+ "exclude": "Больше не показывать",
+ "exclude_confirm": "Вы уверены, что больше не хотите видеть это изображение?\nПримечание: если вам не нравятся изображения \"{category}\", вы можете отменить выбор категории в настройках источника фона.",
+ "confirm": "Подтверждаю"
+ },
+ "search": "Поиск",
+ "quicklinks": {
+ "new": "Новая ссылка",
+ "name": "Name",
+ "url": "URL",
+ "icon": "Значок (необязательно)",
+ "add": "Add",
+ "name_error": "Должно содержать имя",
+ "url_error": "Должно содержать URL"
},
"date": {
"week": "Неделя"
},
- "greeting": {
- "afternoon": "Добрый день",
- "birthday": "С Днём рождения",
- "christmas": "С Рождеством",
- "evening": "Добрый вечер",
- "halloween": "Счастливого Хэллоуина",
- "morning": "Доброе утро",
- "newyear": "С Новым Годом"
- },
- "navbar": {
- "notes": {
- "placeholder": "Напишите здесь",
- "title": "Notes"
- },
- "todo": {
- "add": "Добавить",
- "no_todos": "Нет задач",
- "pin": "Прикрепить",
- "title": "Задачи"
- },
- "tooltips": {
- "refresh": "Перезагрузить"
- }
- },
- "quicklinks": {
- "add": "Add",
- "icon": "Значок (необязательно)",
- "name": "Name",
- "name_error": "Должно содержать имя",
- "new": "Новая ссылка",
- "url": "URL",
- "url_error": "Должно содержать URL"
+ "weather": {
+ "not_found": "Не найдено",
+ "meters": "{amount} метры",
+ "extra_information": "Дополнительная информация",
+ "feels_like": "По ощущениям {amount}"
},
"quote": {
- "copy": "Копировать",
- "favourite": "Избранное",
"link_tooltip": "Открыть в Википедии",
"share": "Поделиться",
+ "copy": "Копировать",
+ "favourite": "Избранное",
"unfavourite": "Не нравится"
},
- "search": "Поиск",
- "weather": {
- "extra_information": "Дополнительная информация",
- "feels_like": "По ощущениям {amount}",
- "meters": "{amount} метры",
- "not_found": "Не найдено"
+ "navbar": {
+ "tooltips": {
+ "refresh": "Перезагрузить"
+ },
+ "notes": {
+ "title": "Notes",
+ "placeholder": "Напишите здесь"
+ },
+ "todo": {
+ "title": "Задачи",
+ "pin": "Прикрепить",
+ "add": "Добавить",
+ "no_todos": "Нет задач"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Options",
+ "loading": "Загрузка...",
+ "file_upload_error": "Файл больше 2 МБ",
+ "navbar": {
+ "settings": "Настройки",
+ "addons": "Аддоны",
+ "marketplace": "Магазин"
+ },
+ "error_boundary": {
+ "title": "Ошибка",
+ "message": "Не удалось загрузить этот компонент Mue",
+ "report_error": "Отправить сообщение об ошибке",
+ "sent": "Отправил!",
+ "refresh": "Обновить"
+ },
+ "settings": {
+ "enabled": "Включено",
+ "open_knowledgebase": "Открытая база знаний",
+ "additional_settings": "Дополнительные настройки",
+ "reminder": {
+ "title": "NOTICE",
+ "message": "Для того чтобы все изменения произошли, необходимо обновить страницу."
+ },
+ "sections": {
+ "header": {
+ "more_info": "Больше информации",
+ "report_issue": "Сообщить о проблеме",
+ "enabled": "Выберите, показывать ли этот виджет",
+ "size": "Ползунок для управления размером виджета"
+ },
+ "time": {
+ "title": "Время",
+ "format": "Format",
+ "type": "Type",
+ "type_subtitle": "Выберите, в каком формате будет отображаться время: в цифровом, аналоговом или в процентах завершения дня",
+ "digital": {
+ "title": "Цифровые",
+ "subtitle": "Измените внешний вид цифровых часов",
+ "seconds": "Секунды",
+ "twentyfourhour": "24 Часа",
+ "twelvehour": "12 часов",
+ "zero": "Дополнительный ноль"
+ },
+ "analogue": {
+ "title": "Аналоговые",
+ "subtitle": "Измените внешний вид аналоговых часов",
+ "second_hand": "Секундная стрелка",
+ "minute_hand": "Минутная стрелка",
+ "hour_hand": "Часовая стрелка",
+ "hour_marks": "Часовые метки",
+ "minute_marks": "Минутные метки",
+ "round_clock": "Округлый фон"
+ },
+ "percentage_complete": "Процент завершения",
+ "vertical_clock": {
+ "title": "Вертикальные часы",
+ "change_hour_colour": "Изменить цвет текста часа",
+ "change_minute_colour": "Изменить цвет текста минут"
+ }
+ },
+ "date": {
+ "title": "Date",
+ "week_number": "Число недели",
+ "day_of_week": "День недели",
+ "datenth": "Дата n-ая",
+ "type": {
+ "short": "Короткая",
+ "long": "Длинная",
+ "subtitle": "Отображать ли дату в длинной или короткой форме"
+ },
+ "type_settings": "Настройки отображения и формат для выбранного типа даты",
+ "short_date": "Короткая дата",
+ "short_format": "Короткий формат",
+ "long_format": "Длинный формат",
+ "short_separator": {
+ "title": "Короткий разделитель",
+ "dots": "Точки",
+ "dash": "Тире",
+ "gaps": "Пробелы",
+ "slashes": "Слэшы"
+ }
+ },
+ "quote": {
+ "title": "Цитата",
+ "additional": "Другие настройки для настройки стиля виджета котировок",
+ "author_link": "Author link",
+ "custom": "Пользовательская цитата",
+ "custom_subtitle": "Установите свои собственные пользовательские цитаты",
+ "no_quotes": "Без кавычек",
+ "author": "Автор",
+ "custom_buttons": "Кнопки",
+ "custom_author": "Пользовательский автор",
+ "author_img": "Показать изображение автора",
+ "add": "Добавить цитату",
+ "source_subtitle": "Выберите, откуда брать цитаты",
+ "buttons": {
+ "title": "Кнопки",
+ "subtitle": "Выберите, какие кнопки отображать в котировке",
+ "copy": "Кнопка копирования",
+ "tweet": "Кнопка твита",
+ "favourite": "Кнопка для оценки"
+ }
+ },
+ "greeting": {
+ "title": "Приветствие",
+ "events": "События",
+ "default": "Сообщение с приветствием по-умолчанию",
+ "name": "Имя для приветствия",
+ "birthday": "День рождения",
+ "birthday_subtitle": "Показать сообщение с днем рождения, когда это ваш день рождения",
+ "birthday_age": "Возраст рождения",
+ "birthday_date": "Дата рождения",
+ "additional": "Настройки отображения приветствия"
+ },
+ "background": {
+ "title": "Фон",
+ "ddg_image_proxy": "Использование прокси-сервера изображений DuckDuckGo",
+ "transition": "Затухающий переход",
+ "photo_information": "Показать информацию о фотографии",
+ "show_map": "Показывать карту местоположения на фотографии, если она доступна",
+ "categories": "Категории",
+ "buttons": {
+ "title": "Кнопки",
+ "view": "Просмотр",
+ "favourite": "Любимые",
+ "download": "Download"
+ },
+ "effects": {
+ "title": "Эффекты",
+ "subtitle": "Добавляйте эффекты к фоновым изображениям",
+ "blur": "Размытие",
+ "brightness": "Яркость",
+ "filters": {
+ "title": "Фильтр фона",
+ "amount": "Количество фильтров",
+ "grayscale": "Градации серого",
+ "sepia": "Сепия",
+ "invert": "Негатив",
+ "saturate": "Насыщенность",
+ "contrast": "Контраст"
+ }
+ },
+ "type": {
+ "title": "Type",
+ "api": "API",
+ "custom_image": "Пользовательское изображение",
+ "custom_colour": "Пользовательский цвет/градиент",
+ "random_colour": "Случайный цвет",
+ "random_gradient": "Случайный градиент"
+ },
+ "source": {
+ "title": "Source",
+ "subtitle": "Выберите, откуда брать фоновые изображения",
+ "api": "API для фона",
+ "custom_background": "Пользовательский фон",
+ "custom_colour": "Пользовательский цвет фон",
+ "upload": "Загрузить",
+ "add_colour": "Добавить цвет",
+ "add_background": "Добавить фон",
+ "drop_to_upload": "Перетащите, чтобы загрузить",
+ "formats": "Доступные форматы: {список}",
+ "select": "Или выберите",
+ "add_url": "Add URL",
+ "disabled": "Выключен",
+ "loop_video": "Зацикленное видео",
+ "mute_video": "Отключить звук видео",
+ "quality": {
+ "title": "Качество",
+ "original": "Original",
+ "high": "Высокое качество",
+ "normal": "Нормальное качество",
+ "datasaver": "Data Saver"
+ },
+ "custom_title": "Пользовательские изображения",
+ "custom_description": "Выберите изображения с вашего локального компьютера",
+ "remove": "Удалить изображение"
+ },
+ "display": "Отображать",
+ "display_subtitle": "Изменение способа загрузки фона и информации о фотографии",
+ "api": "Настройки API",
+ "api_subtitle": "Варианты получения изображения из внешнего сервиса (API)",
+ "interval": {
+ "title": "Менять каждые",
+ "subtitle": "Изменить частоту обновления фона",
+ "minute": "Minute",
+ "half_hour": "Полчаса",
+ "hour": "Час",
+ "day": "Day",
+ "month": "Месяц"
+ }
+ },
+ "search": {
+ "title": "Панель поиска",
+ "additional": "Дополнительные параметры отображения и функциональности поискового виджета",
+ "search_engine": "Поисковый движок",
+ "search_engine_subtitle": "Выберите поисковую систему для использования в строке поиска",
+ "custom": "Пользовательский поисковый движок",
+ "autocomplete": "Автозаполнение",
+ "autocomplete_provider": "Поставщик автозаполнения",
+ "autocomplete_provider_subtitle": "Поисковая система, используемая для выпадающих результатов автозаполнения",
+ "voice_search": "Поиск голосом",
+ "dropdown": "Выпадающий список поиска",
+ "focus": "Фокус на открытой вкладке"
+ },
+ "weather": {
+ "title": "Погода",
+ "location": "Локация",
+ "auto": "Auto",
+ "widget_type": "Тип виджета",
+ "temp_format": {
+ "title": "Формат температуры",
+ "celsius": "Цельсии",
+ "fahrenheit": "Фаренгейт",
+ "kelvin": "Кельвин"
+ },
+ "extra_info": {
+ "title": "Extra information",
+ "show_location": "Показать расположение",
+ "show_description": "Показать описание",
+ "weather_description": "Описание погоды",
+ "cloudiness": "Облачность",
+ "humidity": "Влажность",
+ "visibility": "Видимость",
+ "wind_speed": "Сила ветра",
+ "wind_direction": "Направление ветра",
+ "min_temp": "Минимальная температура",
+ "max_temp": "Максимальная температура",
+ "atmospheric_pressure": "Атмосферное давление"
+ },
+ "options": {
+ "basic": "Базовый",
+ "standard": "Стандарт",
+ "expanded": "Расширенный",
+ "custom": "Свой"
+ },
+ "custom_settings": "Пользовательские настройки"
+ },
+ "quicklinks": {
+ "title": "Быстрые ссылки",
+ "additional": "Дополнительные настройки отображения и функций быстрых ссылок",
+ "open_new": "Открывать в новой вкладке",
+ "tooltip": "Всплывающая подсказка",
+ "text_only": "Показывать только текст",
+ "add_link": "Добавить ссылку",
+ "no_quicklinks": "Нет быстрых ссылок",
+ "edit": "Редактировать",
+ "style": "Стиль",
+ "options": {
+ "icon": "Иконка",
+ "text_only": "Только текст",
+ "metro": "Метро"
+ },
+ "styling": "Стиль быстрых ссылок",
+ "styling_description": "Настройка внешнего вида быстрых ссылок"
+ },
+ "message": {
+ "title": "Message",
+ "add": "Add message",
+ "messages": "Сообщения",
+ "text": "Text",
+ "no_messages": "Нет сообщений",
+ "add_some": "Идем дальше и добавить некоторые.",
+ "content": "Содержание сообщения"
+ },
+ "appearance": {
+ "title": "Оформление",
+ "style": {
+ "title": "Стиль виджета",
+ "description": "Выберите один из двух стилей: устаревший (доступен для пользователей, предшествующих версии 7.0) и наш стильный современный стиль.",
+ "legacy": "Устаревшее",
+ "new": "Новый"
+ },
+ "theme": {
+ "title": "Theme",
+ "description": "Измените тему виджетов и модальных окон Mue",
+ "auto": "Auto",
+ "light": "Светлая",
+ "dark": "Тёмная"
+ },
+ "navbar": {
+ "title": "Навбар",
+ "notes": "Notes",
+ "refresh": "Кнопка перезагрузки",
+ "refresh_subtitle": "Выберите, что будет обновляться при нажатии кнопки обновления",
+ "hover": "Отображение только при наведении",
+ "additional": "Измените стиль панели навигации и какие кнопки вы хотите отображать",
+ "refresh_options": {
+ "none": "None",
+ "page": "Page"
+ }
+ },
+ "font": {
+ "title": "Font",
+ "description": "Измените шрифт, используемый в Mue",
+ "custom": "Пользовательский шрифт",
+ "google": "Импортировать из Google Fonts",
+ "weight": {
+ "title": "Толщина шрифта",
+ "thin": "Тонкий",
+ "extra_light": "Очень тонкий",
+ "light": "Лёгкий",
+ "normal": "Normal",
+ "medium": "Medium",
+ "semi_bold": "Полужирный",
+ "bold": "Жирный",
+ "extra_bold": "Сверхжирный"
+ },
+ "style": {
+ "title": "Font style",
+ "normal": "Normal",
+ "italic": "Italic",
+ "oblique": "Курсив"
+ }
+ },
+ "accessibility": {
+ "title": "Доступность",
+ "description": "Настройки специальных возможностей для Mue",
+ "animations": "Анимации",
+ "text_shadow": {
+ "title": "Тень текста виджета",
+ "new": "Новое",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "Widget zoom",
+ "toast_duration": "Продолжительность подсказки",
+ "milliseconds": "миллисекунды"
+ }
+ },
+ "order": {
+ "title": "Порядок виджетов"
+ },
+ "advanced": {
+ "title": "Дополнительно",
+ "offline_mode": "Офлайн режим",
+ "offline_subtitle": "При включении все запросы к онлайн-сервисам будут отключены.",
+ "data": "Data",
+ "data_subtitle": "Выберите, следует ли экспортировать настройки Mue на компьютер, импортировать существующий файл настроек или сбросить настройки до значений по умолчанию",
+ "reset_modal": {
+ "title": "WARNING",
+ "question": "Вы хотите сбросить Mue?",
+ "information": "Это приведет к удалению всех данных. Если вы хотите сохранить свои данные и предпочтения, сначала экспортируйте их.",
+ "cancel": "Отменить"
+ },
+ "customisation": "Кастомизация",
+ "custom_css": "Пользовательский CSS",
+ "custom_css_subtitle": "Настройте стиль Mue под себя с помощью каскадных таблиц стилей (CSS).",
+ "custom_js": "Пользовательский JS",
+ "tab_name": "Tab name",
+ "tab_name_subtitle": "Измените название вкладки, которая появляется в вашем браузере",
+ "timezone": {
+ "title": "Часовой пояс",
+ "subtitle": "Выберите часовой пояс из списка вместо автоматического по умолчанию с вашего компьютера",
+ "automatic": "Автоматически"
+ },
+ "experimental_warning": "Обратите внимание, что команда Mue не может оказать поддержку, если у вас включен экспериментальный режим. Пожалуйста, сначала отключите его и посмотрите, сохранится ли проблема, прежде чем обращаться в службу поддержки."
+ },
+ "stats": {
+ "title": "Stats",
+ "sections": {
+ "tabs_opened": "Открытые вкладки",
+ "backgrounds_favourited": "Избранные фоны",
+ "backgrounds_downloaded": "Загруженные фоны",
+ "quotes_favourited": "Избранные цитаты",
+ "quicklinks_added": "Добавлены быстрые ссылки",
+ "settings_changed": "Изменены настройки",
+ "addons_installed": "Установленные аддоны"
+ },
+ "usage": "Статистика использования",
+ "achievements": "Достижения",
+ "unlocked": "{count} разблокировано"
+ },
+ "experimental": {
+ "title": "Экспериментальные настройки",
+ "warning": "Данные настройки не были полностью протестированы/реализованы и могут работать некорректно!",
+ "developer": "Developer"
+ },
+ "language": {
+ "title": "Язык",
+ "quote": "Язык цитат"
+ },
+ "changelog": {
+ "title": "Журнал изменений",
+ "by": "By {author}"
+ },
+ "about": {
+ "title": "О программе",
+ "copyright": "Copyright",
+ "version": {
+ "title": "Version",
+ "checking_update": "Проверка обновлений",
+ "update_available": "Обновление доступно",
+ "no_update": "Нет доступных обновлений",
+ "offline_mode": "Невозможно проверить наличие обновления в автономном режиме",
+ "error": {
+ "title": "Не удалось получить информацию об обновлении",
+ "description": "Обнаружена ошибка"
+ }
+ },
+ "contact_us": "Contact Us",
+ "support_mue": "Support Mue",
+ "support_subtitle": "Поскольку Mue полностью бесплатен, мы полагаемся на пожертвования для покрытия счетов за сервер и финансирования развития",
+ "support_donate": "Пожертвовать",
+ "form_button": "Форма",
+ "resources_used": {
+ "title": "Используемые ресурсы",
+ "bg_images": "Фоновые изображения в оффлайне"
+ },
+ "contributors": "Участники",
+ "supporters": "Поддержка",
+ "no_supporters": "В настоящее время нет поддержки Mue",
+ "photographers": "Фотографы"
+ }
+ },
+ "buttons": {
+ "reset": "Сбросить",
+ "import": "Импорт",
+ "export": "Экспорт"
+ }
+ },
+ "marketplace": {
+ "by": "от {author}",
+ "all": "Все",
+ "learn_more": "Узнать больше",
+ "photo_packs": "Наборы фото",
+ "quote_packs": "Наборы цитат",
+ "preset_settings": "Пресеты настроек",
+ "no_items": "Нет элементов в этой категории",
+ "collection": "Коллекция",
+ "explore_collection": "Исследуйте коллекцию",
+ "add_all": "Добавить все в Mue",
+ "collections": "Коллекции",
+ "cant_find": "Не можете найти то, что ищете?",
+ "knowledgebase_one": "Посетить",
+ "knowledgebase_two": "база знаний",
+ "knowledgebase_three": "чтобы создать свой собственный.",
+ "product": {
+ "overview": "Обзор",
+ "information": "Информация",
+ "last_updated": "Последнее обновление",
+ "description": "Описание",
+ "show_more": "Показать больше",
+ "show_less": "Показать меньше",
+ "show_all": "Показать все",
+ "showing": "Показаны",
+ "no_images": "№ Изображения",
+ "no_quotes": "Цитаты",
+ "version": "Версия",
+ "author": "Автор",
+ "part_of": "Часть",
+ "explore": "Обзор",
+ "buttons": {
+ "addtomue": "Добавить в Mue",
+ "remove": "Удалить",
+ "update_addon": "Update Add-on",
+ "back": "Назад",
+ "report": "Жалоба"
+ },
+ "setting": "Параметр",
+ "value": "Цена"
+ },
+ "offline": {
+ "title": "Похоже, что вы офлайн",
+ "description": "Пожалуйста, подключитесь к интернету"
+ }
+ },
+ "addons": {
+ "added": "Добавлен",
+ "check_updates": "Проверка обновлений",
+ "no_updates": "Обновления отсутствуют",
+ "updates_available": "Доступны обновления {amount}",
+ "empty": {
+ "title": "Здесь пусто",
+ "description": "Зайдите в магазин, чтобы найти что-то интересное"
+ },
+ "sideload": {
+ "title": "Загрузить",
+ "description": "Установить аддон Mue, не представленную на торговой площадке, со своего компьютера",
+ "failed": "Не удалось загрузить аддоны",
+ "errors": {
+ "no_name": "Название не указано",
+ "no_author": "Автор не указан",
+ "no_type": "Тип не указан",
+ "invalid_photos": "Недопустимый объект фотографии",
+ "invalid_quotes": "Invalid quotes object"
+ }
+ },
+ "sort": {
+ "title": "Сортировка",
+ "newest": "Installed (Newest)",
+ "oldest": "Installed (Oldest)",
+ "a_z": "Alphabetical (A-Z)",
+ "z_a": "Alphabetical (Z-A)"
+ },
+ "create": {
+ "title": "Создать",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Обновление",
+ "offline": {
+ "title": "Офлайн",
+ "description": "Не удалось получить журнал обновления в офлайн режиме"
+ },
+ "error": {
+ "title": "Ошибка",
+ "description": "Could not connect to the server"
+ }
+ },
+ "welcome": {
+ "tip": "Quick Tip",
+ "sections": {
+ "intro": {
+ "title": "Добро пожаловать в Mue Tab",
+ "description": "Thank you for installing Mue, we hope you enjoy your time with our extension.",
+ "notices": {
+ "discord_title": "Присоединяйтесь к нашему дискорду",
+ "discord_description": "Поговорите с сообществом Mue и разработчиками",
+ "discord_join": "Присоединиться",
+ "github_title": "Внесите свой вклад в GitHub",
+ "github_description": "Сообщайте об ошибках, добавляйте функции или пожертвуйте",
+ "github_open": "Открыть"
+ }
+ },
+ "language": {
+ "title": "Выберите свой язык",
+ "description": "Mue can be displayed the languages listed below. You can also add new translations on our"
+ },
+ "theme": {
+ "title": "Выберите тему",
+ "description": "Mue is available in both light and dark theme, or this can be automatically set depending on your system theme.",
+ "tip": "Using the Auto settings will use the theme on your computer. This setting will impact the modals and some of the widgets displayed on the screen, such as weather and notes."
+ },
+ "style": {
+ "title": "Выберите стиль",
+ "description": "В настоящее время Mue предлагает выбор между устаревшим стилем и недавно выпущенным современным стилем.",
+ "legacy": "Устаревший",
+ "modern": "Современное"
+ },
+ "settings": {
+ "title": "Импортировать настройки",
+ "description": "Installing Mue on a new device? Feel free to import your old settings!",
+ "tip": "You can export your old settings by navigating to the Advanced tab in your old Mue setup. Then you need to click the export button which will download the JSON file. You can upload this file here to carry across your settings and preferences from your previous Mue installation."
+ },
+ "privacy": {
+ "title": "Privacy Options",
+ "description": "Enable settings to further protect your privacy with Mue.",
+ "offline_mode_description": "Enabling offline mode will disable all requests to any service. This will result in online backgrounds, online quotes, marketplace, weather, quick links, change log and some about tab information to be disabled.",
+ "ddg_proxy_description": "You can make image requests go through DuckDuckGo if you wish. By default, API requests go through our open source servers and image requests go through the original server. Turning this off for quick links will get the icons from Google instead of DuckDuckGo. DuckDuckGo proxy is always enabled for the Marketplace.",
+ "links": {
+ "title": "Links",
+ "privacy_policy": "Privacy Policy",
+ "source_code": "Source Code"
+ }
+ },
+ "final": {
+ "title": "Последний шаг",
+ "description": "Your Mue Tab experience is about to begin.",
+ "changes": "Изменения",
+ "changes_description": "To change settings later click on the settings icon in the top right corner of your tab.",
+ "imported": "Imported {amount} settings"
+ }
+ },
+ "buttons": {
+ "next": "Next",
+ "preview": "Preview",
+ "previous": "Previous",
+ "close": "Закрыть"
+ },
+ "preview": {
+ "description": "You are currently in preview mode. Settings will be reset on closing this tab.",
+ "continue": "Продолжить установку"
+ }
+ },
+ "share": {
+ "copy_link": "Копировать ссылку",
+ "email": "Эл. адрес"
+ }
+ },
+ "toasts": {
+ "quote": "Цитата скопирована",
+ "notes": "Notes copied",
+ "reset": "Сброшено",
+ "installed": "Успешно установлено",
+ "uninstalled": "Успешно удалено",
+ "updated": "Successfully updated",
+ "error": "Что-то пошло не так",
+ "imported": "Успешно импортировано",
+ "no_storage": "Недостаточно места",
+ "link_copied": "Ссылка скопирована"
}
}
diff --git a/src/translations/tr_TR.json b/src/translations/tr_TR.json
index 5b2ee51f..cafec328 100644
--- a/src/translations/tr_TR.json
+++ b/src/translations/tr_TR.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "Eklentiler",
- "check_updates": "Güncellemeleri kontrol et.",
- "create": {
- "create_type": "{type} Paketi Oluştur",
- "descriptions": {
- "photos": "Bir konuyla ilgili fotoğrafların koleksiyonu.",
- "quotes": "Bir konuyla ilgili alıntıların koleksiyonu.",
- "settings": "Mue'yi özelleştirmek için kullanılan ayarların koleksiyonu."
- },
- "example": "Örnek",
- "finish": {
- "download": "Eklentiyi İndir",
- "title": "Kurulumu Bitir"
- },
- "import_custom": "Özel ayarlardan içeri aktarın.",
- "information": "Bilgilendirme",
- "information_subtitle": "Örneğin: 1.2.3 (büyük güncelleme, küçük güncelleme, yama güncellemesi)",
- "metadata": {
- "description": "Açıklama",
- "example": "Örneği İndir",
- "icon_url": "İkon URL'si ",
- "name": "İsmi",
- "screenshot_url": "Arka plan URL'si"
- },
- "other_title": "Eklenti Oluştur",
- "photos": {
- "title": "Fotoğraf Ekle"
- },
- "publishing": {
- "button": "Daha fazla bilgi edin.",
- "subtitle": "Yeni oluşturduğunuz eklentiyi nasıl yayınlayacağınızla ilgili bilgiler için Mue Bilgi Bankası'nı ziyaret edin.",
- "title": "Sonraki adım, Yayınla..."
- },
- "quotes": {
- "api": {
- "author": "JSON alıntı yazarı (veya geçersiz kılma)",
- "name": "JSON alıntı adı",
- "title": "API",
- "url": "Alıntı URL'si"
- },
- "local": {
- "title": "Yerel"
- },
- "title": "Alıntı Ekle"
- },
- "settings": {
- "current": "Mevcut kurulumu içe aktar",
- "json": "JSON'u yükleyin"
- },
- "title": "Oluştur",
- "types": {
- "photos": "Fatoğraf Paketi",
- "quotes": "Alıntı Paketi",
- "settings": "Önceden Ayarlanmış Ayarlar Paketi"
- }
- },
- "empty": {
- "description": "Hiçbir eklenti yüklü değil.",
- "title": "Boş"
- },
- "no_updates": "Güncelleme mevcut değil.",
- "sideload": {
- "description": "Bilgisayarınızdan pazar yerinde olmayan bir Mue eklentisi yükleyin.",
- "errors": {
- "invalid_photos": "Geçersiz fotoğraf nesnesi",
- "invalid_quotes": "Geçersiz alıntı nesnesi",
- "no_author": "Yazar belirtilmedi.",
- "no_name": "İsim belirtilmedi.",
- "no_type": "Tür sağlanmadı."
- },
- "failed": "Eklenti yüklenemedi.",
- "title": "Diğer Eklentiler"
- },
- "sort": {
- "a_z": "Alfabetik (A-Z)",
- "newest": "Kurulanlar (En Yeni)",
- "oldest": "Kurulanlar (En Eski)",
- "title": "Sırala",
- "z_a": "Alfabetik (Z-A)"
- },
- "updates_available": "Güncellemeler mevcut {amount} !"
- },
- "error_boundary": {
- "message": "Mue'nin bu bileşeni yüklenemedi.",
- "refresh": "Yenile",
- "report_error": "Hata Raporunu Gönder!",
- "sent": "Gönder!",
- "title": "Hata"
- },
- "file_upload_error": "Dosya 2 MB'ın üzerinde",
- "loading": "Yükleniyor...",
- "marketplace": {
- "add_all": "Hepsini Ekle",
- "all": "Tümü",
- "by": "by {author}",
- "cant_find": "Aradığınızı bulamıyor musunuz?",
- "collection": "Koleksiyon",
- "collections": "Koleksiyonlar",
- "explore_collection": "Koleksiyonu Keşfedin",
- "knowledgebase_one": "Kendiniz oluşturmak için ",
- "knowledgebase_three": "ziyaret edin.",
- "knowledgebase_two": "bilgilendirme sayfamızı ",
- "learn_more": "Daha Fazla Bilgi Edin",
- "no_items": "Bu kategoride öğe yok",
- "offline": {
- "description": "Lütfen internete bağlanın ve tekrar deneyin.",
- "title": "Görünüşe bakılırsa çevrimdışısınız!"
- },
- "photo_packs": "Fotoğraf Paketleri",
- "preset_settings": "Ön Ayar Paketleri",
- "product": {
- "author": "Yazar",
- "buttons": {
- "addtomue": "Mue Tab'ıma Ekle",
- "back": "Geri",
- "remove": "Kaldır",
- "report": "Bildir/Raporla",
- "update_addon": "Eklentiyi Güncelle"
- },
- "description": "Açıklama/Tanım",
- "explore": "Keşfet",
- "information": "Bilgi",
- "last_updated": "Son Güncelleme",
- "no_images": "Fotoğraf bulunamadı",
- "no_quotes": "Alıntı bulunamadı",
- "overview": "Genel Bakış",
- "part_of": "Parçası",
- "setting": "Ayarlar",
- "show_all": "Hepsini Göster ↓",
- "show_less": "Daha Az Göster",
- "show_more": "Daha Fazla Göster",
- "showing": "Gösteriliyor",
- "value": "Value",
- "version": "Versiyon"
- },
- "quote_packs": "Alıntı Paketleri"
- },
- "navbar": {
- "addons": "Eklentilerim",
- "marketplace": "Market",
- "settings": "Ayarlar"
- },
- "settings": {
- "additional_settings": "Ek Ayarlar",
- "buttons": {
- "export": "Dışarı Aktar",
- "import": "İçeri Aktar",
- "reset": "Yenile"
- },
- "enabled": "Etkinleştir",
- "open_knowledgebase": "Bilgilendirme Sayfasını Aç.",
- "reminder": {
- "message": "Tüm değişikliklerin gerçekleşmesi için sayfanın yenilenmesi gerekir.",
- "title": "UYARI"
- },
- "sections": {
- "about": {
- "contact_us": "Bize Ulaşın!",
- "contributors": "Katkıda Bulunanlar",
- "copyright": "Telif Hakkı",
- "form_button": "Form",
- "no_supporters": "Şu anda Mue destekçisi yok!",
- "photographers": "Fotoğrafçılar",
- "resources_used": {
- "bg_images": "Çevrimdışı Arka Plan Resim İçerikleri",
- "title": "Kullanılan Kaynaklar"
- },
- "support_donate": "Bağış Yap",
- "support_mue": "Mue Destek",
- "support_subtitle": "Mue tamamen ücretsiz olduğu için, sunucu faturalarını karşılamak ve geliştirme masraflarını finanse etmek için bağışları kullanıyoruz.",
- "supporters": "Destekleyenler",
- "title": "Hakkında",
- "version": {
- "checking_update": "Güncellemeleri Kontrol Et",
- "error": {
- "description": "Bir hata oluştu.",
- "title": "Güncelleme bilgisi alınamadı."
- },
- "no_update": "En Güncel Sürümdesiniz",
- "offline_mode": "Çevrimdışı modda güncelleme kontrol edilemiyor.",
- "title": "Versiyon",
- "update_available": "Güncelleme Mevcut!"
- }
- },
- "advanced": {
- "custom_css": "Özel CSS",
- "custom_css_subtitle": "Mue'nin stilini 'Cascading Style Sheets (CSS)' ile özelleştirin.",
- "custom_js": "Özel JS",
- "customisation": "Özelleştirme",
- "data": "Veri",
- "data_subtitle": "Mue Tab ayarlarınızı bilgisayarınıza kaydetmenize, mevcut ayarlarınızı başka bir bilgisayara aktarmanıza veya ayarlarınızı varsayılan değerlerine sıfırlamınıza olanak sağlar. İstediğiniz işlemi seçin.",
- "experimental_warning": "Deneysel modunuz açıksa Mue ekibinin destek sağlayamadığını lütfen unutmayın. Lütfen önce devre dışı bırakın ve desteğe başvurmadan önce sorunun devam edip etmediğini görün.",
- "offline_mode": "Çevrimdışı Mod",
- "offline_subtitle": "Etkinleştirildiğinde, çevrimiçi hizmetlere yönelik tüm istekler devre dışı bırakılır.",
- "reset_modal": {
- "cancel": "İptal",
- "information": "Bu, tüm verilerinizi silecektir. Verilerinizi ve tercihlerinizi saklamak istiyorsanız, lütfen önce bunları dışa aktarın.",
- "question": "Mue'yu sıfırlamak istiyor musunuz?",
- "title": "UYARI"
- },
- "tab_name": "Sekme Adı",
- "tab_name_subtitle": "Tarayıcınızda görünen sekmenin adını değiştirin.",
- "timezone": {
- "automatic": "Otomatik",
- "subtitle": "Bilgisayarınızın otomatik varsayılanından ziyade listeden bir zaman dilimi seçin.",
- "title": "Zaman Dilimi"
- },
- "title": "Gelişmiş"
- },
- "appearance": {
- "accessibility": {
- "animations": "Animasyonlar",
- "description": "Mue Erişebilirlik ayarlarını değiştirin",
- "milliseconds": "Milisaniye",
- "text_shadow": {
- "new": "Yeni",
- "none": "Hiçbiri",
- "old": "Eski",
- "title": "Widget metin gölgesi"
- },
- "title": "Erişebilirlik",
- "toast_duration": "Bildirim süresi",
- "widget_zoom": "Widget Ölçeği"
- },
- "font": {
- "custom": "Özel yazı tipi",
- "description": "Mue'da kullanılan yazı tipini değiştirin.",
- "google": "Google Fonts'tan içeri aktar.",
- "style": {
- "italic": "İtalik",
- "normal": "Normal",
- "oblique": "Eğik",
- "title": "Yazı stili"
- },
- "title": "Yazı tipi",
- "weight": {
- "bold": "Kalın",
- "extra_bold": "Ekstra Kalın",
- "extra_light": "İnce",
- "light": "Hafif İnce",
- "medium": "Orta",
- "normal": "Normal",
- "semi_bold": "Hafif Kalın",
- "thin": "Ekstra İnce",
- "title": "Yazı tipi genişliği"
- }
- },
- "navbar": {
- "additional": "Gezinme çubuğu stilini ve hangi butonları görüntülemek istediğinizi değiştirin.",
- "hover": "Yalnızca fareyle üzerine gelindiğinde göster.",
- "notes": "Notlar",
- "refresh": "Yenile Butonu",
- "refresh_options": {
- "none": "Hiçbiri",
- "page": "Sayfa"
- },
- "refresh_subtitle": "Yenile düğmesine tıkladığınızda yenilenecek öğeleri seçin.",
- "title": "Gezinme Çubuğu"
- },
- "style": {
- "description": "Eski (7.0 öncesi kullanıcılar için etkin) ve şık modern stilimiz olmak üzere iki stil arasından seçim yapın.",
- "legacy": "Eski",
- "new": "Yeni",
- "title": "Widget Stili"
- },
- "theme": {
- "auto": "Otomatik",
- "dark": "Koyu",
- "description": "Mue araçlarınızın(widget) ve modellerinin temasını değiştirin.",
- "light": "Açık",
- "title": "Tema"
- },
- "title": "Görünüm"
- },
- "background": {
- "api": "API Ayarları",
- "api_subtitle": "Harici bir hizmetten (API) aracılığıyla görüntü alma seçeneklerini belirleyin.",
- "buttons": {
- "download": "İndir",
- "favourite": "Favorilere Ekle",
- "title": "Butonlar",
- "view": "Arka Planı Görüntüle"
- },
- "categories": "Kategoriler",
- "ddg_image_proxy": "DuckDuckGo görüntü proxy'sini kullan.",
- "display": "Görüntüleme",
- "display_subtitle": "Arka plan ve fotoğraf bilgilerinin nasıl yüklendiğini değiştirin.",
- "effects": {
- "blur": "Bulanıklığı ayarla",
- "brightness": "Parlaklığı ayarla",
- "filters": {
- "amount": "Filtre miktarı",
- "contrast": "Kontrast",
- "grayscale": "Gri tonlama",
- "invert": "Ters çevir",
- "saturate": "Doygunluk",
- "sepia": "Sepya",
- "title": "Arka plan filtresi"
- },
- "subtitle": "Arka plan görseli için efektleri düzenleyin.",
- "title": "Görsel Efektler"
- },
- "interval": {
- "day": "Günde Bir",
- "half_hour": "Yarım Saatte Bir",
- "hour": "Saatte Bir",
- "minute": "Dakikada Bir",
- "month": "Ayda Bir",
- "subtitle": "Arka planın ne sıklıkla güncelleneceğini değiştirin.",
- "title": "Değiştirme Sıklığı"
- },
- "photo_information": "Fotoğraf bilgilerini göster.",
- "show_map": "Varsa fotoğraf bilgilerinde konum bilgisini göster.",
- "source": {
- "add_background": "Arka Plan Ekle",
- "add_colour": "Renk Ekle",
- "add_url": "URL/Uzantı Ekle",
- "api": "Arka plan API",
- "custom_background": "Özel arka plan resmi",
- "custom_colour": "Özel Arka Plan Rengi",
- "custom_description": "Bilgisayarınızdan görseli seçin.",
- "custom_title": "Özel Arka Plan",
- "disabled": "Kullanılamaz",
- "drop_to_upload": "Yüklemek için bırakın!",
- "formats": "Kullanılabilir biçimler: {list}",
- "loop_video": "Tekrarlayan video",
- "mute_video": "Videonun sesini kapat.",
- "quality": {
- "datasaver": "Veri Tasarrufu",
- "high": "Yüksek Kalite",
- "normal": "Normal Kalite",
- "original": "Orjinal",
- "title": "Kalite"
- },
- "remove": "Resmi Kaldır",
- "select": "Veya Seç",
- "subtitle": "Arka plan resimlerinin nereden alınacağını seçin.",
- "title": "Kaynak",
- "upload": "Yükle"
- },
- "title": "Arka Plan",
- "transition": "Geçiş sırasında solma efekti uygula.",
- "type": {
- "api": "API",
- "custom_colour": "Özel renk/gradyan",
- "custom_image": "Özel resim",
- "random_colour": "Özel renk",
- "random_gradient": "Özel gradyan",
- "title": "Tip"
- }
- },
- "changelog": {
- "by": "Yayınlayan: {author}",
- "title": "Güncelleme Notları"
- },
- "date": {
- "datenth": "Gün Vurgusu",
- "day_of_week": "Haftanın Günü",
- "long_format": "Uzun biçim",
- "short_date": "Kısa Tarih",
- "short_format": "Kısa biçim",
- "short_separator": {
- "dash": "Kısa çizgi",
- "dots": "Nokta",
- "gaps": "Boşluk",
- "slashes": "Eğik çizgi",
- "title": "Kısa Tarih Ayracı"
- },
- "title": "Gün",
- "type": {
- "long": "Uzun",
- "short": "Kısa",
- "subtitle": "Tarihin uzun veya kısa olmak üzere hangi biçimde görüntüleneceğini seçin."
- },
- "type_settings": "Seçilen tarih türü için ekran ayarları ve biçimi belirten özellikleri belirleyin.",
- "week_number": "Hafta Sayısı"
- },
- "experimental": {
- "developer": "Geliştirici",
- "title": "Deneysel Özellikler",
- "warning": "Bu ayarlar tam olarak test edilmedi/uygulanmadı ve düzgün çalışmayabilir!"
- },
- "greeting": {
- "additional": "Karşılama ekranı için ek ayarlarınızı belirleyin.",
- "birthday": "Doğum Günü",
- "birthday_age": "Doğum günümde yaş bilgisi gözüksün.",
- "birthday_date": "Doğum günü tarihim",
- "birthday_subtitle": "Doğum günüm olduğunda bir 'Mutlu Yıllar' mesajı göster.",
- "default": "Karşılama mesajları görünsün.",
- "events": "Olaylar",
- "name": "İsminiz",
- "title": "Karşılama Ekranı"
- },
- "header": {
- "enabled": "Bu widget'ınızın gösterilip gösterilmeyeceğini seçin.",
- "more_info": "Daha fazla bilgi",
- "report_issue": "Hata Bildir",
- "size": "Widget'ınızın büyüklüğünü kontrol etmek için kaydırın."
- },
- "language": {
- "quote": "Alıntı dili",
- "title": "Dil"
- },
- "message": {
- "add": "Mesaj Ekle",
- "add_some": "Devam et ve biraz ekle.",
- "content": "Mesaj İçeriği",
- "messages": "Mesajlar",
- "no_messages": "Mesaj yok",
- "text": "Metin",
- "title": "Mesaj"
- },
- "order": {
- "title": "Widget Sıralaması"
- },
- "quicklinks": {
- "add_link": "Link Ekle",
- "additional": "Hızlı bağlantılar ekranı ve işlevleri için ek ayarlarınızı belirleyin.",
- "edit": "Düzenleme",
- "no_quicklinks": "Hızlı bağlantı yok.",
- "open_new": "Yeni Sekmede Aç",
- "options": {
- "icon": "İkon",
- "metro": "Metro",
- "text_only": "Sadece Metin"
- },
- "style": "Stil",
- "styling": "Hızlı Bağlantı Görünümü",
- "styling_description": "Bağlantıların görünümünü özelleştirin.",
- "text_only": "Yalnızca Metni Göster",
- "title": "Hızlı Bağlantılar",
- "tooltip": "İpucu"
- },
- "quote": {
- "add": "Alıntı Ekle",
- "additional": "Alıntı widget'ının stilini özelleştirmek için diğer ayarlar.",
- "author": "Yazar",
- "author_img": "Yazar resmini göster.",
- "author_link": "Yazara dair bilgilendirme bağlantısı göster.",
- "buttons": {
- "copy": "Kopyala",
- "favourite": "Favorilere Ekle",
- "subtitle": "Alıntı kısmı için hangi butonların gösterileceğini seçin.",
- "title": "Butonlar",
- "tweet": "Tweet'le"
- },
- "custom": "Özel Alıntı",
- "custom_author": "Özel yazar",
- "custom_buttons": "Butonlar",
- "custom_subtitle": "Kendi özel alıntınızı belirleyin, ekleyin.",
- "no_quotes": "Alıntı yok!",
- "source_subtitle": "Alıntıyı nereden alacağınızı seçin.",
- "title": "Alıntı"
- },
- "search": {
- "additional": "Arama widget'ı ekranı ve işlevselliği için ek seçenekleri belirleyin.",
- "autocomplete": "Otomatik Tamamlama",
- "autocomplete_provider": "Otomatik Tamamlama Sağlayıcısı",
- "autocomplete_provider_subtitle": "Otomatik tamamlama açılır sonuçları için kullanılacak arama motorunu belirleyin.",
- "custom": "Özel URL/bağlantı",
- "dropdown": "Arama Motorları Açılır Menüsü",
- "focus": "Açık Sekmeye Odaklan",
- "search_engine": "Arama Motoru",
- "search_engine_subtitle": "Arama çubuğunda kullanmak için arama motorunu seçin.",
- "title": "Arama",
- "voice_search": "Sesli Arama"
- },
- "stats": {
- "achievements": "Başarılar",
- "sections": {
- "addons_installed": "Eklentiler yüklendi.",
- "backgrounds_downloaded": "Arka plan indirildi.",
- "backgrounds_favourited": "Arka plan favorilere eklendi.",
- "quicklinks_added": "Hızlı bağlantılar eklendi.",
- "quotes_favourited": "Alıntı favorilere eklendi.",
- "settings_changed": "Ayarlar değişti.",
- "tabs_opened": "Sekme açıldı."
- },
- "title": "İstatistikler",
- "unlocked": "{count} Kilidi Açıldı",
- "usage": "Kullanım İstatistikleri"
- },
- "time": {
- "analogue": {
- "hour_hand": "Akrep (saat) ibresi",
- "hour_marks": "Saat çizgileri",
- "minute_hand": " Yelkovan (dakika) ibresi",
- "minute_marks": "Dakika çizgileri",
- "round_clock": "Yuvarlanmış arka plan",
- "second_hand": "Saniye ibresi",
- "subtitle": "Analog saatin nasıl görüntüleneceğini belirleyin.",
- "title": "Analog"
- },
- "digital": {
- "seconds": "Saniye gösterilsin.",
- "subtitle": "Dijital saatin görünümünü değiştirin.",
- "title": "Dijital",
- "twelvehour": "12 Saat",
- "twentyfourhour": "24 Saat",
- "zero": "Sıfır eklensin."
- },
- "format": "Format",
- "percentage_complete": "Tamamlanma Yüzdesi",
- "title": "Saat",
- "type": "Tip",
- "type_subtitle": "Saat formatını dijital olarak, analog olarak veya günün tamamlanma yüzdesi olarak göstermeyi seçin.",
- "vertical_clock": {
- "change_hour_colour": "Saat Metni Rengini Değiştirin",
- "change_minute_colour": "Dakika Metni Rengini Değiştirin",
- "title": "Dikey Saat"
- }
- },
- "weather": {
- "auto": "Otomatik",
- "custom_settings": "Kişisel Ayarlar",
- "extra_info": {
- "atmospheric_pressure": "Atmosferik Basınç",
- "cloudiness": "Bulutluluk",
- "humidity": "Nem",
- "max_temp": "Maksimum Sıcaklık",
- "min_temp": "Minimum Sıcaklık",
- "show_description": "Açıklamayı Göster",
- "show_location": "Konumu Göster",
- "title": "Ek Bilgi",
- "visibility": "Görüş Mesafesi",
- "weather_description": "Hava açıklaması",
- "wind_direction": "Rüzgar Yönü",
- "wind_speed": "Rüzgar Hızı"
- },
- "location": "Konum",
- "options": {
- "basic": "Basit",
- "custom": "Kişiselleştirlmiş",
- "expanded": "Genişletilmiş",
- "standard": "Standart"
- },
- "temp_format": {
- "celsius": "Celsius",
- "fahrenheit": "Fahrenheit",
- "kelvin": "Kelvin",
- "title": "Sıcaklık Formatı"
- },
- "title": "Hava Durumu",
- "widget_type": "Hava Tipi Formatı"
- }
- }
- },
- "title": "Seçenekler"
- },
- "share": {
- "copy_link": "Bağlantıyı kopyala",
- "email": "E-posta"
- },
- "update": {
- "error": {
- "description": "Sunucuya bağlanılamadı",
- "title": "Hata"
- },
- "offline": {
- "description": "Çevrimdışı moddayken güncelleme günlükleri alınamıyor",
- "title": "Çevrimdışı"
- },
- "title": "Güncelleme"
- },
- "welcome": {
- "buttons": {
- "close": "Kapat",
- "next": "Sonraki",
- "preview": "Ön İzleme",
- "previous": "Öncesi"
- },
- "preview": {
- "continue": "Kuruluma devam et.",
- "description": "Şu anda önizleme modundasınız. Bu sekme kapatıldığında ayarlar sıfırlanacak."
- },
- "sections": {
- "final": {
- "changes": "Değişiklikler",
- "changes_description": "Ayarları daha sonra değiştirmek için sekmenizin sağ üst köşesindeki ayarlar simgesine tıklayın.",
- "description": "Mue Tab deneyiminiz başlamak üzere.",
- "imported": "Ayarlar {amount} eklendi",
- "title": "Son Adım"
- },
- "intro": {
- "description": "Mue Tab'ı yüklediğiniz için teşekkür ederiz, umarız uzantımızla iyi vakit geçirirsiniz.",
- "notices": {
- "discord_description": "Mue topluluğu ve geliştiricileri ile konuşun.",
- "discord_join": "Katıl",
- "discord_title": "Dicord Kanalımıza Katılın",
- "github_description": "Hataları bildirin, özellikler ekleyin veya bağış yapın.",
- "github_open": "Aç",
- "github_title": "GitHub Üzerinden Katkıda Bulunun"
- },
- "title": "Mue Tab'a Hoş Geldiniz!"
- },
- "language": {
- "description": "Mue, aşağıda listelenen dillerde görüntülenebilir. Ayrıca sayfamıza yeni çeviriler de ekleyebilirsiniz.",
- "title": "Dilinizi Seçin"
- },
- "privacy": {
- "ddg_proxy_description": "Dilerseniz resim isteklerini DuckDuckGo üzerinden gerçekleştirebilirsiniz. Varsayılan olarak, API istekleri açık kaynak sunucularımızdan ve görüntü istekleri orijinal sunucudan geçer. Hızlı bağlantılar için bunu kapatmak, simgeleri DuckDuckGo yerine Google'dan alır. DuckDuckGo proxy, Market için her zaman etkindir.",
- "description": "Mue ile gizliliğinizi daha da korumak için ayarları etkinleştirin.",
- "links": {
- "privacy_policy": "Gizlilik Politikası",
- "source_code": "Kaynak Kodu",
- "title": "Bağlantılar"
- },
- "offline_mode_description": "Çevrimdışı modu etkinleştirmek, herhangi bir hizmete yönelik tüm istekleri devre dışı bırakır. Bu durum çevrimiçi arka planlar, çevrimiçi alıntılar, market, hava durumu, hızlı bağlantılar, değişiklik günlüğü ve bazı sekme bilgilerinin devre dışı bırakılmasıyla sonuçlanacaktır.",
- "title": "Gizlilik Seçenekleri"
- },
- "settings": {
- "description": "Mue'yi yeni bir cihaza mı yüklüyorsunuz? Eski ayarlarınızı almaktan çekinmeyin!",
- "tip": "Eski Mue kurulumunuzdaki 'Gelişmiş' sekmesine giderek ayarlarınızı dışarıya aktarabilirsiniz. Bunun için JSON dosyasını indirecek olan 'Dışarı Aktar' butonuna tıklamanız gerekir. Önceki Mue kurulumunuzdan ayarlarınızı ve tercihlerinizi taşımak için bu dosyayı buraya yükleyebilirsiniz.",
- "title": "Ayarları İçe Aktar"
- },
- "style": {
- "description": "Mue şu anda eski stil ile yeni çıkan modern stil arasında seçim yapma olanağı sunuyor.",
- "legacy": "Eski",
- "modern": "Modern",
- "title": "Bir Stil Seçin"
- },
- "theme": {
- "description": "Mue için hem açık hem de koyu tema mevcuttur. İsterseniz sistem temanıza bağlı olarak otomatik olarak da ayarlanabilir.",
- "tip": "Otomatik ayarları kullanmak, bilgisayarınızdaki varsayılan temayı kullanır. Bu ayar, modları ve ekranda görüntülenen hava durumu ve notlar gibi bazı araçları(widget) etkiler.",
- "title": "Bir Tema Seçin"
- }
- },
- "tip": "İpuçları"
- }
- },
"tabname": "Yeni Sekme",
- "toasts": {
- "error": "Bir şeyler yanlış gitti.",
- "imported": "Başarıyla içe aktarıldı.",
- "installed": "Başarıyla yüklendi.",
- "link_copied": "Bağlantı kopyalandı.",
- "no_storage": "Yeteri kadar yer yok.",
- "notes": "Not kopyalandı.",
- "quote": "Alıntı kopyalandı.",
- "reset": "Başarıyla resetlendi.",
- "uninstalled": "Başarıyla kaldırıldı.",
- "updated": "Başarıyla güncellendi."
- },
"widgets": {
+ "greeting": {
+ "morning": "Günaydın",
+ "afternoon": "Tünaydın",
+ "evening": "İyi Akşamlar",
+ "christmas": "Mutlu Noeller",
+ "newyear": "Yeni Yılınız Kutlu Olsun",
+ "halloween": "Cadılar Bayramınız Kutlu Olsun",
+ "birthday": "Doğum Gününüz Kutlu Olsun"
+ },
"background": {
- "camera": "Kamera",
- "category": "Kategori",
- "confirm": "Evet",
"credit": "Fotoğraf Sahibi ",
+ "unsplash": ", Unsplash",
+ "information": "Bilgilendirme",
"download": "İndir",
"downloads": "İndirilenler",
- "exclude": "Tekrar Gösterme",
- "exclude_confirm": "Bu görseli tekrar görmek istemediğinize emin misiniz?\nNot: Eğer bu kategoriye ait \"{category}\" resimleri beğenmiyorsanız, arka plan kaynak ayarları kısmından kategorinin seçimini kaldırabilirsiniz.",
- "information": "Bilgilendirme",
+ "views": "Görüntülenme",
"likes": "Beğeni",
"location": "Konum",
+ "camera": "Kamera",
"resolution": "Çözünürlük",
"source": "Kaynak",
- "unsplash": ", Unsplash",
- "views": "Görüntülenme"
+ "category": "Kategori",
+ "exclude": "Tekrar Gösterme",
+ "exclude_confirm": "Bu görseli tekrar görmek istemediğinize emin misiniz?\nNot: Eğer bu kategoriye ait \"{category}\" resimleri beğenmiyorsanız, arka plan kaynak ayarları kısmından kategorinin seçimini kaldırabilirsiniz.",
+ "confirm": "Evet"
+ },
+ "search": "Arama",
+ "quicklinks": {
+ "new": "Yeni Bağlantı",
+ "name": "İsim",
+ "url": "URL",
+ "icon": "İkon (İsteğe Bağlı)",
+ "add": "Ekle",
+ "name_error": "İsim gerekli",
+ "url_error": "URL gerekli"
},
"date": {
"week": "Haftada Bir"
},
- "greeting": {
- "afternoon": "Tünaydın",
- "birthday": "Doğum Gününüz Kutlu Olsun",
- "christmas": "Mutlu Noeller",
- "evening": "İyi Akşamlar",
- "halloween": "Cadılar Bayramınız Kutlu Olsun",
- "morning": "Günaydın",
- "newyear": "Yeni Yılınız Kutlu Olsun"
- },
- "navbar": {
- "notes": {
- "placeholder": "Buraya Yaz!",
- "title": "Notlar"
- },
- "todo": {
- "add": "Ekle",
- "no_todos": "Yapılacak bir şey yok",
- "pin": "Tuttur",
- "title": "Yapılacaklar"
- },
- "tooltips": {
- "refresh": "Sayfayı Yenile"
- }
- },
- "quicklinks": {
- "add": "Ekle",
- "icon": "İkon (İsteğe Bağlı)",
- "name": "İsim",
- "name_error": "İsim gerekli",
- "new": "Yeni Bağlantı",
- "url": "URL",
- "url_error": "URL gerekli"
+ "weather": {
+ "not_found": "Bulunamadı.",
+ "meters": "{amount} metre",
+ "extra_information": "Ek Bilgilendirme",
+ "feels_like": "{amount} gibi hissettiriyor."
},
"quote": {
- "copy": "Kopyala",
- "favourite": "Favorilere Ekle",
"link_tooltip": "Wikipedia'da Aç",
"share": "Paylaş",
+ "copy": "Kopyala",
+ "favourite": "Favorilere Ekle",
"unfavourite": "Favorilerden Çıkar"
},
- "search": "Arama",
- "weather": {
- "extra_information": "Ek Bilgilendirme",
- "feels_like": "{amount} gibi hissettiriyor.",
- "meters": "{amount} metre",
- "not_found": "Bulunamadı."
+ "navbar": {
+ "tooltips": {
+ "refresh": "Sayfayı Yenile"
+ },
+ "notes": {
+ "title": "Notlar",
+ "placeholder": "Buraya Yaz!"
+ },
+ "todo": {
+ "title": "Yapılacaklar",
+ "pin": "Tuttur",
+ "add": "Ekle",
+ "no_todos": "Yapılacak bir şey yok"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "Seçenekler",
+ "loading": "Yükleniyor...",
+ "file_upload_error": "Dosya 2 MB'ın üzerinde",
+ "navbar": {
+ "settings": "Ayarlar",
+ "addons": "Eklentilerim",
+ "marketplace": "Market"
+ },
+ "error_boundary": {
+ "title": "Hata",
+ "message": "Mue'nin bu bileşeni yüklenemedi.",
+ "report_error": "Hata Raporunu Gönder!",
+ "sent": "Gönder!",
+ "refresh": "Yenile"
+ },
+ "settings": {
+ "enabled": "Etkinleştir",
+ "open_knowledgebase": "Bilgilendirme Sayfasını Aç.",
+ "additional_settings": "Ek Ayarlar",
+ "reminder": {
+ "title": "UYARI",
+ "message": "Tüm değişikliklerin gerçekleşmesi için sayfanın yenilenmesi gerekir."
+ },
+ "sections": {
+ "header": {
+ "more_info": "Daha fazla bilgi",
+ "report_issue": "Hata Bildir",
+ "enabled": "Bu widget'ınızın gösterilip gösterilmeyeceğini seçin.",
+ "size": "Widget'ınızın büyüklüğünü kontrol etmek için kaydırın."
+ },
+ "time": {
+ "title": "Saat",
+ "format": "Format",
+ "type": "Tip",
+ "type_subtitle": "Saat formatını dijital olarak, analog olarak veya günün tamamlanma yüzdesi olarak göstermeyi seçin.",
+ "digital": {
+ "title": "Dijital",
+ "subtitle": "Dijital saatin görünümünü değiştirin.",
+ "seconds": "Saniye gösterilsin.",
+ "twentyfourhour": "24 Saat",
+ "twelvehour": "12 Saat",
+ "zero": "Sıfır eklensin."
+ },
+ "analogue": {
+ "title": "Analog",
+ "subtitle": "Analog saatin nasıl görüntüleneceğini belirleyin.",
+ "second_hand": "Saniye ibresi",
+ "minute_hand": " Yelkovan (dakika) ibresi",
+ "hour_hand": "Akrep (saat) ibresi",
+ "hour_marks": "Saat çizgileri",
+ "minute_marks": "Dakika çizgileri",
+ "round_clock": "Yuvarlanmış arka plan"
+ },
+ "percentage_complete": "Tamamlanma Yüzdesi",
+ "vertical_clock": {
+ "title": "Dikey Saat",
+ "change_hour_colour": "Saat Metni Rengini Değiştirin",
+ "change_minute_colour": "Dakika Metni Rengini Değiştirin"
+ }
+ },
+ "date": {
+ "title": "Gün",
+ "week_number": "Hafta Sayısı",
+ "day_of_week": "Haftanın Günü",
+ "datenth": "Gün Vurgusu",
+ "type": {
+ "short": "Kısa",
+ "long": "Uzun",
+ "subtitle": "Tarihin uzun veya kısa olmak üzere hangi biçimde görüntüleneceğini seçin."
+ },
+ "type_settings": "Seçilen tarih türü için ekran ayarları ve biçimi belirten özellikleri belirleyin.",
+ "short_date": "Kısa Tarih",
+ "short_format": "Kısa biçim",
+ "long_format": "Uzun biçim",
+ "short_separator": {
+ "title": "Kısa Tarih Ayracı",
+ "dots": "Nokta",
+ "dash": "Kısa çizgi",
+ "gaps": "Boşluk",
+ "slashes": "Eğik çizgi"
+ }
+ },
+ "quote": {
+ "title": "Alıntı",
+ "additional": "Alıntı widget'ının stilini özelleştirmek için diğer ayarlar.",
+ "author_link": "Yazara dair bilgilendirme bağlantısı göster.",
+ "custom": "Özel Alıntı",
+ "custom_subtitle": "Kendi özel alıntınızı belirleyin, ekleyin.",
+ "no_quotes": "Alıntı yok!",
+ "author": "Yazar",
+ "custom_buttons": "Butonlar",
+ "custom_author": "Özel yazar",
+ "author_img": "Yazar resmini göster.",
+ "add": "Alıntı Ekle",
+ "source_subtitle": "Alıntıyı nereden alacağınızı seçin.",
+ "buttons": {
+ "title": "Butonlar",
+ "subtitle": "Alıntı kısmı için hangi butonların gösterileceğini seçin.",
+ "copy": "Kopyala",
+ "tweet": "Tweet'le",
+ "favourite": "Favorilere Ekle"
+ }
+ },
+ "greeting": {
+ "title": "Karşılama Ekranı",
+ "events": "Olaylar",
+ "default": "Karşılama mesajları görünsün.",
+ "name": "İsminiz",
+ "birthday": "Doğum Günü",
+ "birthday_subtitle": "Doğum günüm olduğunda bir 'Mutlu Yıllar' mesajı göster.",
+ "birthday_age": "Doğum günümde yaş bilgisi gözüksün.",
+ "birthday_date": "Doğum günü tarihim",
+ "additional": "Karşılama ekranı için ek ayarlarınızı belirleyin."
+ },
+ "background": {
+ "title": "Arka Plan",
+ "ddg_image_proxy": "DuckDuckGo görüntü proxy'sini kullan.",
+ "transition": "Geçiş sırasında solma efekti uygula.",
+ "photo_information": "Fotoğraf bilgilerini göster.",
+ "show_map": "Varsa fotoğraf bilgilerinde konum bilgisini göster.",
+ "categories": "Kategoriler",
+ "buttons": {
+ "title": "Butonlar",
+ "view": "Arka Planı Görüntüle",
+ "favourite": "Favorilere Ekle",
+ "download": "İndir"
+ },
+ "effects": {
+ "title": "Görsel Efektler",
+ "subtitle": "Arka plan görseli için efektleri düzenleyin.",
+ "blur": "Bulanıklığı ayarla",
+ "brightness": "Parlaklığı ayarla",
+ "filters": {
+ "title": "Arka plan filtresi",
+ "amount": "Filtre miktarı",
+ "grayscale": "Gri tonlama",
+ "sepia": "Sepya",
+ "invert": "Ters çevir",
+ "saturate": "Doygunluk",
+ "contrast": "Kontrast"
+ }
+ },
+ "type": {
+ "title": "Tip",
+ "api": "API",
+ "custom_image": "Özel resim",
+ "custom_colour": "Özel renk/gradyan",
+ "random_colour": "Özel renk",
+ "random_gradient": "Özel gradyan"
+ },
+ "source": {
+ "title": "Kaynak",
+ "subtitle": "Arka plan resimlerinin nereden alınacağını seçin.",
+ "api": "Arka plan API",
+ "custom_background": "Özel arka plan resmi",
+ "custom_colour": "Özel Arka Plan Rengi",
+ "upload": "Yükle",
+ "add_colour": "Renk Ekle",
+ "add_background": "Arka Plan Ekle",
+ "drop_to_upload": "Yüklemek için bırakın!",
+ "formats": "Kullanılabilir biçimler: {list}",
+ "select": "Veya Seç",
+ "add_url": "URL/Uzantı Ekle",
+ "disabled": "Kullanılamaz",
+ "loop_video": "Tekrarlayan video",
+ "mute_video": "Videonun sesini kapat.",
+ "quality": {
+ "title": "Kalite",
+ "original": "Orjinal",
+ "high": "Yüksek Kalite",
+ "normal": "Normal Kalite",
+ "datasaver": "Veri Tasarrufu"
+ },
+ "custom_title": "Özel Arka Plan",
+ "custom_description": "Bilgisayarınızdan görseli seçin.",
+ "remove": "Resmi Kaldır"
+ },
+ "display": "Görüntüleme",
+ "display_subtitle": "Arka plan ve fotoğraf bilgilerinin nasıl yüklendiğini değiştirin.",
+ "api": "API Ayarları",
+ "api_subtitle": "Harici bir hizmetten (API) aracılığıyla görüntü alma seçeneklerini belirleyin.",
+ "interval": {
+ "title": "Değiştirme Sıklığı",
+ "subtitle": "Arka planın ne sıklıkla güncelleneceğini değiştirin.",
+ "minute": "Dakikada Bir",
+ "half_hour": "Yarım Saatte Bir",
+ "hour": "Saatte Bir",
+ "day": "Günde Bir",
+ "month": "Ayda Bir"
+ }
+ },
+ "search": {
+ "title": "Arama",
+ "additional": "Arama widget'ı ekranı ve işlevselliği için ek seçenekleri belirleyin.",
+ "search_engine": "Arama Motoru",
+ "search_engine_subtitle": "Arama çubuğunda kullanmak için arama motorunu seçin.",
+ "custom": "Özel URL/bağlantı",
+ "autocomplete": "Otomatik Tamamlama",
+ "autocomplete_provider": "Otomatik Tamamlama Sağlayıcısı",
+ "autocomplete_provider_subtitle": "Otomatik tamamlama açılır sonuçları için kullanılacak arama motorunu belirleyin.",
+ "voice_search": "Sesli Arama",
+ "dropdown": "Arama Motorları Açılır Menüsü",
+ "focus": "Açık Sekmeye Odaklan"
+ },
+ "weather": {
+ "title": "Hava Durumu",
+ "location": "Konum",
+ "auto": "Otomatik",
+ "widget_type": "Hava Tipi Formatı",
+ "temp_format": {
+ "title": "Sıcaklık Formatı",
+ "celsius": "Celsius",
+ "fahrenheit": "Fahrenheit",
+ "kelvin": "Kelvin"
+ },
+ "extra_info": {
+ "title": "Ek Bilgi",
+ "show_location": "Konumu Göster",
+ "show_description": "Açıklamayı Göster",
+ "weather_description": "Hava açıklaması",
+ "cloudiness": "Bulutluluk",
+ "humidity": "Nem",
+ "visibility": "Görüş Mesafesi",
+ "wind_speed": "Rüzgar Hızı",
+ "wind_direction": "Rüzgar Yönü",
+ "min_temp": "Minimum Sıcaklık",
+ "max_temp": "Maksimum Sıcaklık",
+ "atmospheric_pressure": "Atmosferik Basınç"
+ },
+ "options": {
+ "basic": "Basit",
+ "standard": "Standart",
+ "expanded": "Genişletilmiş",
+ "custom": "Kişiselleştirlmiş"
+ },
+ "custom_settings": "Kişisel Ayarlar"
+ },
+ "quicklinks": {
+ "title": "Hızlı Bağlantılar",
+ "additional": "Hızlı bağlantılar ekranı ve işlevleri için ek ayarlarınızı belirleyin.",
+ "open_new": "Yeni Sekmede Aç",
+ "tooltip": "İpucu",
+ "text_only": "Yalnızca Metni Göster",
+ "add_link": "Link Ekle",
+ "no_quicklinks": "Hızlı bağlantı yok.",
+ "edit": "Düzenleme",
+ "style": "Stil",
+ "options": {
+ "icon": "İkon",
+ "text_only": "Sadece Metin",
+ "metro": "Metro"
+ },
+ "styling": "Hızlı Bağlantı Görünümü",
+ "styling_description": "Bağlantıların görünümünü özelleştirin."
+ },
+ "message": {
+ "title": "Mesaj",
+ "add": "Mesaj Ekle",
+ "messages": "Mesajlar",
+ "text": "Metin",
+ "no_messages": "Mesaj yok",
+ "add_some": "Devam et ve biraz ekle.",
+ "content": "Mesaj İçeriği"
+ },
+ "appearance": {
+ "title": "Görünüm",
+ "style": {
+ "title": "Widget Stili",
+ "description": "Eski (7.0 öncesi kullanıcılar için etkin) ve şık modern stilimiz olmak üzere iki stil arasından seçim yapın.",
+ "legacy": "Eski",
+ "new": "Yeni"
+ },
+ "theme": {
+ "title": "Tema",
+ "description": "Mue araçlarınızın(widget) ve modellerinin temasını değiştirin.",
+ "auto": "Otomatik",
+ "light": "Açık",
+ "dark": "Koyu"
+ },
+ "navbar": {
+ "title": "Gezinme Çubuğu",
+ "notes": "Notlar",
+ "refresh": "Yenile Butonu",
+ "refresh_subtitle": "Yenile düğmesine tıkladığınızda yenilenecek öğeleri seçin.",
+ "hover": "Yalnızca fareyle üzerine gelindiğinde göster.",
+ "additional": "Gezinme çubuğu stilini ve hangi butonları görüntülemek istediğinizi değiştirin.",
+ "refresh_options": {
+ "none": "Hiçbiri",
+ "page": "Sayfa"
+ }
+ },
+ "font": {
+ "title": "Yazı tipi",
+ "description": "Mue'da kullanılan yazı tipini değiştirin.",
+ "custom": "Özel yazı tipi",
+ "google": "Google Fonts'tan içeri aktar.",
+ "weight": {
+ "title": "Yazı tipi genişliği",
+ "thin": "Ekstra İnce",
+ "extra_light": "İnce",
+ "light": "Hafif İnce",
+ "normal": "Normal",
+ "medium": "Orta",
+ "semi_bold": "Hafif Kalın",
+ "bold": "Kalın",
+ "extra_bold": "Ekstra Kalın"
+ },
+ "style": {
+ "title": "Yazı stili",
+ "normal": "Normal",
+ "italic": "İtalik",
+ "oblique": "Eğik"
+ }
+ },
+ "accessibility": {
+ "title": "Erişebilirlik",
+ "description": "Mue Erişebilirlik ayarlarını değiştirin",
+ "animations": "Animasyonlar",
+ "text_shadow": {
+ "title": "Widget metin gölgesi",
+ "new": "Yeni",
+ "old": "Eski",
+ "none": "Hiçbiri"
+ },
+ "widget_zoom": "Widget Ölçeği",
+ "toast_duration": "Bildirim süresi",
+ "milliseconds": "Milisaniye"
+ }
+ },
+ "order": {
+ "title": "Widget Sıralaması"
+ },
+ "advanced": {
+ "title": "Gelişmiş",
+ "offline_mode": "Çevrimdışı Mod",
+ "offline_subtitle": "Etkinleştirildiğinde, çevrimiçi hizmetlere yönelik tüm istekler devre dışı bırakılır.",
+ "data": "Veri",
+ "data_subtitle": "Mue Tab ayarlarınızı bilgisayarınıza kaydetmenize, mevcut ayarlarınızı başka bir bilgisayara aktarmanıza veya ayarlarınızı varsayılan değerlerine sıfırlamınıza olanak sağlar. İstediğiniz işlemi seçin.",
+ "reset_modal": {
+ "title": "UYARI",
+ "question": "Mue'yu sıfırlamak istiyor musunuz?",
+ "information": "Bu, tüm verilerinizi silecektir. Verilerinizi ve tercihlerinizi saklamak istiyorsanız, lütfen önce bunları dışa aktarın.",
+ "cancel": "İptal"
+ },
+ "customisation": "Özelleştirme",
+ "custom_css": "Özel CSS",
+ "custom_css_subtitle": "Mue'nin stilini 'Cascading Style Sheets (CSS)' ile özelleştirin.",
+ "custom_js": "Özel JS",
+ "tab_name": "Sekme Adı",
+ "tab_name_subtitle": "Tarayıcınızda görünen sekmenin adını değiştirin.",
+ "timezone": {
+ "title": "Zaman Dilimi",
+ "subtitle": "Bilgisayarınızın otomatik varsayılanından ziyade listeden bir zaman dilimi seçin.",
+ "automatic": "Otomatik"
+ },
+ "experimental_warning": "Deneysel modunuz açıksa Mue ekibinin destek sağlayamadığını lütfen unutmayın. Lütfen önce devre dışı bırakın ve desteğe başvurmadan önce sorunun devam edip etmediğini görün."
+ },
+ "stats": {
+ "title": "İstatistikler",
+ "sections": {
+ "tabs_opened": "Sekme açıldı.",
+ "backgrounds_favourited": "Arka plan favorilere eklendi.",
+ "backgrounds_downloaded": "Arka plan indirildi.",
+ "quotes_favourited": "Alıntı favorilere eklendi.",
+ "quicklinks_added": "Hızlı bağlantılar eklendi.",
+ "settings_changed": "Ayarlar değişti.",
+ "addons_installed": "Eklentiler yüklendi."
+ },
+ "usage": "Kullanım İstatistikleri",
+ "achievements": "Başarılar",
+ "unlocked": "{count} Kilidi Açıldı"
+ },
+ "experimental": {
+ "title": "Deneysel Özellikler",
+ "warning": "Bu ayarlar tam olarak test edilmedi/uygulanmadı ve düzgün çalışmayabilir!",
+ "developer": "Geliştirici"
+ },
+ "language": {
+ "title": "Dil",
+ "quote": "Alıntı dili"
+ },
+ "changelog": {
+ "title": "Güncelleme Notları",
+ "by": "Yayınlayan: {author}"
+ },
+ "about": {
+ "title": "Hakkında",
+ "copyright": "Telif Hakkı",
+ "version": {
+ "title": "Versiyon",
+ "checking_update": "Güncellemeleri Kontrol Et",
+ "update_available": "Güncelleme Mevcut!",
+ "no_update": "En Güncel Sürümdesiniz",
+ "offline_mode": "Çevrimdışı modda güncelleme kontrol edilemiyor.",
+ "error": {
+ "title": "Güncelleme bilgisi alınamadı.",
+ "description": "Bir hata oluştu."
+ }
+ },
+ "contact_us": "Bize Ulaşın!",
+ "support_mue": "Mue Destek",
+ "support_subtitle": "Mue tamamen ücretsiz olduğu için, sunucu faturalarını karşılamak ve geliştirme masraflarını finanse etmek için bağışları kullanıyoruz.",
+ "support_donate": "Bağış Yap",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "Kullanılan Kaynaklar",
+ "bg_images": "Çevrimdışı Arka Plan Resim İçerikleri"
+ },
+ "contributors": "Katkıda Bulunanlar",
+ "supporters": "Destekleyenler",
+ "no_supporters": "Şu anda Mue destekçisi yok!",
+ "photographers": "Fotoğrafçılar"
+ }
+ },
+ "buttons": {
+ "reset": "Yenile",
+ "import": "İçeri Aktar",
+ "export": "Dışarı Aktar"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "Tümü",
+ "learn_more": "Daha Fazla Bilgi Edin",
+ "photo_packs": "Fotoğraf Paketleri",
+ "quote_packs": "Alıntı Paketleri",
+ "preset_settings": "Ön Ayar Paketleri",
+ "no_items": "Bu kategoride öğe yok",
+ "collection": "Koleksiyon",
+ "explore_collection": "Koleksiyonu Keşfedin",
+ "add_all": "Hepsini Ekle",
+ "collections": "Koleksiyonlar",
+ "cant_find": "Aradığınızı bulamıyor musunuz?",
+ "knowledgebase_one": "Kendiniz oluşturmak için ",
+ "knowledgebase_two": "bilgilendirme sayfamızı ",
+ "knowledgebase_three": "ziyaret edin.",
+ "product": {
+ "overview": "Genel Bakış",
+ "information": "Bilgi",
+ "last_updated": "Son Güncelleme",
+ "description": "Açıklama/Tanım",
+ "show_more": "Daha Fazla Göster",
+ "show_less": "Daha Az Göster",
+ "show_all": "Hepsini Göster ↓",
+ "showing": "Gösteriliyor",
+ "no_images": "Fotoğraf bulunamadı",
+ "no_quotes": "Alıntı bulunamadı",
+ "version": "Versiyon",
+ "author": "Yazar",
+ "part_of": "Parçası",
+ "explore": "Keşfet",
+ "buttons": {
+ "addtomue": "Mue Tab'ıma Ekle",
+ "remove": "Kaldır",
+ "update_addon": "Eklentiyi Güncelle",
+ "back": "Geri",
+ "report": "Bildir/Raporla"
+ },
+ "setting": "Ayarlar",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Görünüşe bakılırsa çevrimdışısınız!",
+ "description": "Lütfen internete bağlanın ve tekrar deneyin."
+ }
+ },
+ "addons": {
+ "added": "Eklentiler",
+ "check_updates": "Güncellemeleri kontrol et.",
+ "no_updates": "Güncelleme mevcut değil.",
+ "updates_available": "Güncellemeler mevcut {amount} !",
+ "empty": {
+ "title": "Boş",
+ "description": "Hiçbir eklenti yüklü değil."
+ },
+ "sideload": {
+ "title": "Diğer Eklentiler",
+ "description": "Bilgisayarınızdan pazar yerinde olmayan bir Mue eklentisi yükleyin.",
+ "failed": "Eklenti yüklenemedi.",
+ "errors": {
+ "no_name": "İsim belirtilmedi.",
+ "no_author": "Yazar belirtilmedi.",
+ "no_type": "Tür sağlanmadı.",
+ "invalid_photos": "Geçersiz fotoğraf nesnesi",
+ "invalid_quotes": "Geçersiz alıntı nesnesi"
+ }
+ },
+ "sort": {
+ "title": "Sırala",
+ "newest": "Kurulanlar (En Yeni)",
+ "oldest": "Kurulanlar (En Eski)",
+ "a_z": "Alfabetik (A-Z)",
+ "z_a": "Alfabetik (Z-A)"
+ },
+ "create": {
+ "title": "Oluştur",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "Güncelleme",
+ "offline": {
+ "title": "Çevrimdışı",
+ "description": "Çevrimdışı moddayken güncelleme günlükleri alınamıyor"
+ },
+ "error": {
+ "title": "Hata",
+ "description": "Sunucuya bağlanılamadı"
+ }
+ },
+ "welcome": {
+ "tip": "İpuçları",
+ "sections": {
+ "intro": {
+ "title": "Mue Tab'a Hoş Geldiniz!",
+ "description": "Mue Tab'ı yüklediğiniz için teşekkür ederiz, umarız uzantımızla iyi vakit geçirirsiniz.",
+ "notices": {
+ "discord_title": "Dicord Kanalımıza Katılın",
+ "discord_description": "Mue topluluğu ve geliştiricileri ile konuşun.",
+ "discord_join": "Katıl",
+ "github_title": "GitHub Üzerinden Katkıda Bulunun",
+ "github_description": "Hataları bildirin, özellikler ekleyin veya bağış yapın.",
+ "github_open": "Aç"
+ }
+ },
+ "language": {
+ "title": "Dilinizi Seçin",
+ "description": "Mue, aşağıda listelenen dillerde görüntülenebilir. Ayrıca sayfamıza yeni çeviriler de ekleyebilirsiniz."
+ },
+ "theme": {
+ "title": "Bir Tema Seçin",
+ "description": "Mue için hem açık hem de koyu tema mevcuttur. İsterseniz sistem temanıza bağlı olarak otomatik olarak da ayarlanabilir.",
+ "tip": "Otomatik ayarları kullanmak, bilgisayarınızdaki varsayılan temayı kullanır. Bu ayar, modları ve ekranda görüntülenen hava durumu ve notlar gibi bazı araçları(widget) etkiler."
+ },
+ "style": {
+ "title": "Bir Stil Seçin",
+ "description": "Mue şu anda eski stil ile yeni çıkan modern stil arasında seçim yapma olanağı sunuyor.",
+ "legacy": "Eski",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "Ayarları İçe Aktar",
+ "description": "Mue'yi yeni bir cihaza mı yüklüyorsunuz? Eski ayarlarınızı almaktan çekinmeyin!",
+ "tip": "Eski Mue kurulumunuzdaki 'Gelişmiş' sekmesine giderek ayarlarınızı dışarıya aktarabilirsiniz. Bunun için JSON dosyasını indirecek olan 'Dışarı Aktar' butonuna tıklamanız gerekir. Önceki Mue kurulumunuzdan ayarlarınızı ve tercihlerinizi taşımak için bu dosyayı buraya yükleyebilirsiniz."
+ },
+ "privacy": {
+ "title": "Gizlilik Seçenekleri",
+ "description": "Mue ile gizliliğinizi daha da korumak için ayarları etkinleştirin.",
+ "offline_mode_description": "Çevrimdışı modu etkinleştirmek, herhangi bir hizmete yönelik tüm istekleri devre dışı bırakır. Bu durum çevrimiçi arka planlar, çevrimiçi alıntılar, market, hava durumu, hızlı bağlantılar, değişiklik günlüğü ve bazı sekme bilgilerinin devre dışı bırakılmasıyla sonuçlanacaktır.",
+ "ddg_proxy_description": "Dilerseniz resim isteklerini DuckDuckGo üzerinden gerçekleştirebilirsiniz. Varsayılan olarak, API istekleri açık kaynak sunucularımızdan ve görüntü istekleri orijinal sunucudan geçer. Hızlı bağlantılar için bunu kapatmak, simgeleri DuckDuckGo yerine Google'dan alır. DuckDuckGo proxy, Market için her zaman etkindir.",
+ "links": {
+ "title": "Bağlantılar",
+ "privacy_policy": "Gizlilik Politikası",
+ "source_code": "Kaynak Kodu"
+ }
+ },
+ "final": {
+ "title": "Son Adım",
+ "description": "Mue Tab deneyiminiz başlamak üzere.",
+ "changes": "Değişiklikler",
+ "changes_description": "Ayarları daha sonra değiştirmek için sekmenizin sağ üst köşesindeki ayarlar simgesine tıklayın.",
+ "imported": "Ayarlar {amount} eklendi"
+ }
+ },
+ "buttons": {
+ "next": "Sonraki",
+ "preview": "Ön İzleme",
+ "previous": "Öncesi",
+ "close": "Kapat"
+ },
+ "preview": {
+ "description": "Şu anda önizleme modundasınız. Bu sekme kapatıldığında ayarlar sıfırlanacak.",
+ "continue": "Kuruluma devam et."
+ }
+ },
+ "share": {
+ "copy_link": "Bağlantıyı kopyala",
+ "email": "E-posta"
+ }
+ },
+ "toasts": {
+ "quote": "Alıntı kopyalandı.",
+ "notes": "Not kopyalandı.",
+ "reset": "Başarıyla resetlendi.",
+ "installed": "Başarıyla yüklendi.",
+ "uninstalled": "Başarıyla kaldırıldı.",
+ "updated": "Başarıyla güncellendi.",
+ "error": "Bir şeyler yanlış gitti.",
+ "imported": "Başarıyla içe aktarıldı.",
+ "no_storage": "Yeteri kadar yer yok.",
+ "link_copied": "Bağlantı kopyalandı."
}
}
diff --git a/src/translations/zh_CN.json b/src/translations/zh_CN.json
index b75e754f..2a34f4f1 100644
--- a/src/translations/zh_CN.json
+++ b/src/translations/zh_CN.json
@@ -1,717 +1,669 @@
{
- "modals": {
- "main": {
- "addons": {
- "added": "已添加",
- "check_updates": "Check for updates",
- "create": {
- "create_type": "Create {type} Pack",
- "descriptions": {
- "photos": "Collection of photos relating to a topic.",
- "quotes": "Collection of quotes relating to a topic.",
- "settings": "Collection of settings to customise Mue."
- },
- "example": "Example",
- "finish": {
- "download": "下载插件",
- "title": "完成"
- },
- "import_custom": "Import from custom settings.",
- "information": "Information",
- "information_subtitle": "For example: 1.2.3 (major update, minor update, patch update)",
- "metadata": {
- "description": "描述",
- "example": "Download example",
- "icon_url": "图标URL",
- "name": "名称",
- "screenshot_url": "示例图片URL"
- },
- "other_title": "创建插件",
- "photos": {
- "title": "添加照片"
- },
- "publishing": {
- "button": "Learn more",
- "subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
- },
- "quotes": {
- "api": {
- "author": "JSON 名言作者 (或留空)",
- "name": "JSON 名言名称",
- "title": "API",
- "url": "名言 URL"
- },
- "local": {
- "title": "本地"
- },
- "title": "添加名言"
- },
- "settings": {
- "current": "导入当前设置",
- "json": "上传 JSON文件"
- },
- "title": "创建",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "请访问插件市场来添加插件。",
- "title": "这里空空如也"
- },
- "no_updates": "No updates available",
- "sideload": {
- "description": "Install a Mue addon not on the marketplace from your computer",
- "errors": {
- "invalid_photos": "Invalid photos object",
- "invalid_quotes": "Invalid quotes object",
- "no_author": "No author provided",
- "no_name": "No name provided",
- "no_type": "No type provided"
- },
- "failed": "Failed to sideload addon",
- "title": "上传插件"
- },
- "sort": {
- "a_z": "首字母 (A-Z)",
- "newest": "安装过 (从新到旧)",
- "oldest": "安装过 (从旧到新)",
- "title": "排序",
- "z_a": "首字母 (Z-A)"
- },
- "updates_available": "Updates available {amount}"
- },
- "error_boundary": {
- "message": "无法载入该Mue组件",
- "refresh": "刷新",
- "report_error": "Send Error Report",
- "sent": "Sent!",
- "title": "错误"
- },
- "file_upload_error": "大小超过了 2MB",
- "loading": "载入中...",
- "marketplace": {
- "add_all": "Add All To Mue",
- "all": "All",
- "by": "by {author}",
- "cant_find": "Can't find what you're looking for?",
- "collection": "Collection",
- "collections": "Collections",
- "explore_collection": "Explore Collection",
- "knowledgebase_one": "Visit the",
- "knowledgebase_three": "to create your own.",
- "knowledgebase_two": "knowledgebase",
- "learn_more": "Learn More",
- "no_items": "本类别为空",
- "offline": {
- "description": "请连接到互联网。",
- "title": "您目前似乎离线"
- },
- "photo_packs": "图片包",
- "preset_settings": "预设设定",
- "product": {
- "author": "作者",
- "buttons": {
- "addtomue": "添加至 Mue",
- "back": "Back",
- "remove": "卸载",
- "report": "Report",
- "update_addon": "Update Add-on"
- },
- "description": "Description",
- "explore": "Explore",
- "information": "信息",
- "last_updated": "更新日期",
- "no_images": "No. Images",
- "no_quotes": "No. Quotes",
- "overview": "总览",
- "part_of": "Part of",
- "setting": "Setting",
- "show_all": "Show All",
- "show_less": "Show Less",
- "show_more": "Show More",
- "showing": "Showing",
- "value": "Value",
- "version": "版本"
- },
- "quote_packs": "名言包"
- },
- "navbar": {
- "addons": "我的插件",
- "marketplace": "插件市场",
- "settings": "设置"
- },
- "settings": {
- "additional_settings": "Additional Settings",
- "buttons": {
- "export": "导出",
- "import": "导入",
- "reset": "重置"
- },
- "enabled": "已启用",
- "open_knowledgebase": "Open Knowledgebase",
- "reminder": {
- "message": "刷新页面后设置才会生效",
- "title": "注意"
- },
- "sections": {
- "about": {
- "contact_us": "联系我们",
- "contributors": "贡献者",
- "copyright": "版权",
- "form_button": "Form",
- "no_supporters": "There are currently no Mue supporters",
- "photographers": "背景摄影者",
- "resources_used": {
- "bg_images": "离线背景",
- "title": "使用资源"
- },
- "support_donate": "Donate",
- "support_mue": "支持 Mue",
- "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
- "supporters": "支持者",
- "title": "关于",
- "version": {
- "checking_update": "正在检查更新……",
- "error": {
- "description": "错误",
- "title": "获取更新信息失败"
- },
- "no_update": "无可下载更新",
- "offline_mode": "离线模式下不能检查更新",
- "title": "版本",
- "update_available": "可下载更新"
- }
- },
- "advanced": {
- "custom_css": "自定义 CSS",
- "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
- "custom_js": "自定义 JS",
- "customisation": "自定义",
- "data": "数据和设置",
- "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
- "experimental_warning": "请注意 Mue 团队无法提供实验性功能的支持。若您遇到问题,请先关闭实验性功能,再寻求帮助。",
- "offline_mode": "启用离线模式",
- "offline_subtitle": "When enabled, all requests to online services will be disabled.",
- "reset_modal": {
- "cancel": "取消",
- "information": "本操作将删除所有数据。若您想保留数据及设置,请先将其导出。",
- "question": "您想要重置 Mue 的所有设置吗?",
- "title": "警告"
- },
- "tab_name": "新标签页名称",
- "tab_name_subtitle": "Change the name of the tab that appears in your browser",
- "timezone": {
- "automatic": "自动",
- "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
- "title": "时区"
- },
- "title": "高级"
- },
- "appearance": {
- "accessibility": {
- "animations": "动画效果",
- "description": "Accessibility settings for Mue",
- "milliseconds": "毫秒",
- "text_shadow": {
- "new": "New",
- "none": "None",
- "old": "Old",
- "title": "Widget text shadow"
- },
- "title": "无障碍设定",
- "toast_duration": "窗口弹出时间长度",
- "widget_zoom": "小部件缩放"
- },
- "font": {
- "custom": "自定义字体",
- "description": "Change the font used in Mue",
- "google": "从 Google Fonts 导入",
- "style": {
- "italic": "意大利斜体",
- "normal": "常规",
- "oblique": "伪斜体",
- "title": "字体样式"
- },
- "title": "字体",
- "weight": {
- "bold": "粗体",
- "extra_bold": "加粗",
- "extra_light": "细字",
- "light": "较细",
- "medium": "中等",
- "normal": "一般",
- "semi_bold": "较粗",
- "thin": "极细",
- "title": "字体粗细"
- }
- },
- "navbar": {
- "additional": "Modify navbar style and which buttons you want to display",
- "hover": "Only display on hover",
- "notes": "便签",
- "refresh": "刷新键",
- "refresh_options": {
- "none": "不显示",
- "page": "页面"
- },
- "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
- "title": "右上方功能键"
- },
- "style": {
- "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
- "legacy": "Legacy",
- "new": "New",
- "title": "Widget Style"
- },
- "theme": {
- "auto": "自动选择",
- "dark": "夜间主题",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "日间主题",
- "title": "主题"
- },
- "title": "外观"
- },
- "background": {
- "api": "API Settings",
- "api_subtitle": "Options for getting an image from an external service (API)",
- "buttons": {
- "download": "下载",
- "favourite": "收藏",
- "title": "显示顶部按钮",
- "view": "仅显示背景"
- },
- "categories": "Categories",
- "ddg_image_proxy": "使用 DuckDuckGo 图像代理",
- "display": "Display",
- "display_subtitle": "Change how background and photo information are loaded",
- "effects": {
- "blur": "模糊程度",
- "brightness": "更改亮度",
- "filters": {
- "amount": "数值",
- "contrast": "对比度",
- "grayscale": "灰度",
- "invert": "反色",
- "saturate": "饱和度",
- "sepia": "相片",
- "title": "背景滤镜"
- },
- "subtitle": "Add effects to the background images",
- "title": "背景特效"
- },
- "interval": {
- "day": "每天",
- "half_hour": "每半小时",
- "hour": "每小时",
- "minute": "每分钟",
- "month": "每月",
- "subtitle": "Change how often the background is updated",
- "title": "更改频率"
- },
- "photo_information": "显示图片信息",
- "show_map": "在图片信息内显示位置信息 (如果可用)",
- "source": {
- "add_background": "继续添加背景",
- "add_colour": "添加颜色",
- "add_url": "Add URL",
- "api": "背景来源",
- "custom_background": "自定义背景 (支持图片/视频)",
- "custom_colour": "自定义背景颜色",
- "custom_description": "Select images from your local computer",
- "custom_title": "Custom Images",
- "disabled": "已禁用",
- "drop_to_upload": "Drop to upload",
- "formats": "Available formats: {list}",
- "loop_video": "循环播放",
- "mute_video": "静音",
- "quality": {
- "datasaver": "省流模式",
- "high": "高画质",
- "normal": "普通画质",
- "original": "原画",
- "title": "画质"
- },
- "remove": "Remove Image",
- "select": "Or Select",
- "subtitle": "Select where to get background images from",
- "title": "来源",
- "upload": "选择"
- },
- "title": "背景",
- "transition": "过渡动画",
- "type": {
- "api": "网络图像库API",
- "custom_colour": "自定义纯色背景",
- "custom_image": "自定义图像/视频",
- "random_colour": "随机纯色背景",
- "random_gradient": "随机渐变色背景",
- "title": "来源"
- }
- },
- "changelog": {
- "by": "By {author}",
- "title": "更新日志"
- },
- "date": {
- "datenth": "添加th后缀",
- "day_of_week": "星期n",
- "long_format": "Long format",
- "short_date": "简写日期",
- "short_format": "简写格式",
- "short_separator": {
- "dash": "横杠",
- "dots": "点",
- "gaps": "空格",
- "slashes": "斜杠",
- "title": "简写分隔"
- },
- "title": "显示日期",
- "type": {
- "long": "显示全部",
- "short": "显示简写",
- "subtitle": "Whether to display the date in long form or short form"
- },
- "type_settings": "Display settings and format for the selected date type",
- "week_number": "第n周"
- },
- "experimental": {
- "developer": "开发者",
- "title": "实验性功能",
- "warning": "以下设置仍未完成编写或测试,可能无法正常运作!"
- },
- "greeting": {
- "additional": "Settings for the greeting display",
- "birthday": "生日",
- "birthday_age": "显示年龄",
- "birthday_date": "生日日期",
- "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
- "default": "常规问候",
- "events": "节日问候",
- "name": "您在问候中的名字",
- "title": "问候"
- },
- "header": {
- "enabled": "Choose whether or not to show this widget",
- "more_info": "More info",
- "report_issue": "Report Issue",
- "size": "Slider to control how large the widget is"
- },
- "language": {
- "quote": "名言语言",
- "title": "语言"
- },
- "message": {
- "add": "继续添加消息",
- "add_some": "Go ahead and add some.",
- "content": "Message Content",
- "messages": "Messages",
- "no_messages": "No messages",
- "text": "文本",
- "title": "消息"
- },
- "order": {
- "title": "小部件顺序"
- },
- "quicklinks": {
- "add_link": "Add Link",
- "additional": "Additional settings for quick links display and functions",
- "edit": "Edit",
- "no_quicklinks": "No quicklinks",
- "open_new": "在新标签页打开",
- "options": {
- "icon": "Icon",
- "metro": "Metro",
- "text_only": "Text Only"
- },
- "style": "Style",
- "styling": "Quick Links Styling",
- "styling_description": "Customise Quick Links appearance",
- "text_only": "仅显示标题",
- "title": "快捷方式",
- "tooltip": "光标停留时下方显示标题"
- },
- "quote": {
- "add": "继续添加名言",
- "additional": "Other settings to customise the style of the quote widget",
- "author": "Author",
- "author_img": "Show author image",
- "author_link": "出处链接",
- "buttons": {
- "copy": "显示复制按钮",
- "favourite": "显示收藏按钮",
- "subtitle": "Choose which buttons to show on the quote",
- "title": "下方按钮",
- "tweet": "显示发推按钮"
- },
- "custom": "自定义名言",
- "custom_author": "自定义出处",
- "custom_buttons": "Buttons",
- "custom_subtitle": "Set your own custom quotes",
- "no_quotes": "No quotes",
- "source_subtitle": "Choose where to get quotes from",
- "title": "名言警句"
- },
- "search": {
- "additional": "Additional options for search widget display and functionality",
- "autocomplete": "搜索联想",
- "autocomplete_provider": "联想功能提供引擎",
- "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
- "custom": "自定义搜索链接",
- "dropdown": "搜索框左侧显示搜索引擎选择框",
- "focus": "Focus on tab open",
- "search_engine": "搜索引擎",
- "search_engine_subtitle": "Choose search engine to use in the search bar",
- "title": "搜索栏",
- "voice_search": "语音搜索"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "添加的插件",
- "backgrounds_downloaded": "下载过背景",
- "backgrounds_favourited": "收藏的背景",
- "quicklinks_added": "添加的快捷方式",
- "quotes_favourited": "收藏的名言警句",
- "settings_changed": "更改的设置",
- "tabs_opened": "页面打开次数"
- },
- "title": "统计",
- "unlocked": "{count} Unlocked",
- "usage": "启用统计"
- },
- "time": {
- "analogue": {
- "hour_hand": "时针",
- "hour_marks": "时钟刻度",
- "minute_hand": "分针",
- "minute_marks": "分钟刻度",
- "round_clock": "Rounded background",
- "second_hand": "秒针",
- "subtitle": "Change how the analogue clock looks",
- "title": "模拟时钟"
- },
- "digital": {
- "seconds": "显示秒",
- "subtitle": "Change how the digital clock looks",
- "title": "数字时钟",
- "twelvehour": "使用 12 小时制",
- "twentyfourhour": "使用 24 小时制",
- "zero": "加零补足两位数字"
- },
- "format": "格式",
- "percentage_complete": "今天过去了%几",
- "title": "时间",
- "type": "类型",
- "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
- "vertical_clock": {
- "change_hour_colour": "Change hour text colour",
- "change_minute_colour": "Change minute text colour",
- "title": "Vertical Clock"
- }
- },
- "weather": {
- "auto": "自动定位",
- "custom_settings": "Custom Settings",
- "extra_info": {
- "atmospheric_pressure": "大气压",
- "cloudiness": "云量",
- "humidity": "湿度",
- "max_temp": "最高温度",
- "min_temp": "最低温度",
- "show_description": "显示描述",
- "show_location": "显示位置",
- "title": "更多信息",
- "visibility": "能见度",
- "weather_description": "Weather description",
- "wind_direction": "风向",
- "wind_speed": "风速"
- },
- "location": "位置",
- "options": {
- "basic": "Basic",
- "custom": "Custom",
- "expanded": "Expanded",
- "standard": "Standard"
- },
- "temp_format": {
- "celsius": "摄氏度",
- "fahrenheit": "华氏度",
- "kelvin": "开尔文",
- "title": "温度单位"
- },
- "title": "天气",
- "widget_type": "Widget Type"
- }
- }
- },
- "title": "选项"
- },
- "share": {
- "copy_link": "Copy link",
- "email": "Email"
- },
- "update": {
- "error": {
- "description": "无法连接到服务器",
- "title": "错误"
- },
- "offline": {
- "description": "不能从官网获取更新日志",
- "title": "离线模式已启用"
- },
- "title": "更新日志"
- },
- "welcome": {
- "buttons": {
- "close": "关闭",
- "next": "下一步",
- "preview": "Preview",
- "previous": "上一步"
- },
- "preview": {
- "continue": "Continue setup",
- "description": "You are currently in preview mode. Settings will be reset on closing this tab."
- },
- "sections": {
- "final": {
- "changes": "更改的设置",
- "changes_description": "如果需要进一步设置,点击右上角的设置图标即可弹出完整设置对话框。如果显示不正常,刷新即可。",
- "description": "马上即可开始使用 Mue!",
- "imported": "导入{amount}设置",
- "title": "最后一步"
- },
- "intro": {
- "description": "感谢您的安装。祝您使用愉快。",
- "notices": {
- "discord_description": "Talk with the Mue community and developers",
- "discord_join": "Join",
- "discord_title": "Join our Discord",
- "github_description": "Report bugs, add features or donate",
- "github_open": "Open",
- "github_title": "Contribute on GitHub"
- },
- "title": "欢迎使用 Mue 新标签插件"
- },
- "language": {
- "description": "Mue 支持以下语言。你也可以在这里添加新的翻译",
- "title": "更改语言"
- },
- "privacy": {
- "ddg_proxy_description": "你可以选择通过 DuckDuckGo 代理获取图像来保护您的信息。默认情况下,Mue的服务API会请求我们的开源服务器,图像请求会使用源服务器。关闭快捷方式图标代理将会访问Google而非DuckDuckGo来获取快捷方式的图标。插件商店默认始终使用 DuckDuckGo 的代理",
- "description": "进行一些设置来和 Mue 更好的保护您的隐私",
- "links": {
- "privacy_policy": "隐私政策",
- "source_code": "源代码",
- "title": "链接"
- },
- "offline_mode_description": "启用离线模式将会关闭所有服务的网络访问。该选项会关闭所有在线背景图片、在线名言警句、插件市场、天气、快捷方式、更新历史和一些关于信息的网络访问。",
- "title": "隐私设置"
- },
- "settings": {
- "description": "在新设备上安装 Mue? 可以直接导入之前的设置!",
- "tip": "您可以通过在之前设备上点击右上角的设置,打开高级选项卡,然后点击导出按钮,浏览器将自动下载一个 json 文件。你可以在上面点击导入按钮导入该 json 文件来导入你之前的设置和偏好。",
- "title": "导入设置"
- },
- "style": {
- "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
- "legacy": "Legacy",
- "modern": "Modern",
- "title": "Choose a style"
- },
- "theme": {
- "description": "Mue 支持日间和夜间主题,或者设置为自动选择,主题将跟随系统主题自动切换",
- "tip": "使用自动选择将使用您的电脑的主题。这个设置也会影响设置界面和一些小组件的主题,比如天气和便签。",
- "title": "选择一个主题"
- }
- },
- "tip": "快速提示"
- }
- },
"tabname": "新标签页",
- "toasts": {
- "error": "发生错误",
- "imported": "导入成功",
- "installed": "安装成功",
- "link_copied": "Link copied",
- "no_storage": "Not enough storage",
- "notes": "便签已复制",
- "quote": "名言已复制",
- "reset": "重置成功",
- "uninstalled": "卸载成功",
- "updated": "Successfully updated"
- },
"widgets": {
+ "greeting": {
+ "morning": "早上好",
+ "afternoon": "下午好",
+ "evening": "晚上好",
+ "christmas": "圣诞节快乐",
+ "newyear": "新年快乐",
+ "halloween": "万圣节快乐",
+ "birthday": "生日快乐"
+ },
"background": {
- "camera": "Camera",
- "category": "Category",
- "confirm": "Confirm",
"credit": "图像作者:",
+ "unsplash": "@ Unsplash",
+ "information": "信息",
"download": "下载",
"downloads": "下载",
- "exclude": "Don't show again",
- "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
- "information": "信息",
+ "views": "Views",
"likes": "Likes",
"location": "Location",
+ "camera": "Camera",
"resolution": "Resolution",
"source": "Source",
- "unsplash": "@ Unsplash",
- "views": "Views"
+ "category": "Category",
+ "exclude": "Don't show again",
+ "exclude_confirm": "Are you sure you don't want to see this image again?\nNote: if you don't like \"{category}\" images, you can deselect the category in the background source settings.",
+ "confirm": "Confirm"
+ },
+ "search": "搜索",
+ "quicklinks": {
+ "new": "新快捷方式",
+ "name": "名称",
+ "url": "链接",
+ "icon": "图标 (可选)",
+ "add": "添加",
+ "name_error": "请输入名称",
+ "url_error": "请输入链接"
},
"date": {
"week": "周"
},
- "greeting": {
- "afternoon": "下午好",
- "birthday": "生日快乐",
- "christmas": "圣诞节快乐",
- "evening": "晚上好",
- "halloween": "万圣节快乐",
- "morning": "早上好",
- "newyear": "新年快乐"
- },
- "navbar": {
- "notes": {
- "placeholder": "请键入内容",
- "title": "便签"
- },
- "todo": {
- "add": "Add",
- "no_todos": "No Todos",
- "pin": "Pin",
- "title": "Todo"
- },
- "tooltips": {
- "refresh": "刷新"
- }
- },
- "quicklinks": {
- "add": "添加",
- "icon": "图标 (可选)",
- "name": "名称",
- "name_error": "请输入名称",
- "new": "新快捷方式",
- "url": "链接",
- "url_error": "请输入链接"
+ "weather": {
+ "not_found": "未找到",
+ "meters": "{amount}米",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
},
"quote": {
- "copy": "Copy",
- "favourite": "Favourite",
"link_tooltip": "Open on Wikipedia",
"share": "Share",
+ "copy": "Copy",
+ "favourite": "Favourite",
"unfavourite": "Unfavourite"
},
- "search": "搜索",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount}米",
- "not_found": "未找到"
+ "navbar": {
+ "tooltips": {
+ "refresh": "刷新"
+ },
+ "notes": {
+ "title": "便签",
+ "placeholder": "请键入内容"
+ },
+ "todo": {
+ "title": "Todo",
+ "pin": "Pin",
+ "add": "Add",
+ "no_todos": "No Todos"
+ }
}
+ },
+ "modals": {
+ "main": {
+ "title": "选项",
+ "loading": "载入中...",
+ "file_upload_error": "大小超过了 2MB",
+ "navbar": {
+ "settings": "设置",
+ "addons": "我的插件",
+ "marketplace": "插件市场"
+ },
+ "error_boundary": {
+ "title": "错误",
+ "message": "无法载入该Mue组件",
+ "report_error": "Send Error Report",
+ "sent": "Sent!",
+ "refresh": "刷新"
+ },
+ "settings": {
+ "enabled": "已启用",
+ "open_knowledgebase": "Open Knowledgebase",
+ "additional_settings": "Additional Settings",
+ "reminder": {
+ "title": "注意",
+ "message": "刷新页面后设置才会生效"
+ },
+ "sections": {
+ "header": {
+ "more_info": "More info",
+ "report_issue": "Report Issue",
+ "enabled": "Choose whether or not to show this widget",
+ "size": "Slider to control how large the widget is"
+ },
+ "time": {
+ "title": "时间",
+ "format": "格式",
+ "type": "类型",
+ "type_subtitle": "Choose whether to display the time in digital format, analogue format, or a percentage completion of the day",
+ "digital": {
+ "title": "数字时钟",
+ "subtitle": "Change how the digital clock looks",
+ "seconds": "显示秒",
+ "twentyfourhour": "使用 24 小时制",
+ "twelvehour": "使用 12 小时制",
+ "zero": "加零补足两位数字"
+ },
+ "analogue": {
+ "title": "模拟时钟",
+ "subtitle": "Change how the analogue clock looks",
+ "second_hand": "秒针",
+ "minute_hand": "分针",
+ "hour_hand": "时针",
+ "hour_marks": "时钟刻度",
+ "minute_marks": "分钟刻度",
+ "round_clock": "Rounded background"
+ },
+ "percentage_complete": "今天过去了%几",
+ "vertical_clock": {
+ "title": "Vertical Clock",
+ "change_hour_colour": "Change hour text colour",
+ "change_minute_colour": "Change minute text colour"
+ }
+ },
+ "date": {
+ "title": "显示日期",
+ "week_number": "第n周",
+ "day_of_week": "星期n",
+ "datenth": "添加th后缀",
+ "type": {
+ "short": "显示简写",
+ "long": "显示全部",
+ "subtitle": "Whether to display the date in long form or short form"
+ },
+ "type_settings": "Display settings and format for the selected date type",
+ "short_date": "简写日期",
+ "short_format": "简写格式",
+ "long_format": "Long format",
+ "short_separator": {
+ "title": "简写分隔",
+ "dots": "点",
+ "dash": "横杠",
+ "gaps": "空格",
+ "slashes": "斜杠"
+ }
+ },
+ "quote": {
+ "title": "名言警句",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "出处链接",
+ "custom": "自定义名言",
+ "custom_subtitle": "Set your own custom quotes",
+ "no_quotes": "No quotes",
+ "author": "Author",
+ "custom_buttons": "Buttons",
+ "custom_author": "自定义出处",
+ "author_img": "Show author image",
+ "add": "继续添加名言",
+ "source_subtitle": "Choose where to get quotes from",
+ "buttons": {
+ "title": "下方按钮",
+ "subtitle": "Choose which buttons to show on the quote",
+ "copy": "显示复制按钮",
+ "tweet": "显示发推按钮",
+ "favourite": "显示收藏按钮"
+ }
+ },
+ "greeting": {
+ "title": "问候",
+ "events": "节日问候",
+ "default": "常规问候",
+ "name": "您在问候中的名字",
+ "birthday": "生日",
+ "birthday_subtitle": "Show a Happy Birthday message when it is your birthday",
+ "birthday_age": "显示年龄",
+ "birthday_date": "生日日期",
+ "additional": "Settings for the greeting display"
+ },
+ "background": {
+ "title": "背景",
+ "ddg_image_proxy": "使用 DuckDuckGo 图像代理",
+ "transition": "过渡动画",
+ "photo_information": "显示图片信息",
+ "show_map": "在图片信息内显示位置信息 (如果可用)",
+ "categories": "Categories",
+ "buttons": {
+ "title": "显示顶部按钮",
+ "view": "仅显示背景",
+ "favourite": "收藏",
+ "download": "下载"
+ },
+ "effects": {
+ "title": "背景特效",
+ "subtitle": "Add effects to the background images",
+ "blur": "模糊程度",
+ "brightness": "更改亮度",
+ "filters": {
+ "title": "背景滤镜",
+ "amount": "数值",
+ "grayscale": "灰度",
+ "sepia": "相片",
+ "invert": "反色",
+ "saturate": "饱和度",
+ "contrast": "对比度"
+ }
+ },
+ "type": {
+ "title": "来源",
+ "api": "网络图像库API",
+ "custom_image": "自定义图像/视频",
+ "custom_colour": "自定义纯色背景",
+ "random_colour": "随机纯色背景",
+ "random_gradient": "随机渐变色背景"
+ },
+ "source": {
+ "title": "来源",
+ "subtitle": "Select where to get background images from",
+ "api": "背景来源",
+ "custom_background": "自定义背景 (支持图片/视频)",
+ "custom_colour": "自定义背景颜色",
+ "upload": "选择",
+ "add_colour": "添加颜色",
+ "add_background": "继续添加背景",
+ "drop_to_upload": "Drop to upload",
+ "formats": "Available formats: {list}",
+ "select": "Or Select",
+ "add_url": "Add URL",
+ "disabled": "已禁用",
+ "loop_video": "循环播放",
+ "mute_video": "静音",
+ "quality": {
+ "title": "画质",
+ "original": "原画",
+ "high": "高画质",
+ "normal": "普通画质",
+ "datasaver": "省流模式"
+ },
+ "custom_title": "Custom Images",
+ "custom_description": "Select images from your local computer",
+ "remove": "Remove Image"
+ },
+ "display": "Display",
+ "display_subtitle": "Change how background and photo information are loaded",
+ "api": "API Settings",
+ "api_subtitle": "Options for getting an image from an external service (API)",
+ "interval": {
+ "title": "更改频率",
+ "subtitle": "Change how often the background is updated",
+ "minute": "每分钟",
+ "half_hour": "每半小时",
+ "hour": "每小时",
+ "day": "每天",
+ "month": "每月"
+ }
+ },
+ "search": {
+ "title": "搜索栏",
+ "additional": "Additional options for search widget display and functionality",
+ "search_engine": "搜索引擎",
+ "search_engine_subtitle": "Choose search engine to use in the search bar",
+ "custom": "自定义搜索链接",
+ "autocomplete": "搜索联想",
+ "autocomplete_provider": "联想功能提供引擎",
+ "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results",
+ "voice_search": "语音搜索",
+ "dropdown": "搜索框左侧显示搜索引擎选择框",
+ "focus": "Focus on tab open"
+ },
+ "weather": {
+ "title": "天气",
+ "location": "位置",
+ "auto": "自动定位",
+ "widget_type": "Widget Type",
+ "temp_format": {
+ "title": "温度单位",
+ "celsius": "摄氏度",
+ "fahrenheit": "华氏度",
+ "kelvin": "开尔文"
+ },
+ "extra_info": {
+ "title": "更多信息",
+ "show_location": "显示位置",
+ "show_description": "显示描述",
+ "weather_description": "Weather description",
+ "cloudiness": "云量",
+ "humidity": "湿度",
+ "visibility": "能见度",
+ "wind_speed": "风速",
+ "wind_direction": "风向",
+ "min_temp": "最低温度",
+ "max_temp": "最高温度",
+ "atmospheric_pressure": "大气压"
+ },
+ "options": {
+ "basic": "Basic",
+ "standard": "Standard",
+ "expanded": "Expanded",
+ "custom": "Custom"
+ },
+ "custom_settings": "Custom Settings"
+ },
+ "quicklinks": {
+ "title": "快捷方式",
+ "additional": "Additional settings for quick links display and functions",
+ "open_new": "在新标签页打开",
+ "tooltip": "光标停留时下方显示标题",
+ "text_only": "仅显示标题",
+ "add_link": "Add Link",
+ "no_quicklinks": "No quicklinks",
+ "edit": "Edit",
+ "style": "Style",
+ "options": {
+ "icon": "Icon",
+ "text_only": "Text Only",
+ "metro": "Metro"
+ },
+ "styling": "Quick Links Styling",
+ "styling_description": "Customise Quick Links appearance"
+ },
+ "message": {
+ "title": "消息",
+ "add": "继续添加消息",
+ "messages": "Messages",
+ "text": "文本",
+ "no_messages": "No messages",
+ "add_some": "Go ahead and add some.",
+ "content": "Message Content"
+ },
+ "appearance": {
+ "title": "外观",
+ "style": {
+ "title": "Widget Style",
+ "description": "Choose between the two styles, legacy (enabled for pre 7.0 users) and our slick modern styling.",
+ "legacy": "Legacy",
+ "new": "New"
+ },
+ "theme": {
+ "title": "主题",
+ "description": "Change the theme of the Mue widgets and modals",
+ "auto": "自动选择",
+ "light": "日间主题",
+ "dark": "夜间主题"
+ },
+ "navbar": {
+ "title": "右上方功能键",
+ "notes": "便签",
+ "refresh": "刷新键",
+ "refresh_subtitle": "Choose what is refreshed when you click the refresh button",
+ "hover": "Only display on hover",
+ "additional": "Modify navbar style and which buttons you want to display",
+ "refresh_options": {
+ "none": "不显示",
+ "page": "页面"
+ }
+ },
+ "font": {
+ "title": "字体",
+ "description": "Change the font used in Mue",
+ "custom": "自定义字体",
+ "google": "从 Google Fonts 导入",
+ "weight": {
+ "title": "字体粗细",
+ "thin": "极细",
+ "extra_light": "细字",
+ "light": "较细",
+ "normal": "一般",
+ "medium": "中等",
+ "semi_bold": "较粗",
+ "bold": "粗体",
+ "extra_bold": "加粗"
+ },
+ "style": {
+ "title": "字体样式",
+ "normal": "常规",
+ "italic": "意大利斜体",
+ "oblique": "伪斜体"
+ }
+ },
+ "accessibility": {
+ "title": "无障碍设定",
+ "description": "Accessibility settings for Mue",
+ "animations": "动画效果",
+ "text_shadow": {
+ "title": "Widget text shadow",
+ "new": "New",
+ "old": "Old",
+ "none": "None"
+ },
+ "widget_zoom": "小部件缩放",
+ "toast_duration": "窗口弹出时间长度",
+ "milliseconds": "毫秒"
+ }
+ },
+ "order": {
+ "title": "小部件顺序"
+ },
+ "advanced": {
+ "title": "高级",
+ "offline_mode": "启用离线模式",
+ "offline_subtitle": "When enabled, all requests to online services will be disabled.",
+ "data": "数据和设置",
+ "data_subtitle": "Choose whether to export your Mue settings to your computer, import an existing settings file, or reset your settings to their default values",
+ "reset_modal": {
+ "title": "警告",
+ "question": "您想要重置 Mue 的所有设置吗?",
+ "information": "本操作将删除所有数据。若您想保留数据及设置,请先将其导出。",
+ "cancel": "取消"
+ },
+ "customisation": "自定义",
+ "custom_css": "自定义 CSS",
+ "custom_css_subtitle": "Make Mue's styling customised to you with Cascading Style Sheets (CSS).",
+ "custom_js": "自定义 JS",
+ "tab_name": "新标签页名称",
+ "tab_name_subtitle": "Change the name of the tab that appears in your browser",
+ "timezone": {
+ "title": "时区",
+ "subtitle": "Choose a timezone from the list instead of the automatic default from your computer",
+ "automatic": "自动"
+ },
+ "experimental_warning": "请注意 Mue 团队无法提供实验性功能的支持。若您遇到问题,请先关闭实验性功能,再寻求帮助。"
+ },
+ "stats": {
+ "title": "统计",
+ "sections": {
+ "tabs_opened": "页面打开次数",
+ "backgrounds_favourited": "收藏的背景",
+ "backgrounds_downloaded": "下载过背景",
+ "quotes_favourited": "收藏的名言警句",
+ "quicklinks_added": "添加的快捷方式",
+ "settings_changed": "更改的设置",
+ "addons_installed": "添加的插件"
+ },
+ "usage": "启用统计",
+ "achievements": "Achievements",
+ "unlocked": "{count} Unlocked"
+ },
+ "experimental": {
+ "title": "实验性功能",
+ "warning": "以下设置仍未完成编写或测试,可能无法正常运作!",
+ "developer": "开发者"
+ },
+ "language": {
+ "title": "语言",
+ "quote": "名言语言"
+ },
+ "changelog": {
+ "title": "更新日志",
+ "by": "By {author}"
+ },
+ "about": {
+ "title": "关于",
+ "copyright": "版权",
+ "version": {
+ "title": "版本",
+ "checking_update": "正在检查更新……",
+ "update_available": "可下载更新",
+ "no_update": "无可下载更新",
+ "offline_mode": "离线模式下不能检查更新",
+ "error": {
+ "title": "获取更新信息失败",
+ "description": "错误"
+ }
+ },
+ "contact_us": "联系我们",
+ "support_mue": "支持 Mue",
+ "support_subtitle": "As Mue is entirely free, we rely on donations to cover the server bills and fund development",
+ "support_donate": "Donate",
+ "form_button": "Form",
+ "resources_used": {
+ "title": "使用资源",
+ "bg_images": "离线背景"
+ },
+ "contributors": "贡献者",
+ "supporters": "支持者",
+ "no_supporters": "There are currently no Mue supporters",
+ "photographers": "背景摄影者"
+ }
+ },
+ "buttons": {
+ "reset": "重置",
+ "import": "导入",
+ "export": "导出"
+ }
+ },
+ "marketplace": {
+ "by": "by {author}",
+ "all": "All",
+ "learn_more": "Learn More",
+ "photo_packs": "图片包",
+ "quote_packs": "名言包",
+ "preset_settings": "预设设定",
+ "no_items": "本类别为空",
+ "collection": "Collection",
+ "explore_collection": "Explore Collection",
+ "add_all": "Add All To Mue",
+ "collections": "Collections",
+ "cant_find": "Can't find what you're looking for?",
+ "knowledgebase_one": "Visit the",
+ "knowledgebase_two": "knowledgebase",
+ "knowledgebase_three": "to create your own.",
+ "product": {
+ "overview": "总览",
+ "information": "信息",
+ "last_updated": "更新日期",
+ "description": "Description",
+ "show_more": "Show More",
+ "show_less": "Show Less",
+ "show_all": "Show All",
+ "showing": "Showing",
+ "no_images": "No. Images",
+ "no_quotes": "No. Quotes",
+ "version": "版本",
+ "author": "作者",
+ "part_of": "Part of",
+ "explore": "Explore",
+ "buttons": {
+ "addtomue": "添加至 Mue",
+ "remove": "卸载",
+ "update_addon": "Update Add-on",
+ "back": "Back",
+ "report": "Report"
+ },
+ "setting": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "您目前似乎离线",
+ "description": "请连接到互联网。"
+ }
+ },
+ "addons": {
+ "added": "已添加",
+ "check_updates": "Check for updates",
+ "no_updates": "No updates available",
+ "updates_available": "Updates available {amount}",
+ "empty": {
+ "title": "这里空空如也",
+ "description": "请访问插件市场来添加插件。"
+ },
+ "sideload": {
+ "title": "上传插件",
+ "description": "Install a Mue addon not on the marketplace from your computer",
+ "failed": "Failed to sideload addon",
+ "errors": {
+ "no_name": "No name provided",
+ "no_author": "No author provided",
+ "no_type": "No type provided",
+ "invalid_photos": "Invalid photos object",
+ "invalid_quotes": "Invalid quotes object"
+ }
+ },
+ "sort": {
+ "title": "排序",
+ "newest": "安装过 (从新到旧)",
+ "oldest": "安装过 (从旧到新)",
+ "a_z": "首字母 (A-Z)",
+ "z_a": "首字母 (Z-A)"
+ },
+ "create": {
+ "title": "创建",
+ "moved_title": "Create add-on has moved!",
+ "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI",
+ "moved_button": "Get Started"
+ }
+ }
+ },
+ "update": {
+ "title": "更新日志",
+ "offline": {
+ "title": "离线模式已启用",
+ "description": "不能从官网获取更新日志"
+ },
+ "error": {
+ "title": "错误",
+ "description": "无法连接到服务器"
+ }
+ },
+ "welcome": {
+ "tip": "快速提示",
+ "sections": {
+ "intro": {
+ "title": "欢迎使用 Mue 新标签插件",
+ "description": "感谢您的安装。祝您使用愉快。",
+ "notices": {
+ "discord_title": "Join our Discord",
+ "discord_description": "Talk with the Mue community and developers",
+ "discord_join": "Join",
+ "github_title": "Contribute on GitHub",
+ "github_description": "Report bugs, add features or donate",
+ "github_open": "Open"
+ }
+ },
+ "language": {
+ "title": "更改语言",
+ "description": "Mue 支持以下语言。你也可以在这里添加新的翻译"
+ },
+ "theme": {
+ "title": "选择一个主题",
+ "description": "Mue 支持日间和夜间主题,或者设置为自动选择,主题将跟随系统主题自动切换",
+ "tip": "使用自动选择将使用您的电脑的主题。这个设置也会影响设置界面和一些小组件的主题,比如天气和便签。"
+ },
+ "style": {
+ "title": "Choose a style",
+ "description": "Mue currently offers the choice between the legacy styling and the newly released modern styling.",
+ "legacy": "Legacy",
+ "modern": "Modern"
+ },
+ "settings": {
+ "title": "导入设置",
+ "description": "在新设备上安装 Mue? 可以直接导入之前的设置!",
+ "tip": "您可以通过在之前设备上点击右上角的设置,打开高级选项卡,然后点击导出按钮,浏览器将自动下载一个 json 文件。你可以在上面点击导入按钮导入该 json 文件来导入你之前的设置和偏好。"
+ },
+ "privacy": {
+ "title": "隐私设置",
+ "description": "进行一些设置来和 Mue 更好的保护您的隐私",
+ "offline_mode_description": "启用离线模式将会关闭所有服务的网络访问。该选项会关闭所有在线背景图片、在线名言警句、插件市场、天气、快捷方式、更新历史和一些关于信息的网络访问。",
+ "ddg_proxy_description": "你可以选择通过 DuckDuckGo 代理获取图像来保护您的信息。默认情况下,Mue的服务API会请求我们的开源服务器,图像请求会使用源服务器。关闭快捷方式图标代理将会访问Google而非DuckDuckGo来获取快捷方式的图标。插件商店默认始终使用 DuckDuckGo 的代理",
+ "links": {
+ "title": "链接",
+ "privacy_policy": "隐私政策",
+ "source_code": "源代码"
+ }
+ },
+ "final": {
+ "title": "最后一步",
+ "description": "马上即可开始使用 Mue!",
+ "changes": "更改的设置",
+ "changes_description": "如果需要进一步设置,点击右上角的设置图标即可弹出完整设置对话框。如果显示不正常,刷新即可。",
+ "imported": "导入{amount}设置"
+ }
+ },
+ "buttons": {
+ "next": "下一步",
+ "preview": "Preview",
+ "previous": "上一步",
+ "close": "关闭"
+ },
+ "preview": {
+ "description": "You are currently in preview mode. Settings will be reset on closing this tab.",
+ "continue": "Continue setup"
+ }
+ },
+ "share": {
+ "copy_link": "Copy link",
+ "email": "Email"
+ }
+ },
+ "toasts": {
+ "quote": "名言已复制",
+ "notes": "便签已复制",
+ "reset": "重置成功",
+ "installed": "安装成功",
+ "uninstalled": "卸载成功",
+ "updated": "Successfully updated",
+ "error": "发生错误",
+ "imported": "导入成功",
+ "no_storage": "Not enough storage",
+ "link_copied": "Link copied"
}
}