openShareModal(false)} />
+ openExcludeModal(false)}
+ >
+ openExcludeModal(false)} />
+
{localStorage.getItem('widgetStyle') === 'legacy' && (
@@ -381,7 +379,7 @@ function PhotoInformation({ info, url, api }) {
key="exclude"
placement="top"
>
- excludeImage(info)} />
+ openExcludeModal(true)} />
) : null}
diff --git a/src/components/widgets/navbar/Todo.jsx b/src/components/widgets/navbar/Todo.jsx
index 92285672..cc26089c 100644
--- a/src/components/widgets/navbar/Todo.jsx
+++ b/src/components/widgets/navbar/Todo.jsx
@@ -6,24 +6,24 @@ import {
MdDelete,
MdPlaylistAdd,
MdOutlineDragIndicator,
- MdOutlineTextsms,
- MdAdd
+ MdPlaylistRemove,
} from 'react-icons/md';
import TextareaAutosize from '@mui/material/TextareaAutosize';
import Tooltip from '../../helpers/tooltip/Tooltip';
import Checkbox from '@mui/material/Checkbox';
import { shift, useFloating } from '@floating-ui/react-dom';
-import { sortableContainer, sortableElement } from 'react-sortable-hoc';
+import { sortableContainer, sortableElement, sortableHandle } from 'react-sortable-hoc';
import EventBus from 'modules/helpers/eventbus';
const SortableItem = sortableElement(({ value }) => {value}
);
const SortableContainer = sortableContainer(({ children }) => {children}
);
+const SortableHandle = sortableHandle(() => );
class Todo extends PureComponent {
constructor() {
super();
this.state = {
- todo: JSON.parse(localStorage.getItem('todoContent')) || [],
+ todo: JSON.parse(localStorage.getItem('todo')) || [],
visibility: localStorage.getItem('todoPinned') === 'true' ? 'visible' : 'hidden',
marginLeft: localStorage.getItem('refresh') === 'false' ? '-200px' : '-130px',
showTodo: localStorage.getItem('todoPinned') === 'true',
@@ -162,55 +162,52 @@ class Todo extends PureComponent {
{this.state.todo.length === 0 ? (
-
-
-
-
- {variables.getMessage('modals.main.settings.sections.message.no_messages')}
-
-
- {variables.getMessage('modals.main.settings.sections.message.add_some')}
-
-
-
-
- ) :
-
- {this.state.todo.map((_value, index) => (
-
- this.updateTodo('done', index)}
- />
- this.updateTodo('set', index, data)}
- readOnly={this.state.todo[index].done}
- />
- this.updateTodo('remove', index)} />
-
-
- }
- />
- ))}
-
- }
+
+
+
+
+ {variables.getMessage('widgets.navbar.todo.no_todos')}
+
+
+ {variables.getMessage('modals.main.settings.sections.message.add_some')}
+
+
+
+ ) : (
+
+ {this.state.todo.map((_value, index) => (
+
+ this.updateTodo('done', index)}
+ />
+ this.updateTodo('set', index, data)}
+ readOnly={this.state.todo[index].done}
+ />
+ this.updateTodo('remove', index)} />
+
+
+ }
+ />
+ ))}
+
+ )}
diff --git a/src/components/widgets/navbar/scss/_notes.scss b/src/components/widgets/navbar/scss/_notes.scss
index 85033f64..0b85ce99 100644
--- a/src/components/widgets/navbar/scss/_notes.scss
+++ b/src/components/widgets/navbar/scss/_notes.scss
@@ -29,7 +29,6 @@
text-align: center;
border-radius: 12px;
position: absolute;
- max-height: 80vh !important;
font-size: 1rem !important;
/*top: 100%;
left: 50%;
@@ -95,6 +94,7 @@ textarea {
border-radius: 12px;
flex-flow: row;
gap: 5px;
+ user-select: none;
svg {
font-size: 1.5rem;
diff --git a/src/components/widgets/navbar/scss/_todo.scss b/src/components/widgets/navbar/scss/_todo.scss
index d5811c5d..bb7c121b 100644
--- a/src/components/widgets/navbar/scss/_todo.scss
+++ b/src/components/widgets/navbar/scss/_todo.scss
@@ -8,12 +8,17 @@
.todoRows {
max-height: 65vh !important;
overflow-y: visible !important;
+ overflow-x: hidden;
display: flex;
flex-flow: column;
gap: 15px;
- overflow-x: hidden;
}
}
+ .todosEmpty {
+ height: 200px;
+ display: grid;
+ place-items: center;
+ }
}
.todoRow {
@@ -21,9 +26,7 @@
display: flex;
flex-flow: row;
align-items: center;
- padding-right: 10px;
- margin: 10px 0 10px 0;
-
+ margin: 15px 5px 15px 5px;
@include themed() {
color: t($color) !important;
}
diff --git a/src/components/widgets/search/Search.jsx b/src/components/widgets/search/Search.jsx
index a1be54fb..1caa7168 100644
--- a/src/components/widgets/search/Search.jsx
+++ b/src/components/widgets/search/Search.jsx
@@ -1,6 +1,9 @@
import variables from 'modules/variables';
import { PureComponent, createRef } from 'react';
import { MdSearch, MdMic, MdScreenSearchDesktop } from 'react-icons/md';
+import { BsGoogle } from 'react-icons/bs';
+import { SiDuckduckgo, SiMicrosoftbing, SiYahoo, SiBaidu } from 'react-icons/si';
+import { FaYandex } from 'react-icons/fa';
import Tooltip from 'components/helpers/tooltip/Tooltip';
import AutocompleteInput from 'components/helpers/autocomplete/Autocomplete';
@@ -130,6 +133,8 @@ export default class Search extends PureComponent {
} else {
url = this.state.url;
}
+ } else {
+ localStorage.setItem('searchEngine', info.settingsName);
}
this.setState({
@@ -161,6 +166,26 @@ export default class Search extends PureComponent {
EventBus.off('refresh');
}
+ getSearchDropdownicon(name) {
+ switch (name) {
+ case 'Google':
+ return ;
+ case 'DuckDuckGo':
+ return ;
+ case 'Bing':
+ return ;
+ case 'Yahoo':
+ case 'Yahoo! JAPAN':
+ return ;
+ case 'Яндекс':
+ return ;
+ case '百度':
+ return ;
+ default:
+ return ;
+ }
+ }
+
render() {
const customText = variables
.getMessage('modals.main.settings.sections.search.custom')
@@ -175,7 +200,7 @@ export default class Search extends PureComponent {
) : (
@@ -207,13 +232,9 @@ export default class Search extends PureComponent {
this.state.searchDropdown === true ? (
{searchEngines.map(({ name }, key) => {
- if (name === this.state.currentSearch) {
- return null;
- }
-
return (
this.setSearch(name)}
key={key}
>
@@ -221,14 +242,12 @@ export default class Search extends PureComponent {
);
})}
- {this.state.currentSearch !== customText ? (
this.setSearch(customText, 'custom')}
>
{customText}
- ) : null}
) : null}
diff --git a/src/components/widgets/search/search.scss b/src/components/widgets/search/search.scss
index 52a4b7ff..530f1e7f 100644
--- a/src/components/widgets/search/search.scss
+++ b/src/components/widgets/search/search.scss
@@ -68,6 +68,12 @@
}
}
+.searchDropdownListActive {
+ @include themed() {
+ background: t($btn-backgroundHover);
+ }
+}
+
.searchMain {
display: flex;
flex-flow: row;
diff --git a/src/translations/de_DE.json b/src/translations/de_DE.json
index 0cdb5470..9746fcdd 100644
--- a/src/translations/de_DE.json
+++ b/src/translations/de_DE.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/en_GB.json b/src/translations/en_GB.json
index 57f523f2..763f2906 100644
--- a/src/translations/en_GB.json
+++ b/src/translations/en_GB.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/en_US.json b/src/translations/en_US.json
index d42d7447..50c697c1 100644
--- a/src/translations/en_US.json
+++ b/src/translations/en_US.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/es.json b/src/translations/es.json
index feee8471..4f4a2b27 100644
--- a/src/translations/es.json
+++ b/src/translations/es.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/es_419.json b/src/translations/es_419.json
index 87f9a0ea..4abdcb9a 100644
--- a/src/translations/es_419.json
+++ b/src/translations/es_419.json
@@ -1,716 +1,718 @@
{
+ "tabname": "Nueva pestaña",
+ "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": {
+ "credit": "Foto por",
+ "unsplash": "en Unsplash",
+ "pexels": "en Pexels",
+ "information": "Información",
+ "download": "Descargar",
+ "downloads": "Downloads",
+ "views": "Views",
+ "likes": "Likes",
+ "location": "Location",
+ "camera": "Camera",
+ "resolution": "Resolution",
+ "source": "Source",
+ "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"
+ },
+ "weather": {
+ "not_found": "No encontrado",
+ "meters": "{amount} metros",
+ "extra_information": "Extra Information",
+ "feels_like": "Feels like {amount}"
+ },
+ "quote": {
+ "link_tooltip": "Open on Wikipedia",
+ "share": "Share",
+ "copy": "Copy",
+ "favourite": "Favourite",
+ "unfavourite": "Unfavourite"
+ },
+ "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 todos los cambios surjan efecto, recarga la pestaña."
+ },
+ "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": "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": "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": "Citación",
+ "additional": "Other settings to customise the style of the quote widget",
+ "author_link": "Enlace del autor",
+ "custom": "Citación 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": "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": "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": "Choose search engine to use in the search bar",
+ "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": "Listado 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",
+ "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": "Automática",
+ "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 los 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 al equipo de soporte."
+ },
+ "stats": {
+ "title": "Estadísticas",
+ "warning": "Tienes que activar las estadísticas de uso para poder utilizar esta función. Estos datos se almacenarán localmente en su computadora.",
+ "sections": {
+ "tabs_opened": "Pestañas abiertas",
+ "backgrounds_favourited": "Fondos en tus favoritos",
+ "backgrounds_downloaded": "Fondos descargados",
+ "quotes_favourited": "Citaciones en favoritos ",
+ "quicklinks_added": "Enlaces rápidos agregados",
+ "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 citaciones"
+ },
+ "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": "No hay actualizaciones disponibles",
+ "offline_mode": "No se puede comprobar la actualización en modo sin conexión",
+ "error": {
+ "title": "Error al obtener la información de la actualización",
+ "description": "Ha ocurrido un error"
+ }
+ },
+ "contact_us": "Contáctanos",
+ "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": "Fondos sin conexión"
+ },
+ "contributors": "Contribuidores",
+ "supporters": "Supporters",
+ "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": "Ve 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 citaciones inválido"
+ }
+ },
+ "sort": {
+ "title": "Ordenar",
+ "newest": "Instalados (Nuevos)",
+ "oldest": "Instalados (Antiguos)",
+ "a_z": "Alfabético (A-Z)",
+ "z_a": "Alfabético (Z-A)"
+ },
"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."
- },
+ "title": "Crear",
"example": "Example",
- "finish": {
- "download": "Descargar complemento",
- "title": "Terminar"
+ "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."
},
- "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"
- },
+ "import_custom": "Import from custom settings.",
"publishing": {
- "button": "Learn more",
+ "title": "Next step, Publishing...",
"subtitle": "Visit the Mue Knowledgebase on information on how to publish your newly created addon.",
- "title": "Next step, Publishing..."
+ "button": "Learn more"
},
- "quotes": {
- "api": {
- "author": "JSON quote author (or override)",
- "name": "JSON quote name",
- "title": "API",
- "url": "Quote URL"
- },
- "local": {
- "title": "Local"
- },
- "title": "Añadir citación"
+ "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"
},
- "title": "Crear",
- "types": {
- "photos": "Photo Pack",
- "quotes": "Quotes Pack",
- "settings": "Preset Settings Pack"
- }
- },
- "empty": {
- "description": "Ve 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 citaciones 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"
+ "photos": {
+ "title": "Añadir fotos"
},
- "failed": "Fallo en la carga lateral del complemento",
- "title": "Cargar localmente"
- },
- "sort": {
- "a_z": "Alfabético (A-Z)",
- "newest": "Instalados (Nuevos)",
- "oldest": "Instalados (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 todos los cambios surjan efecto, recarga la pestaña.",
- "title": "AVISO"
- },
- "sections": {
- "about": {
- "contact_us": "Contáctanos",
- "contributors": "Contribuidores",
- "copyright": "Copyright",
- "form_button": "Form",
- "no_supporters": "Actualmente no hay partidarios de Mue",
- "photographers": "Fotógrafos",
- "resources_used": {
- "bg_images": "Fondos sin conexión",
- "title": "Recursos usados"
+ "quotes": {
+ "title": "Añadir citación",
+ "api": {
+ "title": "API",
+ "url": "Quote URL",
+ "name": "JSON quote name",
+ "author": "JSON quote author (or override)"
},
- "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": "Supporters",
- "title": "Acerca de",
- "version": {
- "checking_update": "Comprobando actualizaciones",
- "error": {
- "description": "Ha ocurrido un error",
- "title": "Error al obtener la información de la actualización"
- },
- "no_update": "No hay actualizaciones disponibles",
- "offline_mode": "No se puede comprobar la actualización en modo sin conexión",
- "title": "Versión",
- "update_available": "Actualización disponible"
+ "local": {
+ "title": "Local"
}
- },
- "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 al 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": "Automática",
- "dark": "Oscuro",
- "description": "Change the theme of the Mue widgets and modals",
- "light": "Claro",
- "title": "Tema"
- },
- "title": "Apariencia"
- },
- "background": {
- "api": "API Settings",
- "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": "Change how background and photo information are loaded",
- "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 citaciones",
- "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 los 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": "Citación 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": "Citación"
- },
- "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": "Listado de búsqueda",
- "focus": "Focus on tab open",
- "search_engine": "Motor de búsqueda",
- "search_engine_subtitle": "Choose search engine to use in the search bar",
- "title": "Búsqueda",
- "voice_search": "Búsqueda por voz"
- },
- "stats": {
- "achievements": "Achievements",
- "sections": {
- "addons_installed": "Complementos instalados",
- "backgrounds_downloaded": "Fondos descargados",
- "backgrounds_favourited": "Fondos en tus favoritos",
- "quicklinks_added": "Enlaces rápidos agregados",
- "quotes_favourited": "Citaciones en favoritos ",
- "settings_changed": "Ajustes cambiados",
- "tabs_opened": "Pestañas abiertas"
- },
- "title": "Estadísticas",
- "unlocked": "{count} Unlocked",
- "usage": "Estadísticas de uso",
- "warning": "Tienes que activar las estadísticas de uso para poder utilizar esta función. Estos datos se almacenarán localmente en su computadora."
- },
- "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": "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": "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",
- "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"
}
}
+ }
+ },
+ "update": {
+ "title": "Actualizar",
+ "offline": {
+ "title": "Sin conexión",
+ "description": "No se pueden obtener actualizaciones en modo sin conexión"
},
- "title": "Opciones"
+ "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, se utilizará el tema de tu computadora. Esta configuración afectará a los modales y a algunos de los widgets que aparecen en la pantalla, como la hora 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 configuración anterior.",
+ "tip": "Puedes exportar tu configuración yendo a la pestaña Avanzado en tu 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 instalación anterior 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 sin conexión se deshabilitarán todas las peticiones a cualquier servicio. Esto hará que se desactiven los fondos en línea, las citaciones 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"
- },
- "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 sin conexión se deshabilitarán todas las peticiones a cualquier servicio. Esto hará que se desactiven los fondos en línea, las citaciones 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 configuración anterior.",
- "tip": "Puedes exportar tu configuración yendo a la pestaña Avanzado en tu 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 instalación anterior 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, se utilizará el tema de tu computadora. Esta configuración afectará a los modales y a algunos de los widgets que aparecen en la pantalla, como la hora y las notas.",
- "title": "Selecciona un tema"
- }
- },
- "tip": "Consejo"
}
},
- "tabname": "Nueva pestaña",
"toasts": {
+ "quote": "Citación copiada",
+ "notes": "Notas copiadas",
+ "reset": "Restablecido correctamente",
+ "installed": "Instalado correctamente",
+ "uninstalled": "Desinstalado correctamente",
+ "updated": "Actualizado correctamente",
"error": "Algo salió mal",
"imported": "Importado correctamente",
- "installed": "Instalado correctamente",
- "link_copied": "Link copied",
"no_storage": "Not enough storage",
- "notes": "Notas copiadas",
- "quote": "Citación copiada",
- "reset": "Restablecido correctamente",
- "uninstalled": "Desinstalado correctamente",
- "updated": "Actualizado correctamente"
- },
- "widgets": {
- "background": {
- "camera": "Camera",
- "category": "Category",
- "credit": "Foto por",
- "download": "Descargar",
- "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": "Información",
- "likes": "Likes",
- "location": "Location",
- "pexels": "en Pexels",
- "resolution": "Resolution",
- "source": "Source",
- "unsplash": "en Unsplash",
- "views": "Views"
- },
- "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",
- "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"
- },
- "quote": {
- "copy": "Copy",
- "favourite": "Favourite",
- "link_tooltip": "Open on Wikipedia",
- "share": "Share",
- "unfavourite": "Unfavourite"
- },
- "search": "Buscar",
- "weather": {
- "extra_information": "Extra Information",
- "feels_like": "Feels like {amount}",
- "meters": "{amount} metros",
- "not_found": "No encontrado"
- }
+ "link_copied": "Link copied"
}
}
diff --git a/src/translations/fr.json b/src/translations/fr.json
index d52085fa..281ac89a 100644
--- a/src/translations/fr.json
+++ b/src/translations/fr.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/id_ID.json b/src/translations/id_ID.json
index 11c838bc..ac34917f 100644
--- a/src/translations/id_ID.json
+++ b/src/translations/id_ID.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": "Cari",
"quicklinks": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/nl.json b/src/translations/nl.json
index aead69d2..e83df54a 100644
--- a/src/translations/nl.json
+++ b/src/translations/nl.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/no.json b/src/translations/no.json
index 3099950f..f3913212 100644
--- a/src/translations/no.json
+++ b/src/translations/no.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/pt.json b/src/translations/pt.json
index 817b6c79..d7f78d54 100644
--- a/src/translations/pt.json
+++ b/src/translations/pt.json
@@ -1,716 +1,718 @@
{
+ "tabname": "Nova Guia",
+ "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": {
+ "credit": "Foto por",
+ "unsplash": "no Unsplash",
+ "pexels": "em Pexels",
+ "information": "Informação",
+ "download": "Descarregar",
+ "downloads": "Descarregados",
+ "views": "Visualizações",
+ "likes": "Curtidas",
+ "location": "Localização",
+ "camera": "Câmara",
+ "resolution": "Resolução",
+ "source": "Fonte",
+ "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": "Confirm"
+ },
+ "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"
+ },
+ "weather": {
+ "not_found": "Não encontrado",
+ "meters": "{quantidade} metros",
+ "extra_information": "Informação extra",
+ "feels_like": "Parece {quantia}"
+ },
+ "quote": {
+ "link_tooltip": "Abrir na Wikipédia",
+ "share": "Compartilhar",
+ "copy": "Copiar",
+ "favourite": "Favorito",
+ "unfavourite": "Não favorito"
+ },
+ "navbar": {
+ "tooltips": {
+ "refresh": "Atualizar"
+ },
+ "notes": {
+ "title": "Notas",
+ "placeholder": "Digite aqui"
+ },
+ "todo": {
+ "title": "Tarefas",
+ "pin": "Fixar",
+ "add": "Adicionar",
+ "no_todos": "No Todos"
+ }
+ }
+ },
"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",
+ "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",
+ "warning": "Precisa ativar os dados de uso para usar este recurso. Esses dados são armazenados apenas localmente.",
+ "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": {
- "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."
- },
+ "title": "Criar",
"example": "Exemplo",
- "finish": {
- "download": "Descarregar complemento",
- "title": "Finalizar"
+ "other_title": "Criar Complemento",
+ "create_type": "Criar pacote {type}",
+ "types": {
+ "settings": "Configurações predefinidas",
+ "photos": "Pacotes de fotos",
+ "quotes": "Pacotes de citações"
+ },
+ "descriptions": {
+ "settings": "Coleção de configurações para personalizar o Mue.",
+ "photos": "Coleção de fotos relacionadas a um tópico.",
+ "quotes": "Coleção de citações relacionadas a um tópico."
},
- "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"
- },
+ "import_custom": "Importar de configurações personalizadas.",
"publishing": {
- "button": "Saber mais",
+ "title": "Próxima etapa, Publicando...",
"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..."
+ "button": "Saber mais"
},
- "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"
+ "metadata": {
+ "name": "Nome",
+ "icon_url": "URL do ícone",
+ "screenshot_url": "URL da captura de ecrã",
+ "description": "Descrição",
+ "example": "Descarregar exemplo"
+ },
+ "finish": {
+ "title": "Finalizar",
+ "download": "Descarregar complemento"
},
"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"
+ "photos": {
+ "title": "Adicionar fotos"
},
- "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"
+ "quotes": {
+ "title": "Adicionar citações",
+ "api": {
+ "title": "API",
+ "url": "URL da citação",
+ "name": "Nome da citação JSON",
+ "author": "Autor da citação JSON (ou substituição)"
},
- "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"
+ "local": {
+ "title": "Local"
}
- },
- "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",
- "warning": "Precisa ativar os dados de uso para usar este recurso. Esses dados são armazenados apenas localmente."
- },
- "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",
- "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"
}
}
+ }
+ },
+ "update": {
+ "title": "Atualizar",
+ "offline": {
+ "title": "Offline",
+ "description": "Não é possível obter logs de atualização no modo offline"
},
- "title": "Opções"
+ "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"
- },
- "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": {
+ "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",
- "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": {
- "background": {
- "camera": "Câmara",
- "category": "Categoria",
- "credit": "Foto por",
- "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",
- "likes": "Curtidas",
- "location": "Localização",
- "pexels": "em Pexels",
- "resolution": "Resolução",
- "source": "Fonte",
- "unsplash": "no Unsplash",
- "views": "Visualizações"
- },
- "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",
- "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"
- },
- "quote": {
- "copy": "Copiar",
- "favourite": "Favorito",
- "link_tooltip": "Abrir na Wikipédia",
- "share": "Compartilhar",
- "unfavourite": "Não favorito"
- },
- "search": "Pesquisar",
- "weather": {
- "extra_information": "Informação extra",
- "feels_like": "Parece {quantia}",
- "meters": "{quantidade} metros",
- "not_found": "Não encontrado"
- }
+ "link_copied": "Ligação copiada"
}
}
diff --git a/src/translations/pt_BR.json b/src/translations/pt_BR.json
index d7dc62e3..9bbd28e8 100644
--- a/src/translations/pt_BR.json
+++ b/src/translations/pt_BR.json
@@ -1,716 +1,718 @@
{
+ "tabname": "Nova Guia",
+ "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": {
+ "credit": "Foto por",
+ "unsplash": "no Unsplash",
+ "pexels": "em Pexels",
+ "information": "Informação",
+ "download": "Baixar",
+ "downloads": "Baixados",
+ "views": "Visualizações",
+ "likes": "Curtidas",
+ "location": "Localização",
+ "camera": "Câmera",
+ "resolution": "Resolução",
+ "source": "Fonte",
+ "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": "Confirm"
+ },
+ "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"
+ },
+ "weather": {
+ "not_found": "Não encontrado",
+ "meters": "{quantidade} metros",
+ "extra_information": "Informação extra",
+ "feels_like": "Parece {quantia}"
+ },
+ "quote": {
+ "link_tooltip": "Abrir na Wikipédia",
+ "share": "Compartilhar",
+ "copy": "Copiar",
+ "favourite": "Favorito",
+ "unfavourite": "Não favorito"
+ },
+ "navbar": {
+ "tooltips": {
+ "refresh": "Atualizar"
+ },
+ "notes": {
+ "title": "Notas",
+ "placeholder": "Digite aqui"
+ },
+ "todo": {
+ "title": "Tarefas",
+ "pin": "Fixar",
+ "add": "Adicionar",
+ "no_todos": "No Todos"
+ }
+ }
+ },
"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",
+ "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",
+ "warning": "Você precisa ativar os dados de uso para usar este recurso. Esses dados são armazenados apenas localmente.",
+ "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": {
- "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."
- },
+ "title": "Criar",
"example": "Exemplo",
- "finish": {
- "download": "Baixar complemento",
- "title": "Finalizar"
+ "other_title": "Criar Complemento",
+ "create_type": "Criar pacote {type}",
+ "types": {
+ "settings": "Configurações predefinidas",
+ "photos": "Pacotes de fotos",
+ "quotes": "Pacotes de citações"
+ },
+ "descriptions": {
+ "settings": "Coleção de configurações para personalizar o Mue.",
+ "photos": "Coleção de fotos relacionadas a um tópico.",
+ "quotes": "Coleção de citações relacionadas a um tópico."
},
- "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"
- },
+ "import_custom": "Importar de configurações personalizadas.",
"publishing": {
- "button": "Saber mais",
+ "title": "Próxima etapa, Publicando...",
"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..."
+ "button": "Saber mais"
},
- "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"
+ "metadata": {
+ "name": "Nome",
+ "icon_url": "URL do ícone",
+ "screenshot_url": "URL da captura de tela",
+ "description": "Descrição",
+ "example": "Baixar exemplo"
+ },
+ "finish": {
+ "title": "Finalizar",
+ "download": "Baixar complemento"
},
"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"
+ "photos": {
+ "title": "Adicionar fotos"
},
- "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"
+ "quotes": {
+ "title": "Adicionar citações",
+ "api": {
+ "title": "API",
+ "url": "URL da citação",
+ "name": "Nome da citação JSON",
+ "author": "Autor da citação JSON (ou substituição)"
},
- "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"
+ "local": {
+ "title": "Local"
}
- },
- "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",
- "warning": "Você precisa ativar os dados de uso para usar este recurso. Esses dados são armazenados apenas localmente."
- },
- "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",
- "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"
}
}
+ }
+ },
+ "update": {
+ "title": "Atualizar",
+ "offline": {
+ "title": "Offline",
+ "description": "Não é possível obter logs de atualização no modo offline"
},
- "title": "Opções"
+ "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"
- },
- "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": {
+ "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",
- "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": {
- "background": {
- "camera": "Câmera",
- "category": "Categoria",
- "credit": "Foto por",
- "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",
- "likes": "Curtidas",
- "location": "Localização",
- "pexels": "em Pexels",
- "resolution": "Resolução",
- "source": "Fonte",
- "unsplash": "no Unsplash",
- "views": "Visualizações"
- },
- "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",
- "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"
- },
- "quote": {
- "copy": "Copiar",
- "favourite": "Favorito",
- "link_tooltip": "Abrir na Wikipédia",
- "share": "Compartilhar",
- "unfavourite": "Não favorito"
- },
- "search": "Pesquisar",
- "weather": {
- "extra_information": "Informação extra",
- "feels_like": "Parece {quantia}",
- "meters": "{quantidade} metros",
- "not_found": "Não encontrado"
- }
+ "link_copied": "Link copiado"
}
}
diff --git a/src/translations/ru.json b/src/translations/ru.json
index 1801761f..c5a131e2 100644
--- a/src/translations/ru.json
+++ b/src/translations/ru.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},
diff --git a/src/translations/tr_TR.json b/src/translations/tr_TR.json
index b5ffc55a..5a1d7abf 100644
--- a/src/translations/tr_TR.json
+++ b/src/translations/tr_TR.json
@@ -1,716 +1,718 @@
{
+ "tabname": "Yeni Sekme",
+ "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": {
+ "credit": "Fotoğraf Sahibi ",
+ "unsplash": ", Unsplash",
+ "pexels": ", Pexels",
+ "information": "Bilgilendirme",
+ "download": "İndir",
+ "downloads": "İndirilenler",
+ "views": "Görüntülenme",
+ "likes": "Beğeni",
+ "location": "Konum",
+ "camera": "Kamera",
+ "resolution": "Çözünürlük",
+ "source": "Kaynak",
+ "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": "Confirm"
+ },
+ "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"
+ },
+ "weather": {
+ "not_found": "Bulunamadı.",
+ "meters": "{amount} metre",
+ "extra_information": "Ek Bilgilendirme",
+ "feels_like": "{amount} gibi hissettiriyor."
+ },
+ "quote": {
+ "link_tooltip": "Wikipedia'da Aç",
+ "share": "Paylaş",
+ "copy": "Kopyala",
+ "favourite": "Favorilere Ekle",
+ "unfavourite": "Favorilerden Çıkar"
+ },
+ "navbar": {
+ "tooltips": {
+ "refresh": "Sayfayı Yenile"
+ },
+ "notes": {
+ "title": "Notlar",
+ "placeholder": "Buraya Yaz!"
+ },
+ "todo": {
+ "title": "Yapılacaklar",
+ "pin": "Tuttur",
+ "add": "Ekle",
+ "no_todos": "No Todos"
+ }
+ }
+ },
"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": "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": "Dijital",
+ "subtitle": "Dijital saatin görünümünü değiştirin.",
+ "seconds": "Saniye",
+ "twentyfourhour": "24 Saat",
+ "twelvehour": "12 Saat",
+ "zero": "Sıfır Eklenmiş"
+ },
+ "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": "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": "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",
+ "custom": "Notu Özelleştir",
+ "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ı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) görüntü alma seçenekleri",
+ "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çenekler.",
+ "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": "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",
+ "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": "Hızlı Linkler",
+ "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": "Hızlı Bağlantılar 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 widget'larının 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 neyin yenileneceğini 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 verileri 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": "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": "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",
+ "warning": "Bu özelliği kullanmak için kullanım verilerini etkinleştirmeniz gerekir. Bu veriler yalnızca yerel olarak depolanır.",
+ "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": "Add All To Mue",
+ "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": "Setting",
+ "value": "Value"
+ },
+ "offline": {
+ "title": "Looks like you're offline",
+ "description": "Please connect to the internet"
+ }
+ },
"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 piyasada 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": {
- "create_type": "{type} Paketi Oluştur",
- "descriptions": {
- "photos": "Bir konuyla ilgili fotoğraf koleksiyonu.",
- "quotes": "Bir konuyla ilgili alıntı koleksiyonu.",
- "settings": "Mue'yu özelleştirmek için hazır ayarların kullanılması."
- },
+ "title": "Oluştur",
"example": "Örnek",
- "finish": {
- "download": "Eklentiyi İndir",
- "title": "Kurulumu Bitir"
+ "other_title": "Eklenti Oluştur",
+ "create_type": "{type} Paketi Oluştur",
+ "types": {
+ "settings": "Önceden Ayarlanmış Ayarlar Paketi",
+ "photos": "Fatoğraf Paketi",
+ "quotes": "Alıntı Paketi"
+ },
+ "descriptions": {
+ "settings": "Mue'yu özelleştirmek için hazır ayarların kullanılması.",
+ "photos": "Bir konuyla ilgili fotoğraf koleksiyonu.",
+ "quotes": "Bir konuyla ilgili alıntı koleksiyonu."
},
- "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"
- },
+ "import_custom": "Özel ayarlardan içeri aktarın.",
"publishing": {
- "button": "Daha fazla bilgi edin.",
+ "title": "Sonraki adım, Yayınla...",
"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..."
+ "button": "Daha fazla bilgi edin."
},
- "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"
+ "metadata": {
+ "name": "İsmi",
+ "icon_url": "İkon URL'si ",
+ "screenshot_url": "Arka plan URL'si",
+ "description": "Açıklama",
+ "example": "Örneği İndir"
+ },
+ "finish": {
+ "title": "Kurulumu Bitir",
+ "download": "Eklentiyi İndir"
},
"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 piyasada 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ı."
+ "photos": {
+ "title": "Fotoğraf Ekle"
},
- "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": "Add All To Mue",
- "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": "Please connect to the internet",
- "title": "Looks like you're offline"
- },
- "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": "Setting",
- "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"
+ "quotes": {
+ "title": "Alıntı Ekle",
+ "api": {
+ "title": "API",
+ "url": "Alıntı URL'si",
+ "name": "JSON alıntı adı",
+ "author": "JSON alıntı yazarı (veya geçersiz kılma)"
},
- "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!"
+ "local": {
+ "title": "Yerel"
}
- },
- "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 verileri 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": "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": "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 neyin yenileneceğini 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 widget'larının 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) görüntü alma seçenekleri",
- "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ı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": "Hızlı Bağlantılar görünümünü özelleştirin",
- "text_only": "Yalnızca Metni Göster",
- "title": "Hızlı Linkler",
- "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",
- "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": "Notu Özelleştir",
- "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çenekler.",
- "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",
- "warning": "Bu özelliği kullanmak için kullanım verilerini etkinleştirmeniz gerekir. Bu veriler yalnızca yerel olarak depolanır."
- },
- "time": {
- "analogue": {
- "hour_hand": "Akrep (saat) ibresi",
- "hour_marks": "Saat çizgileri",
- "minute_hand": " Yelkovan (dakika) ibresi",
- "minute_marks": "Dakika çizgileri",
- "round_clock": "Rounded background",
- "second_hand": "Saniye ibresi",
- "subtitle": "Analog saatin nasıl görüntüleneceğini belirleyin.",
- "title": "Analog"
- },
- "digital": {
- "seconds": "Saniye",
- "subtitle": "Dijital saatin görünümünü değiştirin.",
- "title": "Dijital",
- "twelvehour": "12 Saat",
- "twentyfourhour": "24 Saat",
- "zero": "Sıfır Eklenmiş"
- },
- "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 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",
- "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"
}
}
+ }
+ },
+ "update": {
+ "title": "Güncelleme",
+ "offline": {
+ "title": "Çevrimdışı",
+ "description": "Çevrimdışı moddayken güncelleme günlükleri alınamıyor"
},
- "title": "Seçenekler"
+ "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ı widget'ları 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"
- },
- "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ı widget'ları etkiler.",
- "title": "Bir Tema Seçin"
- }
- },
- "tip": "İpuçları"
}
},
- "tabname": "Yeni Sekme",
"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ı.",
- "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": {
- "background": {
- "camera": "Kamera",
- "category": "Kategori",
- "credit": "Fotoğraf Sahibi ",
- "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",
- "likes": "Beğeni",
- "location": "Konum",
- "pexels": ", Pexels",
- "resolution": "Çözünürlük",
- "source": "Kaynak",
- "unsplash": ", Unsplash",
- "views": "Görüntülenme"
- },
- "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",
- "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"
- },
- "quote": {
- "copy": "Kopyala",
- "favourite": "Favorilere Ekle",
- "link_tooltip": "Wikipedia'da Aç",
- "share": "Paylaş",
- "unfavourite": "Favorilerden Çıkar"
- },
- "search": "Arama",
- "weather": {
- "extra_information": "Ek Bilgilendirme",
- "feels_like": "{amount} gibi hissettiriyor.",
- "meters": "{amount} metre",
- "not_found": "Bulunamadı."
- }
+ "link_copied": "Bağlantı kopyalandı."
}
}
diff --git a/src/translations/zh_CN.json b/src/translations/zh_CN.json
index 79b51369..cd84821b 100644
--- a/src/translations/zh_CN.json
+++ b/src/translations/zh_CN.json
@@ -25,7 +25,8 @@
"source": "Source",
"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."
+ "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": {
@@ -64,7 +65,8 @@
"todo": {
"title": "Todo",
"pin": "Pin",
- "add": "Add"
+ "add": "Add",
+ "no_todos": "No Todos"
}
}
},