diff --git a/bun.lockb b/bun.lockb
index 0dd05ce8..2b554d3d 100644
Binary files a/bun.lockb and b/bun.lockb differ
diff --git a/migrate-translations.js b/migrate-translations.js
new file mode 100644
index 00000000..698c4e7d
--- /dev/null
+++ b/migrate-translations.js
@@ -0,0 +1,67 @@
+const fs = require('fs');
+const YAML = require('yaml');
+
+const compareAndRemoveKeys = (json1, json2) => {
+ for (let key in json1) {
+ if (json2.hasOwnProperty(key)) {
+ if (typeof json1[key] === 'object' && typeof json2[key] === 'object') {
+ compareAndRemoveKeys(json1[key], json2[key]);
+ } else {
+ if (json1[key] === json2[key]) {
+ delete json1[key];
+ }
+ }
+ } else {
+ delete json1[key];
+ }
+ }
+};
+
+const original = JSON.parse(fs.readFileSync(`./src/i18n/locales/en-GB.json`, 'utf8'));
+
+fs.readdirSync('./src/i18n/locales').forEach(e => {
+ if (!e.endsWith('json')) return;
+ const data = JSON.parse(fs.readFileSync(`./src/i18n/locales/${e}`, 'utf8'));
+ const name = e.replace('.json', '');
+
+ if (name !== 'en-GB') {
+ compareAndRemoveKeys(data, original);
+ }
+
+ try {
+ fs.mkdirSync(`./src/i18n/${name}`);
+ } catch (e) { }
+
+ const _addons = YAML.stringify(data.modals?.main?.addons) || '{}';
+ fs.writeFileSync(`./src/i18n/${name}/_addons.yml`, _addons);
+ delete data?.modals?.main?.addons;
+
+ const _marketplace = YAML.stringify(data.modals?.main?.marketplace) || '{}';
+ fs.writeFileSync(`./src/i18n/${name}/_marketplace.yml`, _marketplace);
+ delete data?.modals?.main?.marketplace;
+
+ const _settings = YAML.stringify(data.modals?.main?.settings) || '{}';
+ fs.writeFileSync(`./src/i18n/${name}/_settings.yml`, _settings);
+ delete data?.modals?.main?.settings;
+
+ const _welcome = YAML.stringify(data.modals?.welcome) || '{}';
+ fs.writeFileSync(`./src/i18n/${name}/_welcome.yml`, _welcome);
+ delete data?.modals?.welcome;
+
+ const main = YAML.stringify(data) || '{}';
+ fs.writeFileSync(`./src/i18n/${name}/main.yml`, main);
+});
+
+
+fs.readdirSync('./src/i18n/locales/achievements').forEach(e => {
+ if (!e.endsWith('json')) return;
+ const data = JSON.parse(fs.readFileSync(`./src/i18n/locales/achievements/${e}`, 'utf8'));
+ const name = e.replace('.json', '');
+
+ if (name !== 'en-GB') {
+ compareAndRemoveKeys(data, original);
+ }
+
+ const _achievements = YAML.stringify(data) || '{}';
+ fs.writeFileSync(`./src/i18n/${name}/_achievements.yml`, _achievements);
+});
diff --git a/package.json b/package.json
index fd75b922..8b9fada5 100644
--- a/package.json
+++ b/package.json
@@ -12,21 +12,21 @@
"version": "7.1.1",
"dependencies": {
"@eartharoid/i18n": "2.0.0-alpha.1",
- "@eartharoid/vite-plugin-i18n": "^1.0.0-alpha.3",
+ "@eartharoid/vite-plugin-i18n": "^1.0.0-alpha.5",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@floating-ui/react-dom": "2.1.0",
"@fontsource-variable/lexend-deca": "^5.0.13",
"@fontsource-variable/montserrat": "^5.0.19",
- "@headlessui/react": "^2.0.4",
+ "@headlessui/react": "^2.1.0",
"@muetab/react-sortable-hoc": "^2.0.1",
"@mui/material": "5.15.19",
- "@sentry/react": "^8.8.0",
+ "@sentry/react": "^8.11.0",
"clsx": "^2.1.1",
"embla-carousel-autoplay": "8.1.3",
"embla-carousel-react": "8.1.3",
"fast-blurhash": "^1.1.2",
- "framer-motion": "^11.2.10",
+ "framer-motion": "^11.2.11",
"image-conversion": "^2.1.1",
"markdown-to-jsx": "^7.4.7",
"react": "^18.3.1",
@@ -44,19 +44,19 @@
"@commitlint/config-conventional": "^19.2.2",
"@eartharoid/deep-merge": "^0.0.2",
"@tailwindcss/typography": "^0.5.13",
- "@vitejs/plugin-react-swc": "^3.6.0",
- "adm-zip": "^0.5.13",
+ "@vitejs/plugin-react-swc": "^3.7.0",
+ "adm-zip": "^0.5.14",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^9.0.11",
- "prettier": "^3.3.1",
- "sass": "^1.77.4",
- "stylelint": "^16.6.0",
+ "prettier": "^3.3.2",
+ "sass": "^1.77.6",
+ "stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^13.1.0",
- "stylelint-scss": "^6.3.1",
- "tailwindcss": "^3.4.3",
+ "stylelint-scss": "^6.3.2",
+ "tailwindcss": "^3.4.4",
"vite": "5.2.12",
"vite-plugin-progress": "^0.0.7",
"yaml": "^2.4.5"
diff --git a/src/features/navbar/Navbar.jsx b/src/features/navbar/Navbar.jsx
index 2fbb081c..cfee3853 100644
--- a/src/features/navbar/Navbar.jsx
+++ b/src/features/navbar/Navbar.jsx
@@ -119,23 +119,13 @@ class Navbar extends PureComponent {
{this.state.refreshEnabled !== 'false' && }
diff --git a/src/i18n/bn/_achievements.yml b/src/i18n/bn/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/bn/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/bn/_addons.yml b/src/i18n/bn/_addons.yml
new file mode 100644
index 00000000..d1ea50b3
--- /dev/null
+++ b/src/i18n/bn/_addons.yml
@@ -0,0 +1,6 @@
+empty: {}
+sideload:
+ errors: {}
+sort: {}
+create:
+ moved_button: Get Started
diff --git a/src/i18n/bn/_marketplace.yml b/src/i18n/bn/_marketplace.yml
new file mode 100644
index 00000000..75625d73
--- /dev/null
+++ b/src/i18n/bn/_marketplace.yml
@@ -0,0 +1,3 @@
+product:
+ buttons: {}
+offline: {}
diff --git a/src/i18n/bn/_settings.yml b/src/i18n/bn/_settings.yml
new file mode 100644
index 00000000..b79963f7
--- /dev/null
+++ b/src/i18n/bn/_settings.yml
@@ -0,0 +1,242 @@
+enabled: সক্রিয়
+open_knowledgebase: উন্মুক্ত জ্ঞানভিত্তিক
+additional_settings: অতিরিক্ত সেটিংস
+reminder:
+ title: নোটিশ
+ message: সমস্ত পরিবর্তন ঘটানোর জন্য, পৃষ্ঠাটি অবশ্যই রিফ্রেশ করা উচিত।
+sections:
+ header:
+ more_info: আরও তথ্য
+ report_issue: সমস্যা দাখিল করুন
+ enabled: এই উইজেটটি দেখাবেন কি না তা নির্বাচন করুন
+ size: উইজেট কত বড় তা নিয়ন্ত্রণ করার স্লাইডার
+ time:
+ title: সময়
+ format: বিন্যাস
+ type: টাইপ
+ type_subtitle: ডিজিটাল বিন্যাসে, অ্যানালগ বিন্যাসে বা দিনের একটি শতাংশ সমাপ্তিতে
+ সময় প্রদর্শন করবেন কিনা তা চয়ন করুন
+ digital:
+ title: ডিজিটাল
+ subtitle: ডিজিটাল ঘড়ি দেখতে কেমন তা পরিবর্তন করুন
+ seconds: সেকেন্ড
+ twentyfourhour: ২৪ ঘণ্টা
+ twelvehour: ১২ ঘণ্টা
+ zero: শুন্য-প্যাডেড
+ analogue:
+ title: অ্যানালগ
+ subtitle: অ্যানালগ ঘড়িটি কেমন দেখায় তা পরিবর্তন করুন
+ second_hand: সেকেন্ডের কাঁটা
+ minute_hand: মিনিটের কাঁটা
+ hour_hand: ঘণ্টার কাঁটা
+ hour_marks: ঘণ্টার চিহ্ন
+ minute_marks: মিনিটের চিহ্ন
+ round_clock: গোলাকার পটভূমি
+ percentage_complete: শতাংশ সম্পূর্ণ
+ vertical_clock:
+ title: উল্লম্ব ঘড়ি
+ change_hour_colour: ঘন্টার পাঠ্যের রঙ পরিবর্তন করুন
+ change_minute_colour: মিনিটের পাঠ্যের রঙ পরিবর্তন করুন
+ date:
+ type: {}
+ short_separator: {}
+ quote:
+ additional: উদ্ধৃতি উইজেটের শৈলী কাস্টমাইজ করার জন্য অন্যান্য সেটিংস
+ author_link: লেখকের লিঙ্ক
+ author: লেখক
+ author_img: লেখকের ছবি দেখান
+ add: উদ্ধৃতি যোগ করুন
+ buttons:
+ title: বোতাম
+ subtitle: উদ্ধৃতিটিতে কোন বোতামগুলি দেখাতে হবে তা নির্বাচন করুন
+ copy: কপি
+ tweet: টুইট
+ favourite: প্রিয়
+ greeting:
+ title: শুভেচ্ছা
+ events: ঘটনা
+ default: ডিফল্ট শুভেচ্ছা বার্তা
+ name: অভিবাদনের জন্য নাম
+ birthday: জন্মদিন
+ birthday_subtitle: আপনার জন্মদিন হলে একটি শুভ জন্মদিনের বার্তা দেখান
+ birthday_age: জন্মদিনের বয়স
+ birthday_date: জন্মদিনের তারিখ
+ additional: অভিবাদন প্রদর্শনের জন্য সেটিংস
+ background:
+ title: পটভূমি
+ transition: ফেইড-ইন ট্রানজিশন
+ photo_information: ছবির তথ্য দেখান
+ show_map: উপলব্ধ থাকলে ছবির তথ্যে অবস্থান মানচিত্র দেখান
+ categories: ক্যাটাগরি
+ buttons:
+ title: বোতাম
+ view: বড় করুন
+ favourite: প্রিয়
+ download: ডাউনলোড
+ effects:
+ title: প্রভাব
+ subtitle: পটভূমির ছবির প্রভাব যোগ করুন
+ blur: অস্পষ্টতা পরিবর্তন করুন
+ brightness: উজ্জ্বলতা সমন্বয়
+ filters:
+ title: পটভূমির ফিল্টার
+ amount: ফিল্টারের পরিমাণ
+ grayscale: গ্রেস্কেল
+ sepia: সেপিয়া
+ invert: উল্টানো
+ saturate: পরিপূর্ণ
+ type:
+ title: টাইপ
+ custom_image: কাস্টম ইমেজ
+ custom_colour: মনের মতো রঙ/গ্রেডিয়েন্ট
+ random_colour: এলোমেলো রঙ
+ random_gradient: এলোমেলো গ্রেডিয়েন্ট
+ unsplash: {}
+ source:
+ title: উৎস
+ subtitle: পটভূমির ছবি কোথা থেকে পাবেন তা নির্বাচন করুন
+ api: পটভূমি এপিআই
+ custom_background: মনের মতো পটভূমি
+ custom_colour: মনের মতো পটভূমির রঙ
+ upload: আপলোড
+ add_colour: রঙ যোগ করুন
+ add_background: পটভূমি যোগ করুন
+ drop_to_upload: আপলোড করতে ড্রপ করুন
+ formats: "উপলব্ধ ফরম্যাট: {list}"
+ select: অথবা নির্বাচন করুন
+ add_url: URL যোগ করুন
+ disabled: অক্ষম
+ loop_video: ভিডিও পুনরায় চালান
+ mute_video: ভিডিও নিঃশব্দ করুন
+ quality:
+ title: গুণমান
+ original: আসল
+ high: উচ্চ গুণমান
+ normal: স্বাভাবিক গুণমান
+ datasaver: ডেটা সাশ্রয়
+ custom_title: কাস্টম ছবি
+ custom_description: আপনার স্থানীয় কম্পিউটার থেকে ছবি নির্বাচন করুন
+ remove: ছবি সরান
+ display: প্রদর্শন
+ display_subtitle: পটভূমি এবং ছবির তথ্য কিভাবে লোড হয় তা পরিবর্তন করুন
+ search:
+ voice_search: Voice Search
+ dropdown: Search dropdown
+ weather:
+ title: আবহাওয়া
+ location: অবস্থান
+ auto: অটো
+ widget_type: উইজেটের ধরণ
+ temp_format:
+ title: তাপমাত্রা বিন্যাস
+ celsius: সেলসিয়াস
+ fahrenheit: ফারেনহাইট
+ kelvin: কেলভিন
+ extra_info:
+ title: অতিরিক্ত তথ্য
+ show_location: অবস্থান দেখান
+ show_description: বিবরণ দেখান
+ weather_description: আবহাওয়ার বিবরণ
+ cloudiness: মেঘলা
+ humidity: আর্দ্রতা
+ visibility: দৃশ্যমানতা
+ wind_speed: বাতাসের গতি
+ wind_direction: বাতাসের দিক
+ min_temp: সর্বনিম্ন তাপমাত্রা
+ max_temp: সর্বোচ্চ তাপমাত্রা
+ atmospheric_pressure: বায়ুমণ্ডলীয় চাপ
+ options:
+ basic: মৌলিক
+ standard: স্ট্যান্ডার্ড
+ expanded: প্রসারিত
+ custom: কাস্টম
+ custom_settings: কাস্টম সেটিংস
+ quicklinks:
+ title: দ্রুতগামী লিঙ্ক
+ additional: দ্রুতগামী লিঙ্ক প্রদর্শন এবং ফাংশনের জন্য অতিরিক্ত সেটিংস
+ open_new: নতুন ট্যাবে খুলুন
+ tooltip: টুলটিপ
+ text_only: শুধুমাত্র টেক্সট দেখান
+ add_link: লিঙ্ক যোগ করুন
+ no_quicklinks: কোন দ্রুত লিঙ্ক নেই
+ edit: সম্পাদনা করুন
+ style: স্টাইল
+ options:
+ icon: আইকন
+ text_only: শুধুমাত্র পাঠ্য
+ metro: মেট্রো
+ styling: দ্রুত লিঙ্কের স্টাইল
+ styling_description: দ্রুত লিঙ্কের চেহারা কাস্টমাইজ করুন
+ message:
+ title: বার্তা
+ add: বার্তা যোগ করুন
+ messages: বার্তাগুলি
+ text: পাঠ্য
+ no_messages: কোন বার্তা নেই
+ add_some: এগিয়ে যান এবং কিছু যোগ করুন।
+ content: বার্তার বিষয়বস্তু
+ appearance:
+ style: {}
+ theme: {}
+ navbar:
+ refresh_options: {}
+ font:
+ weight: {}
+ style: {}
+ accessibility:
+ text_shadow: {}
+ order:
+ title: উইজেটের বিন্যাস
+ advanced:
+ title: উন্নত
+ offline_mode: নীরব কার্যপদ্ধতি
+ offline_subtitle: সক্রিয় করা হলে, অনলাইন পরিষেবাগুলির সমস্ত অনুরোধ অক্ষম করা হবে।
+ data: ডেটা
+ data_subtitle: আপনার কম্পিউটারে আপনার Mue সেটিংস রপ্তানি করতে, একটি বিদ্যমান
+ সেটিংস ফাইল আমদানি করতে বা আপনার সেটিংসকে তাদের ডিফল্ট মানগুলিতে পুনরায়
+ সেট করতে চান তা চয়ন করুন
+ reset_modal:
+ title: সতর্কতা
+ question: আপনি কি Mue রিসেট করতে চান?
+ information: এটি সমস্ত ডেটা মুছে ফেলবে। আপনি যদি আপনার ডেটা এবং পছন্দগুলি রাখতে
+ চান তবে অনুগ্রহ করে প্রথমে সেগুলি রপ্তানি করুন।
+ cancel: বাতিল করুন
+ customisation: কাস্টমাইজেশন
+ custom_css: মনের মতো CSS
+ custom_css_subtitle: ক্যাসকেডিং স্টাইল শীট (CSS) দিয়ে আপনার জন্য Mue-এর
+ স্টাইলিং কাস্টমাইজ করুন।
+ custom_js: মনের মতো JS
+ tab_name_subtitle: আপনার ব্রাউজারে প্রদর্শিত ট্যাবের নাম পরিবর্তন করুন
+ timezone:
+ title: টাইম জোন
+ subtitle: আপনার কম্পিউটার থেকে স্বয়ংক্রিয় ডিফল্টের পরিবর্তে তালিকা থেকে একটি
+ টাইমজোন বেছে নিন
+ automatic: স্বয়ংক্রিয়
+ experimental_warning: অনুগ্রহ করে মনে রাখবেন যে আপনার পরীক্ষামূলক মোড চালু থাকলে
+ Mue টিম সাহায্য প্রদান করতে পারবে না। অনুগ্রহ করে প্রথমে এটি বন্ধ করুন এবং
+ সাপোর্টের সাথে যোগাযোগ করার আগে সমস্যাটি ঘটতে থাকে কিনা তা দেখুন।
+ preview_data_disabled: {}
+ stats:
+ sections:
+ tabs_opened: ট্যাব খোলা হয়েছে
+ backgrounds_favourited: পটভূমি পছন্দসই
+ backgrounds_downloaded: ডাউনলোড করা পটভূমি
+ quotes_favourited: উদ্ধৃতি পছন্দসই
+ quicklinks_added: দ্রুত লিঙ্ক যোগ করা হয়েছে
+ settings_changed: সেটিংস পরিবর্তন করা হয়েছে
+ addons_installed: অ্যাড-অন ইনস্টল করা হয়েছে
+ usage: ব্যবহারের পরিসংখ্যান
+ achievements: অর্জনগুলি
+ unlocked: "{count} আনলক করা হয়েছে"
+ clear_modal: {}
+ experimental:
+ title: পরীক্ষামূলক
+ warning: এই সেটিংস সম্পূর্ণরূপে পরীক্ষিত/বাস্তবায়িত করা হয়নি এবং সঠিকভাবে কাজ
+ নাও করতে পারে!
+ language: {}
+ changelog: {}
+ about:
+ version:
+ error: {}
+ resources_used: {}
+buttons: {}
diff --git a/src/i18n/bn/_welcome.yml b/src/i18n/bn/_welcome.yml
new file mode 100644
index 00000000..7375bc9c
--- /dev/null
+++ b/src/i18n/bn/_welcome.yml
@@ -0,0 +1,12 @@
+sections:
+ intro:
+ notices: {}
+ language: {}
+ theme: {}
+ style: {}
+ settings: {}
+ privacy:
+ links: {}
+ final: {}
+buttons: {}
+preview: {}
diff --git a/src/i18n/bn/main.yml b/src/i18n/bn/main.yml
new file mode 100644
index 00000000..25549f61
--- /dev/null
+++ b/src/i18n/bn/main.yml
@@ -0,0 +1,83 @@
+tabname: নতুন ট্যাব খুলুন
+widgets:
+ greeting:
+ morning: শুভ সকাল
+ afternoon: শুভ অপরাহ্ণ
+ evening: শুভ সন্ধ্যা
+ christmas: শুভ বড়দিন
+ newyear: শুভ নব বর্ষ
+ halloween: শুভ হ্যালোইন
+ birthday: শুভ জন্মদিন
+ background:
+ credit: ছবি তুলেছেন
+ unsplash: Unsplash - এ আছে
+ information: তথ্য
+ download: ডাউনলোড করুন
+ downloads: ডাউনলোডগুলি
+ views: দর্শক
+ likes: পছন্দসমূহ
+ location: অবস্থান
+ camera: ক্যামেরা
+ resolution: রেজোলিউশন
+ source: উৎস
+ category: শ্রেণী
+ exclude: আবার দেখাবেন না
+ exclude_confirm: >-
+ আপনি কি নিশ্চিত যে আপনি এই ছবিটি আবার দেখতে চান না?
+
+ দ্রষ্টব্য: আপনি যদি "{category}" ছবিগুলি পছন্দ না করেন, তাহলে আপনি
+ ব্যাকগ্রাউন্ড সোর্স সেটিংসে বিভাগটি অনির্বাচন করতে পারেন।
+ confirm: নিশ্চিত করুন
+ search: অনুসন্ধান করুন
+ quicklinks:
+ new: নতুন লিঙ্ক
+ name: নাম
+ icon: আইকন (ঐচ্ছিক)
+ add: যোগ করুন
+ name_error: অবশ্যই নাম দিতে হবে
+ url_error: অবশ্যই URL দিতে হবে
+ date:
+ week: সপ্তাহ
+ weather:
+ not_found: পাওয়া যায়নি
+ meters: "{amount} মিটার"
+ extra_information: অতিরিক্ত তথ্য
+ feels_like: মনে হচ্ছে {amount}
+ quote:
+ link_tooltip: উইকিপিডিয়াতে খুলুন
+ share: শেয়ার করুন
+ copy: কপি করুন
+ favourite: প্রিয়
+ unfavourite: অপছন্দ
+ navbar:
+ tooltips:
+ refresh: রিফ্রেশ
+ notes:
+ title: মন্তব্য
+ placeholder: এখানে লিখুন
+ todo:
+ title: সব
+ pin: পিন
+ add: যোগ করুন
+ no_todos: সব নেই
+ apps: {}
+modals:
+ main:
+ title: অপশন
+ loading: লোড হচ্ছে..।
+ file_upload_error: ফাইল ২ মেগাবাইট এর বেশি
+ navbar:
+ settings: সেটিংস
+ addons: অ্যাড-অন
+ marketplace: মার্কেটপ্লেস
+ error_boundary:
+ title: ত্রুটি
+ message: Mue এর এই উপাদানটি লোড করতে ব্যর্থ হয়েছে
+ report_error: ত্রুটি প্রতিবেদন পাঠানো
+ sent: প্রেরিত !
+ refresh: রিফ্রেশ
+ update:
+ offline: {}
+ error: {}
+ share: {}
+toasts: {}
diff --git a/src/i18n/de/_achievements.yml b/src/i18n/de/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/de/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/de/_addons.yml b/src/i18n/de/_addons.yml
new file mode 100644
index 00000000..9da6cc65
--- /dev/null
+++ b/src/i18n/de/_addons.yml
@@ -0,0 +1,29 @@
+added: Hinzugefügt
+check_updates: Nach Aktualisierungen suchen
+no_updates: Keine Updates verfügbar
+updates_available: Updates verfügbar {amount}
+empty:
+ title: Hier ist es leer
+ description: Gehen Sie zum Marktplatz, um einige hinzuzufügen
+sideload:
+ title: Hochladen
+ description: Installieren Sie ein Mue-Addon, das nicht auf dem Marktplatz
+ angeboten wird, von Ihrem Computer aus
+ failed: Ladevorgang für das Addon fehlgeschlagen
+ errors:
+ no_name: Kein Name angegeben
+ no_author: Kein Autor angegeben
+ no_type: Kein Typ angegeben
+ invalid_photos: Ungültiges Fotos Objekt
+ invalid_quotes: Ungültiges Zitat Objekt
+sort:
+ title: Sortieren
+ newest: Installiert (Neueste)
+ oldest: Installiert (Älteste)
+ a_z: Alphabetisch (A-Z)
+ z_a: Alphabetisch (Z-A)
+create:
+ title: Erstellen
+ moved_title: Add-on erstellen wurde verschoben!
+ moved_description: Mit dem 7.1-Update wurde die Erstellung von Addons auf die Web-UI verlagert
+ moved_button: Los geht's
diff --git a/src/i18n/de/_marketplace.yml b/src/i18n/de/_marketplace.yml
new file mode 100644
index 00000000..4ac83717
--- /dev/null
+++ b/src/i18n/de/_marketplace.yml
@@ -0,0 +1,37 @@
+by: von {author}
+all: Alle
+learn_more: Lerne mehr
+photo_packs: Fotopakete
+quote_packs: Zitat-Pakete
+preset_settings: Voreingestellte Einstellungen
+no_items: Keine Einträge in dieser Kategorie
+collection: Sammlung
+explore_collection: Sammlung erkunden
+add_all: Alle zu Mue hinzufügen
+collections: Sammlungen
+cant_find: Sie können nicht finden, was Sie suchen?
+knowledgebase_one: Besuchen Sie die
+knowledgebase_two: Wissensdatenbank
+knowledgebase_three: um Ihr eigenes zu erstellen.
+product:
+ overview: Übersicht
+ last_updated: Letzte Aktualisierung
+ description: Beschreibung
+ show_more: Mehr anzeigen
+ show_less: Weniger anzeigen
+ show_all: Alle anzeigen
+ showing: Anzeigen
+ no_images: Keine Bilder
+ no_quotes: Keine Zitate
+ part_of: Teil von
+ explore: Erkunden
+ buttons:
+ addtomue: Zu Mue hinzufügen
+ remove: Entfernen
+ back: Zurück
+ report: Melden
+ setting: Einstellung
+ value: Wert
+offline:
+ title: Sieht aus, als ob Sie offline sind
+ description: Bitte stellen Sie eine Verbindung zum Internet her
diff --git a/src/i18n/de/_settings.yml b/src/i18n/de/_settings.yml
new file mode 100644
index 00000000..dea24a4f
--- /dev/null
+++ b/src/i18n/de/_settings.yml
@@ -0,0 +1,332 @@
+enabled: Aktivieren
+open_knowledgebase: Offene Wissensdatenbank
+additional_settings: Zusätzliche Einstellungen
+reminder:
+ title: HINWEIS
+ message: Damit alle Änderungen vorgenommen werden können, muss die Seite
+ aktualisiert werden.
+sections:
+ header:
+ more_info: Mehr Information
+ report_issue: Fehler Melden
+ enabled: Wählen Sie, ob dieses Widget angezeigt werden soll oder nicht
+ size: Slider zur Steuerung der Größe des Widgets
+ time:
+ title: Uhrzeit
+ type: Typ
+ type_subtitle: Legen Sie fest, ob die Uhrzeit im digitalen oder analogen Format
+ oder als Prozentsatz der Tageszeit angezeigt werden soll.
+ digital:
+ subtitle: Ändern Sie das Aussehen der Digitaluhr
+ seconds: Sekunden
+ twentyfourhour: 24 Stunden
+ twelvehour: 12 Stunden
+ zero: Mit nullen füllen
+ analogue:
+ title: Analog
+ subtitle: Ändern Sie das Aussehen der Analoguhr
+ second_hand: Sekundenzeiger
+ minute_hand: Minutenzeiger
+ hour_hand: Stundenzeiger
+ hour_marks: Stunden-Markierungen
+ minute_marks: Minuten-Markierungen
+ round_clock: Gerundeter Hintergrund
+ percentage_complete: Denn Tages fotschritt in Prozent anzeigen
+ vertical_clock:
+ title: Vertikale Uhr
+ change_hour_colour: Textfarbe der Stunde ändern
+ change_minute_colour: Textfarbe der Minute ändern
+ date:
+ title: Datum
+ week_number: Kalenderwoche
+ day_of_week: Wochentag
+ datenth: Mit nullen füllen
+ type:
+ short: Kurz
+ long: Lang
+ subtitle: Anzeige des Datums in Lang- oder Kurzform
+ type_settings: Anzeigeeinstellungen und Format für den ausgewählten Datumstyp
+ short_date: Kurzes Datum
+ short_format: Kurzes Format
+ long_format: Langes Format
+ short_separator:
+ title: Kurzer Trenner
+ dots: Punkte
+ dash: Bindestrich
+ gaps: Lücke
+ slashes: Schrägstriche
+ quote:
+ title: Zitat
+ additional: Zusätzliche Einstellungen zum Anpassen des Zitate-Widgets
+ author_link: Autor Link
+ custom: Benutzerdefiniertes Zitat
+ custom_subtitle: Legen Sie Ihre eigenen Zitate fest
+ no_quotes: Keine Zitate
+ custom_author: Benutzerdefinierter Autor
+ author_img: Bild des Autors anzeigen
+ add: Zitat hinzufügen
+ source_subtitle: Wählen Sie aus, woher die Zitate kommen sollen
+ buttons:
+ title: Schaltflächen
+ subtitle: Wählen Sie, welche Schaltflächen im Zitat angezeigt werden sollen
+ copy: Kopieren
+ tweet: Twitter
+ favourite: Favorit
+ greeting:
+ title: Begrüßung
+ events: Veranstaltungen
+ default: Standard-Begrüßungsnachricht
+ name: Name zur Begrüßung
+ birthday: Geburtstag
+ birthday_subtitle: Zeigen Sie eine Geburtstagsnachricht an, wenn Sie Geburtstag haben
+ birthday_age: Alter
+ birthday_date: Datum
+ additional: Einstellungen für die Begrüßungsanzeige
+ background:
+ title: Hintergrund
+ transition: Weicher übergang
+ photo_information: Foto-Informationen anzeigen
+ show_map: Standortkarte auf dem Foto anzeigen, falls verfügbar
+ categories: Kategorien
+ buttons:
+ title: Schaltflächen
+ view: Vollbild
+ favourite: Favorit
+ effects:
+ title: Effekte
+ subtitle: Effekte zu den Hintergrundbildern hinzufügen
+ blur: Unschärfe anpassen
+ brightness: Helligkeit anpassen
+ filters:
+ title: Hintergrundfilter
+ amount: Filtermenge
+ grayscale: Graustufen
+ invert: Invertieren
+ saturate: Sättigen
+ contrast: Kontrast
+ type:
+ custom_image: Benutzerdefiniertes Bild
+ custom_colour: Benutzerdefinierte Farbe/Farbverlauf
+ random_colour: Zufällige Farben
+ random_gradient: Zufälliger Verlauf
+ unsplash: {}
+ source:
+ title: Quelle
+ subtitle: Wählen Sie aus, woher die Hintergrundbilder kommen sollen
+ api: Hintergrund API
+ custom_background: Benutzerdefinierter Hintergrund
+ custom_colour: Benutzerdefinierter Hintergrundfarbe
+ upload: Hochladen
+ add_colour: Farbe hinzufügen
+ add_background: Hintergrund hinzufügen
+ drop_to_upload: Zum Hochladen ablegen
+ formats: "Verfügbare Formate: {list}"
+ select: Auswählen
+ add_url: URL hinzufügen
+ disabled: Deaktiviert
+ loop_video: Video schleife
+ mute_video: Video stumm
+ quality:
+ title: Qualität
+ high: Hohe Qualität
+ normal: Normale Qualität
+ datasaver: Datensparer
+ custom_title: Eigene Bilder
+ custom_description: Wählen Sie Bilder von Ihrem lokalen Computer
+ remove: Bild entfernen
+ display: Anzeige
+ display_subtitle: Ändern Sie, wie Hintergrund- und Fotodaten geladen werden
+ api: API Einstellung
+ api_subtitle: Optionen für den Abruf eines Bildes von einem externen Anbieter (API)
+ search:
+ title: Suche
+ additional: Zusätzliche Optionen für die Anzeige und Funktionalität des Such-Widgets
+ search_engine: Suchmaschine
+ search_engine_subtitle: Wählen Sie die zu verwendende Suchmaschine in der Suchleiste
+ custom: Abfrage-URL
+ autocomplete: Autovervollständigen
+ autocomplete_provider: Anbieter von Autovervollständigung
+ autocomplete_provider_subtitle: Suchmaschine für die automatische Vervollständigung der Dropdown-Ergebnisse
+ voice_search: Sprachsuche
+ dropdown: Auswahlmenü Suche
+ focus: Fokus auf geöffneten Tab
+ weather:
+ title: Wetter
+ location: Standort
+ temp_format:
+ title: Temperatur Format
+ extra_info:
+ title: Zusätzliche informationen
+ show_location: Standort anzeigen
+ show_description: Beschreibung anzeigen
+ weather_description: Wetterbeschreibung
+ cloudiness: Bewölkungsgrad
+ humidity: Luftfeuchtigkeit
+ visibility: Sichtbarkeit
+ wind_speed: Windgeschwindigkeit
+ wind_direction: Windrichtung
+ min_temp: Mindesttemperatur
+ max_temp: Höchsttemperatur
+ atmospheric_pressure: Atmosphärischer Druck
+ options:
+ basic: Allgemein
+ expanded: Erweitert
+ custom: Benutzerdefiniert
+ custom_settings: Benutzerdefinierte Einstellungen
+ quicklinks:
+ title: Schnellzugriff
+ additional: Zusätzliche Einstellungen für die Anzeige von Schnellzugriffen und
+ Funktionen
+ open_new: In neuen Tab öffnen
+ tooltip: Kurzinfo
+ text_only: Nur Text anzeigen
+ add_link: Link einfügen
+ no_quicklinks: Keine Schnellzugriffe
+ edit: Bearbeiten
+ style: Stil
+ options:
+ text_only: Nur Text
+ styling: Schnellzugriff Stile
+ styling_description: Aussehen der Schnellzugriffe anpassen
+ message:
+ title: Mitteilung
+ add: Mitteilung hinzufügen
+ messages: Mitteilungen
+ no_messages: Keine Mitteilungen
+ add_some: Fügen Sie ruhig etwas hinzu.
+ content: Mitteilungs Inhalt
+ appearance:
+ title: Erscheinungsbild
+ style:
+ title: Widget Stil
+ description: "Wählen Sie zwischen zwei Stilen: Dem alten (aktiviert für Benutzer
+ vor Version 7.0) und dem modernen Stil."
+ legacy: Legendär
+ new: Modern
+ theme:
+ title: Design
+ description: Ändern Sie das Thema der Mue-Widgets und -Modale
+ light: Hell
+ dark: Dunkel
+ navbar:
+ title: Navigationsleiste
+ notes: Notizen
+ refresh: Aktualisieren
+ refresh_subtitle: Wählen Sie aus, was aktualisiert werden soll, wenn Sie auf die
+ Schaltfläche "Aktualisieren" klicken
+ hover: Nur beim Hovern anzeigen
+ additional: Ändern Sie den Stil der Navigationsleiste und der gewünschten
+ Schaltflächen
+ refresh_options:
+ none: Keine
+ page: Seite
+ font:
+ title: Schriftart
+ custom: Eigene Schriftart
+ google: Importieren von Google Fonts
+ weight:
+ title: Schriftgröße
+ thin: Dünn
+ extra_light: Extra hell
+ light: Hell
+ medium: Mittel
+ style:
+ title: Schriftart
+ accessibility:
+ title: Barrierefreiheit
+ description: Einstellungen zur Barrierefreiheit für Mue
+ animations: Animationen
+ text_shadow:
+ title: Textschatten des Widgets
+ new: Neu
+ old: Alt
+ none: Keinen
+ widget_zoom: Widget größe
+ toast_duration: Toast Dauer
+ milliseconds: ms
+ order:
+ title: Widget Sortieren
+ advanced:
+ title: Erweitert
+ offline_mode: Offline Modus
+ offline_subtitle: Wenn diese Option aktiviert ist, werden alle Anfragen an
+ Online-Dienste deaktiviert.
+ data: Daten
+ data_subtitle: Wählen Sie, ob Sie Ihre Mue-Einstellungen auf Ihren Computer
+ exportieren, eine vorhandene Einstellungsdatei importieren oder Ihre
+ Einstellungen auf die Standardwerte zurücksetzen möchten
+ reset_modal:
+ title: ACHTUNG
+ question: Möchten Sie Mue zurücksetzen?
+ information: Dadurch werden alle Daten gelöscht. Wenn Sie Ihre Daten und
+ Einstellungen behalten möchten, exportieren Sie sie bitte zuerst.
+ cancel: Abbrechen
+ customisation: Anpassung
+ custom_css: Benutzerdefiniertes CSS
+ custom_css_subtitle: Passen Sie das Styling von Mue mit Cascading Style Sheets
+ (CSS) an Ihre Bedürfnisse an.
+ custom_js: Benutzerdefiniertes JS
+ tab_name: Tab Name
+ tab_name_subtitle: Ändern Sie den Namen der Tabs, die in Ihrem Browser angezeigt werden
+ timezone:
+ title: Zeitzone
+ subtitle: Wählen Sie eine Zeitzone aus der Liste anstelle der automatischen
+ Vorgabe Ihres Computers
+ automatic: Automatisch
+ experimental_warning: Bitte beachten Sie, dass das Mue Team keinen Support
+ leisten kann, wenn Sie den experimentellen Modus aktiviert haben. Bitte
+ deaktivieren Sie ihn zuerst und schauen Sie, ob das Problem weiterhin
+ auftritt, bevor Sie den Support kontaktieren.
+ preview_data_disabled: {}
+ stats:
+ title: Statistiken
+ sections:
+ tabs_opened: Geöffnete Tabs
+ backgrounds_favourited: Bevorzugte Hintergründe
+ backgrounds_downloaded: Hintergründe heruntergeladen
+ quotes_favourited: Bevorzugte Zitate
+ quicklinks_added: Quicklinks hinzugefügt
+ settings_changed: Einstellungen geändert
+ addons_installed: Installierte Add-ons
+ usage: Nutzungsstatistiken
+ achievements: Errungenschaften
+ unlocked: "{count} Freigeschaltet"
+ clear_modal: {}
+ experimental:
+ title: Experimentell
+ warning: Diese Einstellungen sind nicht vollständig getestet/implementiert und
+ funktionieren möglicherweise nicht korrekt!
+ developer: Entwickler
+ language:
+ title: Sprache
+ quote: Zitat-Sprache
+ changelog:
+ title: Änderungen
+ by: Von {author}
+ about:
+ title: Über
+ version:
+ checking_update: Auf Update prüfen
+ update_available: Update verfügbar
+ no_update: Kein Update verfügbar
+ offline_mode: Im Offline Modus kann nicht nach Updates gesucht werden
+ error:
+ title: Update-Informationen konnten nicht abgerufen werden
+ description: Es ist ein Fehler aufgetreten
+ contact_us: Kontaktieren Sie uns
+ support_mue: Mue unterstützen
+ support_subtitle: Da Mue völlig kostenlos ist, sind wir auf Spenden angewiesen,
+ um die Serverkosten zu decken und die Entwicklung zu finanzieren.
+ support_donate: Spenden
+ form_button: Formular
+ resources_used:
+ title: Verwendete Ressourcen
+ bg_images: Offline Hintergrundbilder
+ contributors: Mitwirkende
+ supporters: Unterstützer
+ no_supporters: Derzeit gibt es keine Mue-Unterstützer
+ photographers: Fotografen
+buttons:
+ reset: Zurücksetzen
+ import: Importieren
+ export: Exportieren
diff --git a/src/i18n/de/_welcome.yml b/src/i18n/de/_welcome.yml
new file mode 100644
index 00000000..ea4897c7
--- /dev/null
+++ b/src/i18n/de/_welcome.yml
@@ -0,0 +1,65 @@
+sections:
+ intro:
+ title: Willkommen bei Mue Tab
+ description: Vielen Dank für die Installation, wir wünschen Ihnen viel Spaß mit
+ unserer Erweiterung.
+ notices:
+ discord_title: Unserem Discord beitreten
+ discord_description: Sprechen Sie mit der Mue-Community und den Entwicklern
+ discord_join: Beitreten
+ github_title: Auf GitHub mitwirken
+ github_description: Fehler melden, Funktionen hinzufügen oder spenden
+ github_open: Öffnen
+ language:
+ title: Wählen Sie Ihre Sprache
+ description: Mue kann in den unten aufgeführten Sprachen angezeigt werden. Sie
+ können auch neue Übersetzungen auf unserer Website hinzufügen
+ theme:
+ title: Wählen Sie Ihr Erscheinungsbild
+ description: Mue ist sowohl mit einem hellen als auch mit einem dunklen
+ Erscheinungsbild erhältlich, das je nach dem Erscheinungsbild Ihres
+ Systems automatisch eingestellt werden kann.
+ tip: Bei der Einstellung Automatisch wird das Design auf Ihrem System verwendet.
+ Diese Einstellung wirkt sich auf die Modalitäten und einige der Widgets
+ aus, die auf dem Bildschirm angezeigt werden, z. B. Wetter und Notizen.
+ style:
+ title: Wählen Sie einen Stil aus
+ description: Mue bietet derzeit die Wahl zwischen dem alten Design und dem
+ neuen, modernen Design.
+ settings:
+ title: Einstellungen importieren
+ description: Installieren Sie Mue auf einem neuen Gerät? So können Sie Ihre
+ alten Einstellungen importieren!
+ tip: Sie können Ihre alten Einstellungen exportieren, indem Sie in Ihrem alten
+ Mue-Einstellungen zur Registerkarte Erweitert navigieren. Klicken Sie dann
+ auf die Schaltfläche Exportieren, um die JSON-Datei herunterzuladen. Sie
+ können diese Datei hier hochladen, um Ihre Einstellungen und Präferenzen
+ von Ihrer vorherigen Mue-Installation zu übernehmen.
+ privacy:
+ title: Datenschutz Optionen
+ description: Aktivieren Sie die Einstellungen, um Ihre Privatsphäre mit Mue
+ weiter zu schützen.
+ offline_mode_description: Wenn Sie den Offline-Modus aktivieren, werden alle
+ Anfragen an jeden Dienst deaktiviert. Dies hat zur Folge, dass
+ Online-Hintergründe, Online-Zitate, Marktplatz, Wetter, Quicklinks,
+ Änderungshinweise und einige Informationen über die Registerkarte
+ deaktiviert werden.
+ links:
+ privacy_policy: Datenschutzerklärung
+ source_code: Quellcode
+ final:
+ title: Letzter Abschnitt
+ description: Ihr Mue Tab Erlebnis kann beginnen.
+ changes: Änderungen
+ changes_description: Um die Einstellungen später zu ändern, klicken Sie auf das
+ Einstellungssymbol in der oberen rechten Ecke Ihrer Registerkarte.
+ imported: Importiert {amount} Einstellung
+buttons:
+ next: Weiter
+ preview: Vorschau
+ previous: Zurück
+ close: Schließen
+preview:
+ description: Sie befinden sich derzeit im Vorschaumodus. Die Einstellungen
+ werden beim Schließen dieser Registerkarte zurückgesetzt.
+ continue: Einrichtung fortführen
diff --git a/src/i18n/de/main.yml b/src/i18n/de/main.yml
new file mode 100644
index 00000000..03f2fd04
--- /dev/null
+++ b/src/i18n/de/main.yml
@@ -0,0 +1,88 @@
+tabname: Neuer Tab
+widgets:
+ greeting:
+ morning: Guten Morgen
+ afternoon: Guten Tag
+ evening: Guten Abend
+ christmas: Fröhliche Weihnachten
+ newyear: Frohes neues Jahr
+ birthday: Glückwunsch zum Geburtstag
+ background:
+ credit: Foto von
+ unsplash: unsplash.com
+ information: Informationen
+ views: Ansichten
+ location: Standort
+ camera: Kamera
+ resolution: Auflösung
+ source: Quelle
+ category: Kategorie
+ exclude: Nicht mehr anzeigen
+ exclude_confirm: >-
+ Sind Sie sicher, dass Sie dieses Bild nicht mehr sehen wollen?
+
+ Hinweis: Wenn Sie "{category}"-Bilder nicht mögen, können Sie die
+ Kategorie in den Einstellungen für die Hintergrundquelle abwählen.
+ confirm: Bestätigen
+ search: Suche
+ quicklinks:
+ new: Neuer Link
+ add: Hinzufügen
+ name_error: Muss einen Namen angeben
+ url_error: Muss eine URL angeben
+ date:
+ week: Kalenderwoche
+ weather:
+ not_found: Nicht gefunden
+ meters: "{amount} Meter"
+ feels_like: Bei gefühlten {amount}
+ quote:
+ share: Teilen
+ copy: Kopieren
+ favourite: Favorit
+ navbar:
+ tooltips:
+ refresh: Neuladen
+ notes:
+ title: Notizen
+ placeholder: Hier eingeben
+ todo:
+ pin: Pinn
+ add: Hinzufügen
+ no_todos: Keine Todos
+ apps: {}
+modals:
+ main:
+ title: Einstellungen
+ loading: Läd...
+ file_upload_error: Datei ist größer als 2MB
+ navbar:
+ settings: Einstellungen
+ addons: Meine Addons
+ marketplace: Marktplatz
+ error_boundary:
+ title: Fehler
+ message: Diese Komponente von Mue konnte nicht geladen werden
+ report_error: Fehlerbericht senden
+ sent: Gesendet!
+ refresh: Neuladen
+ update:
+ offline:
+ description: Update-Protokolle können im Offline-Modus nicht abgerufen werden
+ error:
+ title: Fehler
+ description: Konnte keine Verbindung zum Server herstellen
+ share:
+ copy_link: Link kopieren
+ email: E-Mail
+toasts:
+ quote: Kopierte zitate
+ notes: Kopierte notizen
+ reset: Erfolgreich zurücksetzen
+ installed: Erfolgreich installiert
+ uninstalled: Erfolgreich entfernt
+ updated: Erfolgreich aktualisiert
+ error: Etwas ist schief gelaufen
+ imported: Erfolgreich importiert
+ no_storage: Nicht genügend Speicherplatz
+ link_copied: Link kopiert
diff --git a/src/i18n/en-GB/_achievements.yml b/src/i18n/en-GB/_achievements.yml
index 5276e5e8..6bbd6baf 100644
--- a/src/i18n/en-GB/_achievements.yml
+++ b/src/i18n/en-GB/_achievements.yml
@@ -1,7 +1,7 @@
-727:
+"727":
name: When You See It
description: Opened 727 tabs
-1337:
+"1337":
name: MU3T4B
description: Opened 1337 tabs
10tabs:
diff --git a/src/i18n/en-GB/_addons.yml b/src/i18n/en-GB/_addons.yml
index 0d8cbb70..9e6e1c72 100644
--- a/src/i18n/en-GB/_addons.yml
+++ b/src/i18n/en-GB/_addons.yml
@@ -24,7 +24,5 @@ sort:
create:
title: Create
moved_title: Create add-on has moved!
- moved_description: >-
- Following the 7.1 update, the creation of addons has now moved to the
- web UI
+ moved_description: Following the 7.1 update, the creation of addons has now moved to the web UI
moved_button: Coming Soon....
diff --git a/src/i18n/en-GB/_settings.yml b/src/i18n/en-GB/_settings.yml
index 8c501a5d..25a90f4b 100644
--- a/src/i18n/en-GB/_settings.yml
+++ b/src/i18n/en-GB/_settings.yml
@@ -3,9 +3,7 @@ open_knowledgebase: Open Knowledgebase
additional_settings: Additional Settings
reminder:
title: NOTICE
- message: >-
- In order for all of the changes to take place, the page must be
- refreshed.
+ message: In order for all of the changes to take place, the page must be refreshed.
sections:
header:
more_info: More info
@@ -16,8 +14,7 @@ sections:
title: Time
format: Format
type: Type
- type_subtitle: >-
- Choose whether to display the time in digital format, analogue
+ type_subtitle: Choose whether to display the time in digital format, analogue
format, or a percentage completion of the day
digital:
title: Digital
@@ -144,7 +141,7 @@ sections:
add_colour: Add colour
add_background: Add background
drop_to_upload: Drop to upload
- formats: 'Available formats: {list}'
+ formats: "Available formats: {list}"
select: Or Select
add_url: Add URL
disabled: Disabled
@@ -232,8 +229,7 @@ sections:
title: Appearance
style:
title: Widget Style
- description: >-
- Choose between the two styles, legacy (enabled for pre 7.0 users)
+ description: Choose between the two styles, legacy (enabled for pre 7.0 users)
and our slick modern styling.
legacy: Legacy
new: New
@@ -294,40 +290,33 @@ sections:
offline_mode: Offline mode
offline_subtitle: When enabled, all requests to online services will be disabled.
data: Data
- data_description: >-
- Choose whether to export your Mue settings to your computer, import
- an existing settings file, or reset your settings to their default
+ data_description: Choose whether to export your Mue settings to your computer,
+ import an existing settings file, or reset your settings to their default
values
data_subtitle: Manage your data on Mue.
reset_modal:
title: WARNING
question: Do you want to reset Mue?
- information: >-
- This will delete all data. If you wish to keep your data and
+ information: This will delete all data. If you wish to keep your data and
preferences, please export them first.
cancel: Cancel
customisation: Customisation
custom_css: Custom CSS
- custom_css_subtitle: >-
- Make Mue's styling customised to you with Cascading Style Sheets
- (CSS).
+ custom_css_subtitle: Make Mue's styling customised to you with Cascading Style Sheets (CSS).
custom_js: Custom JS
tab_name: Tab name
tab_name_subtitle: Change the name of the tab that appears in your browser
timezone:
title: Time Zone
- subtitle: >-
- Choose a timezone from the list instead of the automatic default
- from your computer
+ subtitle: Choose a timezone from the list instead of the automatic default from
+ your computer
automatic: Automatic
- experimental_warning: >-
- Please note that the Mue team cannot provide support if you have
- experimental mode on. Please disable it first and see if the issue
- continues to occur before contacting support.
+ experimental_warning: Please note that the Mue team cannot provide support if
+ you have experimental mode on. Please disable it first and see if the
+ issue continues to occur before contacting support.
preview_data_disabled:
title: Data Settings Disabled
- description: >-
- Data settings are disabled in preview mode. Please exit preview
+ description: Data settings are disabled in preview mode. Please exit preview
mode to use this feature.
stats:
title: Stats
@@ -341,17 +330,16 @@ sections:
addons_installed: Add-ons installed
usage: Usage Stats
achievements: Achievements
- achievement_unlocked: 'Achievement Unlocked: {name}'
- unlocked: '{count} Unlocked'
+ achievement_unlocked: "Achievement Unlocked: {name}"
+ unlocked: "{count} Unlocked"
locked: Locked
clear_modal:
question: Do you want to clear your stats?
information: This will clear all achievements and usage statistics.
experimental:
title: Experimental
- warning: >-
- These settings have not been fully tested/implemented and may not
- work correctly!
+ warning: These settings have not been fully tested/implemented and may not work
+ correctly!
developer: Developer
language:
title: Language
@@ -372,9 +360,8 @@ sections:
description: An error occured
contact_us: Contact Us
support_mue: Support Mue
- support_subtitle: >-
- As Mue is entirely free, we rely on donations to cover the server
- bills and fund development
+ support_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:
diff --git a/src/i18n/en-GB/_welcome.yml b/src/i18n/en-GB/_welcome.yml
index a1c75501..1453c2c3 100644
--- a/src/i18n/en-GB/_welcome.yml
+++ b/src/i18n/en-GB/_welcome.yml
@@ -2,8 +2,7 @@ tip: Quick Tip
sections:
intro:
title: Welcome to Mue Tab
- description: >-
- Thank you for installing Mue, we hope you enjoy your time with our
+ description: Thank you for installing Mue, we hope you enjoy your time with our
extension.
notices:
discord_title: Join our Discord
@@ -14,42 +13,35 @@ sections:
github_open: Open
language:
title: Choose your language
- description: >-
- Mue can be displayed the languages listed below. You can also add new
- translations on our
+ description: Mue can be displayed the languages listed below. You can also add
+ new translations on our
theme:
title: Select a theme
- description: >-
- Mue is available in both light and dark theme, or this can be
+ description: Mue is available in both light and dark theme, or this can be
automatically set depending on your system theme.
- tip: >-
- Using the Auto settings will use the theme on your computer. This
- setting will impact the modals and some of the widgets displayed on
- the screen, such as weather and notes.
+ tip: Using the Auto settings will use the theme on your computer. This setting
+ will impact the modals and some of the widgets displayed on the screen,
+ such as weather and notes.
style:
title: Choose a style
- description: >-
- Mue currently offers the choice between the legacy styling and the
+ description: Mue currently offers the choice between the legacy styling and the
newly released modern styling.
legacy: Legacy
modern: Modern
settings:
title: Import Settings
description: Installing Mue on a new device? Feel free to import your old settings!
- tip: >-
- You can export your old settings by navigating to the Advanced tab in
- your old Mue setup. Then you need to click the export button which
- will download the JSON file. You can upload this file here to carry
- across your settings and preferences from your previous Mue
- installation.
+ tip: You can export your old settings by navigating to the Advanced tab in your
+ old Mue setup. Then you need to click the export button which will
+ download the JSON file. You can upload this file here to carry across your
+ settings and preferences from your previous Mue installation.
privacy:
title: Privacy Options
description: Enable settings to further protect your privacy with Mue.
- offline_mode_description: >-
- Enabling offline mode will disable all requests to any service. This
- will result in online backgrounds, online quotes, marketplace,
- weather, quick links, change log and some about tab information to be
- disabled.
+ offline_mode_description: Enabling offline mode will disable all requests to any
+ service. This will result in online backgrounds, online quotes,
+ marketplace, weather, quick links, change log and some about tab
+ information to be disabled.
links:
title: Links
privacy_policy: Privacy Policy
@@ -58,9 +50,8 @@ sections:
title: Final step
description: Your Mue Tab experience is about to begin.
changes: Changes
- changes_description: >-
- To change settings later click on the settings icon in the top right
- corner of your tab.
+ changes_description: To change settings later click on the settings icon in the
+ top right corner of your tab.
imported: Imported {amount} settings
buttons:
next: Next
@@ -69,7 +60,6 @@ buttons:
close: Close
finish: Finish
preview:
- description: >-
- You are currently in preview mode. Settings will be reset on closing
- this tab.
+ description: You are currently in preview mode. Settings will be reset on
+ closing this tab.
continue: Continue setup
diff --git a/src/i18n/en-GB/main.yml b/src/i18n/en-GB/main.yml
index c6a77644..bf66bbd2 100644
--- a/src/i18n/en-GB/main.yml
+++ b/src/i18n/en-GB/main.yml
@@ -42,7 +42,7 @@ widgets:
week: Week
weather:
not_found: Not Found
- meters: '{amount} metres'
+ meters: "{amount} metres"
extra_information: Extra Information
feels_like: Feels like {amount}
quote:
@@ -72,8 +72,8 @@ modals:
file_upload_error: File is over 2MB
navbar:
settings: Settings
- addons: Library
- marketplace: Discover
+ addons: Add-ons
+ marketplace: Marketplace
error_boundary:
title: Error
message: Failed to load this component of Mue
diff --git a/src/i18n/en-US/_achievements.yml b/src/i18n/en-US/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/en-US/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/en-US/_addons.yml b/src/i18n/en-US/_addons.yml
new file mode 100644
index 00000000..d1ea50b3
--- /dev/null
+++ b/src/i18n/en-US/_addons.yml
@@ -0,0 +1,6 @@
+empty: {}
+sideload:
+ errors: {}
+sort: {}
+create:
+ moved_button: Get Started
diff --git a/src/i18n/en-US/_marketplace.yml b/src/i18n/en-US/_marketplace.yml
new file mode 100644
index 00000000..75625d73
--- /dev/null
+++ b/src/i18n/en-US/_marketplace.yml
@@ -0,0 +1,3 @@
+product:
+ buttons: {}
+offline: {}
diff --git a/src/i18n/en-US/_settings.yml b/src/i18n/en-US/_settings.yml
new file mode 100644
index 00000000..0bae3f4b
--- /dev/null
+++ b/src/i18n/en-US/_settings.yml
@@ -0,0 +1,69 @@
+reminder: {}
+sections:
+ header: {}
+ time:
+ digital: {}
+ analogue:
+ title: Analog
+ vertical_clock:
+ change_hour_colour: Change hour text color
+ change_minute_colour: Change minute text color
+ date:
+ type: {}
+ short_separator: {}
+ quote:
+ buttons:
+ favourite: Favorite
+ greeting: {}
+ background:
+ buttons:
+ view: Maximize
+ effects:
+ filters: {}
+ type:
+ custom_colour: Custom color/gradient
+ unsplash: {}
+ source:
+ custom_colour: Custom background color
+ add_colour: Add color
+ quality: {}
+ search:
+ voice_search: Voice Search
+ weather:
+ temp_format: {}
+ extra_info: {}
+ options: {}
+ quicklinks:
+ options: {}
+ message: {}
+ appearance:
+ style: {}
+ theme: {}
+ navbar:
+ refresh_options: {}
+ font:
+ weight: {}
+ style: {}
+ accessibility:
+ text_shadow: {}
+ widget_zoom: Widget zoom
+ order: {}
+ advanced:
+ 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: {}
+ customisation: Customization
+ timezone: {}
+ preview_data_disabled: {}
+ stats:
+ sections: {}
+ clear_modal: {}
+ experimental: {}
+ language: {}
+ changelog: {}
+ about:
+ version:
+ error: {}
+ resources_used: {}
+buttons: {}
diff --git a/src/i18n/en-US/_welcome.yml b/src/i18n/en-US/_welcome.yml
new file mode 100644
index 00000000..7375bc9c
--- /dev/null
+++ b/src/i18n/en-US/_welcome.yml
@@ -0,0 +1,12 @@
+sections:
+ intro:
+ notices: {}
+ language: {}
+ theme: {}
+ style: {}
+ settings: {}
+ privacy:
+ links: {}
+ final: {}
+buttons: {}
+preview: {}
diff --git a/src/i18n/en-US/main.yml b/src/i18n/en-US/main.yml
new file mode 100644
index 00000000..eb1fc3b1
--- /dev/null
+++ b/src/i18n/en-US/main.yml
@@ -0,0 +1,25 @@
+widgets:
+ greeting: {}
+ background: {}
+ quicklinks: {}
+ date: {}
+ weather:
+ meters: "{amount} meters"
+ quote:
+ favourite: Favorite
+ unfavourite: Unfavorite
+ navbar:
+ tooltips: {}
+ notes: {}
+ todo: {}
+ apps: {}
+modals:
+ main:
+ navbar:
+ addons: My Add-ons
+ error_boundary: {}
+ update:
+ offline: {}
+ error: {}
+ share: {}
+toasts: {}
diff --git a/src/i18n/es-419/_achievements.yml b/src/i18n/es-419/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/es-419/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/es-419/_addons.yml b/src/i18n/es-419/_addons.yml
new file mode 100644
index 00000000..bbcfe580
--- /dev/null
+++ b/src/i18n/es-419/_addons.yml
@@ -0,0 +1,25 @@
+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
+ 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:
+ title: Crear
+ moved_button: Get Started
diff --git a/src/i18n/es-419/_marketplace.yml b/src/i18n/es-419/_marketplace.yml
new file mode 100644
index 00000000..1a7cf8c1
--- /dev/null
+++ b/src/i18n/es-419/_marketplace.yml
@@ -0,0 +1,16 @@
+photo_packs: Paquetes de fotos
+quote_packs: Paquetes de citas
+preset_settings: Ajustes preestablecidos
+no_items: No hay artículos en esta categoría
+product:
+ overview: Vista general
+ information: Información
+ last_updated: Última actualización
+ version: Versión
+ buttons:
+ addtomue: Añadir a Mue
+ remove: Desinstalar
+ update_addon: Actualizar complemento
+offline:
+ title: Parece que estás desconectado
+ description: Por favor conéctate a Internet
diff --git a/src/i18n/es-419/_settings.yml b/src/i18n/es-419/_settings.yml
new file mode 100644
index 00000000..52eac218
--- /dev/null
+++ b/src/i18n/es-419/_settings.yml
@@ -0,0 +1,253 @@
+enabled: Activado
+reminder:
+ title: AVISO
+ message: Para que todos los cambios surjan efecto, recarga la pestaña.
+sections:
+ header: {}
+ time:
+ title: Tiempo
+ format: Formato
+ type: Tipo
+ digital:
+ seconds: Segundos
+ twentyfourhour: 24 Horas
+ twelvehour: 12 Horas
+ zero: Sin ceros
+ analogue:
+ title: Analógico
+ 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
+ percentage_complete: Porcentaje completado
+ vertical_clock: {}
+ 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
+ short_date: Fecha corta
+ short_format: Formato corto
+ short_separator:
+ title: Separador corto
+ dots: Puntos
+ dash: Guiones
+ gaps: Guiones con espacios
+ slashes: Barras
+ quote:
+ title: Citación
+ author_link: Enlace del autor
+ custom: Citación personalizada
+ custom_author: Autor personalizado
+ add: Añadir cita
+ buttons:
+ title: Botones
+ 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_age: Edad de cumpleaños
+ birthday_date: Fecha de cumpleaños
+ background:
+ title: Fondo
+ 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
+ buttons:
+ title: Botones
+ view: Ver
+ favourite: Favorito
+ download: Descargar
+ effects:
+ title: Efectos
+ blur: Ajustar difuminado
+ brightness: Ajustar brillo
+ filters:
+ title: Filtros del fondo
+ amount: Cantidad del filtro
+ grayscale: Escala de grises
+ invert: Invertir
+ saturate: Saturar
+ contrast: Contraste
+ type:
+ title: Tipo
+ custom_image: Imagen personalizada
+ custom_colour: Color/degradado personalizado
+ random_colour: Color aleatorio
+ random_gradient: Degradado aleatorio
+ unsplash: {}
+ source:
+ title: Fuente
+ 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
+ add_url: Añadir URL
+ disabled: Desactivado
+ loop_video: Vídeo en bucle
+ mute_video: Silenciar video
+ quality:
+ title: Calidad
+ high: Calidad alta
+ normal: Calidad normal
+ datasaver: Ahorro de datos
+ search:
+ title: Búsqueda
+ search_engine: Motor de Búsqueda
+ custom: URL de búsqueda personalizada
+ autocomplete: Autocompletado
+ autocomplete_provider: Proveedor del autocompletado
+ voice_search: Búsqueda por voz
+ dropdown: Listado de búsqueda
+ weather:
+ title: Clima
+ location: Ubicación
+ temp_format:
+ title: Formato de la temperatura
+ 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: {}
+ quicklinks:
+ title: Enlaces rápidos
+ open_new: Abrir en una nueva pestaña
+ tooltip: Descripción emergente
+ text_only: Mostrar solo texto
+ options: {}
+ message:
+ title: Mensaje
+ add: Añadir mensaje
+ text: Texto
+ appearance:
+ title: Apariencia
+ style: {}
+ theme:
+ title: Tema
+ auto: Automática
+ light: Claro
+ dark: Oscuro
+ navbar:
+ title: Barra de búsqueda
+ notes: Notas
+ refresh: Botón de recargar
+ hover: Solo mostrar al pasar el cursor
+ refresh_options:
+ none: Ninguno
+ page: Página
+ font:
+ title: Fuente
+ custom: Fuente personalizada
+ google: Importar desde Google Fonts
+ weight:
+ title: Tipo de la fuente
+ thin: Delgado
+ extra_light: Extra fino
+ light: Fino
+ medium: Mediano
+ semi_bold: Semi negrita
+ bold: Negrita
+ extra_bold: Extra negrita
+ style:
+ title: Estilo de la fuente
+ italic: Cursiva
+ oblique: Oblicua
+ accessibility:
+ title: Accesibilidad
+ animations: Animaciones
+ text_shadow: {}
+ 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
+ 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_js: JS personalizado
+ tab_name: Nombre de la pestaña
+ timezone:
+ title: Zona horaria
+ 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.
+ preview_data_disabled: {}
+ stats:
+ title: Estadísticas
+ 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
+ clear_modal: {}
+ 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
+ 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
+ resources_used:
+ title: Recursos usados
+ bg_images: Fondos sin conexión
+ contributors: Contribuidores
+ no_supporters: Actualmente no hay partidarios de Mue
+ photographers: Fotógrafos
+buttons:
+ reset: Reiniciar
+ import: Importar
+ export: Exportar
diff --git a/src/i18n/es-419/_welcome.yml b/src/i18n/es-419/_welcome.yml
new file mode 100644
index 00000000..011c6abd
--- /dev/null
+++ b/src/i18n/es-419/_welcome.yml
@@ -0,0 +1,56 @@
+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: {}
+ 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: {}
+ 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.
+ 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
diff --git a/src/i18n/es-419/main.yml b/src/i18n/es-419/main.yml
new file mode 100644
index 00000000..c66f983b
--- /dev/null
+++ b/src/i18n/es-419/main.yml
@@ -0,0 +1,68 @@
+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
+ information: Información
+ download: Descargar
+ downloads: Descargas
+ views: Vistas
+ search: Buscar
+ quicklinks:
+ new: Nuevo enlace
+ name: Nombre
+ 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"
+ quote: {}
+ navbar:
+ tooltips:
+ refresh: Recargar
+ notes:
+ title: Notas
+ placeholder: Escribe aquí
+ todo: {}
+ apps: {}
+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:
+ message: No se ha podido cargar este componente de Mue
+ refresh: Recargar
+ update:
+ title: Actualizar
+ offline:
+ title: Sin conexión
+ description: No se pueden obtener actualizaciones en modo sin conexión
+ error:
+ description: No se pudo conectar con el servidor
+ share: {}
+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
diff --git a/src/i18n/es/_achievements.yml b/src/i18n/es/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/es/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/es/_addons.yml b/src/i18n/es/_addons.yml
new file mode 100644
index 00000000..4c5860c3
--- /dev/null
+++ b/src/i18n/es/_addons.yml
@@ -0,0 +1,29 @@
+added: Añadidos
+check_updates: Comprobar actualizaciones
+no_updates: No hay actualizaciones disponibles
+updates_available: Actualizaciones disponibles {amount}
+empty:
+ title: Vacío
+ description: Dirígete a la tienda para agregar algunos.
+sideload:
+ title: Cargar localmente
+ description: Instala un complemento Mue que no esté en la tienda de su ordenador
+ failed: Fallo en la carga lateral del complemento
+ errors:
+ no_name: No se ha indicado el nombre
+ no_author: No se ha indicado el autor
+ no_type: No se ha indicado el tipo
+ invalid_photos: Objeto de fotos inválido
+ invalid_quotes: Objeto de citas inválido
+sort:
+ title: Ordenar
+ newest: Instalado (Nuevos)
+ oldest: Instalado (Antiguos)
+ a_z: Alfabético (A-Z)
+ z_a: Alfabético (Z-A)
+create:
+ title: Crear
+ moved_title: ¡Crear complemento se ha movido!
+ moved_description: Tras la actualización 7.1, la creación de complementos se ha
+ trasladado a la interfaz web.
+ moved_button: Comenzar
diff --git a/src/i18n/es/_marketplace.yml b/src/i18n/es/_marketplace.yml
new file mode 100644
index 00000000..e729cf6f
--- /dev/null
+++ b/src/i18n/es/_marketplace.yml
@@ -0,0 +1,40 @@
+by: por {author}
+all: Todo
+learn_more: Más información
+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: Colección
+explore_collection: Explorar la colección
+add_all: Añadir todo a Mue
+collections: Colecciones
+cant_find: ¿No encuentra lo que busca?
+knowledgebase_one: Visite la
+knowledgebase_two: Base de conocimiento
+knowledgebase_three: para crear la suya propia.
+product:
+ overview: Vista general
+ information: Información
+ last_updated: Última actualización
+ description: Descripción
+ show_more: Mostrar más
+ show_less: Mostrar menos
+ show_all: Mostrar todo
+ showing: Mostrando
+ no_images: Sin imágenes
+ no_quotes: Sin citas
+ version: Versión
+ part_of: Parte de
+ explore: Explorar
+ buttons:
+ addtomue: Añadir a Mue
+ remove: Desinstalar
+ update_addon: Actualizar complemento
+ back: Atrás
+ report: Informe
+ setting: Ajustes
+ value: Valor
+offline:
+ title: Parece que estás desconectado
+ description: Por favor conéctate a Internet
diff --git a/src/i18n/es/_settings.yml b/src/i18n/es/_settings.yml
new file mode 100644
index 00000000..5d39873b
--- /dev/null
+++ b/src/i18n/es/_settings.yml
@@ -0,0 +1,341 @@
+enabled: Activado
+open_knowledgebase: Abrir la base de conocimiento
+additional_settings: Ajustes adicionales
+reminder:
+ title: AVISO
+ message: Para que se produzcan todos los cambios hay que recargar la página.
+sections:
+ header:
+ more_info: Más información
+ report_issue: Informar del problema
+ enabled: Elija si desea mostrar o no este widget
+ size: Control del deslizamiento para controlar el tamaño del widget
+ time:
+ title: Tiempo
+ format: Formato
+ type: Tipo
+ type_subtitle: Elija si desea mostrar la hora en formato digital, formato
+ analógico o un porcentaje de finalización del día
+ digital:
+ subtitle: Cambiar el aspecto del reloj digital
+ seconds: Segundos
+ twentyfourhour: 24 Horas
+ twelvehour: 12 Horas
+ zero: Sin ceros
+ analogue:
+ title: Analógico
+ subtitle: Cambiar el aspecto del reloj analógico
+ 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: Fondo redondeado
+ percentage_complete: Porcentaje completado
+ vertical_clock:
+ title: Reloj en vertical
+ change_hour_colour: Cambiar el color de las horas
+ change_minute_colour: Cambiar el color de los minutos
+ 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: Visualización de la fecha en formato largo o corto
+ type_settings: Ajustes de visualización y formato para el tipo de fecha seleccionado
+ short_date: Fecha corta
+ short_format: Formato corto
+ long_format: Formato largo
+ short_separator:
+ title: Separador corto
+ dots: Puntos
+ dash: Guiones
+ gaps: Guiones con espacios
+ slashes: Barras
+ quote:
+ title: Cita
+ additional: Otras configuraciones para personalizar el estilo del widget de cotización
+ author_link: Enlace del autor
+ custom: Cita personalizada
+ custom_subtitle: Establece tus propias cotizaciones personalizados
+ no_quotes: Sin comillas
+ author: Autor
+ custom_buttons: Botones
+ custom_author: Autor personalizado
+ author_img: Mostrar la imagen del autor
+ add: Añadir cita
+ source_subtitle: Elija de dónde obtener las cotizaciones
+ buttons:
+ title: Botones
+ subtitle: Elija qué botones mostrar en la cotización
+ 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: Mostrar un mensaje de Feliz Cumpleaños cuando sea su cumpleaños
+ birthday_age: Edad de cumpleaños
+ birthday_date: Fecha de cumpleaños
+ additional: Ajustes para la visualización del saludo
+ background:
+ title: Fondo
+ 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: Categorías
+ buttons:
+ title: Botones
+ view: Ver
+ favourite: Favorito
+ download: Descargar
+ effects:
+ title: Efectos
+ subtitle: Añade efectos a las imágenes de fondo
+ blur: Ajustar difuminado
+ brightness: Ajustar brillo
+ filters:
+ title: Filtros del fondo
+ amount: Cantidad del filtro
+ grayscale: Escala de grises
+ invert: Invertir
+ saturate: Saturar
+ contrast: Contraste
+ type:
+ title: Tipo
+ custom_image: Imagen personalizada
+ custom_colour: Color/degradado personalizado
+ random_colour: Color aleatorio
+ random_gradient: Degradado aleatorio
+ unsplash: {}
+ source:
+ title: Fuente
+ subtitle: Seleccione de dónde obtener las imágenes de fondo
+ 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: Soltar para subir
+ formats: "Formatos disponibles: {list}"
+ select: O seleccionar
+ add_url: Añadir URL
+ disabled: Desactivado
+ loop_video: Vídeo en bucle
+ mute_video: Silenciar video
+ quality:
+ title: Calidad
+ high: Calidad alta
+ normal: Calidad normal
+ datasaver: Ahorro de datos
+ custom_title: Imágenes personalizadas
+ custom_description: Selecciona imágenes de tu ordenador
+ remove: Eliminar imagen
+ display: Mostrar
+ display_subtitle: Cambiar cómo se carga la información de fondo y de la foto
+ api: Configuración de la API
+ api_subtitle: Opciones para obtener una imagen de un servicio externo (API)
+ search:
+ title: Búsqueda
+ additional: Opciones adicionales para la visualización y funcionalidad del
+ widget de búsqueda
+ search_engine: Motor de búsqueda
+ search_engine_subtitle: Elija el motor de búsqueda para usar en la barra de búsqueda
+ custom: URL de búsqueda personalizada
+ autocomplete: Autocompletado
+ autocomplete_provider: Proveedor del autocompletado
+ autocomplete_provider_subtitle: Motor de búsqueda para los resultados desplegables de autocompletar
+ voice_search: Búsqueda por voz
+ dropdown: Menú desplegable de búsqueda
+ focus: Centrarse en la pestaña abierta
+ weather:
+ title: Clima
+ location: Ubicación
+ widget_type: Tipo de widget
+ temp_format:
+ title: Formato de la temperatura
+ extra_info:
+ title: Información extra
+ show_location: Mostrar ubicación
+ show_description: Mostrar descripción
+ weather_description: Descripción del tiempo
+ 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: Básico
+ standard: Estándar
+ expanded: Ampliado
+ custom: Personalizado
+ custom_settings: Ajustes personalizados
+ quicklinks:
+ title: Enlaces rápidos
+ additional: Ajustes adicionales para la visualización de enlaces rápidos y funciones
+ open_new: Abrir en una nueva pestaña
+ tooltip: Descripción emergente
+ text_only: Mostrar solo texto
+ add_link: Añadir un enlace
+ no_quicklinks: Sin enlaces rápidos
+ edit: Editar
+ style: Estilo
+ options:
+ icon: Icono
+ text_only: Solo texto
+ styling: Estilo de los enlaces rápidos
+ styling_description: Personalizar el aspecto de los enlaces rápidos
+ message:
+ title: Mensaje
+ add: Añadir mensaje
+ messages: Mensajes
+ text: Texto
+ no_messages: Sin mensajes
+ add_some: Continúe y agregue un poco.
+ content: Contenido del mensaje
+ appearance:
+ title: Apariencia
+ style:
+ title: Estilo del widget
+ description: Elige entre dos estilos, el antiguo (habilitado para usuarios
+ anteriores a la versión 7.0) y nuestro elegante estilo moderno.
+ legacy: Legado
+ new: Nuevo
+ theme:
+ title: Tema
+ description: Cambiar el tema de los widgets y formas de Mue
+ light: Claro
+ dark: Oscuro
+ navbar:
+ title: Barra de búsqueda
+ notes: Notas
+ refresh: Botón de recargar
+ refresh_subtitle: Elija qué se actualiza al pulsar el botón de actualización
+ hover: Solo mostrar al pasar el cursor
+ additional: Modifique el estilo de la barra de navegación y los botones que
+ desea mostrar
+ refresh_options:
+ none: Ninguno
+ page: Página
+ font:
+ title: Fuente
+ description: Cambiar la tipografía utilizada en Mue
+ custom: Fuente personalizada
+ google: Importar desde Google Fonts
+ weight:
+ title: Tipo de la fuente
+ thin: Delgado
+ extra_light: Extra fino
+ light: Fino
+ medium: Mediano
+ semi_bold: Semi negrita
+ bold: Negrita
+ extra_bold: Extra negrita
+ style:
+ title: Estilo de la fuente
+ italic: Cursiva
+ oblique: Oblicua
+ accessibility:
+ title: Accesibilidad
+ description: Ajustes de accesibilidad para Mue
+ animations: Animaciones
+ text_shadow: {}
+ widget_zoom: Zoom del widget
+ toast_duration: Duración de la notificación
+ milliseconds: milisegundos
+ order:
+ title: Orden de widgets
+ advanced:
+ title: Avanzado
+ offline_mode: Modo sin conexión
+ offline_subtitle: Cuando esté activada, se desactivarán todas las solicitudes a
+ los servicios en línea.
+ data: Datos
+ data_subtitle: Elija si desea exportar la configuración de Mue a su ordenador,
+ importar un archivo de configuración existente o restablecer los valores
+ predeterminados
+ 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: Personaliza el estilo de Mue con hojas de estilo en cascada (CSS).
+ custom_js: JS personalizado
+ tab_name: Nombre de la pestaña
+ tab_name_subtitle: Cambiar el nombre de la pestaña que aparece en el navegador
+ timezone:
+ title: Zona horaria
+ subtitle: Elija una zona horaria de la lista en lugar de la predeterminada
+ automáticamente de su ordenador
+ automatic: Automático
+ experimental_warning: Por favor, ten en cuenta que el equipo de Mue no puede dar
+ soporte si tienes el modo experimental activado. Por favor, desactívalo
+ primero y comprueba si el problema sigue ocurriendo antes de contactar con
+ el equipo de soporte.
+ preview_data_disabled: {}
+ stats:
+ title: Estadísticas
+ sections:
+ tabs_opened: Pestañas abiertas
+ backgrounds_favourited: Fondos favoritos
+ backgrounds_downloaded: Fondos descargados
+ quotes_favourited: Citas favoritas
+ quicklinks_added: Enlaces rápidos añadidos
+ settings_changed: Ajustes cambiados
+ addons_installed: Complementos instalados
+ usage: Estadísticas de uso
+ achievements: Logros
+ unlocked: "{count} Desbloqueado"
+ clear_modal: {}
+ experimental:
+ warning: Estos ajustes no han sido totalmente probados/implementados y pueden no
+ funcionar correctamente.
+ developer: Desarrollador
+ language:
+ title: Idioma
+ quote: Idioma de las citas
+ changelog:
+ title: Registro de cambios
+ by: Por {author}
+ about:
+ title: Acerca de
+ version:
+ title: Versión
+ checking_update: Comprobando actualizaciones
+ update_available: Actualización disponible
+ no_update: Actualizaciones no disponibles
+ offline_mode: No se puede comprobar la actualización en modo sin conexión
+ error:
+ title: Fallo al obtener la información de la actualización
+ description: Ha ocurrido un error
+ contact_us: Contacto
+ support_mue: Apoya Mue
+ support_subtitle: Como Mue es totalmente gratuito, dependemos de las donaciones
+ para cubrir las facturas del servidor y financiar el desarrollo
+ support_donate: Donar
+ form_button: Formulario
+ resources_used:
+ title: Recursos usados
+ bg_images: Imágenes de fondo sin conexión
+ contributors: Contribuyentes
+ supporters: Partidarios
+ no_supporters: Actualmente no hay partidarios de Mue
+ photographers: Fotógrafos
+buttons:
+ reset: Reiniciar
+ import: Importar
+ export: Exportar
diff --git a/src/i18n/es/_welcome.yml b/src/i18n/es/_welcome.yml
new file mode 100644
index 00000000..18e57333
--- /dev/null
+++ b/src/i18n/es/_welcome.yml
@@ -0,0 +1,68 @@
+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: Únase a nuestro Discord
+ discord_description: Hable con la comunidad y los desarrolladores de Mue
+ discord_join: Únase
+ github_title: Contribuir en GitHub
+ github_description: Informar de errores, añadir funciones o hacer donaciones
+ github_open: Abrir
+ language:
+ title: Elige el idioma
+ description: Mue puede mostrarse en los idiomas que se indican debajo. ¡También
+ puedes contribuir con traducciones en nuestro
+ theme:
+ title: Selecciona un tema
+ description: Mue está disponible tanto en el tema claro como en el oscuro,
+ también se puede configurar automáticamente en función del tema de su
+ sistema.
+ tip: Si utiliza la configuración automática, utilizará el tema de su ordenador.
+ Esta configuración afectará a los modales y a algunos de los widgets que
+ aparecen en la pantalla, como el tiempo y las notas.
+ style:
+ title: Elija un estilo
+ description: Mue ofrece actualmente la posibilidad de elegir entre el estilo
+ heredado y el estilo moderno recién estrenado.
+ legacy: Legado
+ modern: Moderno
+ settings:
+ title: Importa los ajustes
+ description: ¿Instalando Mue en un nuevo dispositivo? No dudes en importar tu
+ antigua configuración.
+ tip: Puedes exportar tu antigua configuración navegando a la pestaña Avanzado en
+ tu antigua configuración de Mue. Luego debes hacer clic en el botón de
+ exportación que descargará el archivo JSON. Puedes subir este archivo aquí
+ para mantener tus ajustes y preferencias de tu anterior instalación de
+ Mue.
+ privacy:
+ title: Opciones de privacidad
+ description: Activa estos ajustes para proteger aún más tu privacidad con Mue.
+ offline_mode_description: Al activar el modo offline se deshabilitarán todas las
+ peticiones a cualquier servicio. Esto hará que se desactiven los fondos en
+ línea, las citas en línea, la tienda, el tiempo, los enlaces rápidos, el
+ registro de cambios y alguna información de la pestaña Acerca de.
+ 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
+ finish: Terminar
+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
diff --git a/src/i18n/es/main.yml b/src/i18n/es/main.yml
new file mode 100644
index 00000000..d3bb5111
--- /dev/null
+++ b/src/i18n/es/main.yml
@@ -0,0 +1,98 @@
+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
+ information: Información
+ download: Descargar
+ downloads: Descargas
+ views: Vistas
+ likes: Me gustas
+ location: Ubicación
+ camera: Cámara
+ resolution: Resolución
+ source: Fuente
+ category: Categoría
+ exclude: No mostrar de nuevo
+ exclude_confirm: >-
+ ¿Estás seguro de que no quieres volver a ver esta imagen?
+
+ Nota: si no te gustan las imágenes de "{category}", puedes anular la
+ selección de la categoría en la configuración de la fuente de fondo.
+ confirm: Confirmar
+ search: Buscar
+ quicklinks:
+ new: Nuevo enlace
+ edit: Modificar el enlace
+ name: Nombre
+ 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: Información adicional
+ feels_like: Parece que {amount}
+ quote:
+ link_tooltip: Abrir en la Wikipedia
+ share: Compartir
+ copy: Copiar
+ favourite: Favorito
+ unfavourite: No favorito
+ navbar:
+ tooltips:
+ refresh: Recargar
+ notes:
+ title: Notas
+ placeholder: Escribe aquí
+ todo:
+ title: Tareas
+ add: Añadir
+ no_todos: Sin tareas
+ apps: {}
+modals:
+ main:
+ title: Opciones
+ loading: Cargando...
+ file_upload_error: El archivo pesa más de 2MB
+ navbar:
+ settings: Ajustes
+ addons: Addons
+ marketplace: Tienda
+ error_boundary:
+ message: No se ha podido cargar este componente de Mue
+ report_error: Enviar informe de error
+ sent: ¡Enviado!
+ refresh: Recargar
+ update:
+ title: Actualizar
+ offline:
+ title: Sin conexión
+ description: No se pueden obtener actualizaciones en modo sin conexión
+ error:
+ description: No se pudo conectar con el servidor
+ share:
+ copy_link: Copiar enlace
+ email: Correo electrónico
+toasts:
+ quote: Cita copiada
+ notes: Notas copiadas
+ reset: Restablecido correctamente
+ installed: Instalado correctamente
+ uninstalled: Desinstalado correctamente
+ updated: Actualizado correctamente
+ error: Algo salió mal
+ imported: Importado correctamente
+ no_storage: No hay espacio suficiente
+ link_copied: Enlace copiado
diff --git a/src/i18n/fr/_achievements.yml b/src/i18n/fr/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/fr/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/fr/_addons.yml b/src/i18n/fr/_addons.yml
new file mode 100644
index 00000000..5f1d6fb5
--- /dev/null
+++ b/src/i18n/fr/_addons.yml
@@ -0,0 +1,10 @@
+added: Ajoutées
+empty:
+ title: C'est vide par ici
+ description: Dirigez vous vers le marché pour ajouter des options
+sideload:
+ title: Charger
+ errors: {}
+sort: {}
+create:
+ moved_button: Get Started
diff --git a/src/i18n/fr/_marketplace.yml b/src/i18n/fr/_marketplace.yml
new file mode 100644
index 00000000..849a126e
--- /dev/null
+++ b/src/i18n/fr/_marketplace.yml
@@ -0,0 +1,13 @@
+photo_packs: Packs Photos
+quote_packs: Packs Citations
+preset_settings: Paramètres prédéfinis
+no_items: Aucun article dans cette catégorie
+product:
+ overview: Aperçu
+ last_updated: Dernière mise à jour
+ buttons:
+ addtomue: Ajouter à Mue
+ remove: Enlever
+offline:
+ title: Hors ligne
+ description: Veuillez vous connecter à Internet.
diff --git a/src/i18n/fr/_settings.yml b/src/i18n/fr/_settings.yml
new file mode 100644
index 00000000..260c2e3c
--- /dev/null
+++ b/src/i18n/fr/_settings.yml
@@ -0,0 +1,179 @@
+enabled: Activé
+reminder:
+ title: REMARQUER
+ message: Pour que toutes les modifications aient lieu, la page doit être actualisée.
+sections:
+ header: {}
+ time:
+ title: Heure
+ type: Genre
+ digital:
+ title: Affichage numériquel
+ seconds: Secondes
+ twentyfourhour: 24 heures
+ twelvehour: 12 heures
+ zero: Complétion de zéros
+ analogue:
+ title: Analogique
+ second_hand: Aiguille des secondes
+ minute_hand: Aiguille des minutes
+ hour_hand: Aiguille de heure
+ hour_marks: Marques d'heure
+ minute_marks: Marques des minutes
+ percentage_complete: Pourcentage achevé
+ vertical_clock: {}
+ date:
+ week_number: Numéro de semaine
+ day_of_week: Jour de la semaine
+ type:
+ short: Courtt
+ short_date: Date courte
+ short_format: Format court
+ short_separator:
+ title: Séparateur court
+ dots: Points
+ dash: Tiret
+ gaps: Blancs
+ slashes: Barres
+ quote:
+ title: Citation
+ author_link: Lien auteur
+ custom: Citation personnalisé
+ custom_author: Auteur de devis personnalisé
+ buttons:
+ title: Boutons
+ copy: Copier
+ tweet: Twitter
+ favourite: Ajouter aux favoris
+ greeting:
+ title: Salutation
+ events: Événements
+ default: Salutation par défaut
+ name: Nom pour salutation
+ birthday: Anniversaire
+ birthday_age: âge d'anniversaire
+ birthday_date: date d'anniversaire
+ background:
+ title: Fond
+ transition: Transition en fondu
+ buttons:
+ title: Boutons
+ view: Mode vue
+ favourite: Ajouter aux favoris
+ download: Télécharger
+ effects:
+ title: Effets
+ blur: Ajuster le flou
+ brightness: Ajuster la luminosité
+ filters: {}
+ type:
+ custom_image: Image personnalisée
+ custom_colour: Couleur / dégradé personnalisé
+ unsplash: {}
+ source:
+ api: Source
+ custom_background: Arrière-plan personnalisé
+ custom_colour: Couleur d'arrière-plan personnalisée
+ upload: Ajouter
+ add_colour: Ajouter une couleur
+ loop_video: Boucle vidéo
+ mute_video: Mettre la vidéo en sourdine
+ quality: {}
+ search:
+ title: Barre de Recherche
+ search_engine: Moteur de Recherche
+ custom: URL de recherche personnalisée
+ voice_search: Recherche vocale
+ dropdown: Search dropdown
+ weather:
+ title: Météo
+ location: Emplacement
+ temp_format:
+ title: Format de température
+ extra_info:
+ title: Informations supplémentaires
+ show_location: Afficher l'emplacement
+ humidity: Humidité
+ wind_speed: Vitesse du vent
+ min_temp: Température minimale
+ max_temp: Température maximale
+ atmospheric_pressure: Pression atmosphérique
+ options: {}
+ quicklinks:
+ title: Liens rapides
+ open_new: Ouvrir dans un nouvel onglet
+ tooltip: Info-bulle
+ options: {}
+ message: {}
+ appearance:
+ title: Apparence
+ style: {}
+ theme:
+ title: Thème
+ light: Clair
+ dark: Sombre
+ navbar:
+ refresh_options: {}
+ font:
+ weight: {}
+ style: {}
+ accessibility:
+ title: Accessibilité
+ text_shadow: {}
+ widget_zoom: Zoom du widget
+ toast_duration: Durée du toast
+ milliseconds: millisecondes
+ order:
+ title: Ordre des widgets
+ advanced:
+ title: Avancée
+ offline_mode: Mode hors-ligne
+ data: Donnés
+ data_subtitle: Choose whether to export your Mue settings to your computer,
+ import an existing settings file, or reset your settings to their default
+ values
+ reset_modal:
+ title: ATTENTION
+ question: Voulez-vous réinitialiser Mue?
+ information: Cela supprimera toutes les données. Si vous souhaitez conserver vos
+ données et préférences, veuillez d'abord les exporter.
+ cancel: Annuler
+ customisation: Personnalisation
+ custom_css: CSS personnalisé
+ custom_js: JS personnalisé
+ tab_name: Nom de l'onglet
+ timezone: {}
+ experimental_warning: Veuillez noter que l'équipe Mue ne peut pas fournir
+ d'assistance si vous avez activé le mode expérimental. Veuillez d'abord le
+ désactiver et voir si le problème persiste avant de contacter le support.
+ preview_data_disabled: {}
+ stats:
+ sections: {}
+ clear_modal: {}
+ experimental:
+ title: Expérimental
+ language:
+ title: Langue
+ quote: Citation langue
+ changelog:
+ title: Journal des modifications
+ about:
+ title: à propos de
+ version:
+ checking_update: Vérification de la mise à jour
+ update_available: Mise à jour disponible
+ no_update: Pas de mise a jour disponible
+ offline_mode: Impossible de vérifier la mise à jour en mode hors ligne
+ error: {}
+ contact_us: Nous contacter
+ support_mue: Soutenir Mue
+ resources_used:
+ title: Ressources utilisées
+ bg_images: Images d'arrière-plan hors ligne
+ contributors: Collaborateurs
+ supporters: Partisans
+ photographers: Photographes
+buttons:
+ reset: Réinitialiser
+ import: Importer
+ export: Exporter
diff --git a/src/i18n/fr/_welcome.yml b/src/i18n/fr/_welcome.yml
new file mode 100644
index 00000000..d6be15c4
--- /dev/null
+++ b/src/i18n/fr/_welcome.yml
@@ -0,0 +1,16 @@
+sections:
+ intro:
+ title: Bienvenue en Mue Tab
+ description: Merci d'avoir installé Mue, nous espérons que vous apprécierez
+ votre temps avec notre extension.
+ notices: {}
+ language: {}
+ theme: {}
+ style: {}
+ settings: {}
+ privacy:
+ links: {}
+ final: {}
+buttons:
+ close: Fermer
+preview: {}
diff --git a/src/i18n/fr/main.yml b/src/i18n/fr/main.yml
index e69de29b..efd7b009 100644
--- a/src/i18n/fr/main.yml
+++ b/src/i18n/fr/main.yml
@@ -0,0 +1,62 @@
+tabname: Nouvel Onglet
+widgets:
+ greeting:
+ morning: Bonjour
+ afternoon: Bon après-midi
+ evening: Bonsoir
+ christmas: Joyeux Noël
+ newyear: Bonne année
+ halloween: Joyeux Halloween
+ birthday: Bon anniversaire
+ background:
+ credit: Photo par
+ unsplash: sur Unsplash
+ download: Téléchargement
+ downloads: Téléchargements
+ search: Rechercher
+ quicklinks:
+ new: Nouveau lien
+ name: Nom
+ add: Ajouter
+ name_error: Doit fournir le nom
+ url_error: Doit fournir une URL
+ date:
+ week: Semaine
+ weather:
+ not_found: Pas trouvé
+ meters: "{amount} mètres"
+ quote: {}
+ navbar:
+ tooltips: {}
+ notes:
+ title: Remarques
+ placeholder: Écrivez ici
+ todo: {}
+ apps: {}
+modals:
+ main:
+ loading: Chargement...
+ navbar:
+ settings: Paramètres
+ addons: Mes Options
+ marketplace: Marché
+ error_boundary:
+ title: Erreur
+ refresh: Rafraîchir
+ update:
+ title: Mettre à jour
+ offline:
+ title: Hors
+ description: Vous ne pouvez pas obtenir de mise à jour si vous êtes hors ligne
+ error:
+ title: Erreur
+ description: Impossible de se connecter au serveur
+ share: {}
+toasts:
+ quote: Citation copiée
+ notes: Remarques copiée
+ reset: Réinitialisé avec succès
+ installed: Installé avec succès
+ uninstalled: Enlevé avec succès
+ error: Quelque chose s'est mal passé
+ imported: Importé avec succès
diff --git a/src/i18n/id/_achievements.yml b/src/i18n/id/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/id/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/id/_addons.yml b/src/i18n/id/_addons.yml
new file mode 100644
index 00000000..a2502960
--- /dev/null
+++ b/src/i18n/id/_addons.yml
@@ -0,0 +1,18 @@
+added: Terinstal
+check_updates: Periksa pembaruan
+no_updates: Tidak ada pembaruan
+updates_available: Terdapat {amount} pembaruan
+empty:
+ title: Kosong
+ description: Belum ada addons yang terinstal
+sideload:
+ errors: {}
+sort:
+ title: Urutkan
+ newest: Terinstal (Terbaru)
+ oldest: Terinstal (Terlama)
+ a_z: Abjad (A-Z)
+ z_a: Abjad (Z-A)
+create:
+ title: Buat
+ moved_button: Get Started
diff --git a/src/i18n/id/_marketplace.yml b/src/i18n/id/_marketplace.yml
new file mode 100644
index 00000000..0db194a2
--- /dev/null
+++ b/src/i18n/id/_marketplace.yml
@@ -0,0 +1,13 @@
+no_items: Tidak ada item pada kategori ini
+product:
+ overview: Ikhtisar
+ information: Informasi
+ last_updated: Pembaruan Terakhir
+ version: Versi
+ buttons:
+ addtomue: Tambahkan ke Mue
+ remove: Hapus
+ update_addon: Perbarui Add-on
+offline:
+ title: Sepertinya Anda sedang dalam mode luring
+ description: Harap periksa kembali koneksi Anda dan coba lagi nanti
diff --git a/src/i18n/id/_settings.yml b/src/i18n/id/_settings.yml
new file mode 100644
index 00000000..9dcac953
--- /dev/null
+++ b/src/i18n/id/_settings.yml
@@ -0,0 +1,239 @@
+enabled: Aktif
+open_knowledgebase: Buka Basis Pengetahuan
+additional_settings: Pengaturan Tambahan
+reminder:
+ title: PERHATIAN
+ message: Agar semua perubahan dapat diterapkan, harap muat ulang halaman ini
+sections:
+ header:
+ more_info: Info lebih lanjut
+ report_issue: Laporkan Masalah
+ enabled: Pilih apakah akan menampilkan widget ini atau tidak
+ size: Slider untuk mengontrol seberapa besar widget tersebut
+ time:
+ title: Waktu
+ type: Tipe
+ digital:
+ subtitle: Mengubah tampilan jam digital
+ seconds: Detik
+ twentyfourhour: "24"
+ twelvehour: 12 (AM/PM)
+ analogue:
+ title: Analog
+ subtitle: Mengubah tampilan jam analog
+ second_hand: Jarum Detik
+ minute_hand: Jarum Menit
+ hour_hand: Jarum Jam
+ hour_marks: Penanda Jam
+ minute_marks: Penanda Menit
+ round_clock: Latar belakang berbentuk bulat
+ percentage_complete: Persentase
+ vertical_clock:
+ title: Jam Vertikal
+ change_hour_colour: Ubah warna teks jam
+ change_minute_colour: Ubah warna teks menit
+ date:
+ title: Tanggal
+ week_number: Nomor Urut Pekan
+ day_of_week: Hari
+ datenth: Imbuhan nth
+ type:
+ short: Ringkas
+ long: Lengkap
+ subtitle: Apakah akan menampilkan tanggal dalam bentuk panjang atau bentuk pendek
+ type_settings: Tampilkan setelan dan format untuk jenis tanggal yang dipilih
+ short_date: Tanggal Ringkas
+ short_format: Format Ringkas
+ long_format: Format panjang
+ short_separator:
+ title: Pemisah
+ dots: Titik
+ dash: Setrip
+ gaps: Spasi
+ slashes: Garis Miring
+ quote:
+ title: Kutipan
+ additional: Pengaturan lain untuk menyesuaikan gaya widget kutipan
+ author_link: Pranala penulis
+ custom: Kutipan kustom
+ custom_subtitle: Tetapkan kutipan khusus Anda sendiri
+ no_quotes: Tidak ada kutipan
+ author: Kreator
+ custom_buttons: Tombol
+ custom_author: Penulis kustom
+ author_img: Tampilkan pemilik gambar
+ add: Tambahkan kutipan
+ buttons:
+ title: Aksi
+ copy: Salin
+ favourite: Favorit
+ greeting:
+ title: Sapaan
+ events: Hari Besar
+ default: Sapaan bawaan
+ name: Nama
+ birthday: Hari Ulang Tahun
+ birthday_age: Usia
+ birthday_date: Tanggal Ulang Tahun
+ background:
+ transition: Transisi Fade-in
+ photo_information: Tampilkan informasi foto
+ show_map: Tampilkan informasi lokasi foto jika ada
+ buttons:
+ title: Aksi
+ view: Layar Penuh
+ favourite: Favorit
+ download: Unduh
+ effects:
+ title: Efek
+ blur: Sesuaikan blur
+ brightness: Sesuaikan kecerahan
+ filters:
+ title: Filter background
+ amount: Sesuaikan filter
+ type:
+ title: Tipe
+ custom_image: Gambar kustom
+ custom_colour: Warna/gradasi kustom
+ random_colour: Warna acak
+ random_gradient: Gradasi acak
+ unsplash: {}
+ source:
+ title: Sumber
+ custom_background: Background kustom
+ custom_colour: Background warna kustom
+ upload: Unggah
+ add_colour: Tambah warna
+ add_background: Tambah background
+ add_url: Tambah URL
+ disabled: Nonaktif
+ loop_video: Ulang video
+ mute_video: Bisukan video
+ quality:
+ title: Kualitas
+ search:
+ title: Cari
+ search_engine: Mesin pencari
+ custom: URL Kustom
+ autocomplete_provider: Provider Autocomplete
+ voice_search: Pencarian suara
+ dropdown: Dropdown pencarian
+ weather:
+ title: Cuaca
+ location: Lokasi
+ auto: Otomatis
+ temp_format:
+ title: Format suhu
+ extra_info:
+ title: Informasi Tambahan
+ show_location: Tampilkan lokasi
+ show_description: Tampilkan deskripsi
+ cloudiness: Kondisi awan
+ humidity: Kelembapan
+ visibility: Jarak pandang
+ wind_speed: Kecepatan angin
+ wind_direction: Arah angin
+ min_temp: Temperatur minimal
+ max_temp: Temperatur maksimal
+ atmospheric_pressure: Tekanan atmosfer
+ options: {}
+ quicklinks:
+ title: Pranala cepat
+ open_new: Buka di tab baru
+ text_only: Hanya teks
+ options: {}
+ message:
+ title: Pesan
+ add: Tambahkan pesan
+ text: Teks
+ appearance:
+ title: Antarmuka
+ style: {}
+ theme:
+ title: Tema
+ auto: Otomatis
+ navbar:
+ notes: Catatan
+ refresh: Muat ulang
+ hover: Tampilkan ketika hover
+ refresh_options:
+ none: Nonaktif
+ page: Halaman
+ font:
+ custom: Font kustom
+ google: Impor dari Google Fonts
+ weight: {}
+ style: {}
+ accessibility:
+ title: Aksesibilitas
+ animations: Animasi
+ text_shadow: {}
+ toast_duration: Durasi toast
+ order:
+ title: Urutan Widget
+ advanced:
+ title: Lanjutan
+ offline_mode: Mode Luring
+ 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: PERINGATAN
+ question: Apakah Anda ingin me-reset Mue?
+ information: Aksi ini akan menghapus semua data Anda. Harap ekspor pengaturan
+ Anda sebelum melakukan reset.
+ cancel: Batal
+ customisation: Kustomisasi
+ custom_css: CSS Kustom
+ custom_js: JS Kustom
+ tab_name: Nama tab
+ timezone:
+ title: Zona Waktu
+ automatic: Otomatis
+ experimental_warning: Harap diperhatikan bahwa tim Mue tidak menyediakan
+ dukungan jika Anda mengaktifkan mode experimental. Harap nonaktifkan
+ terlebih dahulu dan lihat apabila kendala Anda masih terjadi sebelum
+ menghubungi kami.
+ preview_data_disabled: {}
+ stats:
+ title: Statistik
+ sections:
+ tabs_opened: Riwayat tab terbuka
+ backgrounds_favourited: Backgrounds favorit
+ backgrounds_downloaded: Backgrounds terunduh
+ quotes_favourited: Kutipan favorit
+ quicklinks_added: Pranala cepat ditambahkan
+ settings_changed: Perubahan pengaturan
+ addons_installed: Add-ons ditambahkan
+ usage: Statistik Penggunaan
+ clear_modal: {}
+ experimental: {}
+ language:
+ title: Bahasa
+ quote: Bahasa untuk kutipan
+ changelog:
+ title: Changelog
+ by: Oleh {author}
+ about:
+ title: Tentang Mue
+ version:
+ title: Versi
+ checking_update: Periksa pembaruan
+ update_available: Pembaruan tersedia
+ no_update: Tidak ada pembaruan
+ offline_mode: Periksa pembaruan tidak dapat dilakukan pada mode luring
+ error:
+ title: Gagal mendapatkan informasi pembaruan
+ description: Muncul galat saat mencoba mendapatkan informasi pembaruan. Harap
+ coba lagi nanti.
+ contact_us: Hubungi Kami
+ support_mue: Dukung Mue
+ resources_used:
+ title: Resources yang kami gunakan
+ contributors: Kontributor
+ supporters: Suporter
+ no_supporters: Mue belum punya suporter saat ini.
+ photographers: Fotografer
+buttons:
+ import: Impor
+ export: Ekspor
diff --git a/src/i18n/id/_welcome.yml b/src/i18n/id/_welcome.yml
new file mode 100644
index 00000000..3b65a199
--- /dev/null
+++ b/src/i18n/id/_welcome.yml
@@ -0,0 +1,51 @@
+tip: Tip
+sections:
+ intro:
+ title: Selamat datang di Mue Tab
+ description: Terima kasih sudah menginstal Mue, kami harap Anda dapat menikmati
+ pengalaman bersama Mue
+ notices: {}
+ language:
+ title: Pilih bahasa
+ description: Antarmuka Mue dapat ditampilkan dalam ragam bahasa berikut. Kamu
+ juga bisa menambahkan terjemahan baru untuk Mue pada
+ theme:
+ title: Pilih tema
+ description: Mue tersedia dalam tema terang dan gelap, atau kami juga bisa
+ mengaturnya secara otomatis sesuai dengan preferensi sistem Anda.
+ tip: Pengaturan otomatis akan menyesuaikan dengan tema komputer Anda. Pengaturan
+ ini akan mengubah tampilan modal dan beberapa widget, seperti Cuaca dan
+ Catatan.
+ style: {}
+ settings:
+ title: Impor Pengaturan
+ description: Sudah pernah menginstal Mue? Yuk coba impor pengaturan lama kamu
+ tanpa perlu mengatur ulang dari awal!
+ tip: Kamu bisa mengekspor pengaturan lama kamu melalui tab lanjutan pada
+ Pengaturan. Klik tombol ekspor untuk mengunduh berkas JSON. Unggah berkas
+ tersebut di sini sehingga kamu dapat menikmati preferensi yang sama pada
+ perangkat yang berbeda!
+ privacy:
+ title: Opsi Privasi
+ description: Aktifkan pegaturan sehingga Mue dapat melindungi privasi Anda.
+ offline_mode_description: Mengaktifkan mode luring akan menghalangi request ke
+ semua layanan, termasuk Background Online, Kutipan Daring, Marketplace,
+ Cuaca, Pranala Cepat, Change Log, dan beberapa informasi tentang tab.
+ links:
+ title: Pranala
+ privacy_policy: Kebijakan Privasi
+ final:
+ title: Langkah terakhir
+ description: Pengalaman Mue Tab Anda akan segera dimulai!
+ changes: Perubahan
+ changes_description: Untuk mengubah pengaturan lainnya, klik pada ikon
+ pengaturan di pojok kanan atas tab Anda.
+ imported: Berhasil mengimpor {amount} pengaturan
+buttons:
+ next: Selanjutnya
+ preview: Pratinjau
+ previous: Kembali
+ close: Tutup
+preview:
+ description: Kamu dalam mode Pratinjau. Pengaturan akan direset ketika tab ini ditutup.
+ continue: Lanjutkan setup
diff --git a/src/i18n/id/main.yml b/src/i18n/id/main.yml
new file mode 100644
index 00000000..ff5f4f13
--- /dev/null
+++ b/src/i18n/id/main.yml
@@ -0,0 +1,96 @@
+tabname: Tab Baru
+widgets:
+ greeting:
+ morning: Selamat Pagi
+ afternoon: Selamat Siang
+ evening: Selamat Malam
+ christmas: Selamat Natal
+ newyear: Selamat Tahun Baru
+ halloween: Selamat Hari Halloween
+ birthday: Selamat Ulang Tahun
+ background:
+ credit: Foto oleh
+ unsplash: di Unsplash
+ information: Informasi
+ download: Unduh
+ downloads: Unduhan
+ views: Tayangan
+ likes: Suka
+ location: Lokasi
+ camera: Kamera
+ resolution: Resolusi
+ source: Sumber
+ category: Kategori
+ exclude: Jangan tampilkan lagi
+ exclude_confirm: >-
+ Apakah Anda yakin tidak ingin melihat gambar ini lagi?
+
+ Catatan: jika Anda tidak menyukai gambar "{category}", Anda dapat
+ membatalkan pilihan kategori di setelan sumber latar belakang.
+ confirm: Konfirmasi
+ search: Cari
+ quicklinks:
+ new: Pranala Baru
+ name: Nama
+ icon: Ikon (opsional)
+ add: Tambah
+ name_error: Harap cantumkan nama
+ url_error: Harap cantumkan URL
+ date:
+ week: Pekan
+ weather:
+ not_found: Tidak Ditemukan
+ meters: "{amount} meter"
+ extra_information: Informasi Tambahan
+ feels_like: Terasa seperti {jumlah}
+ quote:
+ link_tooltip: Buka di Wikipedia
+ share: Bagikan
+ copy: Salin
+ favourite: Favorit
+ unfavourite: Copot favorit
+ navbar:
+ tooltips:
+ refresh: Muat Ulang
+ notes:
+ title: Catatan
+ placeholder: Ketik di sini
+ todo:
+ title: Tugas
+ pin: Sematkan
+ add: Tambah
+ no_todos: Tidak ada Tugas
+ apps: {}
+modals:
+ main:
+ title: Setelan
+ loading: Sedang memuat...
+ file_upload_error: Ukuran berkas lebih dari 2MB
+ navbar:
+ settings: Pengaturan
+ addons: Pengaya
+ error_boundary:
+ title: Galat
+ message: Gagal memuat komponen Mue
+ report_error: Kirim Laporan Galat
+ sent: Terkirim!
+ refresh: Muat Ulang
+ update:
+ title: Pembaruan
+ offline:
+ title: Anda dalam mode luring
+ description: Tidak dapat memeriksa pembaruan. Harap periksa kembali koneksi Anda
+ dan coba lagi nanti.
+ error:
+ title: Galat
+ description: Tidak dapat terhubung ke peladen
+ share: {}
+toasts:
+ quote: Berhasil menyalin kutipan
+ notes: Berhasil menyalin catatan
+ reset: Reset berhasil
+ installed: Berhasil menginstal
+ uninstalled: Berhasil menghapus
+ updated: Berhasil diperbarui
+ error: Terdapat kesalahan
+ imported: Berhasil mengimpor
diff --git a/src/i18n/languages.json b/src/i18n/languages.json
deleted file mode 100644
index 7cacc14f..00000000
--- a/src/i18n/languages.json
+++ /dev/null
@@ -1,58 +0,0 @@
-[
- {
- "name": "Bahasa Indonesia",
- "value": "id-ID"
- },
- {
- "name": "বাংলা",
- "value": "bn"
- },
- {
- "name": "Deutsch",
- "value": "de-DE"
- },
- {
- "name": "English (UK)",
- "value": "en-GB"
- },
- {
- "name": "English (US)",
- "value": "en-US"
- },
- {
- "name": "Español",
- "value": "es"
- },
- {
- "name": "Español (Latinoamérica)",
- "value": "es-419"
- },
- {
- "name": "Français",
- "value": "fr"
- },
- {
- "name": "Nederlands",
- "value": "nl"
- },
- {
- "name": "Norsk",
- "value": "no"
- },
- {
- "name": "Pусский",
- "value": "ru"
- },
- {
- "name": "Türkçe",
- "value": "tr-TR"
- },
- {
- "name": "中文 (简体)",
- "value": "zh-CN"
- },
- {
- "name": "Portuguese (Brazil)",
- "value": "pt-BR"
- }
-]
diff --git a/src/i18n/locales/achievements/de_DE.json b/src/i18n/locales/achievements/de.json
similarity index 100%
rename from src/i18n/locales/achievements/de_DE.json
rename to src/i18n/locales/achievements/de.json
diff --git a/src/i18n/locales/achievements/en_GB.json b/src/i18n/locales/achievements/en-GB.json
similarity index 100%
rename from src/i18n/locales/achievements/en_GB.json
rename to src/i18n/locales/achievements/en-GB.json
diff --git a/src/i18n/locales/achievements/en_US.json b/src/i18n/locales/achievements/en-US.json
similarity index 100%
rename from src/i18n/locales/achievements/en_US.json
rename to src/i18n/locales/achievements/en-US.json
diff --git a/src/i18n/locales/achievements/es_419.json b/src/i18n/locales/achievements/es-419.json
similarity index 100%
rename from src/i18n/locales/achievements/es_419.json
rename to src/i18n/locales/achievements/es-419.json
diff --git a/src/i18n/locales/achievements/id_ID.json b/src/i18n/locales/achievements/id.json
similarity index 100%
rename from src/i18n/locales/achievements/id_ID.json
rename to src/i18n/locales/achievements/id.json
diff --git a/src/i18n/locales/achievements/pt_BR.json b/src/i18n/locales/achievements/pt-BR.json
similarity index 100%
rename from src/i18n/locales/achievements/pt_BR.json
rename to src/i18n/locales/achievements/pt-BR.json
diff --git a/src/i18n/locales/achievements/tr_TR.json b/src/i18n/locales/achievements/tr.json
similarity index 100%
rename from src/i18n/locales/achievements/tr_TR.json
rename to src/i18n/locales/achievements/tr.json
diff --git a/src/i18n/locales/achievements/zh_CN.json b/src/i18n/locales/achievements/zh.json
similarity index 100%
rename from src/i18n/locales/achievements/zh_CN.json
rename to src/i18n/locales/achievements/zh.json
diff --git a/src/i18n/locales/de-DE.json b/src/i18n/locales/de.json
similarity index 100%
rename from src/i18n/locales/de-DE.json
rename to src/i18n/locales/de.json
diff --git a/src/i18n/locales/id-ID.json b/src/i18n/locales/id.json
similarity index 100%
rename from src/i18n/locales/id-ID.json
rename to src/i18n/locales/id.json
diff --git a/src/i18n/locales/tr-TR.json b/src/i18n/locales/tr.json
similarity index 100%
rename from src/i18n/locales/tr-TR.json
rename to src/i18n/locales/tr.json
diff --git a/src/i18n/locales/zh-CN.json b/src/i18n/locales/zh.json
similarity index 100%
rename from src/i18n/locales/zh-CN.json
rename to src/i18n/locales/zh.json
diff --git a/src/i18n/nl/_achievements.yml b/src/i18n/nl/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/nl/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/nl/_addons.yml b/src/i18n/nl/_addons.yml
new file mode 100644
index 00000000..d3af9f18
--- /dev/null
+++ b/src/i18n/nl/_addons.yml
@@ -0,0 +1,15 @@
+added: Toegevoegd
+empty:
+ title: Het is hier erg leeg
+ description: Ga naar de marktplaats om een paar extensies toe te voegen
+sideload:
+ title: Sideloaden
+ description: Installeer een Mue extensie die niet op de marktplaats staat vanaf
+ je computer
+ errors: {}
+sort: {}
+create:
+ moved_title: Creëer extensies is verplaatst!
+ moved_description: Na de 7.1-update is het maken van extensies nu verplaatst
+ naar de webinterface
+ moved_button: Begin
diff --git a/src/i18n/nl/_marketplace.yml b/src/i18n/nl/_marketplace.yml
new file mode 100644
index 00000000..77f50e07
--- /dev/null
+++ b/src/i18n/nl/_marketplace.yml
@@ -0,0 +1,38 @@
+by: Door {author}
+all: Alles
+learn_more: Meer Informatie
+photo_packs: Fotoverzamelingen
+quote_packs: Citaatverzamelingen
+preset_settings: Voorinstellingen
+collection: Collectie
+explore_collection: Verken Collectie
+add_all: Voeg alles toe aan Mue
+collections: Collecties
+cant_find: Kan je niet vinden waar je naar opzoek was?
+knowledgebase_one: Bezoek de
+knowledgebase_two: kennisbank
+knowledgebase_three: Om je eigen te creëren.
+product:
+ overview: Overzicht
+ information: Informatie
+ last_updated: Laatst geüpdatet
+ description: Beschrijving
+ show_more: Toon Meer
+ show_less: Toon Minder
+ show_all: Toon Alles
+ showing: Tonen
+ no_images: Geen. Foto's
+ no_quotes: Geen. Citaten
+ version: Versie
+ part_of: Deel van
+ explore: Verken
+ buttons:
+ addtomue: Toevoegen aan Mue
+ remove: Verwijderen
+ back: Terug
+ report: Rapporteer
+ setting: Instelling
+ value: Waarde
+offline:
+ title: Het lijkt er op dat je niet verbonden bent het internet
+ description: Maak verbinding met het internet
diff --git a/src/i18n/nl/_settings.yml b/src/i18n/nl/_settings.yml
new file mode 100644
index 00000000..eed0f601
--- /dev/null
+++ b/src/i18n/nl/_settings.yml
@@ -0,0 +1,178 @@
+enabled: Ingeschakeld
+open_knowledgebase: Open Kennisbank
+additional_settings: Aanvullende Instellingen
+reminder:
+ title: AANKONDIGING
+ message: De pagina moet ververst worden om alle wijzigingen toe te passen.
+sections:
+ header:
+ more_info: Meer informatie
+ report_issue: Rapporteer Probleem
+ enabled: Kies of je deze widget wel of niet wilt weergeven
+ size: Schuifregelaar om te bepalen hoe groot de widget is
+ time:
+ title: Tijd
+ digital:
+ subtitle: Verander het uiterlijk van de digitale klok
+ seconds: Seconden tonen
+ twentyfourhour: 24-uursklok gebruiken
+ twelvehour: 12-uursklok gebruiken
+ zero: Nulopvulling
+ analogue:
+ subtitle: Verander het uiterlijk van de analoge klok
+ round_clock: Afgeronde achtergrond
+ vertical_clock:
+ title: Verticale Klok
+ change_hour_colour: Wijzig de kleur van de uurtekst
+ change_minute_colour: Wijzig de kleur van de minuuttekst
+ date:
+ type:
+ subtitle: Of de datum in lange of korte vorm weergegeven moet worden
+ type_settings: Weergave-instellingen en formaat voor het geselecteerde datumtype
+ long_format: Lang formaat
+ short_separator: {}
+ quote:
+ title: Citaat
+ additional: Andere instellingen om de stijl van het citaten widget te veranderen
+ custom_subtitle: Schrijf je eigen citaten
+ no_quotes: Geen citaten
+ author: Auteur
+ custom_buttons: Knoppen
+ author_img: Laat auteur van foto's zien
+ source_subtitle: Kies waar citaten vandaan gehaald moeten worden
+ buttons:
+ subtitle: Kies welke knoppen je bij het citaat wilt weergeven
+ copy: Kopieerknop
+ tweet: Tweetknop
+ favourite: Knop 'Toevoegen aan favorieten'
+ greeting:
+ title: Begroetingen
+ events: Gebeurtenissen
+ default: Standaard begroetingsnaam
+ name: Naam van begroeting
+ birthday_subtitle: Laat een felicitatie zien wanneer het je verjaardag is
+ additional: Instellingen voor de begroetingsweergave
+ background:
+ title: Achtergrond
+ categories: Categorieën
+ buttons:
+ view: Weergave
+ effects:
+ subtitle: Voeg effecten aan de achtergrondfoto's toe
+ blur: Vervaging instellen
+ filters: {}
+ type: {}
+ unsplash: {}
+ source:
+ subtitle: Selecteer waar achtergrondfoto's vandaan worden gehaald
+ api: Achtergrond-api
+ custom_background: Aangepaste achtergrond
+ custom_colour: Aangepaste achtergrondkleur
+ upload: Uploaden
+ add_colour: Kleur toevoegen
+ drop_to_upload: Sleep om up te loaden
+ formats: "Beschikbare formaten: {list}"
+ select: Of Selecteer
+ disabled: Uitgeschakeld
+ quality: {}
+ custom_title: Aangepaste Afbeeldingen
+ custom_description: Selecteer afbeeldingen van je lokale bestanden
+ remove: Verwijder Afbeelding
+ display: Weergave
+ display_subtitle: Verander hoe achtergrond- en foto informatie geladen wordt
+ api: API Instellingen
+ api_subtitle: Opties voor het verkrijgen van afbeeldingen van externe bronnen (API)
+ search:
+ title: Zoekbalk
+ additional: Extra instellingen voor zoek widget uiterlijk en functionaliteit
+ search_engine: Zoekmachine
+ search_engine_subtitle: Kies zoekmachine die gebruikt wordt in de zoekbalk
+ custom: Aangepaste zoekmachine-url
+ autocomplete_provider_subtitle: Zoekmachine om te gebruiken voor automatisch aanvullen resultaten
+ voice_search: Spraakgestuurd zoeken gebruiken
+ dropdown: Search dropdown
+ focus: Focus op tabblad openen
+ weather:
+ widget_type: Widgettype
+ temp_format: {}
+ extra_info:
+ weather_description: Weer beschrijving
+ options:
+ basic: Basis
+ standard: Standaard
+ expanded: Uitgebreid
+ custom: Aangepast
+ custom_settings: Aangepaste Instellingen
+ quicklinks:
+ additional: Extra Instellingen voor snelkoppeling uiterlijk en functies
+ add_link: Voeg Koppeling toe
+ no_quicklinks: Geen snelkoppelingen
+ edit: Bewerk
+ style: Stijl
+ options:
+ icon: Icoon
+ text_only: Alleen Tekst
+ styling: Uiterlijk Van Snelkoppelingen
+ styling_description: Bewerk het uiterlijk van snelkoppelingen
+ message:
+ messages: Berichten
+ no_messages: Geen berichten
+ add_some: Ga je gang en voeg wat toe.
+ content: Berichtinhoud
+ appearance:
+ style:
+ title: Widgetstijl
+ description: "Kies tussen de twee stijlen: legacy (ingeschakeld voor gebruikers
+ vóór 7.0) en onze strakke moderne stijl."
+ new: Nieuw
+ theme:
+ description: Wijzig het thema van de Mue-widgets en modals
+ navbar:
+ refresh_subtitle: Kies wat vernieuwd wordt als je op de vernieuw knop klikt
+ additional: Bewerk de navigatiebalk stijl en welke knoppen worden laten zien
+ refresh_options: {}
+ apps_subtitle: Maak een snelkoppeling van je andere vaak gebruikte websites.
+ font:
+ description: Verandert het lettertype gebruikt in Mue
+ weight: {}
+ style: {}
+ accessibility:
+ description: Instellingen voor toegankelijkheid in Mue
+ text_shadow: {}
+ order: {}
+ advanced:
+ offline_mode: Offline-modus
+ offline_subtitle: Indien ingeschakeld worden alle verzoeken naar online diensten
+ uitgeschakeld.
+ data_subtitle: Kies of je jou Mue-instellingen naar je computer wilt exporteren,
+ een bestaand instellingenbestand wilt importeren of je instellingen wilt
+ terugzetten naar hun standaardwaarden
+ reset_modal: {}
+ custom_css_subtitle: Maak Mue je eigen door middel van Cascading Style Sheets (CSS).
+ tab_name_subtitle: Verander de naam van het tabblad dat in je browser tevoorschijn komt
+ timezone:
+ subtitle: Kies een tijdzone van de lijst in plaats van de automatische standaard
+ van je computer
+ preview_data_disabled: {}
+ stats:
+ sections: {}
+ achievements: Prestaties
+ unlocked: "{count} Ontgrendeld"
+ clear_modal: {}
+ experimental:
+ title: Experimenteel
+ language:
+ title: Taal
+ changelog: {}
+ about:
+ version:
+ error: {}
+ support_subtitle: Omdat Mue volledig gratis is, zijn we afhankelijk van donaties
+ om de serverrekeningen te dekken en de ontwikkeling te financieren
+ support_donate: Doneer
+ form_button: Forum
+ resources_used: {}
+buttons:
+ reset: Herstellen
+ import: Importeren
+ export: Exporteren
diff --git a/src/i18n/nl/_welcome.yml b/src/i18n/nl/_welcome.yml
new file mode 100644
index 00000000..47a826b1
--- /dev/null
+++ b/src/i18n/nl/_welcome.yml
@@ -0,0 +1,22 @@
+sections:
+ intro:
+ notices:
+ discord_title: Wordt lid van onze Discord server
+ discord_description: Praat met de Mue gemeenschap en ontwikkelaars
+ discord_join: Meedoen
+ github_title: Draag bij op GitHub
+ github_description: Rapporteer bugs, voeg functies toe of doneer
+ github_open: Openen
+ language: {}
+ theme: {}
+ style:
+ title: Kies een stijl
+ description: Mue biedt momenteel de keuze aan tussen de oude stijl en de nieuw
+ uitgebrachte moderne stijl.
+ settings: {}
+ privacy:
+ links: {}
+ final: {}
+buttons:
+ finish: Afronden
+preview: {}
diff --git a/src/i18n/nl/main.yml b/src/i18n/nl/main.yml
new file mode 100644
index 00000000..313dcf42
--- /dev/null
+++ b/src/i18n/nl/main.yml
@@ -0,0 +1,92 @@
+tabname: Nieuw Tabblad
+widgets:
+ greeting:
+ morning: Goedemorgen
+ afternoon: Goedemiddag
+ evening: Goedenavond
+ christmas: Fijne kerstdagen
+ newyear: Gelukkig nieuwjaar
+ halloween: Fijne Halloween
+ birthday: Gefeliciteerd
+ background:
+ credit: Foto van
+ unsplash: op Unsplash
+ downloads: Downloaden
+ views: Keer bekeken
+ likes: Vind ik leuk
+ location: Locatie
+ resolution: Resolutie
+ source: Bron
+ category: Categorie
+ exclude: Niet meer laten zien
+ exclude_confirm: >-
+ Weet je zeker dat je deze afbeelding niet meer wilt zien?
+
+ Opmerking: als u niet van "{category}"-afbeeldingen houdt, kunt u de
+ categorie deselecteren in de achtergrondbroninstellingen.
+ confirm: Bevestigen
+ search: Zoeken
+ quicklinks:
+ new: Nieuwe Koppeling
+ edit: Bewerk Koppeling
+ name: Naam
+ icon: Icoon (optioneel)
+ add: Toevoegen
+ name_error: Naam moet worden opgegeven
+ url_error: URL moet worden opgegeven
+ date: {}
+ weather:
+ not_found: Niet Gevonden
+ meters: "{amount} meter"
+ extra_information: Extra Informatie
+ feels_like: Voelt als {amount}
+ quote:
+ link_tooltip: Openen op Wikipedia
+ share: Deel
+ copy: Kopieerknop
+ favourite: Favoriet
+ unfavourite: Verwijder als favoriet
+ navbar:
+ tooltips:
+ refresh: Vernieuw
+ notes:
+ title: Notities
+ placeholder: Typ hier
+ todo:
+ title: Taken
+ pin: Vastzetten
+ add: Toevoegen
+ no_todos: Geen taken
+ apps:
+ title: Applicaties
+ no_apps: Geen app-links gevonden
+modals:
+ main:
+ title: Opties
+ loading: Bezig met laden…
+ file_upload_error: Bestand is boven de 2MB
+ navbar:
+ settings: Instellingen
+ addons: Extensies
+ marketplace: Marktplaats
+ error_boundary:
+ title: Foutmelding
+ message: Kan dit onderdeel van Mue niet laden
+ report_error: Stuur foutrapport
+ sent: Verstuurd!
+ refresh: Vernieuw
+ update:
+ offline: {}
+ error: {}
+ share:
+ copy_link: Kopieer link
+ email: E-mail
+toasts:
+ quote: Het citaat is gekopieerd
+ reset: Het herstellen is voltooid
+ installed: De installatie is voltooid
+ uninstalled: Het verwijderen is voltooid
+ error: Er is iets misgegaan
+ imported: Het importeren is voltooid
+ no_storage: Niet genoeg opslag
+ link_copied: Link gekopieerd
diff --git a/src/i18n/no/_achievements.yml b/src/i18n/no/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/no/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/no/_addons.yml b/src/i18n/no/_addons.yml
new file mode 100644
index 00000000..57ed6644
--- /dev/null
+++ b/src/i18n/no/_addons.yml
@@ -0,0 +1,9 @@
+added: Lagt til
+empty:
+ title: Det er tomt her.
+ description: Gå til markedsplassen å legg til noe
+sideload:
+ errors: {}
+sort: {}
+create:
+ moved_button: Get Started
diff --git a/src/i18n/no/_marketplace.yml b/src/i18n/no/_marketplace.yml
new file mode 100644
index 00000000..7776453c
--- /dev/null
+++ b/src/i18n/no/_marketplace.yml
@@ -0,0 +1,14 @@
+photo_packs: Bilde pakker
+quote_packs: Sitat pakker
+preset_settings: Preset instillinger
+product:
+ overview: Oversikt
+ information: Informasjon
+ last_updated: Sist oppdatert
+ version: Versjon
+ buttons:
+ addtomue: Legg Til Mue
+ remove: Fjern
+offline:
+ title: Ser ut som at du er offiline
+ description: Vær så snill, koble til internettet
diff --git a/src/i18n/no/_settings.yml b/src/i18n/no/_settings.yml
new file mode 100644
index 00000000..0912b192
--- /dev/null
+++ b/src/i18n/no/_settings.yml
@@ -0,0 +1,87 @@
+reminder: {}
+sections:
+ header: {}
+ time:
+ title: Tid
+ type_subtitle: Choose whether to display the time in digital or analogue format,
+ or a percentage completion of the day
+ digital:
+ seconds: Sekunder
+ twentyfourhour: 24 Timer
+ zero: Ekstra Null
+ analogue: {}
+ vertical_clock: {}
+ date:
+ type: {}
+ short_separator: {}
+ quote:
+ title: Sitat
+ buttons:
+ copy: Kopier knapp
+ greeting:
+ title: Hallo
+ events: Planer
+ default: Standard Hallo Melding
+ name: Navn for Hallo
+ background:
+ title: Bakgrunn
+ buttons: {}
+ effects:
+ blur: Juster Blur
+ filters: {}
+ type: {}
+ unsplash: {}
+ source:
+ api: Bakgrunn API
+ custom_background: Personlig bakgrunn
+ custom_colour: Personlig Bakgrunn Farge
+ add_colour: Legg til farge
+ quality: {}
+ search:
+ title: Søkebar
+ search_engine: Søkemotor
+ custom: Custom Search
+ dropdown: Search dropdown
+ weather:
+ temp_format: {}
+ extra_info: {}
+ options: {}
+ quicklinks:
+ options: {}
+ message: {}
+ appearance:
+ style: {}
+ theme: {}
+ navbar:
+ refresh_options: {}
+ font:
+ weight: {}
+ style: {}
+ accessibility:
+ animations: Animasjoner
+ text_shadow: {}
+ order: {}
+ advanced:
+ offline_mode: Frakoblet Modus
+ 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: {}
+ timezone: {}
+ preview_data_disabled: {}
+ stats:
+ sections: {}
+ clear_modal: {}
+ experimental:
+ title: Eksperimental
+ language:
+ title: Språk
+ changelog: {}
+ about:
+ version:
+ error: {}
+ resources_used: {}
+buttons:
+ reset: Nullstill
+ import: Importer
+ export: Eksporter
diff --git a/src/i18n/no/_welcome.yml b/src/i18n/no/_welcome.yml
new file mode 100644
index 00000000..7375bc9c
--- /dev/null
+++ b/src/i18n/no/_welcome.yml
@@ -0,0 +1,12 @@
+sections:
+ intro:
+ notices: {}
+ language: {}
+ theme: {}
+ style: {}
+ settings: {}
+ privacy:
+ links: {}
+ final: {}
+buttons: {}
+preview: {}
diff --git a/src/i18n/no/main.yml b/src/i18n/no/main.yml
new file mode 100644
index 00000000..b48f5d0f
--- /dev/null
+++ b/src/i18n/no/main.yml
@@ -0,0 +1,43 @@
+widgets:
+ greeting:
+ morning: God Morgen
+ afternoon: God Ettermiddag
+ evening: God Kveld
+ christmas: God Jul
+ newyear: Godt Nyttår
+ halloween: Ha en god Halloween
+ background:
+ credit: Bilde av
+ downloads: Nedlastinger
+ search: Søk
+ quicklinks: {}
+ date: {}
+ weather:
+ meters: "{amount} meter"
+ quote: {}
+ navbar:
+ tooltips: {}
+ notes: {}
+ todo: {}
+ apps: {}
+modals:
+ main:
+ loading: Laster...
+ navbar:
+ settings: Instillinger
+ addons: Mine add-ons
+ marketplace: Markedsplass
+ error_boundary: {}
+ update:
+ title: Oppdater
+ offline:
+ description: Kan ikke få oppdatering loggene når i offline modus
+ error:
+ description: Kan ikke koble til serveren.
+ share: {}
+toasts:
+ quote: Sitat kopiert
+ reset: Tilbakestillte vellykket
+ installed: Installert
+ uninstalled: Fjernet
+ error: Noe gikk galt
diff --git a/src/i18n/pt-BR/_achievements.yml b/src/i18n/pt-BR/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/pt-BR/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/pt-BR/_addons.yml b/src/i18n/pt-BR/_addons.yml
new file mode 100644
index 00000000..8e8e8761
--- /dev/null
+++ b/src/i18n/pt-BR/_addons.yml
@@ -0,0 +1,27 @@
+added: Adicionado
+check_updates: Verifique se há atualizações
+no_updates: Nenhuma atualização disponível
+updates_available: Atualizações disponíveis {amount}
+empty:
+ title: Vazio
+ description: Nenhum complemento está instalado
+sideload:
+ title: Carregar localmente
+ description: Instale um complemento Mue que não esteja no mercado a partir do
+ seu computador
+ failed: Falha ao carregar o complemento
+ errors:
+ no_name: Nenhum nome fornecido
+ no_author: Nenhum autor fornecido
+ no_type: Nenhum tipo fornecido
+ invalid_photos: Objeto de fotos inválido
+ invalid_quotes: Objeto de citações inválido
+sort:
+ title: Organizar
+ newest: Instalado (mais recente)
+ oldest: Instalado (mais antigo)
+ a_z: Alfabética (A-Z)
+ z_a: Alfabética (Z-A)
+create:
+ title: Criar
+ moved_button: Get Started
diff --git a/src/i18n/pt-BR/_marketplace.yml b/src/i18n/pt-BR/_marketplace.yml
new file mode 100644
index 00000000..658633ad
--- /dev/null
+++ b/src/i18n/pt-BR/_marketplace.yml
@@ -0,0 +1,40 @@
+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
+ 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
diff --git a/src/i18n/pt-BR/_settings.yml b/src/i18n/pt-BR/_settings.yml
new file mode 100644
index 00000000..3eab5545
--- /dev/null
+++ b/src/i18n/pt-BR/_settings.yml
@@ -0,0 +1,344 @@
+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:
+ 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
+ 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
+ custom_image: Imagem personalizada
+ custom_colour: Cor/gradiente personalizados
+ random_colour: cor aleatória
+ random_gradient: Gradiente aleatório
+ unsplash: {}
+ 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
+ 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)
+ 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
+ widget_type: Tipo de widget
+ temp_format:
+ title: Unidade de temperatura
+ extra_info:
+ title: Informação extra
+ show_location: Mostrar localização
+ show_description: Mostrar descrição
+ weather_description: Descrição do tempo
+ cloudiness: Nebulosidade
+ humidity: Umidade
+ visibility: Visibilidade
+ wind_speed: Velocidade do vento
+ wind_direction: Direção do vento
+ min_temp: Temperatura mínima
+ max_temp: Temperatura máxima
+ atmospheric_pressure: Pressão atmosférica
+ options:
+ basic: básico
+ standard: Padrão
+ expanded: expandido
+ custom: Personalizado
+ custom_settings: Configurações personalizadas
+ quicklinks:
+ title: Links Rápidos
+ additional: Configurações adicionais para exibição e funções de links rápidos
+ open_new: Abrir em nova guia
+ tooltip: Dica de ferramenta
+ text_only: Mostrar apenas texto
+ add_link: Adicionar link
+ no_quicklinks: Sem links rápidos
+ edit: Editar
+ style: Estilo
+ options:
+ icon: Ícone
+ text_only: Somente texto
+ 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
+ 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
+ medium: Médio
+ semi_bold: Semi-negrito
+ bold: Negrito
+ extra_bold: Extra Negrito
+ style:
+ title: Estilo de fonte
+ 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.
+ preview_data_disabled: {}
+ stats:
+ title: Estatísticas
+ sections:
+ tabs_opened: Abas abertas
+ backgrounds_favourited: Planos de fundo favoritos
+ backgrounds_downloaded: Planos de fundo baixados
+ quotes_favourited: Citações favoritas
+ quicklinks_added: Links rápidos adicionados
+ settings_changed: Configurações alteradas
+ addons_installed: Complementos instalados
+ usage: Estatísticas de uso
+ achievements: Conquistas
+ unlocked: "{count} Desbloqueado"
+ clear_modal: {}
+ 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
+ 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
diff --git a/src/i18n/pt-BR/_welcome.yml b/src/i18n/pt-BR/_welcome.yml
new file mode 100644
index 00000000..3e74c6fb
--- /dev/null
+++ b/src/i18n/pt-BR/_welcome.yml
@@ -0,0 +1,65 @@
+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.
+ 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
diff --git a/src/i18n/pt-BR/main.yml b/src/i18n/pt-BR/main.yml
new file mode 100644
index 00000000..6cd5c5fc
--- /dev/null
+++ b/src/i18n/pt-BR/main.yml
@@ -0,0 +1,98 @@
+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
+ 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?
+
+ Nota: se você não gosta de imagens "{category}", pode desmarcar a
+ categoria nas configurações de origem do plano de fundo.
+ confirm: Confirmar
+ search: Pesquisar
+ quicklinks:
+ new: Novo link
+ name: Nome
+ 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: "{amount} metros"
+ extra_information: Informação extra
+ feels_like: Parece {amount}
+ 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: Sem afazeres
+ apps: {}
+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
+ update:
+ title: Atualizar
+ offline:
+ description: Não é possível obter logs de atualização no modo offline
+ error:
+ title: Erro
+ description: Não pode conectar-se ao servidor
+ share:
+ copy_link: Copiar link
+toasts:
+ quote: Citação copiada
+ notes: Notas copiadas
+ reset: Redefinido com sucesso
+ installed: Instalado com sucesso
+ uninstalled: Removido com sucesso
+ updated: Atualizado com sucesso
+ error: Algo deu errado
+ imported: Importado com sucesso
+ no_storage: Espaço de armazenamento insuficiente
+ link_copied: Link copiado
diff --git a/src/i18n/pt/_achievements.yml b/src/i18n/pt/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/pt/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/pt/_addons.yml b/src/i18n/pt/_addons.yml
new file mode 100644
index 00000000..e9dac037
--- /dev/null
+++ b/src/i18n/pt/_addons.yml
@@ -0,0 +1,26 @@
+added: Adicionado
+check_updates: Verifique se há atualizações
+no_updates: Nenhuma atualização disponível
+updates_available: Atualizações disponíveis {amount}
+empty:
+ title: Vazio
+ description: Nenhum complemento está instalado
+sideload:
+ title: Carregar localmente
+ description: Instale um complemento Mue que não esteja no mercado do seu computador
+ failed: Falha ao carregar o complemento
+ errors:
+ no_name: Nenhum nome fornecido
+ no_author: Nenhum autor fornecido
+ no_type: Nenhum tipo fornecido
+ invalid_photos: Objeto de fotos inválido
+ invalid_quotes: Objeto de citações inválido
+sort:
+ title: Organizar
+ newest: Instalado (mais recente)
+ oldest: Instalado (mais antigo)
+ a_z: Alfabética (A-Z)
+ z_a: Alfabética (Z-A)
+create:
+ title: Criar
+ moved_button: Get Started
diff --git a/src/i18n/pt/_marketplace.yml b/src/i18n/pt/_marketplace.yml
new file mode 100644
index 00000000..8d46d1ad
--- /dev/null
+++ b/src/i18n/pt/_marketplace.yml
@@ -0,0 +1,40 @@
+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
+ 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
diff --git a/src/i18n/pt/_settings.yml b/src/i18n/pt/_settings.yml
new file mode 100644
index 00000000..cfcfd041
--- /dev/null
+++ b/src/i18n/pt/_settings.yml
@@ -0,0 +1,343 @@
+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:
+ 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
+ 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
+ custom_image: Imagem personalizada
+ custom_colour: Cor/gradiente personalizados
+ random_colour: cor aleatória
+ random_gradient: Gradiente aleatório
+ unsplash: {}
+ 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
+ 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)
+ 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
+ widget_type: Tipo de widget
+ temp_format:
+ title: Unidade de temperatura
+ extra_info:
+ title: Informação extra
+ show_location: Mostrar localização
+ show_description: Mostrar descrição
+ weather_description: Descrição do clima
+ cloudiness: Nebulosidade
+ humidity: Humidade
+ visibility: Visibilidade
+ wind_speed: Velocidade do vento
+ wind_direction: Direção do vento
+ min_temp: Temperatura mínima
+ max_temp: Temperatura máxima
+ atmospheric_pressure: Pressão atmosférica
+ options:
+ basic: básico
+ standard: Padrão
+ expanded: expandido
+ custom: Personalizado
+ custom_settings: Configurações personalizadas
+ quicklinks:
+ title: Ligações Rápidas
+ additional: Configurações adicionais para exibição e funções de ligações rápidas
+ open_new: Abrir em nova guia
+ tooltip: Dica de ferramenta
+ text_only: Mostrar apenas texto
+ add_link: Adicionar Ligação
+ no_quicklinks: Sem links rápidos
+ edit: Editar
+ style: Estilo
+ options:
+ icon: Ícone
+ text_only: Somente texto
+ 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
+ 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
+ medium: Médio
+ semi_bold: Semi-negrito
+ bold: Negrito
+ extra_bold: Extra Negrito
+ style:
+ title: Estilo de fonte
+ 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.
+ preview_data_disabled: {}
+ stats:
+ title: Estatísticas
+ sections:
+ tabs_opened: Abas abertas
+ backgrounds_favourited: Planos de fundo favoritos
+ backgrounds_downloaded: Planos de fundo descarregados
+ quotes_favourited: Citações favoritas
+ quicklinks_added: Links rápidos adicionados
+ settings_changed: Configurações alteradas
+ addons_installed: Complementos instalados
+ usage: Estatísticas de uso
+ achievements: Conquistas
+ unlocked: "{count} Desbloqueado"
+ clear_modal: {}
+ 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
+ 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
diff --git a/src/i18n/pt/_welcome.yml b/src/i18n/pt/_welcome.yml
new file mode 100644
index 00000000..4e3b857f
--- /dev/null
+++ b/src/i18n/pt/_welcome.yml
@@ -0,0 +1,67 @@
+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.
+ 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
diff --git a/src/i18n/pt/main.yml b/src/i18n/pt/main.yml
new file mode 100644
index 00000000..2d3c3e92
--- /dev/null
+++ b/src/i18n/pt/main.yml
@@ -0,0 +1,98 @@
+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
+ 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?
+
+ Nota: se não gosta de imagens "{category}", pode desmarcar a categoria nas
+ configurações de origem do plano de fundo.
+ confirm: Confirmar
+ search: Pesquisar
+ quicklinks:
+ new: Nova ligação
+ name: Nome
+ 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: Sem Tarefas
+ apps: {}
+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
+ update:
+ title: Atualizar
+ offline:
+ description: Não é possível obter logs de atualização no modo offline
+ error:
+ title: Erro
+ description: Não pode conectar-se ao servidor
+ share:
+ copy_link: Copiar ligação
+toasts:
+ quote: Citação copiada
+ notes: Notas copiadas
+ reset: Redefinido com sucesso
+ installed: Instalado com sucesso
+ uninstalled: Removido com sucesso
+ updated: Atualizado com sucesso
+ error: Algo deu errado
+ imported: Importado com sucesso
+ no_storage: Espaço de armazenamento insuficiente
+ link_copied: Ligação copiada
diff --git a/src/i18n/ru/_achievements.yml b/src/i18n/ru/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/ru/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/ru/_addons.yml b/src/i18n/ru/_addons.yml
new file mode 100644
index 00000000..3211535c
--- /dev/null
+++ b/src/i18n/ru/_addons.yml
@@ -0,0 +1,24 @@
+added: Добавлен
+check_updates: Проверка обновлений
+no_updates: Обновления отсутствуют
+updates_available: Доступны обновления {amount}
+empty:
+ title: Здесь пусто
+ description: Зайдите в магазин, чтобы найти что-то интересное
+sideload:
+ title: Загрузить
+ description: Установить аддон Mue, не представленную на торговой площадке, со
+ своего компьютера
+ failed: Не удалось загрузить аддоны
+ errors:
+ no_name: Название не указано
+ no_author: Автор не указан
+ no_type: Тип не указан
+ invalid_photos: Недопустимый объект фотографии
+sort:
+ title: Сортировка
+create:
+ title: Создать
+ moved_title: Создание аддонов переместилось!
+ moved_description: После обновления 7.1, создание дополнений теперь переместилось в веб-UI
+ moved_button: Get Started
diff --git a/src/i18n/ru/_marketplace.yml b/src/i18n/ru/_marketplace.yml
new file mode 100644
index 00000000..190bf58d
--- /dev/null
+++ b/src/i18n/ru/_marketplace.yml
@@ -0,0 +1,39 @@
+by: от {author}
+all: Все
+learn_more: Узнать больше
+photo_packs: Наборы фото
+quote_packs: Наборы цитат
+preset_settings: Пресеты настроек
+no_items: Нет элементов в этой категории
+collection: Коллекция
+explore_collection: Исследуйте коллекцию
+add_all: Добавить все в Mue
+collections: Коллекции
+cant_find: Не можете найти то, что ищете?
+knowledgebase_one: Посетить
+knowledgebase_two: база знаний
+knowledgebase_three: чтобы создать свой собственный.
+product:
+ overview: Обзор
+ information: Информация
+ last_updated: Последнее обновление
+ description: Описание
+ show_more: Показать больше
+ show_less: Показать меньше
+ show_all: Показать все
+ showing: Показаны
+ no_images: № Изображения
+ no_quotes: Цитаты
+ version: Версия
+ part_of: Часть
+ explore: Обзор
+ buttons:
+ addtomue: Добавить в Mue
+ remove: Удалить
+ back: Назад
+ report: Жалоба
+ setting: Параметр
+ value: Цена
+offline:
+ title: Похоже, что вы офлайн
+ description: Пожалуйста, подключитесь к интернету
diff --git a/src/i18n/ru/_settings.yml b/src/i18n/ru/_settings.yml
new file mode 100644
index 00000000..18d350ba
--- /dev/null
+++ b/src/i18n/ru/_settings.yml
@@ -0,0 +1,315 @@
+enabled: Включено
+open_knowledgebase: Открытая база знаний
+additional_settings: Дополнительные настройки
+reminder:
+ message: Для того чтобы все изменения произошли, необходимо обновить страницу.
+sections:
+ header:
+ more_info: Больше информации
+ report_issue: Сообщить о проблеме
+ enabled: Выберите, показывать ли этот виджет
+ size: Ползунок для управления размером виджета
+ time:
+ title: Время
+ type_subtitle: "Выберите, в каком формате будет отображаться время: в цифровом,
+ аналоговом или в процентах завершения дня"
+ digital:
+ title: Цифровые
+ subtitle: Измените внешний вид цифровых часов
+ seconds: Секунды
+ twentyfourhour: 24 Часа
+ twelvehour: 12 часов
+ zero: Дополнительный ноль
+ analogue:
+ title: Аналоговые
+ subtitle: Измените внешний вид аналоговых часов
+ second_hand: Секундная стрелка
+ minute_hand: Минутная стрелка
+ hour_hand: Часовая стрелка
+ hour_marks: Часовые метки
+ minute_marks: Минутные метки
+ round_clock: Округлый фон
+ percentage_complete: Процент завершения
+ vertical_clock:
+ title: Вертикальные часы
+ change_hour_colour: Изменить цвет текста часа
+ change_minute_colour: Изменить цвет текста минут
+ date:
+ week_number: Число недели
+ day_of_week: День недели
+ datenth: Дата n-ая
+ type:
+ short: Короткая
+ long: Длинная
+ subtitle: Отображать ли дату в длинной или короткой форме
+ type_settings: Настройки отображения и формат для выбранного типа даты
+ short_date: Короткая дата
+ short_format: Короткий формат
+ long_format: Длинный формат
+ short_separator:
+ title: Короткий разделитель
+ dots: Точки
+ dash: Тире
+ gaps: Пробелы
+ slashes: Слэшы
+ quote:
+ title: Цитата
+ additional: Другие настройки для настройки стиля виджета котировок
+ custom: Пользовательская цитата
+ custom_subtitle: Установите свои собственные пользовательские цитаты
+ no_quotes: Без кавычек
+ author: Автор
+ custom_buttons: Кнопки
+ custom_author: Пользовательский автор
+ author_img: Показать изображение автора
+ add: Добавить цитату
+ source_subtitle: Выберите, откуда брать цитаты
+ buttons:
+ title: Кнопки
+ subtitle: Выберите, какие кнопки отображать в котировке
+ copy: Кнопка копирования
+ tweet: Кнопка твита
+ favourite: Кнопка для оценки
+ greeting:
+ title: Приветствие
+ events: События
+ default: Сообщение с приветствием по-умолчанию
+ name: Имя для приветствия
+ birthday: День рождения
+ birthday_subtitle: Показать сообщение с днем рождения, когда это ваш день рождения
+ birthday_age: Возраст рождения
+ birthday_date: Дата рождения
+ additional: Настройки отображения приветствия
+ background:
+ title: Фон
+ transition: Затухающий переход
+ photo_information: Показать информацию о фотографии
+ show_map: Показывать карту местоположения на фотографии, если она доступна
+ categories: Категории
+ buttons:
+ title: Кнопки
+ view: Просмотр
+ favourite: Любимые
+ effects:
+ title: Эффекты
+ subtitle: Добавляйте эффекты к фоновым изображениям
+ blur: Размытие
+ brightness: Яркость
+ filters:
+ title: Фильтр фона
+ amount: Количество фильтров
+ grayscale: Градации серого
+ sepia: Сепия
+ invert: Негатив
+ saturate: Насыщенность
+ contrast: Контраст
+ type:
+ custom_image: Пользовательское изображение
+ custom_colour: Пользовательский цвет/градиент
+ random_colour: Случайный цвет
+ random_gradient: Случайный градиент
+ unsplash: {}
+ source:
+ subtitle: Выберите, откуда брать фоновые изображения
+ api: API для фона
+ custom_background: Пользовательский фон
+ custom_colour: Пользовательский цвет фон
+ upload: Загрузить
+ add_colour: Добавить цвет
+ add_background: Добавить фон
+ drop_to_upload: Перетащите, чтобы загрузить
+ formats: "Доступные форматы: {список}"
+ select: Или выберите
+ disabled: Выключен
+ loop_video: Зацикленное видео
+ mute_video: Отключить звук видео
+ quality:
+ title: Качество
+ high: Высокое качество
+ normal: Нормальное качество
+ custom_title: Пользовательские изображения
+ custom_description: Выберите изображения с вашего локального компьютера
+ remove: Удалить изображение
+ display: Отображать
+ display_subtitle: Изменение способа загрузки фона и информации о фотографии
+ api: Настройки API
+ api_subtitle: Варианты получения изображения из внешнего сервиса (API)
+ search:
+ title: Панель поиска
+ additional: Дополнительные параметры отображения и функциональности поискового виджета
+ search_engine: Поисковый движок
+ search_engine_subtitle: Выберите поисковую систему для использования в строке поиска
+ custom: Пользовательский поисковый движок
+ autocomplete: Автозаполнение
+ autocomplete_provider: Поставщик автозаполнения
+ autocomplete_provider_subtitle: Поисковая система, используемая для выпадающих результатов автозаполнения
+ voice_search: Поиск голосом
+ dropdown: Выпадающий список поиска
+ focus: Фокус на открытой вкладке
+ weather:
+ title: Погода
+ location: Локация
+ widget_type: Тип виджета
+ temp_format:
+ title: Формат температуры
+ celsius: Цельсии
+ fahrenheit: Фаренгейт
+ kelvin: Кельвин
+ extra_info:
+ show_location: Показать расположение
+ show_description: Показать описание
+ weather_description: Описание погоды
+ cloudiness: Облачность
+ humidity: Влажность
+ visibility: Видимость
+ wind_speed: Сила ветра
+ wind_direction: Направление ветра
+ min_temp: Минимальная температура
+ max_temp: Максимальная температура
+ atmospheric_pressure: Атмосферное давление
+ options:
+ basic: Базовый
+ standard: Стандарт
+ expanded: Расширенный
+ custom: Свой
+ custom_settings: Пользовательские настройки
+ quicklinks:
+ title: Быстрые ссылки
+ additional: Дополнительные настройки отображения и функций быстрых ссылок
+ open_new: Открывать в новой вкладке
+ tooltip: Всплывающая подсказка
+ text_only: Показывать только текст
+ add_link: Добавить ссылку
+ no_quicklinks: Нет быстрых ссылок
+ edit: Редактировать
+ style: Стиль
+ options:
+ icon: Иконка
+ text_only: Только текст
+ metro: Метро
+ styling: Стиль быстрых ссылок
+ styling_description: Настройка внешнего вида быстрых ссылок
+ message:
+ messages: Сообщения
+ no_messages: Нет сообщений
+ add_some: Идем дальше и добавить некоторые.
+ content: Содержание сообщения
+ appearance:
+ title: Оформление
+ style:
+ title: Стиль виджета
+ description: "Выберите один из двух стилей: устаревший (доступен для
+ пользователей, предшествующих версии 7.0) и наш стильный современный
+ стиль."
+ legacy: Устаревшее
+ new: Новый
+ theme:
+ description: Измените тему виджетов и модальных окон Mue
+ light: Светлая
+ dark: Тёмная
+ navbar:
+ title: Навбар
+ refresh: Кнопка перезагрузки
+ refresh_subtitle: Выберите, что будет обновляться при нажатии кнопки обновления
+ hover: Отображение только при наведении
+ additional: Измените стиль панели навигации и какие кнопки вы хотите отображать
+ refresh_options: {}
+ font:
+ description: Измените шрифт, используемый в Mue
+ custom: Пользовательский шрифт
+ google: Импортировать из Google Fonts
+ weight:
+ title: Толщина шрифта
+ thin: Тонкий
+ extra_light: Очень тонкий
+ light: Лёгкий
+ semi_bold: Полужирный
+ bold: Жирный
+ extra_bold: Сверхжирный
+ style:
+ oblique: Курсив
+ accessibility:
+ title: Доступность
+ description: Настройки специальных возможностей для Mue
+ animations: Анимации
+ text_shadow:
+ title: Тень текста виджета
+ new: Новое
+ toast_duration: Продолжительность подсказки
+ milliseconds: миллисекунды
+ order:
+ title: Порядок виджетов
+ advanced:
+ title: Дополнительно
+ offline_mode: Офлайн режим
+ offline_subtitle: При включении все запросы к онлайн-сервисам будут отключены.
+ data_subtitle: Выберите, следует ли экспортировать настройки Mue на компьютер,
+ импортировать существующий файл настроек или сбросить настройки до
+ значений по умолчанию
+ reset_modal:
+ question: Вы хотите сбросить Mue?
+ information: Это приведет к удалению всех данных. Если вы хотите сохранить свои
+ данные и предпочтения, сначала экспортируйте их.
+ cancel: Отменить
+ customisation: Кастомизация
+ custom_css: Пользовательский CSS
+ custom_css_subtitle: Настройте стиль Mue под себя с помощью каскадных таблиц стилей (CSS).
+ custom_js: Пользовательский JS
+ tab_name_subtitle: Измените название вкладки, которая появляется в вашем браузере
+ timezone:
+ title: Часовой пояс
+ subtitle: Выберите часовой пояс из списка вместо автоматического по умолчанию с
+ вашего компьютера
+ automatic: Автоматически
+ experimental_warning: Обратите внимание, что команда Mue не может оказать
+ поддержку, если у вас включен экспериментальный режим. Пожалуйста, сначала
+ отключите его и посмотрите, сохранится ли проблема, прежде чем обращаться
+ в службу поддержки.
+ preview_data_disabled: {}
+ stats:
+ sections:
+ tabs_opened: Открытые вкладки
+ backgrounds_favourited: Избранные фоны
+ backgrounds_downloaded: Загруженные фоны
+ quotes_favourited: Избранные цитаты
+ quicklinks_added: Добавлены быстрые ссылки
+ settings_changed: Изменены настройки
+ addons_installed: Установленные аддоны
+ usage: Статистика использования
+ achievements: Достижения
+ unlocked: "{count} разблокировано"
+ clear_modal: {}
+ experimental:
+ title: Экспериментальные настройки
+ warning: Данные настройки не были полностью протестированы/реализованы и могут
+ работать некорректно!
+ language:
+ title: Язык
+ quote: Язык цитат
+ changelog:
+ title: Журнал изменений
+ about:
+ title: О программе
+ version:
+ checking_update: Проверка обновлений
+ update_available: Обновление доступно
+ no_update: Нет доступных обновлений
+ offline_mode: Невозможно проверить наличие обновления в автономном режиме
+ error:
+ title: Не удалось получить информацию об обновлении
+ description: Обнаружена ошибка
+ support_subtitle: Поскольку Mue полностью бесплатен, мы полагаемся на
+ пожертвования для покрытия счетов за сервер и финансирования развития
+ support_donate: Пожертвовать
+ form_button: Форма
+ resources_used:
+ title: Используемые ресурсы
+ bg_images: Фоновые изображения в оффлайне
+ contributors: Участники
+ supporters: Поддержка
+ no_supporters: В настоящее время нет поддержки Mue
+ photographers: Фотографы
+buttons:
+ reset: Сбросить
+ import: Импорт
+ export: Экспорт
diff --git a/src/i18n/ru/_welcome.yml b/src/i18n/ru/_welcome.yml
new file mode 100644
index 00000000..0ee48dc0
--- /dev/null
+++ b/src/i18n/ru/_welcome.yml
@@ -0,0 +1,31 @@
+sections:
+ intro:
+ title: Добро пожаловать в Mue Tab
+ notices:
+ discord_title: Присоединяйтесь к нашему дискорду
+ discord_description: Поговорите с сообществом Mue и разработчиками
+ discord_join: Присоединиться
+ github_title: Внесите свой вклад в GitHub
+ github_description: Сообщайте об ошибках, добавляйте функции или пожертвуйте
+ github_open: Открыть
+ language:
+ title: Выберите свой язык
+ theme:
+ title: Выберите тему
+ style:
+ title: Выберите стиль
+ description: В настоящее время Mue предлагает выбор между устаревшим стилем и
+ недавно выпущенным современным стилем.
+ legacy: Устаревший
+ modern: Современное
+ settings:
+ title: Импортировать настройки
+ privacy:
+ links: {}
+ final:
+ title: Последний шаг
+ changes: Изменения
+buttons:
+ close: Закрыть
+preview:
+ continue: Продолжить установку
diff --git a/src/i18n/ru/main.yml b/src/i18n/ru/main.yml
new file mode 100644
index 00000000..11f1dbc8
--- /dev/null
+++ b/src/i18n/ru/main.yml
@@ -0,0 +1,91 @@
+tabname: Новая вкладка
+widgets:
+ greeting:
+ morning: Доброе утро
+ afternoon: Добрый день
+ evening: Добрый вечер
+ christmas: С Рождеством
+ newyear: С Новым Годом
+ halloween: Счастливого Хэллоуина
+ birthday: С Днём рождения
+ background:
+ credit: Фото
+ unsplash: на Unsplash
+ downloads: Загрузки
+ views: Просмотры
+ likes: Нравится
+ location: Локация
+ camera: Камера
+ resolution: Разрешение
+ source: Источник
+ category: Категория
+ exclude: Больше не показывать
+ exclude_confirm: >-
+ Вы уверены, что больше не хотите видеть это изображение?
+
+ Примечание: если вам не нравятся изображения "{category}", вы можете
+ отменить выбор категории в настройках источника фона.
+ confirm: Подтверждаю
+ search: Поиск
+ quicklinks:
+ new: Новая ссылка
+ icon: Значок (необязательно)
+ name_error: Должно содержать имя
+ url_error: Должно содержать URL
+ date:
+ week: Неделя
+ weather:
+ not_found: Не найдено
+ meters: "{amount} метры"
+ extra_information: Дополнительная информация
+ feels_like: По ощущениям {amount}
+ quote:
+ link_tooltip: Открыть в Википедии
+ share: Поделиться
+ copy: Копировать
+ favourite: Избранное
+ unfavourite: Не нравится
+ navbar:
+ tooltips:
+ refresh: Перезагрузить
+ notes:
+ placeholder: Напишите здесь
+ todo:
+ title: Задачи
+ pin: Прикрепить
+ add: Добавить
+ no_todos: Нет задач
+ apps: {}
+modals:
+ main:
+ loading: Загрузка...
+ file_upload_error: Файл больше 2 МБ
+ navbar:
+ settings: Настройки
+ addons: Аддоны
+ marketplace: Магазин
+ error_boundary:
+ title: Ошибка
+ message: Не удалось загрузить этот компонент Mue
+ report_error: Отправить сообщение об ошибке
+ sent: Отправил!
+ refresh: Обновить
+ update:
+ title: Обновление
+ offline:
+ title: Офлайн
+ description: Не удалось получить журнал обновления в офлайн режиме
+ error:
+ title: Ошибка
+ share:
+ copy_link: Копировать ссылку
+ email: Эл. адрес
+toasts:
+ quote: Цитата скопирована
+ reset: Сброшено
+ installed: Успешно установлено
+ uninstalled: Успешно удалено
+ error: Что-то пошло не так
+ imported: Успешно импортировано
+ no_storage: Недостаточно места
+ link_copied: Ссылка скопирована
diff --git a/src/i18n/tr/_achievements.yml b/src/i18n/tr/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/tr/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/tr/_addons.yml b/src/i18n/tr/_addons.yml
new file mode 100644
index 00000000..be328964
--- /dev/null
+++ b/src/i18n/tr/_addons.yml
@@ -0,0 +1,29 @@
+added: Eklentiler
+check_updates: Güncellemeleri kontrol et.
+no_updates: Güncelleme mevcut değil.
+updates_available: Güncellemeler mevcut {amount} !
+empty:
+ title: Boş
+ description: Hiçbir eklenti yüklü değil.
+sideload:
+ title: Diğer Eklentiler
+ description: Bilgisayarınızdan pazar yerinde olmayan bir Mue eklentisi yükleyin.
+ failed: Eklenti yüklenemedi.
+ errors:
+ no_name: İsim belirtilmedi.
+ no_author: Yazar belirtilmedi.
+ no_type: Tür sağlanmadı.
+ invalid_photos: Geçersiz fotoğraf nesnesi
+ invalid_quotes: Geçersiz alıntı nesnesi
+sort:
+ title: Sırala
+ newest: Kurulanlar (En Yeni)
+ oldest: Kurulanlar (En Eski)
+ a_z: Alfabetik (A-Z)
+ z_a: Alfabetik (Z-A)
+create:
+ title: Oluştur
+ moved_title: Eklenti oluşturma taşındı!
+ moved_description: 7.1 güncellemesinden sonra, eklentilerin oluşturulması web
+ kullanıcı arayüzüne taşındı
+ moved_button: Başlayın
diff --git a/src/i18n/tr/_marketplace.yml b/src/i18n/tr/_marketplace.yml
new file mode 100644
index 00000000..447fd927
--- /dev/null
+++ b/src/i18n/tr/_marketplace.yml
@@ -0,0 +1,39 @@
+all: Tümü
+learn_more: Daha Fazla Bilgi Edin
+photo_packs: Fotoğraf Paketleri
+quote_packs: Alıntı Paketleri
+preset_settings: Ön Ayar Paketleri
+no_items: Bu kategoride öğe yok
+collection: Koleksiyon
+explore_collection: Koleksiyonu Keşfedin
+add_all: Hepsini Ekle
+collections: Koleksiyonlar
+cant_find: Aradığınızı bulamıyor musunuz?
+knowledgebase_one: "Kendiniz oluşturmak için "
+knowledgebase_two: "bilgilendirme sayfamızı "
+knowledgebase_three: ziyaret edin.
+product:
+ overview: Genel Bakış
+ information: Bilgi
+ last_updated: Son Güncelleme
+ description: Açıklama
+ 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
+ part_of: Parçası
+ explore: Keşfet
+ buttons:
+ addtomue: Mue Tab'ıma Ekle
+ remove: Kaldır
+ update_addon: Eklentiyi Güncelle
+ back: Geri
+ report: Raporla
+ setting: Ayarlar
+ value: Değer
+offline:
+ title: Görünüşe bakılırsa çevrimdışısınız!
+ description: Lütfen internete bağlanın ve tekrar deneyin.
diff --git a/src/i18n/tr/_settings.yml b/src/i18n/tr/_settings.yml
new file mode 100644
index 00000000..fe1e2262
--- /dev/null
+++ b/src/i18n/tr/_settings.yml
@@ -0,0 +1,351 @@
+enabled: Etkinleştir
+open_knowledgebase: Bilgilendirme Sayfasını Aç.
+additional_settings: Ek Ayarlar
+reminder:
+ title: UYARI
+ message: Tüm değişikliklerin gerçekleşmesi için sayfanın yenilenmesi gerekir.
+sections:
+ header:
+ more_info: Daha fazla bilgi
+ report_issue: Hata Bildir
+ enabled: Bu widget'ınızın gösterilip gösterilmeyeceğini seçin.
+ size: Widget'ınızın büyüklüğünü kontrol etmek için kaydırın.
+ time:
+ title: Saat
+ type: Tip
+ type_subtitle: Saat formatını dijital olarak, analog olarak veya günün
+ tamamlanma yüzdesi olarak göstermeyi seçin.
+ digital:
+ title: Dijital
+ subtitle: Dijital saatin görünümünü değiştirin.
+ seconds: Saniye gösterilsin.
+ twentyfourhour: 24 Saat
+ twelvehour: 12 Saat
+ zero: Sıfır eklensin.
+ analogue:
+ title: Analog
+ subtitle: Analog saatin nasıl görüntüleneceğini belirleyin.
+ second_hand: Saniye ibresi
+ minute_hand: Yelkovan (dakika) ibresi
+ hour_hand: Akrep (saat) ibresi
+ hour_marks: Saat çizgileri
+ minute_marks: Dakika çizgileri
+ round_clock: Yuvarlanmış arka plan
+ percentage_complete: Tamamlanma Yüzdesi
+ vertical_clock:
+ title: Dikey Saat
+ change_hour_colour: Saat Metni Rengini Değiştirin
+ change_minute_colour: Dakika Metni Rengini Değiştirin
+ date:
+ title: Gün
+ week_number: Hafta Sayısı
+ day_of_week: Haftanın Günü
+ datenth: Gün Vurgusu
+ type:
+ short: Kısa
+ long: Uzun
+ subtitle: Tarihin uzun veya kısa olmak üzere hangi biçimde görüntüleneceğini seçin.
+ type_settings: Seçilen tarih türü için ekran ayarları ve biçimi belirten
+ özellikleri belirleyin.
+ short_date: Kısa Tarih
+ short_format: Kısa biçim
+ long_format: Uzun biçim
+ short_separator:
+ title: Kısa Tarih Ayracı
+ dots: Nokta
+ dash: Kısa çizgi
+ gaps: Boşluk
+ slashes: Eğik çizgi
+ quote:
+ title: Alıntı
+ additional: Alıntı widget'ının stilini özelleştirmek için diğer ayarlar.
+ author_link: Yazara dair bilgilendirme bağlantısı göster.
+ custom: Özel Alıntı
+ custom_subtitle: Kendi özel alıntınızı belirleyin, ekleyin.
+ no_quotes: Alıntı yok!
+ author: Yazar
+ custom_buttons: Butonlar
+ custom_author: Özel yazar
+ author_img: Yazar resmini göster.
+ add: Alıntı Ekle
+ source_subtitle: Alıntıyı nereden alacağınızı seçin.
+ buttons:
+ title: Butonlar
+ subtitle: Alıntı kısmı için hangi butonların gösterileceğini seçin.
+ copy: Kopyala
+ tweet: Tweet'le
+ favourite: Favorilere Ekle
+ greeting:
+ title: Karşılama Ekranı
+ events: Olaylar
+ default: Karşılama mesajları görünsün.
+ name: İsminiz
+ birthday: Doğum Günü
+ birthday_subtitle: Doğum günüm olduğunda bir 'Mutlu Yıllar' mesajı göster.
+ birthday_age: Doğum günümde yaş bilgisi gözüksün.
+ birthday_date: Doğum günü tarihim
+ additional: Karşılama ekranı için ek ayarlarınızı belirleyin.
+ background:
+ title: Arka Plan
+ 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
+ custom_image: Özel resim
+ custom_colour: Özel renk/gradyan
+ random_colour: Özel renk
+ random_gradient: Özel gradyan
+ unsplash: {}
+ 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 Ekle
+ disabled: Kullanılamaz
+ loop_video: Tekrarlayan video
+ mute_video: Videonun sesini kapat.
+ quality:
+ title: Kalite
+ original: Orjinal
+ high: Yüksek Kalite
+ normal: Normal Kalite
+ datasaver: Veri Tasarrufu
+ custom_title: Özel Arka Plan
+ custom_description: Bilgisayarınızdan görseli seçin.
+ remove: Resmi Kaldır
+ display: Görüntüleme
+ display_subtitle: Arka plan ve fotoğraf bilgilerinin nasıl yüklendiğini değiştirin.
+ api: API Ayarları
+ api_subtitle: Harici bir hizmetten (API) aracılığıyla görüntü alma seçeneklerini
+ belirleyin.
+ search:
+ title: Arama
+ additional: Arama widget'ı ekranı ve işlevselliği için ek seçenekleri belirleyin.
+ search_engine: Arama Motoru
+ search_engine_subtitle: Arama çubuğunda kullanmak için arama motorunu seçin.
+ custom: Özel URL
+ autocomplete: Otomatik Tamamlama
+ autocomplete_provider: Otomatik Tamamlama Sağlayıcısı
+ autocomplete_provider_subtitle: Otomatik tamamlama açılır sonuçları için
+ kullanılacak arama motorunu belirleyin.
+ voice_search: Sesli Arama
+ dropdown: Arama Motorları Açılır Menüsü
+ focus: Açık Sekmeye Odaklan
+ weather:
+ title: Hava Durumu
+ location: Konum
+ auto: Otomatik
+ widget_type: Hava Tipi Formatı
+ temp_format:
+ title: Sıcaklık Formatı
+ fahrenheit: Fahrenhayt
+ extra_info:
+ title: Ek Bilgi
+ show_location: Konumu Göster
+ show_description: Açıklamayı Göster
+ weather_description: Hava açıklaması
+ cloudiness: Bulutluluk
+ humidity: Nem
+ visibility: Görüş Mesafesi
+ wind_speed: Rüzgar Hızı
+ wind_direction: Rüzgar Yönü
+ min_temp: Minimum Sıcaklık
+ max_temp: Maksimum Sıcaklık
+ atmospheric_pressure: Atmosferik Basınç
+ options:
+ basic: Basit
+ standard: Standart
+ expanded: Genişletilmiş
+ custom: Kişiselleştirlmiş
+ custom_settings: Kişisel Ayarlar
+ quicklinks:
+ title: Hızlı Bağlantılar
+ additional: Hızlı bağlantılar ekranı ve işlevleri için ek ayarlarınızı belirleyin.
+ open_new: Yeni Sekmede Aç
+ tooltip: İpucu
+ text_only: Yalnızca Metni Göster
+ add_link: Link Ekle
+ no_quicklinks: Hızlı bağlantı yok.
+ edit: Düzenleme
+ style: Stil
+ options:
+ icon: İkon
+ text_only: Sadece Metin
+ styling: Hızlı Bağlantı Görünümü
+ styling_description: Bağlantıların görünümünü özelleştirin.
+ message:
+ title: Mesaj
+ add: Mesaj Ekle
+ messages: Mesajlar
+ text: Metin
+ no_messages: Mesaj yok
+ add_some: Devam et ve biraz ekle.
+ content: Mesaj İçeriği
+ appearance:
+ title: Görünüm
+ style:
+ title: Widget Stili
+ description: Eski (7.0 öncesi kullanıcılar için etkin) ve şık modern stilimiz
+ olmak üzere iki stil arasından seçim yapın.
+ legacy: Eski
+ new: Yeni
+ theme:
+ title: Tema
+ description: Mue araçlarınızın(widget) ve modellerinin temasını değiştirin.
+ auto: Otomatik
+ light: Açık
+ dark: Koyu
+ navbar:
+ title: Gezinme Çubuğu
+ notes: Notlar
+ refresh: Yenile Butonu
+ refresh_subtitle: Yenile düğmesine tıkladığınızda yenilenecek öğeleri seçin.
+ hover: Yalnızca fareyle üzerine gelindiğinde göster.
+ additional: Gezinme çubuğu stilini ve hangi butonları görüntülemek istediğinizi
+ değiştirin.
+ refresh_options:
+ none: Hiçbiri
+ page: Sayfa
+ font:
+ title: Yazı tipi
+ description: Mue'da kullanılan yazı tipini değiştirin.
+ custom: Özel yazı tipi
+ google: Google Fonts'tan içeri aktar.
+ weight:
+ title: Yazı tipi genişliği
+ thin: Ekstra İnce
+ extra_light: İnce
+ light: Hafif İnce
+ medium: Orta
+ semi_bold: Hafif Kalın
+ bold: Kalın
+ extra_bold: Ekstra Kalın
+ style:
+ title: Yazı stili
+ italic: İtalik
+ oblique: Eğik
+ accessibility:
+ title: Erişebilirlik
+ description: Mue Erişebilirlik ayarlarını değiştirin
+ animations: Animasyonlar
+ text_shadow:
+ title: Widget metin gölgesi
+ new: Yeni
+ old: Eski
+ none: Hiçbiri
+ widget_zoom: Widget Ölçeği
+ toast_duration: Bildirim süresi
+ milliseconds: Milisaniye
+ order:
+ title: Widget Sıralaması
+ advanced:
+ title: Gelişmiş
+ offline_mode: Çevrimdışı Mod
+ offline_subtitle: Etkinleştirildiğinde, çevrimiçi hizmetlere yönelik tüm
+ istekler devre dışı bırakılır.
+ data: Veri
+ data_subtitle: Mue Tab ayarlarınızı bilgisayarınıza kaydetmenize, mevcut
+ ayarlarınızı başka bir bilgisayara aktarmanıza veya ayarlarınızı
+ varsayılan değerlerine sıfırlamınıza olanak sağlar. İstediğiniz işlemi
+ seçin.
+ reset_modal:
+ title: UYARI
+ question: Mue'yu sıfırlamak istiyor musunuz?
+ information: Bu, tüm verilerinizi silecektir. Verilerinizi ve tercihlerinizi
+ saklamak istiyorsanız, lütfen önce bunları dışa aktarın.
+ cancel: İptal
+ customisation: Özelleştirme
+ custom_css: Özel CSS
+ custom_css_subtitle: Mue'nin stilini 'Cascading Style Sheets (CSS)' ile özelleştirin.
+ custom_js: Özel JS
+ tab_name: Sekme Adı
+ tab_name_subtitle: Tarayıcınızda görünen sekmenin adını değiştirin.
+ timezone:
+ title: Zaman Dilimi
+ subtitle: Bilgisayarınızın otomatik varsayılanından ziyade listeden bir zaman
+ dilimi seçin.
+ automatic: Otomatik
+ experimental_warning: Deneysel modunuz açıksa Mue ekibinin destek
+ sağlayamadığını lütfen unutmayın. Lütfen önce devre dışı bırakın ve
+ desteğe başvurmadan önce sorunun devam edip etmediğini görün.
+ preview_data_disabled: {}
+ stats:
+ title: İstatistikler
+ sections:
+ tabs_opened: Sekme açıldı.
+ backgrounds_favourited: Arka plan favorilere eklendi.
+ backgrounds_downloaded: Arka plan indirildi.
+ quotes_favourited: Alıntı favorilere eklendi.
+ quicklinks_added: Hızlı bağlantılar eklendi.
+ settings_changed: Ayarlar değişti.
+ addons_installed: Eklentiler yüklendi.
+ usage: Kullanım İstatistikleri
+ achievements: Başarılar
+ unlocked: "{count} Kilidi Açıldı"
+ clear_modal: {}
+ experimental:
+ title: Deneysel Özellikler
+ warning: Bu ayarlar tam olarak test edilmedi 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
+ 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
+ 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
diff --git a/src/i18n/tr/_welcome.yml b/src/i18n/tr/_welcome.yml
new file mode 100644
index 00000000..b1f7089c
--- /dev/null
+++ b/src/i18n/tr/_welcome.yml
@@ -0,0 +1,65 @@
+tip: İpuçları
+sections:
+ intro:
+ title: Mue Tab'a Hoş Geldiniz!
+ description: Mue Tab'ı yüklediğiniz için teşekkür ederiz, umarız uzantımızla iyi
+ vakit geçirirsiniz.
+ notices:
+ discord_title: Dicord Kanalımıza Katılın
+ discord_description: Mue topluluğu ve geliştiricileri ile konuşun.
+ discord_join: Katıl
+ github_title: GitHub Üzerinden Katkıda Bulunun
+ github_description: Hataları bildirin, özellikler ekleyin veya bağış yapın.
+ github_open: Aç
+ language:
+ title: Dilinizi Seçin
+ description: Mue, aşağıda listelenen dillerde görüntülenebilir. Ayrıca sayfamıza
+ yeni çeviriler de ekleyebilirsiniz.
+ theme:
+ title: Bir Tema Seçin
+ description: Mue için hem açık hem de koyu tema mevcuttur. İsterseniz sistem
+ temanıza bağlı olarak otomatik olarak da ayarlanabilir.
+ tip: Otomatik ayarları kullanmak, bilgisayarınızdaki varsayılan temayı kullanır.
+ Bu ayar, modları ve ekranda görüntülenen hava durumu ve notlar gibi bazı
+ araçları(widget) etkiler.
+ style:
+ title: Bir Stil Seçin
+ description: Mue şu anda eski stil ile yeni çıkan modern stil arasında seçim
+ yapma olanağı sunuyor.
+ legacy: Eski
+ 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.
+ 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
+ finish: Bitir
+preview:
+ description: Şu anda önizleme modundasınız. Bu sekme kapatıldığında ayarlar sıfırlanacak.
+ continue: Kuruluma devam et.
diff --git a/src/i18n/tr/main.yml b/src/i18n/tr/main.yml
new file mode 100644
index 00000000..c99fece9
--- /dev/null
+++ b/src/i18n/tr/main.yml
@@ -0,0 +1,101 @@
+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"
+ 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?
+
+ Not: Eğer bu kategoriye ait "{category}" resimleri beğenmiyorsanız, arka
+ plan kaynak ayarları kısmından kategorinin seçimini kaldırabilirsiniz.
+ confirm: Evet
+ search: Arama
+ quicklinks:
+ new: Yeni Bağlantı
+ edit: Bağlantıyı Düzenle
+ name: İsim
+ 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: Yapılacak bir şey yok
+ apps: {}
+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
+ update:
+ title: Güncelleme
+ offline:
+ title: Çevrimdışı
+ description: Çevrimdışı moddayken güncelleme günlükleri alınamıyor
+ error:
+ title: Hata
+ description: Sunucuya bağlanılamadı
+ share:
+ copy_link: Bağlantıyı kopyala
+ email: E-posta
+toasts:
+ quote: Alıntı kopyalandı.
+ notes: Not kopyalandı.
+ reset: Başarıyla resetlendi.
+ installed: Başarıyla yüklendi.
+ uninstalled: Başarıyla kaldırıldı.
+ updated: Başarıyla güncellendi.
+ error: Bir şeyler yanlış gitti.
+ imported: Başarıyla içe aktarıldı.
+ no_storage: Yeteri kadar yer yok.
+ link_copied: Bağlantı kopyalandı.
diff --git a/src/i18n/zh/_achievements.yml b/src/i18n/zh/_achievements.yml
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/src/i18n/zh/_achievements.yml
@@ -0,0 +1 @@
+{}
diff --git a/src/i18n/zh/_addons.yml b/src/i18n/zh/_addons.yml
new file mode 100644
index 00000000..cedef69a
--- /dev/null
+++ b/src/i18n/zh/_addons.yml
@@ -0,0 +1,16 @@
+added: 已添加
+empty:
+ title: 这里空空如也
+ description: 请访问插件市场来添加插件。
+sideload:
+ title: 上传插件
+ errors: {}
+sort:
+ title: 排序
+ newest: 安装过 (从新到旧)
+ oldest: 安装过 (从旧到新)
+ a_z: 首字母 (A-Z)
+ z_a: 首字母 (Z-A)
+create:
+ title: 创建
+ moved_button: Get Started
diff --git a/src/i18n/zh/_marketplace.yml b/src/i18n/zh/_marketplace.yml
new file mode 100644
index 00000000..5c7aa191
--- /dev/null
+++ b/src/i18n/zh/_marketplace.yml
@@ -0,0 +1,15 @@
+photo_packs: 图片包
+quote_packs: 名言包
+preset_settings: 预设设定
+no_items: 本类别为空
+product:
+ overview: 总览
+ information: 信息
+ last_updated: 更新日期
+ version: 版本
+ buttons:
+ addtomue: 添加至 Mue
+ remove: 卸载
+offline:
+ title: 您目前似乎离线
+ description: 请连接到互联网。
diff --git a/src/i18n/zh/_settings.yml b/src/i18n/zh/_settings.yml
new file mode 100644
index 00000000..70a5b231
--- /dev/null
+++ b/src/i18n/zh/_settings.yml
@@ -0,0 +1,255 @@
+enabled: 已启用
+reminder:
+ title: 注意
+ message: 刷新页面后设置才会生效
+sections:
+ header: {}
+ time:
+ title: 时间
+ format: 格式
+ type: 类型
+ digital:
+ title: 数字时钟
+ seconds: 显示秒
+ twentyfourhour: 使用 24 小时制
+ twelvehour: 使用 12 小时制
+ zero: 加零补足两位数字
+ analogue:
+ title: 模拟时钟
+ second_hand: 秒针
+ minute_hand: 分针
+ hour_hand: 时针
+ hour_marks: 时钟刻度
+ minute_marks: 分钟刻度
+ percentage_complete: 今天过去了%几
+ vertical_clock: {}
+ date:
+ title: 显示日期
+ week_number: 第n周
+ day_of_week: 星期n
+ datenth: 添加th后缀
+ type:
+ short: 显示简写
+ long: 显示全部
+ short_date: 简写日期
+ short_format: 简写格式
+ short_separator:
+ title: 简写分隔
+ dots: 点
+ dash: 横杠
+ gaps: 空格
+ slashes: 斜杠
+ quote:
+ title: 名言警句
+ author_link: 出处链接
+ custom: 自定义名言
+ custom_author: 自定义出处
+ add: 继续添加名言
+ buttons:
+ title: 下方按钮
+ copy: 显示复制按钮
+ tweet: 显示发推按钮
+ favourite: 显示收藏按钮
+ greeting:
+ title: 问候
+ events: 节日问候
+ default: 常规问候
+ name: 您在问候中的名字
+ birthday: 生日
+ birthday_age: 显示年龄
+ birthday_date: 生日日期
+ background:
+ title: 背景
+ transition: 过渡动画
+ photo_information: 显示图片信息
+ show_map: 在图片信息内显示位置信息 (如果可用)
+ buttons:
+ title: 显示顶部按钮
+ view: 仅显示背景
+ favourite: 收藏
+ download: 下载
+ effects:
+ title: 背景特效
+ blur: 模糊程度
+ brightness: 更改亮度
+ filters:
+ title: 背景滤镜
+ amount: 数值
+ grayscale: 灰度
+ sepia: 相片
+ invert: 反色
+ saturate: 饱和度
+ contrast: 对比度
+ type:
+ title: 来源
+ api: 网络图像库API
+ custom_image: 自定义图像/视频
+ custom_colour: 自定义纯色背景
+ random_colour: 随机纯色背景
+ random_gradient: 随机渐变色背景
+ unsplash: {}
+ source:
+ title: 来源
+ api: 背景来源
+ custom_background: 自定义背景 (支持图片/视频)
+ custom_colour: 自定义背景颜色
+ upload: 选择
+ add_colour: 添加颜色
+ add_background: 继续添加背景
+ disabled: 已禁用
+ loop_video: 循环播放
+ mute_video: 静音
+ quality:
+ title: 画质
+ original: 原画
+ high: 高画质
+ normal: 普通画质
+ datasaver: 省流模式
+ search:
+ title: 搜索栏
+ search_engine: 搜索引擎
+ custom: 自定义搜索链接
+ autocomplete: 搜索联想
+ autocomplete_provider: 联想功能提供引擎
+ voice_search: 语音搜索
+ dropdown: 搜索框左侧显示搜索引擎选择框
+ weather:
+ title: 天气
+ location: 位置
+ auto: 自动定位
+ temp_format:
+ title: 温度单位
+ celsius: 摄氏度
+ fahrenheit: 华氏度
+ kelvin: 开尔文
+ extra_info:
+ title: 更多信息
+ show_location: 显示位置
+ show_description: 显示描述
+ cloudiness: 云量
+ humidity: 湿度
+ visibility: 能见度
+ wind_speed: 风速
+ wind_direction: 风向
+ min_temp: 最低温度
+ max_temp: 最高温度
+ atmospheric_pressure: 大气压
+ options: {}
+ quicklinks:
+ title: 快捷方式
+ open_new: 在新标签页打开
+ tooltip: 光标停留时下方显示标题
+ text_only: 仅显示标题
+ options: {}
+ message:
+ title: 消息
+ add: 继续添加消息
+ text: 文本
+ appearance:
+ title: 外观
+ style: {}
+ theme:
+ title: 主题
+ auto: 自动选择
+ light: 日间主题
+ dark: 夜间主题
+ navbar:
+ title: 右上方功能键
+ notes: 便签
+ refresh: 刷新键
+ refresh_options:
+ none: 不显示
+ page: 页面
+ font:
+ title: 字体
+ custom: 自定义字体
+ google: 从 Google Fonts 导入
+ weight:
+ title: 字体粗细
+ thin: 极细
+ extra_light: 细字
+ light: 较细
+ normal: 一般
+ medium: 中等
+ semi_bold: 较粗
+ bold: 粗体
+ extra_bold: 加粗
+ style:
+ title: 字体样式
+ normal: 常规
+ italic: 意大利斜体
+ oblique: 伪斜体
+ accessibility:
+ title: 无障碍设定
+ animations: 动画效果
+ text_shadow: {}
+ widget_zoom: 小部件缩放
+ toast_duration: 窗口弹出时间长度
+ milliseconds: 毫秒
+ order:
+ title: 小部件顺序
+ advanced:
+ title: 高级
+ offline_mode: 启用离线模式
+ data: 数据和设置
+ data_subtitle: Choose whether to export your Mue settings to your computer,
+ import an existing settings file, or reset your settings to their default
+ values
+ reset_modal:
+ title: 警告
+ question: 您想要重置 Mue 的所有设置吗?
+ information: 本操作将删除所有数据。若您想保留数据及设置,请先将其导出。
+ cancel: 取消
+ customisation: 自定义
+ custom_css: 自定义 CSS
+ custom_js: 自定义 JS
+ tab_name: 新标签页名称
+ timezone:
+ title: 时区
+ automatic: 自动
+ experimental_warning: 请注意 Mue 团队无法提供实验性功能的支持。若您遇到问题,请先关闭实验性功能,再寻求帮助。
+ preview_data_disabled: {}
+ stats:
+ title: 统计
+ sections:
+ tabs_opened: 页面打开次数
+ backgrounds_favourited: 收藏的背景
+ backgrounds_downloaded: 下载过背景
+ quotes_favourited: 收藏的名言警句
+ quicklinks_added: 添加的快捷方式
+ settings_changed: 更改的设置
+ addons_installed: 添加的插件
+ usage: 启用统计
+ clear_modal: {}
+ experimental:
+ title: 实验性功能
+ warning: 以下设置仍未完成编写或测试,可能无法正常运作!
+ developer: 开发者
+ language:
+ title: 语言
+ quote: 名言语言
+ changelog:
+ title: 更新日志
+ about:
+ title: 关于
+ version:
+ title: 版本
+ checking_update: 正在检查更新……
+ update_available: 可下载更新
+ no_update: 无可下载更新
+ offline_mode: 离线模式下不能检查更新
+ error:
+ title: 获取更新信息失败
+ description: 错误
+ contact_us: 联系我们
+ support_mue: 支持 Mue
+ resources_used:
+ title: 使用资源
+ bg_images: 离线背景
+ contributors: 贡献者
+ supporters: 支持者
+ photographers: 背景摄影者
+buttons:
+ reset: 重置
+ import: 导入
+ export: 导出
diff --git a/src/i18n/zh/_welcome.yml b/src/i18n/zh/_welcome.yml
new file mode 100644
index 00000000..e01c47a7
--- /dev/null
+++ b/src/i18n/zh/_welcome.yml
@@ -0,0 +1,38 @@
+tip: 快速提示
+sections:
+ intro:
+ title: 欢迎使用 Mue 新标签插件
+ description: 感谢您的安装。祝您使用愉快。
+ notices: {}
+ language:
+ title: 更改语言
+ description: Mue 支持以下语言。你也可以在这里添加新的翻译
+ theme:
+ title: 选择一个主题
+ description: Mue 支持日间和夜间主题,或者设置为自动选择,主题将跟随系统主题自动切换
+ tip: 使用自动选择将使用您的电脑的主题。这个设置也会影响设置界面和一些小组件的主题,比如天气和便签。
+ style: {}
+ settings:
+ title: 导入设置
+ description: 在新设备上安装 Mue? 可以直接导入之前的设置!
+ tip: 您可以通过在之前设备上点击右上角的设置,打开高级选项卡,然后点击导出按钮,浏览器将自动下载一个 json 文件。你可以在上面点击导入按钮导入该
+ json 文件来导入你之前的设置和偏好。
+ privacy:
+ title: 隐私设置
+ description: 进行一些设置来和 Mue 更好的保护您的隐私
+ offline_mode_description: 启用离线模式将会关闭所有服务的网络访问。该选项会关闭所有在线背景图片、在线名言警句、插件市场、天气、快捷方式、更新历史和一些关于信息的网络访问。
+ links:
+ title: 链接
+ privacy_policy: 隐私政策
+ source_code: 源代码
+ final:
+ title: 最后一步
+ description: 马上即可开始使用 Mue!
+ changes: 更改的设置
+ changes_description: 如果需要进一步设置,点击右上角的设置图标即可弹出完整设置对话框。如果显示不正常,刷新即可。
+ imported: 导入{amount}设置
+buttons:
+ next: 下一步
+ previous: 上一步
+ close: 关闭
+preview: {}
diff --git a/src/i18n/zh/main.yml b/src/i18n/zh/main.yml
new file mode 100644
index 00000000..4fda5814
--- /dev/null
+++ b/src/i18n/zh/main.yml
@@ -0,0 +1,69 @@
+tabname: 新标签页
+widgets:
+ greeting:
+ morning: 早上好
+ afternoon: 下午好
+ evening: 晚上好
+ christmas: 圣诞节快乐
+ newyear: 新年快乐
+ halloween: 万圣节快乐
+ birthday: 生日快乐
+ background:
+ credit: 图像作者:
+ unsplash: "@ Unsplash"
+ information: 信息
+ download: 下载
+ downloads: 下载
+ search: 搜索
+ quicklinks:
+ new: 新快捷方式
+ name: 名称
+ url: 链接
+ icon: 图标 (可选)
+ add: 添加
+ name_error: 请输入名称
+ url_error: 请输入链接
+ date:
+ week: 周
+ weather:
+ not_found: 未找到
+ meters: "{amount}米"
+ quote: {}
+ navbar:
+ tooltips:
+ refresh: 刷新
+ notes:
+ title: 便签
+ placeholder: 请键入内容
+ todo: {}
+ apps: {}
+modals:
+ main:
+ title: 选项
+ loading: 载入中...
+ file_upload_error: 大小超过了 2MB
+ navbar:
+ settings: 设置
+ addons: 我的插件
+ marketplace: 插件市场
+ error_boundary:
+ title: 错误
+ message: 无法载入该Mue组件
+ refresh: 刷新
+ update:
+ title: 更新日志
+ offline:
+ title: 离线模式已启用
+ description: 不能从官网获取更新日志
+ error:
+ title: 错误
+ description: 无法连接到服务器
+ share: {}
+toasts:
+ quote: 名言已复制
+ notes: 便签已复制
+ reset: 重置成功
+ installed: 安装成功
+ uninstalled: 卸载成功
+ error: 发生错误
+ imported: 导入成功
diff --git a/src/utils/settings/default.js b/src/utils/settings/default.js
index 90774344..6e42881e 100644
--- a/src/utils/settings/default.js
+++ b/src/utils/settings/default.js
@@ -1,4 +1,4 @@
-import languages from 'i18n/languages.json';
+import { languages } from 'lib/i18n';
import variables from 'config/variables';
/**
@@ -9,7 +9,7 @@ export function setDefaultSettings(reset) {
localStorage.clear();
// Languages
- const locale_ids = languages.map(({ value }) => value);
+ const locale_ids = languages;
const browserLanguage = (navigator.languages && navigator.languages.find((lang) => locale_ids.includes(lang))) || navigator.language;
if (locale_ids.includes(browserLanguage)) {
diff --git a/vite.config.mjs b/vite.config.mjs
index d17240a2..431b0984 100644
--- a/vite.config.mjs
+++ b/vite.config.mjs
@@ -6,7 +6,7 @@ import fs from 'fs';
import ADMZip from 'adm-zip';
import * as pkg from './package.json';
import progress from 'vite-plugin-progress';
-import { I18nPlugin } from '@eartharoid/vite-plugin-i18n';
+import I18nPlugin from '@eartharoid/vite-plugin-i18n';
import YAML from 'yaml';
const isProd = process.env.NODE_ENV === 'production';
@@ -105,6 +105,7 @@ export default defineConfig(({ command, mode }) => {
inspect(),
react(),
I18nPlugin({
+ default: 'en-GB',
id_regex: /((?[a-z0-9-_]+)\/)((_(?[a-z0-9-_]+))|[a-z0-9-_]+)\.[a-z]+/i,
include: './src/i18n/**/*.yml',
parser: YAML.parse,