diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 2460d6ad..a1dd11b9 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -56,6 +56,10 @@ { "title": "Development Server", "description": "Use `bun run dev` for local development with hot reload. Use `bun run dev:host` to make it accessible on the network for testing on other devices." + }, + { + "title": "Commenting", + "description": "Do not add comments to the codebase. Keep the code clean and self-explanatory." } ] } diff --git a/.gitignore b/.gitignore index 3fd28081..7a27b4a5 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,7 @@ safari/DerivedData/ safari/build/ # Files +unused-translations.txt package-lock.json .stylelintcache yarn-error.log diff --git a/package.json b/package.json index 95a1c280..24be9c7f 100644 --- a/package.json +++ b/package.json @@ -64,6 +64,7 @@ "dev:host": "vite --host", "translations": "cd scripts && node updatetranslations.cjs", "translations:percentages": "node scripts/updateTranslationPercentages.cjs", + "translations:unused": "node scripts/findUnusedTranslations.cjs", "build": "vite build", "pretty": "prettier --write \"./**/*.{js,jsx,json,scss,css}\"", "lint": "eslint \"./src/**/*.{js,jsx}\" && stylelint \"./src/**/*.{scss,css}\"", diff --git a/scripts/findUnusedTranslations.cjs b/scripts/findUnusedTranslations.cjs new file mode 100644 index 00000000..ec9ac5ab --- /dev/null +++ b/scripts/findUnusedTranslations.cjs @@ -0,0 +1,232 @@ +/* eslint-disable no-console */ + +const fs = require('fs'); +const path = require('path'); + +const LOCALE_FILE = path.join(__dirname, '../src/i18n/locales/en_GB.json'); +const ACHIEVEMENTS_FILE = path.join(__dirname, '../src/i18n/locales/achievements/en_GB.json'); +const SEARCH_DIR = path.join(__dirname, '../src'); +const FILE_EXTENSIONS = ['.js', '.jsx', '.ts', '.tsx', '.json']; + +/** + * Flatten nested JSON object into dot-notation keys + * @param {Object} obj - The object to flatten + * @param {String} prefix - The prefix for nested keys + * @returns {Array} Array of flattened keys + */ +function flattenKeys(obj, prefix = '') { + const keys = []; + + for (const key in obj) { + const fullKey = prefix ? `${prefix}.${key}` : key; + + if (typeof obj[key] === 'object' && obj[key] !== null && !Array.isArray(obj[key])) { + keys.push(...flattenKeys(obj[key], fullKey)); + } else { + keys.push(fullKey); + } + } + + return keys; +} + + +function getAllFiles(dir, fileList = []) { + const files = fs.readdirSync(dir); + + files.forEach(file => { + const filePath = path.join(dir, file); + const stat = fs.statSync(filePath); + + if (stat.isDirectory()) { + if (!file.startsWith('.') && file !== 'node_modules' && file !== 'dist' && file !== 'build') { + getAllFiles(filePath, fileList); + } + } else { + const ext = path.extname(file); + if (FILE_EXTENSIONS.includes(ext)) { + fileList.push(filePath); + } + } + }); + + return fileList; +} + +/** + * Search files for usage of a translation key + * Handles both direct usage and dynamic template literal construction + * @param {String} key - The translation key to search for + * @param {Array} files - Array of file paths to search + * @param {Map} fileContentsCache - Cache of file contents + * @returns {Boolean} True if the key is found in any file + */ +function isKeyUsed(key, files, fileContentsCache) { + const keySegments = key.split('.'); + const patterns = []; + + // Pattern 1: Full key match + // Example: 'modals.main.settings.sections.greeting.event_name' + const escapedFullKey = key.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); + patterns.push(new RegExp(`['"\`]${escapedFullKey}['"\`]`, 'g')); + + // Pattern 2: Last 2 segments (catches most template literal cases) + // Example: 'greeting.event_name' for dynamic construction like `${PREFIX}.event_name` + if (keySegments.length >= 2) { + const lastTwo = keySegments.slice(-2).map(s => s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')).join('\\.'); + patterns.push(new RegExp(`['"\`]${lastTwo}['"\`]`, 'g')); + } + + // Pattern 3: Last 3 segments (more specific than 2, less than full) + // Example: 'sections.greeting.event_name' + if (keySegments.length >= 3) { + const lastThree = keySegments.slice(-3).map(s => s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')).join('\\.'); + patterns.push(new RegExp(`['"\`]${lastThree}['"\`]`, 'g')); + } + + // Pattern 4: Final segment after a dot (for deeply nested template literals) + // Example: .event_name' in template literal like `${SECTION}.${SUBSECTION}.event_name` + if (keySegments.length >= 3) { + const finalSegment = keySegments[keySegments.length - 1].replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); + patterns.push(new RegExp(`\\.${finalSegment}['"\`]`, 'g')); + } + + for (const file of files) { + let content = fileContentsCache.get(file); + if (content === undefined) { + try { + content = fs.readFileSync(file, 'utf-8'); + fileContentsCache.set(file, content); + } catch { + fileContentsCache.set(file, ''); + continue; + } + } + + for (const pattern of patterns) { + if (pattern.test(content)) { + return true; + } + } + } + + return false; +} + + +function main() { + console.log('🔍 Finding unused translation keys...\n'); + + let translationKeys = []; + + try { + const localeContent = fs.readFileSync(LOCALE_FILE, 'utf-8'); + const localeData = JSON.parse(localeContent); + translationKeys = flattenKeys(localeData); + console.log(`📝 Found ${translationKeys.length} translation keys in en_GB.json`); + } catch (error) { + console.error(`❌ Error reading locale file: ${error.message}`); + process.exit(1); + } + + try { + if (fs.existsSync(ACHIEVEMENTS_FILE)) { + const achievementsContent = fs.readFileSync(ACHIEVEMENTS_FILE, 'utf-8'); + const achievementsData = JSON.parse(achievementsContent); + const achievementKeys = flattenKeys(achievementsData, 'achievements'); + translationKeys.push(...achievementKeys); + console.log(`📝 Found ${achievementKeys.length} achievement keys in achievements/en_GB.json`); + } + } catch (error) { + console.warn(`⚠️ Warning: Could not read achievements file: ${error.message}`); + } + + console.log(`\n📊 Total keys to check: ${translationKeys.length}`); + + console.log('📂 Scanning source files...'); + const files = getAllFiles(SEARCH_DIR); + console.log(`📄 Found ${files.length} files to search\n`); + + const fileContentsCache = new Map(); + + const unusedKeys = []; + const usedKeys = []; + + console.log('🔎 Searching for key usage (including template literals)...'); + + let processed = 0; + const totalKeys = translationKeys.length; + const startTime = Date.now(); + + for (const key of translationKeys) { + processed++; + + if (processed % 10 === 0 || processed === totalKeys) { + const percent = Math.round(processed / totalKeys * 100); + const elapsed = ((Date.now() - startTime) / 1000).toFixed(1); + process.stdout.write(`\r Progress: ${processed}/${totalKeys} (${percent}%) - ${elapsed}s elapsed`); + } + + if (isKeyUsed(key, files, fileContentsCache)) { + usedKeys.push(key); + } else { + unusedKeys.push(key); + } + } + + const totalTime = ((Date.now() - startTime) / 1000).toFixed(1); + console.log(`\r Progress: ${totalKeys}/${totalKeys} (100%) - ${totalTime}s total \n`); + + console.log('\n' + '='.repeat(70)); + console.log('📋 RESULTS'); + console.log('='.repeat(70) + '\n'); + + console.log(`✅ Used keys: ${usedKeys.length}`); + console.log(`❌ Unused keys: ${unusedKeys.length}`); + console.log(`📊 Usage rate: ${((usedKeys.length / totalKeys) * 100).toFixed(2)}%\n`); + + if (unusedKeys.length > 0) { + console.log('🗑️ Unused translation keys:\n'); + + const grouped = {}; + unusedKeys.forEach(key => { + const topLevel = key.split('.')[0]; + if (!grouped[topLevel]) { + grouped[topLevel] = []; + } + grouped[topLevel].push(key); + }); + + Object.keys(grouped).sort().forEach(category => { + console.log(`\n ${category}:`); + grouped[category].sort().forEach(key => { + console.log(` - ${key}`); + }); + }); + + const outputFile = path.join(__dirname, '../unused-translations.txt'); + const outputContent = [ + '# Unused Translation Keys', + `# Generated: ${new Date().toISOString()}`, + `# Total unused: ${unusedKeys.length}`, + `# Note: This script checks for full keys and partial keys (last 2-3 segments)`, + `# to catch dynamic template literal usage like \`\${PREFIX}.key\``, + '', + ...unusedKeys.sort() + ].join('\n'); + + fs.writeFileSync(outputFile, outputContent, 'utf-8'); + console.log(`\n💾 Full list saved to: ${path.relative(process.cwd(), outputFile)}`); + } else { + console.log('🎉 No unused translation keys found!'); + } + + console.log('\n' + '='.repeat(70) + '\n'); + + if (unusedKeys.length > 0) { + console.log('💡 Tip: You can safely remove these keys from your translation files to reduce bundle size.'); + console.log('⚠️ Note: Some keys might be used dynamically - review before removing!'); + } +} + +main(); diff --git a/src/i18n/locales/ar.json b/src/i18n/locales/ar.json index 613ce469..33424f5c 100644 --- a/src/i18n/locales/ar.json +++ b/src/i18n/locales/ar.json @@ -16,7 +16,6 @@ }, "background": { "credit": "الصورة بواسطة", - "unsplash": "على Unsplash", "information": "معلومات", "download": "تنزيل", "downloads": "التنزيلات", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "مفعّل", - "open_knowledgebase": "فتح قاعدة المعرفة", "additional_settings": "إعدادات إضافية", "reminder": { "title": "تنبيه", @@ -316,12 +314,6 @@ "search": { "title": "البحث", "additional": "خيارات إضافية لعرض ووظائف عنصر البحث", - "search_engine": "محرك البحث", - "search_engine_subtitle": "اختر محرك البحث لاستخدامه في شريط البحث", - "custom": "رابط بحث مخصص", - "autocomplete": "الإكمال التلقائي", - "autocomplete_provider": "مزود الإكمال التلقائي", - "autocomplete_provider_subtitle": "محرك البحث لنتائج القائمة المنسدلة للإكمال التلقائي", "voice_search": "البحث الصوتي", "dropdown": "قائمة البحث المنسدلة", "focus": "التركيز عند فتح علامة التبويب", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "بواسطة {author}", "all": "الكل", - "learn_more": "معرفة المزيد", "photo_packs": "حزم الصور", "quote_packs": "حزم الاقتباسات", "preset_settings": "إعدادات مسبقة", - "no_items": "لا توجد عناصر في هذه الفئة", - "collection": "مجموعة", - "explore_collection": "استكشاف المجموعة", - "add_all": "إضافة الكل إلى Mue", "collections": "المجموعات", - "cant_find": "لا تجد ما تبحث عنه؟", - "knowledgebase_one": "قم بزيارة", - "knowledgebase_two": "قاعدة المعرفة", - "knowledgebase_three": "لإنشاء ما يناسبك.", - "installing": "جارٍ التثبيت", - "product": { - "overview": "نظرة عامة", - "information": "معلومات", - "last_updated": "آخر تحديث", - "description": "الوصف", - "details": "التفاصيل", - "more_from_curator": "المزيد من {name}", - "show_more": "إظهار المزيد", - "show_less": "إظهار أقل", - "show_all": "إظهار الكل", - "showing": "يتم العرض", - "no_images": "عدد الصور", - "no_quotes": "عدد الاقتباسات", - "version": "الإصدار", - "created_by": "أنشأها", - "updated_at": "تم التحديث في", - "part_of": "جزء من", - "explore": "استكشاف", - "buttons": { - "addtomue": "إضافة إلى Mue", - "remove": "إزالة", - "update_addon": "تحديث الإضافة", - "back": "رجوع", - "report": "الإبلاغ", - "not_available_preview": "غير متاح في المعاينة" - }, - "not_in_language": "هذه الإضافة غير متوفرة بلغتك", - "third_party_api": "تستخدم هذه الإضافة واجهة برمجية تابعة لجهة خارجية", - "sideload_warning": "تم تثبيت هذه الإضافة جانبيًا.", - "setting": "الإعداد", - "value": "القيمة" - }, "offline": { "title": "يبدو أنك غير متصل", "description": "يرجى الاتصال بالإنترنت" @@ -666,26 +616,9 @@ "newest": "المثبتة (الأحدث)", "a_z": "أبجدي (أ-ي)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "إنشاء", - "moved_title": "تم نقل إنشاء الإضافة!", - "moved_description": "بعد تحديث 7.1، تم نقل إنشاء الإضافات الآن إلى واجهة الويب", - "moved_button": "قريبًا..." } } }, - "update": { - "title": "تحديث", - "offline": { - "title": "غير متصل", - "description": "لا يمكن الحصول على سجلات التحديث في وضع عدم الاتصال" - }, - "error": { - "title": "خطأ", - "description": "تعذر الاتصال بالخادم" - } - }, "welcome": { "tip": "نصيحة سريعة", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "نسخ الرابط", - "email": "البريد الإلكتروني" + "copy_link": "نسخ الرابط" } }, "toasts": { diff --git a/src/i18n/locales/arz.json b/src/i18n/locales/arz.json index 3bd2e28c..f89ecbe4 100644 --- a/src/i18n/locales/arz.json +++ b/src/i18n/locales/arz.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/az.json b/src/i18n/locales/az.json index 011c439d..044602df 100644 --- a/src/i18n/locales/az.json +++ b/src/i18n/locales/az.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Fotoşəkil müəllifi", - "unsplash": "Unsplash-da", "information": "Məlumat", "download": "Yüklə", "downloads": "Yükləmələr", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Aktivdir", - "open_knowledgebase": "Bilik Bazası Aç", "additional_settings": "Əlavə Parametrlər", "reminder": { "title": "XƏBƏRDARLIQ", @@ -316,12 +314,6 @@ "search": { "title": "Axtarış", "additional": "Axtarış vidjeti ekranı və funksionallığı üçün əlavə seçimlər", - "search_engine": "Axtarış Motoru", - "search_engine_subtitle": "Axtarış çubuğunda istifadə ediləcək axtarış motorunu seçin", - "custom": "Xüsusi Axtarış URL-i", - "autocomplete": "Avtomatik tamamlama", - "autocomplete_provider": "Avtomatik Tamamlama Təchizatçısı", - "autocomplete_provider_subtitle": "Avtomatik tamamlama açılan nəticələr üçün istifadə ediləcək axtarış motoru", "voice_search": "Səsli axtarış", "dropdown": "Axtarış Açılan Siyahısı", "focus": "Vərəqi açarkən fokusla", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "{author} tərəfindən", "all": "Hamısı", - "learn_more": "Daha çox öyrən", "photo_packs": "Foto Paketləri", "quote_packs": "Sitat Paketləri", "preset_settings": "Hazır Parametrlər", - "no_items": "Bu kateqoriyada heç bir maddə yoxdur", - "collection": "Kolleksiya", - "explore_collection": "Kolleksiyanı Kəşf et", - "add_all": "Hamısını Mue-ya Əlavə et", "collections": "Kolleksiyalar", - "cant_find": "Axtardığınızı tapa bilmirsiniz?", - "knowledgebase_one": "Ziyarət edin", - "knowledgebase_two": "bilik bazası", - "knowledgebase_three": "özünüz yaratmaq üçün.", - "installing": "Quraşdırılır", - "product": { - "overview": "Ümumi Baxış", - "information": "Məlumat", - "last_updated": "Son Yenilənmə", - "description": "Təsvir", - "details": "Detallar", - "more_from_curator": "{name} tərəfindən buna bənzər daha çox", - "show_more": "Daha çox göstər", - "show_less": "Daha az göstər", - "show_all": "Hamısını göstər", - "showing": "Göstərilir", - "no_images": "Şəkil sayı", - "no_quotes": "Sitat sayı", - "version": "Versiya", - "created_by": "Yaradıcı", - "updated_at": "Yeniləmə tarixi", - "part_of": "Bir hissəsi", - "explore": "Kəşf et", - "buttons": { - "addtomue": "Mue-ya Əlavə et", - "remove": "Sil", - "update_addon": "Əlavəni Yenilə", - "back": "Geri", - "report": "Bildir", - "not_available_preview": "Önizləmədə Mövcud Deyil" - }, - "not_in_language": "Bu əlavə sizin dilinizdə deyil", - "third_party_api": "Bu əlavə üçüncü tərəf API istifadə edir", - "sideload_warning": "Bu əlavə yan tərəfdən yüklənmişdir.", - "setting": "Parametr", - "value": "Dəyər" - }, "offline": { "title": "Görünür, oflaynsınız", "description": "Zəhmət olmasa internetə qoşulun" @@ -666,26 +616,9 @@ "newest": "Quraşdırılmış (Ən yeni)", "a_z": "Əlifba sırası (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Yarat", - "moved_title": "Əlavə yaratma yeri dəyişdirildi!", - "moved_description": "7.1 yeniləməsindən sonra əlavələrin yaradılması indi veb UI-ya köçürülüb", - "moved_button": "Tezliklə..." } } }, - "update": { - "title": "Yeniləmə", - "offline": { - "title": "Oflayn", - "description": "Oflayn rejimdə yeniləmə qeydlərini əldə etmək mümkün deyil" - }, - "error": { - "title": "Xəta", - "description": "Serverə qoşulmaq alınmadı" - } - }, "welcome": { "tip": "Sürətli İpucu", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Keçidi kopyala", - "email": "E-poçt" + "copy_link": "Keçidi kopyala" } }, "toasts": { diff --git a/src/i18n/locales/azb.json b/src/i18n/locales/azb.json index 53292f30..1f939bc6 100644 --- a/src/i18n/locales/azb.json +++ b/src/i18n/locales/azb.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto müəllifi", - "unsplash": "Unsplash-da", "information": "Məlumat", "download": "Yüklə", "downloads": "Yükləmələr", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Aktivdir", - "open_knowledgebase": "Bilik Bazası Aç", "additional_settings": "Əlavə Parametrlər", "reminder": { "title": "XƏBƏRDARLIQ", @@ -316,12 +314,6 @@ "search": { "title": "Axtarış", "additional": "Axtarış vidjeti görüntüsü və funksionallığı üçün əlavə seçimlər", - "search_engine": "Axtarış Mühərriki", - "search_engine_subtitle": "Axtarış çubuğunda istifadə etmək üçün axtarış mühərrikini seçin", - "custom": "Xüsusi Axtarış URL-i", - "autocomplete": "Avtomatik tamamla", - "autocomplete_provider": "Avtomatik tamamla təminatçısı", - "autocomplete_provider_subtitle": "Avtomatik tamamla açılan nəticələr üçün istifadə ediləcək axtarış mühərriki", "voice_search": "Səsli axtarış", "dropdown": "Axtarış Açılan Menyu", "focus": "Tab açıldığında fokuslan", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "{author} tərəfindən", "all": "Hamısı", - "learn_more": "Daha çox öyrənin", "photo_packs": "Foto Paketləri", "quote_packs": "Sitat Paketləri", "preset_settings": "Hazır Parametrlər", - "no_items": "Bu kateqoriyada heç bir maddə yoxdur", - "collection": "Kolleksiya", - "explore_collection": "Kolleksiyanı Araşdırın", - "add_all": "Hamısını Mue-ə əlavə et", "collections": "Kolleksiyalar", - "cant_find": "Axtardığınızı tapa bilmirsiniz?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "Bilik bazası", - "knowledgebase_three": "ilə özünüz yaradın.", - "installing": "Quraşdırılır", - "product": { - "overview": "Ümumi Baxış", - "information": "Məlumat", - "last_updated": "Son Yenilənmə", - "description": "Təsvir", - "details": "Detallar", - "more_from_curator": "{name} tərəfindən daha çox bu kimi", - "show_more": "Daha çox göstər", - "show_less": "Daha az göstər", - "show_all": "Hamısını göstər", - "showing": "Göstərilir", - "no_images": "Şəkil sayı", - "no_quotes": "Sitat sayı", - "version": "Versiya", - "created_by": "Yaradan", - "updated_at": "Yenilənmə tarixi", - "part_of": "Bir hissəsidir", - "explore": "Araşdır", - "buttons": { - "addtomue": "Mue-ə əlavə et", - "remove": "Sil", - "update_addon": "Əlavəni Yenilə", - "back": "Geri", - "report": "Hesabat", - "not_available_preview": "Ön baxışda mövcud deyil" - }, - "not_in_language": "Bu əlavə sizin dilinizdə deyil", - "third_party_api": "Bu əlavə üçüncü tərəf API-sindən istifadə edir", - "sideload_warning": "Bu əlavə yan yüklənmişdir.", - "setting": "Ayar", - "value": "Dəyər" - }, "offline": { "title": "Görünür ki, siz oflinesiniz", "description": "Zəhmət olmasa internetə qoşulun" @@ -666,26 +616,9 @@ "newest": "Quraşdırılmış (Ən Yeni)", "a_z": "Əlifba sırası (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Yarat", - "moved_title": "Əlavə yaratma köçürüldü!", - "moved_description": "7.1 yeniləməsindən sonra əlavələrin yaradılması veb UI-ə köçürüldü", - "moved_button": "Tezliklə..." } } }, - "update": { - "title": "Yeniləmə", - "offline": { - "title": "Offline", - "description": "Offline rejimində olarkən yeniləmə qeydlərini əldə etmək mümkün deyil" - }, - "error": { - "title": "Xəta", - "description": "Serverə qoşulmaq alınmadı" - } - }, "welcome": { "tip": "Tez Məsləhət", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Linki kopyala", - "email": "Email" + "copy_link": "Linki kopyala" } }, "toasts": { diff --git a/src/i18n/locales/bn.json b/src/i18n/locales/bn.json index 4d1b8888..c9d7460a 100644 --- a/src/i18n/locales/bn.json +++ b/src/i18n/locales/bn.json @@ -16,7 +16,6 @@ }, "background": { "credit": "ছবি তুলেছেন", - "unsplash": "Unsplash - এ আছে", "information": "তথ্য", "download": "ডাউনলোড করুন", "downloads": "ডাউনলোডগুলি", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "সক্রিয়", - "open_knowledgebase": "উন্মুক্ত জ্ঞানভিত্তিক", "additional_settings": "অতিরিক্ত সেটিংস", "reminder": { "title": "নোটিশ", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To Mue", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Get Started" } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/de_DE.json b/src/i18n/locales/de_DE.json index dd324197..b460e82e 100644 --- a/src/i18n/locales/de_DE.json +++ b/src/i18n/locales/de_DE.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto von", - "unsplash": "unsplash.com", "information": "Informationen", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Aktivieren", - "open_knowledgebase": "Offene Wissensdatenbank", "additional_settings": "Zusätzliche Einstellungen", "reminder": { "title": "HINWEIS", @@ -316,12 +314,6 @@ "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", @@ -589,52 +581,10 @@ "title": "Marketplace", "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.", - "installing": "Installing", - "product": { - "overview": "Übersicht", - "information": "Information", - "last_updated": "Letzte Aktualisierung", - "description": "Beschreibung", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Mehr anzeigen", - "show_less": "Weniger anzeigen", - "show_all": "Alle anzeigen", - "showing": "Anzeigen", - "no_images": "Keine Bilder", - "no_quotes": "Keine Zitate", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Teil von", - "explore": "Erkunden", - "buttons": { - "addtomue": "Zu Mue hinzufügen", - "remove": "Entfernen", - "update_addon": "Update Add-on", - "back": "Zurück", - "report": "Melden", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Einstellung", - "value": "Wert" - }, "offline": { "title": "Sieht aus, als ob Sie offline sind", "description": "Bitte stellen Sie eine Verbindung zum Internet her" @@ -666,26 +616,9 @@ "newest": "Installiert (Neueste)", "a_z": "Alphabetisch (A-Z)", "recently_updated": "Recently Updated" - }, - "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" } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Update-Protokolle können im Offline-Modus nicht abgerufen werden" - }, - "error": { - "title": "Fehler", - "description": "Konnte keine Verbindung zum Server herstellen" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Link kopieren", - "email": "E-Mail" + "copy_link": "Link kopieren" } }, "toasts": { diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json index c839d90d..45af66fb 100644 --- a/src/i18n/locales/el.json +++ b/src/i18n/locales/el.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/en_GB.json b/src/i18n/locales/en_GB.json index 9332de20..04028a9b 100644 --- a/src/i18n/locales/en_GB.json +++ b/src/i18n/locales/en_GB.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Recently Added", "a_z": "Name (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/en_US.json b/src/i18n/locales/en_US.json index 7aba5aa1..486c5e77 100644 --- a/src/i18n/locales/en_US.json +++ b/src/i18n/locales/en_US.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "By {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To Mue", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Settings", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Get Started" } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index b089d1e6..2a1d2ec8 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto por", - "unsplash": "en Unsplash", "information": "Información", "download": "Descargar", "downloads": "Descargas", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Activado", - "open_knowledgebase": "Abrir la base de conocimiento", "additional_settings": "Ajustes adicionales", "reminder": { "title": "AVISO", @@ -316,12 +314,6 @@ "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", @@ -589,52 +581,10 @@ "title": "Marketplace", "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.", - "installing": "Installing", - "product": { - "overview": "Vista general", - "information": "Información", - "last_updated": "Última actualización", - "description": "Descripción", - "details": "Details", - "more_from_curator": "More like this from {name}", - "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", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Parte de", - "explore": "Explorar", - "buttons": { - "addtomue": "Añadir a Mue", - "remove": "Desinstalar", - "update_addon": "Actualizar complemento", - "back": "Atrás", - "report": "Informe", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Ajustes", - "value": "Valor" - }, "offline": { "title": "Parece que estás desconectado", "description": "Por favor conéctate a Internet" @@ -666,26 +616,9 @@ "newest": "Instalado (Nuevos)", "a_z": "Alfabético (A-Z)", "recently_updated": "Recently Updated" - }, - "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": "Muy pronto...." } } }, - "update": { - "title": "Actualizar", - "offline": { - "title": "Sin conexión", - "description": "No se pueden obtener actualizaciones en modo sin conexión" - }, - "error": { - "title": "Error", - "description": "No se pudo conectar con el servidor" - } - }, "welcome": { "tip": "Consejo", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copiar enlace", - "email": "Correo electrónico" + "copy_link": "Copiar enlace" } }, "toasts": { diff --git a/src/i18n/locales/es_419.json b/src/i18n/locales/es_419.json index bc0be3f5..42f85c46 100644 --- a/src/i18n/locales/es_419.json +++ b/src/i18n/locales/es_419.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto por", - "unsplash": "en Unsplash", "information": "Información", "download": "Descargar", "downloads": "Descargas", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Activado", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "AVISO", @@ -316,12 +314,6 @@ "search": { "title": "Búsqueda", "additional": "Additional options for search widget display and functionality", - "search_engine": "Motor de búsqueda", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "URL de búsqueda personalizada", - "autocomplete": "Autocompletado", - "autocomplete_provider": "Proveedor del autocompletado", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Búsqueda por voz", "dropdown": "Listado de búsqueda", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Paquetes de fotos", "quote_packs": "Paquetes de citas", "preset_settings": "Ajustes preestablecidos", - "no_items": "No hay artículos en esta categoría", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Vista general", - "information": "Información", - "last_updated": "Última actualización", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Versión", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Añadir a Mue", - "remove": "Desinstalar", - "update_addon": "Actualizar complemento", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Parece que estás desconectado", "description": "Por favor conéctate a Internet" @@ -666,26 +616,9 @@ "newest": "Instalados (Nuevos)", "a_z": "Alfabético (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Crear", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Get Started" } } }, - "update": { - "title": "Actualizar", - "offline": { - "title": "Sin conexión", - "description": "No se pueden obtener actualizaciones en modo sin conexión" - }, - "error": { - "title": "Error", - "description": "No se pudo conectar con el servidor" - } - }, "welcome": { "tip": "Consejo", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/et.json b/src/i18n/locales/et.json index 3c67b276..0de1462d 100644 --- a/src/i18n/locales/et.json +++ b/src/i18n/locales/et.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto autor", - "unsplash": "Unsplashis", "information": "Teave", "download": "Lae alla", "downloads": "Allalaadimised", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Lubatud", - "open_knowledgebase": "Ava teadmusbaas", "additional_settings": "Lisaseaded", "reminder": { "title": "MÄRKUS", @@ -316,12 +314,6 @@ "search": { "title": "Otsing", "additional": "Lisavalikud otsingu vidina kuvamiseks ja funktsionaalsuseks", - "search_engine": "Otsingumootor", - "search_engine_subtitle": "Vali otsinguriba jaoks kasutatav otsingumootor", - "custom": "Kohandatud otsingu URL", - "autocomplete": "Automaatne lõpetamine", - "autocomplete_provider": "Automaatse lõpetamise pakkuja", - "autocomplete_provider_subtitle": "Otsingumootor, mida kasutada automaatse lõpetamise rippmenüü tulemusteks", "voice_search": "Häälega otsing", "dropdown": "Otsingu rippmenüü", "focus": "Fookus vahekaardi avamisel", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "autor: {author}", "all": "Kõik", - "learn_more": "Loe lähemalt", "photo_packs": "Fotokomplektid", "quote_packs": "Tsitaadikomplektid", "preset_settings": "Eelseadistatud seaded", - "no_items": "Selles kategoorias pole üksusi", - "collection": "Kollektsioon", - "explore_collection": "Uuri kollektsiooni", - "add_all": "Lisa kõik Muesse", "collections": "Kollektsioonid", - "cant_find": "Ei leia, mida otsid?", - "knowledgebase_one": "Külasta", - "knowledgebase_two": "teadmusbaasi", - "knowledgebase_three": "oma loomiseks.", - "installing": "Installimine", - "product": { - "overview": "Ülevaade", - "information": "Teave", - "last_updated": "Viimati uuendatud", - "description": "Kirjeldus", - "details": "Üksikasjad", - "more_from_curator": "Rohkem sarnaseid autorilt {name}", - "show_more": "Näita rohkem", - "show_less": "Näita vähem", - "show_all": "Näita kõiki", - "showing": "Näidatakse", - "no_images": "Piltide arv", - "no_quotes": "Tsitaatide arv", - "version": "Versioon", - "created_by": "Loodud", - "updated_at": "Uuendatud", - "part_of": "Osa", - "explore": "Uuri", - "buttons": { - "addtomue": "Lisa Muesse", - "remove": "Eemalda", - "update_addon": "Uuenda lisa", - "back": "Tagasi", - "report": "Teata", - "not_available_preview": "Pole eelvaates saadaval" - }, - "not_in_language": "See lisa pole sinu keeles", - "third_party_api": "See lisa kasutab kolmanda osapoole API-t", - "sideload_warning": "See lisa on kõrvalt laaditud.", - "setting": "Seade", - "value": "Väärtus" - }, "offline": { "title": "Tundub, et oled võrguühenduseta", "description": "Palun loo internetiühendus" @@ -666,26 +616,9 @@ "newest": "Installitud (uusimad)", "a_z": "Tähestikuline (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Loo", - "moved_title": "Lisa loomine on kolinud!", - "moved_description": "Pärast 7.1 versiooni uuendust on lisade loomine nüüd kolinud veebi kasutajaliidesesse", - "moved_button": "Tulemas...." } } }, - "update": { - "title": "Uuenda", - "offline": { - "title": "Võrguühenduseta", - "description": "Võrguühenduseta režiimis ei saa uuenduste logisid hankida" - }, - "error": { - "title": "Viga", - "description": "Serveriga ei õnnestunud ühendust luua" - } - }, "welcome": { "tip": "Kiire nõuanne", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Kopeeri link", - "email": "E-post" + "copy_link": "Kopeeri link" } }, "toasts": { diff --git a/src/i18n/locales/fa.json b/src/i18n/locales/fa.json index 3d79db82..dc03bb91 100644 --- a/src/i18n/locales/fa.json +++ b/src/i18n/locales/fa.json @@ -16,7 +16,6 @@ }, "background": { "credit": "عکس متوسط", - "unsplash": "در Unsplash", "information": "اطلاعات", "download": "دانلود", "downloads": "دانلودها", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To Mue", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json index c9ea6f88..78172604 100644 --- a/src/i18n/locales/fr.json +++ b/src/i18n/locales/fr.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo de", - "unsplash": "sur Unsplash", "information": "Information", "download": "Télécharger", "downloads": "Téléchargements", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Activé", - "open_knowledgebase": "Ouvrir la base de connaissances", "additional_settings": "Paramètres additionnels", "reminder": { "title": "AVIS", @@ -316,12 +314,6 @@ "search": { "title": "Recherche", "additional": "Options supplémentaires pour l'affichage et la fonctionnalité du widget de recherche", - "search_engine": "Moteur de recherche", - "search_engine_subtitle": "Choisissez le moteur de recherche à utiliser dans la barre de recherche", - "custom": "URL de recherche personnalisée", - "autocomplete": "Saisie semi-automatique", - "autocomplete_provider": "Fournisseur de saisie semi-automatique", - "autocomplete_provider_subtitle": "Moteur de recherche à utiliser pour les résultats de la liste déroulante de saisie semi-automatique", "voice_search": "Recherche vocale", "dropdown": "Menu déroulant de recherche", "focus": "Focus sur l'onglet ouvert", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "par {author}", "all": "Tout", - "learn_more": "En savoir plus", "photo_packs": "Packs de photos", "quote_packs": "Packs de citations", "preset_settings": "Paramètres prédéfinis", - "no_items": "Aucun élément dans cette catégorie", - "collection": "Collection", - "explore_collection": "Explorer la collection", - "add_all": "Ajouter tout à Mue", "collections": "Collections", - "cant_find": "Vous ne trouvez pas ce que vous cherchez ?", - "knowledgebase_one": "Visiter le", - "knowledgebase_two": "base de connaissances", - "knowledgebase_three": "pour créer le vôtre.", - "installing": "Installation", - "product": { - "overview": "Aperçu", - "information": "Informations", - "last_updated": "Dernière mise à jour", - "description": "Description", - "details": "Détails", - "more_from_curator": "Plus comme cela de {name}", - "show_more": "Afficher plus", - "show_less": "Afficher moins", - "show_all": "Afficher tout", - "showing": "Affichage", - "no_images": "Nbre d'images", - "no_quotes": "Nbre de citations", - "version": "Version", - "created_by": "Créé par", - "updated_at": "Mis à jour le", - "part_of": "Fait partie de", - "explore": "Explorer", - "buttons": { - "addtomue": "Ajouter à", - "remove": "Supprimer", - "update_addon": "Mettre à jour l'add-on", - "back": "Retour", - "report": "Signaler", - "not_available_preview": "Non disponible en aperçu" - }, - "not_in_language": "Cet add-on n'est pas dans votre langue", - "third_party_api": "Cet add-on utilise une API tierce", - "sideload_warning": "Cet add-on a été chargé manuellement.", - "setting": "Paramètre", - "value": "Valeur" - }, "offline": { "title": "On dirait que vous êtes hors ligne", "description": "Veuillez vous connecter à Internet" @@ -666,26 +616,9 @@ "newest": "Installé (plus récent)", "a_z": "Alphabétique (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Créer", - "moved_title": "La création d'add-on a été déplacée  !", - "moved_description": "A la suite de la mise à jour 7.1, la création d'add-ons a maintenant été déplacée vers l'interface web", - "moved_button": "Bientôt disponible...." } } }, - "update": { - "title": "Mise à jour", - "offline": { - "title": "Hors ligne", - "description": "Impossible d'obtenir les journaux de mise à jour en mode hors ligne" - }, - "error": { - "title": "Erreur", - "description": "Impossible de se connecter au serveur" - } - }, "welcome": { "tip": "Astuce rapide", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copier le lien", - "email": "E-mail" + "copy_link": "Copier le lien" } }, "toasts": { diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json index a8b8f0f2..71f14d4e 100644 --- a/src/i18n/locales/hu.json +++ b/src/i18n/locales/hu.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/id_ID.json b/src/i18n/locales/id_ID.json index 95c84602..776ab143 100644 --- a/src/i18n/locales/id_ID.json +++ b/src/i18n/locales/id_ID.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto oleh", - "unsplash": "di Unsplash", "information": "Informasi", "download": "Unduh", "downloads": "Unduhan", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Aktif", - "open_knowledgebase": "Buka Basis Pengetahuan", "additional_settings": "Pengaturan Tambahan", "reminder": { "title": "PERHATIAN", @@ -316,12 +314,6 @@ "search": { "title": "Cari", "additional": "Additional options for search widget display and functionality", - "search_engine": "Mesin pencari", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "URL kustom", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Provider Autocomplete", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Pencarian suara", "dropdown": "Dropdown pencarian", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "Tidak ada item pada kategori ini", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Ikhtisar", - "information": "Informasi", - "last_updated": "Pembaruan Terakhir", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Versi", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Tambahkan ke Mue", - "remove": "Hapus", - "update_addon": "Perbarui Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Sepertinya Anda sedang dalam mode luring", "description": "Harap periksa kembali koneksi Anda dan coba lagi nanti" @@ -666,26 +616,9 @@ "newest": "Terinstal (Terbaru)", "a_z": "Abjad (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Buat", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Get Started" } } }, - "update": { - "title": "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" - } - }, "welcome": { "tip": "Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json index f58b727e..7f6b3ab3 100644 --- a/src/i18n/locales/ja.json +++ b/src/i18n/locales/ja.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/lt.json b/src/i18n/locales/lt.json index 65d6f39b..59e7c8ff 100644 --- a/src/i18n/locales/lt.json +++ b/src/i18n/locales/lt.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Nuotrauka", - "unsplash": "iš Unsplash", "information": "Informacija", "download": "Atsisiųsti", "downloads": "Atsisiuntimai", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Įjungta", - "open_knowledgebase": "Atidaryti žinių bazę", "additional_settings": "Papildomi nustatymai", "reminder": { "title": "PASTABA", @@ -316,12 +314,6 @@ "search": { "title": "Paieška", "additional": "Papildomos paieškos valdiklio rodymo ir funkcionalumo parinktys", - "search_engine": "Paieškos sistema", - "search_engine_subtitle": "Pasirinkite paieškos sistemą, kurią naudosite paieškos juostoje", - "custom": "Pasirinktinis paieškos URL", - "autocomplete": "Automatinis užbaigimas", - "autocomplete_provider": "Automatinio užbaigimo teikėjas", - "autocomplete_provider_subtitle": "Paieškos sistema, naudojama automatinio užbaigimo išskleidžiamojo sąrašo rezultatams", "voice_search": "Paieška balsu", "dropdown": "Paieškos išskleidžiamasis sąrašas", "focus": "Fokusuoti atidarius skirtuką", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "autorius {author}", "all": "Visi", - "learn_more": "Sužinoti daugiau", "photo_packs": "Nuotraukų rinkiniai", "quote_packs": "Citatų rinkiniai", "preset_settings": "Iš anksto nustatyti nustatymai", - "no_items": "Nėra elementų šioje kategorijoje", - "collection": "Kolekcija", - "explore_collection": "Naršyti kolekciją", - "add_all": "Pridėti visus į Mue", "collections": "Kolekcijos", - "cant_find": "Nerandate to, ko ieškote?", - "knowledgebase_one": "Apsilankykite", - "knowledgebase_two": "žinių bazėje", - "knowledgebase_three": "norėdami sukurti savo.", - "installing": "Diegiama", - "product": { - "overview": "Apžvalga", - "information": "Informacija", - "last_updated": "Paskutinį kartą atnaujinta", - "description": "Aprašymas", - "details": "Išsami informacija", - "more_from_curator": "Daugiau panašių iš {name}", - "show_more": "Rodyti daugiau", - "show_less": "Rodyti mažiau", - "show_all": "Rodyti viską", - "showing": "Rodoma", - "no_images": "Paveikslėlių skaičius", - "no_quotes": "Citatų skaičius", - "version": "Versija", - "created_by": "Sukūrė", - "updated_at": "Atnaujinta", - "part_of": "Dalis", - "explore": "Naršyti", - "buttons": { - "addtomue": "Pridėti į Mue", - "remove": "Pašalinti", - "update_addon": "Atnaujinti priedą", - "back": "Atgal", - "report": "Pranešti", - "not_available_preview": "Negalima peržiūros režime" - }, - "not_in_language": "Šis priedas nėra jūsų kalba", - "third_party_api": "Šis priedas naudoja trečiosios šalies API", - "sideload_warning": "Šis priedas buvo įkeltas iš šalies.", - "setting": "Nustatymas", - "value": "Reikšmė" - }, "offline": { "title": "Atrodo, kad esate neprisijungę", "description": "Prisijunkite prie interneto" @@ -666,26 +616,9 @@ "newest": "Įdiegta (Naujausi)", "a_z": "Abėcėlės tvarka (A-Ž)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Kurti", - "moved_title": "Papildinio kūrimas perkeltas!", - "moved_description": "Po 7.1 atnaujinimo papildinių kūrimas perkeltas į žiniatinklio sąsają", - "moved_button": "Greitai..." } } }, - "update": { - "title": "Atnaujinti", - "offline": { - "title": "Neprisijungęs", - "description": "Nepavyksta gauti atnaujinimo žurnalų veikiant neprisijungus" - }, - "error": { - "title": "Klaida", - "description": "Nepavyko prisijungti prie serverio" - } - }, "welcome": { "tip": "Greitas patarimas", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Kopijuoti nuorodą", - "email": "El. paštas" + "copy_link": "Kopijuoti nuorodą" } }, "toasts": { diff --git a/src/i18n/locales/lv.json b/src/i18n/locales/lv.json index b5587f85..14ed77e1 100644 --- a/src/i18n/locales/lv.json +++ b/src/i18n/locales/lv.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Fotogrāfijas autors", - "unsplash": "Unsplash", "information": "Informācija", "download": "Lejupielādēt", "downloads": "Lejupielādes", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Iespējots", - "open_knowledgebase": "Atvērt zināšanu bāzi", "additional_settings": "Papildu iestatījumi", "reminder": { "title": "PAZIŅOJUMS", @@ -316,12 +314,6 @@ "search": { "title": "Meklēšana", "additional": "Papildu opcijas meklēšanas logrīka attēlošanai un funkcionalitātei", - "search_engine": "Meklētājprogramma", - "search_engine_subtitle": "Izvēlieties meklētājprogrammu, ko izmantot meklēšanas joslā", - "custom": "Pielāgots meklēšanas URL", - "autocomplete": "Automātiskā pabeigšana", - "autocomplete_provider": "Automātiskās pabeigšanas nodrošinātājs", - "autocomplete_provider_subtitle": "Meklētājprogramma, ko izmantot automātiskās pabeigšanas nolaižamā saraksta rezultātiem", "voice_search": "Balss meklēšana", "dropdown": "Meklēšanas nolaižamais saraksts", "focus": "Fokuss cilnes atvēršanā", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "autors {author}", "all": "Visi", - "learn_more": "Uzzināt vairāk", "photo_packs": "Fotogrāfiju pakotnes", "quote_packs": "Citātu pakotnes", "preset_settings": "Iepriekš iestatīti iestatījumi", - "no_items": "Nav vienumu šajā kategorijā", - "collection": "Kolekcija", - "explore_collection": "Izpētīt kolekciju", - "add_all": "Pievienot visus Mue", "collections": "Kolekcijas", - "cant_find": "Nevarat atrast to, ko meklējat?", - "knowledgebase_one": "Apmeklējiet", - "knowledgebase_two": "zināšanu bāzi", - "knowledgebase_three": "lai izveidotu savu.", - "installing": "Instalē", - "product": { - "overview": "Pārskats", - "information": "Informācija", - "last_updated": "Pēdējoreiz atjaunināts", - "description": "Apraksts", - "details": "Detaļas", - "more_from_curator": "Vairāk līdzīgu no {name}", - "show_more": "Rādīt vairāk", - "show_less": "Rādīt mazāk", - "show_all": "Rādīt visus", - "showing": "Rāda", - "no_images": "Attēlu skaits", - "no_quotes": "Citātu skaits", - "version": "Versija", - "created_by": "Izveidoja", - "updated_at": "Atjaunināts", - "part_of": "Daļa no", - "explore": "Izpētīt", - "buttons": { - "addtomue": "Pievienot Mue", - "remove": "Noņemt", - "update_addon": "Atjaunināt paplašinājumu", - "back": "Atpakaļ", - "report": "Ziņot", - "not_available_preview": "Nav pieejams priekšskatījumā" - }, - "not_in_language": "Šis paplašinājums nav jūsu valodā", - "third_party_api": "Šis paplašinājums izmanto trešās puses API", - "sideload_warning": "Šis paplašinājums ir ielādēts no malas.", - "setting": "Iestatījums", - "value": "Vērtība" - }, "offline": { "title": "Izskatās, ka esat bezsaistē", "description": "Lūdzu, izveidojiet savienojumu ar internetu" @@ -666,26 +616,9 @@ "newest": "Instalēts (Jaunākais)", "a_z": "Alfabētiski (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Izveidot", - "moved_title": "Paplašinājuma izveide ir pārvietota!", - "moved_description": "Pēc 7.1 atjauninājuma paplašinājumu izveide tagad ir pārvietota uz tīmekļa saskarni", - "moved_button": "Drīzumā...." } } }, - "update": { - "title": "Atjaunināt", - "offline": { - "title": "Bezsaistē", - "description": "Nevar iegūt atjauninājumu žurnālus bezsaistes režīmā" - }, - "error": { - "title": "Kļūda", - "description": "Nevarēja izveidot savienojumu ar serveri" - } - }, "welcome": { "tip": "Ātrs padoms", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Kopēt saiti", - "email": "E-pasts" + "copy_link": "Kopēt saiti" } }, "toasts": { diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json index 51f192aa..774e6b8b 100644 --- a/src/i18n/locales/nl.json +++ b/src/i18n/locales/nl.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto van", - "unsplash": "op Unsplash", "information": "Information", "download": "Download", "downloads": "Downloaden", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Ingeschakeld", - "open_knowledgebase": "Open Kennisbank", "additional_settings": "Aanvullende Instellingen", "reminder": { "title": "AANKONDIGING", @@ -316,12 +314,6 @@ "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": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Zoekmachine om te gebruiken voor automatisch aanvullen resultaten", "voice_search": "Spraakgestuurd zoeken gebruiken", "dropdown": "Search dropdown", "focus": "Focus op tabblad openen", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "Door {author}", "all": "Alles", - "learn_more": "Meer Informatie", "photo_packs": "Fotoverzamelingen", "quote_packs": "Citaatverzamelingen", "preset_settings": "Voorinstellingen", - "no_items": "No items in this category", - "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.", - "installing": "Installing", - "product": { - "overview": "Overzicht", - "information": "Informatie", - "last_updated": "Laatst geüpdatet", - "description": "Beschrijving", - "details": "Details", - "more_from_curator": "More like this from {name}", - "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", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Deel van", - "explore": "Verken", - "buttons": { - "addtomue": "Toevoegen aan Mue", - "remove": "Verwijderen", - "update_addon": "Update Add-on", - "back": "Terug", - "report": "Rapporteer", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Instelling", - "value": "Waarde" - }, "offline": { "title": "Het lijkt er op dat je niet verbonden bent het internet", "description": "Maak verbinding met het internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "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" } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Kopieer link", - "email": "E-mail" + "copy_link": "Kopieer link" } }, "toasts": { diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json index 0694b548..1bcd49f7 100644 --- a/src/i18n/locales/no.json +++ b/src/i18n/locales/no.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Bilde av", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Nedlastinger", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Søkebar", "additional": "Additional options for search widget display and functionality", - "search_engine": "Søkemotor", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Bilde pakker", "quote_packs": "Sitat pakker", "preset_settings": "Preset instillinger", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Oversikt", - "information": "Informasjon", - "last_updated": "Sist oppdatert", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Versjon", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Legg Til Mue", - "remove": "Fjern", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Ser ut som at du er offiline", "description": "Vær så snill, koble til internettet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Get Started" } } }, - "update": { - "title": "Oppdater", - "offline": { - "title": "Offline", - "description": "Kan ikke få oppdatering loggene når i offline modus" - }, - "error": { - "title": "Error", - "description": "Kan ikke koble til serveren." - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/peo.json b/src/i18n/locales/peo.json index 2e4346ae..627617d8 100644 --- a/src/i18n/locales/peo.json +++ b/src/i18n/locales/peo.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "اطلاعات", "download": "دانلود", "downloads": "دانلودها", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json index 7a851e12..55c7d532 100644 --- a/src/i18n/locales/pt.json +++ b/src/i18n/locales/pt.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto por", - "unsplash": "no Unsplash", "information": "Informação", "download": "Descarregar", "downloads": "Descarregados", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Ativado", - "open_knowledgebase": "Abrir base de conhecimento", "additional_settings": "Configurações adicionais", "reminder": { "title": "AVISO", @@ -316,12 +314,6 @@ "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", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "Por {author}", "all": "Todos", - "learn_more": "Saber mais", "photo_packs": "Pacotes de fotos", "quote_packs": "Pacotes de citações", "preset_settings": "Configurações predefinidas", - "no_items": "Não há itens nesta categoria", - "collection": "Coleção", - "explore_collection": "Explorar coleção", - "add_all": "Adicionar tudo ao Mue", "collections": "Coleções", - "cant_find": "Não consegue encontrar o que procura?", - "knowledgebase_one": "Visite a", - "knowledgebase_two": "base de conhecimento", - "knowledgebase_three": "para criar o seu próprio.", - "installing": "Installing", - "product": { - "overview": "Visão geral", - "information": "Informações", - "last_updated": "Ultima atualização", - "description": "Descrição", - "details": "Details", - "more_from_curator": "More like this from {name}", - "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", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Parte de", - "explore": "Explorar", - "buttons": { - "addtomue": "Adicionar ao Mue", - "remove": "Remover", - "update_addon": "Atualizar complemento", - "back": "Voltar", - "report": "Reportar", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Configuração", - "value": "Valor" - }, "offline": { "title": "Parece que está offline", "description": "Conecte-se à Internet" @@ -666,26 +616,9 @@ "newest": "Instalado (mais recente)", "a_z": "Alfabética (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Criar", - "moved_title": "Criar add-on mudou-se!", - "moved_description": "Após a atualização 7.1, a criação de addons mudou-se para a interface web", - "moved_button": "Começar" } } }, - "update": { - "title": "Atualizar", - "offline": { - "title": "Offline", - "description": "Não é possível obter logs de atualização no modo offline" - }, - "error": { - "title": "Erro", - "description": "Não pode conectar-se ao servidor" - } - }, "welcome": { "tip": "Dica rápida", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copiar ligação", - "email": "Email" + "copy_link": "Copiar ligação" } }, "toasts": { diff --git a/src/i18n/locales/pt_BR.json b/src/i18n/locales/pt_BR.json index 428c965e..987f60df 100644 --- a/src/i18n/locales/pt_BR.json +++ b/src/i18n/locales/pt_BR.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Foto por", - "unsplash": "no Unsplash", "information": "Informação", "download": "Baixar", "downloads": "Baixados", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Habilitado", - "open_knowledgebase": "Abrir base de conhecimento", "additional_settings": "Configurações adicionais", "reminder": { "title": "AVISO", @@ -316,12 +314,6 @@ "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", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "Por {author}", "all": "Todos", - "learn_more": "Saber mais", "photo_packs": "Pacotes de fotos", "quote_packs": "Pacotes de citações", "preset_settings": "Configurações predefinidas", - "no_items": "Não há itens nesta categoria", - "collection": "Coleção", - "explore_collection": "Explorar coleção", - "add_all": "Adicionar tudo ao Mue", "collections": "Coleções", - "cant_find": "Não consegue encontrar o que procura?", - "knowledgebase_one": "Visite a", - "knowledgebase_two": "base de conhecimento", - "knowledgebase_three": "para criar o seu próprio.", - "installing": "Instalando", - "product": { - "overview": "Visão geral", - "information": "Informações", - "last_updated": "Ultima atualização", - "description": "Descrição", - "details": "Details", - "more_from_curator": "Mais como este de {name}", - "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", - "created_by": "Criado por", - "updated_at": "Atualizado em", - "part_of": "Parte de", - "explore": "Explorar", - "buttons": { - "addtomue": "Adicionar ao Mue", - "remove": "Remover", - "update_addon": "Atualizar complemento", - "back": "Voltar", - "report": "Reportar", - "not_available_preview": "Indisponível na Pré-visualização" - }, - "not_in_language": "Este complemento não está em seu idioma", - "third_party_api": "Esse complemento usa uma API de terceiros", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Configuração", - "value": "Valor" - }, "offline": { "title": "Parece que você está offline", "description": "Conecte-se à Internet" @@ -666,26 +616,9 @@ "newest": "Instalado (mais recente)", "a_z": "Alfabética (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Criar", - "moved_title": "Criar add-on mudou-se!", - "moved_description": "Após a atualização 7.1, a criação de addons mudou-se para a interface web", - "moved_button": "Começar" } } }, - "update": { - "title": "Atualizar", - "offline": { - "title": "Offline", - "description": "Não é possível obter logs de atualização no modo offline" - }, - "error": { - "title": "Erro", - "description": "Não pode conectar-se ao servidor" - } - }, "welcome": { "tip": "Dica rápida", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copiar link", - "email": "Email" + "copy_link": "Copiar link" } }, "toasts": { diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json index 2db3418e..f428a062 100644 --- a/src/i18n/locales/ru.json +++ b/src/i18n/locales/ru.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Фото", - "unsplash": "на Unsplash", "information": "Information", "download": "Download", "downloads": "Загрузки", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Включено", - "open_knowledgebase": "Открытая база знаний", "additional_settings": "Дополнительные настройки", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Панель поиска", "additional": "Дополнительные параметры отображения и функциональности поискового виджета", - "search_engine": "Поисковый движок", - "search_engine_subtitle": "Выберите поисковую систему для использования в строке поиска", - "custom": "Пользовательский поисковый движок", - "autocomplete": "Автозаполнение", - "autocomplete_provider": "Поставщик автозаполнения", - "autocomplete_provider_subtitle": "Поисковая система, используемая для выпадающих результатов автозаполнения", "voice_search": "Поиск голосом", "dropdown": "Выпадающий список поиска", "focus": "Фокус на открытой вкладке", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "от {author}", "all": "Все", - "learn_more": "Узнать больше", "photo_packs": "Наборы фото", "quote_packs": "Наборы цитат", "preset_settings": "Пресеты настроек", - "no_items": "Нет элементов в этой категории", - "collection": "Коллекция", - "explore_collection": "Исследуйте коллекцию", - "add_all": "Добавить все в Mue", "collections": "Коллекции", - "cant_find": "Не можете найти то, что ищете?", - "knowledgebase_one": "Посетить", - "knowledgebase_two": "база знаний", - "knowledgebase_three": "чтобы создать свой собственный.", - "installing": "Installing", - "product": { - "overview": "Обзор", - "information": "Информация", - "last_updated": "Последнее обновление", - "description": "Описание", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Показать больше", - "show_less": "Показать меньше", - "show_all": "Показать все", - "showing": "Показаны", - "no_images": "№ Изображения", - "no_quotes": "Цитаты", - "version": "Версия", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Часть", - "explore": "Обзор", - "buttons": { - "addtomue": "Добавить в Mue", - "remove": "Удалить", - "update_addon": "Update Add-on", - "back": "Назад", - "report": "Жалоба", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Параметр", - "value": "Цена" - }, "offline": { "title": "Похоже, что вы офлайн", "description": "Пожалуйста, подключитесь к интернету" @@ -666,26 +616,9 @@ "newest": "Установлено (Новое)", "a_z": "Алфавитный (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Создать", - "moved_title": "Создание аддонов переместилось!", - "moved_description": "После обновления 7.1, создание дополнений теперь переместилось в веб-UI", - "moved_button": "Начните" } } }, - "update": { - "title": "Обновление", - "offline": { - "title": "Офлайн", - "description": "Не удалось получить журнал обновления в офлайн режиме" - }, - "error": { - "title": "Ошибка", - "description": "Невозможно подключиться к серверу" - } - }, "welcome": { "tip": "Быстрый совет", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Копировать ссылку", - "email": "Эл. адрес" + "copy_link": "Копировать ссылку" } }, "toasts": { diff --git a/src/i18n/locales/sl.json b/src/i18n/locales/sl.json index 071a73ea..41cfc9c5 100644 --- a/src/i18n/locales/sl.json +++ b/src/i18n/locales/sl.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Fotografija od", - "unsplash": "na Unsplash", "information": "Informacije", "download": "Prenesi", "downloads": "Prenosi", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Omogočeno", - "open_knowledgebase": "Odpri bazo znanja", "additional_settings": "Dodatne nastavitve", "reminder": { "title": "OPOMNIK", @@ -316,12 +314,6 @@ "search": { "title": "Iskanje", "additional": "Dodatne možnosti za prikaz in funkcionalnost pripomočka za iskanje", - "search_engine": "Iskalnik", - "search_engine_subtitle": "Izberite iskalnik za uporabo v iskalni vrstici", - "custom": "Lastni URL iskanja", - "autocomplete": "Samodejno dokončanje", - "autocomplete_provider": "Ponudnik samodejnega dokončanja", - "autocomplete_provider_subtitle": "Iskalnik za uporabo pri rezultatih samodejnega dokončanja v spustnem meniju", "voice_search": "Glasovno iskanje", "dropdown": "Spustni meni iskanja", "focus": "Osredotoči se ob odprtju zavihka", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "avtor {author}", "all": "Vse", - "learn_more": "Več informacij", "photo_packs": "Paketi fotografij", "quote_packs": "Paketi citatov", "preset_settings": "Prednastavljene nastavitve", - "no_items": "V tej kategoriji ni elementov", - "collection": "Zbirka", - "explore_collection": "Raziskuj zbirko", - "add_all": "Dodaj vse v Mue", "collections": "Zbirke", - "cant_find": "Ne najdete, kar iščete?", - "knowledgebase_one": "Obiščite", - "knowledgebase_two": "bazo znanja", - "knowledgebase_three": "za ustvarjanje lastnih.", - "installing": "Nameščanje", - "product": { - "overview": "Pregled", - "information": "Informacije", - "last_updated": "Zadnja posodobitev", - "description": "Opis", - "details": "Podrobnosti", - "more_from_curator": "Več takšnih od {name}", - "show_more": "Prikaži več", - "show_less": "Prikaži manj", - "show_all": "Prikaži vse", - "showing": "Prikazujem", - "no_images": "Št. slik", - "no_quotes": "Št. citatov", - "version": "Različica", - "created_by": "Ustvaril", - "updated_at": "Posodobljeno dne", - "part_of": "Del", - "explore": "Raziskuj", - "buttons": { - "addtomue": "Dodaj v Mue", - "remove": "Odstrani", - "update_addon": "Posodobi dodatek", - "back": "Nazaj", - "report": "Prijavi", - "not_available_preview": "Ni na voljo v predogledu" - }, - "not_in_language": "Ta dodatek ni v vašem jeziku", - "third_party_api": "Ta dodatek uporablja API tretje osebe", - "sideload_warning": "Ta dodatek je bil stransko naložen.", - "setting": "Nastavitev", - "value": "Vrednost" - }, "offline": { "title": "Videti je, da ste brez povezave", "description": "Prosimo, povežite se z internetom" @@ -666,26 +616,9 @@ "newest": "Nameščeno (najnovejše)", "a_z": "Abecedno (A-Ž)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Ustvari", - "moved_title": "Ustvarjanje dodatka je bilo premaknjeno!", - "moved_description": "Po posodobitvi 7.1 se je ustvarjanje dodatkov preselilo v spletni vmesnik", - "moved_button": "Kmalu na voljo..." } } }, - "update": { - "title": "Posodobitev", - "offline": { - "title": "Brez povezave", - "description": "Ni mogoče pridobiti dnevnikov posodobitev v načinu brez povezave" - }, - "error": { - "title": "Napaka", - "description": "Ni bilo mogoče povezati s strežnikom" - } - }, "welcome": { "tip": "Hiter nasvet", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Kopiraj povezavo", - "email": "E-pošta" + "copy_link": "Kopiraj povezavo" } }, "toasts": { diff --git a/src/i18n/locales/sv.json b/src/i18n/locales/sv.json index 98a2539d..29286ca6 100644 --- a/src/i18n/locales/sv.json +++ b/src/i18n/locales/sv.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/ta.json b/src/i18n/locales/ta.json index c4ac4286..a221d064 100644 --- a/src/i18n/locales/ta.json +++ b/src/i18n/locales/ta.json @@ -16,7 +16,6 @@ }, "background": { "credit": "புகைப்படம்", - "unsplash": "Unsplash இல்", "information": "தகவல்", "download": "பதிவிறக்கம்", "downloads": "பதிவிறக்கங்கள்", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "இயக்கப்பட்டது", - "open_knowledgebase": "திறந்த அறிவுத் தளம்", "additional_settings": "கூடுதல் அமைப்புகள்", "reminder": { "title": "அறிவிப்பு", @@ -316,12 +314,6 @@ "search": { "title": "தேடல்", "additional": "தேடல் விட்செட் காட்சி மற்றும் செயல்பாட்டிற்கான கூடுதல் விருப்பங்கள்", - "search_engine": "தேடுபொறி", - "search_engine_subtitle": "தேடல் பட்டியில் பயன்படுத்த தேடுபொறியைத் தேர்வுசெய்க", - "custom": "தனிப்பயன் தேடல் முகவரி", - "autocomplete": "தன்னியக்க வேறுபாடு", - "autocomplete_provider": "தன்னியக்க ஒப்புதல் வழங்குநர்", - "autocomplete_provider_subtitle": "தன்னியக்க மாறுபட்ட கீழ்தோன்றும் முடிவுகளுக்கு பயன்படுத்த தேடுபொறி", "voice_search": "குரல் தேடல்", "dropdown": "கீழ்தோன்றும் தேடல்", "focus": "தாவல் திறந்த மீது கவனம் செலுத்துங்கள்", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "எழுதியவர் {author}", "all": "அனைத்தும்", - "learn_more": "மேலும் அறிக", "photo_packs": "புகைப்பட பொதிகள்", "quote_packs": "மேற்கோள் பொதிகள்", "preset_settings": "முன்னமைக்கப்பட்ட அமைப்புகள்", - "no_items": "இந்த பிரிவில் உருப்படிகள் இல்லை", - "collection": "சேகரிப்பு", - "explore_collection": "தொகுப்பை ஆராயுங்கள்", - "add_all": "அனைத்தையும் மியூ சேர்க்கவும்", "collections": "சேகரிப்புகள்", - "cant_find": "நீங்கள் தேடுவதைக் கண்டுபிடிக்க முடியவில்லையா?", - "knowledgebase_one": "பார்வையிடவும்", - "knowledgebase_two": "அறிவுத் தளம்", - "knowledgebase_three": "உங்கள் சொந்தத்தை உருவாக்க.", - "installing": "நிறுவுகிறது", - "product": { - "overview": "கண்ணோட்டம்", - "information": "தகவல்", - "last_updated": "கடைசியாக புதுப்பிக்கப்பட்டது", - "description": "விவரம்", - "details": "விவரங்கள்", - "more_from_curator": "{name} இலிருந்து இது போன்றது", - "show_more": "மேலும் காட்டு", - "show_less": "குறைவாகக் காட்டு", - "show_all": "அனைத்தையும் காட்டு", - "showing": "காண்பிக்க", - "no_images": "படங்கள்", - "no_quotes": "இல்லை மேற்கோள்கள்", - "version": "பதிப்பு", - "created_by": "உருவாக்கியது", - "updated_at": "புதுப்பிக்கப்பட்டது", - "part_of": "ஒரு பகுதி", - "explore": "ஆராயுங்கள்", - "buttons": { - "addtomue": "MUE இல் சேர்க்கவும்", - "remove": "அகற்று", - "update_addon": "கூடுதல் புதுப்பிப்பு", - "back": "பின்", - "report": "அறிக்கை", - "not_available_preview": "முன்னோட்டத்தில் கிடைக்கவில்லை" - }, - "not_in_language": "இந்த துணை நிரல் உங்கள் மொழியில் இல்லை", - "third_party_api": "இந்த துணை நிரல் மூன்றாம் தரப்பு பநிஇ ஐப் பயன்படுத்துகிறது", - "sideload_warning": "இந்த துணை நிரல் ஓரங்கட்டப்பட்டுள்ளது.", - "setting": "அமைத்தல்", - "value": "மதிப்பு" - }, "offline": { "title": "நீங்கள் ஆஃப்லைனில் தெரிகிறது", "description": "இணையத்துடன் இணைக்கவும்" @@ -666,26 +616,9 @@ "newest": "நிறுவப்பட்டது (புதியது)", "a_z": "அகரவரிசை (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "உருவாக்கு", - "moved_title": "கூடுதல் ஐ உருவாக்குங்கள்!", - "moved_description": "7.1 புதுப்பிப்பைத் தொடர்ந்து, துணை நிரல்களின் உருவாக்கம் இப்போது வலை இடைமுகம் க்கு நகர்ந்தது", - "moved_button": "விரைவில் வருகிறது ...." } } }, - "update": { - "title": "புதுப்பிப்பு", - "offline": { - "title": "இணையமில்லாமல்", - "description": "இணைப்பில்லாத பயன்முறையில் இருக்கும்போது புதுப்பிப்பு பதிவுகளைப் பெற முடியாது" - }, - "error": { - "title": "பிழை", - "description": "சேவையகத்துடன் இணைக்க முடியவில்லை" - } - }, "welcome": { "tip": "விரைவான உதவிக்குறிப்பு", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "இணைப்பை நகலெடுக்கவும்", - "email": "மின்னஞ்சல்" + "copy_link": "இணைப்பை நகலெடுக்கவும்" } }, "toasts": { diff --git a/src/i18n/locales/tr_TR.json b/src/i18n/locales/tr_TR.json index 7608f856..8e0dde33 100644 --- a/src/i18n/locales/tr_TR.json +++ b/src/i18n/locales/tr_TR.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Fotoğraf sahibi", - "unsplash": ", Unsplash", "information": "Bilgilendirme", "download": "İndir", "downloads": "İndirilenler", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Etkinleştir", - "open_knowledgebase": "Bilgilendirme Sayfasını Aç", "additional_settings": "Ek Ayarlar", "reminder": { "title": "BİLDİRİM", @@ -316,12 +314,6 @@ "search": { "title": "Arama", "additional": "Arama aracı için ekran ve işlevsellik seçeneklerini belirleyin.", - "search_engine": "Arama Motoru", - "search_engine_subtitle": "Arama çubuğunda kullanılacak arama motorunu seçin.", - "custom": "Özel URL/bağlantı", - "autocomplete": "Otomatik Tamamlama", - "autocomplete_provider": "Otomatik Tamamlama Sağlayıcısı", - "autocomplete_provider_subtitle": "Otomatik tamamlama açılır sonuçları için kullanılacak arama motorunu belirleyin.", "voice_search": "Sesli Arama", "dropdown": "Arama Motorları Açılır Menüsü", "focus": "Açık Sekmeye Odaklan", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "{author}", "all": "Tümü", - "learn_more": "Daha Fazla Bilgi Edin", "photo_packs": "Fotoğraf Paketleri", "quote_packs": "Alıntı Paketleri", "preset_settings": "Ön Ayar Paketleri", - "no_items": "Bu kategoride öğe yok", - "collection": "Koleksiyon", - "explore_collection": "Koleksiyonu Keşfedin", - "add_all": "Hepsini Ekle", "collections": "Koleksiyonlar", - "cant_find": "Aradığınızı bulamıyor musunuz?", - "knowledgebase_one": "Kendiniz oluşturmak için", - "knowledgebase_two": "bilgilendirme sayfamızı", - "knowledgebase_three": "ziyaret edin.", - "installing": "Kurulum", - "product": { - "overview": "Genel Bakış", - "information": "Bilgi", - "last_updated": "Son Güncelleme", - "description": "Açıklama", - "details": "Ayrıntılar", - "more_from_curator": "{name} tarafından sağlanan buna benzer diğer içerikler", - "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ı Sayısı", - "version": "Versiyon", - "created_by": "Oluşturan", - "updated_at": "Tarihinde güncellendi", - "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", - "not_available_preview": "Önizlemede Kullanılamıyor" - }, - "not_in_language": "Bu eklenti sizin dilinizde değil", - "third_party_api": "Bu eklenti üçüncü taraf bir API kullanır", - "sideload_warning": "Bu eklenti dışarıdan yüklenmiştir.", - "setting": "Ayar", - "value": "Değer" - }, "offline": { "title": "Görünüşe bakılırsa çevrimdışısınız", "description": "Lütfen internete bağlanın" @@ -666,26 +616,9 @@ "newest": "Kurulanlar (En Yeni)", "a_z": "Alfabetik (A-Z)", "recently_updated": "Recently Updated" - }, - "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": "Çok Yakında...." } } }, - "update": { - "title": "Güncelleme", - "offline": { - "title": "Çevrimdışı", - "description": "Çevrimdışı moddayken güncelleme günlükleri alınamıyor" - }, - "error": { - "title": "Hata", - "description": "Sunucuya bağlanılamadı" - } - }, "welcome": { "tip": "Hızlı ipucu", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Bağlantıyı kopyala", - "email": "E-posta" + "copy_link": "Bağlantıyı kopyala" } }, "toasts": { diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json index c1d7edbf..adacae2b 100644 --- a/src/i18n/locales/uk.json +++ b/src/i18n/locales/uk.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Фотографія зроблена", - "unsplash": "на Unsplash", "information": "Інформація", "download": "Завантажити'", "downloads": "Завантаження", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Увімкнено", - "open_knowledgebase": "Відкрита база знань", "additional_settings": "Додаткові налаштування", "reminder": { "title": "ЗАМІТКА", @@ -316,12 +314,6 @@ "search": { "title": "Пошук", "additional": "Додаткові параметри відображення та функціональності пошукового віджета", - "search_engine": "Пошукова система", - "search_engine_subtitle": "Виберіть пошукову систему в рядку пошуку", - "custom": "Користувацька URL-адреса пошуку", - "autocomplete": "Автозаповнення", - "autocomplete_provider": "Провайдер автозаповнення", - "autocomplete_provider_subtitle": "Пошукова система для автоматичного заповнення випадаючих результатів", "voice_search": "Голосовий пошук", "dropdown": "Випадаючий список пошуку", "focus": "Фокус на відкритій вкладці", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "від {author}", "all": "Усе", - "learn_more": "Дізнатися більше", "photo_packs": "Набори фото", "quote_packs": "Набори цитат", "preset_settings": "Пресети налаштувань", - "no_items": "У цій категорії немає елементів", - "collection": "Колекція", - "explore_collection": "Дослідити колекцію", - "add_all": "Додати все до Муе", "collections": "Колекції", - "cant_find": "Не можете знайти те, що шукаєте?", - "knowledgebase_one": "Завітайте на сторінку", - "knowledgebase_two": "база знань", - "knowledgebase_three": "щоб створити свій власний.", - "installing": "Встановлення", - "product": { - "overview": "Огляд", - "information": "Інформація", - "last_updated": "Останнє оновлення", - "description": "Опис", - "details": "Деталі", - "more_from_curator": "Більше схоже на це від {name}", - "show_more": "Показати більше", - "show_less": "Показати менше", - "show_all": "Показати всі", - "showing": "Показати", - "no_images": "Ні. Зображення", - "no_quotes": "Ні. Цитати", - "version": "Версія", - "created_by": "Створено", - "updated_at": "Оновлено на", - "part_of": "Частина", - "explore": "Дослідити", - "buttons": { - "addtomue": "Додати до", - "remove": "Видалити", - "update_addon": "Оновлення доповнення", - "back": "Назад", - "report": "Звіт", - "not_available_preview": "Недоступно в режимі попереднього перегляду" - }, - "not_in_language": "Це доповнення недоступне вашою мовою", - "third_party_api": "Це доповнення використовує сторонній API", - "sideload_warning": "Це доповнення було завантажено збоку.", - "setting": "Налаштування'", - "value": "Значення" - }, "offline": { "title": "Схоже, ти не в мережі", "description": "Будь ласка, підключіться до Інтернету" @@ -666,26 +616,9 @@ "newest": "Встановлені (найновіші)", "a_z": "За алфавітом (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Створити", - "moved_title": "Створення доповнення переїхало!", - "moved_description": "Після оновлення 7.1 створення аддонів було перенесено у веб-інтерфейс", - "moved_button": "Незабаром...." } } }, - "update": { - "title": "Оновлення", - "offline": { - "title": "Офлайн", - "description": "Неможливо отримати журнали оновлень в автономному режимі" - }, - "error": { - "title": "Помилка", - "description": "Не вдалося підключитися до сервера" - } - }, "welcome": { "tip": "Коротка порада", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Скопіювати посилання", - "email": "Електронна пошта" + "copy_link": "Скопіювати посилання" } }, "toasts": { diff --git a/src/i18n/locales/vi.json b/src/i18n/locales/vi.json index 1188627d..af20ba79 100644 --- a/src/i18n/locales/vi.json +++ b/src/i18n/locales/vi.json @@ -16,7 +16,6 @@ }, "background": { "credit": "Photo by", - "unsplash": "on Unsplash", "information": "Information", "download": "Download", "downloads": "Downloads", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "Enabled", - "open_knowledgebase": "Open Knowledgebase", "additional_settings": "Additional Settings", "reminder": { "title": "NOTICE", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/zh_CN.json b/src/i18n/locales/zh_CN.json index 77745801..5fc6014c 100644 --- a/src/i18n/locales/zh_CN.json +++ b/src/i18n/locales/zh_CN.json @@ -16,7 +16,6 @@ }, "background": { "credit": "图像作者:", - "unsplash": "@ Unsplash", "information": "信息", "download": "下载", "downloads": "下载", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "已启用", - "open_knowledgebase": "打开知识库", "additional_settings": "更多设置", "reminder": { "title": "注意", @@ -316,12 +314,6 @@ "search": { "title": "搜索栏", "additional": "Additional options for search widget display and functionality", - "search_engine": "搜索引擎", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "自定义搜索链接", - "autocomplete": "搜索联想", - "autocomplete_provider": "联想功能提供引擎", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "语音搜索", "dropdown": "搜索框左侧显示搜索引擎选择框", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "图片包", "quote_packs": "名言包", "preset_settings": "预设设定", - "no_items": "本类别为空", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "总览", - "information": "信息", - "last_updated": "更新日期", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "版本", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "添加至 Mue", - "remove": "卸载", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "您目前似乎离线", "description": "请连接到互联网。" @@ -666,26 +616,9 @@ "newest": "安装过 (从新到旧)", "a_z": "首字母 (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "创建", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Get Started" } } }, - "update": { - "title": "更新日志", - "offline": { - "title": "离线模式已启用", - "description": "不能从官网获取更新日志" - }, - "error": { - "title": "错误", - "description": "无法连接到服务器" - } - }, "welcome": { "tip": "快速提示", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": { diff --git a/src/i18n/locales/zh_Hant.json b/src/i18n/locales/zh_Hant.json index 8205404c..2d93595c 100644 --- a/src/i18n/locales/zh_Hant.json +++ b/src/i18n/locales/zh_Hant.json @@ -16,7 +16,6 @@ }, "background": { "credit": "影像來自", - "unsplash": "在 Unsplash 上", "information": "資訊", "download": "下載", "downloads": "下載", @@ -101,7 +100,6 @@ }, "settings": { "enabled": "已啟用", - "open_knowledgebase": "開啟知識庫", "additional_settings": "附加設定", "reminder": { "title": "注意", @@ -316,12 +314,6 @@ "search": { "title": "Search", "additional": "Additional options for search widget display and functionality", - "search_engine": "Search Engine", - "search_engine_subtitle": "Choose search engine to use in the search bar", - "custom": "Custom Search URL", - "autocomplete": "Autocomplete", - "autocomplete_provider": "Autocomplete Provider", - "autocomplete_provider_subtitle": "Search engine to use for autocomplete dropdown results", "voice_search": "Voice search", "dropdown": "Search Dropdown", "focus": "Focus on tab open", @@ -589,52 +581,10 @@ "title": "Marketplace", "by": "by {author}", "all": "All", - "learn_more": "Learn More", "photo_packs": "Photo Packs", "quote_packs": "Quote Packs", "preset_settings": "Preset Settings", - "no_items": "No items in this category", - "collection": "Collection", - "explore_collection": "Explore Collection", - "add_all": "Add All To Mue", "collections": "Collections", - "cant_find": "Can't find what you're looking for?", - "knowledgebase_one": "Visit the", - "knowledgebase_two": "knowledgebase", - "knowledgebase_three": "to create your own.", - "installing": "Installing", - "product": { - "overview": "Overview", - "information": "Information", - "last_updated": "Last Updated", - "description": "Description", - "details": "Details", - "more_from_curator": "More like this from {name}", - "show_more": "Show More", - "show_less": "Show Less", - "show_all": "Show All", - "showing": "Showing", - "no_images": "No. Images", - "no_quotes": "No. Quotes", - "version": "Version", - "created_by": "Created by", - "updated_at": "Updated on", - "part_of": "Part of", - "explore": "Explore", - "buttons": { - "addtomue": "Add To Mue", - "remove": "Remove", - "update_addon": "Update Add-on", - "back": "Back", - "report": "Report", - "not_available_preview": "Unavailable on Preview" - }, - "not_in_language": "This add-on is not in your language", - "third_party_api": "This add-on uses a third-party API", - "sideload_warning": "This add-on has been sideloaded.", - "setting": "Setting", - "value": "Value" - }, "offline": { "title": "Looks like you're offline", "description": "Please connect to the internet" @@ -666,26 +616,9 @@ "newest": "Installed (Newest)", "a_z": "Alphabetical (A-Z)", "recently_updated": "Recently Updated" - }, - "create": { - "title": "Create", - "moved_title": "Create add-on has moved!", - "moved_description": "Following the 7.1 update, the creation of addons has now moved to the web UI", - "moved_button": "Coming Soon...." } } }, - "update": { - "title": "Update", - "offline": { - "title": "Offline", - "description": "Cannot get update logs while in offline mode" - }, - "error": { - "title": "Error", - "description": "Could not connect to the server" - } - }, "welcome": { "tip": "Quick Tip", "sections": { @@ -752,8 +685,7 @@ } }, "share": { - "copy_link": "Copy link", - "email": "Email" + "copy_link": "Copy link" } }, "toasts": {