diff --git a/commandsConfig.json b/commandsConfig.json index 848e9ad..c848802 100644 --- a/commandsConfig.json +++ b/commandsConfig.json @@ -1 +1 @@ -{"20850A52-2A46-42A2-BED5-35F9E9B55344":true,"4DBE9DD0-E8A2-225B-6F61-DD00381B528D":true,"3EC8A2EA-07B2-2612-A677-3FB0F5298D1D":true,"EFFFCB45-86C9-AABC-CF9B-DF6490AC0462":true,"C52EC66E-9A89-29A8-42B3-4CC7B7132E6C":true,"2C813AB6-109C-7BBE-50A5-B54CE1C30BD8":true,"D7F4AFA8-8EA1-BC0F-6E19-D608FEBFAE6F":true,"59A7532E-805F-8882-A6F1-6BF822E96612":false,"CB056517-63D9-B551-8511-11E80088C8EF":false,"2B6A9F64-1300-3A56-69AE-7BA38AFA06A8":true,"448838E8-1E72-75AD-101E-C129E2FD5DF0":false,"367D7C2A_149F_4062_F62D_C3825B487F09":true,"6BC1CE1B_C4CE_654D_C882_CCA798AF3BB8":false,"2B16E45E_BEFD_C1FC_3173_CB814F949E1C":true,"170CF1E7_E7B8_0A81_7F1E_3448512C7196":false,"88C44197_BCD5_FC28_A79A_9448825359B9":true} +{"20850A52-2A46-42A2-BED5-35F9E9B55344":true,"4DBE9DD0-E8A2-225B-6F61-DD00381B528D":true,"3EC8A2EA-07B2-2612-A677-3FB0F5298D1D":true,"EFFFCB45-86C9-AABC-CF9B-DF6490AC0462":true,"C52EC66E-9A89-29A8-42B3-4CC7B7132E6C":true,"2C813AB6-109C-7BBE-50A5-B54CE1C30BD8":true,"D7F4AFA8-8EA1-BC0F-6E19-D608FEBFAE6F":true,"CB056517-63D9-B551-8511-11E80088C8EF":false,"2B6A9F64-1300-3A56-69AE-7BA38AFA06A8":true,"448838E8-1E72-75AD-101E-C129E2FD5DF0":false,"367D7C2A_149F_4062_F62D_C3825B487F09":true,"6BC1CE1B_C4CE_654D_C882_CCA798AF3BB8":false,"2B16E45E_BEFD_C1FC_3173_CB814F949E1C":true,"170CF1E7_E7B8_0A81_7F1E_3448512C7196":false,"88C44197_BCD5_FC28_A79A_9448825359B9":true,"84EDED19_4A31_A778_5C2C_BFBF8F5D3FA1":true} diff --git a/package.json b/package.json index bed912e..083a0a7 100755 --- a/package.json +++ b/package.json @@ -15,8 +15,8 @@ "jsdoc": "jsdoc src -r", "deploy_jsdoc": "yarn jsdoc && gh-pages -d out", "test": "yarn build", - "generate:locale": "node scripts/translate_locales.js", "generate:emoji": "node scripts/transform_emoji.js", + "generate:locale": "node scripts/generate-locale", "generate:command": "node scripts/generate-command", "delete:command": "node scripts/delete-command", "fix:prettier": "prettier --write $(git ls-files --others --exclude-standard)" diff --git a/scripts/generate-locale b/scripts/generate-locale new file mode 100644 index 0000000..a680dab --- /dev/null +++ b/scripts/generate-locale @@ -0,0 +1,4 @@ +#! /usr/bin/env node + +require = require('esm')(module); +require('./generateLocale').cli(process.argv); diff --git a/scripts/generateLocale.js b/scripts/generateLocale.js new file mode 100644 index 0000000..9ed192e --- /dev/null +++ b/scripts/generateLocale.js @@ -0,0 +1,95 @@ +/* eslint-disable no-console */ +import path from "path"; +import chalk from "chalk/source"; +import arg from "arg"; +import inquirer from "inquirer"; +import { translateLocales } from "./translate_locales"; +const jsonfile = require("jsonfile"); + +const mainLocaleJsonFile = path.join(__dirname, "./locale_en.json"); +const localeJson = jsonfile.readFileSync(mainLocaleJsonFile); + +async function promptForMissingOptions(options) { + const validateInput = propName => (value) => { + if (value == '') return `${propName} can't be Empty!`; + else if (propName == 'key') { + if (localeJson.hasOwnProperty(value)) { + return "key already exist!"; + } else { + return true; + } + } + else { + return true; + } + }; + const questions = []; + if (isNull(options.key)) { + questions.push({ + type: "input", + validate: validateInput('key'), + name: "key", + message: "type key name:" + }); + } + if (isNull(options.value)) { + questions.push({ + type: "input", + name: "value", + validate: validateInput('value'), + message: "Type value of the key:" + }); + } + if (isNull(options.install)) { + questions.push({ + type: "confirm", + name: "install", + default: false, + message: "do you really want to create this command?" + }); + } + const answers = await inquirer.prompt(questions); + return { + ...options, + key: options.key || answers.key, + value: options.value || answers.value, + install: options.install || answers.install + }; +} +function parseArgsIntoOptions(rawArgs) { + const args = arg( + { + "--key": String, + "--value": String, + "--install": Boolean, + }, + { + argv: rawArgs.slice(2) + } + ); + return { + key: args["--key"] || null, + value: args["--value"] || null, + install: args["--install"] || null, + }; +} +function isNull(val) { + return val == null; +} +async function updateLocales(locale) { + localeJson[locale.key] = { + message: locale.value, + description: locale.value, + }; + jsonfile.writeFileSync(mainLocaleJsonFile, localeJson, { flag: "w" }); + /** translate locales*/ + await translateLocales(); +} +export async function cli(args) { + let options = parseArgsIntoOptions(args); + options = await promptForMissingOptions(options); + if (!options.install) return; + // write key value in the json file + await updateLocales(options); + console.log(chalk.cyan(`${options.key} has been created!`)); +} diff --git a/scripts/locale_en.json b/scripts/locale_en.json index f144419..b003ea0 100644 --- a/scripts/locale_en.json +++ b/scripts/locale_en.json @@ -1 +1 @@ -{"appName":{"message":"Speech Recognition Toolkit","description":"app name"},"appDescription":{"message":"Fill out any web form by using only your voice!","description":"app short description"},"audio_permission_todo_label":{"message":"Please Click on the button below to allow audio permissions in order to use this tool.","description":"audio permission page instruction content"},"audio_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"audio permission success message"},"audio_permission_notice_info":{"message":"Note: If you have accidentally disallowed permissions, then you can allow them from clicking top left corner of search bar of this tab","description":"audio permission extra info"},"allow_permission_label":{"message":"Allow permission","description":"Allow audio permission label"},"popup_mic_listening_note":{"message":"* Now click on any input and speak","description":"note to user when mic starts listening"},"popup_allow_permission_btn_str":{"message":"Allow Audio Permission","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"click here to Allow Audio Permission","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Settings","description":"setting tab string"},"popup_mic_listening_label":{"message":"Listening","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Help","description":"help tab string"},"popup_help_heading_str":{"message":"We are here to help","description":"popup help tab heading"},"popup_help_desc_str":{"message":"If you have experienced any issue, please report it","description":"popup help tab description"},"here":{"message":"here","description":"word"},"popup_default_language_label_str":{"message":"Default Language","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Click to change default language","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Click here to turn On/Off Speech Recognition","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Open Settings","description":"popup page gear button tooltip"},"popup_show_commands_tooltip_str":{"message":"Click to see voice commands","description":"voice commands control label "},"popup_show_commands_label":{"message":"Show Commands","description":"voice commands control label "},"option_onstart_setting_str":{"message":"Start 'Speech Recognition' when Chrome starts","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Change Speech Recognition Language","description":"language change setting label"},"option_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji not found!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Use emoji dictation (more than 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Search for closest sounding emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"How to use this tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"new line","description":"new line (.) label"},"commands_list_label":{"message":"Commands List for language","description":"Commands List for language label"},"command_name_label":{"message":"Command's Name","description":"Command's Name label"},"command_description_label":{"message":"Command's Description","description":"Command's Description label"},"command_arrow_label":{"message":"arrow","description":"command arrow label"},"command_arrow_description":{"message":"Say 'arrow left' to type left arrow key. possible commands: arrow left | right | top | down","description":"command arrow desc"},"left_label":{"message":"left","description":"left label"},"right_label":{"message":"right","description":"right label"},"up_label":{"message":"up","description":"up label"},"down_label":{"message":"down","description":"down label"},"command_go_to_label":{"message":"go to","description":"command go to label"},"command_go_to_label2":{"message":"visit","description":"command go to label 2"},"command_go_to_label3":{"message":"open","description":"command go to label 3"},"command_search_label":{"message":"search","description":"command search label"},"command_search_label2":{"message":"google","description":"command search label 2"},"command_search_description":{"message":"Say search cat or google cat to search cat on google.com","description":"command search desc"},"command_bookmark_label":{"message":"bookmark","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bookmark this page","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"remove bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"remove this bookmark","description":"command bookmark label 4"},"command_bookmark_description":{"message":" Say 'Bookmark this page' or 'remove bookmark' to add or remove bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Added this page to bookmarks!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Removed this page from bookmarks!","description":"command bookmark remove callback"},"command_go_to_description":{"message":"Say 'go to facebook.com to open new tab for facebook.com","description":"command go to description"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Say 'mindfulness' to insert a random mindfulness thought in the text box","description":"command mindfulness desc"},"command_emoji_description":{"message":"Say 'emoji emoji's name' to insert somewhat similar emoji from list of 1800 emojis. checkout full list of emojis in setting page","description":"command emoji desc"},"command_newline_description_new":{"message":"Say new line to get a new line.","description":"command newline desc"},"command_press_enter_description":{"message":"Say press enter to Press 'Enter' key. Useful for submitting forms","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji's List for language","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's name","description":"emoji name label"},"check_here_label":{"message":"Check here","description":"Check here label"},"imoji_list_label_new":{"message":"Imoji List","description":"imoji list label"},"command_list_label":{"message":"Command List","description":"Command List label"},"symbol_list_label":{"message":"Mathematical Symbols list","description":"Mathematical Symbols list label"},"create_mcode_label":{"message":"Create Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Enable/Disable","description":"enable or disable command label"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"play","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Say 'play song_name', it will play the song from youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"find","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"highlight","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Say 'highlight keyword' to highlight the keyword on current page and vice-verca","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"undo","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"redo","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"undo all","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Say undo/redo/undo all to do undo/redo/undo all.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"next","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"previous","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigate to input elements by saying next and previous","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scroll up","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scroll down","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Say scroll down/ scroll up to scroll the page.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Speech Recognition Toolkit","description":"app name"},"appDescription":{"message":"Fill out any web form by using only your voice!","description":"app short description"},"audio_permission_todo_label":{"message":"Please Click on the button below to allow audio permissions in order to use this tool.","description":"audio permission page instruction content"},"audio_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"audio permission success message"},"audio_permission_notice_info":{"message":"Note: If you have accidentally disallowed permissions, then you can allow them from clicking top left corner of search bar of this tab","description":"audio permission extra info"},"allow_permission_label":{"message":"Allow permission","description":"Allow audio permission label"},"popup_mic_listening_note":{"message":"* Now click on any input and speak","description":"note to user when mic starts listening"},"popup_allow_permission_btn_str":{"message":"Allow Audio Permission","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"click here to Allow Audio Permission","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Settings","description":"setting tab string"},"popup_mic_listening_label":{"message":"Listening","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Help","description":"help tab string"},"popup_help_heading_str":{"message":"We are here to help","description":"popup help tab heading"},"popup_help_desc_str":{"message":"If you have experienced any issue, please report it","description":"popup help tab description"},"here":{"message":"here","description":"word"},"popup_default_language_label_str":{"message":"Default Language","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Click to change default language","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Click here to turn On/Off Speech Recognition","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Open Settings","description":"popup page gear button tooltip"},"popup_show_commands_tooltip_str":{"message":"Click to see voice commands","description":"voice commands control label "},"popup_show_commands_label":{"message":"Show Commands","description":"voice commands control label "},"option_onstart_setting_str":{"message":"Start 'Speech Recognition' when Chrome starts","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Change Speech Recognition Language","description":"language change setting label"},"option_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji not found!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Use emoji dictation (more than 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Search for closest sounding emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"How to use this tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"new line","description":"new line (.) label"},"commands_list_label":{"message":"Commands List for language","description":"Commands List for language label"},"command_name_label":{"message":"Command's Name","description":"Command's Name label"},"command_description_label":{"message":"Command's Description","description":"Command's Description label"},"command_arrow_label":{"message":"arrow","description":"command arrow label"},"command_arrow_description":{"message":"Say 'arrow left' to type left arrow key. possible commands: arrow left | right | top | down","description":"command arrow desc"},"left_label":{"message":"left","description":"left label"},"right_label":{"message":"right","description":"right label"},"up_label":{"message":"up","description":"up label"},"down_label":{"message":"down","description":"down label"},"command_search_label":{"message":"search","description":"command search label"},"command_search_label2":{"message":"google","description":"command search label 2"},"command_search_description":{"message":"Say search cat or google cat to search cat on google.com","description":"command search desc"},"command_bookmark_label":{"message":"bookmark","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bookmark this page","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"remove bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"remove this bookmark","description":"command bookmark label 4"},"command_bookmark_description":{"message":" Say 'Bookmark this page' or 'remove bookmark' to add or remove bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Added this page to bookmarks!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Removed this page from bookmarks!","description":"command bookmark remove callback"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Say 'mindfulness' to insert a random mindfulness thought in the text box","description":"command mindfulness desc"},"command_emoji_description":{"message":"Say 'emoji emoji's name' to insert somewhat similar emoji from list of 1800 emojis. checkout full list of emojis in setting page","description":"command emoji desc"},"command_newline_description_new":{"message":"Say new line to get a new line.","description":"command newline desc"},"command_press_enter_description":{"message":"Say press enter to Press 'Enter' key. Useful for submitting forms","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji's List for language","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's name","description":"emoji name label"},"check_here_label":{"message":"Check here","description":"Check here label"},"imoji_list_label_new":{"message":"Imoji List","description":"imoji list label"},"command_list_label":{"message":"Command List","description":"Command List label"},"symbol_list_label":{"message":"Mathematical Symbols list","description":"Mathematical Symbols list label"},"create_mcode_label":{"message":"Create Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Enable/Disable","description":"enable or disable command label"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"play","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Say 'play song_name', it will play the song from youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"find","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"highlight","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Say 'highlight keyword' to highlight the keyword on current page and vice-verca","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"undo","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"redo","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"undo all","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Say undo/redo/undo all to do undo/redo/undo all.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"next","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"previous","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigate to input elements by saying next and previous","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scroll up","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scroll down","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Say scroll down/ scroll up to scroll the page.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"go to","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"visit","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"open","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"bookmark","description":"bookmark"}} diff --git a/src/app/_locales/am/messages.json b/src/app/_locales/am/messages.json index 2d9e7e3..b5fa78b 100644 --- a/src/app/_locales/am/messages.json +++ b/src/app/_locales/am/messages.json @@ -1 +1 @@ -{"appName":{"message":"የንግግር ማወቂያ መሣሪያ ስብስብ","description":"app name"},"appDescription":{"message":"ድምጽዎን ብቻ በመጠቀም ማንኛውንም የድር ቅጽ ይሙሉ!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"የድምጽ ፍቃድን ፍቀድ","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"የድምጽ ፍቃድን ለመፍቀድ እዚህ ጠቅ ያድርጉ","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"ቅንብሮች","description":"setting tab string"},"popup_mic_listening_label":{"message":"ማዳመጥ","description":"label when mic is listening"},"popup_help_tab_str":{"message":"እገዛ","description":"help tab string"},"popup_help_heading_str":{"message":"እኛ ለመርዳት እዚህ ነን","description":"popup help tab heading"},"popup_help_desc_str":{"message":"ማንኛውም ጉዳይ አጋጥሞዎት ከሆነ እባክዎ ሪፖርት ያድርጉት","description":"popup help tab description"},"here":{"message":"እዚህ","description":"word"},"popup_default_language_label_str":{"message":"ነባሪ ቋንቋ","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ነባሪ ቋንቋን ለመለወጥ ጠቅ ያድርጉ","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"የንግግር እውቅና ለማብራት / ለማብራት እዚህ ጠቅ ያድርጉ","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ቅንብሮችን ይክፈቱ","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ሲጀመር ‹የንግግር ማወቂያን› ይጀምሩ","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"የንግግር ማወቂያ ቋንቋን ይቀይሩ","description":"language change setting label"},"option_permission_success_msg":{"message":"አሁን ይህንን ትር መዝጋት እና በድምፅዎ በማንኛውም ድር ጣቢያ ላይ ለመተየብ ይህንን መሳሪያ መጠቀም ይችላሉ!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"እባክዎን ይህንን መሳሪያ ለመጠቀም ፈቃዶችን ይፍቀዱ!","description":"error message when user rejects permission"},"emoji":{"message":"ገላጭ ምስል","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ስሜት ገላጭ ምስል አልተገኘም!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ስሜት ገላጭ አጻጻፍ ይጠቀሙ (ከ 1800 በላይ ገላጭ ምስሎች)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"በጣም ቅርብ የሆነ የድምፅ ስሜት ገላጭ ምስል ይፈልጉ","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ይህንን መሳሪያ እንዴት መጠቀም እንደሚቻል?","description":"How to use this tool ? string"},"new_line_label":{"message":"አዲስ መስመር","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"የድምፅ ትዕዛዞችን ለማየት ጠቅ ያድርጉ","description":"voice commands control label "},"popup_show_commands_label":{"message":"ትዕዛዞችን አሳይ","description":"voice commands control label "},"commands_list_label":{"message":"የትእዛዝ ዝርዝር ለቋንቋ","description":"Commands List for language label"},"command_name_label":{"message":"የትእዛዝ ስም","description":"Command's Name label"},"command_description_label":{"message":"የትእዛዝ መግለጫ","description":"Command's Description label"},"command_emoji_description":{"message":"ከ 1800 ስሜት ገላጭ ምስሎች ዝርዝር ጋር በተወሰነ መልኩ ተመሳሳይ ስሜት ገላጭ ምስል ለማስገባት ‹የስሜት ገላጭ ምስል ስሜት› ይበሉ ፡፡ በቅንብር ገጽ ውስጥ የሙሉ ስሜት ገላጭ ምስሎች ዝርዝር ይሙሉ","description":"command emoji desc"},"command_newline_description":{"message":"ለመተየብ አዲስ መስመር ይበሉ። '","description":"command newline desc"},"command_press_enter_description":{"message":"‘Enter’ ቁልፍን ለመጫን Enter ን ይጫኑ ይበሉ ፡፡ ቅጾችን ለማስረከብ ጠቃሚ ነው","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ለቋንቋ ስሜት ገላጭ ምስል ዝርዝር","description":"emoji list label"},"emoji_name_label":{"message":"የስሜት ገላጭ ምስል ስም","description":"emoji name label"},"command_newline_description_new":{"message":"አዲስ መስመር ለማግኘት አዲስ መስመር ይበሉ ፡፡","description":"command newline desc"},"check_here_label":{"message":"እዚህ ያረጋግጡ","description":"Check here label"},"imoji_list_label":{"message":"እዚህ ያረጋግጡ","description":"Check here label"},"command_list_label":{"message":"የትእዛዝ ዝርዝር","description":"Command List label"},"imoji_list_label_new":{"message":"ስሜት ገላጭ ምስል ዝርዝር","description":"imoji list label"},"symbol_list_label":{"message":"የሂሳብ ምልክቶች ዝርዝር","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"ማስተዋል","description":"Mindfulness command"},"command_mindfulness_description":{"message":"በጽሑፍ ሳጥኑ ውስጥ የዘፈቀደ የአስተሳሰብ አስተሳሰብ ለማስገባት ‹አእምሮን› ይበሉ","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ይህንን መሳሪያ ለመጠቀም የድምጽ ፈቃዶችን ለመፍቀድ እባክዎ ከዚህ በታች ባለው አዝራር ላይ ጠቅ ያድርጉ።","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"ማስታወሻ በአጋጣሚ ያልተፈቀዱ ፈቃዶች ካሉዎት የዚህን ትር የፍለጋ አሞሌ የላይኛው ግራ ጥግ ላይ ጠቅ እንዲያደርጉ መፍቀድ ይችላሉ።","description":"audio permission extra info"},"allow_permission_label":{"message":"ፈቃድ ይፍቀዱ","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"እባክዎን ይህንን መሳሪያ ለመጠቀም ፈቃዶችን ይፍቀዱ!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"አሁን ይህንን ትር መዝጋት እና በድምፅዎ በማንኛውም ድር ጣቢያ ላይ ለመተየብ ይህንን መሳሪያ መጠቀም ይችላሉ!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* አሁን በማንኛውም ግብዓት ላይ ጠቅ ያድርጉ እና ይናገሩ","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"የሞርስ ኮድ ይፍጠሩ","description":"cmc label"},"command_enable_disable_label":{"message":"ማስቻል አለማስቻል","description":"enable or disable command label"},"command_arrow_label":{"message":"ቀስት","description":"command arrow label"},"command_arrow_description":{"message":"የግራ ቀስት ቁልፍን ለመተየብ ‘ቀስት ግራ’ ይበሉ። ሊሆኑ የሚችሉ ትዕዛዞች ቀስት ቀርቷል | መብት | ከላይ | ታች","description":"command arrow desc"},"left_label":{"message":"ግራ","description":"left label"},"right_label":{"message":"ቀኝ","description":"right label"},"up_label":{"message":"ወደ ላይ","description":"up label"},"down_label":{"message":"ታች","description":"down label"},"command_go_to_label":{"message":"መሄድ","description":"command go to label"},"command_go_to_description":{"message":"ለ facebook.com አዲስ ትር ለመክፈት ወደ facebook.com ይሂዱ ይበሉ","description":"command go to description"},"command_go_to_label2":{"message":"ጉብኝት","description":"command go to label 2"},"command_go_to_label3":{"message":"ክፈት","description":"command go to label 3"},"command_search_label":{"message":"ፍለጋ","description":"command search label"},"command_search_label2":{"message":"በጉግል መፈለግ","description":"command go to label 2"},"command_search_description":{"message":"ድመትን በ google.com ላይ ለመፈለግ የፍለጋ ድመት ወይም የጉግል ድመት ይበሉ","description":"command go to label 3"},"command_bookmark_label":{"message":"ዕልባት","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ይህንን ገጽ ዕልባት ያድርጉ","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ዕልባት አስወግድ","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ይህን ዕልባት አስወግድ","description":"command bookmark label 4"},"command_bookmark_description":{"message":"ዕልባት ለማከል ወይም ለማስወገድ ‹ይህን ገጽ ዕልባት ያድርጉ› ወይም ‹ዕልባት አስወግድ› ይበሉ","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ይህንን ገጽ ወደ ዕልባቶች ታክሏል!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"ይህን ገጽ ከእልባቶች ተወግዷል!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"ጨዋታ","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"‹የዘፈን_ ስም አጫውት› ይበሉ ፣ ዘፈኑን ከዩቲዩብ ያጫውታል ፡፡","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"አግኝ","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ማድመቅ","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ብርሃን የማያበራ","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"በአሁን ገጽ እና በተቃራኒው በተቃራኒው ቁልፍ ቃሉን ለማጉላት ‹የድምቀት ቁልፍ ቃል› ይበሉ","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"መቀልበስ","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ዳግመኛ","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"ሁሉንም ቀልብስ","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"ሁሉንም ለመቀልበስ / ለመደጎም / ለመቀልበስ ሁሉንም ይደምስሱ / ይድገሙ ይበሉ ፡፡","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ቀጥሎ","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ቀዳሚ","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"የሚቀጥለውን እና የቀደመውን በመናገር ወደ ግብዓት አካላት ይሂዱ","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ወደላይ ሸብልል","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"ወድታች ውረድ","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"ገጹን ለማሸብለል ወደ ታች ይሸብልሉ / ወደ ላይ ይሸብልሉ ይበሉ።","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"የንግግር ማወቂያ መሣሪያ ስብስብ","description":"app name"},"appDescription":{"message":"ድምጽዎን ብቻ በመጠቀም ማንኛውንም የድር ቅጽ ይሙሉ!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"የድምጽ ፍቃድን ፍቀድ","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"የድምጽ ፍቃድን ለመፍቀድ እዚህ ጠቅ ያድርጉ","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"ቅንብሮች","description":"setting tab string"},"popup_mic_listening_label":{"message":"ማዳመጥ","description":"label when mic is listening"},"popup_help_tab_str":{"message":"እገዛ","description":"help tab string"},"popup_help_heading_str":{"message":"እኛ ለመርዳት እዚህ ነን","description":"popup help tab heading"},"popup_help_desc_str":{"message":"ማንኛውም ጉዳይ አጋጥሞዎት ከሆነ እባክዎ ሪፖርት ያድርጉት","description":"popup help tab description"},"here":{"message":"እዚህ","description":"word"},"popup_default_language_label_str":{"message":"ነባሪ ቋንቋ","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ነባሪ ቋንቋን ለመለወጥ ጠቅ ያድርጉ","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"የንግግር እውቅና ለማብራት / ለማብራት እዚህ ጠቅ ያድርጉ","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ቅንብሮችን ይክፈቱ","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ሲጀመር ‹የንግግር ማወቂያን› ይጀምሩ","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"የንግግር ማወቂያ ቋንቋን ይቀይሩ","description":"language change setting label"},"option_permission_success_msg":{"message":"አሁን ይህንን ትር መዝጋት እና በድምፅዎ በማንኛውም ድር ጣቢያ ላይ ለመተየብ ይህንን መሳሪያ መጠቀም ይችላሉ!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"እባክዎን ይህንን መሳሪያ ለመጠቀም ፈቃዶችን ይፍቀዱ!","description":"error message when user rejects permission"},"emoji":{"message":"ገላጭ ምስል","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ስሜት ገላጭ ምስል አልተገኘም!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ስሜት ገላጭ አጻጻፍ ይጠቀሙ (ከ 1800 በላይ ገላጭ ምስሎች)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"በጣም ቅርብ የሆነ የድምፅ ስሜት ገላጭ ምስል ይፈልጉ","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ይህንን መሳሪያ እንዴት መጠቀም እንደሚቻል?","description":"How to use this tool ? string"},"new_line_label":{"message":"አዲስ መስመር","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"የድምፅ ትዕዛዞችን ለማየት ጠቅ ያድርጉ","description":"voice commands control label "},"popup_show_commands_label":{"message":"ትዕዛዞችን አሳይ","description":"voice commands control label "},"commands_list_label":{"message":"የትእዛዝ ዝርዝር ለቋንቋ","description":"Commands List for language label"},"command_name_label":{"message":"የትእዛዝ ስም","description":"Command's Name label"},"command_description_label":{"message":"የትእዛዝ መግለጫ","description":"Command's Description label"},"command_emoji_description":{"message":"ከ 1800 ስሜት ገላጭ ምስሎች ዝርዝር ጋር በተወሰነ መልኩ ተመሳሳይ ስሜት ገላጭ ምስል ለማስገባት ‹የስሜት ገላጭ ምስል ስሜት› ይበሉ ፡፡ በቅንብር ገጽ ውስጥ የሙሉ ስሜት ገላጭ ምስሎች ዝርዝር ይሙሉ","description":"command emoji desc"},"command_newline_description":{"message":"ለመተየብ አዲስ መስመር ይበሉ። '","description":"command newline desc"},"command_press_enter_description":{"message":"‘Enter’ ቁልፍን ለመጫን Enter ን ይጫኑ ይበሉ ፡፡ ቅጾችን ለማስረከብ ጠቃሚ ነው","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ለቋንቋ ስሜት ገላጭ ምስል ዝርዝር","description":"emoji list label"},"emoji_name_label":{"message":"የስሜት ገላጭ ምስል ስም","description":"emoji name label"},"command_newline_description_new":{"message":"አዲስ መስመር ለማግኘት አዲስ መስመር ይበሉ ፡፡","description":"command newline desc"},"check_here_label":{"message":"እዚህ ያረጋግጡ","description":"Check here label"},"imoji_list_label":{"message":"እዚህ ያረጋግጡ","description":"Check here label"},"command_list_label":{"message":"የትእዛዝ ዝርዝር","description":"Command List label"},"imoji_list_label_new":{"message":"ስሜት ገላጭ ምስል ዝርዝር","description":"imoji list label"},"symbol_list_label":{"message":"የሂሳብ ምልክቶች ዝርዝር","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"ማስተዋል","description":"Mindfulness command"},"command_mindfulness_description":{"message":"በጽሑፍ ሳጥኑ ውስጥ የዘፈቀደ የአስተሳሰብ አስተሳሰብ ለማስገባት ‹አእምሮን› ይበሉ","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ይህንን መሳሪያ ለመጠቀም የድምጽ ፈቃዶችን ለመፍቀድ እባክዎ ከዚህ በታች ባለው አዝራር ላይ ጠቅ ያድርጉ።","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"ማስታወሻ በአጋጣሚ ያልተፈቀዱ ፈቃዶች ካሉዎት የዚህን ትር የፍለጋ አሞሌ የላይኛው ግራ ጥግ ላይ ጠቅ እንዲያደርጉ መፍቀድ ይችላሉ።","description":"audio permission extra info"},"allow_permission_label":{"message":"ፈቃድ ይፍቀዱ","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"እባክዎን ይህንን መሳሪያ ለመጠቀም ፈቃዶችን ይፍቀዱ!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"አሁን ይህንን ትር መዝጋት እና በድምፅዎ በማንኛውም ድር ጣቢያ ላይ ለመተየብ ይህንን መሳሪያ መጠቀም ይችላሉ!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* አሁን በማንኛውም ግብዓት ላይ ጠቅ ያድርጉ እና ይናገሩ","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"የሞርስ ኮድ ይፍጠሩ","description":"cmc label"},"command_enable_disable_label":{"message":"ማስቻል አለማስቻል","description":"enable or disable command label"},"command_arrow_label":{"message":"ቀስት","description":"command arrow label"},"command_arrow_description":{"message":"የግራ ቀስት ቁልፍን ለመተየብ ‘ቀስት ግራ’ ይበሉ። ሊሆኑ የሚችሉ ትዕዛዞች ቀስት ቀርቷል | መብት | ከላይ | ታች","description":"command arrow desc"},"left_label":{"message":"ግራ","description":"left label"},"right_label":{"message":"ቀኝ","description":"right label"},"up_label":{"message":"ወደ ላይ","description":"up label"},"down_label":{"message":"ታች","description":"down label"},"command_search_label":{"message":"ፍለጋ","description":"command search label"},"command_search_label2":{"message":"በጉግል መፈለግ","description":"command go to label 2"},"command_search_description":{"message":"ድመትን በ google.com ላይ ለመፈለግ የፍለጋ ድመት ወይም የጉግል ድመት ይበሉ","description":"command go to label 3"},"command_bookmark_label":{"message":"ዕልባት","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ይህንን ገጽ ዕልባት ያድርጉ","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ዕልባት አስወግድ","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ይህን ዕልባት አስወግድ","description":"command bookmark label 4"},"command_bookmark_description":{"message":"ዕልባት ለማከል ወይም ለማስወገድ ‹ይህን ገጽ ዕልባት ያድርጉ› ወይም ‹ዕልባት አስወግድ› ይበሉ","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ይህንን ገጽ ወደ ዕልባቶች ታክሏል!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"ይህን ገጽ ከእልባቶች ተወግዷል!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"ጨዋታ","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"‹የዘፈን_ ስም አጫውት› ይበሉ ፣ ዘፈኑን ከዩቲዩብ ያጫውታል ፡፡","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"አግኝ","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ማድመቅ","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ብርሃን የማያበራ","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"በአሁን ገጽ እና በተቃራኒው በተቃራኒው ቁልፍ ቃሉን ለማጉላት ‹የድምቀት ቁልፍ ቃል› ይበሉ","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"መቀልበስ","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ዳግመኛ","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"ሁሉንም ቀልብስ","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"ሁሉንም ለመቀልበስ / ለመደጎም / ለመቀልበስ ሁሉንም ይደምስሱ / ይድገሙ ይበሉ ፡፡","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ቀጥሎ","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ቀዳሚ","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"የሚቀጥለውን እና የቀደመውን በመናገር ወደ ግብዓት አካላት ይሂዱ","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ወደላይ ሸብልል","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"ወድታች ውረድ","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"ገጹን ለማሸብለል ወደ ታች ይሸብልሉ / ወደ ላይ ይሸብልሉ ይበሉ።","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"መሄድ","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"ጉብኝት","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"ክፈት","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"በአዲሱ ትር ውስጥ facebook.com ን ለመክፈት ‹ወደ facebook.com ይሂዱ› ይበሉ ፡፡ የዕልባት ዩ.አር.ኤል.ን ለመክፈት ‹ወደ ዕልባት ዕልባት_ ስም ይሂዱ› ይበሉ ፡፡","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"ዕልባት","description":"bookmark"}} diff --git a/src/app/_locales/ar/messages.json b/src/app/_locales/ar/messages.json index e6629b8..40ada42 100644 --- a/src/app/_locales/ar/messages.json +++ b/src/app/_locales/ar/messages.json @@ -1 +1 @@ -{"appName":{"message":"مجموعة أدوات التعرف على الكلام","description":"app name"},"appDescription":{"message":"املأ أي نموذج ويب باستخدام صوتك فقط!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"السماح بإذن الصوت","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"انقر هنا للسماح بإذن الصوت","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"إعدادات","description":"setting tab string"},"popup_mic_listening_label":{"message":"الاستماع","description":"label when mic is listening"},"popup_help_tab_str":{"message":"مساعدة","description":"help tab string"},"popup_help_heading_str":{"message":"نحن هنا للمساعدة","description":"popup help tab heading"},"popup_help_desc_str":{"message":"إذا واجهت أي مشكلة ، يرجى الإبلاغ عنها","description":"popup help tab description"},"here":{"message":"هنا","description":"word"},"popup_default_language_label_str":{"message":"اللغة الافتراضية","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"انقر لتغيير اللغة الافتراضية","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"انقر هنا لتشغيل / إيقاف تشغيل التعرف على الكلام","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"أفتح الإعدادات","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"ابدأ \"التعرف على الكلام\" عندما يبدأ Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"تغيير لغة التعرف على الكلام","description":"language change setting label"},"option_permission_success_msg":{"message":"يمكنك الآن إغلاق علامة التبويب هذه واستخدام هذه الأداة للكتابة على أي موقع ويب بصوتك!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"الرجاء السماح بالأذونات لاستخدام هذه الأداة!","description":"error message when user rejects permission"},"emoji":{"message":"الرموز التعبيرية","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"لم يتم العثور على الرموز التعبيرية!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"استخدم إملاء الرموز التعبيرية (أكثر من 1800 رمز تعبيري)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ابحث عن أقرب الرموز التعبيرية","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"كيفية استخدام هذه الأداة؟","description":"How to use this tool ? string"},"new_line_label":{"message":"خط جديد","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"انقر لرؤية الأوامر الصوتية","description":"voice commands control label "},"popup_show_commands_label":{"message":"عرض الأوامر","description":"voice commands control label "},"commands_list_label":{"message":"قائمة الأوامر للغة","description":"Commands List for language label"},"command_name_label":{"message":"اسم القيادة","description":"Command's Name label"},"command_description_label":{"message":"وصف الأمر","description":"Command's Description label"},"command_emoji_description":{"message":"قل \"اسم emoji emoji's\" لإدراج رمز تعبيري مشابه إلى حد ما من قائمة 1800 emojis. الخروج من القائمة الكاملة للرموز التعبيرية في صفحة الإعداد","description":"command emoji desc"},"command_newline_description":{"message":"قل سطرًا جديدًا لكتابة \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"قل اضغط Enter للضغط على مفتاح \"Enter\". مفيد لتقديم النماذج","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"قائمة الرموز التعبيرية للغة","description":"emoji list label"},"emoji_name_label":{"message":"اسم Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"قل سطرًا جديدًا للحصول على سطر جديد.","description":"command newline desc"},"check_here_label":{"message":"تحقق هنا","description":"Check here label"},"imoji_list_label":{"message":"تحقق هنا","description":"Check here label"},"command_list_label":{"message":"قائمة الأوامر","description":"Command List label"},"imoji_list_label_new":{"message":"قائمة الرموز التعبيرية","description":"imoji list label"},"symbol_list_label":{"message":"قائمة الرموز الرياضية","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"تركيز كامل للذهن","description":"Mindfulness command"},"command_mindfulness_description":{"message":"قل \"اليقظة\" لإدراج فكرة اليقظة الذهنية العشوائية في مربع النص","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"يرجى النقر فوق الزر أدناه للسماح بأذونات الصوت من أجل استخدام هذه الأداة.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"ملاحظة: إذا كنت قد منعت أذونات عن طريق الخطأ ، فيمكنك السماح لهم من النقر فوق الزاوية اليسرى العليا من شريط البحث في علامة التبويب هذه","description":"audio permission extra info"},"allow_permission_label":{"message":"إذن السماح","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"الرجاء السماح بالأذونات لاستخدام هذه الأداة","description":"audio permission error message"},"audio_permission_success_msg":{"message":"يمكنك الآن إغلاق علامة التبويب هذه واستخدام هذه الأداة للكتابة على أي موقع ويب بصوتك!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* الآن انقر فوق أي إدخال وتحدث","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"إنشاء شفرة مورس","description":"cmc label"},"command_enable_disable_label":{"message":"مفعل وغير مفعل","description":"enable or disable command label"},"command_arrow_label":{"message":"سهم","description":"command arrow label"},"command_arrow_description":{"message":"قل \"سهم لليسار\" لكتابة مفتاح السهم الأيسر. الأوامر الممكنة: السهم الأيسر | حق | أعلى | أسفل","description":"command arrow desc"},"left_label":{"message":"اليسار","description":"left label"},"right_label":{"message":"حق","description":"right label"},"up_label":{"message":"فوق","description":"up label"},"down_label":{"message":"أسفل","description":"down label"},"command_go_to_label":{"message":"اذهب إلى","description":"command go to label"},"command_go_to_description":{"message":"قل \"اذهب إلى facebook.com لفتح علامة تبويب جديدة لـ facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"زيارة","description":"command go to label 2"},"command_go_to_label3":{"message":"افتح","description":"command go to label 3"},"command_search_label":{"message":"بحث","description":"command search label"},"command_search_label2":{"message":"غوغل","description":"command go to label 2"},"command_search_description":{"message":"قل ابحث عن cat أو google cat للبحث عن cat على google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"المرجعية","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ضع علامة على هذه الصفحة","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"إزالة المرجعية","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"إزالة هذه الإشارة المرجعية","description":"command bookmark label 4"},"command_bookmark_description":{"message":"قل \"إشارة مرجعية لهذه الصفحة\" أو \"إزالة الإشارة المرجعية\" لإضافة إشارة مرجعية أو إزالتها","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"تمت إضافة هذه الصفحة إلى الإشارات المرجعية!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"تم إزالة هذه الصفحة من الإشارات المرجعية!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"لعب","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"قل \"play song_name\" ، سيتم تشغيل الأغنية من youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"تجد","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"تسليط الضوء","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"قل \"تمييز الكلمة الرئيسية\" لتمييز الكلمة الرئيسية في الصفحة الحالية والعكس صحيح","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"الغاء التحميل","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"إعادة","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"التراجع عن كل شيء","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"قل تراجع / إعادة / تراجع عن الكل لفعل التراجع / الإعادة / التراجع عن الكل.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"التالي","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"السابق","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"انتقل إلى عناصر الإدخال بالقول التالي والسابق","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"انتقل إلى أعلى","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"حرك الفأرة لأسفل","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"قل مرر لأسفل / مرر لأعلى لتمرير الصفحة.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"مجموعة أدوات التعرف على الكلام","description":"app name"},"appDescription":{"message":"املأ أي نموذج ويب باستخدام صوتك فقط!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"السماح بإذن الصوت","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"انقر هنا للسماح بإذن الصوت","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"إعدادات","description":"setting tab string"},"popup_mic_listening_label":{"message":"الاستماع","description":"label when mic is listening"},"popup_help_tab_str":{"message":"مساعدة","description":"help tab string"},"popup_help_heading_str":{"message":"نحن هنا للمساعدة","description":"popup help tab heading"},"popup_help_desc_str":{"message":"إذا واجهت أي مشكلة ، يرجى الإبلاغ عنها","description":"popup help tab description"},"here":{"message":"هنا","description":"word"},"popup_default_language_label_str":{"message":"اللغة الافتراضية","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"انقر لتغيير اللغة الافتراضية","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"انقر هنا لتشغيل / إيقاف تشغيل التعرف على الكلام","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"أفتح الإعدادات","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"ابدأ \"التعرف على الكلام\" عندما يبدأ Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"تغيير لغة التعرف على الكلام","description":"language change setting label"},"option_permission_success_msg":{"message":"يمكنك الآن إغلاق علامة التبويب هذه واستخدام هذه الأداة للكتابة على أي موقع ويب بصوتك!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"الرجاء السماح بالأذونات لاستخدام هذه الأداة!","description":"error message when user rejects permission"},"emoji":{"message":"الرموز التعبيرية","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"لم يتم العثور على الرموز التعبيرية!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"استخدم إملاء الرموز التعبيرية (أكثر من 1800 رمز تعبيري)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ابحث عن أقرب الرموز التعبيرية","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"كيفية استخدام هذه الأداة؟","description":"How to use this tool ? string"},"new_line_label":{"message":"خط جديد","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"انقر لرؤية الأوامر الصوتية","description":"voice commands control label "},"popup_show_commands_label":{"message":"عرض الأوامر","description":"voice commands control label "},"commands_list_label":{"message":"قائمة الأوامر للغة","description":"Commands List for language label"},"command_name_label":{"message":"اسم القيادة","description":"Command's Name label"},"command_description_label":{"message":"وصف الأمر","description":"Command's Description label"},"command_emoji_description":{"message":"قل \"اسم emoji emoji's\" لإدراج رمز تعبيري مشابه إلى حد ما من قائمة 1800 emojis. الخروج من القائمة الكاملة للرموز التعبيرية في صفحة الإعداد","description":"command emoji desc"},"command_newline_description":{"message":"قل سطرًا جديدًا لكتابة \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"قل اضغط Enter للضغط على مفتاح \"Enter\". مفيد لتقديم النماذج","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"قائمة الرموز التعبيرية للغة","description":"emoji list label"},"emoji_name_label":{"message":"اسم Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"قل سطرًا جديدًا للحصول على سطر جديد.","description":"command newline desc"},"check_here_label":{"message":"تحقق هنا","description":"Check here label"},"imoji_list_label":{"message":"تحقق هنا","description":"Check here label"},"command_list_label":{"message":"قائمة الأوامر","description":"Command List label"},"imoji_list_label_new":{"message":"قائمة الرموز التعبيرية","description":"imoji list label"},"symbol_list_label":{"message":"قائمة الرموز الرياضية","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"تركيز كامل للذهن","description":"Mindfulness command"},"command_mindfulness_description":{"message":"قل \"اليقظة\" لإدراج فكرة اليقظة الذهنية العشوائية في مربع النص","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"يرجى النقر فوق الزر أدناه للسماح بأذونات الصوت من أجل استخدام هذه الأداة.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"ملاحظة: إذا كنت قد منعت أذونات عن طريق الخطأ ، فيمكنك السماح لهم من النقر فوق الزاوية اليسرى العليا من شريط البحث في علامة التبويب هذه","description":"audio permission extra info"},"allow_permission_label":{"message":"إذن السماح","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"الرجاء السماح بالأذونات لاستخدام هذه الأداة","description":"audio permission error message"},"audio_permission_success_msg":{"message":"يمكنك الآن إغلاق علامة التبويب هذه واستخدام هذه الأداة للكتابة على أي موقع ويب بصوتك!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* الآن انقر فوق أي إدخال وتحدث","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"إنشاء شفرة مورس","description":"cmc label"},"command_enable_disable_label":{"message":"مفعل وغير مفعل","description":"enable or disable command label"},"command_arrow_label":{"message":"سهم","description":"command arrow label"},"command_arrow_description":{"message":"قل \"سهم لليسار\" لكتابة مفتاح السهم الأيسر. الأوامر الممكنة: السهم الأيسر | حق | أعلى | أسفل","description":"command arrow desc"},"left_label":{"message":"اليسار","description":"left label"},"right_label":{"message":"حق","description":"right label"},"up_label":{"message":"فوق","description":"up label"},"down_label":{"message":"أسفل","description":"down label"},"command_search_label":{"message":"بحث","description":"command search label"},"command_search_label2":{"message":"غوغل","description":"command go to label 2"},"command_search_description":{"message":"قل ابحث عن cat أو google cat للبحث عن cat على google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"المرجعية","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ضع علامة على هذه الصفحة","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"إزالة المرجعية","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"إزالة هذه الإشارة المرجعية","description":"command bookmark label 4"},"command_bookmark_description":{"message":"قل \"إشارة مرجعية لهذه الصفحة\" أو \"إزالة الإشارة المرجعية\" لإضافة إشارة مرجعية أو إزالتها","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"تمت إضافة هذه الصفحة إلى الإشارات المرجعية!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"تم إزالة هذه الصفحة من الإشارات المرجعية!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"لعب","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"قل \"play song_name\" ، سيتم تشغيل الأغنية من youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"تجد","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"تسليط الضوء","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"قل \"تمييز الكلمة الرئيسية\" لتمييز الكلمة الرئيسية في الصفحة الحالية والعكس صحيح","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"الغاء التحميل","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"إعادة","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"التراجع عن كل شيء","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"قل تراجع / إعادة / تراجع عن الكل لفعل التراجع / الإعادة / التراجع عن الكل.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"التالي","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"السابق","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"انتقل إلى عناصر الإدخال بالقول التالي والسابق","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"انتقل إلى أعلى","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"حرك الفأرة لأسفل","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"قل مرر لأسفل / مرر لأعلى لتمرير الصفحة.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"اذهب إلى","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"زيارة","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"افتح","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"قل \"اذهب إلى facebook.com\" لفتح facebook.com في علامة تبويب جديدة. قل \"go to bookmark_name\" لفتح عنوان url للإشارة.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"المرجعية","description":"bookmark"}} diff --git a/src/app/_locales/bg/messages.json b/src/app/_locales/bg/messages.json index c7c05b4..8985c95 100644 --- a/src/app/_locales/bg/messages.json +++ b/src/app/_locales/bg/messages.json @@ -1 +1 @@ -{"appName":{"message":"Набор с инструменти за разпознаване на реч","description":"app name"},"appDescription":{"message":"Попълнете всеки уеб формуляр, като използвате само гласа си!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Разрешаване на аудио разрешение","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"кликнете тук, за да разрешите аудио разрешение","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Настройки","description":"setting tab string"},"popup_mic_listening_label":{"message":"Слушане","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Помогне","description":"help tab string"},"popup_help_heading_str":{"message":"Ние сме тук, за да помогнем","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ако сте имали някакъв проблем, моля, докладвайте го","description":"popup help tab description"},"here":{"message":"тук","description":"word"},"popup_default_language_label_str":{"message":"Език по подразбиране","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Щракнете, за да промените езика по подразбиране","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Щракнете тук, за да включите / изключите разпознаването на реч","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Отворете Настройки","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Стартирайте „Разпознаване на реч“ при стартиране на Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Промяна на езика за разпознаване на реч","description":"language change setting label"},"option_permission_success_msg":{"message":"Сега можете да затворите този раздел и да използвате този инструмент, за да пишете на всеки уебсайт с гласа си!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Моля, позволете разрешения, за да използвате този инструмент!","description":"error message when user rejects permission"},"emoji":{"message":"емоджи","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Не са намерени емоджи!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Използвайте диктовка на емоджи (повече от 1800 емотикони)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Потърсете най-близко звучащите емоджи","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Как да използвам този инструмент?","description":"How to use this tool ? string"},"new_line_label":{"message":"нова линия","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Щракнете, за да видите гласови команди","description":"voice commands control label "},"popup_show_commands_label":{"message":"Показване на команди","description":"voice commands control label "},"commands_list_label":{"message":"Списък на командите за език","description":"Commands List for language label"},"command_name_label":{"message":"Име на командата","description":"Command's Name label"},"command_description_label":{"message":"Описание на командата","description":"Command's Description label"},"command_emoji_description":{"message":"Кажете „името на емотиконите на емотиконите“, за да вмъкнете донякъде подобни емоджи от списъка с 1800 емотикони. вижте пълния списък с емотикони в страницата за настройка","description":"command emoji desc"},"command_newline_description":{"message":"Кажете нов ред, за да напишете „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Кажете, че натиснете enter, за да натиснете клавиша „Enter“. Полезно за изпращане на формуляри","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Списък на емоджи за език","description":"emoji list label"},"emoji_name_label":{"message":"Името на емоджи","description":"emoji name label"},"command_newline_description_new":{"message":"Кажете нов ред, за да получите нов ред.","description":"command newline desc"},"check_here_label":{"message":"Проверете тук","description":"Check here label"},"imoji_list_label":{"message":"Проверете тук","description":"Check here label"},"command_list_label":{"message":"Списък с команди","description":"Command List label"},"imoji_list_label_new":{"message":"Списък с емотикони","description":"imoji list label"},"symbol_list_label":{"message":"Списък с математически символи","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Внимателност","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Кажете „внимателност“, за да вмъкнете произволна мисъл за внимание в текстовото поле","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Моля, кликнете върху бутона по-долу, за да разрешите аудио разрешения, за да използвате този инструмент.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Забележка: Ако случайно сте забранили разрешенията, можете да им позволите да щракнат в горния ляв ъгъл на лентата за търсене на този раздел","description":"audio permission extra info"},"allow_permission_label":{"message":"Позволете разрешение","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Моля, позволете разрешения, за да използвате този инструмент!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Сега можете да затворите този раздел и да използвате този инструмент, за да пишете на всеки уебсайт с гласа си!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Сега кликнете върху всеки вход и говорете","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Създайте морзова азбука","description":"cmc label"},"command_enable_disable_label":{"message":"Активиране / деактивиране","description":"enable or disable command label"},"command_arrow_label":{"message":"стрелка","description":"command arrow label"},"command_arrow_description":{"message":"Кажете „стрелка наляво“, за да напишете клавиша със стрелка наляво. възможни команди: стрелка наляво | нали | отгоре | надолу","description":"command arrow desc"},"left_label":{"message":"наляво","description":"left label"},"right_label":{"message":"нали","description":"right label"},"up_label":{"message":"нагоре","description":"up label"},"down_label":{"message":"надолу","description":"down label"},"command_go_to_label":{"message":"отидете на","description":"command go to label"},"command_go_to_description":{"message":"Кажете „отидете на facebook.com, за да отворите нов раздел за facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"посещение","description":"command go to label 2"},"command_go_to_label3":{"message":"отворен","description":"command go to label 3"},"command_search_label":{"message":"Търсене","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Кажете търсене на котка или google котка за търсене на котка на google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"отметка","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"отбележи тази страница","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"премахване на отметка","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"премахнете тази отметка","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Кажете „Добавяне на отметка към тази страница“ или „премахване на отметка“, за да добавите или премахнете отметка","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Добавих тази страница към отметки!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Премахна тази страница от отметки!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"играйте","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Кажете „play song_name“, ще пусне песента от youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"намирам","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"подчертавам","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"непросветление","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Кажете „подчертайте ключова дума“, за да маркирате ключовата дума на текущата страница и обратно","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"отмяна","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"повторно","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"отменете всички","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Кажете отмяна / повторение / отмяна на всички, за да направите отмяна / повторение / отмяна на всички.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"следващия","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"предишен","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Придвижете се до входните елементи, като кажете следващо и предишно","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"превъртете нагоре","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"превърти надолу","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Кажете превъртане надолу / превъртане нагоре, за да превъртите страницата.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Набор с инструменти за разпознаване на реч","description":"app name"},"appDescription":{"message":"Попълнете всеки уеб формуляр, като използвате само гласа си!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Разрешаване на аудио разрешение","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"кликнете тук, за да разрешите аудио разрешение","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Настройки","description":"setting tab string"},"popup_mic_listening_label":{"message":"Слушане","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Помогне","description":"help tab string"},"popup_help_heading_str":{"message":"Ние сме тук, за да помогнем","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ако сте имали някакъв проблем, моля, докладвайте го","description":"popup help tab description"},"here":{"message":"тук","description":"word"},"popup_default_language_label_str":{"message":"Език по подразбиране","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Щракнете, за да промените езика по подразбиране","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Щракнете тук, за да включите / изключите разпознаването на реч","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Отворете Настройки","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Стартирайте „Разпознаване на реч“ при стартиране на Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Промяна на езика за разпознаване на реч","description":"language change setting label"},"option_permission_success_msg":{"message":"Сега можете да затворите този раздел и да използвате този инструмент, за да пишете на всеки уебсайт с гласа си!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Моля, позволете разрешения, за да използвате този инструмент!","description":"error message when user rejects permission"},"emoji":{"message":"емоджи","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Не са намерени емоджи!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Използвайте диктовка на емоджи (повече от 1800 емотикони)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Потърсете най-близко звучащите емоджи","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Как да използвам този инструмент?","description":"How to use this tool ? string"},"new_line_label":{"message":"нова линия","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Щракнете, за да видите гласови команди","description":"voice commands control label "},"popup_show_commands_label":{"message":"Показване на команди","description":"voice commands control label "},"commands_list_label":{"message":"Списък на командите за език","description":"Commands List for language label"},"command_name_label":{"message":"Име на командата","description":"Command's Name label"},"command_description_label":{"message":"Описание на командата","description":"Command's Description label"},"command_emoji_description":{"message":"Кажете „името на емотиконите на емотиконите“, за да вмъкнете донякъде подобни емоджи от списъка с 1800 емотикони. вижте пълния списък с емотикони в страницата за настройка","description":"command emoji desc"},"command_newline_description":{"message":"Кажете нов ред, за да напишете „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Кажете, че натиснете enter, за да натиснете клавиша „Enter“. Полезно за изпращане на формуляри","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Списък на емоджи за език","description":"emoji list label"},"emoji_name_label":{"message":"Името на емоджи","description":"emoji name label"},"command_newline_description_new":{"message":"Кажете нов ред, за да получите нов ред.","description":"command newline desc"},"check_here_label":{"message":"Проверете тук","description":"Check here label"},"imoji_list_label":{"message":"Проверете тук","description":"Check here label"},"command_list_label":{"message":"Списък с команди","description":"Command List label"},"imoji_list_label_new":{"message":"Списък с емотикони","description":"imoji list label"},"symbol_list_label":{"message":"Списък с математически символи","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Внимателност","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Кажете „внимателност“, за да вмъкнете произволна мисъл за внимание в текстовото поле","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Моля, кликнете върху бутона по-долу, за да разрешите аудио разрешения, за да използвате този инструмент.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Забележка: Ако случайно сте забранили разрешенията, можете да им позволите да щракнат в горния ляв ъгъл на лентата за търсене на този раздел","description":"audio permission extra info"},"allow_permission_label":{"message":"Позволете разрешение","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Моля, позволете разрешения, за да използвате този инструмент!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Сега можете да затворите този раздел и да използвате този инструмент, за да пишете на всеки уебсайт с гласа си!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Сега кликнете върху всеки вход и говорете","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Създайте морзова азбука","description":"cmc label"},"command_enable_disable_label":{"message":"Активиране / деактивиране","description":"enable or disable command label"},"command_arrow_label":{"message":"стрелка","description":"command arrow label"},"command_arrow_description":{"message":"Кажете „стрелка наляво“, за да напишете клавиша със стрелка наляво. възможни команди: стрелка наляво | нали | отгоре | надолу","description":"command arrow desc"},"left_label":{"message":"наляво","description":"left label"},"right_label":{"message":"нали","description":"right label"},"up_label":{"message":"нагоре","description":"up label"},"down_label":{"message":"надолу","description":"down label"},"command_search_label":{"message":"Търсене","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Кажете търсене на котка или google котка за търсене на котка на google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"отметка","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"отбележи тази страница","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"премахване на отметка","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"премахнете тази отметка","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Кажете „Добавяне на отметка към тази страница“ или „премахване на отметка“, за да добавите или премахнете отметка","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Добавих тази страница към отметки!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Премахна тази страница от отметки!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"играйте","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Кажете „play song_name“, ще пусне песента от youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"намирам","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"подчертавам","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"непросветление","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Кажете „подчертайте ключова дума“, за да маркирате ключовата дума на текущата страница и обратно","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"отмяна","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"повторно","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"отменете всички","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Кажете отмяна / повторение / отмяна на всички, за да направите отмяна / повторение / отмяна на всички.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"следващия","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"предишен","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Придвижете се до входните елементи, като кажете следващо и предишно","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"превъртете нагоре","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"превърти надолу","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Кажете превъртане надолу / превъртане нагоре, за да превъртите страницата.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"отидете на","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"посещение","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"отворен","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Кажете „отидете на facebook.com“, за да отворите facebook.com в нов раздел. Кажете „отидете на отметка bookmark_name“, за да отворите URL адреса на отметката.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"отметка","description":"bookmark"}} diff --git a/src/app/_locales/bn/messages.json b/src/app/_locales/bn/messages.json index 440c00b..ce8b1e0 100644 --- a/src/app/_locales/bn/messages.json +++ b/src/app/_locales/bn/messages.json @@ -1 +1 @@ -{"appName":{"message":"স্পিচ রিকগনিশন টুলকিট","description":"app name"},"appDescription":{"message":"শুধুমাত্র আপনার ভয়েস ব্যবহার করে কোনও ওয়েব ফর্ম পূরণ করুন!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"অডিও অনুমতি অনুমতি দিন","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"অডিও অনুমতি অনুমতি দিতে এখানে ক্লিক করুন","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"সেটিংস","description":"setting tab string"},"popup_mic_listening_label":{"message":"শুনছি","description":"label when mic is listening"},"popup_help_tab_str":{"message":"সহায়তা","description":"help tab string"},"popup_help_heading_str":{"message":"আমরা এখানে সাহায্য করতে এসেছি","description":"popup help tab heading"},"popup_help_desc_str":{"message":"আপনি যদি কোনও সমস্যা সম্মুখীন হন তবে দয়া করে এটি রিপোর্ট করুন","description":"popup help tab description"},"here":{"message":"এখানে","description":"word"},"popup_default_language_label_str":{"message":"নির্ধারিত ভাষা","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ডিফল্ট ভাষা পরিবর্তন করতে ক্লিক করুন","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"স্পিচ সনাক্তকরণ চালু / বন্ধ করতে এখানে ক্লিক করুন","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ওপেন সেটিংস","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"ক্রোম শুরু হয়ে গেলে 'স্পিচ সনাক্তকরণ' শুরু করুন","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"স্পিচ স্বীকৃতি ভাষা পরিবর্তন করুন","description":"language change setting label"},"option_permission_success_msg":{"message":"এখন আপনি এই ট্যাবটি বন্ধ করতে পারেন এবং আপনার ভয়েস দিয়ে কোনও ওয়েবসাইটে টাইপ করতে এই সরঞ্জামটি ব্যবহার করতে পারেন!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"এই সরঞ্জামটি ব্যবহার করার জন্য দয়া করে অনুমতিগুলি মঞ্জুর করুন!","description":"error message when user rejects permission"},"emoji":{"message":"ইমোজি","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ইমোজি পাওয়া গেল না!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ইমোজি ডিক্টেশন ব্যবহার করুন (1800 এর বেশি ইমোজি)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"নিকটতম শোনার ইমোজি অনুসন্ধান করুন","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"এই সরঞ্জামটি কীভাবে ব্যবহার করবেন?","description":"How to use this tool ? string"},"new_line_label":{"message":"নতুন লাইন","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"ভয়েস কমান্ড দেখতে ক্লিক করুন","description":"voice commands control label "},"popup_show_commands_label":{"message":"কমান্ডগুলি প্রদর্শন করুন","description":"voice commands control label "},"commands_list_label":{"message":"ভাষার জন্য কমান্ড তালিকা","description":"Commands List for language label"},"command_name_label":{"message":"কমান্ডের নাম","description":"Command's Name label"},"command_description_label":{"message":"কমান্ডের বিবরণ","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ইমোজিদের তালিকা থেকে কিছুটা অনুরূপ ইমোজি sertোকাতে 'ইমোজি ইমোজিটির নাম' বলুন। পৃষ্ঠা নির্ধারণে ইমোজির পুরো তালিকা চেকআউট করুন","description":"command emoji desc"},"command_newline_description":{"message":"টাইপ করতে নতুন লাইনটি বলুন।","description":"command newline desc"},"command_press_enter_description":{"message":"'এন্টার' চাপুন এন্টার টিপুন Say ফর্ম জমা দেওয়ার জন্য দরকারী","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ভাষার জন্য ইমোজিগুলির তালিকা","description":"emoji list label"},"emoji_name_label":{"message":"ইমোজি নাম","description":"emoji name label"},"command_newline_description_new":{"message":"নতুন লাইন পেতে নতুন লাইন বলুন।","description":"command newline desc"},"check_here_label":{"message":"এখানে চেক করুন","description":"Check here label"},"imoji_list_label":{"message":"এখানে চেক করুন","description":"Check here label"},"command_list_label":{"message":"কমান্ড তালিকা","description":"Command List label"},"imoji_list_label_new":{"message":"ইমোজি তালিকা","description":"imoji list label"},"symbol_list_label":{"message":"গাণিতিক প্রতীক তালিকা","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"মাইন্ডফুলনেস","description":"Mindfulness command"},"command_mindfulness_description":{"message":"পাঠ্য বাক্সে একটি এলোমেলো মাইন্ডফুলেন্স চিন্তা thoughtোকাতে 'মাইন্ডফুলনেস' বলুন","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"এই সরঞ্জামটি ব্যবহার করার জন্য অডিও অনুমতিগুলির অনুমতি দিতে দয়া করে নীচের বোতামটিতে ক্লিক করুন।","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"দ্রষ্টব্য: আপনি যদি দুর্ঘটনাক্রমে অনুমতিগুলি অস্বীকার করেন, তবে আপনি এই ট্যাবটির অনুসন্ধান বারের উপরের বাম কোণে ক্লিক করার অনুমতি দিতে পারেন can","description":"audio permission extra info"},"allow_permission_label":{"message":"অনুমতি অনুমতি দিন","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"এই সরঞ্জামটি ব্যবহার করার জন্য দয়া করে অনুমতিগুলি মঞ্জুর করুন!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"এখন আপনি এই ট্যাবটি বন্ধ করতে পারেন এবং আপনার ভয়েস দিয়ে কোনও ওয়েবসাইটে টাইপ করতে এই সরঞ্জামটি ব্যবহার করতে পারেন!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* এখন যে কোনও ইনপুটটিতে ক্লিক করুন এবং কথা বলুন","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"মোর্স কোড তৈরি করুন","description":"cmc label"},"command_enable_disable_label":{"message":"চালু অচল","description":"enable or disable command label"},"command_arrow_label":{"message":"তীর","description":"command arrow label"},"command_arrow_description":{"message":"বাম তীর কী টাইপ করতে 'তীর বাম' বলুন। সম্ভাব্য কমান্ড: তীর বাম | ডান | শীর্ষ | নিচে","description":"command arrow desc"},"left_label":{"message":"বাম","description":"left label"},"right_label":{"message":"ঠিক","description":"right label"},"up_label":{"message":"আপ","description":"up label"},"down_label":{"message":"নিচে","description":"down label"},"command_go_to_label":{"message":"যাও","description":"command go to label"},"command_go_to_description":{"message":"'ফেসবুক.কমের জন্য নতুন ট্যাব খুলতে ফেসবুক.কম এ যান বলুন","description":"command go to description"},"command_go_to_label2":{"message":"দর্শন","description":"command go to label 2"},"command_go_to_label3":{"message":"খোলা","description":"command go to label 3"},"command_search_label":{"message":"অনুসন্ধান","description":"command search label"},"command_search_label2":{"message":"গুগল","description":"command go to label 2"},"command_search_description":{"message":"গুগল.কম এ বিড়াল অনুসন্ধান করতে অনুসন্ধান বিড়াল বা গুগল বিড়াল বলুন","description":"command go to label 3"},"command_bookmark_label":{"message":"বুকমার্ক","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"এই পাতাকে লিপিবদ্ধ করুন","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"বুকমার্ক সরান","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"এই বুকমার্কটি সরান","description":"command bookmark label 4"},"command_bookmark_description":{"message":"বুকমার্ক যুক্ত করতে বা সরানোর জন্য 'এই পৃষ্ঠাটি বুকমার্ক করুন' বা 'বুকমার্ক সরান' বলুন","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"বুকমার্কগুলিতে এই পৃষ্ঠাটি যুক্ত!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"বুকমার্কগুলি থেকে এই পৃষ্ঠাটি সরানো হয়েছে!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"খেলুন","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"বলুন 'প্লে গান_নাম', এটি ইউটিউব থেকে গানটি প্লে করবে।","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"অনুসন্ধান","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"লক্ষণীয় করা","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhightlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"বর্তমান পৃষ্ঠায় এবং তদ্বিপরীততে কীওয়ার্ডটি হাইলাইট করতে 'হাইলাইট কীওয়ার্ড' বলুন","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"পূর্বাবস্থায় ফেরা","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"আবার করুন","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"সব পূর্বাবস্থায় ফেরা","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"পূর্বাবস্থায় / পূর্বাবস্থায় ফিরুন / পূর্বাবস্থায় ফিরিয়ে আনুন / সমস্ত কিছু পূর্বাবস্থায় ফেরান বলুন।","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"পরবর্তী","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"আগে","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"পরবর্তী এবং পূর্ববর্তী কথা বলে ইনপুট উপাদানগুলিতে নেভিগেট করুন","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"উপরে স্ক্রল কর","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"নিচে নামুন","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"পৃষ্ঠাটি স্ক্রোল করতে নীচে স্ক্রোলটি / স্ক্রোল বলুন।","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"স্পিচ রিকগনিশন টুলকিট","description":"app name"},"appDescription":{"message":"শুধুমাত্র আপনার ভয়েস ব্যবহার করে কোনও ওয়েব ফর্ম পূরণ করুন!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"অডিও অনুমতি অনুমতি দিন","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"অডিও অনুমতি অনুমতি দিতে এখানে ক্লিক করুন","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"সেটিংস","description":"setting tab string"},"popup_mic_listening_label":{"message":"শুনছি","description":"label when mic is listening"},"popup_help_tab_str":{"message":"সহায়তা","description":"help tab string"},"popup_help_heading_str":{"message":"আমরা এখানে সাহায্য করতে এসেছি","description":"popup help tab heading"},"popup_help_desc_str":{"message":"আপনি যদি কোনও সমস্যা সম্মুখীন হন তবে দয়া করে এটি রিপোর্ট করুন","description":"popup help tab description"},"here":{"message":"এখানে","description":"word"},"popup_default_language_label_str":{"message":"নির্ধারিত ভাষা","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ডিফল্ট ভাষা পরিবর্তন করতে ক্লিক করুন","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"স্পিচ সনাক্তকরণ চালু / বন্ধ করতে এখানে ক্লিক করুন","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ওপেন সেটিংস","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"ক্রোম শুরু হয়ে গেলে 'স্পিচ সনাক্তকরণ' শুরু করুন","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"স্পিচ স্বীকৃতি ভাষা পরিবর্তন করুন","description":"language change setting label"},"option_permission_success_msg":{"message":"এখন আপনি এই ট্যাবটি বন্ধ করতে পারেন এবং আপনার ভয়েস দিয়ে কোনও ওয়েবসাইটে টাইপ করতে এই সরঞ্জামটি ব্যবহার করতে পারেন!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"এই সরঞ্জামটি ব্যবহার করার জন্য দয়া করে অনুমতিগুলি মঞ্জুর করুন!","description":"error message when user rejects permission"},"emoji":{"message":"ইমোজি","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ইমোজি পাওয়া গেল না!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ইমোজি ডিক্টেশন ব্যবহার করুন (1800 এর বেশি ইমোজি)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"নিকটতম শোনার ইমোজি অনুসন্ধান করুন","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"এই সরঞ্জামটি কীভাবে ব্যবহার করবেন?","description":"How to use this tool ? string"},"new_line_label":{"message":"নতুন লাইন","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"ভয়েস কমান্ড দেখতে ক্লিক করুন","description":"voice commands control label "},"popup_show_commands_label":{"message":"কমান্ডগুলি প্রদর্শন করুন","description":"voice commands control label "},"commands_list_label":{"message":"ভাষার জন্য কমান্ড তালিকা","description":"Commands List for language label"},"command_name_label":{"message":"কমান্ডের নাম","description":"Command's Name label"},"command_description_label":{"message":"কমান্ডের বিবরণ","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ইমোজিদের তালিকা থেকে কিছুটা অনুরূপ ইমোজি sertোকাতে 'ইমোজি ইমোজিটির নাম' বলুন। পৃষ্ঠা নির্ধারণে ইমোজির পুরো তালিকা চেকআউট করুন","description":"command emoji desc"},"command_newline_description":{"message":"টাইপ করতে নতুন লাইনটি বলুন।","description":"command newline desc"},"command_press_enter_description":{"message":"'এন্টার' চাপুন এন্টার টিপুন Say ফর্ম জমা দেওয়ার জন্য দরকারী","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ভাষার জন্য ইমোজিগুলির তালিকা","description":"emoji list label"},"emoji_name_label":{"message":"ইমোজি নাম","description":"emoji name label"},"command_newline_description_new":{"message":"নতুন লাইন পেতে নতুন লাইন বলুন।","description":"command newline desc"},"check_here_label":{"message":"এখানে চেক করুন","description":"Check here label"},"imoji_list_label":{"message":"এখানে চেক করুন","description":"Check here label"},"command_list_label":{"message":"কমান্ড তালিকা","description":"Command List label"},"imoji_list_label_new":{"message":"ইমোজি তালিকা","description":"imoji list label"},"symbol_list_label":{"message":"গাণিতিক প্রতীক তালিকা","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"মাইন্ডফুলনেস","description":"Mindfulness command"},"command_mindfulness_description":{"message":"পাঠ্য বাক্সে একটি এলোমেলো মাইন্ডফুলেন্স চিন্তা thoughtোকাতে 'মাইন্ডফুলনেস' বলুন","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"এই সরঞ্জামটি ব্যবহার করার জন্য অডিও অনুমতিগুলির অনুমতি দিতে দয়া করে নীচের বোতামটিতে ক্লিক করুন।","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"দ্রষ্টব্য: আপনি যদি দুর্ঘটনাক্রমে অনুমতিগুলি অস্বীকার করেন, তবে আপনি এই ট্যাবটির অনুসন্ধান বারের উপরের বাম কোণে ক্লিক করার অনুমতি দিতে পারেন can","description":"audio permission extra info"},"allow_permission_label":{"message":"অনুমতি অনুমতি দিন","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"এই সরঞ্জামটি ব্যবহার করার জন্য দয়া করে অনুমতিগুলি মঞ্জুর করুন!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"এখন আপনি এই ট্যাবটি বন্ধ করতে পারেন এবং আপনার ভয়েস দিয়ে কোনও ওয়েবসাইটে টাইপ করতে এই সরঞ্জামটি ব্যবহার করতে পারেন!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* এখন যে কোনও ইনপুটটিতে ক্লিক করুন এবং কথা বলুন","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"মোর্স কোড তৈরি করুন","description":"cmc label"},"command_enable_disable_label":{"message":"চালু অচল","description":"enable or disable command label"},"command_arrow_label":{"message":"তীর","description":"command arrow label"},"command_arrow_description":{"message":"বাম তীর কী টাইপ করতে 'তীর বাম' বলুন। সম্ভাব্য কমান্ড: তীর বাম | ডান | শীর্ষ | নিচে","description":"command arrow desc"},"left_label":{"message":"বাম","description":"left label"},"right_label":{"message":"ঠিক","description":"right label"},"up_label":{"message":"আপ","description":"up label"},"down_label":{"message":"নিচে","description":"down label"},"command_search_label":{"message":"অনুসন্ধান","description":"command search label"},"command_search_label2":{"message":"গুগল","description":"command go to label 2"},"command_search_description":{"message":"গুগল.কম এ বিড়াল অনুসন্ধান করতে অনুসন্ধান বিড়াল বা গুগল বিড়াল বলুন","description":"command go to label 3"},"command_bookmark_label":{"message":"বুকমার্ক","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"এই পাতাকে লিপিবদ্ধ করুন","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"বুকমার্ক সরান","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"এই বুকমার্কটি সরান","description":"command bookmark label 4"},"command_bookmark_description":{"message":"বুকমার্ক যুক্ত করতে বা সরানোর জন্য 'এই পৃষ্ঠাটি বুকমার্ক করুন' বা 'বুকমার্ক সরান' বলুন","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"বুকমার্কগুলিতে এই পৃষ্ঠাটি যুক্ত!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"বুকমার্কগুলি থেকে এই পৃষ্ঠাটি সরানো হয়েছে!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"খেলুন","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"বলুন 'প্লে গান_নাম', এটি ইউটিউব থেকে গানটি প্লে করবে।","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"অনুসন্ধান","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"লক্ষণীয় করা","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhightlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"বর্তমান পৃষ্ঠায় এবং তদ্বিপরীততে কীওয়ার্ডটি হাইলাইট করতে 'হাইলাইট কীওয়ার্ড' বলুন","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"পূর্বাবস্থায় ফেরা","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"আবার করুন","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"সব পূর্বাবস্থায় ফেরা","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"পূর্বাবস্থায় / পূর্বাবস্থায় ফিরুন / পূর্বাবস্থায় ফিরিয়ে আনুন / সমস্ত কিছু পূর্বাবস্থায় ফেরান বলুন।","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"পরবর্তী","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"আগে","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"পরবর্তী এবং পূর্ববর্তী কথা বলে ইনপুট উপাদানগুলিতে নেভিগেট করুন","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"উপরে স্ক্রল কর","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"নিচে নামুন","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"পৃষ্ঠাটি স্ক্রোল করতে নীচে স্ক্রোলটি / স্ক্রোল বলুন।","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"যাও","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"দর্শন","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"খোলা","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"নতুন ট্যাবে ফেসবুক.কম খুলতে 'ফেসবুক.কম-এ যান' বলুন। বুকমার্ক ইউআরএল খুলতে 'বুকমার্ক বুকমার্ক_নামে যান' বলুন।","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"বুকমার্ক","description":"bookmark"}} diff --git a/src/app/_locales/ca/messages.json b/src/app/_locales/ca/messages.json index 5601173..b42ca54 100644 --- a/src/app/_locales/ca/messages.json +++ b/src/app/_locales/ca/messages.json @@ -1 +1 @@ -{"appName":{"message":"Kit d'eines de reconeixement de veu","description":"app name"},"appDescription":{"message":"Empleneu qualsevol formulari web utilitzant només la vostra veu.","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permet el permís d'àudio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"feu clic aquí per permetre el permís d'àudio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Configuració","description":"setting tab string"},"popup_mic_listening_label":{"message":"Escoltar","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Ajuda","description":"help tab string"},"popup_help_heading_str":{"message":"Som aquí per ajudar-vos","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Si heu experimentat algun problema, informeu-ne","description":"popup help tab description"},"here":{"message":"aquí","description":"word"},"popup_default_language_label_str":{"message":"Idioma predeterminat","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Feu clic per canviar l'idioma predeterminat","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Feu clic aquí per activar / desactivar el reconeixement de veu","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Obre Configuració","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Inicieu el \"Reconeixement de veu\" quan s'iniciï Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Canvia l'idioma de reconeixement de veu","description":"language change setting label"},"option_permission_success_msg":{"message":"Ara podeu tancar aquesta pestanya i utilitzar aquesta eina per escriure en qualsevol lloc web amb la vostra veu.","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Permeteu permisos per utilitzar aquesta eina.","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"No s'ha trobat cap emoji.","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utilitzeu el dictat d'emoji (més de 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cerqueu emoji que soni més a prop","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Com s'utilitza aquesta eina?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova línia","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Feu clic per veure les ordres de veu","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostra els comandaments","description":"voice commands control label "},"commands_list_label":{"message":"Llista d'ordres per a l'idioma","description":"Commands List for language label"},"command_name_label":{"message":"Nom de l'ordre","description":"Command's Name label"},"command_description_label":{"message":"Descripció de l'ordre","description":"Command's Description label"},"command_emoji_description":{"message":"Digueu \"nom d'emoji d'emoji\" per inserir emoji una mica semblants de la llista de 1800 emojis. consulta la llista completa d'emojis a la pàgina de configuració","description":"command emoji desc"},"command_newline_description":{"message":"Digueu una línia nova per escriure '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Digueu que premeu Retorn per prémer la tecla \"Retorn\". Útil per enviar formularis","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Llista d'emoji per a l'idioma","description":"emoji list label"},"emoji_name_label":{"message":"El nom dels Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Digueu una línia nova per obtenir una línia nova.","description":"command newline desc"},"check_here_label":{"message":"Consulteu aquí","description":"Check here label"},"imoji_list_label":{"message":"Consulteu aquí","description":"Check here label"},"command_list_label":{"message":"Llista d'ordres","description":"Command List label"},"imoji_list_label_new":{"message":"Llista d'emoji","description":"imoji list label"},"symbol_list_label":{"message":"Llista de símbols matemàtics","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Digueu \"mindfulness\" per inserir una idea aleatòria de mindfulness al quadre de text","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Feu clic al botó següent per permetre els permisos d’àudio per poder utilitzar aquesta eina.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Nota: Si heu rebutjat permisos accidentalment, podeu permetre que facin clic a l'extrem superior esquerre de la barra de cerca d'aquesta pestanya","description":"audio permission extra info"},"allow_permission_label":{"message":"Permetre permís","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Permeteu permisos per utilitzar aquesta eina.","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Ara podeu tancar aquesta pestanya i utilitzar aquesta eina per escriure en qualsevol lloc web amb la vostra veu.","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ara feu clic a qualsevol entrada i parleu","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Crea un codi Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Activar desactivar","description":"enable or disable command label"},"command_arrow_label":{"message":"fletxa","description":"command arrow label"},"command_arrow_description":{"message":"Digueu \"fletxa esquerra\" per escriure la tecla de fletxa esquerra. ordres possibles: fletxa esquerra | dret | superior | avall","description":"command arrow desc"},"left_label":{"message":"a l'esquerra","description":"left label"},"right_label":{"message":"dret","description":"right label"},"up_label":{"message":"amunt","description":"up label"},"down_label":{"message":"avall","description":"down label"},"command_go_to_label":{"message":"anar a","description":"command go to label"},"command_go_to_description":{"message":"Digueu \"vés a facebook.com per obrir una nova pestanya per a facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"visita","description":"command go to label 2"},"command_go_to_label3":{"message":"obert","description":"command go to label 3"},"command_search_label":{"message":"cerca","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Digueu cat de cerca o google cat per buscar cat a google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marcador","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"marca aquesta pàgina","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"elimina el marcador","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"elimina aquest marcador","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Digueu \"Marca aquesta pàgina\" o \"Elimina el marcador\" per afegir o eliminar un marcador","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"S'ha afegit aquesta pàgina als marcadors.","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"S'ha eliminat aquesta pàgina dels marcadors.","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"jugar","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Digues 'play song_name', reproduirà la cançó des de youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"trobar","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ressaltar","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"no destaca","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Digueu \"ressalta la paraula clau\" per ressaltar la paraula clau a la pàgina actual i viceversa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"desfer","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"refer","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"desfer-ho tot","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Digueu desfer / refer / desfer tot per fer desfer / refer / desfer tot.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Pròxim","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Aneu als elements d'entrada dient el següent i l'anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"desplaçar-se cap amunt","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"desplaça cap avall","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Digueu desplaçament cap avall / desplaçament cap amunt per desplaçar-vos per la pàgina.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Kit d'eines de reconeixement de veu","description":"app name"},"appDescription":{"message":"Empleneu qualsevol formulari web utilitzant només la vostra veu.","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permet el permís d'àudio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"feu clic aquí per permetre el permís d'àudio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Configuració","description":"setting tab string"},"popup_mic_listening_label":{"message":"Escoltar","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Ajuda","description":"help tab string"},"popup_help_heading_str":{"message":"Som aquí per ajudar-vos","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Si heu experimentat algun problema, informeu-ne","description":"popup help tab description"},"here":{"message":"aquí","description":"word"},"popup_default_language_label_str":{"message":"Idioma predeterminat","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Feu clic per canviar l'idioma predeterminat","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Feu clic aquí per activar / desactivar el reconeixement de veu","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Obre Configuració","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Inicieu el \"Reconeixement de veu\" quan s'iniciï Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Canvia l'idioma de reconeixement de veu","description":"language change setting label"},"option_permission_success_msg":{"message":"Ara podeu tancar aquesta pestanya i utilitzar aquesta eina per escriure en qualsevol lloc web amb la vostra veu.","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Permeteu permisos per utilitzar aquesta eina.","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"No s'ha trobat cap emoji.","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utilitzeu el dictat d'emoji (més de 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cerqueu emoji que soni més a prop","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Com s'utilitza aquesta eina?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova línia","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Feu clic per veure les ordres de veu","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostra els comandaments","description":"voice commands control label "},"commands_list_label":{"message":"Llista d'ordres per a l'idioma","description":"Commands List for language label"},"command_name_label":{"message":"Nom de l'ordre","description":"Command's Name label"},"command_description_label":{"message":"Descripció de l'ordre","description":"Command's Description label"},"command_emoji_description":{"message":"Digueu \"nom d'emoji d'emoji\" per inserir emoji una mica semblants de la llista de 1800 emojis. consulta la llista completa d'emojis a la pàgina de configuració","description":"command emoji desc"},"command_newline_description":{"message":"Digueu una línia nova per escriure '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Digueu que premeu Retorn per prémer la tecla \"Retorn\". Útil per enviar formularis","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Llista d'emoji per a l'idioma","description":"emoji list label"},"emoji_name_label":{"message":"El nom dels Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Digueu una línia nova per obtenir una línia nova.","description":"command newline desc"},"check_here_label":{"message":"Consulteu aquí","description":"Check here label"},"imoji_list_label":{"message":"Consulteu aquí","description":"Check here label"},"command_list_label":{"message":"Llista d'ordres","description":"Command List label"},"imoji_list_label_new":{"message":"Llista d'emoji","description":"imoji list label"},"symbol_list_label":{"message":"Llista de símbols matemàtics","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Digueu \"mindfulness\" per inserir una idea aleatòria de mindfulness al quadre de text","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Feu clic al botó següent per permetre els permisos d’àudio per poder utilitzar aquesta eina.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Nota: Si heu rebutjat permisos accidentalment, podeu permetre que facin clic a l'extrem superior esquerre de la barra de cerca d'aquesta pestanya","description":"audio permission extra info"},"allow_permission_label":{"message":"Permetre permís","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Permeteu permisos per utilitzar aquesta eina.","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Ara podeu tancar aquesta pestanya i utilitzar aquesta eina per escriure en qualsevol lloc web amb la vostra veu.","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ara feu clic a qualsevol entrada i parleu","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Crea un codi Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Activar desactivar","description":"enable or disable command label"},"command_arrow_label":{"message":"fletxa","description":"command arrow label"},"command_arrow_description":{"message":"Digueu \"fletxa esquerra\" per escriure la tecla de fletxa esquerra. ordres possibles: fletxa esquerra | dret | superior | avall","description":"command arrow desc"},"left_label":{"message":"a l'esquerra","description":"left label"},"right_label":{"message":"dret","description":"right label"},"up_label":{"message":"amunt","description":"up label"},"down_label":{"message":"avall","description":"down label"},"command_search_label":{"message":"cerca","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Digueu cat de cerca o google cat per buscar cat a google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marcador","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"marca aquesta pàgina","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"elimina el marcador","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"elimina aquest marcador","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Digueu \"Marca aquesta pàgina\" o \"Elimina el marcador\" per afegir o eliminar un marcador","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"S'ha afegit aquesta pàgina als marcadors.","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"S'ha eliminat aquesta pàgina dels marcadors.","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"jugar","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Digues 'play song_name', reproduirà la cançó des de youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"trobar","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ressaltar","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"no destaca","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Digueu \"ressalta la paraula clau\" per ressaltar la paraula clau a la pàgina actual i viceversa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"desfer","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"refer","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"desfer-ho tot","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Digueu desfer / refer / desfer tot per fer desfer / refer / desfer tot.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Pròxim","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Aneu als elements d'entrada dient el següent i l'anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"desplaçar-se cap amunt","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"desplaça cap avall","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Digueu desplaçament cap avall / desplaçament cap amunt per desplaçar-vos per la pàgina.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"anar a","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"visita","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"obert","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Digueu \"anar a facebook.com\" per obrir facebook.com a la pestanya nova. Digueu \"anar al marcador bookmark_name\" per obrir l'URL del marcador.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"marcador","description":"bookmark"}} diff --git a/src/app/_locales/cs/messages.json b/src/app/_locales/cs/messages.json index 0bfe549..ad15526 100644 --- a/src/app/_locales/cs/messages.json +++ b/src/app/_locales/cs/messages.json @@ -1 +1 @@ -{"appName":{"message":"Sada nástrojů pro rozpoznávání řeči","description":"app name"},"appDescription":{"message":"Vyplňte jakýkoli webový formulář pouze pomocí svého hlasu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Povolit zvukové oprávnění","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknutím sem povolíte povolení zvuku","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Nastavení","description":"setting tab string"},"popup_mic_listening_label":{"message":"Naslouchání","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomoc","description":"help tab string"},"popup_help_heading_str":{"message":"Jsme tu, abychom vám pomohli","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Pokud jste narazili na jakýkoli problém, nahlaste to prosím","description":"popup help tab description"},"here":{"message":"tady","description":"word"},"popup_default_language_label_str":{"message":"Základní jazyk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknutím změníte výchozí jazyk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknutím sem zapnete / vypnete rozpoznávání řeči","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otevřete Nastavení","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Po spuštění prohlížeče Chrome spusťte program „Rozpoznávání řeči“","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Změňte jazyk rozpoznávání řeči","description":"language change setting label"},"option_permission_success_msg":{"message":"Nyní můžete zavřít tuto kartu a pomocí tohoto nástroje psát na libovolném webu svým hlasem!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Chcete-li používat tento nástroj, povolte oprávnění!","description":"error message when user rejects permission"},"emoji":{"message":"emodži","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emodži nenalezeny!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Použijte diktát emodži (více než 1 800 emodži)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Vyhledejte nejbližší znějící emodži","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Jak používat tento nástroj?","description":"How to use this tool ? string"},"new_line_label":{"message":"nový řádek","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknutím zobrazíte hlasové příkazy","description":"voice commands control label "},"popup_show_commands_label":{"message":"Zobrazit příkazy","description":"voice commands control label "},"commands_list_label":{"message":"Seznam příkazů pro jazyk","description":"Commands List for language label"},"command_name_label":{"message":"Jméno příkazu","description":"Command's Name label"},"command_description_label":{"message":"Popis příkazu","description":"Command's Description label"},"command_emoji_description":{"message":"Chcete-li vložit poněkud podobné emodži ze seznamu 1 800 emodži, řekněte „název emodži emodži“. podívejte se na úplný seznam emodži na stránce nastavení","description":"command emoji desc"},"command_newline_description":{"message":"Řekněte nový řádek a zadejte '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Stiskněte klávesu Enter a stiskněte klávesu „Enter“. Užitečné pro odesílání formulářů","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Seznam emodži pro jazyk","description":"emoji list label"},"emoji_name_label":{"message":"Název emodži","description":"emoji name label"},"command_newline_description_new":{"message":"Chcete-li získat nový řádek, řekněte nový řádek.","description":"command newline desc"},"check_here_label":{"message":"Zkontrolujte zde","description":"Check here label"},"imoji_list_label":{"message":"Zkontrolujte zde","description":"Check here label"},"command_list_label":{"message":"Seznam příkazů","description":"Command List label"},"imoji_list_label_new":{"message":"Seznam emodži","description":"imoji list label"},"symbol_list_label":{"message":"Seznam matematických symbolů","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Všímavost","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Chcete-li do textového pole vložit myšlenku všímavosti, řekněte „všímavost“","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Chcete-li používat tento nástroj, klikněte na tlačítko níže a povolte zvuková oprávnění.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Poznámka: Pokud jste omylem nepovolili oprávnění, můžete je povolit kliknutím na levý horní roh vyhledávací lišty na této kartě","description":"audio permission extra info"},"allow_permission_label":{"message":"Povolit povolení","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Chcete-li používat tento nástroj, povolte oprávnění!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nyní můžete zavřít tuto kartu a pomocí tohoto nástroje psát na libovolném webu svým hlasem!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Nyní klikněte na libovolný vstup a mluvte","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Vytvořte Morseovu abecedu","description":"cmc label"},"command_enable_disable_label":{"message":"Povolit zakázat","description":"enable or disable command label"},"command_arrow_label":{"message":"Šíp","description":"command arrow label"},"command_arrow_description":{"message":"Chcete-li zadat klávesu se šipkou vlevo, řekněte „šipka doleva“. možné příkazy: šipka vlevo | vpravo | nahoru | dolů","description":"command arrow desc"},"left_label":{"message":"vlevo, odjet","description":"left label"},"right_label":{"message":"že jo","description":"right label"},"up_label":{"message":"nahoru","description":"up label"},"down_label":{"message":"dolů","description":"down label"},"command_go_to_label":{"message":"jít do","description":"command go to label"},"command_go_to_description":{"message":"Řekněte „přejděte na facebook.com a otevřete novou kartu pro facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"návštěva","description":"command go to label 2"},"command_go_to_label3":{"message":"otevřeno","description":"command go to label 3"},"command_search_label":{"message":"Vyhledávání","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Chcete-li hledat kočku na google.com, řekněte vyhledávací kočka nebo google kočka","description":"command go to label 3"},"command_bookmark_label":{"message":"záložka do knihy","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"přidat tuto stránku do záložek","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"odstranit záložku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"odstranit tuto záložku","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Chcete-li přidat nebo odebrat záložku, řekněte „Přidat tuto stránku do záložek“ nebo „odebrat záložku“","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Tato stránka byla přidána do záložek!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Tato stránka byla odstraněna ze záložek!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"hrát si","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Řekněte „play song_name“, přehraje se skladba z youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"nalézt","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"zvýraznit","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nezvýraznit","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Chcete-li zvýraznit klíčové slovo na aktuální stránce a naopak, řekněte „zvýraznit klíčové slovo“","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"vrátit","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"předělat","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"vrátit vše","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Chcete-li akci vrátit / znovu provést / vrátit zpět vše, řekněte Zpět / Znovu / Zpět vše.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"další","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"předchozí","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Přejděte na vstupní prvky vyslovením dalšího a předchozího","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"posunout nahoru","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"posunout dolů","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Stránku můžete procházet vyslovením posouvání dolů / posouvání nahoru.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Sada nástrojů pro rozpoznávání řeči","description":"app name"},"appDescription":{"message":"Vyplňte jakýkoli webový formulář pouze pomocí svého hlasu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Povolit zvukové oprávnění","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknutím sem povolíte povolení zvuku","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Nastavení","description":"setting tab string"},"popup_mic_listening_label":{"message":"Naslouchání","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomoc","description":"help tab string"},"popup_help_heading_str":{"message":"Jsme tu, abychom vám pomohli","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Pokud jste narazili na jakýkoli problém, nahlaste to prosím","description":"popup help tab description"},"here":{"message":"tady","description":"word"},"popup_default_language_label_str":{"message":"Základní jazyk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknutím změníte výchozí jazyk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknutím sem zapnete / vypnete rozpoznávání řeči","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otevřete Nastavení","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Po spuštění prohlížeče Chrome spusťte program „Rozpoznávání řeči“","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Změňte jazyk rozpoznávání řeči","description":"language change setting label"},"option_permission_success_msg":{"message":"Nyní můžete zavřít tuto kartu a pomocí tohoto nástroje psát na libovolném webu svým hlasem!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Chcete-li používat tento nástroj, povolte oprávnění!","description":"error message when user rejects permission"},"emoji":{"message":"emodži","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emodži nenalezeny!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Použijte diktát emodži (více než 1 800 emodži)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Vyhledejte nejbližší znějící emodži","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Jak používat tento nástroj?","description":"How to use this tool ? string"},"new_line_label":{"message":"nový řádek","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknutím zobrazíte hlasové příkazy","description":"voice commands control label "},"popup_show_commands_label":{"message":"Zobrazit příkazy","description":"voice commands control label "},"commands_list_label":{"message":"Seznam příkazů pro jazyk","description":"Commands List for language label"},"command_name_label":{"message":"Jméno příkazu","description":"Command's Name label"},"command_description_label":{"message":"Popis příkazu","description":"Command's Description label"},"command_emoji_description":{"message":"Chcete-li vložit poněkud podobné emodži ze seznamu 1 800 emodži, řekněte „název emodži emodži“. podívejte se na úplný seznam emodži na stránce nastavení","description":"command emoji desc"},"command_newline_description":{"message":"Řekněte nový řádek a zadejte '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Stiskněte klávesu Enter a stiskněte klávesu „Enter“. Užitečné pro odesílání formulářů","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Seznam emodži pro jazyk","description":"emoji list label"},"emoji_name_label":{"message":"Název emodži","description":"emoji name label"},"command_newline_description_new":{"message":"Chcete-li získat nový řádek, řekněte nový řádek.","description":"command newline desc"},"check_here_label":{"message":"Zkontrolujte zde","description":"Check here label"},"imoji_list_label":{"message":"Zkontrolujte zde","description":"Check here label"},"command_list_label":{"message":"Seznam příkazů","description":"Command List label"},"imoji_list_label_new":{"message":"Seznam emodži","description":"imoji list label"},"symbol_list_label":{"message":"Seznam matematických symbolů","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Všímavost","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Chcete-li do textového pole vložit myšlenku všímavosti, řekněte „všímavost“","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Chcete-li používat tento nástroj, klikněte na tlačítko níže a povolte zvuková oprávnění.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Poznámka: Pokud jste omylem nepovolili oprávnění, můžete je povolit kliknutím na levý horní roh vyhledávací lišty na této kartě","description":"audio permission extra info"},"allow_permission_label":{"message":"Povolit povolení","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Chcete-li používat tento nástroj, povolte oprávnění!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nyní můžete zavřít tuto kartu a pomocí tohoto nástroje psát na libovolném webu svým hlasem!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Nyní klikněte na libovolný vstup a mluvte","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Vytvořte Morseovu abecedu","description":"cmc label"},"command_enable_disable_label":{"message":"Povolit zakázat","description":"enable or disable command label"},"command_arrow_label":{"message":"Šíp","description":"command arrow label"},"command_arrow_description":{"message":"Chcete-li zadat klávesu se šipkou vlevo, řekněte „šipka doleva“. možné příkazy: šipka vlevo | vpravo | nahoru | dolů","description":"command arrow desc"},"left_label":{"message":"vlevo, odjet","description":"left label"},"right_label":{"message":"že jo","description":"right label"},"up_label":{"message":"nahoru","description":"up label"},"down_label":{"message":"dolů","description":"down label"},"command_search_label":{"message":"Vyhledávání","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Chcete-li hledat kočku na google.com, řekněte vyhledávací kočka nebo google kočka","description":"command go to label 3"},"command_bookmark_label":{"message":"záložka do knihy","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"přidat tuto stránku do záložek","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"odstranit záložku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"odstranit tuto záložku","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Chcete-li přidat nebo odebrat záložku, řekněte „Přidat tuto stránku do záložek“ nebo „odebrat záložku“","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Tato stránka byla přidána do záložek!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Tato stránka byla odstraněna ze záložek!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"hrát si","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Řekněte „play song_name“, přehraje se skladba z youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"nalézt","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"zvýraznit","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nezvýraznit","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Chcete-li zvýraznit klíčové slovo na aktuální stránce a naopak, řekněte „zvýraznit klíčové slovo“","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"vrátit","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"předělat","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"vrátit vše","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Chcete-li akci vrátit / znovu provést / vrátit zpět vše, řekněte Zpět / Znovu / Zpět vše.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"další","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"předchozí","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Přejděte na vstupní prvky vyslovením dalšího a předchozího","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"posunout nahoru","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"posunout dolů","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Stránku můžete procházet vyslovením posouvání dolů / posouvání nahoru.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"jít do","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"návštěva","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"otevřeno","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Chcete-li otevřít facebook.com na nové kartě, řekněte „jít na facebook.com“. Chcete-li otevřít adresu URL záložky, řekněte „přejít na záložku bookmark_name“.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"záložka do knihy","description":"bookmark"}} diff --git a/src/app/_locales/da/messages.json b/src/app/_locales/da/messages.json index 9339eee..eb1cd91 100644 --- a/src/app/_locales/da/messages.json +++ b/src/app/_locales/da/messages.json @@ -1 +1 @@ -{"appName":{"message":"Værktøjskasse til talegenkendelse","description":"app name"},"appDescription":{"message":"Udfyld enhver webformular ved kun at bruge din stemme!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Tillad lydtilladelse","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klik her for at tillade lydtilladelse","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Indstillinger","description":"setting tab string"},"popup_mic_listening_label":{"message":"Hører efter","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hjælp","description":"help tab string"},"popup_help_heading_str":{"message":"Vi er her for at hjælpe","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Hvis du har oplevet et problem, bedes du rapportere det","description":"popup help tab description"},"here":{"message":"her","description":"word"},"popup_default_language_label_str":{"message":"Standardsprog","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik for at ændre standardsprog","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik her for at aktivere / deaktivere talegenkendelse","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Åbn Indstillinger","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Talegenkendelse', når Chrome starter","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Skift sprog til talegenkendelse","description":"language change setting label"},"option_permission_success_msg":{"message":"Nu kan du lukke denne fane og bruge dette værktøj til at skrive på ethvert websted med din stemme!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tillad venligst tilladelser for at bruge dette værktøj!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji ikke fundet!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Brug emoji-diktat (mere end 1800 emojier)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Søg efter tættest lydende emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hvordan bruges dette værktøj?","description":"How to use this tool ? string"},"new_line_label":{"message":"ny linje","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik for at se stemmekommandoer","description":"voice commands control label "},"popup_show_commands_label":{"message":"Vis kommandoer","description":"voice commands control label "},"commands_list_label":{"message":"Kommandoliste til sprog","description":"Commands List for language label"},"command_name_label":{"message":"Kommandos navn","description":"Command's Name label"},"command_description_label":{"message":"Kommandos beskrivelse","description":"Command's Description label"},"command_emoji_description":{"message":"Sig 'emoji-emojis navn' for at indsætte noget lignende emoji fra listen over 1800 emojier. checkout fuld liste over emojier på indstillingssiden","description":"command emoji desc"},"command_newline_description":{"message":"Sig en ny linje for at skrive '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sig, tryk på Enter for at trykke på 'Enter' -tasten. Nyttig til indsendelse af formularer","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis liste til sprog","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's navn","description":"emoji name label"},"command_newline_description_new":{"message":"Sig ny linje for at få en ny linje.","description":"command newline desc"},"check_here_label":{"message":"Tjek her","description":"Check here label"},"imoji_list_label":{"message":"Tjek her","description":"Check here label"},"command_list_label":{"message":"Kommandoliste","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-liste","description":"imoji list label"},"symbol_list_label":{"message":"Liste over matematiske symboler","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sig 'mindfulness' for at indsætte en tilfældig mindfulness-tanke i tekstboksen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klik på knappen nedenfor for at tillade lydtilladelser for at bruge dette værktøj.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Bemærk: Hvis du ved et uheld har afvist tilladelser, kan du tillade dem at klikke på øverste venstre hjørne af søgefeltet på denne fane","description":"audio permission extra info"},"allow_permission_label":{"message":"Tillad tilladelse","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tillad venligst tilladelser for at bruge dette værktøj!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nu kan du lukke denne fane og bruge dette værktøj til at skrive på ethvert websted med din stemme!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klik nu på et input og tal","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Opret Morse-kode","description":"cmc label"},"command_enable_disable_label":{"message":"Aktivere deaktivere","description":"enable or disable command label"},"command_arrow_label":{"message":"pil","description":"command arrow label"},"command_arrow_description":{"message":"Sig 'pil til venstre' for at skrive venstre piletast. mulige kommandoer: pil til venstre | højre | top | ned","description":"command arrow desc"},"left_label":{"message":"venstre","description":"left label"},"right_label":{"message":"ret","description":"right label"},"up_label":{"message":"op","description":"up label"},"down_label":{"message":"ned","description":"down label"},"command_go_to_label":{"message":"gå til","description":"command go to label"},"command_go_to_description":{"message":"Sig 'gå til facebook.com for at åbne en ny fane for facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"besøg","description":"command go to label 2"},"command_go_to_label3":{"message":"åben","description":"command go to label 3"},"command_search_label":{"message":"Søg","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sig søgekat eller googlekat for at søge kat på google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bogmærke","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Gem denne side","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"fjern bogmærke","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"fjern dette bogmærke","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sig 'Bogmærke denne side' eller 'fjern bogmærke' for at tilføje eller fjerne bogmærke","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Føjede denne side til bogmærker!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Fjernet denne side fra bogmærker!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Spil","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sig 'play song_name', den afspiller sangen fra youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"finde","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"fremhæv","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"uhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sig 'fremhæv nøgleord' for at fremhæve nøgleordet på den aktuelle side og omvendt","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"fortryde","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"gentag","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"fortryde alt","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sig Fortryd / Fortryd / Fortryd alt for at gøre Fortryd / Fortryd / Fortryd alt.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Næste","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Tidligere","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Naviger til inputelementer ved at sige næste og forrige","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"rulle op","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"Rul ned","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sig rul ned / rul op for at rulle gennem siden.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Værktøjskasse til talegenkendelse","description":"app name"},"appDescription":{"message":"Udfyld enhver webformular ved kun at bruge din stemme!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Tillad lydtilladelse","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klik her for at tillade lydtilladelse","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Indstillinger","description":"setting tab string"},"popup_mic_listening_label":{"message":"Hører efter","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hjælp","description":"help tab string"},"popup_help_heading_str":{"message":"Vi er her for at hjælpe","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Hvis du har oplevet et problem, bedes du rapportere det","description":"popup help tab description"},"here":{"message":"her","description":"word"},"popup_default_language_label_str":{"message":"Standardsprog","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik for at ændre standardsprog","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik her for at aktivere / deaktivere talegenkendelse","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Åbn Indstillinger","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Talegenkendelse', når Chrome starter","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Skift sprog til talegenkendelse","description":"language change setting label"},"option_permission_success_msg":{"message":"Nu kan du lukke denne fane og bruge dette værktøj til at skrive på ethvert websted med din stemme!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tillad venligst tilladelser for at bruge dette værktøj!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji ikke fundet!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Brug emoji-diktat (mere end 1800 emojier)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Søg efter tættest lydende emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hvordan bruges dette værktøj?","description":"How to use this tool ? string"},"new_line_label":{"message":"ny linje","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik for at se stemmekommandoer","description":"voice commands control label "},"popup_show_commands_label":{"message":"Vis kommandoer","description":"voice commands control label "},"commands_list_label":{"message":"Kommandoliste til sprog","description":"Commands List for language label"},"command_name_label":{"message":"Kommandos navn","description":"Command's Name label"},"command_description_label":{"message":"Kommandos beskrivelse","description":"Command's Description label"},"command_emoji_description":{"message":"Sig 'emoji-emojis navn' for at indsætte noget lignende emoji fra listen over 1800 emojier. checkout fuld liste over emojier på indstillingssiden","description":"command emoji desc"},"command_newline_description":{"message":"Sig en ny linje for at skrive '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sig, tryk på Enter for at trykke på 'Enter' -tasten. Nyttig til indsendelse af formularer","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis liste til sprog","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's navn","description":"emoji name label"},"command_newline_description_new":{"message":"Sig ny linje for at få en ny linje.","description":"command newline desc"},"check_here_label":{"message":"Tjek her","description":"Check here label"},"imoji_list_label":{"message":"Tjek her","description":"Check here label"},"command_list_label":{"message":"Kommandoliste","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-liste","description":"imoji list label"},"symbol_list_label":{"message":"Liste over matematiske symboler","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sig 'mindfulness' for at indsætte en tilfældig mindfulness-tanke i tekstboksen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klik på knappen nedenfor for at tillade lydtilladelser for at bruge dette værktøj.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Bemærk: Hvis du ved et uheld har afvist tilladelser, kan du tillade dem at klikke på øverste venstre hjørne af søgefeltet på denne fane","description":"audio permission extra info"},"allow_permission_label":{"message":"Tillad tilladelse","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tillad venligst tilladelser for at bruge dette værktøj!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nu kan du lukke denne fane og bruge dette værktøj til at skrive på ethvert websted med din stemme!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klik nu på et input og tal","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Opret Morse-kode","description":"cmc label"},"command_enable_disable_label":{"message":"Aktivere deaktivere","description":"enable or disable command label"},"command_arrow_label":{"message":"pil","description":"command arrow label"},"command_arrow_description":{"message":"Sig 'pil til venstre' for at skrive venstre piletast. mulige kommandoer: pil til venstre | højre | top | ned","description":"command arrow desc"},"left_label":{"message":"venstre","description":"left label"},"right_label":{"message":"ret","description":"right label"},"up_label":{"message":"op","description":"up label"},"down_label":{"message":"ned","description":"down label"},"command_search_label":{"message":"Søg","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sig søgekat eller googlekat for at søge kat på google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bogmærke","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Gem denne side","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"fjern bogmærke","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"fjern dette bogmærke","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sig 'Bogmærke denne side' eller 'fjern bogmærke' for at tilføje eller fjerne bogmærke","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Føjede denne side til bogmærker!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Fjernet denne side fra bogmærker!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Spil","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sig 'play song_name', den afspiller sangen fra youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"finde","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"fremhæv","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"uhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sig 'fremhæv nøgleord' for at fremhæve nøgleordet på den aktuelle side og omvendt","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"fortryde","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"gentag","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"fortryde alt","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sig Fortryd / Fortryd / Fortryd alt for at gøre Fortryd / Fortryd / Fortryd alt.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Næste","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Tidligere","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Naviger til inputelementer ved at sige næste og forrige","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"rulle op","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"Rul ned","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sig rul ned / rul op for at rulle gennem siden.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"gå til","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"besøg","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"åben","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Sig 'gå til facebook.com' for at åbne facebook.com i den nye fane. Sig 'gå til bogmærke bogmærke_navn' for at åbne webadresse til bogmærke.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"bogmærke","description":"bookmark"}} diff --git a/src/app/_locales/de/messages.json b/src/app/_locales/de/messages.json index 89ba6fb..3d089d6 100644 --- a/src/app/_locales/de/messages.json +++ b/src/app/_locales/de/messages.json @@ -1 +1 @@ -{"appName":{"message":"Spracherkennungs-Toolkit","description":"app name"},"appDescription":{"message":"Füllen Sie jedes Webformular nur mit Ihrer Stimme aus!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Audio-Berechtigung zulassen","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klicken Sie hier, um die Audio-Berechtigung zuzulassen","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"die Einstellungen","description":"setting tab string"},"popup_mic_listening_label":{"message":"Hören","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hilfe","description":"help tab string"},"popup_help_heading_str":{"message":"Wir sind hier um zu helfen","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Wenn Sie ein Problem haben, melden Sie es bitte","description":"popup help tab description"},"here":{"message":"Hier","description":"word"},"popup_default_language_label_str":{"message":"Standardsprache","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klicken Sie hier, um die Standardsprache zu ändern","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klicken Sie hier, um die Spracherkennung ein- und auszuschalten","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Einstellungen öffnen","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Starten Sie \"Spracherkennung\", wenn Chrome gestartet wird","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Ändern Sie die Spracherkennungssprache","description":"language change setting label"},"option_permission_success_msg":{"message":"Jetzt können Sie diese Registerkarte schließen und mit diesem Tool auf jeder Website mit Ihrer Stimme tippen!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Bitte erlauben Sie Berechtigungen, um dieses Tool zu verwenden!","description":"error message when user rejects permission"},"emoji":{"message":"Emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji nicht gefunden!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Verwenden Sie das Emoji-Diktat (mehr als 1800 Emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Suchen Sie nach dem am nächsten klingenden Emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Wie benutze ich dieses Tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"Neue Zeile","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klicken Sie hier, um Sprachbefehle anzuzeigen","description":"voice commands control label "},"popup_show_commands_label":{"message":"Befehle anzeigen","description":"voice commands control label "},"commands_list_label":{"message":"Befehlsliste für Sprache","description":"Commands List for language label"},"command_name_label":{"message":"Befehlsname","description":"Command's Name label"},"command_description_label":{"message":"Beschreibung des Befehls","description":"Command's Description label"},"command_emoji_description":{"message":"Sagen Sie 'emoji emojis Name', um ein ähnliches Emoji aus der Liste der 1800 Emojis einzufügen. Kasse vollständige Liste der Emojis auf der Einstellungsseite","description":"command emoji desc"},"command_newline_description":{"message":"Sagen Sie eine neue Zeile, um '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sagen Sie, drücken Sie die Eingabetaste, um die Eingabetaste zu drücken. Nützlich zum Einreichen von Formularen","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis Liste für Sprache","description":"emoji list label"},"emoji_name_label":{"message":"Emojis Name","description":"emoji name label"},"command_newline_description_new":{"message":"Sagen Sie eine neue Zeile, um eine neue Zeile zu erhalten.","description":"command newline desc"},"check_here_label":{"message":"Überprüfe hier","description":"Check here label"},"imoji_list_label":{"message":"Überprüfe hier","description":"Check here label"},"command_list_label":{"message":"Befehlsliste","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-Liste","description":"imoji list label"},"symbol_list_label":{"message":"Liste der mathematischen Symbole","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Achtsamkeit","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sagen Sie \"Achtsamkeit\", um einen zufälligen Achtsamkeitsgedanken in das Textfeld einzufügen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klicken Sie auf die Schaltfläche unten, um Audio-Berechtigungen für die Verwendung dieses Tools zuzulassen.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Hinweis: Wenn Sie versehentlich Berechtigungen nicht zugelassen haben, können Sie zulassen, dass diese auf die obere linke Ecke der Suchleiste dieser Registerkarte klicken","description":"audio permission extra info"},"allow_permission_label":{"message":"Erlaubnis zulassen","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Bitte erlauben Sie Berechtigungen, um dieses Tool zu verwenden!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Jetzt können Sie diese Registerkarte schließen und mit diesem Tool auf jeder Website mit Ihrer Stimme tippen!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klicken Sie nun auf eine Eingabe und sprechen Sie","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Erstellen Sie einen Morsecode","description":"cmc label"},"command_enable_disable_label":{"message":"Aktivieren deaktivieren","description":"enable or disable command label"},"command_arrow_label":{"message":"Pfeil","description":"command arrow label"},"command_arrow_description":{"message":"Sagen Sie 'Pfeil links', um die linke Pfeiltaste einzugeben. mögliche Befehle: Pfeil links | rechts | Nach oben | Nieder","description":"command arrow desc"},"left_label":{"message":"links","description":"left label"},"right_label":{"message":"richtig","description":"right label"},"up_label":{"message":"oben","description":"up label"},"down_label":{"message":"Nieder","description":"down label"},"command_go_to_label":{"message":"gehe zu","description":"command go to label"},"command_go_to_description":{"message":"Sagen Sie 'Gehe zu facebook.com, um einen neuen Tab für facebook.com zu öffnen","description":"command go to description"},"command_go_to_label2":{"message":"Besuch","description":"command go to label 2"},"command_go_to_label3":{"message":"öffnen","description":"command go to label 3"},"command_search_label":{"message":"Suche","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Sagen Sie Suchkatze oder Google-Katze, um Katze auf google.com zu suchen","description":"command go to label 3"},"command_bookmark_label":{"message":"Lesezeichen","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ein Lesezeichen auf diese Seite setzen","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"Lesezeichen entfernen","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"Entfernen Sie dieses Lesezeichen","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sagen Sie \"Diese Seite mit einem Lesezeichen versehen\" oder \"Lesezeichen entfernen\", um ein Lesezeichen hinzuzufügen oder zu entfernen","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Diese Seite wurde zu Lesezeichen hinzugefügt!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Diese Seite aus Lesezeichen entfernt!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"abspielen","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sag 'play song_name', es wird das Lied von youtube abspielen.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"finden","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Markieren","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"Unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sagen Sie \"Schlüsselwort markieren\", um das Schlüsselwort auf der aktuellen Seite hervorzuheben und umgekehrt","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"rückgängig machen","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"wiederholen","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"alles ungeschehen machen","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sagen Sie rückgängig machen / wiederholen / alles rückgängig machen, um rückgängig zu machen / wiederholen / rückgängig machen / alles rückgängig zu machen.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Nächster","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Bisherige","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigieren Sie zu den Eingabeelementen, indem Sie \"Weiter\" und \"Zurück\" sagen","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"hochscrollen","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"runterscrollen","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sagen Sie Bildlauf nach unten / Bildlauf nach oben, um die Seite zu scrollen.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Spracherkennungs-Toolkit","description":"app name"},"appDescription":{"message":"Füllen Sie jedes Webformular nur mit Ihrer Stimme aus!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Audio-Berechtigung zulassen","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klicken Sie hier, um die Audio-Berechtigung zuzulassen","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"die Einstellungen","description":"setting tab string"},"popup_mic_listening_label":{"message":"Hören","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hilfe","description":"help tab string"},"popup_help_heading_str":{"message":"Wir sind hier um zu helfen","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Wenn Sie ein Problem haben, melden Sie es bitte","description":"popup help tab description"},"here":{"message":"Hier","description":"word"},"popup_default_language_label_str":{"message":"Standardsprache","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klicken Sie hier, um die Standardsprache zu ändern","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klicken Sie hier, um die Spracherkennung ein- und auszuschalten","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Einstellungen öffnen","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Starten Sie \"Spracherkennung\", wenn Chrome gestartet wird","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Ändern Sie die Spracherkennungssprache","description":"language change setting label"},"option_permission_success_msg":{"message":"Jetzt können Sie diese Registerkarte schließen und mit diesem Tool auf jeder Website mit Ihrer Stimme tippen!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Bitte erlauben Sie Berechtigungen, um dieses Tool zu verwenden!","description":"error message when user rejects permission"},"emoji":{"message":"Emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji nicht gefunden!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Verwenden Sie das Emoji-Diktat (mehr als 1800 Emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Suchen Sie nach dem am nächsten klingenden Emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Wie benutze ich dieses Tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"Neue Zeile","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klicken Sie hier, um Sprachbefehle anzuzeigen","description":"voice commands control label "},"popup_show_commands_label":{"message":"Befehle anzeigen","description":"voice commands control label "},"commands_list_label":{"message":"Befehlsliste für Sprache","description":"Commands List for language label"},"command_name_label":{"message":"Befehlsname","description":"Command's Name label"},"command_description_label":{"message":"Beschreibung des Befehls","description":"Command's Description label"},"command_emoji_description":{"message":"Sagen Sie 'emoji emojis Name', um ein ähnliches Emoji aus der Liste der 1800 Emojis einzufügen. Kasse vollständige Liste der Emojis auf der Einstellungsseite","description":"command emoji desc"},"command_newline_description":{"message":"Sagen Sie eine neue Zeile, um '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sagen Sie, drücken Sie die Eingabetaste, um die Eingabetaste zu drücken. Nützlich zum Einreichen von Formularen","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis Liste für Sprache","description":"emoji list label"},"emoji_name_label":{"message":"Emojis Name","description":"emoji name label"},"command_newline_description_new":{"message":"Sagen Sie eine neue Zeile, um eine neue Zeile zu erhalten.","description":"command newline desc"},"check_here_label":{"message":"Überprüfe hier","description":"Check here label"},"imoji_list_label":{"message":"Überprüfe hier","description":"Check here label"},"command_list_label":{"message":"Befehlsliste","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-Liste","description":"imoji list label"},"symbol_list_label":{"message":"Liste der mathematischen Symbole","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Achtsamkeit","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sagen Sie \"Achtsamkeit\", um einen zufälligen Achtsamkeitsgedanken in das Textfeld einzufügen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klicken Sie auf die Schaltfläche unten, um Audio-Berechtigungen für die Verwendung dieses Tools zuzulassen.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Hinweis: Wenn Sie versehentlich Berechtigungen nicht zugelassen haben, können Sie zulassen, dass diese auf die obere linke Ecke der Suchleiste dieser Registerkarte klicken","description":"audio permission extra info"},"allow_permission_label":{"message":"Erlaubnis zulassen","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Bitte erlauben Sie Berechtigungen, um dieses Tool zu verwenden!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Jetzt können Sie diese Registerkarte schließen und mit diesem Tool auf jeder Website mit Ihrer Stimme tippen!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klicken Sie nun auf eine Eingabe und sprechen Sie","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Erstellen Sie einen Morsecode","description":"cmc label"},"command_enable_disable_label":{"message":"Aktivieren deaktivieren","description":"enable or disable command label"},"command_arrow_label":{"message":"Pfeil","description":"command arrow label"},"command_arrow_description":{"message":"Sagen Sie 'Pfeil links', um die linke Pfeiltaste einzugeben. mögliche Befehle: Pfeil links | rechts | Nach oben | Nieder","description":"command arrow desc"},"left_label":{"message":"links","description":"left label"},"right_label":{"message":"richtig","description":"right label"},"up_label":{"message":"oben","description":"up label"},"down_label":{"message":"Nieder","description":"down label"},"command_search_label":{"message":"Suche","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Sagen Sie Suchkatze oder Google-Katze, um Katze auf google.com zu suchen","description":"command go to label 3"},"command_bookmark_label":{"message":"Lesezeichen","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ein Lesezeichen auf diese Seite setzen","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"Lesezeichen entfernen","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"Entfernen Sie dieses Lesezeichen","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sagen Sie \"Diese Seite mit einem Lesezeichen versehen\" oder \"Lesezeichen entfernen\", um ein Lesezeichen hinzuzufügen oder zu entfernen","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Diese Seite wurde zu Lesezeichen hinzugefügt!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Diese Seite aus Lesezeichen entfernt!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"abspielen","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sag 'play song_name', es wird das Lied von youtube abspielen.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"finden","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Markieren","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"Unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sagen Sie \"Schlüsselwort markieren\", um das Schlüsselwort auf der aktuellen Seite hervorzuheben und umgekehrt","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"rückgängig machen","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"wiederholen","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"alles ungeschehen machen","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sagen Sie rückgängig machen / wiederholen / alles rückgängig machen, um rückgängig zu machen / wiederholen / rückgängig machen / alles rückgängig zu machen.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Nächster","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Bisherige","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigieren Sie zu den Eingabeelementen, indem Sie \"Weiter\" und \"Zurück\" sagen","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"hochscrollen","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"runterscrollen","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sagen Sie Bildlauf nach unten / Bildlauf nach oben, um die Seite zu scrollen.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"gehe zu","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"Besuch","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"öffnen","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Sagen Sie \"Gehe zu facebook.com\", um facebook.com in einem neuen Tab zu öffnen. Sagen Sie \"Gehe zu Lesezeichen bookmark_name\", um die Lesezeichen-URL zu öffnen.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"Lesezeichen","description":"bookmark"}} diff --git a/src/app/_locales/el/messages.json b/src/app/_locales/el/messages.json index 6b45c4a..5f4e80e 100644 --- a/src/app/_locales/el/messages.json +++ b/src/app/_locales/el/messages.json @@ -1 +1 @@ -{"appName":{"message":"Εργαλειοθήκη αναγνώρισης ομιλίας","description":"app name"},"appDescription":{"message":"Συμπληρώστε οποιαδήποτε φόρμα ιστού χρησιμοποιώντας μόνο τη φωνή σας!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Να επιτρέπεται η άδεια ήχου","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"κάντε κλικ εδώ για να επιτρέπεται η άδεια ήχου","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Ρυθμίσεις","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ακούγοντας","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Βοήθεια","description":"help tab string"},"popup_help_heading_str":{"message":"Είμαστε εδώ για να βοηθήσουμε","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Εάν αντιμετωπίσατε κάποιο πρόβλημα, αναφέρετέ το","description":"popup help tab description"},"here":{"message":"εδώ","description":"word"},"popup_default_language_label_str":{"message":"Προεπιλεγμένη γλώσσα","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Κάντε κλικ για να αλλάξετε την προεπιλεγμένη γλώσσα","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Κάντε κλικ εδώ για να ενεργοποιήσετε / απενεργοποιήσετε την Αναγνώριση ομιλίας","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Ανοίξτε τις Ρυθμίσεις","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Ξεκινήστε την \"Αναγνώριση ομιλίας\" όταν ξεκινά το Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Αλλαγή γλώσσας αναγνώρισης ομιλίας","description":"language change setting label"},"option_permission_success_msg":{"message":"Τώρα μπορείτε να κλείσετε αυτήν την καρτέλα και να χρησιμοποιήσετε αυτό το εργαλείο για να πληκτρολογήσετε σε οποιονδήποτε ιστότοπο με τη φωνή σας!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Επιτρέψτε τα δικαιώματα για να χρησιμοποιήσετε αυτό το εργαλείο!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Το Emoji δεν βρέθηκε!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Χρήση υπαγόρευσης emoji (περισσότερα από 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Αναζήτηση για πιο κοντινά emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Πώς να χρησιμοποιήσετε αυτό το εργαλείο;","description":"How to use this tool ? string"},"new_line_label":{"message":"νέα γραμμή","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Κάντε κλικ για να δείτε φωνητικές εντολές","description":"voice commands control label "},"popup_show_commands_label":{"message":"Εμφάνιση εντολών","description":"voice commands control label "},"commands_list_label":{"message":"Λίστα εντολών για γλώσσα","description":"Commands List for language label"},"command_name_label":{"message":"Όνομα εντολής","description":"Command's Name label"},"command_description_label":{"message":"Περιγραφή της εντολής","description":"Command's Description label"},"command_emoji_description":{"message":"Πείτε \"emoji emoji's name\" για να εισαγάγετε κάπως παρόμοια emoji από τη λίστα των 1800 emoji. ολοκλήρωση της λίστας των emoji στη σελίδα ρυθμίσεων","description":"command emoji desc"},"command_newline_description":{"message":"Πείτε νέα γραμμή για να πληκτρολογήσετε \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Ας πούμε πατήστε enter για να πατήσετε το πλήκτρο 'Enter'. Χρήσιμο για την υποβολή φορμών","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Λίστα Emoji για γλώσσα","description":"emoji list label"},"emoji_name_label":{"message":"Το όνομα του Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Πείτε νέα γραμμή για να λάβετε μια νέα γραμμή.","description":"command newline desc"},"check_here_label":{"message":"Ελέγξτε εδώ","description":"Check here label"},"imoji_list_label":{"message":"Ελέγξτε εδώ","description":"Check here label"},"command_list_label":{"message":"Λίστα εντολών","description":"Command List label"},"imoji_list_label_new":{"message":"Λίστα Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Λίστα μαθηματικών συμβόλων","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Ενσυνειδητότητα","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Πείτε \"mindfulness\" για να εισαγάγετε μια τυχαία σκέψη στο πλαίσιο κειμένου","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Κάντε κλικ στο παρακάτω κουμπί για να επιτρέψετε δικαιώματα ήχου για να χρησιμοποιήσετε αυτό το εργαλείο.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Σημείωση: Εάν δεν έχετε επιτρέψει κατά λάθος δικαιώματα, τότε μπορείτε να τους επιτρέψετε να κάνουν κλικ στην επάνω αριστερή γωνία της γραμμής αναζήτησης αυτής της καρτέλας","description":"audio permission extra info"},"allow_permission_label":{"message":"Επιτρέψτε την άδεια","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Επιτρέψτε τα δικαιώματα για να χρησιμοποιήσετε αυτό το εργαλείο!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Τώρα μπορείτε να κλείσετε αυτήν την καρτέλα και να χρησιμοποιήσετε αυτό το εργαλείο για να πληκτρολογήσετε σε οποιονδήποτε ιστότοπο με τη φωνή σας!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Τώρα κάντε κλικ σε οποιαδήποτε είσοδο και μιλήστε","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Δημιουργήστε κώδικα Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Ενεργοποιώ απενεργοποιώ","description":"enable or disable command label"},"command_arrow_label":{"message":"βέλος","description":"command arrow label"},"command_arrow_description":{"message":"Πείτε «βέλος αριστερά» για να πληκτρολογήσετε το αριστερό πλήκτρο βέλους. πιθανές εντολές: αριστερό βέλος | δεξιά | κορυφή | κάτω","description":"command arrow desc"},"left_label":{"message":"αριστερά","description":"left label"},"right_label":{"message":"σωστά","description":"right label"},"up_label":{"message":"πάνω","description":"up label"},"down_label":{"message":"κάτω","description":"down label"},"command_go_to_label":{"message":"παω σε","description":"command go to label"},"command_go_to_description":{"message":"Πείτε «μεταβείτε στο facebook.com για να ανοίξετε νέα καρτέλα για το facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"επίσκεψη","description":"command go to label 2"},"command_go_to_label3":{"message":"Άνοιξε","description":"command go to label 3"},"command_search_label":{"message":"Αναζήτηση","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Πείτε γάτα αναζήτησης ή γάτα google για αναζήτηση γάτας στο google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"σελιδοδείκτης","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Προσθήκη στους σελιδοδείκτες","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"αφαιρέστε το σελιδοδείκτη","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"αφαιρέστε αυτόν τον σελιδοδείκτη","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Πείτε \"Σελιδοδείκτης αυτής της σελίδας\" ή \"κατάργηση σελιδοδείκτη\" για προσθήκη ή κατάργηση σελιδοδείκτη","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Προστέθηκε αυτή η σελίδα στους σελιδοδείκτες!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Καταργήθηκε αυτή η σελίδα από σελιδοδείκτες!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"παίζω","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Πείτε \"play song_name\", θα παίξει το τραγούδι από το youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"εύρημα","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"αποκορύφωμα","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"μη επισημαίνοντας","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Πείτε \"επισήμανση λέξης-κλειδιού\" για να επισημάνετε τη λέξη-κλειδί στην τρέχουσα σελίδα και αντίστροφα","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ξεκάνω","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ξανακάνω","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"αναίρεση όλων","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Πείτε αναίρεση / επανάληψη / αναίρεση όλων για αναίρεση / επανάληψη / αναίρεση όλων.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Επόμενο","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"προηγούμενος","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Μεταβείτε στα στοιχεία εισαγωγής λέγοντας επόμενο και προηγούμενο","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"μετακινηθείτε προς τα επάνω","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"μετακινηθείτε προς τα κάτω","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Πείτε κύλιση προς τα κάτω / κύλιση προς τα πάνω για κύλιση στη σελίδα.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Εργαλειοθήκη αναγνώρισης ομιλίας","description":"app name"},"appDescription":{"message":"Συμπληρώστε οποιαδήποτε φόρμα ιστού χρησιμοποιώντας μόνο τη φωνή σας!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Να επιτρέπεται η άδεια ήχου","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"κάντε κλικ εδώ για να επιτρέπεται η άδεια ήχου","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Ρυθμίσεις","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ακούγοντας","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Βοήθεια","description":"help tab string"},"popup_help_heading_str":{"message":"Είμαστε εδώ για να βοηθήσουμε","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Εάν αντιμετωπίσατε κάποιο πρόβλημα, αναφέρετέ το","description":"popup help tab description"},"here":{"message":"εδώ","description":"word"},"popup_default_language_label_str":{"message":"Προεπιλεγμένη γλώσσα","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Κάντε κλικ για να αλλάξετε την προεπιλεγμένη γλώσσα","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Κάντε κλικ εδώ για να ενεργοποιήσετε / απενεργοποιήσετε την Αναγνώριση ομιλίας","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Ανοίξτε τις Ρυθμίσεις","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Ξεκινήστε την \"Αναγνώριση ομιλίας\" όταν ξεκινά το Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Αλλαγή γλώσσας αναγνώρισης ομιλίας","description":"language change setting label"},"option_permission_success_msg":{"message":"Τώρα μπορείτε να κλείσετε αυτήν την καρτέλα και να χρησιμοποιήσετε αυτό το εργαλείο για να πληκτρολογήσετε σε οποιονδήποτε ιστότοπο με τη φωνή σας!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Επιτρέψτε τα δικαιώματα για να χρησιμοποιήσετε αυτό το εργαλείο!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Το Emoji δεν βρέθηκε!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Χρήση υπαγόρευσης emoji (περισσότερα από 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Αναζήτηση για πιο κοντινά emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Πώς να χρησιμοποιήσετε αυτό το εργαλείο;","description":"How to use this tool ? string"},"new_line_label":{"message":"νέα γραμμή","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Κάντε κλικ για να δείτε φωνητικές εντολές","description":"voice commands control label "},"popup_show_commands_label":{"message":"Εμφάνιση εντολών","description":"voice commands control label "},"commands_list_label":{"message":"Λίστα εντολών για γλώσσα","description":"Commands List for language label"},"command_name_label":{"message":"Όνομα εντολής","description":"Command's Name label"},"command_description_label":{"message":"Περιγραφή της εντολής","description":"Command's Description label"},"command_emoji_description":{"message":"Πείτε \"emoji emoji's name\" για να εισαγάγετε κάπως παρόμοια emoji από τη λίστα των 1800 emoji. ολοκλήρωση της λίστας των emoji στη σελίδα ρυθμίσεων","description":"command emoji desc"},"command_newline_description":{"message":"Πείτε νέα γραμμή για να πληκτρολογήσετε \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Ας πούμε πατήστε enter για να πατήσετε το πλήκτρο 'Enter'. Χρήσιμο για την υποβολή φορμών","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Λίστα Emoji για γλώσσα","description":"emoji list label"},"emoji_name_label":{"message":"Το όνομα του Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Πείτε νέα γραμμή για να λάβετε μια νέα γραμμή.","description":"command newline desc"},"check_here_label":{"message":"Ελέγξτε εδώ","description":"Check here label"},"imoji_list_label":{"message":"Ελέγξτε εδώ","description":"Check here label"},"command_list_label":{"message":"Λίστα εντολών","description":"Command List label"},"imoji_list_label_new":{"message":"Λίστα Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Λίστα μαθηματικών συμβόλων","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Ενσυνειδητότητα","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Πείτε \"mindfulness\" για να εισαγάγετε μια τυχαία σκέψη στο πλαίσιο κειμένου","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Κάντε κλικ στο παρακάτω κουμπί για να επιτρέψετε δικαιώματα ήχου για να χρησιμοποιήσετε αυτό το εργαλείο.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Σημείωση: Εάν δεν έχετε επιτρέψει κατά λάθος δικαιώματα, τότε μπορείτε να τους επιτρέψετε να κάνουν κλικ στην επάνω αριστερή γωνία της γραμμής αναζήτησης αυτής της καρτέλας","description":"audio permission extra info"},"allow_permission_label":{"message":"Επιτρέψτε την άδεια","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Επιτρέψτε τα δικαιώματα για να χρησιμοποιήσετε αυτό το εργαλείο!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Τώρα μπορείτε να κλείσετε αυτήν την καρτέλα και να χρησιμοποιήσετε αυτό το εργαλείο για να πληκτρολογήσετε σε οποιονδήποτε ιστότοπο με τη φωνή σας!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Τώρα κάντε κλικ σε οποιαδήποτε είσοδο και μιλήστε","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Δημιουργήστε κώδικα Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Ενεργοποιώ απενεργοποιώ","description":"enable or disable command label"},"command_arrow_label":{"message":"βέλος","description":"command arrow label"},"command_arrow_description":{"message":"Πείτε «βέλος αριστερά» για να πληκτρολογήσετε το αριστερό πλήκτρο βέλους. πιθανές εντολές: αριστερό βέλος | δεξιά | κορυφή | κάτω","description":"command arrow desc"},"left_label":{"message":"αριστερά","description":"left label"},"right_label":{"message":"σωστά","description":"right label"},"up_label":{"message":"πάνω","description":"up label"},"down_label":{"message":"κάτω","description":"down label"},"command_search_label":{"message":"Αναζήτηση","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Πείτε γάτα αναζήτησης ή γάτα google για αναζήτηση γάτας στο google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"σελιδοδείκτης","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Προσθήκη στους σελιδοδείκτες","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"αφαιρέστε το σελιδοδείκτη","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"αφαιρέστε αυτόν τον σελιδοδείκτη","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Πείτε \"Σελιδοδείκτης αυτής της σελίδας\" ή \"κατάργηση σελιδοδείκτη\" για προσθήκη ή κατάργηση σελιδοδείκτη","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Προστέθηκε αυτή η σελίδα στους σελιδοδείκτες!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Καταργήθηκε αυτή η σελίδα από σελιδοδείκτες!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"παίζω","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Πείτε \"play song_name\", θα παίξει το τραγούδι από το youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"εύρημα","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"αποκορύφωμα","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"μη επισημαίνοντας","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Πείτε \"επισήμανση λέξης-κλειδιού\" για να επισημάνετε τη λέξη-κλειδί στην τρέχουσα σελίδα και αντίστροφα","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ξεκάνω","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ξανακάνω","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"αναίρεση όλων","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Πείτε αναίρεση / επανάληψη / αναίρεση όλων για αναίρεση / επανάληψη / αναίρεση όλων.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Επόμενο","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"προηγούμενος","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Μεταβείτε στα στοιχεία εισαγωγής λέγοντας επόμενο και προηγούμενο","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"μετακινηθείτε προς τα επάνω","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"μετακινηθείτε προς τα κάτω","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Πείτε κύλιση προς τα κάτω / κύλιση προς τα πάνω για κύλιση στη σελίδα.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"παω σε","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"επίσκεψη","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"Άνοιξε","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Πείτε «μεταβείτε στο facebook.com» για να ανοίξετε το facebook.com σε νέα καρτέλα. Πείτε \"μετάβαση στο σελιδοδείκτη bookmark_name\" για να ανοίξετε τη διεύθυνση URL σελιδοδεικτών.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"σελιδοδείκτης","description":"bookmark"}} diff --git a/src/app/_locales/en/messages.json b/src/app/_locales/en/messages.json index 758ceeb..3d3eb91 100644 --- a/src/app/_locales/en/messages.json +++ b/src/app/_locales/en/messages.json @@ -1 +1 @@ -{"appName":{"message":"Speech Recognition Toolkit","description":"app name"},"appDescription":{"message":"Fill out any web form by using only your voice!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Allow Audio Permission","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"click here to Allow Audio Permission","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Settings","description":"setting tab string"},"popup_mic_listening_label":{"message":"Listening","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Help","description":"help tab string"},"popup_help_heading_str":{"message":"We are here to help!","description":"popup help tab heading"},"popup_help_desc_str":{"message":"If you have experienced any issue, please report it","description":"popup help tab description"},"here":{"message":"here","description":"word"},"popup_default_language_label_str":{"message":"Default Language","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Click to change default language","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Click here to turn On/Off Speech Recognition","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Open Settings","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Speech Recognition' when Chrome starts","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Change Speech Recognition Language","description":"language change setting label"},"option_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji not found!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Use emoji dictation (more than 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Search for closest sounding emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"How to use this tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"new line","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Click to see voice commands","description":"voice commands control label "},"popup_show_commands_label":{"message":"Show Commands","description":"voice commands control label "},"commands_list_label":{"message":"Commands List for language","description":"Commands List for language label"},"command_name_label":{"message":"Command's Name","description":"Command's Name label"},"command_description_label":{"message":"Command's Description","description":"Command's Description label"},"command_emoji_description":{"message":"Say 'emoji emoji's name' to insert somewhat similar emoji from list of 1800 emojis. checkout full list of emojis in setting page","description":"command emoji desc"},"command_newline_description":{"message":"Say new line to type '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Say press enter to Press 'Enter' key. Useful for submitting forms","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji's List for language","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's name","description":"emoji name label"},"command_newline_description_new":{"message":"Say new line to get a new line.","description":"command newline desc"},"check_here_label":{"message":"Check here","description":"Check here label"},"imoji_list_label":{"message":"Check here","description":"Check here label"},"command_list_label":{"message":"Command List","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji List","description":"imoji list label"},"symbol_list_label":{"message":"Mathematical Symbols list","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Say 'mindfulness' to insert a random mindfulness thought in the text box","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Please Click on the button below to allow audio permissions in order to use this tool.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Note: If you have accidentally disallowed permissions, then you can allow them from clicking top left corner of search bar of this tab","description":"audio permission extra info"},"allow_permission_label":{"message":"Allow permission","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Now click on any input and speak","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Create Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Enable/Disable","description":"enable or disable command label"},"command_arrow_label":{"message":"arrow","description":"command arrow label"},"command_arrow_description":{"message":"Say 'arrow left' to type left arrow key. possible commands: arrow left | right | top | down","description":"command arrow desc"},"left_label":{"message":"left","description":"left label"},"right_label":{"message":"right","description":"right label"},"up_label":{"message":"up","description":"up label"},"down_label":{"message":"down","description":"down label"},"command_go_to_label":{"message":"go to","description":"command go to label"},"command_go_to_description":{"message":"Say 'go to facebook.com to open new tab for facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"visit","description":"command go to label 2"},"command_go_to_label3":{"message":"open","description":"command go to label 3"},"command_search_label":{"message":"search","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Say search cat or google cat to search cat on google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bookmark","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bookmark this page","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"remove bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"remove this bookmark","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Say 'Bookmark this page' or 'remove bookmark' to add or remove bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Added this page to bookmarks!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Removed this page from bookmarks!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"play","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Say 'play song_name', it will play the song from youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"find","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"highlight","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Say 'highlight keyword' to highlight the keyword on current page and vice-versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"undo","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"redo","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"undo all","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Say undo/redo/undo all to do undo/redo/undo all.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"next","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"previous","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigate to input elements by saying next and previous","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scroll up","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scroll down","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Say scroll down/ scroll up to scroll the page.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Speech Recognition Toolkit","description":"app name"},"appDescription":{"message":"Fill out any web form by using only your voice!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Allow Audio Permission","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"click here to Allow Audio Permission","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Settings","description":"setting tab string"},"popup_mic_listening_label":{"message":"Listening","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Help","description":"help tab string"},"popup_help_heading_str":{"message":"We are here to help!","description":"popup help tab heading"},"popup_help_desc_str":{"message":"If you have experienced any issue, please report it","description":"popup help tab description"},"here":{"message":"here","description":"word"},"popup_default_language_label_str":{"message":"Default Language","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Click to change default language","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Click here to turn On/Off Speech Recognition","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Open Settings","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Speech Recognition' when Chrome starts","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Change Speech Recognition Language","description":"language change setting label"},"option_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji not found!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Use emoji dictation (more than 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Search for closest sounding emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"How to use this tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"new line","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Click to see voice commands","description":"voice commands control label "},"popup_show_commands_label":{"message":"Show Commands","description":"voice commands control label "},"commands_list_label":{"message":"Commands List for language","description":"Commands List for language label"},"command_name_label":{"message":"Command's Name","description":"Command's Name label"},"command_description_label":{"message":"Command's Description","description":"Command's Description label"},"command_emoji_description":{"message":"Say 'emoji emoji's name' to insert somewhat similar emoji from list of 1800 emojis. checkout full list of emojis in setting page","description":"command emoji desc"},"command_newline_description":{"message":"Say new line to type '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Say press enter to Press 'Enter' key. Useful for submitting forms","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji's List for language","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's name","description":"emoji name label"},"command_newline_description_new":{"message":"Say new line to get a new line.","description":"command newline desc"},"check_here_label":{"message":"Check here","description":"Check here label"},"imoji_list_label":{"message":"Check here","description":"Check here label"},"command_list_label":{"message":"Command List","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji List","description":"imoji list label"},"symbol_list_label":{"message":"Mathematical Symbols list","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Say 'mindfulness' to insert a random mindfulness thought in the text box","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Please Click on the button below to allow audio permissions in order to use this tool.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Note: If you have accidentally disallowed permissions, then you can allow them from clicking top left corner of search bar of this tab","description":"audio permission extra info"},"allow_permission_label":{"message":"Allow permission","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Please Allow Permissions in order to use this tool!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Now you can close this tab and use this tool to type on any website with your voice!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Now click on any input and speak","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Create Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Enable/Disable","description":"enable or disable command label"},"command_arrow_label":{"message":"arrow","description":"command arrow label"},"command_arrow_description":{"message":"Say 'arrow left' to type left arrow key. possible commands: arrow left | right | top | down","description":"command arrow desc"},"left_label":{"message":"left","description":"left label"},"right_label":{"message":"right","description":"right label"},"up_label":{"message":"up","description":"up label"},"down_label":{"message":"down","description":"down label"},"command_search_label":{"message":"search","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Say search cat or google cat to search cat on google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bookmark","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bookmark this page","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"remove bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"remove this bookmark","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Say 'Bookmark this page' or 'remove bookmark' to add or remove bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Added this page to bookmarks!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Removed this page from bookmarks!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"play","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Say 'play song_name', it will play the song from youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"find","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"highlight","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Say 'highlight keyword' to highlight the keyword on current page and vice-versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"undo","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"redo","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"undo all","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Say undo/redo/undo all to do undo/redo/undo all.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"next","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"previous","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigate to input elements by saying next and previous","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scroll up","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scroll down","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Say scroll down/ scroll up to scroll the page.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"go to","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"visit","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"open","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"bookmark","description":"bookmark"}} diff --git a/src/app/_locales/es/messages.json b/src/app/_locales/es/messages.json index 88f5448..3e6f9ff 100644 --- a/src/app/_locales/es/messages.json +++ b/src/app/_locales/es/messages.json @@ -1 +1 @@ -{"appName":{"message":"Kit de herramientas de reconocimiento de voz","description":"app name"},"appDescription":{"message":"¡Complete cualquier formulario web usando solo su voz!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permitir permiso de audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"haga clic aquí para permitir el permiso de audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Configuraciones","description":"setting tab string"},"popup_mic_listening_label":{"message":"Escuchando","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Ayuda","description":"help tab string"},"popup_help_heading_str":{"message":"Estamos aquí para ayudar","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Si ha experimentado algún problema, infórmelo","description":"popup help tab description"},"here":{"message":"aquí","description":"word"},"popup_default_language_label_str":{"message":"Idioma predeterminado","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Haga clic para cambiar el idioma predeterminado","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Haga clic aquí para activar / desactivar el reconocimiento de voz","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Configuración abierta","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Iniciar \"Reconocimiento de voz\" cuando se inicia Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Cambiar el idioma de reconocimiento de voz","description":"language change setting label"},"option_permission_success_msg":{"message":"¡Ahora puede cerrar esta pestaña y usar esta herramienta para escribir en cualquier sitio web con su voz!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"¡Permita permisos para utilizar esta herramienta!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"¡Emoji no encontrado!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utilice el dictado de emoji (más de 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Buscar el emoji que suene más cercano","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Cómo utilizar esta herramienta?","description":"How to use this tool ? string"},"new_line_label":{"message":"nueva línea","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Haga clic para ver los comandos de voz","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostrar comandos","description":"voice commands control label "},"commands_list_label":{"message":"Lista de comandos para el idioma","description":"Commands List for language label"},"command_name_label":{"message":"Nombre del comando","description":"Command's Name label"},"command_description_label":{"message":"Descripción del comando","description":"Command's Description label"},"command_emoji_description":{"message":"Diga 'nombre de emoji emoji' para insertar un emoji similar de la lista de 1800 emojis. consultar la lista completa de emojis en la página de configuración","description":"command emoji desc"},"command_newline_description":{"message":"Di una nueva línea para escribir '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Diga presione enter para presionar la tecla 'Enter'. Útil para enviar formularios","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista de emojis por idioma","description":"emoji list label"},"emoji_name_label":{"message":"Nombre de emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Di nueva línea para obtener una nueva línea.","description":"command newline desc"},"check_here_label":{"message":"Chequea aquí","description":"Check here label"},"imoji_list_label":{"message":"Chequea aquí","description":"Check here label"},"command_list_label":{"message":"Lista de comandos","description":"Command List label"},"imoji_list_label_new":{"message":"Lista de emojis","description":"imoji list label"},"symbol_list_label":{"message":"Lista de símbolos matemáticos","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Atención plena","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Diga \"atención plena\" para insertar un pensamiento de atención plena al azar en el cuadro de texto","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Haga clic en el botón de abajo para permitir los permisos de audio con el fin de utilizar esta herramienta.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Nota: Si ha rechazado los permisos accidentalmente, puede permitirlos haciendo clic en la esquina superior izquierda de la barra de búsqueda de esta pestaña.","description":"audio permission extra info"},"allow_permission_label":{"message":"Permitir permiso","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"¡Permita permisos para utilizar esta herramienta!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"¡Ahora puede cerrar esta pestaña y usar esta herramienta para escribir en cualquier sitio web con su voz!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ahora haga clic en cualquier entrada y hable","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Crear código morse","description":"cmc label"},"command_enable_disable_label":{"message":"Habilitar deshabilitar","description":"enable or disable command label"},"command_arrow_label":{"message":"flecha","description":"command arrow label"},"command_arrow_description":{"message":"Diga \"flecha izquierda\" para escribir la tecla de flecha izquierda. posibles comandos: flecha izquierda | derecha | arriba | abajo","description":"command arrow desc"},"left_label":{"message":"izquierda","description":"left label"},"right_label":{"message":"derecho","description":"right label"},"up_label":{"message":"hasta","description":"up label"},"down_label":{"message":"abajo","description":"down label"},"command_go_to_label":{"message":"ir","description":"command go to label"},"command_go_to_description":{"message":"Diga 'vaya a facebook.com para abrir una nueva pestaña para facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"visitar","description":"command go to label 2"},"command_go_to_label3":{"message":"abierto","description":"command go to label 3"},"command_search_label":{"message":"buscar","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Di buscar gato o gato de google para buscar gato en google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marcador","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"marca esta pagina","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"eliminar marcador","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"eliminar este marcador","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Di \"Añadir esta página a marcadores\" o \"eliminar marcador\" para añadir o eliminar marcador.","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"¡Agregó esta página a los marcadores!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"¡Se eliminó esta página de los marcadores!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"tocar","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Diga 'reproducir song_name', reproducirá la canción de youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"encontrar","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"destacar","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"resaltar","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Diga 'resaltar palabra clave' para resaltar la palabra clave en la página actual y viceversa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"deshacer","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"rehacer","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"Deshacer todo","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Diga deshacer / rehacer / deshacer todo para deshacer / rehacer / deshacer todo.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"próximo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navegue a los elementos de entrada diciendo siguiente y anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"desplazarse hacia arriba","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"desplazarse hacia abajo","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Diga desplazarse hacia abajo / desplazarse hacia arriba para desplazarse por la página.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Kit de herramientas de reconocimiento de voz","description":"app name"},"appDescription":{"message":"¡Complete cualquier formulario web usando solo su voz!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permitir permiso de audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"haga clic aquí para permitir el permiso de audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Configuraciones","description":"setting tab string"},"popup_mic_listening_label":{"message":"Escuchando","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Ayuda","description":"help tab string"},"popup_help_heading_str":{"message":"Estamos aquí para ayudar","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Si ha experimentado algún problema, infórmelo","description":"popup help tab description"},"here":{"message":"aquí","description":"word"},"popup_default_language_label_str":{"message":"Idioma predeterminado","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Haga clic para cambiar el idioma predeterminado","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Haga clic aquí para activar / desactivar el reconocimiento de voz","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Configuración abierta","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Iniciar \"Reconocimiento de voz\" cuando se inicia Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Cambiar el idioma de reconocimiento de voz","description":"language change setting label"},"option_permission_success_msg":{"message":"¡Ahora puede cerrar esta pestaña y usar esta herramienta para escribir en cualquier sitio web con su voz!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"¡Permita permisos para utilizar esta herramienta!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"¡Emoji no encontrado!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utilice el dictado de emoji (más de 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Buscar el emoji que suene más cercano","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Cómo utilizar esta herramienta?","description":"How to use this tool ? string"},"new_line_label":{"message":"nueva línea","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Haga clic para ver los comandos de voz","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostrar comandos","description":"voice commands control label "},"commands_list_label":{"message":"Lista de comandos para el idioma","description":"Commands List for language label"},"command_name_label":{"message":"Nombre del comando","description":"Command's Name label"},"command_description_label":{"message":"Descripción del comando","description":"Command's Description label"},"command_emoji_description":{"message":"Diga 'nombre de emoji emoji' para insertar un emoji similar de la lista de 1800 emojis. consultar la lista completa de emojis en la página de configuración","description":"command emoji desc"},"command_newline_description":{"message":"Di una nueva línea para escribir '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Diga presione enter para presionar la tecla 'Enter'. Útil para enviar formularios","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista de emojis por idioma","description":"emoji list label"},"emoji_name_label":{"message":"Nombre de emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Di nueva línea para obtener una nueva línea.","description":"command newline desc"},"check_here_label":{"message":"Chequea aquí","description":"Check here label"},"imoji_list_label":{"message":"Chequea aquí","description":"Check here label"},"command_list_label":{"message":"Lista de comandos","description":"Command List label"},"imoji_list_label_new":{"message":"Lista de emojis","description":"imoji list label"},"symbol_list_label":{"message":"Lista de símbolos matemáticos","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Atención plena","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Diga \"atención plena\" para insertar un pensamiento de atención plena al azar en el cuadro de texto","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Haga clic en el botón de abajo para permitir los permisos de audio con el fin de utilizar esta herramienta.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Nota: Si ha rechazado los permisos accidentalmente, puede permitirlos haciendo clic en la esquina superior izquierda de la barra de búsqueda de esta pestaña.","description":"audio permission extra info"},"allow_permission_label":{"message":"Permitir permiso","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"¡Permita permisos para utilizar esta herramienta!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"¡Ahora puede cerrar esta pestaña y usar esta herramienta para escribir en cualquier sitio web con su voz!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ahora haga clic en cualquier entrada y hable","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Crear código morse","description":"cmc label"},"command_enable_disable_label":{"message":"Habilitar deshabilitar","description":"enable or disable command label"},"command_arrow_label":{"message":"flecha","description":"command arrow label"},"command_arrow_description":{"message":"Diga \"flecha izquierda\" para escribir la tecla de flecha izquierda. posibles comandos: flecha izquierda | derecha | arriba | abajo","description":"command arrow desc"},"left_label":{"message":"izquierda","description":"left label"},"right_label":{"message":"derecho","description":"right label"},"up_label":{"message":"hasta","description":"up label"},"down_label":{"message":"abajo","description":"down label"},"command_search_label":{"message":"buscar","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Di buscar gato o gato de google para buscar gato en google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marcador","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"marca esta pagina","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"eliminar marcador","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"eliminar este marcador","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Di \"Añadir esta página a marcadores\" o \"eliminar marcador\" para añadir o eliminar marcador.","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"¡Agregó esta página a los marcadores!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"¡Se eliminó esta página de los marcadores!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"tocar","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Diga 'reproducir song_name', reproducirá la canción de youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"encontrar","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"destacar","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"resaltar","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Diga 'resaltar palabra clave' para resaltar la palabra clave en la página actual y viceversa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"deshacer","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"rehacer","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"Deshacer todo","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Diga deshacer / rehacer / deshacer todo para deshacer / rehacer / deshacer todo.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"próximo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navegue a los elementos de entrada diciendo siguiente y anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"desplazarse hacia arriba","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"desplazarse hacia abajo","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Diga desplazarse hacia abajo / desplazarse hacia arriba para desplazarse por la página.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"ir","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"visitar","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"abierto","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Di \"ir a facebook.com\" para abrir facebook.com en una nueva pestaña. Di \"ir al marcador nombre_de_ marcador\" para abrir la URL del marcador.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"marcador","description":"bookmark"}} diff --git a/src/app/_locales/et/messages.json b/src/app/_locales/et/messages.json index f81e6ca..e645b38 100644 --- a/src/app/_locales/et/messages.json +++ b/src/app/_locales/et/messages.json @@ -1 +1 @@ -{"appName":{"message":"Kõnetuvastuse tööriistakomplekt","description":"app name"},"appDescription":{"message":"Täitke mis tahes veebivorm, kasutades ainult oma häält!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Luba heliluba","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"heliloa lubamiseks klõpsake siin","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Seaded","description":"setting tab string"},"popup_mic_listening_label":{"message":"Kuulamine","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Abi","description":"help tab string"},"popup_help_heading_str":{"message":"Oleme siin, et aidata","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Kui teil on probleeme olnud, teatage sellest","description":"popup help tab description"},"here":{"message":"siin","description":"word"},"popup_default_language_label_str":{"message":"Vaikekeel","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klõpsake vaikekeele muutmiseks","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kõnetuvastuse sisse- ja väljalülitamiseks klõpsake siin","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Avage Seaded","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Käivitage kõnetuvastus Chrome'i käivitamisel","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Kõnetuvastuse keele muutmine","description":"language change setting label"},"option_permission_success_msg":{"message":"Nüüd saate selle vahelehe sulgeda ja kasutada seda tööriista, et oma häälega mis tahes veebisaidile sisestada!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Selle tööriista kasutamiseks lubage load!","description":"error message when user rejects permission"},"emoji":{"message":"emotikon","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emotikat ei leitud!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Kasuta emotikonide dikteerimist (üle 1800 emotikoni)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Otsige lähimaid emotikone","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kuidas seda tööriista kasutada?","description":"How to use this tool ? string"},"new_line_label":{"message":"uus rida","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klõpsake häälkäskluste nägemiseks","description":"voice commands control label "},"popup_show_commands_label":{"message":"Kuva käsud","description":"voice commands control label "},"commands_list_label":{"message":"Keeleloendite loend","description":"Commands List for language label"},"command_name_label":{"message":"Käsu nimi","description":"Command's Name label"},"command_description_label":{"message":"Käsu kirjeldus","description":"Command's Description label"},"command_emoji_description":{"message":"Öelge 'emoji emoji nimi', et lisada 1800-sse emotikoni loendisse mõnevõrra sarnane emotikon. kassas täielik emotikonide loend seadete lehel","description":"command emoji desc"},"command_newline_description":{"message":"Öelge uus rida, et sisestada '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Öelge vajutage sisestusklahvi ja vajutage sisestusklahvi. Kasulik vormide esitamiseks","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emotikonide loend keeles","description":"emoji list label"},"emoji_name_label":{"message":"Emoji nimi","description":"emoji name label"},"command_newline_description_new":{"message":"Öelge uue rea saamiseks uus rida.","description":"command newline desc"},"check_here_label":{"message":"Kontrollige siin","description":"Check here label"},"imoji_list_label":{"message":"Kontrollige siin","description":"Check here label"},"command_list_label":{"message":"Käsuloend","description":"Command List label"},"imoji_list_label_new":{"message":"Emotikonide loend","description":"imoji list label"},"symbol_list_label":{"message":"Matemaatiliste sümbolite loend","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Öelge \"tähelepanelikkus\", et sisestada juhuslik tähelepanelikkuse mõte tekstikasti","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Selle tööriista kasutamiseks helilubade lubamiseks klõpsake allolevat nuppu.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Märkus. Kui olete kogemata keelanud õigused, saate lubada neil klõpsata selle vahekaardi otsinguriba vasakus ülanurgas","description":"audio permission extra info"},"allow_permission_label":{"message":"Luba luba","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Selle tööriista kasutamiseks lubage load!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nüüd saate selle vahekaardi sulgeda ja selle tööriista abil oma häälega mis tahes veebisaidile tippida!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Nüüd klõpsake suvalisel sisendil ja rääkige","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Loo morsekood","description":"cmc label"},"command_enable_disable_label":{"message":"Luba / Keela","description":"enable or disable command label"},"command_arrow_label":{"message":"nool","description":"command arrow label"},"command_arrow_description":{"message":"Öelge vasaknooleklahvi sisestamiseks „nool vasakule“. võimalikud käsud: nool vasakule | eks | üles | alla","description":"command arrow desc"},"left_label":{"message":"vasakule","description":"left label"},"right_label":{"message":"eks","description":"right label"},"up_label":{"message":"üles","description":"up label"},"down_label":{"message":"alla","description":"down label"},"command_go_to_label":{"message":"minema","description":"command go to label"},"command_go_to_description":{"message":"Ütle, et mine facebook.com-i uue vahelehe avamiseks facebook.com-i","description":"command go to description"},"command_go_to_label2":{"message":"külastada","description":"command go to label 2"},"command_go_to_label3":{"message":"avatud","description":"command go to label 3"},"command_search_label":{"message":"otsing","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Öelge otsingu kass või google kass otsimiseks kassi saidilt google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"järjehoidja","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Lisa see lehekülg järjehoidjatesse","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"eemalda järjehoidja","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"eemaldage see järjehoidja","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Järjehoidja lisamiseks või eemaldamiseks öelge \"Järjehoidja see leht\" või \"Eemalda järjehoidja\"","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Lisas selle lehe järjehoidjatesse!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Eemaldas selle lehe järjehoidjatest!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"mängima","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Öelge „esita laulu_nimi”, see esitab laulu YouTube'ist.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"leidma","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"esile tõstma","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"esiletõstmata","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Öelge märksõna esiletõstmiseks praegusel lehel oleva märksõna esiletõstmiseks ja vastupidi","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"tagasi võtma","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ümber tegema","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"võta kõik tagasi","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Ütle / tee uuesti / võta kõik tagasi, et kõik tagasi võtta.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"järgmine","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"eelmine","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Liikuge sisendelementideni, öeldes järgmine ja eelmine","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"Keri üles","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"kerige alla","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Öelge, et lehe kerimiseks kerige alla / üles.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Kõnetuvastuse tööriistakomplekt","description":"app name"},"appDescription":{"message":"Täitke mis tahes veebivorm, kasutades ainult oma häält!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Luba heliluba","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"heliloa lubamiseks klõpsake siin","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Seaded","description":"setting tab string"},"popup_mic_listening_label":{"message":"Kuulamine","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Abi","description":"help tab string"},"popup_help_heading_str":{"message":"Oleme siin, et aidata","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Kui teil on probleeme olnud, teatage sellest","description":"popup help tab description"},"here":{"message":"siin","description":"word"},"popup_default_language_label_str":{"message":"Vaikekeel","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klõpsake vaikekeele muutmiseks","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kõnetuvastuse sisse- ja väljalülitamiseks klõpsake siin","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Avage Seaded","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Käivitage kõnetuvastus Chrome'i käivitamisel","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Kõnetuvastuse keele muutmine","description":"language change setting label"},"option_permission_success_msg":{"message":"Nüüd saate selle vahelehe sulgeda ja kasutada seda tööriista, et oma häälega mis tahes veebisaidile sisestada!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Selle tööriista kasutamiseks lubage load!","description":"error message when user rejects permission"},"emoji":{"message":"emotikon","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emotikat ei leitud!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Kasuta emotikonide dikteerimist (üle 1800 emotikoni)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Otsige lähimaid emotikone","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kuidas seda tööriista kasutada?","description":"How to use this tool ? string"},"new_line_label":{"message":"uus rida","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klõpsake häälkäskluste nägemiseks","description":"voice commands control label "},"popup_show_commands_label":{"message":"Kuva käsud","description":"voice commands control label "},"commands_list_label":{"message":"Keeleloendite loend","description":"Commands List for language label"},"command_name_label":{"message":"Käsu nimi","description":"Command's Name label"},"command_description_label":{"message":"Käsu kirjeldus","description":"Command's Description label"},"command_emoji_description":{"message":"Öelge 'emoji emoji nimi', et lisada 1800-sse emotikoni loendisse mõnevõrra sarnane emotikon. kassas täielik emotikonide loend seadete lehel","description":"command emoji desc"},"command_newline_description":{"message":"Öelge uus rida, et sisestada '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Öelge vajutage sisestusklahvi ja vajutage sisestusklahvi. Kasulik vormide esitamiseks","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emotikonide loend keeles","description":"emoji list label"},"emoji_name_label":{"message":"Emoji nimi","description":"emoji name label"},"command_newline_description_new":{"message":"Öelge uue rea saamiseks uus rida.","description":"command newline desc"},"check_here_label":{"message":"Kontrollige siin","description":"Check here label"},"imoji_list_label":{"message":"Kontrollige siin","description":"Check here label"},"command_list_label":{"message":"Käsuloend","description":"Command List label"},"imoji_list_label_new":{"message":"Emotikonide loend","description":"imoji list label"},"symbol_list_label":{"message":"Matemaatiliste sümbolite loend","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Öelge \"tähelepanelikkus\", et sisestada juhuslik tähelepanelikkuse mõte tekstikasti","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Selle tööriista kasutamiseks helilubade lubamiseks klõpsake allolevat nuppu.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Märkus. Kui olete kogemata keelanud õigused, saate lubada neil klõpsata selle vahekaardi otsinguriba vasakus ülanurgas","description":"audio permission extra info"},"allow_permission_label":{"message":"Luba luba","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Selle tööriista kasutamiseks lubage load!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nüüd saate selle vahekaardi sulgeda ja selle tööriista abil oma häälega mis tahes veebisaidile tippida!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Nüüd klõpsake suvalisel sisendil ja rääkige","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Loo morsekood","description":"cmc label"},"command_enable_disable_label":{"message":"Luba / Keela","description":"enable or disable command label"},"command_arrow_label":{"message":"nool","description":"command arrow label"},"command_arrow_description":{"message":"Öelge vasaknooleklahvi sisestamiseks „nool vasakule“. võimalikud käsud: nool vasakule | eks | üles | alla","description":"command arrow desc"},"left_label":{"message":"vasakule","description":"left label"},"right_label":{"message":"eks","description":"right label"},"up_label":{"message":"üles","description":"up label"},"down_label":{"message":"alla","description":"down label"},"command_search_label":{"message":"otsing","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Öelge otsingu kass või google kass otsimiseks kassi saidilt google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"järjehoidja","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Lisa see lehekülg järjehoidjatesse","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"eemalda järjehoidja","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"eemaldage see järjehoidja","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Järjehoidja lisamiseks või eemaldamiseks öelge \"Järjehoidja see leht\" või \"Eemalda järjehoidja\"","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Lisas selle lehe järjehoidjatesse!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Eemaldas selle lehe järjehoidjatest!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"mängima","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Öelge „esita laulu_nimi”, see esitab laulu YouTube'ist.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"leidma","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"esile tõstma","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"esiletõstmata","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Öelge märksõna esiletõstmiseks praegusel lehel oleva märksõna esiletõstmiseks ja vastupidi","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"tagasi võtma","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ümber tegema","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"võta kõik tagasi","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Ütle / tee uuesti / võta kõik tagasi, et kõik tagasi võtta.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"järgmine","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"eelmine","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Liikuge sisendelementideni, öeldes järgmine ja eelmine","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"Keri üles","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"kerige alla","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Öelge, et lehe kerimiseks kerige alla / üles.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"minema","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"külastada","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"avatud","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Öelge „mine saidile facebook.com”, et avada facebook.com uuel vahelehel. Öelge järjehoidjate URL-i avamiseks \"mine järjehoidjate järjehoidjate_nimedele\".","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"järjehoidja","description":"bookmark"}} diff --git a/src/app/_locales/fa/messages.json b/src/app/_locales/fa/messages.json index 694e897..34ad242 100644 --- a/src/app/_locales/fa/messages.json +++ b/src/app/_locales/fa/messages.json @@ -1 +1 @@ -{"appName":{"message":"جعبه ابزار تشخیص گفتار","description":"app name"},"appDescription":{"message":"هر فرم وب را فقط با استفاده از صدای خود پر کنید!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"اجازه صوتی مجاز است","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"برای مجاز کردن اجازه صوتی اینجا را کلیک کنید","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"تنظیمات","description":"setting tab string"},"popup_mic_listening_label":{"message":"استماع","description":"label when mic is listening"},"popup_help_tab_str":{"message":"کمک","description":"help tab string"},"popup_help_heading_str":{"message":"ما اینجاییم تا کمک کنیم","description":"popup help tab heading"},"popup_help_desc_str":{"message":"اگر مشکلی را تجربه کرده اید ، لطفاً آن را گزارش دهید","description":"popup help tab description"},"here":{"message":"اینجا","description":"word"},"popup_default_language_label_str":{"message":"زبان پیش فرض","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"برای تغییر زبان پیش فرض کلیک کنید","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"برای روشن یا خاموش کردن تشخیص گفتار ، اینجا را کلیک کنید","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"تنظیمات را باز کنید","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"وقتی Chrome شروع به کار می کند ، «تشخیص گفتار» را شروع کنید","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"تغییر زبان تشخیص گفتار","description":"language change setting label"},"option_permission_success_msg":{"message":"اکنون می توانید این برگه را ببندید و از این ابزار برای تایپ کردن در هر وب سایت با صدای خود استفاده کنید!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"لطفاً برای استفاده از این ابزار اجازه ها را مجاز کنید!","description":"error message when user rejects permission"},"emoji":{"message":"شکلک","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"شکلک پیدا نشد!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"از شکلک emoji استفاده کنید (بیش از 1800 شکلک)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Emoji برای نزدیکترین صدا را جستجو کنید","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"چگونه از این ابزار استفاده کنیم؟","description":"How to use this tool ? string"},"new_line_label":{"message":"خط جدید","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"برای دیدن دستورات صوتی کلیک کنید","description":"voice commands control label "},"popup_show_commands_label":{"message":"نمایش دستورات","description":"voice commands control label "},"commands_list_label":{"message":"لیست دستورات برای زبان","description":"Commands List for language label"},"command_name_label":{"message":"نام فرماندهی","description":"Command's Name label"},"command_description_label":{"message":"شرح فرمان","description":"Command's Description label"},"command_emoji_description":{"message":"برای درج شکلک مشابه از لیست 1800 شکلک ، \"emoji emoji name\" بگویید. لیست کامل شکلک ها را در صفحه تنظیم کنید","description":"command emoji desc"},"command_newline_description":{"message":"برای تایپ کردن خط جدید بگویید.","description":"command newline desc"},"command_press_enter_description":{"message":"بگویید enter را فشار دهید تا کلید \"Enter\" را فشار دهید. برای ارسال فرم ها مفید است","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"فهرست زبان Emoji","description":"emoji list label"},"emoji_name_label":{"message":"نام ایموجی","description":"emoji name label"},"command_newline_description_new":{"message":"خط جدید بگویید تا خط جدیدی بدست آورید.","description":"command newline desc"},"check_here_label":{"message":"اینجا را بررسی کنید","description":"Check here label"},"imoji_list_label":{"message":"اینجا را بررسی کنید","description":"Check here label"},"command_list_label":{"message":"لیست فرمان","description":"Command List label"},"imoji_list_label_new":{"message":"لیست شکلک","description":"imoji list label"},"symbol_list_label":{"message":"لیست نمادهای ریاضی","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"ذهن آگاهی","description":"Mindfulness command"},"command_mindfulness_description":{"message":"برای قرار دادن یک فکر آگاهی تصادفی در جعبه متن ، \"ذهن آگاهی\" را بگویید","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"لطفاً برای اجازه دادن به مجوزهای صوتی برای استفاده از این ابزار روی دکمه زیر کلیک کنید.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"توجه: اگر به طور تصادفی مجوزها را رد کرده اید ، می توانید به آنها اجازه دهید روی گوشه بالا سمت چپ نوار جستجو این برگه کلیک کنند","description":"audio permission extra info"},"allow_permission_label":{"message":"اجازه دادن","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"لطفاً برای استفاده از این ابزار اجازه ها را مجاز کنید!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"اکنون می توانید این برگه را ببندید و از این ابزار برای تایپ کردن در هر وب سایت با صدای خود استفاده کنید!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* اکنون بر روی هر ورودی کلیک کرده و صحبت کنید","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"کد مورس ایجاد کنید","description":"cmc label"},"command_enable_disable_label":{"message":"فعال غیرفعال","description":"enable or disable command label"},"command_arrow_label":{"message":"فلش","description":"command arrow label"},"command_arrow_description":{"message":"برای تایپ کردن کلید پیکان چپ ، \"پیکان چپ\" را بگویید. دستورات احتمالی: پیکان چپ | درست | بالا | پایین","description":"command arrow desc"},"left_label":{"message":"ترک کرد","description":"left label"},"right_label":{"message":"درست","description":"right label"},"up_label":{"message":"بالا","description":"up label"},"down_label":{"message":"پایین","description":"down label"},"command_go_to_label":{"message":"قابل اعتماد و متخصص","description":"command go to label"},"command_go_to_description":{"message":"بگویید به facebook.com بروید تا برگه جدیدی برای facebook.com باز شود","description":"command go to description"},"command_go_to_label2":{"message":"بازدید","description":"command go to label 2"},"command_go_to_label3":{"message":"باز کن","description":"command go to label 3"},"command_search_label":{"message":"جستجو کردن","description":"command search label"},"command_search_label2":{"message":"گوگل","description":"command go to label 2"},"command_search_description":{"message":"برای جستجوی گربه در google.com بگویید cat search یا google cat","description":"command go to label 3"},"command_bookmark_label":{"message":"نشانک","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"این صفحه را علامت گذاری کنید","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"حذف نشانک","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"این نشانک را حذف کنید","description":"command bookmark label 4"},"command_bookmark_description":{"message":"برای افزودن یا حذف نشانک ، بگویید \"این صفحه را علامت گذاری کنید\" یا \"حذف نشانک\"","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"این صفحه را به بوک مارک ها اضافه کرد!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"این صفحه را از نشانکها حذف کرد!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"بازی","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"بگویید \"play song_name\" ، این آهنگ را از یوتیوب پخش می کند.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"پیدا کردن","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"برجسته","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"برجسته نشدن","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"برای برجسته سازی کلمه کلیدی در صفحه فعلی و بالعکس ، \"کلمه کلیدی برجسته\" را بگویید","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"واگرد","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"انجام مجدد","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"لغو همه","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"برای انجام واگرد / انجام مجدد / واگرد همه ، گفتن واگرد / انجام مجدد / واگرد همه.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"بعد","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"قبلی","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"با گفتن بعدی و قبلی به عناصر ورودی بروید","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"بکش بالا","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"به پایین پیمایش کنید","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"برای پیمایش صفحه بگویید به پایین اسکرول کنید / به بالا بروید.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"جعبه ابزار تشخیص گفتار","description":"app name"},"appDescription":{"message":"هر فرم وب را فقط با استفاده از صدای خود پر کنید!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"اجازه صوتی مجاز است","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"برای مجاز کردن اجازه صوتی اینجا را کلیک کنید","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"تنظیمات","description":"setting tab string"},"popup_mic_listening_label":{"message":"استماع","description":"label when mic is listening"},"popup_help_tab_str":{"message":"کمک","description":"help tab string"},"popup_help_heading_str":{"message":"ما اینجاییم تا کمک کنیم","description":"popup help tab heading"},"popup_help_desc_str":{"message":"اگر مشکلی را تجربه کرده اید ، لطفاً آن را گزارش دهید","description":"popup help tab description"},"here":{"message":"اینجا","description":"word"},"popup_default_language_label_str":{"message":"زبان پیش فرض","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"برای تغییر زبان پیش فرض کلیک کنید","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"برای روشن یا خاموش کردن تشخیص گفتار ، اینجا را کلیک کنید","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"تنظیمات را باز کنید","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"وقتی Chrome شروع به کار می کند ، «تشخیص گفتار» را شروع کنید","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"تغییر زبان تشخیص گفتار","description":"language change setting label"},"option_permission_success_msg":{"message":"اکنون می توانید این برگه را ببندید و از این ابزار برای تایپ کردن در هر وب سایت با صدای خود استفاده کنید!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"لطفاً برای استفاده از این ابزار اجازه ها را مجاز کنید!","description":"error message when user rejects permission"},"emoji":{"message":"شکلک","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"شکلک پیدا نشد!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"از شکلک emoji استفاده کنید (بیش از 1800 شکلک)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Emoji برای نزدیکترین صدا را جستجو کنید","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"چگونه از این ابزار استفاده کنیم؟","description":"How to use this tool ? string"},"new_line_label":{"message":"خط جدید","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"برای دیدن دستورات صوتی کلیک کنید","description":"voice commands control label "},"popup_show_commands_label":{"message":"نمایش دستورات","description":"voice commands control label "},"commands_list_label":{"message":"لیست دستورات برای زبان","description":"Commands List for language label"},"command_name_label":{"message":"نام فرماندهی","description":"Command's Name label"},"command_description_label":{"message":"شرح فرمان","description":"Command's Description label"},"command_emoji_description":{"message":"برای درج شکلک مشابه از لیست 1800 شکلک ، \"emoji emoji name\" بگویید. لیست کامل شکلک ها را در صفحه تنظیم کنید","description":"command emoji desc"},"command_newline_description":{"message":"برای تایپ کردن خط جدید بگویید.","description":"command newline desc"},"command_press_enter_description":{"message":"بگویید enter را فشار دهید تا کلید \"Enter\" را فشار دهید. برای ارسال فرم ها مفید است","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"فهرست زبان Emoji","description":"emoji list label"},"emoji_name_label":{"message":"نام ایموجی","description":"emoji name label"},"command_newline_description_new":{"message":"خط جدید بگویید تا خط جدیدی بدست آورید.","description":"command newline desc"},"check_here_label":{"message":"اینجا را بررسی کنید","description":"Check here label"},"imoji_list_label":{"message":"اینجا را بررسی کنید","description":"Check here label"},"command_list_label":{"message":"لیست فرمان","description":"Command List label"},"imoji_list_label_new":{"message":"لیست شکلک","description":"imoji list label"},"symbol_list_label":{"message":"لیست نمادهای ریاضی","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"ذهن آگاهی","description":"Mindfulness command"},"command_mindfulness_description":{"message":"برای قرار دادن یک فکر آگاهی تصادفی در جعبه متن ، \"ذهن آگاهی\" را بگویید","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"لطفاً برای اجازه دادن به مجوزهای صوتی برای استفاده از این ابزار روی دکمه زیر کلیک کنید.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"توجه: اگر به طور تصادفی مجوزها را رد کرده اید ، می توانید به آنها اجازه دهید روی گوشه بالا سمت چپ نوار جستجو این برگه کلیک کنند","description":"audio permission extra info"},"allow_permission_label":{"message":"اجازه دادن","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"لطفاً برای استفاده از این ابزار اجازه ها را مجاز کنید!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"اکنون می توانید این برگه را ببندید و از این ابزار برای تایپ کردن در هر وب سایت با صدای خود استفاده کنید!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* اکنون بر روی هر ورودی کلیک کرده و صحبت کنید","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"کد مورس ایجاد کنید","description":"cmc label"},"command_enable_disable_label":{"message":"فعال غیرفعال","description":"enable or disable command label"},"command_arrow_label":{"message":"فلش","description":"command arrow label"},"command_arrow_description":{"message":"برای تایپ کردن کلید پیکان چپ ، \"پیکان چپ\" را بگویید. دستورات احتمالی: پیکان چپ | درست | بالا | پایین","description":"command arrow desc"},"left_label":{"message":"ترک کرد","description":"left label"},"right_label":{"message":"درست","description":"right label"},"up_label":{"message":"بالا","description":"up label"},"down_label":{"message":"پایین","description":"down label"},"command_search_label":{"message":"جستجو کردن","description":"command search label"},"command_search_label2":{"message":"گوگل","description":"command go to label 2"},"command_search_description":{"message":"برای جستجوی گربه در google.com بگویید cat search یا google cat","description":"command go to label 3"},"command_bookmark_label":{"message":"نشانک","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"این صفحه را علامت گذاری کنید","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"حذف نشانک","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"این نشانک را حذف کنید","description":"command bookmark label 4"},"command_bookmark_description":{"message":"برای افزودن یا حذف نشانک ، بگویید \"این صفحه را علامت گذاری کنید\" یا \"حذف نشانک\"","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"این صفحه را به بوک مارک ها اضافه کرد!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"این صفحه را از نشانکها حذف کرد!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"بازی","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"بگویید \"play song_name\" ، این آهنگ را از یوتیوب پخش می کند.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"پیدا کردن","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"برجسته","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"برجسته نشدن","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"برای برجسته سازی کلمه کلیدی در صفحه فعلی و بالعکس ، \"کلمه کلیدی برجسته\" را بگویید","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"واگرد","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"انجام مجدد","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"لغو همه","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"برای انجام واگرد / انجام مجدد / واگرد همه ، گفتن واگرد / انجام مجدد / واگرد همه.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"بعد","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"قبلی","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"با گفتن بعدی و قبلی به عناصر ورودی بروید","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"بکش بالا","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"به پایین پیمایش کنید","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"برای پیمایش صفحه بگویید به پایین اسکرول کنید / به بالا بروید.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"قابل اعتماد و متخصص","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"بازدید","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"باز کن","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"بگویید به facebook.com بروید تا facebook.com را در برگه جدید باز کنید. برای باز کردن نشانی اینترنتی نشانک ، بگویید \"رفتن به نشانک نشانک_نام\".","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"نشانک","description":"bookmark"}} diff --git a/src/app/_locales/fi/messages.json b/src/app/_locales/fi/messages.json index 3d9d3ea..fb7a2ec 100644 --- a/src/app/_locales/fi/messages.json +++ b/src/app/_locales/fi/messages.json @@ -1 +1 @@ -{"appName":{"message":"Puheentunnistustyökalu","description":"app name"},"appDescription":{"message":"Täytä mikä tahansa verkkolomake käyttämällä vain ääntäsi!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Salli äänilupa","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"napsauta tätä, jos haluat sallia ääniluvan","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"asetukset","description":"setting tab string"},"popup_mic_listening_label":{"message":"Kuunteleminen","description":"label when mic is listening"},"popup_help_tab_str":{"message":"auta","description":"help tab string"},"popup_help_heading_str":{"message":"Olemme täällä auttamassa","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jos sinulla on ongelmia, ilmoita siitä","description":"popup help tab description"},"here":{"message":"tässä","description":"word"},"popup_default_language_label_str":{"message":"Oletuskieli","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Napsauta vaihtaaksesi oletuskieli","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Ota puheentunnistus käyttöön / pois käytöstä napsauttamalla tätä","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Avaa asetukset","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Käynnistä puheentunnistus, kun Chrome käynnistyy","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Vaihda puheentunnistuksen kieli","description":"language change setting label"},"option_permission_success_msg":{"message":"Nyt voit sulkea tämän välilehden ja kirjoittaa tätä työkalua kirjoittamalla mihin tahansa verkkosivustoon äänelläsi!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Salli käyttöoikeudet käyttääksesi tätä työkalua!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emojia ei löydy!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Käytä emoji-sanelua (yli 1800 emojia)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Etsi lähinnä kuulostava emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kuinka käyttää tätä työkalua?","description":"How to use this tool ? string"},"new_line_label":{"message":"uusi rivi","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Napsauta nähdäksesi äänikomennot","description":"voice commands control label "},"popup_show_commands_label":{"message":"Näytä komennot","description":"voice commands control label "},"commands_list_label":{"message":"Komennoluettelo kielelle","description":"Commands List for language label"},"command_name_label":{"message":"Komennon nimi","description":"Command's Name label"},"command_description_label":{"message":"Komennon kuvaus","description":"Command's Description label"},"command_emoji_description":{"message":"Sano 'emoji emoji's name' lisätäksesi samanlaisen emojin 1800 emojin luettelosta. kassalla täydellinen luettelo emojista asetussivulla","description":"command emoji desc"},"command_newline_description":{"message":"Sano uusi rivi kirjoittamaan '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sano painamalla Enter ja paina Enter-näppäintä. Hyödyllinen lomakkeiden lähettämiseen","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojien luettelo kielestä","description":"emoji list label"},"emoji_name_label":{"message":"Emojin nimi","description":"emoji name label"},"command_newline_description_new":{"message":"Sano uusi rivi saadaksesi uuden rivin.","description":"command newline desc"},"check_here_label":{"message":"Tarkista täältä","description":"Check here label"},"imoji_list_label":{"message":"Tarkista täältä","description":"Check here label"},"command_list_label":{"message":"Komentoluettelo","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-luettelo","description":"imoji list label"},"symbol_list_label":{"message":"Matemaattisten symbolien luettelo","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Tarkkaavaisuus","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sano 'mindfulness' lisätäksesi satunnaisen mindfulness-ajatuksen tekstikenttään","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Napsauta alla olevaa painiketta salliaksesi ääniluvat, jotta voit käyttää tätä työkalua.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Huomaa: Jos olet vahingossa kieltänyt käyttöoikeudet, voit antaa heille mahdollisuuden napsauttaa tämän välilehden hakupalkin vasenta yläkulmaa","description":"audio permission extra info"},"allow_permission_label":{"message":"Salli lupa","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Salli käyttöoikeudet käyttääksesi tätä työkalua!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nyt voit sulkea tämän välilehden ja kirjoittaa tätä työkalua kirjoittamalla mihin tahansa verkkosivustoon äänelläsi!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Napsauta nyt mitä tahansa syötettä ja puhu","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Luo Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Ota käyttöön poista käytöstä","description":"enable or disable command label"},"command_arrow_label":{"message":"nuoli","description":"command arrow label"},"command_arrow_description":{"message":"Kirjoita vasen nuolinäppäin sanalla 'vasen nuoli'. mahdolliset komennot: nuoli vasemmalle | oikea | alkuun | alas","description":"command arrow desc"},"left_label":{"message":"vasemmalle","description":"left label"},"right_label":{"message":"oikein","description":"right label"},"up_label":{"message":"ylös","description":"up label"},"down_label":{"message":"alas","description":"down label"},"command_go_to_label":{"message":"mene","description":"command go to label"},"command_go_to_description":{"message":"Sano 'siirry facebook.comiin avataksesi uuden välilehden facebook.comille","description":"command go to description"},"command_go_to_label2":{"message":"vierailla","description":"command go to label 2"},"command_go_to_label3":{"message":"avata","description":"command go to label 3"},"command_search_label":{"message":"Hae","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Sano hakukissa tai google kissa hakeaksesi kissaa google.com-sivustossa","description":"command go to label 3"},"command_bookmark_label":{"message":"kirjanmerkki","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"lisää tämä sivu kirjanmerkkeihin","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"Poista kirjanmerkki","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"poista tämä kirjanmerkki","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sano 'Lisää tämä sivu kirjanmerkkeihin' tai 'Poista kirjanmerkki' lisätäksesi tai poistaaksesi kirjanmerkin","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Lisättiin tämä sivu kirjanmerkkeihin!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Poisti tämän sivun kirjanmerkeistä!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"pelata","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sano 'soita kappaleen_nimi', se toistaa kappaleen YouTubesta.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"löytö","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"kohokohta","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"korosta","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sano \"korosta avainsana\" korostaaksesi avainsanan nykyisellä sivulla ja päinvastoin","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"kumoa","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"tee uudelleen","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"kumota kaikki","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sano Kumoa / Tee uudelleen / Kumoa kaikki tehdäksesi Kumoa / Tee uudelleen / Kumoa kaikki.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Seuraava","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Edellinen","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Siirry syöttöelementteihin sanomalla seuraava ja edellinen","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"Selaa ylöspäin","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"rullaa alas","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sano vierittämällä alas / vierittämällä ylöspäin vierittääksesi sivua.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Puheentunnistustyökalu","description":"app name"},"appDescription":{"message":"Täytä mikä tahansa verkkolomake käyttämällä vain ääntäsi!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Salli äänilupa","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"napsauta tätä, jos haluat sallia ääniluvan","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"asetukset","description":"setting tab string"},"popup_mic_listening_label":{"message":"Kuunteleminen","description":"label when mic is listening"},"popup_help_tab_str":{"message":"auta","description":"help tab string"},"popup_help_heading_str":{"message":"Olemme täällä auttamassa","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jos sinulla on ongelmia, ilmoita siitä","description":"popup help tab description"},"here":{"message":"tässä","description":"word"},"popup_default_language_label_str":{"message":"Oletuskieli","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Napsauta vaihtaaksesi oletuskieli","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Ota puheentunnistus käyttöön / pois käytöstä napsauttamalla tätä","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Avaa asetukset","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Käynnistä puheentunnistus, kun Chrome käynnistyy","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Vaihda puheentunnistuksen kieli","description":"language change setting label"},"option_permission_success_msg":{"message":"Nyt voit sulkea tämän välilehden ja kirjoittaa tätä työkalua kirjoittamalla mihin tahansa verkkosivustoon äänelläsi!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Salli käyttöoikeudet käyttääksesi tätä työkalua!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emojia ei löydy!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Käytä emoji-sanelua (yli 1800 emojia)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Etsi lähinnä kuulostava emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kuinka käyttää tätä työkalua?","description":"How to use this tool ? string"},"new_line_label":{"message":"uusi rivi","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Napsauta nähdäksesi äänikomennot","description":"voice commands control label "},"popup_show_commands_label":{"message":"Näytä komennot","description":"voice commands control label "},"commands_list_label":{"message":"Komennoluettelo kielelle","description":"Commands List for language label"},"command_name_label":{"message":"Komennon nimi","description":"Command's Name label"},"command_description_label":{"message":"Komennon kuvaus","description":"Command's Description label"},"command_emoji_description":{"message":"Sano 'emoji emoji's name' lisätäksesi samanlaisen emojin 1800 emojin luettelosta. kassalla täydellinen luettelo emojista asetussivulla","description":"command emoji desc"},"command_newline_description":{"message":"Sano uusi rivi kirjoittamaan '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sano painamalla Enter ja paina Enter-näppäintä. Hyödyllinen lomakkeiden lähettämiseen","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojien luettelo kielestä","description":"emoji list label"},"emoji_name_label":{"message":"Emojin nimi","description":"emoji name label"},"command_newline_description_new":{"message":"Sano uusi rivi saadaksesi uuden rivin.","description":"command newline desc"},"check_here_label":{"message":"Tarkista täältä","description":"Check here label"},"imoji_list_label":{"message":"Tarkista täältä","description":"Check here label"},"command_list_label":{"message":"Komentoluettelo","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-luettelo","description":"imoji list label"},"symbol_list_label":{"message":"Matemaattisten symbolien luettelo","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Tarkkaavaisuus","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sano 'mindfulness' lisätäksesi satunnaisen mindfulness-ajatuksen tekstikenttään","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Napsauta alla olevaa painiketta salliaksesi ääniluvat, jotta voit käyttää tätä työkalua.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Huomaa: Jos olet vahingossa kieltänyt käyttöoikeudet, voit antaa heille mahdollisuuden napsauttaa tämän välilehden hakupalkin vasenta yläkulmaa","description":"audio permission extra info"},"allow_permission_label":{"message":"Salli lupa","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Salli käyttöoikeudet käyttääksesi tätä työkalua!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nyt voit sulkea tämän välilehden ja kirjoittaa tätä työkalua kirjoittamalla mihin tahansa verkkosivustoon äänelläsi!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Napsauta nyt mitä tahansa syötettä ja puhu","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Luo Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Ota käyttöön poista käytöstä","description":"enable or disable command label"},"command_arrow_label":{"message":"nuoli","description":"command arrow label"},"command_arrow_description":{"message":"Kirjoita vasen nuolinäppäin sanalla 'vasen nuoli'. mahdolliset komennot: nuoli vasemmalle | oikea | alkuun | alas","description":"command arrow desc"},"left_label":{"message":"vasemmalle","description":"left label"},"right_label":{"message":"oikein","description":"right label"},"up_label":{"message":"ylös","description":"up label"},"down_label":{"message":"alas","description":"down label"},"command_search_label":{"message":"Hae","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Sano hakukissa tai google kissa hakeaksesi kissaa google.com-sivustossa","description":"command go to label 3"},"command_bookmark_label":{"message":"kirjanmerkki","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"lisää tämä sivu kirjanmerkkeihin","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"Poista kirjanmerkki","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"poista tämä kirjanmerkki","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sano 'Lisää tämä sivu kirjanmerkkeihin' tai 'Poista kirjanmerkki' lisätäksesi tai poistaaksesi kirjanmerkin","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Lisättiin tämä sivu kirjanmerkkeihin!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Poisti tämän sivun kirjanmerkeistä!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"pelata","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sano 'soita kappaleen_nimi', se toistaa kappaleen YouTubesta.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"löytö","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"kohokohta","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"korosta","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sano \"korosta avainsana\" korostaaksesi avainsanan nykyisellä sivulla ja päinvastoin","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"kumoa","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"tee uudelleen","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"kumota kaikki","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sano Kumoa / Tee uudelleen / Kumoa kaikki tehdäksesi Kumoa / Tee uudelleen / Kumoa kaikki.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Seuraava","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Edellinen","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Siirry syöttöelementteihin sanomalla seuraava ja edellinen","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"Selaa ylöspäin","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"rullaa alas","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sano vierittämällä alas / vierittämällä ylöspäin vierittääksesi sivua.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"mene","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"vierailla","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"avata","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Sano 'siirry facebook.comiin' avataksesi facebook.com uudella välilehdellä. Sano 'Siirry kirjanmerkkiin kirjanmerkin_nimi' avataksesi kirjanmerkkien URL-osoitteen.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"kirjanmerkki","description":"bookmark"}} diff --git a/src/app/_locales/fil/messages.json b/src/app/_locales/fil/messages.json index 163bc2a..3876e12 100644 --- a/src/app/_locales/fil/messages.json +++ b/src/app/_locales/fil/messages.json @@ -1 +1 @@ -{"appName":{"message":"Toolkit ng Pagkilala sa pagsasalita","description":"app name"},"appDescription":{"message":"Punan ang anumang form sa web sa pamamagitan lamang ng paggamit ng iyong boses!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Payagan ang Pahintulot sa Audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"mag-click dito upang Payagan ang Pahintulot sa Audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Mga setting","description":"setting tab string"},"popup_mic_listening_label":{"message":"Nakikinig","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Tulong","description":"help tab string"},"popup_help_heading_str":{"message":"Nandito kami para tumulong","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Kung nakaranas ka ng anumang isyu, mangyaring iulat ito","description":"popup help tab description"},"here":{"message":"dito","description":"word"},"popup_default_language_label_str":{"message":"Default na wika","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Mag-click upang baguhin ang default na wika","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Mag-click dito upang i-on / I-off ang Pagkilala sa Pagsasalita","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Buksan ang settings","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Simulan ang 'Pagkilala sa Pagsasalita' kapag nagsimula ang Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Baguhin ang Wika ng Pagkilala sa Pagsasalita","description":"language change setting label"},"option_permission_success_msg":{"message":"Ngayon ay maaari mong isara ang tab na ito at gamitin ang tool na ito upang mag-type sa anumang website gamit ang iyong boses!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Mangyaring Pahintulutan ang Mga Pahintulot upang magamit ang tool na ito!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji hindi natagpuan!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gumamit ng pagdidikta ng emoji (higit sa 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Maghanap para sa pinakamalapit na tunog na emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Paano magagamit ang tool na ito?","description":"How to use this tool ? string"},"new_line_label":{"message":"bagong linya","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Mag-click upang makita ang mga utos ng boses","description":"voice commands control label "},"popup_show_commands_label":{"message":"Ipakita ang Mga Utos","description":"voice commands control label "},"commands_list_label":{"message":"Listahan ng Mga Utos para sa wika","description":"Commands List for language label"},"command_name_label":{"message":"Pangalan ng Command","description":"Command's Name label"},"command_description_label":{"message":"Paglalarawan ng Command","description":"Command's Description label"},"command_emoji_description":{"message":"Sabihin ang 'pangalan ng emoji emoji' upang magsingit ng medyo katulad na emoji mula sa listahan ng 1800 emojis. checkout buong listahan ng mga emojis sa pahina ng setting","description":"command emoji desc"},"command_newline_description":{"message":"Sabihin ang bagong linya upang mai-type ang '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sabihing pindutin ang enter upang pindutin ang 'Enter' key. Kapaki-pakinabang para sa pagsusumite ng mga form","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Listahan ni Emoji para sa wika","description":"emoji list label"},"emoji_name_label":{"message":"Pangalan ni Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Sabihin ang bagong linya upang makakuha ng isang bagong linya.","description":"command newline desc"},"check_here_label":{"message":"Suriin dito","description":"Check here label"},"imoji_list_label":{"message":"Suriin dito","description":"Check here label"},"command_list_label":{"message":"Listahan ng Command","description":"Command List label"},"imoji_list_label_new":{"message":"Listahan ng Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Listahan ng Mga Simbolo ng Matematika","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Pag-iisip","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sabihin ang 'pagkaalaala' upang magsingit ng isang random na pag-iisip ng pag-iisip sa text box","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Mangyaring Mag-click sa pindutan sa ibaba upang payagan ang mga pahintulot sa audio upang magamit ang tool na ito.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Tandaan: Kung hindi mo sinasadyang hindi pinayagan ang mga pahintulot, maaari mo silang payagan mula sa pag-click sa kaliwang sulok sa itaas ng search bar ng tab na ito","description":"audio permission extra info"},"allow_permission_label":{"message":"Pahintulutan ang pahintulot","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Mangyaring Pahintulutan ang Mga Pahintulot upang magamit ang tool na ito!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Ngayon ay maaari mong isara ang tab na ito at gamitin ang tool na ito upang mag-type sa anumang website gamit ang iyong boses!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ngayon mag-click sa anumang input at magsalita","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Lumikha ng Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Payagan hindi payagan","description":"enable or disable command label"},"command_arrow_label":{"message":"palaso","description":"command arrow label"},"command_arrow_description":{"message":"Sabihin ang 'arrow left' upang mai-type ang left arrow key. mga posibleng utos: arrow left | kanan | tuktok | pababa","description":"command arrow desc"},"left_label":{"message":"umalis na","description":"left label"},"right_label":{"message":"tama","description":"right label"},"up_label":{"message":"pataas","description":"up label"},"down_label":{"message":"pababa","description":"down label"},"command_go_to_label":{"message":"pumunta sa","description":"command go to label"},"command_go_to_description":{"message":"Sabihin na 'pumunta sa facebook.com upang magbukas ng bagong tab para sa facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"dumalaw","description":"command go to label 2"},"command_go_to_label3":{"message":"buksan","description":"command go to label 3"},"command_search_label":{"message":"maghanap","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sabihin ang search cat o google cat upang maghanap ng pusa sa google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bookmark","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bookmark ang pahinang ito","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"alisin ang bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"alisin ang bookmark na ito","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sabihin ang 'I-bookmark ang pahinang ito' o 'alisin ang bookmark' upang magdagdag o mag-alis ng bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Idinagdag ang pahinang ito sa mga bookmark!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Inalis ang pahinang ito mula sa mga bookmark!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"maglaro","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sabihin ang 'play song_name', papatugtugin nito ang kanta mula sa youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"hanapin","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"i-highlight","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"hindi magandang ilaw","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sabihin ang 'highlight keyword' upang mai-highlight ang keyword sa kasalukuyang pahina at vice versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"pawalang-bisa","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"gawing muli","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"i-undo lahat","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sabihing i-undo / i-redo / i-undo ang lahat upang i-undo / i-redo / i-undo ang lahat.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"susunod na","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"dati","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Mag-navigate sa mga elemento ng pag-input sa pamamagitan ng pagsasabi ng susunod at dati","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"mag-scroll pataas","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"mag-scroll pababa","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sabihing mag-scroll pababa / mag-scroll pataas upang mag-scroll sa pahina.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Toolkit ng Pagkilala sa pagsasalita","description":"app name"},"appDescription":{"message":"Punan ang anumang form sa web sa pamamagitan lamang ng paggamit ng iyong boses!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Payagan ang Pahintulot sa Audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"mag-click dito upang Payagan ang Pahintulot sa Audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Mga setting","description":"setting tab string"},"popup_mic_listening_label":{"message":"Nakikinig","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Tulong","description":"help tab string"},"popup_help_heading_str":{"message":"Nandito kami para tumulong","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Kung nakaranas ka ng anumang isyu, mangyaring iulat ito","description":"popup help tab description"},"here":{"message":"dito","description":"word"},"popup_default_language_label_str":{"message":"Default na wika","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Mag-click upang baguhin ang default na wika","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Mag-click dito upang i-on / I-off ang Pagkilala sa Pagsasalita","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Buksan ang settings","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Simulan ang 'Pagkilala sa Pagsasalita' kapag nagsimula ang Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Baguhin ang Wika ng Pagkilala sa Pagsasalita","description":"language change setting label"},"option_permission_success_msg":{"message":"Ngayon ay maaari mong isara ang tab na ito at gamitin ang tool na ito upang mag-type sa anumang website gamit ang iyong boses!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Mangyaring Pahintulutan ang Mga Pahintulot upang magamit ang tool na ito!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji hindi natagpuan!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gumamit ng pagdidikta ng emoji (higit sa 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Maghanap para sa pinakamalapit na tunog na emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Paano magagamit ang tool na ito?","description":"How to use this tool ? string"},"new_line_label":{"message":"bagong linya","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Mag-click upang makita ang mga utos ng boses","description":"voice commands control label "},"popup_show_commands_label":{"message":"Ipakita ang Mga Utos","description":"voice commands control label "},"commands_list_label":{"message":"Listahan ng Mga Utos para sa wika","description":"Commands List for language label"},"command_name_label":{"message":"Pangalan ng Command","description":"Command's Name label"},"command_description_label":{"message":"Paglalarawan ng Command","description":"Command's Description label"},"command_emoji_description":{"message":"Sabihin ang 'pangalan ng emoji emoji' upang magsingit ng medyo katulad na emoji mula sa listahan ng 1800 emojis. checkout buong listahan ng mga emojis sa pahina ng setting","description":"command emoji desc"},"command_newline_description":{"message":"Sabihin ang bagong linya upang mai-type ang '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sabihing pindutin ang enter upang pindutin ang 'Enter' key. Kapaki-pakinabang para sa pagsusumite ng mga form","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Listahan ni Emoji para sa wika","description":"emoji list label"},"emoji_name_label":{"message":"Pangalan ni Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Sabihin ang bagong linya upang makakuha ng isang bagong linya.","description":"command newline desc"},"check_here_label":{"message":"Suriin dito","description":"Check here label"},"imoji_list_label":{"message":"Suriin dito","description":"Check here label"},"command_list_label":{"message":"Listahan ng Command","description":"Command List label"},"imoji_list_label_new":{"message":"Listahan ng Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Listahan ng Mga Simbolo ng Matematika","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Pag-iisip","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sabihin ang 'pagkaalaala' upang magsingit ng isang random na pag-iisip ng pag-iisip sa text box","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Mangyaring Mag-click sa pindutan sa ibaba upang payagan ang mga pahintulot sa audio upang magamit ang tool na ito.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Tandaan: Kung hindi mo sinasadyang hindi pinayagan ang mga pahintulot, maaari mo silang payagan mula sa pag-click sa kaliwang sulok sa itaas ng search bar ng tab na ito","description":"audio permission extra info"},"allow_permission_label":{"message":"Pahintulutan ang pahintulot","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Mangyaring Pahintulutan ang Mga Pahintulot upang magamit ang tool na ito!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Ngayon ay maaari mong isara ang tab na ito at gamitin ang tool na ito upang mag-type sa anumang website gamit ang iyong boses!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ngayon mag-click sa anumang input at magsalita","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Lumikha ng Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Payagan hindi payagan","description":"enable or disable command label"},"command_arrow_label":{"message":"palaso","description":"command arrow label"},"command_arrow_description":{"message":"Sabihin ang 'arrow left' upang mai-type ang left arrow key. mga posibleng utos: arrow left | kanan | tuktok | pababa","description":"command arrow desc"},"left_label":{"message":"umalis na","description":"left label"},"right_label":{"message":"tama","description":"right label"},"up_label":{"message":"pataas","description":"up label"},"down_label":{"message":"pababa","description":"down label"},"command_search_label":{"message":"maghanap","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sabihin ang search cat o google cat upang maghanap ng pusa sa google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bookmark","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bookmark ang pahinang ito","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"alisin ang bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"alisin ang bookmark na ito","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sabihin ang 'I-bookmark ang pahinang ito' o 'alisin ang bookmark' upang magdagdag o mag-alis ng bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Idinagdag ang pahinang ito sa mga bookmark!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Inalis ang pahinang ito mula sa mga bookmark!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"maglaro","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sabihin ang 'play song_name', papatugtugin nito ang kanta mula sa youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"hanapin","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"i-highlight","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"hindi magandang ilaw","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sabihin ang 'highlight keyword' upang mai-highlight ang keyword sa kasalukuyang pahina at vice versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"pawalang-bisa","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"gawing muli","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"i-undo lahat","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sabihing i-undo / i-redo / i-undo ang lahat upang i-undo / i-redo / i-undo ang lahat.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"susunod na","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"dati","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Mag-navigate sa mga elemento ng pag-input sa pamamagitan ng pagsasabi ng susunod at dati","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"mag-scroll pataas","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"mag-scroll pababa","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sabihing mag-scroll pababa / mag-scroll pataas upang mag-scroll sa pahina.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"pumunta sa","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"dumalaw","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"buksan","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Sabihin ang 'pumunta sa facebook.com' upang buksan ang facebook.com sa bagong tab. Sabihing 'pumunta sa bookmark bookmark_name' upang buksan ang url ng bookmark.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"bookmark","description":"bookmark"}} diff --git a/src/app/_locales/fr/messages.json b/src/app/_locales/fr/messages.json index 31c4359..972f473 100644 --- a/src/app/_locales/fr/messages.json +++ b/src/app/_locales/fr/messages.json @@ -1 +1 @@ -{"appName":{"message":"Boîte à outils de reconnaissance vocale","description":"app name"},"appDescription":{"message":"Remplissez n'importe quel formulaire Web en n'utilisant que votre voix!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Autoriser l'autorisation audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"cliquez ici pour autoriser l'autorisation audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Réglages","description":"setting tab string"},"popup_mic_listening_label":{"message":"Écoute","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Aidez-moi","description":"help tab string"},"popup_help_heading_str":{"message":"Nous sommes ici pour aider","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Si vous avez rencontré un problème, veuillez le signaler","description":"popup help tab description"},"here":{"message":"ici","description":"word"},"popup_default_language_label_str":{"message":"Langage par défaut","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Cliquez pour changer la langue par défaut","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Cliquez ici pour activer / désactiver la reconnaissance vocale","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Ouvrir les paramètres","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Lancer la «reconnaissance vocale» au démarrage de Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Changer la langue de reconnaissance vocale","description":"language change setting label"},"option_permission_success_msg":{"message":"Vous pouvez maintenant fermer cet onglet et utiliser cet outil pour taper sur n'importe quel site Web avec votre voix!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Veuillez autoriser les autorisations pour utiliser cet outil!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji introuvable!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utiliser la dictée emoji (plus de 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Rechercher l'emoji le plus proche","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Comment utiliser cet outil?","description":"How to use this tool ? string"},"new_line_label":{"message":"nouvelle ligne","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Cliquez pour voir les commandes vocales","description":"voice commands control label "},"popup_show_commands_label":{"message":"Afficher les commandes","description":"voice commands control label "},"commands_list_label":{"message":"Liste des commandes pour la langue","description":"Commands List for language label"},"command_name_label":{"message":"Nom de la commande","description":"Command's Name label"},"command_description_label":{"message":"Description de la commande","description":"Command's Description label"},"command_emoji_description":{"message":"Dites `` nom de l'emoji emoji '' pour insérer un emoji un peu similaire à partir de la liste de 1800 emojis. checkout liste complète des emojis dans la page de configuration","description":"command emoji desc"},"command_newline_description":{"message":"Dites une nouvelle ligne pour taper \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Dites appuyez sur Entrée pour Appuyez sur la touche «Entrée». Utile pour soumettre des formulaires","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Liste des emojis pour la langue","description":"emoji list label"},"emoji_name_label":{"message":"Nom de l'emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Dites nouvelle ligne pour obtenir une nouvelle ligne.","description":"command newline desc"},"check_here_label":{"message":"Vérifiez ici","description":"Check here label"},"imoji_list_label":{"message":"Vérifiez ici","description":"Check here label"},"command_list_label":{"message":"Liste des commandes","description":"Command List label"},"imoji_list_label_new":{"message":"Liste des emojis","description":"imoji list label"},"symbol_list_label":{"message":"Liste des symboles mathématiques","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"pleine conscience","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Dites `` pleine conscience '' pour insérer une pensée de pleine conscience aléatoire dans la zone de texte","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Veuillez cliquer sur le bouton ci-dessous pour autoriser les autorisations audio afin d'utiliser cet outil.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Remarque: Si vous avez accidentellement des autorisations interdites, vous pouvez les autoriser en cliquant dans le coin supérieur gauche de la barre de recherche de cet onglet","description":"audio permission extra info"},"allow_permission_label":{"message":"Autoriser l'autorisation","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Veuillez autoriser les autorisations pour utiliser cet outil!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Vous pouvez maintenant fermer cet onglet et utiliser cet outil pour taper sur n'importe quel site Web avec votre voix!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Maintenant, cliquez sur n'importe quelle entrée et parlez","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Créer un code Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Activer désactiver","description":"enable or disable command label"},"command_arrow_label":{"message":"La Flèche","description":"command arrow label"},"command_arrow_description":{"message":"Dites «flèche gauche» pour saisir la touche fléchée gauche commandes possibles: flèche gauche | droite | top | vers le bas","description":"command arrow desc"},"left_label":{"message":"gauche","description":"left label"},"right_label":{"message":"droit","description":"right label"},"up_label":{"message":"en haut","description":"up label"},"down_label":{"message":"vers le bas","description":"down label"},"command_go_to_label":{"message":"aller à","description":"command go to label"},"command_go_to_description":{"message":"Dites «allez sur facebook.com pour ouvrir un nouvel onglet pour facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"visite","description":"command go to label 2"},"command_go_to_label3":{"message":"ouvert","description":"command go to label 3"},"command_search_label":{"message":"chercher","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Dites rechercher un chat ou un chat Google pour rechercher un chat sur google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"signet","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Marquer cette page","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"supprimer le signet","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"supprimer ce favori","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Dites «Ajouter cette page aux favoris» ou «supprimer le favori» pour ajouter ou supprimer un favori","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Ajout de cette page aux signets!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Suppression de cette page des favoris!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"jouer","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Dites «play song_name», la chanson sera lue depuis youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"trouver","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"mettre en évidence","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"éteindre","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Dites «mettre en évidence le mot-clé» pour mettre en évidence le mot-clé sur la page actuelle et vice-versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"annuler","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"refaire","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"défaire tout","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Dites annuler / refaire / annuler tout pour tout annuler / refaire / annuler tout.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"suivant","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"précédent","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Accédez aux éléments d'entrée en disant suivant et précédent","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"faire défiler vers le haut","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"défiler vers le bas","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Dites défilement vers le bas / défilement vers le haut pour faire défiler la page.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Boîte à outils de reconnaissance vocale","description":"app name"},"appDescription":{"message":"Remplissez n'importe quel formulaire Web en n'utilisant que votre voix!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Autoriser l'autorisation audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"cliquez ici pour autoriser l'autorisation audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Réglages","description":"setting tab string"},"popup_mic_listening_label":{"message":"Écoute","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Aidez-moi","description":"help tab string"},"popup_help_heading_str":{"message":"Nous sommes ici pour aider","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Si vous avez rencontré un problème, veuillez le signaler","description":"popup help tab description"},"here":{"message":"ici","description":"word"},"popup_default_language_label_str":{"message":"Langage par défaut","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Cliquez pour changer la langue par défaut","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Cliquez ici pour activer / désactiver la reconnaissance vocale","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Ouvrir les paramètres","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Lancer la «reconnaissance vocale» au démarrage de Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Changer la langue de reconnaissance vocale","description":"language change setting label"},"option_permission_success_msg":{"message":"Vous pouvez maintenant fermer cet onglet et utiliser cet outil pour taper sur n'importe quel site Web avec votre voix!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Veuillez autoriser les autorisations pour utiliser cet outil!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji introuvable!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utiliser la dictée emoji (plus de 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Rechercher l'emoji le plus proche","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Comment utiliser cet outil?","description":"How to use this tool ? string"},"new_line_label":{"message":"nouvelle ligne","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Cliquez pour voir les commandes vocales","description":"voice commands control label "},"popup_show_commands_label":{"message":"Afficher les commandes","description":"voice commands control label "},"commands_list_label":{"message":"Liste des commandes pour la langue","description":"Commands List for language label"},"command_name_label":{"message":"Nom de la commande","description":"Command's Name label"},"command_description_label":{"message":"Description de la commande","description":"Command's Description label"},"command_emoji_description":{"message":"Dites `` nom de l'emoji emoji '' pour insérer un emoji un peu similaire à partir de la liste de 1800 emojis. checkout liste complète des emojis dans la page de configuration","description":"command emoji desc"},"command_newline_description":{"message":"Dites une nouvelle ligne pour taper \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Dites appuyez sur Entrée pour Appuyez sur la touche «Entrée». Utile pour soumettre des formulaires","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Liste des emojis pour la langue","description":"emoji list label"},"emoji_name_label":{"message":"Nom de l'emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Dites nouvelle ligne pour obtenir une nouvelle ligne.","description":"command newline desc"},"check_here_label":{"message":"Vérifiez ici","description":"Check here label"},"imoji_list_label":{"message":"Vérifiez ici","description":"Check here label"},"command_list_label":{"message":"Liste des commandes","description":"Command List label"},"imoji_list_label_new":{"message":"Liste des emojis","description":"imoji list label"},"symbol_list_label":{"message":"Liste des symboles mathématiques","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"pleine conscience","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Dites `` pleine conscience '' pour insérer une pensée de pleine conscience aléatoire dans la zone de texte","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Veuillez cliquer sur le bouton ci-dessous pour autoriser les autorisations audio afin d'utiliser cet outil.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Remarque: Si vous avez accidentellement des autorisations interdites, vous pouvez les autoriser en cliquant dans le coin supérieur gauche de la barre de recherche de cet onglet","description":"audio permission extra info"},"allow_permission_label":{"message":"Autoriser l'autorisation","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Veuillez autoriser les autorisations pour utiliser cet outil!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Vous pouvez maintenant fermer cet onglet et utiliser cet outil pour taper sur n'importe quel site Web avec votre voix!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Maintenant, cliquez sur n'importe quelle entrée et parlez","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Créer un code Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Activer désactiver","description":"enable or disable command label"},"command_arrow_label":{"message":"La Flèche","description":"command arrow label"},"command_arrow_description":{"message":"Dites «flèche gauche» pour saisir la touche fléchée gauche commandes possibles: flèche gauche | droite | top | vers le bas","description":"command arrow desc"},"left_label":{"message":"gauche","description":"left label"},"right_label":{"message":"droit","description":"right label"},"up_label":{"message":"en haut","description":"up label"},"down_label":{"message":"vers le bas","description":"down label"},"command_search_label":{"message":"chercher","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Dites rechercher un chat ou un chat Google pour rechercher un chat sur google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"signet","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Marquer cette page","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"supprimer le signet","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"supprimer ce favori","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Dites «Ajouter cette page aux favoris» ou «supprimer le favori» pour ajouter ou supprimer un favori","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Ajout de cette page aux signets!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Suppression de cette page des favoris!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"jouer","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Dites «play song_name», la chanson sera lue depuis youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"trouver","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"mettre en évidence","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"éteindre","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Dites «mettre en évidence le mot-clé» pour mettre en évidence le mot-clé sur la page actuelle et vice-versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"annuler","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"refaire","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"défaire tout","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Dites annuler / refaire / annuler tout pour tout annuler / refaire / annuler tout.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"suivant","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"précédent","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Accédez aux éléments d'entrée en disant suivant et précédent","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"faire défiler vers le haut","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"défiler vers le bas","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Dites défilement vers le bas / défilement vers le haut pour faire défiler la page.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"aller à","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"visite","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"ouvrir","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Dites «allez sur facebook.com» pour ouvrir facebook.com dans un nouvel onglet. Dites \"Accéder au favori bookmark_name\" pour ouvrir l'URL du favori.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"signet","description":"bookmark"}} diff --git a/src/app/_locales/gu/messages.json b/src/app/_locales/gu/messages.json index 8f98835..3e8d338 100644 --- a/src/app/_locales/gu/messages.json +++ b/src/app/_locales/gu/messages.json @@ -1 +1 @@ -{"appName":{"message":"સ્પીચ રેકગ્નિશન ટૂલકિટ","description":"app name"},"appDescription":{"message":"ફક્ત તમારા અવાજનો ઉપયોગ કરીને કોઈપણ વેબ ફોર્મ ભરો!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Audioડિઓ પરવાનગીને મંજૂરી આપો","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Audioડિઓ પરવાનગીને મંજૂરી આપવા માટે અહીં ક્લિક કરો","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"સેટિંગ્સ","description":"setting tab string"},"popup_mic_listening_label":{"message":"સાંભળવું","description":"label when mic is listening"},"popup_help_tab_str":{"message":"સહાય કરો","description":"help tab string"},"popup_help_heading_str":{"message":"અમે અહીં સહાય માટે છીએ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"જો તમને કોઈ સમસ્યાનો અનુભવ થયો હોય, તો કૃપા કરીને તેની જાણ કરો","description":"popup help tab description"},"here":{"message":"અહીં","description":"word"},"popup_default_language_label_str":{"message":"મૂળભૂત ભાષા","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ડિફોલ્ટ ભાષા બદલવા માટે ક્લિક કરો","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"વાણી ઓળખ ચાલુ / બંધ કરવા માટે અહીં ક્લિક કરો","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"સેટિંગ્સ ખોલો","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"જ્યારે Chrome પ્રારંભ થાય છે ત્યારે 'સ્પીચ રેકગ્નિશન' પ્રારંભ કરો","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"સ્પીચ રેકગ્નિશન લેંગ્વેજ બદલો","description":"language change setting label"},"option_permission_success_msg":{"message":"હવે તમે આ ટ tabબને બંધ કરી શકો છો અને તમારા વ voiceઇસથી કોઈપણ વેબસાઇટ પર ટાઇપ કરવા માટે આ ટૂલનો ઉપયોગ કરી શકો છો!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"કૃપા કરીને આ સાધનનો ઉપયોગ કરવા માટે પરવાનગીની મંજૂરી આપો!","description":"error message when user rejects permission"},"emoji":{"message":"ઇમોજી","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ઇમોજી મળ્યાં નથી!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ઇમોજી ડિક્ટેશનનો ઉપયોગ કરો (1800 થી વધુ ઇમોજીસ)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"નજીકના અવાજવાળા ઇમોજી માટે શોધ કરો","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"આ સાધનનો ઉપયોગ કેવી રીતે કરવો?","description":"How to use this tool ? string"},"new_line_label":{"message":"નવી લાઇન","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"વ voiceઇસ આદેશો જોવા માટે ક્લિક કરો","description":"voice commands control label "},"popup_show_commands_label":{"message":"આદેશો બતાવો","description":"voice commands control label "},"commands_list_label":{"message":"ભાષા માટે આદેશોની સૂચિ","description":"Commands List for language label"},"command_name_label":{"message":"આદેશનું નામ","description":"Command's Name label"},"command_description_label":{"message":"આદેશનું વર્ણન","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ઇમોજીસની સૂચિમાંથી કંઈક સમાન ઇમોજી શામેલ કરવા માટે 'ઇમોજી ઇમોજીનું નામ' કહો. સેટિંગ પૃષ્ઠમાં ઇમોજીઝની સંપૂર્ણ સૂચિને ચેકઆઉટ કરો","description":"command emoji desc"},"command_newline_description":{"message":"ટાઈપ કરવા માટે નવી લાઇન બોલો.","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' કી દબાવવા માટે enter દબાવો. ફોર્મ સબમિટ કરવા માટે ઉપયોગી","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ભાષા માટે ઇમોજીની સૂચિ","description":"emoji list label"},"emoji_name_label":{"message":"ઇમોજીનું નામ","description":"emoji name label"},"command_newline_description_new":{"message":"નવી લાઇન મેળવવા માટે નવી લાઇન કહો.","description":"command newline desc"},"check_here_label":{"message":"અહીં તપાસો","description":"Check here label"},"imoji_list_label":{"message":"અહીં તપાસો","description":"Check here label"},"command_list_label":{"message":"આદેશ યાદી","description":"Command List label"},"imoji_list_label_new":{"message":"ઇમોજી સૂચિ","description":"imoji list label"},"symbol_list_label":{"message":"ગાણિતિક પ્રતીકોની સૂચિ","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"માઇન્ડફુલનેસ","description":"Mindfulness command"},"command_mindfulness_description":{"message":"ટેક્સ્ટ બ inક્સમાં રેન્ડમ માઇન્ડફુલનેસ વિચાર શામેલ કરવા માટે 'માઇન્ડફુલનેસ' કહો","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"કૃપા કરીને આ ટૂલનો ઉપયોગ કરવા માટે audioડિઓ પરમિશનને મંજૂરી આપવા માટે નીચેના બટનને ક્લિક કરો.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"નોંધ: જો તમે આકસ્મિક રીતે પરવાનગીને મંજૂરી આપતા નથી, તો પછી તમે તેમને આ ટેબના શોધ પટ્ટીના ઉપર ડાબી બાજુના ખૂણા પર ક્લિક કરવાની મંજૂરી આપી શકો છો.","description":"audio permission extra info"},"allow_permission_label":{"message":"પરવાનગી આપો","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"કૃપા કરીને આ સાધનનો ઉપયોગ કરવા માટે પરવાનગીની મંજૂરી આપો!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"હવે તમે આ ટ tabબને બંધ કરી શકો છો અને તમારા વ voiceઇસથી કોઈપણ વેબસાઇટ પર ટાઇપ કરવા માટે આ ટૂલનો ઉપયોગ કરી શકો છો!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* હવે કોઈપણ ઇનપુટ પર ક્લિક કરો અને બોલો","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"મોર્સ કોડ બનાવો","description":"cmc label"},"command_enable_disable_label":{"message":"સક્રિય નિષ્ક્રિય","description":"enable or disable command label"},"command_arrow_label":{"message":"તીર","description":"command arrow label"},"command_arrow_description":{"message":"ડાબી એરો કી ટાઇપ કરવા માટે 'એરો ડાબી' કહો. શક્ય આદેશો: તીર બાકી | અધિકાર | ટોચ | નીચે","description":"command arrow desc"},"left_label":{"message":"ડાબી","description":"left label"},"right_label":{"message":"બરાબર","description":"right label"},"up_label":{"message":"ઉપર","description":"up label"},"down_label":{"message":"નીચે","description":"down label"},"command_go_to_label":{"message":"પર જાઓ","description":"command go to label"},"command_go_to_description":{"message":"'ફેસબુક ડોટ કોમ' માટે નવા ટ tabબ ખોલવા માટે ફેસબુક ડોટ કોમ પર કહો","description":"command go to description"},"command_go_to_label2":{"message":"મુલાકાત","description":"command go to label 2"},"command_go_to_label3":{"message":"ખુલ્લા","description":"command go to label 3"},"command_search_label":{"message":"શોધ","description":"command search label"},"command_search_label2":{"message":"ગૂગલ","description":"command go to label 2"},"command_search_description":{"message":"Google.com પર બિલાડી શોધવા માટે શોધ બિલાડી અથવા ગૂગલ બિલાડી કહો","description":"command go to label 3"},"command_bookmark_label":{"message":"બુકમાર્ક","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"આ પૃષ્ઠને બુકમાર્ક કરો","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"બુકમાર્ક દૂર કરો","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"આ બુકમાર્કને દૂર કરો","description":"command bookmark label 4"},"command_bookmark_description":{"message":"બુકમાર્ક ઉમેરવા અથવા દૂર કરવા માટે 'આ પૃષ્ઠને બુકમાર્ક કરો' અથવા 'બુકમાર્ક દૂર કરો' કહો","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"આ પૃષ્ઠને બુકમાર્ક્સમાં ઉમેર્યું!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"આ પૃષ્ઠને બુકમાર્ક્સથી દૂર કર્યું!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"રમ","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'ગીત_નામ ચલાવો' કહો, તે યુ ટ્યુબનું ગીત ચાલશે.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"શોધો","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"પ્રકાશિત કરો","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"અનહાઇટલાઇટ","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"વર્તમાન પૃષ્ઠ પર મુખ્ય શબ્દને પ્રકાશિત કરવા અને તેનાથી વિરુદ્ધ 'હાઇલાઇટ કીવર્ડ' કહો","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"પૂર્વવત્ કરો","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ફરી કરો","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"બધાને પૂર્વવત્ કરો","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"પૂર્વવત્ કરો / ફરીથી કરો / બધાને પૂર્વવત્ કરો / ફરીથી કરો / બધાને પૂર્વવત્ કરો.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"આગળ","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"અગાઉના","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"આગળ અને પાછલું કહીને ઇનપુટ તત્વો પર નેવિગેટ કરો","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ઉપર સ્ક્રોલ કરો","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"સરકાવો","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"પૃષ્ઠને સ્ક્રોલ કરવા માટે સ્ક્રોલ ડાઉન / સ્ક્રોલ કહો.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"સ્પીચ રેકગ્નિશન ટૂલકિટ","description":"app name"},"appDescription":{"message":"ફક્ત તમારા અવાજનો ઉપયોગ કરીને કોઈપણ વેબ ફોર્મ ભરો!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Audioડિઓ પરવાનગીને મંજૂરી આપો","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Audioડિઓ પરવાનગીને મંજૂરી આપવા માટે અહીં ક્લિક કરો","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"સેટિંગ્સ","description":"setting tab string"},"popup_mic_listening_label":{"message":"સાંભળવું","description":"label when mic is listening"},"popup_help_tab_str":{"message":"સહાય કરો","description":"help tab string"},"popup_help_heading_str":{"message":"અમે અહીં સહાય માટે છીએ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"જો તમને કોઈ સમસ્યાનો અનુભવ થયો હોય, તો કૃપા કરીને તેની જાણ કરો","description":"popup help tab description"},"here":{"message":"અહીં","description":"word"},"popup_default_language_label_str":{"message":"મૂળભૂત ભાષા","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ડિફોલ્ટ ભાષા બદલવા માટે ક્લિક કરો","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"વાણી ઓળખ ચાલુ / બંધ કરવા માટે અહીં ક્લિક કરો","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"સેટિંગ્સ ખોલો","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"જ્યારે Chrome પ્રારંભ થાય છે ત્યારે 'સ્પીચ રેકગ્નિશન' પ્રારંભ કરો","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"સ્પીચ રેકગ્નિશન લેંગ્વેજ બદલો","description":"language change setting label"},"option_permission_success_msg":{"message":"હવે તમે આ ટ tabબને બંધ કરી શકો છો અને તમારા વ voiceઇસથી કોઈપણ વેબસાઇટ પર ટાઇપ કરવા માટે આ ટૂલનો ઉપયોગ કરી શકો છો!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"કૃપા કરીને આ સાધનનો ઉપયોગ કરવા માટે પરવાનગીની મંજૂરી આપો!","description":"error message when user rejects permission"},"emoji":{"message":"ઇમોજી","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ઇમોજી મળ્યાં નથી!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ઇમોજી ડિક્ટેશનનો ઉપયોગ કરો (1800 થી વધુ ઇમોજીસ)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"નજીકના અવાજવાળા ઇમોજી માટે શોધ કરો","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"આ સાધનનો ઉપયોગ કેવી રીતે કરવો?","description":"How to use this tool ? string"},"new_line_label":{"message":"નવી લાઇન","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"વ voiceઇસ આદેશો જોવા માટે ક્લિક કરો","description":"voice commands control label "},"popup_show_commands_label":{"message":"આદેશો બતાવો","description":"voice commands control label "},"commands_list_label":{"message":"ભાષા માટે આદેશોની સૂચિ","description":"Commands List for language label"},"command_name_label":{"message":"આદેશનું નામ","description":"Command's Name label"},"command_description_label":{"message":"આદેશનું વર્ણન","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ઇમોજીસની સૂચિમાંથી કંઈક સમાન ઇમોજી શામેલ કરવા માટે 'ઇમોજી ઇમોજીનું નામ' કહો. સેટિંગ પૃષ્ઠમાં ઇમોજીઝની સંપૂર્ણ સૂચિને ચેકઆઉટ કરો","description":"command emoji desc"},"command_newline_description":{"message":"ટાઈપ કરવા માટે નવી લાઇન બોલો.","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' કી દબાવવા માટે enter દબાવો. ફોર્મ સબમિટ કરવા માટે ઉપયોગી","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ભાષા માટે ઇમોજીની સૂચિ","description":"emoji list label"},"emoji_name_label":{"message":"ઇમોજીનું નામ","description":"emoji name label"},"command_newline_description_new":{"message":"નવી લાઇન મેળવવા માટે નવી લાઇન કહો.","description":"command newline desc"},"check_here_label":{"message":"અહીં તપાસો","description":"Check here label"},"imoji_list_label":{"message":"અહીં તપાસો","description":"Check here label"},"command_list_label":{"message":"આદેશ યાદી","description":"Command List label"},"imoji_list_label_new":{"message":"ઇમોજી સૂચિ","description":"imoji list label"},"symbol_list_label":{"message":"ગાણિતિક પ્રતીકોની સૂચિ","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"માઇન્ડફુલનેસ","description":"Mindfulness command"},"command_mindfulness_description":{"message":"ટેક્સ્ટ બ inક્સમાં રેન્ડમ માઇન્ડફુલનેસ વિચાર શામેલ કરવા માટે 'માઇન્ડફુલનેસ' કહો","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"કૃપા કરીને આ ટૂલનો ઉપયોગ કરવા માટે audioડિઓ પરમિશનને મંજૂરી આપવા માટે નીચેના બટનને ક્લિક કરો.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"નોંધ: જો તમે આકસ્મિક રીતે પરવાનગીને મંજૂરી આપતા નથી, તો પછી તમે તેમને આ ટેબના શોધ પટ્ટીના ઉપર ડાબી બાજુના ખૂણા પર ક્લિક કરવાની મંજૂરી આપી શકો છો.","description":"audio permission extra info"},"allow_permission_label":{"message":"પરવાનગી આપો","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"કૃપા કરીને આ સાધનનો ઉપયોગ કરવા માટે પરવાનગીની મંજૂરી આપો!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"હવે તમે આ ટ tabબને બંધ કરી શકો છો અને તમારા વ voiceઇસથી કોઈપણ વેબસાઇટ પર ટાઇપ કરવા માટે આ ટૂલનો ઉપયોગ કરી શકો છો!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* હવે કોઈપણ ઇનપુટ પર ક્લિક કરો અને બોલો","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"મોર્સ કોડ બનાવો","description":"cmc label"},"command_enable_disable_label":{"message":"સક્રિય નિષ્ક્રિય","description":"enable or disable command label"},"command_arrow_label":{"message":"તીર","description":"command arrow label"},"command_arrow_description":{"message":"ડાબી એરો કી ટાઇપ કરવા માટે 'એરો ડાબી' કહો. શક્ય આદેશો: તીર બાકી | અધિકાર | ટોચ | નીચે","description":"command arrow desc"},"left_label":{"message":"ડાબી","description":"left label"},"right_label":{"message":"બરાબર","description":"right label"},"up_label":{"message":"ઉપર","description":"up label"},"down_label":{"message":"નીચે","description":"down label"},"command_search_label":{"message":"શોધ","description":"command search label"},"command_search_label2":{"message":"ગૂગલ","description":"command go to label 2"},"command_search_description":{"message":"Google.com પર બિલાડી શોધવા માટે શોધ બિલાડી અથવા ગૂગલ બિલાડી કહો","description":"command go to label 3"},"command_bookmark_label":{"message":"બુકમાર્ક","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"આ પૃષ્ઠને બુકમાર્ક કરો","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"બુકમાર્ક દૂર કરો","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"આ બુકમાર્કને દૂર કરો","description":"command bookmark label 4"},"command_bookmark_description":{"message":"બુકમાર્ક ઉમેરવા અથવા દૂર કરવા માટે 'આ પૃષ્ઠને બુકમાર્ક કરો' અથવા 'બુકમાર્ક દૂર કરો' કહો","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"આ પૃષ્ઠને બુકમાર્ક્સમાં ઉમેર્યું!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"આ પૃષ્ઠને બુકમાર્ક્સથી દૂર કર્યું!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"રમ","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'ગીત_નામ ચલાવો' કહો, તે યુ ટ્યુબનું ગીત ચાલશે.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"શોધો","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"પ્રકાશિત કરો","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"અનહાઇટલાઇટ","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"વર્તમાન પૃષ્ઠ પર મુખ્ય શબ્દને પ્રકાશિત કરવા અને તેનાથી વિરુદ્ધ 'હાઇલાઇટ કીવર્ડ' કહો","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"પૂર્વવત્ કરો","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ફરી કરો","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"બધાને પૂર્વવત્ કરો","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"પૂર્વવત્ કરો / ફરીથી કરો / બધાને પૂર્વવત્ કરો / ફરીથી કરો / બધાને પૂર્વવત્ કરો.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"આગળ","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"અગાઉના","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"આગળ અને પાછલું કહીને ઇનપુટ તત્વો પર નેવિગેટ કરો","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ઉપર સ્ક્રોલ કરો","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"સરકાવો","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"પૃષ્ઠને સ્ક્રોલ કરવા માટે સ્ક્રોલ ડાઉન / સ્ક્રોલ કહો.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"પર જાઓ","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"મુલાકાત","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"ખુલ્લા","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"નવા ટ tabબમાં ફેસબુક ડોટ કોમ ખોલવા માટે 'ફેસબુક ડોટ કોમ પર જાઓ' કહો. બુકમાર્ક url ખોલવા માટે 'બુકમાર્ક બુકમાર્ક નામ પર જાઓ' કહો.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"બુકમાર્ક","description":"bookmark"}} diff --git a/src/app/_locales/he/messages.json b/src/app/_locales/he/messages.json index 37ccba8..e348655 100644 --- a/src/app/_locales/he/messages.json +++ b/src/app/_locales/he/messages.json @@ -1 +1 @@ -{"appName":{"message":"ערכת כלים לזיהוי דיבור","description":"app name"},"appDescription":{"message":"מלא כל טופס אינטרנט באמצעות הקול שלך בלבד!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"אפשר הרשאת שמע","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"לחץ כאן כדי לאפשר הרשאת שמע","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"הגדרות","description":"setting tab string"},"popup_mic_listening_label":{"message":"הַקשָׁבָה","description":"label when mic is listening"},"popup_help_tab_str":{"message":"עֶזרָה","description":"help tab string"},"popup_help_heading_str":{"message":"אנחנו כאן כדי לעזור","description":"popup help tab heading"},"popup_help_desc_str":{"message":"אם נתקלת בבעיה כלשהי, אנא דווח עליה","description":"popup help tab description"},"here":{"message":"כאן","description":"word"},"popup_default_language_label_str":{"message":"שפת ברירת מחדל","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"לחץ כדי לשנות את שפת ברירת המחדל","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"לחץ כאן להפעלה או השבתה של זיהוי דיבור","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"פתח את ההגדרות","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"התחל 'זיהוי דיבור' כאשר Chrome מתחיל","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"שנה שפת זיהוי דיבור","description":"language change setting label"},"option_permission_success_msg":{"message":"עכשיו אתה יכול לסגור כרטיסייה זו ולהשתמש בכלי זה כדי להקליד בכל אתר עם הקול שלך!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"אנא אפשר הרשאות על מנת להשתמש בכלי זה!","description":"error message when user rejects permission"},"emoji":{"message":"אימוג'י","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"אימוג'י לא נמצא!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"השתמש בתכתיב אימוג'י (יותר מ- 1800 אימוג'ים)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"חפש אמוג'י שנשמע הכי קרוב","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"כיצד להשתמש בכלי זה?","description":"How to use this tool ? string"},"new_line_label":{"message":"שורה חדשה","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"לחץ כדי לראות פקודות קוליות","description":"voice commands control label "},"popup_show_commands_label":{"message":"הצג פקודות","description":"voice commands control label "},"commands_list_label":{"message":"רשימת פקודות לשפה","description":"Commands List for language label"},"command_name_label":{"message":"שם הפקודה","description":"Command's Name label"},"command_description_label":{"message":"תיאור הפיקוד","description":"Command's Description label"},"command_emoji_description":{"message":"אמור 'שם האימוג'י של האימוג'י' כדי להוסיף אימוג'ים דומים במקצת מרשימת 1800 האימוג'ים. קופה הרשימה המלאה של אמוג'ים בעמוד ההגדרה","description":"command emoji desc"},"command_newline_description":{"message":"אמור שורה חדשה להקליד '.'","description":"command newline desc"},"command_press_enter_description":{"message":"אמור לחץ על Enter כדי לחץ על מקש 'Enter'. שימושי להגשת טפסים","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"רשימת האימוג'י לשפה","description":"emoji list label"},"emoji_name_label":{"message":"שמו של אימוג'י","description":"emoji name label"},"command_newline_description_new":{"message":"אמור שורה חדשה כדי לקבל קו חדש.","description":"command newline desc"},"check_here_label":{"message":"תבדוק פה","description":"Check here label"},"imoji_list_label":{"message":"תבדוק פה","description":"Check here label"},"command_list_label":{"message":"רשימת פקודות","description":"Command List label"},"imoji_list_label_new":{"message":"רשימת אמוג'י","description":"imoji list label"},"symbol_list_label":{"message":"רשימת סמלים מתמטיים","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"מודעות","description":"Mindfulness command"},"command_mindfulness_description":{"message":"אמור 'מיינדפולנס' כדי להוסיף מחשבת קשב אקראית בתיבת הטקסט","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"אנא לחץ על הכפתור למטה כדי לאפשר הרשאות שמע בכדי להשתמש בכלי זה.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"הערה: אם ביטלתם הרשאות בטעות, תוכלו לאפשר להן ללחוץ בפינה השמאלית העליונה של סרגל החיפוש בכרטיסייה זו","description":"audio permission extra info"},"allow_permission_label":{"message":"אפשר אישור","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"אנא אפשר הרשאות על מנת להשתמש בכלי זה!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"עכשיו אתה יכול לסגור כרטיסייה זו ולהשתמש בכלי זה כדי להקליד בכל אתר עם הקול שלך!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* כעת לחץ על כל קלט ודיבר","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"צור קוד מורס","description":"cmc label"},"command_enable_disable_label":{"message":"הפעל / השבת","description":"enable or disable command label"},"command_arrow_label":{"message":"חֵץ","description":"command arrow label"},"command_arrow_description":{"message":"אמור 'חץ שמאלה' כדי להקליד את מקש החץ השמאלי. פקודות אפשריות: חץ שמאלה | נכון | למעלה | מטה","description":"command arrow desc"},"left_label":{"message":"שמאלה","description":"left label"},"right_label":{"message":"ימין","description":"right label"},"up_label":{"message":"לְמַעלָה","description":"up label"},"down_label":{"message":"מטה","description":"down label"},"command_go_to_label":{"message":"לך ל","description":"command go to label"},"command_go_to_description":{"message":"אמור 'עבור אל facebook.com כדי לפתוח כרטיסייה חדשה עבור facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"לְבַקֵר","description":"command go to label 2"},"command_go_to_label3":{"message":"לִפְתוֹחַ","description":"command go to label 3"},"command_search_label":{"message":"לחפש","description":"command search label"},"command_search_label2":{"message":"גוגל","description":"command go to label 2"},"command_search_description":{"message":"אמור חיפוש חתול או גוגל חתול לחיפוש חתול ב- google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"סימניה","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"סימניה לדף זה","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"הסר סימניה","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"הסר סימנייה זו","description":"command bookmark label 4"},"command_bookmark_description":{"message":"אמור 'סימן דף זה' או 'הסר סימניה' כדי להוסיף או להסיר סימניה","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"הוסף דף זה לסימניות!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"הסר דף זה מסימניות!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"לְשַׂחֵק","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"אמור 'הפעל שיר_שם', הוא ינגן את השיר מ- YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"למצוא","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"שִׂיא","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"לא מדגיש","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"אמור 'מילת מפתח הדגשה' כדי להדגיש את מילת המפתח בעמוד הנוכחי ולהיפך","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"לבטל","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"לַעֲשׂוֹת שׁוּב","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"לבטל הכל","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"אמור לבטל / לעשות שוב / לבטל הכל כדי לעשות לבטל / לעשות שוב / לבטל הכל.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"הַבָּא","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"קודם","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"נווט לרכיבי קלט באומרו הבא והקודם","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"לגלול מעלה","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"גלול מטה","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"אמור גלול למטה / גלול למעלה כדי לגלול את הדף.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"ערכת כלים לזיהוי דיבור","description":"app name"},"appDescription":{"message":"מלא כל טופס אינטרנט באמצעות הקול שלך בלבד!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"אפשר הרשאת שמע","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"לחץ כאן כדי לאפשר הרשאת שמע","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"הגדרות","description":"setting tab string"},"popup_mic_listening_label":{"message":"הַקשָׁבָה","description":"label when mic is listening"},"popup_help_tab_str":{"message":"עֶזרָה","description":"help tab string"},"popup_help_heading_str":{"message":"אנחנו כאן כדי לעזור","description":"popup help tab heading"},"popup_help_desc_str":{"message":"אם נתקלת בבעיה כלשהי, אנא דווח עליה","description":"popup help tab description"},"here":{"message":"כאן","description":"word"},"popup_default_language_label_str":{"message":"שפת ברירת מחדל","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"לחץ כדי לשנות את שפת ברירת המחדל","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"לחץ כאן להפעלה או השבתה של זיהוי דיבור","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"פתח את ההגדרות","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"התחל 'זיהוי דיבור' כאשר Chrome מתחיל","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"שנה שפת זיהוי דיבור","description":"language change setting label"},"option_permission_success_msg":{"message":"עכשיו אתה יכול לסגור כרטיסייה זו ולהשתמש בכלי זה כדי להקליד בכל אתר עם הקול שלך!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"אנא אפשר הרשאות על מנת להשתמש בכלי זה!","description":"error message when user rejects permission"},"emoji":{"message":"אימוג'י","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"אימוג'י לא נמצא!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"השתמש בתכתיב אימוג'י (יותר מ- 1800 אימוג'ים)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"חפש אמוג'י שנשמע הכי קרוב","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"כיצד להשתמש בכלי זה?","description":"How to use this tool ? string"},"new_line_label":{"message":"שורה חדשה","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"לחץ כדי לראות פקודות קוליות","description":"voice commands control label "},"popup_show_commands_label":{"message":"הצג פקודות","description":"voice commands control label "},"commands_list_label":{"message":"רשימת פקודות לשפה","description":"Commands List for language label"},"command_name_label":{"message":"שם הפקודה","description":"Command's Name label"},"command_description_label":{"message":"תיאור הפיקוד","description":"Command's Description label"},"command_emoji_description":{"message":"אמור 'שם האימוג'י של האימוג'י' כדי להוסיף אימוג'ים דומים במקצת מרשימת 1800 האימוג'ים. קופה הרשימה המלאה של אמוג'ים בעמוד ההגדרה","description":"command emoji desc"},"command_newline_description":{"message":"אמור שורה חדשה להקליד '.'","description":"command newline desc"},"command_press_enter_description":{"message":"אמור לחץ על Enter כדי לחץ על מקש 'Enter'. שימושי להגשת טפסים","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"רשימת האימוג'י לשפה","description":"emoji list label"},"emoji_name_label":{"message":"שמו של אימוג'י","description":"emoji name label"},"command_newline_description_new":{"message":"אמור שורה חדשה כדי לקבל קו חדש.","description":"command newline desc"},"check_here_label":{"message":"תבדוק פה","description":"Check here label"},"imoji_list_label":{"message":"תבדוק פה","description":"Check here label"},"command_list_label":{"message":"רשימת פקודות","description":"Command List label"},"imoji_list_label_new":{"message":"רשימת אמוג'י","description":"imoji list label"},"symbol_list_label":{"message":"רשימת סמלים מתמטיים","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"מודעות","description":"Mindfulness command"},"command_mindfulness_description":{"message":"אמור 'מיינדפולנס' כדי להוסיף מחשבת קשב אקראית בתיבת הטקסט","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"אנא לחץ על הכפתור למטה כדי לאפשר הרשאות שמע בכדי להשתמש בכלי זה.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"הערה: אם ביטלתם הרשאות בטעות, תוכלו לאפשר להן ללחוץ בפינה השמאלית העליונה של סרגל החיפוש בכרטיסייה זו","description":"audio permission extra info"},"allow_permission_label":{"message":"אפשר אישור","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"אנא אפשר הרשאות על מנת להשתמש בכלי זה!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"עכשיו אתה יכול לסגור כרטיסייה זו ולהשתמש בכלי זה כדי להקליד בכל אתר עם הקול שלך!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* כעת לחץ על כל קלט ודיבר","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"צור קוד מורס","description":"cmc label"},"command_enable_disable_label":{"message":"הפעל / השבת","description":"enable or disable command label"},"command_arrow_label":{"message":"חֵץ","description":"command arrow label"},"command_arrow_description":{"message":"אמור 'חץ שמאלה' כדי להקליד את מקש החץ השמאלי. פקודות אפשריות: חץ שמאלה | נכון | למעלה | מטה","description":"command arrow desc"},"left_label":{"message":"שמאלה","description":"left label"},"right_label":{"message":"ימין","description":"right label"},"up_label":{"message":"לְמַעלָה","description":"up label"},"down_label":{"message":"מטה","description":"down label"},"command_search_label":{"message":"לחפש","description":"command search label"},"command_search_label2":{"message":"גוגל","description":"command go to label 2"},"command_search_description":{"message":"אמור חיפוש חתול או גוגל חתול לחיפוש חתול ב- google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"סימניה","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"סימניה לדף זה","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"הסר סימניה","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"הסר סימנייה זו","description":"command bookmark label 4"},"command_bookmark_description":{"message":"אמור 'סימן דף זה' או 'הסר סימניה' כדי להוסיף או להסיר סימניה","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"הוסף דף זה לסימניות!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"הסר דף זה מסימניות!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"לְשַׂחֵק","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"אמור 'הפעל שיר_שם', הוא ינגן את השיר מ- YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"למצוא","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"שִׂיא","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"לא מדגיש","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"אמור 'מילת מפתח הדגשה' כדי להדגיש את מילת המפתח בעמוד הנוכחי ולהיפך","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"לבטל","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"לַעֲשׂוֹת שׁוּב","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"לבטל הכל","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"אמור לבטל / לעשות שוב / לבטל הכל כדי לעשות לבטל / לעשות שוב / לבטל הכל.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"הַבָּא","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"קודם","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"נווט לרכיבי קלט באומרו הבא והקודם","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"לגלול מעלה","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"גלול מטה","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"אמור גלול למטה / גלול למעלה כדי לגלול את הדף.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"לך ל","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"לְבַקֵר","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"לִפְתוֹחַ","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"אמור 'עבור אל facebook.com' כדי לפתוח את facebook.com בכרטיסייה החדשה. אמור 'עבור לסימנייה סימניה_שם' כדי לפתוח את כתובת האתר של הסימניות.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"סימניה","description":"bookmark"}} diff --git a/src/app/_locales/hi/messages.json b/src/app/_locales/hi/messages.json index 0c81248..7365f6e 100644 --- a/src/app/_locales/hi/messages.json +++ b/src/app/_locales/hi/messages.json @@ -1 +1 @@ -{"appName":{"message":"भाषण मान्यता टूलकिट","description":"app name"},"appDescription":{"message":"केवल अपनी आवाज का उपयोग करके किसी भी वेब फॉर्म को भरें!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ऑडियो अनुमति दें","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ऑडियो अनुमति देने के लिए यहां क्लिक करें","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"समायोजन","description":"setting tab string"},"popup_mic_listening_label":{"message":"सुनना","description":"label when mic is listening"},"popup_help_tab_str":{"message":"मदद","description":"help tab string"},"popup_help_heading_str":{"message":"हम यहाँ मदद करने के लिए हैं","description":"popup help tab heading"},"popup_help_desc_str":{"message":"यदि आपने कोई समस्या अनुभव की है, तो कृपया इसकी रिपोर्ट करें","description":"popup help tab description"},"here":{"message":"यहाँ","description":"word"},"popup_default_language_label_str":{"message":"डिफ़ॉल्ट भाषा","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"डिफ़ॉल्ट भाषा बदलने के लिए क्लिक करें","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"भाषण मान्यता को चालू / बंद करने के लिए यहां क्लिक करें","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"सेटिंग्स खोलें","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome प्रारंभ होने पर 'वाक् पहचान' प्रारंभ करें","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"वाक् पहचान भाषा बदलें","description":"language change setting label"},"option_permission_success_msg":{"message":"अब आप इस टैब को बंद कर सकते हैं और अपनी आवाज के साथ किसी भी वेबसाइट पर टाइप करने के लिए इस टूल का उपयोग कर सकते हैं!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"कृपया अनुमति दें अनुमतियाँ इस उपकरण का उपयोग करने के लिए!","description":"error message when user rejects permission"},"emoji":{"message":"इमोजी","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"इमोजी नहीं मिला!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"इमोजी डिक्टेशन (1800 से अधिक इमोजी) का उपयोग करें","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"निकटतम ध्वनि वाले इमोजी की खोज करें","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"इस उपकरण का उपयोग कैसे करें?","description":"How to use this tool ? string"},"new_line_label":{"message":"नई पंक्ति","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"वॉइस कमांड देखने के लिए क्लिक करें","description":"voice commands control label "},"popup_show_commands_label":{"message":"कमांड दिखाएँ","description":"voice commands control label "},"commands_list_label":{"message":"भाषा के लिए कमांड सूची","description":"Commands List for language label"},"command_name_label":{"message":"कमांड का नाम","description":"Command's Name label"},"command_description_label":{"message":"कमांड का विवरण","description":"Command's Description label"},"command_emoji_description":{"message":"1800 इमोजी की सूची से कुछ समान इमोजी सम्मिलित करने के लिए 'इमोजी इमोजी का नाम' कहें। पेज सेट करने में इमोजीस की पूरी सूची चेकआउट करें","description":"command emoji desc"},"command_newline_description":{"message":"टाइप करने के लिए नई लाइन कहें '।'","description":"command newline desc"},"command_press_enter_description":{"message":"प्रेस को प्रेस 'एंटर' कुंजी दर्ज करें। फॉर्म जमा करने के लिए उपयोगी","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"भाषा के लिए इमोजी की सूची","description":"emoji list label"},"emoji_name_label":{"message":"इमोजी का नाम","description":"emoji name label"},"command_newline_description_new":{"message":"नई लाइन कहें नई लाइन पाने के लिए।","description":"command newline desc"},"check_here_label":{"message":"यहा जांचिये","description":"Check here label"},"imoji_list_label":{"message":"यहा जांचिये","description":"Check here label"},"command_list_label":{"message":"कमांड लिस्ट","description":"Command List label"},"imoji_list_label_new":{"message":"इमोजी सूची","description":"imoji list label"},"symbol_list_label":{"message":"गणितीय प्रतीक सूची","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"सचेतन","description":"Mindfulness command"},"command_mindfulness_description":{"message":"टेक्स्ट बॉक्स में सोचे गए एक यादृच्छिक माइंडफुलनेस डालने के लिए 'माइंडफुलनेस' कहें","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"कृपया इस उपकरण का उपयोग करने के लिए ऑडियो अनुमति देने के लिए नीचे दिए गए बटन पर क्लिक करें।","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"नोट: यदि आपके पास गलती से अनुमति नहीं है, तो आप उन्हें इस टैब के खोज बार के ऊपरी बाएँ कोने पर क्लिक करने की अनुमति दे सकते हैं","description":"audio permission extra info"},"allow_permission_label":{"message":"अनुमति दें","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"कृपया अनुमति दें अनुमतियाँ इस उपकरण का उपयोग करने के लिए!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"अब आप इस टैब को बंद कर सकते हैं और अपनी आवाज के साथ किसी भी वेबसाइट पर टाइप करने के लिए इस टूल का उपयोग कर सकते हैं!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* अब किसी भी इनपुट पर क्लिक करें और बोलें","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"मोर्स कोड बनाएं","description":"cmc label"},"command_enable_disable_label":{"message":"अक्षम सक्षम","description":"enable or disable command label"},"command_arrow_label":{"message":"तीर","description":"command arrow label"},"command_arrow_description":{"message":"बायाँ तीर कुंजी टाइप करने के लिए 'एरो लेफ्ट' कहें। संभव कमांड: तीर छोड़ा | सही | शीर्ष | नीचे","description":"command arrow desc"},"left_label":{"message":"बाएं","description":"left label"},"right_label":{"message":"सही","description":"right label"},"up_label":{"message":"यूपी","description":"up label"},"down_label":{"message":"नीचे","description":"down label"},"command_go_to_label":{"message":"के लिए जाओ","description":"command go to label"},"command_go_to_description":{"message":"कहो 'facebook.com पर जाएँ facebook.com के लिए नया टैब खोलने के लिए","description":"command go to description"},"command_go_to_label2":{"message":"यात्रा","description":"command go to label 2"},"command_go_to_label3":{"message":"खुला हुआ","description":"command go to label 3"},"command_search_label":{"message":"खोज कर","description":"command search label"},"command_search_label2":{"message":"गूगल","description":"command go to label 2"},"command_search_description":{"message":"Google पर cat सर्च करने के लिए सर्च कैट या google कैट कहिए","description":"command go to label 3"},"command_bookmark_label":{"message":"बुकमार्क","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"इस पृष्ठ को बुकमार्क करें","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"बुकमार्क हटाएं","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"इस बुकमार्क को हटा दें","description":"command bookmark label 4"},"command_bookmark_description":{"message":"बुकमार्क जोड़ने या हटाने के लिए 'इस पृष्ठ को बुकमार्क करें' या 'बुकमार्क हटाएं' कहें","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"इस पृष्ठ को बुकमार्क में जोड़ा गया!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"इस पृष्ठ को बुकमार्क से हटा दिया गया है!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"खेल","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Song play song_name ’कहें, यह यूट्यूब से गाना बजाएगा।","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"खोज","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"मुख्य आकर्षण","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"अनहोनी","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"वर्तमान पृष्ठ पर कीवर्ड को उजागर करने के लिए 'हाइलाइट कीवर्ड' कहें और इसके विपरीत","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"पूर्ववत","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"फिर से करें","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"सभी को पूर्ववत करें","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"पूर्ववत करें / फिर से करें / पूर्ववत करें सभी को पूर्ववत करें / फिर से करें / पूर्ववत करें।","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"अगला","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"पहले का","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"अगले और पिछले कहकर इनपुट तत्वों पर नेविगेट करें","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ऊपर स्क्रॉल करें","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"नीचे स्क्रॉल करें","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"पृष्ठ को स्क्रॉल करने के लिए नीचे स्क्रॉल करें / स्क्रॉल करें।","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"भाषण मान्यता टूलकिट","description":"app name"},"appDescription":{"message":"केवल अपनी आवाज का उपयोग करके किसी भी वेब फॉर्म को भरें!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ऑडियो अनुमति दें","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ऑडियो अनुमति देने के लिए यहां क्लिक करें","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"समायोजन","description":"setting tab string"},"popup_mic_listening_label":{"message":"सुनना","description":"label when mic is listening"},"popup_help_tab_str":{"message":"मदद","description":"help tab string"},"popup_help_heading_str":{"message":"हम यहाँ मदद करने के लिए हैं","description":"popup help tab heading"},"popup_help_desc_str":{"message":"यदि आपने कोई समस्या अनुभव की है, तो कृपया इसकी रिपोर्ट करें","description":"popup help tab description"},"here":{"message":"यहाँ","description":"word"},"popup_default_language_label_str":{"message":"डिफ़ॉल्ट भाषा","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"डिफ़ॉल्ट भाषा बदलने के लिए क्लिक करें","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"भाषण मान्यता को चालू / बंद करने के लिए यहां क्लिक करें","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"सेटिंग्स खोलें","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome प्रारंभ होने पर 'वाक् पहचान' प्रारंभ करें","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"वाक् पहचान भाषा बदलें","description":"language change setting label"},"option_permission_success_msg":{"message":"अब आप इस टैब को बंद कर सकते हैं और अपनी आवाज के साथ किसी भी वेबसाइट पर टाइप करने के लिए इस टूल का उपयोग कर सकते हैं!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"कृपया अनुमति दें अनुमतियाँ इस उपकरण का उपयोग करने के लिए!","description":"error message when user rejects permission"},"emoji":{"message":"इमोजी","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"इमोजी नहीं मिला!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"इमोजी डिक्टेशन (1800 से अधिक इमोजी) का उपयोग करें","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"निकटतम ध्वनि वाले इमोजी की खोज करें","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"इस उपकरण का उपयोग कैसे करें?","description":"How to use this tool ? string"},"new_line_label":{"message":"नई पंक्ति","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"वॉइस कमांड देखने के लिए क्लिक करें","description":"voice commands control label "},"popup_show_commands_label":{"message":"कमांड दिखाएँ","description":"voice commands control label "},"commands_list_label":{"message":"भाषा के लिए कमांड सूची","description":"Commands List for language label"},"command_name_label":{"message":"कमांड का नाम","description":"Command's Name label"},"command_description_label":{"message":"कमांड का विवरण","description":"Command's Description label"},"command_emoji_description":{"message":"1800 इमोजी की सूची से कुछ समान इमोजी सम्मिलित करने के लिए 'इमोजी इमोजी का नाम' कहें। पेज सेट करने में इमोजीस की पूरी सूची चेकआउट करें","description":"command emoji desc"},"command_newline_description":{"message":"टाइप करने के लिए नई लाइन कहें '।'","description":"command newline desc"},"command_press_enter_description":{"message":"प्रेस को प्रेस 'एंटर' कुंजी दर्ज करें। फॉर्म जमा करने के लिए उपयोगी","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"भाषा के लिए इमोजी की सूची","description":"emoji list label"},"emoji_name_label":{"message":"इमोजी का नाम","description":"emoji name label"},"command_newline_description_new":{"message":"नई लाइन कहें नई लाइन पाने के लिए।","description":"command newline desc"},"check_here_label":{"message":"यहा जांचिये","description":"Check here label"},"imoji_list_label":{"message":"यहा जांचिये","description":"Check here label"},"command_list_label":{"message":"कमांड लिस्ट","description":"Command List label"},"imoji_list_label_new":{"message":"इमोजी सूची","description":"imoji list label"},"symbol_list_label":{"message":"गणितीय प्रतीक सूची","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"सचेतन","description":"Mindfulness command"},"command_mindfulness_description":{"message":"टेक्स्ट बॉक्स में सोचे गए एक यादृच्छिक माइंडफुलनेस डालने के लिए 'माइंडफुलनेस' कहें","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"कृपया इस उपकरण का उपयोग करने के लिए ऑडियो अनुमति देने के लिए नीचे दिए गए बटन पर क्लिक करें।","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"नोट: यदि आपके पास गलती से अनुमति नहीं है, तो आप उन्हें इस टैब के खोज बार के ऊपरी बाएँ कोने पर क्लिक करने की अनुमति दे सकते हैं","description":"audio permission extra info"},"allow_permission_label":{"message":"अनुमति दें","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"कृपया अनुमति दें अनुमतियाँ इस उपकरण का उपयोग करने के लिए!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"अब आप इस टैब को बंद कर सकते हैं और अपनी आवाज के साथ किसी भी वेबसाइट पर टाइप करने के लिए इस टूल का उपयोग कर सकते हैं!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* अब किसी भी इनपुट पर क्लिक करें और बोलें","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"मोर्स कोड बनाएं","description":"cmc label"},"command_enable_disable_label":{"message":"अक्षम सक्षम","description":"enable or disable command label"},"command_arrow_label":{"message":"तीर","description":"command arrow label"},"command_arrow_description":{"message":"बायाँ तीर कुंजी टाइप करने के लिए 'एरो लेफ्ट' कहें। संभव कमांड: तीर छोड़ा | सही | शीर्ष | नीचे","description":"command arrow desc"},"left_label":{"message":"बाएं","description":"left label"},"right_label":{"message":"सही","description":"right label"},"up_label":{"message":"यूपी","description":"up label"},"down_label":{"message":"नीचे","description":"down label"},"command_search_label":{"message":"खोज कर","description":"command search label"},"command_search_label2":{"message":"गूगल","description":"command go to label 2"},"command_search_description":{"message":"Google पर cat सर्च करने के लिए सर्च कैट या google कैट कहिए","description":"command go to label 3"},"command_bookmark_label":{"message":"बुकमार्क","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"इस पृष्ठ को बुकमार्क करें","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"बुकमार्क हटाएं","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"इस बुकमार्क को हटा दें","description":"command bookmark label 4"},"command_bookmark_description":{"message":"बुकमार्क जोड़ने या हटाने के लिए 'इस पृष्ठ को बुकमार्क करें' या 'बुकमार्क हटाएं' कहें","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"इस पृष्ठ को बुकमार्क में जोड़ा गया!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"इस पृष्ठ को बुकमार्क से हटा दिया गया है!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"खेल","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Song play song_name ’कहें, यह यूट्यूब से गाना बजाएगा।","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"खोज","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"मुख्य आकर्षण","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"अनहोनी","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"वर्तमान पृष्ठ पर कीवर्ड को उजागर करने के लिए 'हाइलाइट कीवर्ड' कहें और इसके विपरीत","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"पूर्ववत","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"फिर से करें","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"सभी को पूर्ववत करें","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"पूर्ववत करें / फिर से करें / पूर्ववत करें सभी को पूर्ववत करें / फिर से करें / पूर्ववत करें।","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"अगला","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"पहले का","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"अगले और पिछले कहकर इनपुट तत्वों पर नेविगेट करें","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ऊपर स्क्रॉल करें","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"नीचे स्क्रॉल करें","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"पृष्ठ को स्क्रॉल करने के लिए नीचे स्क्रॉल करें / स्क्रॉल करें।","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"के लिए जाओ","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"यात्रा","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"खुला हुआ","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"नए टैब में facebook.com खोलने के लिए 'facebook.com पर जाएँ' कहें। बुकमार्क यूआरएल खोलने के लिए 'बुकमार्क बुकमार्क करने के लिए' पर जाएं।","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"बुकमार्क","description":"bookmark"}} diff --git a/src/app/_locales/hr/messages.json b/src/app/_locales/hr/messages.json index 940c8cc..810ead6 100644 --- a/src/app/_locales/hr/messages.json +++ b/src/app/_locales/hr/messages.json @@ -1 +1 @@ -{"appName":{"message":"Priručnik za prepoznavanje govora","description":"app name"},"appDescription":{"message":"Ispunite bilo koji web obrazac samo svojim glasom!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Dopusti audio dopuštenje","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknite ovdje za Dopusti audio dozvolu","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Postavke","description":"setting tab string"},"popup_mic_listening_label":{"message":"Slušanje","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomozite","description":"help tab string"},"popup_help_heading_str":{"message":"Ovdje smo da pomognemo","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ako ste naišli na bilo koji problem, prijavite ga","description":"popup help tab description"},"here":{"message":"ovdje","description":"word"},"popup_default_language_label_str":{"message":"Zadani jezik","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknite za promjenu zadanog jezika","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknite ovdje za uključivanje / isključivanje prepoznavanja govora","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otvorite Postavke","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Pokrenite 'Prepoznavanje govora' kad se Chrome pokrene","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Promijenite jezik za prepoznavanje govora","description":"language change setting label"},"option_permission_success_msg":{"message":"Sada možete zatvoriti ovu karticu i pomoću ovog alata tipkati glasom na bilo kojoj web lokaciji!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Dopustite dozvole da biste koristili ovaj alat!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emojiji nisu pronađeni!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Koristite diktat emojija (više od 1800 emojija)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Potražite emoji sličice s najbližim zvukom","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kako koristiti ovaj alat?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova linija","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknite za prikaz glasovnih naredbi","description":"voice commands control label "},"popup_show_commands_label":{"message":"Prikaži naredbe","description":"voice commands control label "},"commands_list_label":{"message":"Popis naredbi za jezik","description":"Commands List for language label"},"command_name_label":{"message":"Ime naredbe","description":"Command's Name label"},"command_description_label":{"message":"Opis naredbe","description":"Command's Description label"},"command_emoji_description":{"message":"Recite \"ime emoji emojija\" da biste umetnuli nešto slične emojije s popisa od 1800 emojija. checkout cjelovit popis emojija na stranici s postavkama","description":"command emoji desc"},"command_newline_description":{"message":"Recite novi redak da biste upisali '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Recimo pritisnite enter da biste pritisnuli tipku 'Enter'. Korisno za slanje obrazaca","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Popis emoji-jezika za jezik","description":"emoji list label"},"emoji_name_label":{"message":"Ime emojija","description":"emoji name label"},"command_newline_description_new":{"message":"Recite novi redak da biste dobili novi redak.","description":"command newline desc"},"check_here_label":{"message":"Provjerite ovdje","description":"Check here label"},"imoji_list_label":{"message":"Provjerite ovdje","description":"Check here label"},"command_list_label":{"message":"Popis naredbi","description":"Command List label"},"imoji_list_label_new":{"message":"Popis emojija","description":"imoji list label"},"symbol_list_label":{"message":"Popis matematičkih simbola","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Pažljivost","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Recite \"pažljivost\" da biste u tekstualni okvir umetnuli slučajnu misao pažljivosti","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknite na donji gumb da biste dopustili zvučna dopuštenja kako biste koristili ovaj alat.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Napomena: Ako ste slučajno zabranili dozvole, možete im dopustiti da kliknu gornji lijevi kut trake za pretraživanje ove kartice","description":"audio permission extra info"},"allow_permission_label":{"message":"Dopustite dopuštenje","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Dopustite dozvole da biste koristili ovaj alat!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sada možete zatvoriti ovu karticu i pomoću ovog alata tipkati glasom na bilo kojoj web lokaciji!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sada kliknite bilo koji unos i izgovorite","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Stvorite Morseovu azbuku","description":"cmc label"},"command_enable_disable_label":{"message":"Omogući onemogući","description":"enable or disable command label"},"command_arrow_label":{"message":"strijela","description":"command arrow label"},"command_arrow_description":{"message":"Recite \"strelica ulijevo\" da biste upisali tipku sa strelicom ulijevo. moguće naredbe: strelica lijevo | desno | vrh | dolje","description":"command arrow desc"},"left_label":{"message":"lijevo","description":"left label"},"right_label":{"message":"pravo","description":"right label"},"up_label":{"message":"gore","description":"up label"},"down_label":{"message":"dolje","description":"down label"},"command_go_to_label":{"message":"ići","description":"command go to label"},"command_go_to_description":{"message":"Recite 'idite na facebook.com da biste otvorili novu karticu za facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"posjetiti","description":"command go to label 2"},"command_go_to_label3":{"message":"otvoren","description":"command go to label 3"},"command_search_label":{"message":"traži","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Recite traži mačka ili google mačka za pretraživanje mačke na google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"oznaka","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"označi ovu stranicu oznakom","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ukloni oznaku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ukloni ovu oznaku","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Recite \"Označi ovu stranicu\" ili \"ukloni oznaku\" da biste dodali ili uklonili oznaku","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Dodao je ovu stranicu u oznake!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Uklonjena je ova stranica iz oznaka!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"igra","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Recite 'play song_name', reproducirat će se pjesma s youtubea.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"pronaći","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"istaknuti","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nesvijetli","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Recite \"istakni ključnu riječ\" da biste istaknuli ključnu riječ na trenutnoj stranici i obrnuto","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"poništi","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ponoviti","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"poništi sve","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Recite poništi / ponovi / poništi sve da biste poništili / ponovili / poništili sve.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Sljedeći","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"prethodni","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Dođite do ulaznih elemenata izgovaranjem sljedećeg i prethodnog","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"pomicanje gore","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"pomaknite se prema dolje","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Recite pomicanje prema dolje / pomicanje prema gore za pomicanje stranice.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Priručnik za prepoznavanje govora","description":"app name"},"appDescription":{"message":"Ispunite bilo koji web obrazac samo svojim glasom!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Dopusti audio dopuštenje","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknite ovdje za Dopusti audio dozvolu","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Postavke","description":"setting tab string"},"popup_mic_listening_label":{"message":"Slušanje","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomozite","description":"help tab string"},"popup_help_heading_str":{"message":"Ovdje smo da pomognemo","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ako ste naišli na bilo koji problem, prijavite ga","description":"popup help tab description"},"here":{"message":"ovdje","description":"word"},"popup_default_language_label_str":{"message":"Zadani jezik","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknite za promjenu zadanog jezika","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknite ovdje za uključivanje / isključivanje prepoznavanja govora","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otvorite Postavke","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Pokrenite 'Prepoznavanje govora' kad se Chrome pokrene","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Promijenite jezik za prepoznavanje govora","description":"language change setting label"},"option_permission_success_msg":{"message":"Sada možete zatvoriti ovu karticu i pomoću ovog alata tipkati glasom na bilo kojoj web lokaciji!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Dopustite dozvole da biste koristili ovaj alat!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emojiji nisu pronađeni!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Koristite diktat emojija (više od 1800 emojija)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Potražite emoji sličice s najbližim zvukom","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kako koristiti ovaj alat?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova linija","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknite za prikaz glasovnih naredbi","description":"voice commands control label "},"popup_show_commands_label":{"message":"Prikaži naredbe","description":"voice commands control label "},"commands_list_label":{"message":"Popis naredbi za jezik","description":"Commands List for language label"},"command_name_label":{"message":"Ime naredbe","description":"Command's Name label"},"command_description_label":{"message":"Opis naredbe","description":"Command's Description label"},"command_emoji_description":{"message":"Recite \"ime emoji emojija\" da biste umetnuli nešto slične emojije s popisa od 1800 emojija. checkout cjelovit popis emojija na stranici s postavkama","description":"command emoji desc"},"command_newline_description":{"message":"Recite novi redak da biste upisali '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Recimo pritisnite enter da biste pritisnuli tipku 'Enter'. Korisno za slanje obrazaca","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Popis emoji-jezika za jezik","description":"emoji list label"},"emoji_name_label":{"message":"Ime emojija","description":"emoji name label"},"command_newline_description_new":{"message":"Recite novi redak da biste dobili novi redak.","description":"command newline desc"},"check_here_label":{"message":"Provjerite ovdje","description":"Check here label"},"imoji_list_label":{"message":"Provjerite ovdje","description":"Check here label"},"command_list_label":{"message":"Popis naredbi","description":"Command List label"},"imoji_list_label_new":{"message":"Popis emojija","description":"imoji list label"},"symbol_list_label":{"message":"Popis matematičkih simbola","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Pažljivost","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Recite \"pažljivost\" da biste u tekstualni okvir umetnuli slučajnu misao pažljivosti","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknite na donji gumb da biste dopustili zvučna dopuštenja kako biste koristili ovaj alat.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Napomena: Ako ste slučajno zabranili dozvole, možete im dopustiti da kliknu gornji lijevi kut trake za pretraživanje ove kartice","description":"audio permission extra info"},"allow_permission_label":{"message":"Dopustite dopuštenje","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Dopustite dozvole da biste koristili ovaj alat!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sada možete zatvoriti ovu karticu i pomoću ovog alata tipkati glasom na bilo kojoj web lokaciji!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sada kliknite bilo koji unos i izgovorite","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Stvorite Morseovu azbuku","description":"cmc label"},"command_enable_disable_label":{"message":"Omogući onemogući","description":"enable or disable command label"},"command_arrow_label":{"message":"strijela","description":"command arrow label"},"command_arrow_description":{"message":"Recite \"strelica ulijevo\" da biste upisali tipku sa strelicom ulijevo. moguće naredbe: strelica lijevo | desno | vrh | dolje","description":"command arrow desc"},"left_label":{"message":"lijevo","description":"left label"},"right_label":{"message":"pravo","description":"right label"},"up_label":{"message":"gore","description":"up label"},"down_label":{"message":"dolje","description":"down label"},"command_search_label":{"message":"traži","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Recite traži mačka ili google mačka za pretraživanje mačke na google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"oznaka","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"označi ovu stranicu oznakom","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ukloni oznaku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ukloni ovu oznaku","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Recite \"Označi ovu stranicu\" ili \"ukloni oznaku\" da biste dodali ili uklonili oznaku","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Dodao je ovu stranicu u oznake!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Uklonjena je ova stranica iz oznaka!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"igra","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Recite 'play song_name', reproducirat će se pjesma s youtubea.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"pronaći","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"istaknuti","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nesvijetli","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Recite \"istakni ključnu riječ\" da biste istaknuli ključnu riječ na trenutnoj stranici i obrnuto","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"poništi","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ponoviti","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"poništi sve","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Recite poništi / ponovi / poništi sve da biste poništili / ponovili / poništili sve.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Sljedeći","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"prethodni","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Dođite do ulaznih elemenata izgovaranjem sljedećeg i prethodnog","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"pomicanje gore","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"pomaknite se prema dolje","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Recite pomicanje prema dolje / pomicanje prema gore za pomicanje stranice.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"ići","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"posjetiti","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"otvorena","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Recite 'idi na facebook.com' da biste otvorili facebook.com u novoj kartici. Recite 'idi na oznaku bookmark_name' da biste otvorili URL oznake.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"oznaka","description":"bookmark"}} diff --git a/src/app/_locales/hu/messages.json b/src/app/_locales/hu/messages.json index ad5c020..338b240 100644 --- a/src/app/_locales/hu/messages.json +++ b/src/app/_locales/hu/messages.json @@ -1 +1 @@ -{"appName":{"message":"Beszédfelismerő eszközkészlet","description":"app name"},"appDescription":{"message":"Bármilyen webes űrlapot csak a hangjával töltsön ki!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Hangengedély engedélyezése","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Kattintson ide az audioengedély engedélyezéséhez","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Beállítások","description":"setting tab string"},"popup_mic_listening_label":{"message":"Hallgatás","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Segítség","description":"help tab string"},"popup_help_heading_str":{"message":"Azért vagyunk itt, hogy segítsünk","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ha bármilyen problémát tapasztal, kérjük, jelezze","description":"popup help tab description"},"here":{"message":"itt","description":"word"},"popup_default_language_label_str":{"message":"Alapértelmezett nyelv","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kattintson az alapértelmezett nyelv módosításához","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kattintson ide a beszédfelismerés be- és kikapcsolásához","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Nyisd meg a beállításokat","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Indítsa el a „Beszédfelismerést”, amikor a Chrome elindul","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Beszédfelismerés nyelvének módosítása","description":"language change setting label"},"option_permission_success_msg":{"message":"Most bezárhatja ezt a lapot, és ezzel az eszközzel bármilyen weboldalra gépelhet a hangjával!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Kérjük, engedélyezze az engedélyeket az eszköz használatához!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji nem található!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Emoji diktálás használata (több mint 1800 hangulatjel)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Keresse meg a legközelebbi hangzást","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hogyan kell használni ezt az eszközt?","description":"How to use this tool ? string"},"new_line_label":{"message":"új sor","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kattintson a hangparancsok megtekintéséhez","description":"voice commands control label "},"popup_show_commands_label":{"message":"Parancsok megjelenítése","description":"voice commands control label "},"commands_list_label":{"message":"Parancslista a nyelvhez","description":"Commands List for language label"},"command_name_label":{"message":"Parancs neve","description":"Command's Name label"},"command_description_label":{"message":"Parancs leírása","description":"Command's Description label"},"command_emoji_description":{"message":"Mondja ki az „emoji emoji's name” szót, hogy kissé hasonló hangulatjeleket illesszen be az 1800 hangulatjelek listájából. checkout a hangulatjelek teljes listája a beállító oldalon","description":"command emoji desc"},"command_newline_description":{"message":"Mondjon új sort a 'gépeléshez'.","description":"command newline desc"},"command_press_enter_description":{"message":"Mondja, hogy nyomja meg az Enter billentyűt az Enter gomb megnyomásához. Hasznos az űrlapok beküldéséhez","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji listája a nyelvhez","description":"emoji list label"},"emoji_name_label":{"message":"Emoji neve","description":"emoji name label"},"command_newline_description_new":{"message":"Mondjon új sort, hogy új sort kapjon.","description":"command newline desc"},"check_here_label":{"message":"Ellenőrizze itt","description":"Check here label"},"imoji_list_label":{"message":"Ellenőrizze itt","description":"Check here label"},"command_list_label":{"message":"Parancslista","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji List","description":"imoji list label"},"symbol_list_label":{"message":"Matematikai szimbólumok listája","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Mondjon „figyelem” kifejezést, ha véletlenszerű figyelmességet szeretne beilleszteni a szövegmezőbe","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kérjük, kattintson az alábbi gombra, hogy engedélyezze a hangengedélyeket az eszköz használatához.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Megjegyzés: Ha véletlenül nem engedélyezte az engedélyeket, engedélyezheti nekik, hogy rákattintsanak a fül bal felső sarkára a lapon","description":"audio permission extra info"},"allow_permission_label":{"message":"Engedély engedélyezése","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Kérjük, engedélyezze az engedélyeket az eszköz használatához!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Most bezárhatja ezt a lapot, és ezzel az eszközzel bármilyen weboldalra gépelhet a hangjával!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Most kattintson bármelyik bemenetre, és beszéljen","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Hozzon létre Morse Code-ot","description":"cmc label"},"command_enable_disable_label":{"message":"Bekapcsolni kikapcsolni","description":"enable or disable command label"},"command_arrow_label":{"message":"nyíl","description":"command arrow label"},"command_arrow_description":{"message":"Mondja a „balra nyíl” szót a bal nyíl billentyű beírásához. lehetséges parancsok: nyíl balra | jobbra top | le-","description":"command arrow desc"},"left_label":{"message":"bal","description":"left label"},"right_label":{"message":"jobb","description":"right label"},"up_label":{"message":"fel","description":"up label"},"down_label":{"message":"le-","description":"down label"},"command_go_to_label":{"message":"menj","description":"command go to label"},"command_go_to_description":{"message":"Mondja, hogy a facebook.com új lapjának megnyitásához menjen a facebook.com oldalra","description":"command go to description"},"command_go_to_label2":{"message":"látogatás","description":"command go to label 2"},"command_go_to_label3":{"message":"nyisd ki","description":"command go to label 3"},"command_search_label":{"message":"keresés","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Mondja ki, hogy keres macskát vagy google macskát, ha macskára szeretne keresni a google.com oldalon","description":"command go to label 3"},"command_bookmark_label":{"message":"könyvjelző","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"könyvjelzővel ezt az oldalt","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"könyvjelző eltávolítása","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"távolítsa el ezt a könyvjelzőt","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Mondja el a „Könyvjelző hozzáadása az oldalhoz” vagy a „Könyvjelző eltávolítása” elemet a könyvjelző hozzáadásához vagy eltávolításához","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Hozzáadta ezt az oldalt a könyvjelzőkhöz!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Eltávolította ezt az oldalt a könyvjelzők közül!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"játék","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Mondja, hogy „play song_name” (lejátszani a dal nevét), ez a dalt a youtube-ról játssza le.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"megtalálja","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Kiemel","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"kiemelés nélkül","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Mondja a „kiemel kulcsszót”, hogy kiemelje a kulcsszót az aktuális oldalon, és fordítva","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"visszavonás","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"újra","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"mindet visszavonni","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Mondja az Undo / Redo / Undo all elemet az összes visszavonásához.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"következő","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"előző","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Keresse meg a beviteli elemeket a következő és az előző kimondásával","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"görgess fel","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"görgessen lefelé","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Mondja, hogy görgessen lefelé / görgessen felfelé az oldal görgetéséhez.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Beszédfelismerő eszközkészlet","description":"app name"},"appDescription":{"message":"Bármilyen webes űrlapot csak a hangjával töltsön ki!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Hangengedély engedélyezése","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Kattintson ide az audioengedély engedélyezéséhez","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Beállítások","description":"setting tab string"},"popup_mic_listening_label":{"message":"Hallgatás","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Segítség","description":"help tab string"},"popup_help_heading_str":{"message":"Azért vagyunk itt, hogy segítsünk","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ha bármilyen problémát tapasztal, kérjük, jelezze","description":"popup help tab description"},"here":{"message":"itt","description":"word"},"popup_default_language_label_str":{"message":"Alapértelmezett nyelv","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kattintson az alapértelmezett nyelv módosításához","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kattintson ide a beszédfelismerés be- és kikapcsolásához","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Nyisd meg a beállításokat","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Indítsa el a „Beszédfelismerést”, amikor a Chrome elindul","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Beszédfelismerés nyelvének módosítása","description":"language change setting label"},"option_permission_success_msg":{"message":"Most bezárhatja ezt a lapot, és ezzel az eszközzel bármilyen weboldalra gépelhet a hangjával!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Kérjük, engedélyezze az engedélyeket az eszköz használatához!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji nem található!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Emoji diktálás használata (több mint 1800 hangulatjel)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Keresse meg a legközelebbi hangzást","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hogyan kell használni ezt az eszközt?","description":"How to use this tool ? string"},"new_line_label":{"message":"új sor","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kattintson a hangparancsok megtekintéséhez","description":"voice commands control label "},"popup_show_commands_label":{"message":"Parancsok megjelenítése","description":"voice commands control label "},"commands_list_label":{"message":"Parancslista a nyelvhez","description":"Commands List for language label"},"command_name_label":{"message":"Parancs neve","description":"Command's Name label"},"command_description_label":{"message":"Parancs leírása","description":"Command's Description label"},"command_emoji_description":{"message":"Mondja ki az „emoji emoji's name” szót, hogy kissé hasonló hangulatjeleket illesszen be az 1800 hangulatjelek listájából. checkout a hangulatjelek teljes listája a beállító oldalon","description":"command emoji desc"},"command_newline_description":{"message":"Mondjon új sort a 'gépeléshez'.","description":"command newline desc"},"command_press_enter_description":{"message":"Mondja, hogy nyomja meg az Enter billentyűt az Enter gomb megnyomásához. Hasznos az űrlapok beküldéséhez","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji listája a nyelvhez","description":"emoji list label"},"emoji_name_label":{"message":"Emoji neve","description":"emoji name label"},"command_newline_description_new":{"message":"Mondjon új sort, hogy új sort kapjon.","description":"command newline desc"},"check_here_label":{"message":"Ellenőrizze itt","description":"Check here label"},"imoji_list_label":{"message":"Ellenőrizze itt","description":"Check here label"},"command_list_label":{"message":"Parancslista","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji List","description":"imoji list label"},"symbol_list_label":{"message":"Matematikai szimbólumok listája","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Mondjon „figyelem” kifejezést, ha véletlenszerű figyelmességet szeretne beilleszteni a szövegmezőbe","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kérjük, kattintson az alábbi gombra, hogy engedélyezze a hangengedélyeket az eszköz használatához.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Megjegyzés: Ha véletlenül nem engedélyezte az engedélyeket, engedélyezheti nekik, hogy rákattintsanak a fül bal felső sarkára a lapon","description":"audio permission extra info"},"allow_permission_label":{"message":"Engedély engedélyezése","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Kérjük, engedélyezze az engedélyeket az eszköz használatához!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Most bezárhatja ezt a lapot, és ezzel az eszközzel bármilyen weboldalra gépelhet a hangjával!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Most kattintson bármelyik bemenetre, és beszéljen","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Hozzon létre Morse Code-ot","description":"cmc label"},"command_enable_disable_label":{"message":"Bekapcsolni kikapcsolni","description":"enable or disable command label"},"command_arrow_label":{"message":"nyíl","description":"command arrow label"},"command_arrow_description":{"message":"Mondja a „balra nyíl” szót a bal nyíl billentyű beírásához. lehetséges parancsok: nyíl balra | jobbra top | le-","description":"command arrow desc"},"left_label":{"message":"bal","description":"left label"},"right_label":{"message":"jobb","description":"right label"},"up_label":{"message":"fel","description":"up label"},"down_label":{"message":"le-","description":"down label"},"command_search_label":{"message":"keresés","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Mondja ki, hogy keres macskát vagy google macskát, ha macskára szeretne keresni a google.com oldalon","description":"command go to label 3"},"command_bookmark_label":{"message":"könyvjelző","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"könyvjelzővel ezt az oldalt","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"könyvjelző eltávolítása","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"távolítsa el ezt a könyvjelzőt","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Mondja el a „Könyvjelző hozzáadása az oldalhoz” vagy a „Könyvjelző eltávolítása” elemet a könyvjelző hozzáadásához vagy eltávolításához","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Hozzáadta ezt az oldalt a könyvjelzőkhöz!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Eltávolította ezt az oldalt a könyvjelzők közül!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"játék","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Mondja, hogy „play song_name” (lejátszani a dal nevét), ez a dalt a youtube-ról játssza le.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"megtalálja","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Kiemel","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"kiemelés nélkül","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Mondja a „kiemel kulcsszót”, hogy kiemelje a kulcsszót az aktuális oldalon, és fordítva","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"visszavonás","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"újra","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"mindet visszavonni","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Mondja az Undo / Redo / Undo all elemet az összes visszavonásához.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"következő","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"előző","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Keresse meg a beviteli elemeket a következő és az előző kimondásával","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"görgess fel","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"görgessen lefelé","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Mondja, hogy görgessen lefelé / görgessen felfelé az oldal görgetéséhez.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"menj","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"látogatás","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"nyisd ki","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Mondja azt, hogy „megy a facebook.com-ra” a facebook.com új lapon történő megnyitásához. Mondja el a „go to bookmark bookmark_name” szót a könyvjelző URL megnyitásához.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"könyvjelző","description":"bookmark"}} diff --git a/src/app/_locales/id/messages.json b/src/app/_locales/id/messages.json index 6ca1628..dae6a39 100644 --- a/src/app/_locales/id/messages.json +++ b/src/app/_locales/id/messages.json @@ -1 +1 @@ -{"appName":{"message":"Perangkat Pengenalan Ucapan","description":"app name"},"appDescription":{"message":"Isi formulir web apa pun dengan hanya menggunakan suara Anda!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Izinkan Izin Audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"klik di sini untuk Mengizinkan Izin Audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Pengaturan","description":"setting tab string"},"popup_mic_listening_label":{"message":"Mendengarkan","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Tolong","description":"help tab string"},"popup_help_heading_str":{"message":"Kami di sini untuk membantu","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jika Anda mengalami masalah apa pun, harap laporkan","description":"popup help tab description"},"here":{"message":"sini","description":"word"},"popup_default_language_label_str":{"message":"Bahasa Default","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik untuk mengubah bahasa default","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik di sini untuk mengaktifkan / menonaktifkan Pengenalan Ucapan","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Buka Pengaturan","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Mulai 'Pengenalan Ucapan' saat Chrome dimulai","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Ubah Bahasa Pengenalan Ucapan","description":"language change setting label"},"option_permission_success_msg":{"message":"Sekarang Anda dapat menutup tab ini dan menggunakan alat ini untuk mengetik di situs web apa pun dengan suara Anda!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Mohon Izinkan Izin untuk menggunakan alat ini!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji tidak ditemukan!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gunakan dikte emoji (lebih dari 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cari emoji yang terdengar paling dekat","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Bagaimana cara menggunakan alat ini?","description":"How to use this tool ? string"},"new_line_label":{"message":"garis baru","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik untuk melihat perintah suara","description":"voice commands control label "},"popup_show_commands_label":{"message":"Tunjukkan Perintah","description":"voice commands control label "},"commands_list_label":{"message":"Daftar Perintah untuk bahasa","description":"Commands List for language label"},"command_name_label":{"message":"Nama Perintah","description":"Command's Name label"},"command_description_label":{"message":"Deskripsi Perintah","description":"Command's Description label"},"command_emoji_description":{"message":"Ucapkan 'nama emoji emoji' untuk memasukkan emoji yang agak mirip dari daftar 1800 emoji. checkout daftar lengkap emoji di halaman pengaturan","description":"command emoji desc"},"command_newline_description":{"message":"Ucapkan baris baru untuk mengetik '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Ucapkan tekan enter untuk Tekan tombol 'Enter'. Berguna untuk mengirimkan formulir","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Daftar Emoji untuk bahasa","description":"emoji list label"},"emoji_name_label":{"message":"Nama Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Ucapkan baris baru untuk mendapatkan baris baru.","description":"command newline desc"},"check_here_label":{"message":"Cek disini","description":"Check here label"},"imoji_list_label":{"message":"Cek disini","description":"Check here label"},"command_list_label":{"message":"Daftar Perintah","description":"Command List label"},"imoji_list_label_new":{"message":"Daftar Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Daftar Simbol Matematika","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Perhatian","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Ucapkan 'mindfulness' untuk memasukkan pemikiran mindfulness acak ke dalam kotak teks","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Silakan Klik pada tombol di bawah ini untuk mengizinkan izin audio untuk menggunakan alat ini.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Catatan: Jika Anda secara tidak sengaja melarang izin, Anda dapat mengizinkan mereka mengklik sudut kiri atas bilah pencarian tab ini","description":"audio permission extra info"},"allow_permission_label":{"message":"Berikan izin","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Mohon Izinkan Izin untuk menggunakan alat ini!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sekarang Anda dapat menutup tab ini dan menggunakan alat ini untuk mengetik di situs web apa pun dengan suara Anda!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sekarang klik pada masukan apa saja dan ucapkan","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Buat Kode Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Aktifkan / Nonaktifkan","description":"enable or disable command label"},"command_arrow_label":{"message":"panah","description":"command arrow label"},"command_arrow_description":{"message":"Ucapkan 'panah kiri' untuk mengetik tombol panah kiri. perintah yang mungkin: panah kiri | benar | atas | turun","description":"command arrow desc"},"left_label":{"message":"kiri","description":"left label"},"right_label":{"message":"Baik","description":"right label"},"up_label":{"message":"naik","description":"up label"},"down_label":{"message":"turun","description":"down label"},"command_go_to_label":{"message":"pergi ke","description":"command go to label"},"command_go_to_description":{"message":"Ucapkan 'buka facebook.com untuk membuka tab baru untuk facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"mengunjungi","description":"command go to label 2"},"command_go_to_label3":{"message":"Buka","description":"command go to label 3"},"command_search_label":{"message":"Cari","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Ucapkan search cat atau google cat untuk mencari kucing di google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"penanda buku","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"tandai halaman ini","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"hapus bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"hapus bookmark ini","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Ucapkan 'Bookmark halaman ini' atau 'hapus bookmark' untuk menambah atau menghapus bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Menambahkan halaman ini ke bookmark!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Menghapus halaman ini dari bookmark!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"bermain","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Ucapkan 'play song_name', itu akan memutar lagu dari youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"Temukan","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"menyoroti","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Ucapkan 'sorot kata kunci' untuk menyorot kata kunci pada halaman saat ini dan sebaliknya","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"membuka","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"mengulangi","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"batalkan semua","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Ucapkan undo / redo / undo semua untuk melakukan undo / redo / undo semua.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"lanjut","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"sebelumnya","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Menavigasi ke elemen masukan dengan mengatakan berikutnya dan sebelumnya","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"gulir ke atas","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"gulir ke bawah","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Katakan gulir ke bawah / gulir ke atas untuk menggulir halaman.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Perangkat Pengenalan Ucapan","description":"app name"},"appDescription":{"message":"Isi formulir web apa pun dengan hanya menggunakan suara Anda!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Izinkan Izin Audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"klik di sini untuk Mengizinkan Izin Audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Pengaturan","description":"setting tab string"},"popup_mic_listening_label":{"message":"Mendengarkan","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Tolong","description":"help tab string"},"popup_help_heading_str":{"message":"Kami di sini untuk membantu","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jika Anda mengalami masalah apa pun, harap laporkan","description":"popup help tab description"},"here":{"message":"sini","description":"word"},"popup_default_language_label_str":{"message":"Bahasa Default","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik untuk mengubah bahasa default","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik di sini untuk mengaktifkan / menonaktifkan Pengenalan Ucapan","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Buka Pengaturan","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Mulai 'Pengenalan Ucapan' saat Chrome dimulai","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Ubah Bahasa Pengenalan Ucapan","description":"language change setting label"},"option_permission_success_msg":{"message":"Sekarang Anda dapat menutup tab ini dan menggunakan alat ini untuk mengetik di situs web apa pun dengan suara Anda!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Mohon Izinkan Izin untuk menggunakan alat ini!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji tidak ditemukan!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gunakan dikte emoji (lebih dari 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cari emoji yang terdengar paling dekat","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Bagaimana cara menggunakan alat ini?","description":"How to use this tool ? string"},"new_line_label":{"message":"garis baru","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik untuk melihat perintah suara","description":"voice commands control label "},"popup_show_commands_label":{"message":"Tunjukkan Perintah","description":"voice commands control label "},"commands_list_label":{"message":"Daftar Perintah untuk bahasa","description":"Commands List for language label"},"command_name_label":{"message":"Nama Perintah","description":"Command's Name label"},"command_description_label":{"message":"Deskripsi Perintah","description":"Command's Description label"},"command_emoji_description":{"message":"Ucapkan 'nama emoji emoji' untuk memasukkan emoji yang agak mirip dari daftar 1800 emoji. checkout daftar lengkap emoji di halaman pengaturan","description":"command emoji desc"},"command_newline_description":{"message":"Ucapkan baris baru untuk mengetik '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Ucapkan tekan enter untuk Tekan tombol 'Enter'. Berguna untuk mengirimkan formulir","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Daftar Emoji untuk bahasa","description":"emoji list label"},"emoji_name_label":{"message":"Nama Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Ucapkan baris baru untuk mendapatkan baris baru.","description":"command newline desc"},"check_here_label":{"message":"Cek disini","description":"Check here label"},"imoji_list_label":{"message":"Cek disini","description":"Check here label"},"command_list_label":{"message":"Daftar Perintah","description":"Command List label"},"imoji_list_label_new":{"message":"Daftar Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Daftar Simbol Matematika","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Perhatian","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Ucapkan 'mindfulness' untuk memasukkan pemikiran mindfulness acak ke dalam kotak teks","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Silakan Klik pada tombol di bawah ini untuk mengizinkan izin audio untuk menggunakan alat ini.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Catatan: Jika Anda secara tidak sengaja melarang izin, Anda dapat mengizinkan mereka mengklik sudut kiri atas bilah pencarian tab ini","description":"audio permission extra info"},"allow_permission_label":{"message":"Berikan izin","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Mohon Izinkan Izin untuk menggunakan alat ini!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sekarang Anda dapat menutup tab ini dan menggunakan alat ini untuk mengetik di situs web apa pun dengan suara Anda!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sekarang klik pada masukan apa saja dan ucapkan","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Buat Kode Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Aktifkan / Nonaktifkan","description":"enable or disable command label"},"command_arrow_label":{"message":"panah","description":"command arrow label"},"command_arrow_description":{"message":"Ucapkan 'panah kiri' untuk mengetik tombol panah kiri. perintah yang mungkin: panah kiri | benar | atas | turun","description":"command arrow desc"},"left_label":{"message":"kiri","description":"left label"},"right_label":{"message":"Baik","description":"right label"},"up_label":{"message":"naik","description":"up label"},"down_label":{"message":"turun","description":"down label"},"command_search_label":{"message":"Cari","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Ucapkan search cat atau google cat untuk mencari kucing di google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"penanda buku","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"tandai halaman ini","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"hapus bookmark","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"hapus bookmark ini","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Ucapkan 'Bookmark halaman ini' atau 'hapus bookmark' untuk menambah atau menghapus bookmark","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Menambahkan halaman ini ke bookmark!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Menghapus halaman ini dari bookmark!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"bermain","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Ucapkan 'play song_name', itu akan memutar lagu dari youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"Temukan","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"menyoroti","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Ucapkan 'sorot kata kunci' untuk menyorot kata kunci pada halaman saat ini dan sebaliknya","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"membuka","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"mengulangi","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"batalkan semua","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Ucapkan undo / redo / undo semua untuk melakukan undo / redo / undo semua.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"lanjut","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"sebelumnya","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Menavigasi ke elemen masukan dengan mengatakan berikutnya dan sebelumnya","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"gulir ke atas","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"gulir ke bawah","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Katakan gulir ke bawah / gulir ke atas untuk menggulir halaman.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"pergi ke","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"mengunjungi","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"Buka","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Ucapkan 'buka facebook.com' untuk membuka facebook.com di tab baru. Ucapkan 'go to bookmark bookmark_name' untuk membuka url bookmark.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"penanda buku","description":"bookmark"}} diff --git a/src/app/_locales/it/messages.json b/src/app/_locales/it/messages.json index 466bddc..9912184 100644 --- a/src/app/_locales/it/messages.json +++ b/src/app/_locales/it/messages.json @@ -1 +1 @@ -{"appName":{"message":"Toolkit di riconoscimento vocale","description":"app name"},"appDescription":{"message":"Compila qualsiasi modulo web usando solo la tua voce!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Consenti autorizzazione audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"fare clic qui per consentire l'autorizzazione all'audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"impostazioni","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ascoltando","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Aiuto","description":"help tab string"},"popup_help_heading_str":{"message":"Siamo qui per aiutare","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Se hai riscontrato problemi, segnalalo","description":"popup help tab description"},"here":{"message":"Qui","description":"word"},"popup_default_language_label_str":{"message":"Lingua di default","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Fare clic per modificare la lingua predefinita","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Fare clic qui per attivare / disattivare il riconoscimento vocale","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Apri Impostazioni","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Avvia \"Riconoscimento vocale\" all'avvio di Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Cambia lingua di riconoscimento vocale","description":"language change setting label"},"option_permission_success_msg":{"message":"Ora puoi chiudere questa scheda e utilizzare questo strumento per digitare su qualsiasi sito Web con la tua voce!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Consenti autorizzazioni per utilizzare questo strumento!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji non trovato!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Usa la dettatura emoji (più di 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cerca le emoji che suonano più vicine","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Come utilizzare questo strumento?","description":"How to use this tool ? string"},"new_line_label":{"message":"nuova linea","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Fare clic per visualizzare i comandi vocali","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostra comandi","description":"voice commands control label "},"commands_list_label":{"message":"Elenco dei comandi per la lingua","description":"Commands List for language label"},"command_name_label":{"message":"Nome del comando","description":"Command's Name label"},"command_description_label":{"message":"Descrizione del comando","description":"Command's Description label"},"command_emoji_description":{"message":"Pronuncia \"nome emoji emoji\" per inserire emoji in qualche modo simili dall'elenco di 1800 emoji. controlla l'elenco completo degli emoji nella pagina delle impostazioni","description":"command emoji desc"},"command_newline_description":{"message":"Pronuncia una nuova riga per digitare \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Dire premere Invio per premere il tasto \"Invio\". Utile per inviare moduli","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Elenco delle Emoji per la lingua","description":"emoji list label"},"emoji_name_label":{"message":"Il nome di Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Pronuncia una nuova riga per ottenere una nuova riga.","description":"command newline desc"},"check_here_label":{"message":"Controlla qui","description":"Check here label"},"imoji_list_label":{"message":"Controlla qui","description":"Check here label"},"command_list_label":{"message":"Elenco dei comandi","description":"Command List label"},"imoji_list_label_new":{"message":"Elenco Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Elenco dei simboli matematici","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Consapevolezza","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Pronuncia \"consapevolezza\" per inserire un pensiero di consapevolezza casuale nella casella di testo","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Fare clic sul pulsante in basso per consentire le autorizzazioni audio per utilizzare questo strumento.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Nota: se hai accidentalmente negato le autorizzazioni, puoi consentire loro di fare clic sull'angolo superiore sinistro della barra di ricerca di questa scheda","description":"audio permission extra info"},"allow_permission_label":{"message":"Consenti il ​​permesso","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Consenti le autorizzazioni per utilizzare questo strumento!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Ora puoi chiudere questa scheda e utilizzare questo strumento per digitare su qualsiasi sito Web con la tua voce!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ora fai clic su qualsiasi input e parla","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Crea codice Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Abilita / Disabilita","description":"enable or disable command label"},"command_arrow_label":{"message":"freccia","description":"command arrow label"},"command_arrow_description":{"message":"Pronuncia \"freccia sinistra\" per digitare il tasto freccia sinistra. possibili comandi: freccia sinistra | a destra | top | giù","description":"command arrow desc"},"left_label":{"message":"sinistra","description":"left label"},"right_label":{"message":"giusto","description":"right label"},"up_label":{"message":"su","description":"up label"},"down_label":{"message":"giù","description":"down label"},"command_go_to_label":{"message":"vai a","description":"command go to label"},"command_go_to_description":{"message":"Dì \"vai su facebook.com per aprire una nuova scheda per facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"visitare","description":"command go to label 2"},"command_go_to_label3":{"message":"Aperto","description":"command go to label 3"},"command_search_label":{"message":"ricerca","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Dì cerca gatto o google gatto per cercare gatto su google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"segnalibro","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"metti questa pagina nei preferiti","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"rimuovi segnalibro","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"rimuovi questo segnalibro","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Dì \"Aggiungi questa pagina ai preferiti\" o \"rimuovi segnalibro\" per aggiungere o rimuovere il segnalibro","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Aggiunta questa pagina ai segnalibri!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Rimossa questa pagina dai segnalibri!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"giocare","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Pronuncia \"play song_name\", verrà riprodotto il brano da YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"trova","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"evidenziare","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Pronuncia \"evidenzia parola chiave\" per evidenziare la parola chiave nella pagina corrente e viceversa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"disfare","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"rifare","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"annulla tutto","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Pronuncia annulla / ripeti / annulla tutto per annullare / ripetere / annullare tutto.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Il prossimo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"precedente","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Passa agli elementi di input pronunciando successivo e precedente","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scorrere verso l'alto","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scorri verso il basso","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Dì scorri verso il basso / scorri verso l'alto per scorrere la pagina.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Toolkit di riconoscimento vocale","description":"app name"},"appDescription":{"message":"Compila qualsiasi modulo web usando solo la tua voce!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Consenti autorizzazione audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"fare clic qui per consentire l'autorizzazione all'audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"impostazioni","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ascoltando","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Aiuto","description":"help tab string"},"popup_help_heading_str":{"message":"Siamo qui per aiutare","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Se hai riscontrato problemi, segnalalo","description":"popup help tab description"},"here":{"message":"Qui","description":"word"},"popup_default_language_label_str":{"message":"Lingua di default","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Fare clic per modificare la lingua predefinita","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Fare clic qui per attivare / disattivare il riconoscimento vocale","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Apri Impostazioni","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Avvia \"Riconoscimento vocale\" all'avvio di Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Cambia lingua di riconoscimento vocale","description":"language change setting label"},"option_permission_success_msg":{"message":"Ora puoi chiudere questa scheda e utilizzare questo strumento per digitare su qualsiasi sito Web con la tua voce!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Consenti autorizzazioni per utilizzare questo strumento!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji non trovato!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Usa la dettatura emoji (più di 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cerca le emoji che suonano più vicine","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Come utilizzare questo strumento?","description":"How to use this tool ? string"},"new_line_label":{"message":"nuova linea","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Fare clic per visualizzare i comandi vocali","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostra comandi","description":"voice commands control label "},"commands_list_label":{"message":"Elenco dei comandi per la lingua","description":"Commands List for language label"},"command_name_label":{"message":"Nome del comando","description":"Command's Name label"},"command_description_label":{"message":"Descrizione del comando","description":"Command's Description label"},"command_emoji_description":{"message":"Pronuncia \"nome emoji emoji\" per inserire emoji in qualche modo simili dall'elenco di 1800 emoji. controlla l'elenco completo degli emoji nella pagina delle impostazioni","description":"command emoji desc"},"command_newline_description":{"message":"Pronuncia una nuova riga per digitare \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Dire premere Invio per premere il tasto \"Invio\". Utile per inviare moduli","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Elenco delle Emoji per la lingua","description":"emoji list label"},"emoji_name_label":{"message":"Il nome di Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Pronuncia una nuova riga per ottenere una nuova riga.","description":"command newline desc"},"check_here_label":{"message":"Controlla qui","description":"Check here label"},"imoji_list_label":{"message":"Controlla qui","description":"Check here label"},"command_list_label":{"message":"Elenco dei comandi","description":"Command List label"},"imoji_list_label_new":{"message":"Elenco Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Elenco dei simboli matematici","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Consapevolezza","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Pronuncia \"consapevolezza\" per inserire un pensiero di consapevolezza casuale nella casella di testo","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Fare clic sul pulsante in basso per consentire le autorizzazioni audio per utilizzare questo strumento.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Nota: se hai accidentalmente negato le autorizzazioni, puoi consentire loro di fare clic sull'angolo superiore sinistro della barra di ricerca di questa scheda","description":"audio permission extra info"},"allow_permission_label":{"message":"Consenti il ​​permesso","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Consenti le autorizzazioni per utilizzare questo strumento!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Ora puoi chiudere questa scheda e utilizzare questo strumento per digitare su qualsiasi sito Web con la tua voce!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Ora fai clic su qualsiasi input e parla","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Crea codice Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Abilita / Disabilita","description":"enable or disable command label"},"command_arrow_label":{"message":"freccia","description":"command arrow label"},"command_arrow_description":{"message":"Pronuncia \"freccia sinistra\" per digitare il tasto freccia sinistra. possibili comandi: freccia sinistra | a destra | top | giù","description":"command arrow desc"},"left_label":{"message":"sinistra","description":"left label"},"right_label":{"message":"giusto","description":"right label"},"up_label":{"message":"su","description":"up label"},"down_label":{"message":"giù","description":"down label"},"command_search_label":{"message":"ricerca","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Dì cerca gatto o google gatto per cercare gatto su google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"segnalibro","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"metti questa pagina nei preferiti","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"rimuovi segnalibro","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"rimuovi questo segnalibro","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Dì \"Aggiungi questa pagina ai preferiti\" o \"rimuovi segnalibro\" per aggiungere o rimuovere il segnalibro","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Aggiunta questa pagina ai segnalibri!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Rimossa questa pagina dai segnalibri!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"giocare","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Pronuncia \"play song_name\", verrà riprodotto il brano da YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"trova","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"evidenziare","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Pronuncia \"evidenzia parola chiave\" per evidenziare la parola chiave nella pagina corrente e viceversa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"disfare","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"rifare","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"annulla tutto","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Pronuncia annulla / ripeti / annulla tutto per annullare / ripetere / annullare tutto.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Il prossimo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"precedente","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Passa agli elementi di input pronunciando successivo e precedente","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scorrere verso l'alto","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scorri verso il basso","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Dì scorri verso il basso / scorri verso l'alto per scorrere la pagina.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"vai a","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"visitare","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"Aperto","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Dì \"vai a facebook.com\" per aprire facebook.com in una nuova scheda. Pronuncia \"vai al segnalibro nome_segnalibro\" per aprire l'URL del segnalibro.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"segnalibro","description":"bookmark"}} diff --git a/src/app/_locales/ja/messages.json b/src/app/_locales/ja/messages.json index df99c82..b9e39c0 100644 --- a/src/app/_locales/ja/messages.json +++ b/src/app/_locales/ja/messages.json @@ -1 +1 @@ -{"appName":{"message":"音声認識ツールキット","description":"app name"},"appDescription":{"message":"あなたの声だけを使ってウェブフォームに記入してください!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"音声許可を許可する","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"オーディオ許可を許可するには、ここをクリックしてください","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"設定","description":"setting tab string"},"popup_mic_listening_label":{"message":"聞いている","description":"label when mic is listening"},"popup_help_tab_str":{"message":"助けて","description":"help tab string"},"popup_help_heading_str":{"message":"私たちは助けるためにここにいます","description":"popup help tab heading"},"popup_help_desc_str":{"message":"問題が発生した場合は、報告してください","description":"popup help tab description"},"here":{"message":"ここに","description":"word"},"popup_default_language_label_str":{"message":"既定の言語","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"クリックしてデフォルトの言語を変更します","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"音声認識のオン/オフを切り替えるには、ここをクリックしてください","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"設定を開く","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chromeの起動時に「音声認識」を開始します","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"音声認識言語の変更","description":"language change setting label"},"option_permission_success_msg":{"message":"これで、このタブを閉じて、このツールを使用して、任意のWebサイトに自分の声で入力できます。","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"このツールを使用するには、権限を許可してください。","description":"error message when user rejects permission"},"emoji":{"message":"絵文字","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"絵文字が見つかりません!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"絵文字ディクテーションを使用する(1800以上の絵文字)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"最も近い音の絵文字を検索する","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"このツールの使い方は?","description":"How to use this tool ? string"},"new_line_label":{"message":"改行","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"クリックして音声コマンドを表示","description":"voice commands control label "},"popup_show_commands_label":{"message":"コマンドを表示","description":"voice commands control label "},"commands_list_label":{"message":"言語のコマンドリスト","description":"Commands List for language label"},"command_name_label":{"message":"コマンドの名前","description":"Command's Name label"},"command_description_label":{"message":"コマンドの説明","description":"Command's Description label"},"command_emoji_description":{"message":"「絵文字絵文字の名前」と言うと、1800個の絵文字のリストから似たような絵文字が挿入されます。設定ページで絵文字の完全なリストをチェックアウトする","description":"command emoji desc"},"command_newline_description":{"message":"「。」と入力するために改行を言います。","description":"command newline desc"},"command_press_enter_description":{"message":"Enterキーを押して、「Enter」キーを押します。フォームの送信に便利","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"言語の絵文字リスト","description":"emoji list label"},"emoji_name_label":{"message":"絵文字の名前","description":"emoji name label"},"command_newline_description_new":{"message":"新しい行を取得するには、新しい行を言います。","description":"command newline desc"},"check_here_label":{"message":"こちらをチェック","description":"Check here label"},"imoji_list_label":{"message":"こちらをチェック","description":"Check here label"},"command_list_label":{"message":"コマンドリスト","description":"Command List label"},"imoji_list_label_new":{"message":"絵文字リスト","description":"imoji list label"},"symbol_list_label":{"message":"数学記号リスト","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"マインドフルネス","description":"Mindfulness command"},"command_mindfulness_description":{"message":"「マインドフルネス」と言って、ランダムなマインドフルネスの考えをテキストボックスに挿入します","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"このツールを使用するには、下のボタンをクリックして音声権限を許可してください。","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"注:誤って権限を許可しなかった場合は、このタブの検索バーの左上隅をクリックすることを許可できます。","description":"audio permission extra info"},"allow_permission_label":{"message":"許可を与える","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"このツールを使用するには、権限を許可してください。","description":"audio permission error message"},"audio_permission_success_msg":{"message":"これで、このタブを閉じて、このツールを使用して、任意のWebサイトに自分の声で入力できます。","description":"audio permission success message"},"popup_mic_listening_note":{"message":"*入力をクリックして話します","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"モールス信号を作成する","description":"cmc label"},"command_enable_disable_label":{"message":"有効/無効","description":"enable or disable command label"},"command_arrow_label":{"message":"矢印","description":"command arrow label"},"command_arrow_description":{"message":"「左矢印」と言って、左矢印キーを入力します。可能なコマンド:左矢印|右|トップ|ダウン","description":"command arrow desc"},"left_label":{"message":"左","description":"left label"},"right_label":{"message":"正しい","description":"right label"},"up_label":{"message":"アップ","description":"up label"},"down_label":{"message":"ダウン","description":"down label"},"command_go_to_label":{"message":"に行く","description":"command go to label"},"command_go_to_description":{"message":"と言ってください 'facebook.comにアクセスして、facebook.comの新しいタブを開きます","description":"command go to description"},"command_go_to_label2":{"message":"訪問","description":"command go to label 2"},"command_go_to_label3":{"message":"開いた","description":"command go to label 3"},"command_search_label":{"message":"探す","description":"command search label"},"command_search_label2":{"message":"グーグル","description":"command go to label 2"},"command_search_description":{"message":"google.comで猫を検索するには、検索猫またはグーグル猫と言います","description":"command go to label 3"},"command_bookmark_label":{"message":"ブックマーク","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"このページをブックマークして","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ブックマークを削除する","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"このブックマークを削除する","description":"command bookmark label 4"},"command_bookmark_description":{"message":"「このページをブックマークする」または「ブックマークを削除する」と言って、ブックマークを追加または削除します","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"このページをブックマークに追加しました!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"このページをブックマークから削除しました!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"演奏する","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"「playsong_name」と言うと、YouTubeから曲が再生されます。","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"見つける","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ハイライト","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ハイライト解除","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"「キーワードを強調表示」と言うと、現在のページでキーワードが強調表示されます。その逆も同様です。","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"元に戻す","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"やり直し","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"すべて元に戻す","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"元に戻す/やり直し/すべて元に戻すには、「元に戻す/やり直し/すべて元に戻す」と言います。","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"次","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"前","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"次と前と言って入力要素に移動します","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"スクロールアップする","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"下へスクロール","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"ページをスクロールするには、下にスクロール/上にスクロールと言います。","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"音声認識ツールキット","description":"app name"},"appDescription":{"message":"あなたの声だけを使ってウェブフォームに記入してください!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"音声許可を許可する","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"オーディオ許可を許可するには、ここをクリックしてください","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"設定","description":"setting tab string"},"popup_mic_listening_label":{"message":"聞いている","description":"label when mic is listening"},"popup_help_tab_str":{"message":"助けて","description":"help tab string"},"popup_help_heading_str":{"message":"私たちは助けるためにここにいます","description":"popup help tab heading"},"popup_help_desc_str":{"message":"問題が発生した場合は、報告してください","description":"popup help tab description"},"here":{"message":"ここに","description":"word"},"popup_default_language_label_str":{"message":"既定の言語","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"クリックしてデフォルトの言語を変更します","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"音声認識のオン/オフを切り替えるには、ここをクリックしてください","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"設定を開く","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chromeの起動時に「音声認識」を開始します","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"音声認識言語の変更","description":"language change setting label"},"option_permission_success_msg":{"message":"これで、このタブを閉じて、このツールを使用して、任意のWebサイトに自分の声で入力できます。","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"このツールを使用するには、権限を許可してください。","description":"error message when user rejects permission"},"emoji":{"message":"絵文字","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"絵文字が見つかりません!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"絵文字ディクテーションを使用する(1800以上の絵文字)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"最も近い音の絵文字を検索する","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"このツールの使い方は?","description":"How to use this tool ? string"},"new_line_label":{"message":"改行","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"クリックして音声コマンドを表示","description":"voice commands control label "},"popup_show_commands_label":{"message":"コマンドを表示","description":"voice commands control label "},"commands_list_label":{"message":"言語のコマンドリスト","description":"Commands List for language label"},"command_name_label":{"message":"コマンドの名前","description":"Command's Name label"},"command_description_label":{"message":"コマンドの説明","description":"Command's Description label"},"command_emoji_description":{"message":"「絵文字絵文字の名前」と言うと、1800個の絵文字のリストから似たような絵文字が挿入されます。設定ページで絵文字の完全なリストをチェックアウトする","description":"command emoji desc"},"command_newline_description":{"message":"「。」と入力するために改行を言います。","description":"command newline desc"},"command_press_enter_description":{"message":"Enterキーを押して、「Enter」キーを押します。フォームの送信に便利","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"言語の絵文字リスト","description":"emoji list label"},"emoji_name_label":{"message":"絵文字の名前","description":"emoji name label"},"command_newline_description_new":{"message":"新しい行を取得するには、新しい行を言います。","description":"command newline desc"},"check_here_label":{"message":"こちらをチェック","description":"Check here label"},"imoji_list_label":{"message":"こちらをチェック","description":"Check here label"},"command_list_label":{"message":"コマンドリスト","description":"Command List label"},"imoji_list_label_new":{"message":"絵文字リスト","description":"imoji list label"},"symbol_list_label":{"message":"数学記号リスト","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"マインドフルネス","description":"Mindfulness command"},"command_mindfulness_description":{"message":"「マインドフルネス」と言って、ランダムなマインドフルネスの考えをテキストボックスに挿入します","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"このツールを使用するには、下のボタンをクリックして音声権限を許可してください。","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"注:誤って権限を許可しなかった場合は、このタブの検索バーの左上隅をクリックすることを許可できます。","description":"audio permission extra info"},"allow_permission_label":{"message":"許可を与える","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"このツールを使用するには、権限を許可してください。","description":"audio permission error message"},"audio_permission_success_msg":{"message":"これで、このタブを閉じて、このツールを使用して、任意のWebサイトに自分の声で入力できます。","description":"audio permission success message"},"popup_mic_listening_note":{"message":"*入力をクリックして話します","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"モールス信号を作成する","description":"cmc label"},"command_enable_disable_label":{"message":"有効/無効","description":"enable or disable command label"},"command_arrow_label":{"message":"矢印","description":"command arrow label"},"command_arrow_description":{"message":"「左矢印」と言って、左矢印キーを入力します。可能なコマンド:左矢印|右|トップ|ダウン","description":"command arrow desc"},"left_label":{"message":"左","description":"left label"},"right_label":{"message":"正しい","description":"right label"},"up_label":{"message":"アップ","description":"up label"},"down_label":{"message":"ダウン","description":"down label"},"command_search_label":{"message":"探す","description":"command search label"},"command_search_label2":{"message":"グーグル","description":"command go to label 2"},"command_search_description":{"message":"google.comで猫を検索するには、検索猫またはグーグル猫と言います","description":"command go to label 3"},"command_bookmark_label":{"message":"ブックマーク","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"このページをブックマークして","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ブックマークを削除する","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"このブックマークを削除する","description":"command bookmark label 4"},"command_bookmark_description":{"message":"「このページをブックマークする」または「ブックマークを削除する」と言って、ブックマークを追加または削除します","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"このページをブックマークに追加しました!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"このページをブックマークから削除しました!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"演奏する","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"「playsong_name」と言うと、YouTubeから曲が再生されます。","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"見つける","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ハイライト","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ハイライト解除","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"「キーワードを強調表示」と言うと、現在のページでキーワードが強調表示されます。その逆も同様です。","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"元に戻す","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"やり直し","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"すべて元に戻す","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"元に戻す/やり直し/すべて元に戻すには、「元に戻す/やり直し/すべて元に戻す」と言います。","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"次","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"前","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"次と前と言って入力要素に移動します","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"スクロールアップする","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"下へスクロール","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"ページをスクロールするには、下にスクロール/上にスクロールと言います。","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"に行く","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"訪問","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"開いた","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"「facebook.comに移動」と言って、新しいタブでfacebook.comを開きます。 「ブックマークbookmark_nameに移動」と言ってブックマークURLを開きます。","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"ブックマーク","description":"bookmark"}} diff --git a/src/app/_locales/kn/messages.json b/src/app/_locales/kn/messages.json index 5163536..f55b5f5 100644 --- a/src/app/_locales/kn/messages.json +++ b/src/app/_locales/kn/messages.json @@ -1 +1 @@ -{"appName":{"message":"ಸ್ಪೀಚ್ ರೆಕಗ್ನಿಷನ್ ಟೂಲ್ಕಿಟ್","description":"app name"},"appDescription":{"message":"ನಿಮ್ಮ ಧ್ವನಿಯನ್ನು ಮಾತ್ರ ಬಳಸುವ ಮೂಲಕ ಯಾವುದೇ ವೆಬ್ ಫಾರ್ಮ್ ಅನ್ನು ಭರ್ತಿ ಮಾಡಿ!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ಆಡಿಯೋ ಅನುಮತಿಯನ್ನು ಅನುಮತಿಸಿ","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ಆಡಿಯೋ ಅನುಮತಿಯನ್ನು ಅನುಮತಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"ಸಂಯೋಜನೆಗಳು","description":"setting tab string"},"popup_mic_listening_label":{"message":"ಕೇಳುವ","description":"label when mic is listening"},"popup_help_tab_str":{"message":"ಸಹಾಯ","description":"help tab string"},"popup_help_heading_str":{"message":"ಸಹಾಯ ಮಾಡಲು ನಾವು ಇಲ್ಲಿದ್ದೇವೆ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"ನೀವು ಯಾವುದೇ ಸಮಸ್ಯೆಯನ್ನು ಅನುಭವಿಸಿದರೆ, ದಯವಿಟ್ಟು ಅದನ್ನು ವರದಿ ಮಾಡಿ","description":"popup help tab description"},"here":{"message":"ಇಲ್ಲಿ","description":"word"},"popup_default_language_label_str":{"message":"ಡೀಫಾಲ್ಟ್ ಭಾಷೆ","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ಡೀಫಾಲ್ಟ್ ಭಾಷೆಯನ್ನು ಬದಲಾಯಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"ಸ್ಪೀಚ್ ರೆಕಗ್ನಿಷನ್ ಆನ್ / ಆಫ್ ಮಾಡಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ತೆರೆಯಿರಿ","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ಪ್ರಾರಂಭವಾದಾಗ 'ಸ್ಪೀಚ್ ರೆಕಗ್ನಿಷನ್' ಪ್ರಾರಂಭಿಸಿ","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"ಭಾಷಣ ಗುರುತಿಸುವಿಕೆ ಭಾಷೆಯನ್ನು ಬದಲಾಯಿಸಿ","description":"language change setting label"},"option_permission_success_msg":{"message":"ಈಗ ನೀವು ಈ ಟ್ಯಾಬ್ ಅನ್ನು ಮುಚ್ಚಬಹುದು ಮತ್ತು ನಿಮ್ಮ ಧ್ವನಿಯೊಂದಿಗೆ ಯಾವುದೇ ವೆಬ್‌ಸೈಟ್‌ನಲ್ಲಿ ಟೈಪ್ ಮಾಡಲು ಈ ಉಪಕರಣವನ್ನು ಬಳಸಬಹುದು!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"ಈ ಉಪಕರಣವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸಿ!","description":"error message when user rejects permission"},"emoji":{"message":"ಎಮೋಜಿ","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ಎಮೋಜಿ ಕಂಡುಬಂದಿಲ್ಲ!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ಎಮೋಜಿ ಡಿಕ್ಟೇಷನ್ ಬಳಸಿ (1800 ಕ್ಕೂ ಹೆಚ್ಚು ಎಮೋಜಿಗಳು)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ಹತ್ತಿರದ ಧ್ವನಿ ಎಮೋಜಿಗಳಿಗಾಗಿ ಹುಡುಕಿ","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ಈ ಉಪಕರಣವನ್ನು ಹೇಗೆ ಬಳಸುವುದು?","description":"How to use this tool ? string"},"new_line_label":{"message":"ಹೊಸ ಗೆರೆ","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"ಧ್ವನಿ ಆಜ್ಞೆಗಳನ್ನು ನೋಡಲು ಕ್ಲಿಕ್ ಮಾಡಿ","description":"voice commands control label "},"popup_show_commands_label":{"message":"ಆಜ್ಞೆಗಳನ್ನು ತೋರಿಸಿ","description":"voice commands control label "},"commands_list_label":{"message":"ಭಾಷೆಗಾಗಿ ಆಜ್ಞೆಗಳ ಪಟ್ಟಿ","description":"Commands List for language label"},"command_name_label":{"message":"ಆಜ್ಞೆಯ ಹೆಸರು","description":"Command's Name label"},"command_description_label":{"message":"ಆಜ್ಞೆಯ ವಿವರಣೆ","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ಎಮೋಜಿಗಳ ಪಟ್ಟಿಯಿಂದ ಸ್ವಲ್ಪಮಟ್ಟಿಗೆ ಹೋಲುವ ಎಮೋಜಿಗಳನ್ನು ಸೇರಿಸಲು 'ಎಮೋಜಿ ಎಮೋಜಿಯ ಹೆಸರು' ಎಂದು ಹೇಳಿ. ಪುಟವನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ಎಮೋಜಿಗಳ ಪೂರ್ಣ ಪಟ್ಟಿಯನ್ನು ಪರಿಶೀಲಿಸಿ","description":"command emoji desc"},"command_newline_description":{"message":"'ಟೈಪ್ ಮಾಡಲು ಹೊಸ ಸಾಲನ್ನು ಹೇಳಿ.'","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' ಕೀಲಿಯನ್ನು ಒತ್ತಿ ಎಂದು ನಮೂದಿಸಿ ಎಂದು ಹೇಳಿ. ಫಾರ್ಮ್‌ಗಳನ್ನು ಸಲ್ಲಿಸಲು ಉಪಯುಕ್ತವಾಗಿದೆ","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ಭಾಷೆಗಾಗಿ ಎಮೋಜಿಗಳ ಪಟ್ಟಿ","description":"emoji list label"},"emoji_name_label":{"message":"ಎಮೋಜಿಯ ಹೆಸರು","description":"emoji name label"},"command_newline_description_new":{"message":"ಹೊಸ ಸಾಲನ್ನು ಪಡೆಯಲು ಹೊಸ ಸಾಲನ್ನು ಹೇಳಿ.","description":"command newline desc"},"check_here_label":{"message":"ಇಲ್ಲಿ ಪರಿಶೀಲಿಸಿ","description":"Check here label"},"imoji_list_label":{"message":"ಇಲ್ಲಿ ಪರಿಶೀಲಿಸಿ","description":"Check here label"},"command_list_label":{"message":"ಆಜ್ಞಾ ಪಟ್ಟಿ","description":"Command List label"},"imoji_list_label_new":{"message":"ಎಮೋಜಿ ಪಟ್ಟಿ","description":"imoji list label"},"symbol_list_label":{"message":"ಗಣಿತ ಚಿಹ್ನೆಗಳ ಪಟ್ಟಿ","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"ಮನಸ್ಸು","description":"Mindfulness command"},"command_mindfulness_description":{"message":"ಪಠ್ಯ ಪೆಟ್ಟಿಗೆಯಲ್ಲಿ ಯಾದೃಚ್ mind ಿಕ ಸಾವಧಾನತೆ ಚಿಂತನೆಯನ್ನು ಸೇರಿಸಲು 'ಸಾವಧಾನತೆ' ಎಂದು ಹೇಳಿ","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ಈ ಉಪಕರಣವನ್ನು ಬಳಸಲು ಆಡಿಯೊ ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸಲು ದಯವಿಟ್ಟು ಕೆಳಗಿನ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"ಗಮನಿಸಿ: ನೀವು ಆಕಸ್ಮಿಕವಾಗಿ ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ, ಈ ಟ್ಯಾಬ್‌ನ ಹುಡುಕಾಟ ಪಟ್ಟಿಯ ಮೇಲಿನ ಎಡ ಮೂಲೆಯಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡುವುದರಿಂದ ನೀವು ಅವುಗಳನ್ನು ಅನುಮತಿಸಬಹುದು","description":"audio permission extra info"},"allow_permission_label":{"message":"ಅನುಮತಿಯನ್ನು ಅನುಮತಿಸಿ","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"ಈ ಉಪಕರಣವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸಿ!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ಈಗ ನೀವು ಈ ಟ್ಯಾಬ್ ಅನ್ನು ಮುಚ್ಚಬಹುದು ಮತ್ತು ನಿಮ್ಮ ಧ್ವನಿಯೊಂದಿಗೆ ಯಾವುದೇ ವೆಬ್‌ಸೈಟ್‌ನಲ್ಲಿ ಟೈಪ್ ಮಾಡಲು ಈ ಉಪಕರಣವನ್ನು ಬಳಸಬಹುದು!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ಈಗ ಯಾವುದೇ ಇನ್ಪುಟ್ ಕ್ಲಿಕ್ ಮಾಡಿ ಮತ್ತು ಮಾತನಾಡಿ","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"ಮೋರ್ಸ್ ಕೋಡ್ ರಚಿಸಿ","description":"cmc label"},"command_enable_disable_label":{"message":"ಸಕ್ರಿಯಗೊಳಿಸಿ / ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ","description":"enable or disable command label"},"command_arrow_label":{"message":"ಬಾಣ","description":"command arrow label"},"command_arrow_description":{"message":"ಎಡ ಬಾಣದ ಕೀಲಿಯನ್ನು ಟೈಪ್ ಮಾಡಲು 'ಬಾಣ ಎಡ' ಎಂದು ಹೇಳಿ. ಸಂಭವನೀಯ ಆಜ್ಞೆಗಳು: ಬಾಣ ಎಡ | ಬಲ | ಟಾಪ್ | ಕೆಳಗೆ","description":"command arrow desc"},"left_label":{"message":"ಎಡ","description":"left label"},"right_label":{"message":"ಸರಿ","description":"right label"},"up_label":{"message":"ಅಪ್","description":"up label"},"down_label":{"message":"ಕೆಳಗೆ","description":"down label"},"command_go_to_label":{"message":"ಗೆ ಹೋಗಿ","description":"command go to label"},"command_go_to_description":{"message":"Facebook.com ಗಾಗಿ ಹೊಸ ಟ್ಯಾಬ್ ತೆರೆಯಲು facebook.com ಗೆ ಹೋಗಿ ಎಂದು ಹೇಳಿ","description":"command go to description"},"command_go_to_label2":{"message":"ಭೇಟಿ","description":"command go to label 2"},"command_go_to_label3":{"message":"ತೆರೆದಿರುತ್ತದೆ","description":"command go to label 3"},"command_search_label":{"message":"ಹುಡುಕಿ Kannada","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Google.com ನಲ್ಲಿ ಬೆಕ್ಕನ್ನು ಹುಡುಕಲು ಹುಡುಕಾಟ ಬೆಕ್ಕು ಅಥವಾ ಗೂಗಲ್ ಬೆಕ್ಕು ಎಂದು ಹೇಳಿ","description":"command go to label 3"},"command_bookmark_label":{"message":"ಬುಕ್ಮಾರ್ಕ್","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ಈ ಪುಟವನ್ನು ಬುಕ್‌ಮಾರ್ಕ್ ಮಾಡಿ","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ಬುಕ್ಮಾರ್ಕ್ ತೆಗೆದುಹಾಕಿ","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ಈ ಬುಕ್‌ಮಾರ್ಕ್ ತೆಗೆದುಹಾಕಿ","description":"command bookmark label 4"},"command_bookmark_description":{"message":"ಬುಕ್‌ಮಾರ್ಕ್ ಸೇರಿಸಲು ಅಥವಾ ತೆಗೆದುಹಾಕಲು 'ಈ ಪುಟವನ್ನು ಬುಕ್‌ಮಾರ್ಕ್ ಮಾಡಿ' ಅಥವಾ 'ಬುಕ್‌ಮಾರ್ಕ್ ತೆಗೆದುಹಾಕಿ' ಎಂದು ಹೇಳಿ","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ಬುಕ್‌ಮಾರ್ಕ್‌ಗಳಿಗೆ ಈ ಪುಟವನ್ನು ಸೇರಿಸಲಾಗಿದೆ!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"ಬುಕ್‌ಮಾರ್ಕ್‌ಗಳಿಂದ ಈ ಪುಟವನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"ಆಟವಾಡಿ","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'ಪ್ಲೇ ಸಾಂಗ್_ಹೆಸರು' ಎಂದು ಹೇಳಿ, ಅದು ಯೂಟ್ಯೂಬ್‌ನಿಂದ ಹಾಡನ್ನು ಪ್ಲೇ ಮಾಡುತ್ತದೆ.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"ಹುಡುಕಿ","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ಹೈಲೈಟ್ ಮಾಡಿ","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ಹೈಲೈಟ್","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"ಪ್ರಸ್ತುತ ಪುಟದಲ್ಲಿನ ಕೀವರ್ಡ್ ಅನ್ನು ಹೈಲೈಟ್ ಮಾಡಲು 'ಹೈಲೈಟ್ ಕೀವರ್ಡ್' ಎಂದು ಹೇಳಿ ಮತ್ತು ಪ್ರತಿಯಾಗಿ","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ರದ್ದುಗೊಳಿಸಿ","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ಮತ್ತೆಮಾಡು","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"ಎಲ್ಲವನ್ನೂ ರದ್ದುಗೊಳಿಸಿ","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"ಎಲ್ಲವನ್ನೂ ರದ್ದುಗೊಳಿಸಲು / ಮತ್ತೆಮಾಡು / ರದ್ದುಗೊಳಿಸಿ ಎಂದು ಹೇಳಿ.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ಮುಂದಿನದು","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ಹಿಂದಿನದು","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"ಮುಂದಿನ ಮತ್ತು ಹಿಂದಿನದನ್ನು ಹೇಳುವ ಮೂಲಕ ಇನ್ಪುಟ್ ಅಂಶಗಳಿಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ಮೇಲಕ್ಕೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"ಕೆಳಗೆ ಸ್ಕ್ರಾಲ್ ಮಾಡುವುದು","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"ಪುಟವನ್ನು ಸ್ಕ್ರಾಲ್ ಮಾಡಲು ಕೆಳಗೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ / ಸ್ಕ್ರಾಲ್ ಮಾಡಿ ಎಂದು ಹೇಳಿ.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"ಸ್ಪೀಚ್ ರೆಕಗ್ನಿಷನ್ ಟೂಲ್ಕಿಟ್","description":"app name"},"appDescription":{"message":"ನಿಮ್ಮ ಧ್ವನಿಯನ್ನು ಮಾತ್ರ ಬಳಸುವ ಮೂಲಕ ಯಾವುದೇ ವೆಬ್ ಫಾರ್ಮ್ ಅನ್ನು ಭರ್ತಿ ಮಾಡಿ!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ಆಡಿಯೋ ಅನುಮತಿಯನ್ನು ಅನುಮತಿಸಿ","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ಆಡಿಯೋ ಅನುಮತಿಯನ್ನು ಅನುಮತಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"ಸಂಯೋಜನೆಗಳು","description":"setting tab string"},"popup_mic_listening_label":{"message":"ಕೇಳುವ","description":"label when mic is listening"},"popup_help_tab_str":{"message":"ಸಹಾಯ","description":"help tab string"},"popup_help_heading_str":{"message":"ಸಹಾಯ ಮಾಡಲು ನಾವು ಇಲ್ಲಿದ್ದೇವೆ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"ನೀವು ಯಾವುದೇ ಸಮಸ್ಯೆಯನ್ನು ಅನುಭವಿಸಿದರೆ, ದಯವಿಟ್ಟು ಅದನ್ನು ವರದಿ ಮಾಡಿ","description":"popup help tab description"},"here":{"message":"ಇಲ್ಲಿ","description":"word"},"popup_default_language_label_str":{"message":"ಡೀಫಾಲ್ಟ್ ಭಾಷೆ","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"ಡೀಫಾಲ್ಟ್ ಭಾಷೆಯನ್ನು ಬದಲಾಯಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"ಸ್ಪೀಚ್ ರೆಕಗ್ನಿಷನ್ ಆನ್ / ಆಫ್ ಮಾಡಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ತೆರೆಯಿರಿ","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ಪ್ರಾರಂಭವಾದಾಗ 'ಸ್ಪೀಚ್ ರೆಕಗ್ನಿಷನ್' ಪ್ರಾರಂಭಿಸಿ","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"ಭಾಷಣ ಗುರುತಿಸುವಿಕೆ ಭಾಷೆಯನ್ನು ಬದಲಾಯಿಸಿ","description":"language change setting label"},"option_permission_success_msg":{"message":"ಈಗ ನೀವು ಈ ಟ್ಯಾಬ್ ಅನ್ನು ಮುಚ್ಚಬಹುದು ಮತ್ತು ನಿಮ್ಮ ಧ್ವನಿಯೊಂದಿಗೆ ಯಾವುದೇ ವೆಬ್‌ಸೈಟ್‌ನಲ್ಲಿ ಟೈಪ್ ಮಾಡಲು ಈ ಉಪಕರಣವನ್ನು ಬಳಸಬಹುದು!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"ಈ ಉಪಕರಣವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸಿ!","description":"error message when user rejects permission"},"emoji":{"message":"ಎಮೋಜಿ","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ಎಮೋಜಿ ಕಂಡುಬಂದಿಲ್ಲ!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ಎಮೋಜಿ ಡಿಕ್ಟೇಷನ್ ಬಳಸಿ (1800 ಕ್ಕೂ ಹೆಚ್ಚು ಎಮೋಜಿಗಳು)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ಹತ್ತಿರದ ಧ್ವನಿ ಎಮೋಜಿಗಳಿಗಾಗಿ ಹುಡುಕಿ","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ಈ ಉಪಕರಣವನ್ನು ಹೇಗೆ ಬಳಸುವುದು?","description":"How to use this tool ? string"},"new_line_label":{"message":"ಹೊಸ ಗೆರೆ","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"ಧ್ವನಿ ಆಜ್ಞೆಗಳನ್ನು ನೋಡಲು ಕ್ಲಿಕ್ ಮಾಡಿ","description":"voice commands control label "},"popup_show_commands_label":{"message":"ಆಜ್ಞೆಗಳನ್ನು ತೋರಿಸಿ","description":"voice commands control label "},"commands_list_label":{"message":"ಭಾಷೆಗಾಗಿ ಆಜ್ಞೆಗಳ ಪಟ್ಟಿ","description":"Commands List for language label"},"command_name_label":{"message":"ಆಜ್ಞೆಯ ಹೆಸರು","description":"Command's Name label"},"command_description_label":{"message":"ಆಜ್ಞೆಯ ವಿವರಣೆ","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ಎಮೋಜಿಗಳ ಪಟ್ಟಿಯಿಂದ ಸ್ವಲ್ಪಮಟ್ಟಿಗೆ ಹೋಲುವ ಎಮೋಜಿಗಳನ್ನು ಸೇರಿಸಲು 'ಎಮೋಜಿ ಎಮೋಜಿಯ ಹೆಸರು' ಎಂದು ಹೇಳಿ. ಪುಟವನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ಎಮೋಜಿಗಳ ಪೂರ್ಣ ಪಟ್ಟಿಯನ್ನು ಪರಿಶೀಲಿಸಿ","description":"command emoji desc"},"command_newline_description":{"message":"'ಟೈಪ್ ಮಾಡಲು ಹೊಸ ಸಾಲನ್ನು ಹೇಳಿ.'","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' ಕೀಲಿಯನ್ನು ಒತ್ತಿ ಎಂದು ನಮೂದಿಸಿ ಎಂದು ಹೇಳಿ. ಫಾರ್ಮ್‌ಗಳನ್ನು ಸಲ್ಲಿಸಲು ಉಪಯುಕ್ತವಾಗಿದೆ","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ಭಾಷೆಗಾಗಿ ಎಮೋಜಿಗಳ ಪಟ್ಟಿ","description":"emoji list label"},"emoji_name_label":{"message":"ಎಮೋಜಿಯ ಹೆಸರು","description":"emoji name label"},"command_newline_description_new":{"message":"ಹೊಸ ಸಾಲನ್ನು ಪಡೆಯಲು ಹೊಸ ಸಾಲನ್ನು ಹೇಳಿ.","description":"command newline desc"},"check_here_label":{"message":"ಇಲ್ಲಿ ಪರಿಶೀಲಿಸಿ","description":"Check here label"},"imoji_list_label":{"message":"ಇಲ್ಲಿ ಪರಿಶೀಲಿಸಿ","description":"Check here label"},"command_list_label":{"message":"ಆಜ್ಞಾ ಪಟ್ಟಿ","description":"Command List label"},"imoji_list_label_new":{"message":"ಎಮೋಜಿ ಪಟ್ಟಿ","description":"imoji list label"},"symbol_list_label":{"message":"ಗಣಿತ ಚಿಹ್ನೆಗಳ ಪಟ್ಟಿ","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"ಮನಸ್ಸು","description":"Mindfulness command"},"command_mindfulness_description":{"message":"ಪಠ್ಯ ಪೆಟ್ಟಿಗೆಯಲ್ಲಿ ಯಾದೃಚ್ mind ಿಕ ಸಾವಧಾನತೆ ಚಿಂತನೆಯನ್ನು ಸೇರಿಸಲು 'ಸಾವಧಾನತೆ' ಎಂದು ಹೇಳಿ","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ಈ ಉಪಕರಣವನ್ನು ಬಳಸಲು ಆಡಿಯೊ ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸಲು ದಯವಿಟ್ಟು ಕೆಳಗಿನ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"ಗಮನಿಸಿ: ನೀವು ಆಕಸ್ಮಿಕವಾಗಿ ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ, ಈ ಟ್ಯಾಬ್‌ನ ಹುಡುಕಾಟ ಪಟ್ಟಿಯ ಮೇಲಿನ ಎಡ ಮೂಲೆಯಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡುವುದರಿಂದ ನೀವು ಅವುಗಳನ್ನು ಅನುಮತಿಸಬಹುದು","description":"audio permission extra info"},"allow_permission_label":{"message":"ಅನುಮತಿಯನ್ನು ಅನುಮತಿಸಿ","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"ಈ ಉಪಕರಣವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿಸಿ!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ಈಗ ನೀವು ಈ ಟ್ಯಾಬ್ ಅನ್ನು ಮುಚ್ಚಬಹುದು ಮತ್ತು ನಿಮ್ಮ ಧ್ವನಿಯೊಂದಿಗೆ ಯಾವುದೇ ವೆಬ್‌ಸೈಟ್‌ನಲ್ಲಿ ಟೈಪ್ ಮಾಡಲು ಈ ಉಪಕರಣವನ್ನು ಬಳಸಬಹುದು!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ಈಗ ಯಾವುದೇ ಇನ್ಪುಟ್ ಕ್ಲಿಕ್ ಮಾಡಿ ಮತ್ತು ಮಾತನಾಡಿ","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"ಮೋರ್ಸ್ ಕೋಡ್ ರಚಿಸಿ","description":"cmc label"},"command_enable_disable_label":{"message":"ಸಕ್ರಿಯಗೊಳಿಸಿ / ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ","description":"enable or disable command label"},"command_arrow_label":{"message":"ಬಾಣ","description":"command arrow label"},"command_arrow_description":{"message":"ಎಡ ಬಾಣದ ಕೀಲಿಯನ್ನು ಟೈಪ್ ಮಾಡಲು 'ಬಾಣ ಎಡ' ಎಂದು ಹೇಳಿ. ಸಂಭವನೀಯ ಆಜ್ಞೆಗಳು: ಬಾಣ ಎಡ | ಬಲ | ಟಾಪ್ | ಕೆಳಗೆ","description":"command arrow desc"},"left_label":{"message":"ಎಡ","description":"left label"},"right_label":{"message":"ಸರಿ","description":"right label"},"up_label":{"message":"ಅಪ್","description":"up label"},"down_label":{"message":"ಕೆಳಗೆ","description":"down label"},"command_search_label":{"message":"ಹುಡುಕಿ Kannada","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Google.com ನಲ್ಲಿ ಬೆಕ್ಕನ್ನು ಹುಡುಕಲು ಹುಡುಕಾಟ ಬೆಕ್ಕು ಅಥವಾ ಗೂಗಲ್ ಬೆಕ್ಕು ಎಂದು ಹೇಳಿ","description":"command go to label 3"},"command_bookmark_label":{"message":"ಬುಕ್ಮಾರ್ಕ್","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ಈ ಪುಟವನ್ನು ಬುಕ್‌ಮಾರ್ಕ್ ಮಾಡಿ","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ಬುಕ್ಮಾರ್ಕ್ ತೆಗೆದುಹಾಕಿ","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ಈ ಬುಕ್‌ಮಾರ್ಕ್ ತೆಗೆದುಹಾಕಿ","description":"command bookmark label 4"},"command_bookmark_description":{"message":"ಬುಕ್‌ಮಾರ್ಕ್ ಸೇರಿಸಲು ಅಥವಾ ತೆಗೆದುಹಾಕಲು 'ಈ ಪುಟವನ್ನು ಬುಕ್‌ಮಾರ್ಕ್ ಮಾಡಿ' ಅಥವಾ 'ಬುಕ್‌ಮಾರ್ಕ್ ತೆಗೆದುಹಾಕಿ' ಎಂದು ಹೇಳಿ","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ಬುಕ್‌ಮಾರ್ಕ್‌ಗಳಿಗೆ ಈ ಪುಟವನ್ನು ಸೇರಿಸಲಾಗಿದೆ!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"ಬುಕ್‌ಮಾರ್ಕ್‌ಗಳಿಂದ ಈ ಪುಟವನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"ಆಟವಾಡಿ","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'ಪ್ಲೇ ಸಾಂಗ್_ಹೆಸರು' ಎಂದು ಹೇಳಿ, ಅದು ಯೂಟ್ಯೂಬ್‌ನಿಂದ ಹಾಡನ್ನು ಪ್ಲೇ ಮಾಡುತ್ತದೆ.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"ಹುಡುಕಿ","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ಹೈಲೈಟ್ ಮಾಡಿ","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ಹೈಲೈಟ್","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"ಪ್ರಸ್ತುತ ಪುಟದಲ್ಲಿನ ಕೀವರ್ಡ್ ಅನ್ನು ಹೈಲೈಟ್ ಮಾಡಲು 'ಹೈಲೈಟ್ ಕೀವರ್ಡ್' ಎಂದು ಹೇಳಿ ಮತ್ತು ಪ್ರತಿಯಾಗಿ","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ರದ್ದುಗೊಳಿಸಿ","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ಮತ್ತೆಮಾಡು","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"ಎಲ್ಲವನ್ನೂ ರದ್ದುಗೊಳಿಸಿ","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"ಎಲ್ಲವನ್ನೂ ರದ್ದುಗೊಳಿಸಲು / ಮತ್ತೆಮಾಡು / ರದ್ದುಗೊಳಿಸಿ ಎಂದು ಹೇಳಿ.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ಮುಂದಿನದು","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ಹಿಂದಿನದು","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"ಮುಂದಿನ ಮತ್ತು ಹಿಂದಿನದನ್ನು ಹೇಳುವ ಮೂಲಕ ಇನ್ಪುಟ್ ಅಂಶಗಳಿಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ಮೇಲಕ್ಕೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"ಕೆಳಗೆ ಸ್ಕ್ರಾಲ್ ಮಾಡುವುದು","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"ಪುಟವನ್ನು ಸ್ಕ್ರಾಲ್ ಮಾಡಲು ಕೆಳಗೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ / ಸ್ಕ್ರಾಲ್ ಮಾಡಿ ಎಂದು ಹೇಳಿ.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"ಗೆ ಹೋಗಿ","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"ಭೇಟಿ","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"ತೆರೆದಿರುತ್ತದೆ","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"ಹೊಸ ಟ್ಯಾಬ್‌ನಲ್ಲಿ facebook.com ತೆರೆಯಲು 'facebook.com ಗೆ ಹೋಗಿ' ಎಂದು ಹೇಳಿ. ಬುಕ್ಮಾರ್ಕ್ url ಅನ್ನು ತೆರೆಯಲು 'ಬುಕ್ಮಾರ್ಕ್ ಬುಕ್ಮಾರ್ಕ್_ಹೆಸರಿಗೆ ಹೋಗಿ' ಎಂದು ಹೇಳಿ.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"ಬುಕ್ಮಾರ್ಕ್","description":"bookmark"}} diff --git a/src/app/_locales/ko/messages.json b/src/app/_locales/ko/messages.json index 119d646..6b30058 100644 --- a/src/app/_locales/ko/messages.json +++ b/src/app/_locales/ko/messages.json @@ -1 +1 @@ -{"appName":{"message":"음성 인식 툴킷","description":"app name"},"appDescription":{"message":"음성만으로 웹 양식을 작성하십시오!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"오디오 권한 허용","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"오디오 권한을 허용하려면 여기를 클릭하십시오.","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"설정","description":"setting tab string"},"popup_mic_listening_label":{"message":"청취","description":"label when mic is listening"},"popup_help_tab_str":{"message":"도움","description":"help tab string"},"popup_help_heading_str":{"message":"저희가 도와 드리겠습니다","description":"popup help tab heading"},"popup_help_desc_str":{"message":"문제가 발생한 경우 신고 해주세요.","description":"popup help tab description"},"here":{"message":"여기","description":"word"},"popup_default_language_label_str":{"message":"기본 설정 언어","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"기본 언어를 변경하려면 클릭","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"음성 인식을 켜거나 끄려면 여기를 클릭하십시오.","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"설정 열기","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome이 시작되면 '음성 인식'시작","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"음성 인식 언어 변경","description":"language change setting label"},"option_permission_success_msg":{"message":"이제이 탭을 닫고이 도구를 사용하여 음성으로 웹 사이트에 입력 할 수 있습니다!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"이 도구를 사용하려면 권한을 허용하십시오!","description":"error message when user rejects permission"},"emoji":{"message":"이모티콘","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"이모티콘을 찾을 수 없습니다!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"이모티콘 받아쓰기 사용 (1,800 개 이상의 이모티콘)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"가장 가깝게 들리는 이모티콘 검색","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"이 도구를 사용하는 방법?","description":"How to use this tool ? string"},"new_line_label":{"message":"새 줄","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"음성 명령을 보려면 클릭하세요.","description":"voice commands control label "},"popup_show_commands_label":{"message":"명령 표시","description":"voice commands control label "},"commands_list_label":{"message":"언어에 대한 명령 목록","description":"Commands List for language label"},"command_name_label":{"message":"사령부 이름","description":"Command's Name label"},"command_description_label":{"message":"명령 설명","description":"Command's Description label"},"command_emoji_description":{"message":"1800 개의 이모 지 목록에서 다소 유사한 이모지를 삽입하려면 '이모 지 이모 지 이름'이라고 말하세요. 설정 페이지에서 이모티콘의 전체 목록을 확인하십시오.","description":"command emoji desc"},"command_newline_description":{"message":"'.'를 입력하려면 새 줄을 말하세요.","description":"command newline desc"},"command_press_enter_description":{"message":"Enter 키를 눌러 'Enter'키를 누르십시오. 양식 제출에 유용","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"언어에 대한 이모티콘 목록","description":"emoji list label"},"emoji_name_label":{"message":"이모티콘의 이름","description":"emoji name label"},"command_newline_description_new":{"message":"새 줄을 얻으려면 새 줄을 말하십시오.","description":"command newline desc"},"check_here_label":{"message":"여기에서 확인","description":"Check here label"},"imoji_list_label":{"message":"여기에서 확인","description":"Check here label"},"command_list_label":{"message":"명령 목록","description":"Command List label"},"imoji_list_label_new":{"message":"이모티콘 목록","description":"imoji list label"},"symbol_list_label":{"message":"수학 기호 목록","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"마음 챙김","description":"Mindfulness command"},"command_mindfulness_description":{"message":"텍스트 상자에 임의의 마음 챙김 생각을 삽입하려면 'mindfulness'라고 말하세요.","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"이 도구를 사용하려면 아래 버튼을 클릭하여 오디오 권한을 허용하십시오.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"참고 : 실수로 권한을 허용하지 않은 경우이 탭의 검색 창 왼쪽 상단을 클릭하여 허용 할 수 있습니다.","description":"audio permission extra info"},"allow_permission_label":{"message":"권한 허용","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"이 도구를 사용하려면 권한을 허용하십시오!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"이제이 탭을 닫고이 도구를 사용하여 음성으로 웹 사이트에 입력 할 수 있습니다!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* 이제 입력을 클릭하고 말하십시오","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"모스 부호 생성","description":"cmc label"},"command_enable_disable_label":{"message":"켜기 끄기","description":"enable or disable command label"},"command_arrow_label":{"message":"화살","description":"command arrow label"},"command_arrow_description":{"message":"왼쪽 화살표 키를 입력하려면 '왼쪽 화살표'라고 말하세요. 가능한 명령 : 왼쪽 화살표 | 오른쪽 | 맨 위로 | 하위","description":"command arrow desc"},"left_label":{"message":"왼쪽","description":"left label"},"right_label":{"message":"권리","description":"right label"},"up_label":{"message":"쪽으로","description":"up label"},"down_label":{"message":"하위","description":"down label"},"command_go_to_label":{"message":"이동","description":"command go to label"},"command_go_to_description":{"message":"facebook.com에 대한 새 탭을 열려면 'facebook.com으로 이동'이라고 말합니다.","description":"command go to description"},"command_go_to_label2":{"message":"방문","description":"command go to label 2"},"command_go_to_label3":{"message":"열다","description":"command go to label 3"},"command_search_label":{"message":"검색","description":"command search label"},"command_search_label2":{"message":"구글","description":"command go to label 2"},"command_search_description":{"message":"google.com에서 고양이를 검색하려면 검색 고양이 또는 Google 고양이라고 말하세요.","description":"command go to label 3"},"command_bookmark_label":{"message":"서표","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"이 페이지를 북마크","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"북마크 제거","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"이 북마크 제거","description":"command bookmark label 4"},"command_bookmark_description":{"message":"북마크를 추가하거나 삭제하려면 '이 페이지를 북마크하세요'또는 '북마크 삭제'라고 말하세요.","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"이 페이지를 북마크에 추가했습니다!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"북마크에서이 페이지를 제거했습니다!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"플레이","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'play song_name'이라고 말하면 YouTube의 노래가 재생됩니다.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"찾기","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"가장 밝은 부분","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"강조 표시 해제","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"'하이라이트 키워드'라고 말하여 현재 페이지의 키워드를 강조하거나 그 반대의 경우도 마찬가지입니다.","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"실행 취소","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"다시 하다","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"모두 취소","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"실행 취소 / 다시 실행 / 모두 실행 취소라고 말하여 실행 취소 / 다시 실행 / 모두 실행 취소를 수행합니다.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"다음","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"이전","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"다음 및 이전이라고 말하여 입력 요소로 이동","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"스크롤","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"아래로 스크롤","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"페이지를 스크롤하려면 아래로 스크롤 / 위로 스크롤이라고 말합니다.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"음성 인식 툴킷","description":"app name"},"appDescription":{"message":"음성만으로 웹 양식을 작성하십시오!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"오디오 권한 허용","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"오디오 권한을 허용하려면 여기를 클릭하십시오.","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"설정","description":"setting tab string"},"popup_mic_listening_label":{"message":"청취","description":"label when mic is listening"},"popup_help_tab_str":{"message":"도움","description":"help tab string"},"popup_help_heading_str":{"message":"저희가 도와 드리겠습니다","description":"popup help tab heading"},"popup_help_desc_str":{"message":"문제가 발생한 경우 신고 해주세요.","description":"popup help tab description"},"here":{"message":"여기","description":"word"},"popup_default_language_label_str":{"message":"기본 설정 언어","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"기본 언어를 변경하려면 클릭","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"음성 인식을 켜거나 끄려면 여기를 클릭하십시오.","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"설정 열기","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome이 시작되면 '음성 인식'시작","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"음성 인식 언어 변경","description":"language change setting label"},"option_permission_success_msg":{"message":"이제이 탭을 닫고이 도구를 사용하여 음성으로 웹 사이트에 입력 할 수 있습니다!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"이 도구를 사용하려면 권한을 허용하십시오!","description":"error message when user rejects permission"},"emoji":{"message":"이모티콘","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"이모티콘을 찾을 수 없습니다!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"이모티콘 받아쓰기 사용 (1,800 개 이상의 이모티콘)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"가장 가깝게 들리는 이모티콘 검색","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"이 도구를 사용하는 방법?","description":"How to use this tool ? string"},"new_line_label":{"message":"새 줄","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"음성 명령을 보려면 클릭하세요.","description":"voice commands control label "},"popup_show_commands_label":{"message":"명령 표시","description":"voice commands control label "},"commands_list_label":{"message":"언어에 대한 명령 목록","description":"Commands List for language label"},"command_name_label":{"message":"사령부 이름","description":"Command's Name label"},"command_description_label":{"message":"명령 설명","description":"Command's Description label"},"command_emoji_description":{"message":"1800 개의 이모 지 목록에서 다소 유사한 이모지를 삽입하려면 '이모 지 이모 지 이름'이라고 말하세요. 설정 페이지에서 이모티콘의 전체 목록을 확인하십시오.","description":"command emoji desc"},"command_newline_description":{"message":"'.'를 입력하려면 새 줄을 말하세요.","description":"command newline desc"},"command_press_enter_description":{"message":"Enter 키를 눌러 'Enter'키를 누르십시오. 양식 제출에 유용","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"언어에 대한 이모티콘 목록","description":"emoji list label"},"emoji_name_label":{"message":"이모티콘의 이름","description":"emoji name label"},"command_newline_description_new":{"message":"새 줄을 얻으려면 새 줄을 말하십시오.","description":"command newline desc"},"check_here_label":{"message":"여기에서 확인","description":"Check here label"},"imoji_list_label":{"message":"여기에서 확인","description":"Check here label"},"command_list_label":{"message":"명령 목록","description":"Command List label"},"imoji_list_label_new":{"message":"이모티콘 목록","description":"imoji list label"},"symbol_list_label":{"message":"수학 기호 목록","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"마음 챙김","description":"Mindfulness command"},"command_mindfulness_description":{"message":"텍스트 상자에 임의의 마음 챙김 생각을 삽입하려면 'mindfulness'라고 말하세요.","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"이 도구를 사용하려면 아래 버튼을 클릭하여 오디오 권한을 허용하십시오.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"참고 : 실수로 권한을 허용하지 않은 경우이 탭의 검색 창 왼쪽 상단을 클릭하여 허용 할 수 있습니다.","description":"audio permission extra info"},"allow_permission_label":{"message":"권한 허용","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"이 도구를 사용하려면 권한을 허용하십시오!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"이제이 탭을 닫고이 도구를 사용하여 음성으로 웹 사이트에 입력 할 수 있습니다!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* 이제 입력을 클릭하고 말하십시오","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"모스 부호 생성","description":"cmc label"},"command_enable_disable_label":{"message":"켜기 끄기","description":"enable or disable command label"},"command_arrow_label":{"message":"화살","description":"command arrow label"},"command_arrow_description":{"message":"왼쪽 화살표 키를 입력하려면 '왼쪽 화살표'라고 말하세요. 가능한 명령 : 왼쪽 화살표 | 오른쪽 | 맨 위로 | 하위","description":"command arrow desc"},"left_label":{"message":"왼쪽","description":"left label"},"right_label":{"message":"권리","description":"right label"},"up_label":{"message":"쪽으로","description":"up label"},"down_label":{"message":"하위","description":"down label"},"command_search_label":{"message":"검색","description":"command search label"},"command_search_label2":{"message":"구글","description":"command go to label 2"},"command_search_description":{"message":"google.com에서 고양이를 검색하려면 검색 고양이 또는 Google 고양이라고 말하세요.","description":"command go to label 3"},"command_bookmark_label":{"message":"서표","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"이 페이지를 북마크","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"북마크 제거","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"이 북마크 제거","description":"command bookmark label 4"},"command_bookmark_description":{"message":"북마크를 추가하거나 삭제하려면 '이 페이지를 북마크하세요'또는 '북마크 삭제'라고 말하세요.","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"이 페이지를 북마크에 추가했습니다!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"북마크에서이 페이지를 제거했습니다!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"플레이","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'play song_name'이라고 말하면 YouTube의 노래가 재생됩니다.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"찾기","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"가장 밝은 부분","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"강조 표시 해제","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"'하이라이트 키워드'라고 말하여 현재 페이지의 키워드를 강조하거나 그 반대의 경우도 마찬가지입니다.","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"실행 취소","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"다시 하다","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"모두 취소","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"실행 취소 / 다시 실행 / 모두 실행 취소라고 말하여 실행 취소 / 다시 실행 / 모두 실행 취소를 수행합니다.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"다음","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"이전","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"다음 및 이전이라고 말하여 입력 요소로 이동","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"스크롤","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"아래로 스크롤","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"페이지를 스크롤하려면 아래로 스크롤 / 위로 스크롤이라고 말합니다.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"이동","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"방문","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"열다","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"새 탭에서 facebook.com을 열려면 'facebook.com으로 이동'이라고 말합니다. 북마크 URL을 열려면 '북마크 북마크 이름으로 이동'이라고 말하세요.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"서표","description":"bookmark"}} diff --git a/src/app/_locales/lt/messages.json b/src/app/_locales/lt/messages.json index 69157f1..c8a38a2 100644 --- a/src/app/_locales/lt/messages.json +++ b/src/app/_locales/lt/messages.json @@ -1 +1 @@ -{"appName":{"message":"Kalbos atpažinimo įrankių rinkinys","description":"app name"},"appDescription":{"message":"Užpildykite bet kurią interneto formą naudodami tik savo balsą!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Leisti garso leidimą","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"spustelėkite čia, jei norite leisti garso leidimą","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Nustatymai","description":"setting tab string"},"popup_mic_listening_label":{"message":"Klausymas","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pagalba","description":"help tab string"},"popup_help_heading_str":{"message":"Mes esame čia, kad padėtume","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jei kilo kokių nors problemų, praneškite apie tai","description":"popup help tab description"},"here":{"message":"čia","description":"word"},"popup_default_language_label_str":{"message":"Numatytoji kalba","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Spustelėkite norėdami pakeisti numatytąją kalbą","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Spustelėkite čia, kad įjungtumėte / išjungtumėte kalbos atpažinimą","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Atidarykite „Nustatymai“","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Paleiskite „Kalbos atpažinimą“, kai paleidžiama „Chrome“","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Keisti kalbos atpažinimo kalbą","description":"language change setting label"},"option_permission_success_msg":{"message":"Dabar galite uždaryti šį skirtuką ir naudoti šį įrankį, jei norite balsu įvesti bet kurioje svetainėje!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Prašome leisti leidimus, kad galėtumėte naudoti šį įrankį!","description":"error message when user rejects permission"},"emoji":{"message":"jaustukai","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Jaustukai nerasti!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Naudoti jaustukų diktavimą (daugiau nei 1800 jaustukų)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Ieškokite artimiausių skambančių jaustukų","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kaip naudotis šiuo įrankiu?","description":"How to use this tool ? string"},"new_line_label":{"message":"nauja linija","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Spustelėkite norėdami pamatyti balso komandas","description":"voice commands control label "},"popup_show_commands_label":{"message":"Rodyti komandas","description":"voice commands control label "},"commands_list_label":{"message":"Komandų sąrašas kalbai","description":"Commands List for language label"},"command_name_label":{"message":"Komandos vardas","description":"Command's Name label"},"command_description_label":{"message":"Komandos aprašas","description":"Command's Description label"},"command_emoji_description":{"message":"Pasakykite „jaustukų jaustukų pavadinimas“, kad iš 1800 jaustukų sąrašo įterptumėte šiek tiek panašių jaustukų. kasos nustatymų puslapyje pateiktas visas jaustukų sąrašas","description":"command emoji desc"},"command_newline_description":{"message":"Pasakykite naują eilutę įvesti „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Pasakykite paspauskite „Enter“, kad paspaustumėte „Enter“ klavišą. Naudinga pateikti formas","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"„Emoji“ kalbos sąrašas","description":"emoji list label"},"emoji_name_label":{"message":"Jaustuko vardas","description":"emoji name label"},"command_newline_description_new":{"message":"Pasakykite naują eilutę, kad gautumėte naują eilutę.","description":"command newline desc"},"check_here_label":{"message":"Patikrinkite čia","description":"Check here label"},"imoji_list_label":{"message":"Patikrinkite čia","description":"Check here label"},"command_list_label":{"message":"Komandų sąrašas","description":"Command List label"},"imoji_list_label_new":{"message":"Jaustukų sąrašas","description":"imoji list label"},"symbol_list_label":{"message":"Matematinių simbolių sąrašas","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Pasakykite „mindfulness“, kad į teksto laukelį įterptumėte atsitiktinę minties mintį","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Spustelėkite žemiau esantį mygtuką, kad leistumėte garso leidimus, kad galėtumėte naudoti šį įrankį.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Pastaba: jei netyčia neleidote leidimų, galite jiems leisti spustelėti šio skirtuko paieškos juostos viršutinį kairįjį kampą","description":"audio permission extra info"},"allow_permission_label":{"message":"Leisti leidimą","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Prašome leisti leidimus, kad galėtumėte naudoti šį įrankį!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Dabar galite uždaryti šį skirtuką ir naudoti šį įrankį, jei norite balsu įvesti bet kurioje svetainėje!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Dabar spustelėkite bet kurį įvestį ir kalbėkite","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Sukurkite Morzės kodą","description":"cmc label"},"command_enable_disable_label":{"message":"Įjungti išjungti","description":"enable or disable command label"},"command_arrow_label":{"message":"rodyklė","description":"command arrow label"},"command_arrow_description":{"message":"Pasakykite „rodyklė kairėn“, kad įvestumėte kairės rodyklės klavišą. galimos komandos: rodyklė kairėn teisingai | viršuje | žemyn","description":"command arrow desc"},"left_label":{"message":"paliko","description":"left label"},"right_label":{"message":"teisingai","description":"right label"},"up_label":{"message":"aukštyn","description":"up label"},"down_label":{"message":"žemyn","description":"down label"},"command_go_to_label":{"message":"eiti į","description":"command go to label"},"command_go_to_description":{"message":"Pasakykite: eikite į facebook.com, kad atidarytumėte naują facebook.com skirtuką","description":"command go to description"},"command_go_to_label2":{"message":"aplankyti","description":"command go to label 2"},"command_go_to_label3":{"message":"atviras","description":"command go to label 3"},"command_search_label":{"message":"Paieška","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Pasakykite „search cat“ arba „Google cat“, kad ieškotumėte katės google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"skirtukas","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Pažymėkite šį puslapį","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"pašalinti žymę","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"pašalinti šią žymę","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Pasakykite „Pažymėti šį puslapį“ arba „Pašalinti žymę“, jei norite pridėti arba pašalinti žymę","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Pridėjo šį puslapį prie žymių!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Šis puslapis pašalintas iš žymių!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"žaisti","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Pasakykite „paleisti dainos pavadinimą“, ji atkurs dainą iš „YouTube“.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"rasti","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"paryškinti","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"neišryškinti","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Pasakykite „paryškinti raktinį žodį“, kad paryškintumėte raktinį žodį dabartiniame puslapyje ir atvirkščiai","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"anuliuoti","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"perdaryti","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"anuliuoti visus","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Pasakykite anuliuoti / perdaryti / anuliuoti visus, kad galėtumėte anuliuoti / perdaryti / anuliuoti visus.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Kitas","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ankstesnis","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Eikite į įvesties elementus sakydami kitą ir ankstesnį","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"slinkite aukštyn","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"slinkti žemyn","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Pasakykite, kad slinkite žemyn / slinkite aukštyn, kad slinktumėte puslapį.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Kalbos atpažinimo įrankių rinkinys","description":"app name"},"appDescription":{"message":"Užpildykite bet kurią interneto formą naudodami tik savo balsą!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Leisti garso leidimą","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"spustelėkite čia, jei norite leisti garso leidimą","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Nustatymai","description":"setting tab string"},"popup_mic_listening_label":{"message":"Klausymas","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pagalba","description":"help tab string"},"popup_help_heading_str":{"message":"Mes esame čia, kad padėtume","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jei kilo kokių nors problemų, praneškite apie tai","description":"popup help tab description"},"here":{"message":"čia","description":"word"},"popup_default_language_label_str":{"message":"Numatytoji kalba","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Spustelėkite norėdami pakeisti numatytąją kalbą","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Spustelėkite čia, kad įjungtumėte / išjungtumėte kalbos atpažinimą","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Atidarykite „Nustatymai“","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Paleiskite „Kalbos atpažinimą“, kai paleidžiama „Chrome“","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Keisti kalbos atpažinimo kalbą","description":"language change setting label"},"option_permission_success_msg":{"message":"Dabar galite uždaryti šį skirtuką ir naudoti šį įrankį, jei norite balsu įvesti bet kurioje svetainėje!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Prašome leisti leidimus, kad galėtumėte naudoti šį įrankį!","description":"error message when user rejects permission"},"emoji":{"message":"jaustukai","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Jaustukai nerasti!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Naudoti jaustukų diktavimą (daugiau nei 1800 jaustukų)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Ieškokite artimiausių skambančių jaustukų","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kaip naudotis šiuo įrankiu?","description":"How to use this tool ? string"},"new_line_label":{"message":"nauja linija","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Spustelėkite norėdami pamatyti balso komandas","description":"voice commands control label "},"popup_show_commands_label":{"message":"Rodyti komandas","description":"voice commands control label "},"commands_list_label":{"message":"Komandų sąrašas kalbai","description":"Commands List for language label"},"command_name_label":{"message":"Komandos vardas","description":"Command's Name label"},"command_description_label":{"message":"Komandos aprašas","description":"Command's Description label"},"command_emoji_description":{"message":"Pasakykite „jaustukų jaustukų pavadinimas“, kad iš 1800 jaustukų sąrašo įterptumėte šiek tiek panašių jaustukų. kasos nustatymų puslapyje pateiktas visas jaustukų sąrašas","description":"command emoji desc"},"command_newline_description":{"message":"Pasakykite naują eilutę įvesti „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Pasakykite paspauskite „Enter“, kad paspaustumėte „Enter“ klavišą. Naudinga pateikti formas","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"„Emoji“ kalbos sąrašas","description":"emoji list label"},"emoji_name_label":{"message":"Jaustuko vardas","description":"emoji name label"},"command_newline_description_new":{"message":"Pasakykite naują eilutę, kad gautumėte naują eilutę.","description":"command newline desc"},"check_here_label":{"message":"Patikrinkite čia","description":"Check here label"},"imoji_list_label":{"message":"Patikrinkite čia","description":"Check here label"},"command_list_label":{"message":"Komandų sąrašas","description":"Command List label"},"imoji_list_label_new":{"message":"Jaustukų sąrašas","description":"imoji list label"},"symbol_list_label":{"message":"Matematinių simbolių sąrašas","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Pasakykite „mindfulness“, kad į teksto laukelį įterptumėte atsitiktinę minties mintį","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Spustelėkite žemiau esantį mygtuką, kad leistumėte garso leidimus, kad galėtumėte naudoti šį įrankį.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Pastaba: jei netyčia neleidote leidimų, galite jiems leisti spustelėti šio skirtuko paieškos juostos viršutinį kairįjį kampą","description":"audio permission extra info"},"allow_permission_label":{"message":"Leisti leidimą","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Prašome leisti leidimus, kad galėtumėte naudoti šį įrankį!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Dabar galite uždaryti šį skirtuką ir naudoti šį įrankį, jei norite balsu įvesti bet kurioje svetainėje!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Dabar spustelėkite bet kurį įvestį ir kalbėkite","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Sukurkite Morzės kodą","description":"cmc label"},"command_enable_disable_label":{"message":"Įjungti išjungti","description":"enable or disable command label"},"command_arrow_label":{"message":"rodyklė","description":"command arrow label"},"command_arrow_description":{"message":"Pasakykite „rodyklė kairėn“, kad įvestumėte kairės rodyklės klavišą. galimos komandos: rodyklė kairėn teisingai | viršuje | žemyn","description":"command arrow desc"},"left_label":{"message":"paliko","description":"left label"},"right_label":{"message":"teisingai","description":"right label"},"up_label":{"message":"aukštyn","description":"up label"},"down_label":{"message":"žemyn","description":"down label"},"command_search_label":{"message":"Paieška","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Pasakykite „search cat“ arba „Google cat“, kad ieškotumėte katės google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"skirtukas","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Pažymėkite šį puslapį","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"pašalinti žymę","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"pašalinti šią žymę","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Pasakykite „Pažymėti šį puslapį“ arba „Pašalinti žymę“, jei norite pridėti arba pašalinti žymę","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Pridėjo šį puslapį prie žymių!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Šis puslapis pašalintas iš žymių!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"žaisti","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Pasakykite „paleisti dainos pavadinimą“, ji atkurs dainą iš „YouTube“.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"rasti","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"paryškinti","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"neišryškinti","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Pasakykite „paryškinti raktinį žodį“, kad paryškintumėte raktinį žodį dabartiniame puslapyje ir atvirkščiai","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"anuliuoti","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"perdaryti","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"anuliuoti visus","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Pasakykite anuliuoti / perdaryti / anuliuoti visus, kad galėtumėte anuliuoti / perdaryti / anuliuoti visus.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Kitas","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ankstesnis","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Eikite į įvesties elementus sakydami kitą ir ankstesnį","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"slinkite aukštyn","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"slinkti žemyn","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Pasakykite, kad slinkite žemyn / slinkite aukštyn, kad slinktumėte puslapį.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"eiti į","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"aplankyti","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"atviras","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Pasakykite „eikite į facebook.com“, kad atidarytumėte facebook.com naujame skirtuke. Pasakykite „eiti į žymę žymės_pavadinimas“, kad atidarytumėte žymių URL.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"skirtukas","description":"bookmark"}} diff --git a/src/app/_locales/lv/messages.json b/src/app/_locales/lv/messages.json index 9bb83c2..d4717d4 100644 --- a/src/app/_locales/lv/messages.json +++ b/src/app/_locales/lv/messages.json @@ -1 +1 @@ -{"appName":{"message":"Runas atpazīšanas rīku komplekts","description":"app name"},"appDescription":{"message":"Aizpildiet jebkuru tīmekļa veidlapu, izmantojot tikai savu balsi!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Atļaut audio atļauju","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"noklikšķiniet šeit, lai atļautu audio atļauju","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Iestatījumi","description":"setting tab string"},"popup_mic_listening_label":{"message":"Klausīšanās","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Palīdzība","description":"help tab string"},"popup_help_heading_str":{"message":"Mēs esam šeit, lai palīdzētu","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ja jums ir radušās kādas problēmas, lūdzu, ziņojiet par to","description":"popup help tab description"},"here":{"message":"šeit","description":"word"},"popup_default_language_label_str":{"message":"Noklusējuma valoda","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Noklikšķiniet, lai mainītu noklusējuma valodu","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Noklikšķiniet šeit, lai ieslēgtu / izslēgtu runas atpazīšanu","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Atveriet iestatījumus","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Sāciet runas atpazīšanu, kad sākas Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Mainīt runas atpazīšanas valodu","description":"language change setting label"},"option_permission_success_msg":{"message":"Tagad jūs varat aizvērt šo cilni un izmantot šo rīku, lai ar balsi ierakstītu jebkurā vietnē.","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Lūdzu, atļaujiet atļaujas, lai izmantotu šo rīku!","description":"error message when user rejects permission"},"emoji":{"message":"emocijzīmes","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emocijzīmes nav atrastas!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Izmantojiet emocijzīmju diktēšanu (vairāk nekā 1800 emocijzīmes)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Meklējiet tuvākos emocijzīmes","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kā izmantot šo rīku?","description":"How to use this tool ? string"},"new_line_label":{"message":"jauna līnija","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Noklikšķiniet, lai redzētu balss komandas","description":"voice commands control label "},"popup_show_commands_label":{"message":"Rādīt komandas","description":"voice commands control label "},"commands_list_label":{"message":"Komandu saraksts valodai","description":"Commands List for language label"},"command_name_label":{"message":"Komandas nosaukums","description":"Command's Name label"},"command_description_label":{"message":"Komandas apraksts","description":"Command's Description label"},"command_emoji_description":{"message":"Sakiet “emocijzīmju emocijzīmju nosaukums”, lai ievietotu nedaudz līdzīgus emocijzīmes no 1800 emocijzīmju saraksta. izrakstīšanās iestatījumu lapā pilns emocijzīmju saraksts","description":"command emoji desc"},"command_newline_description":{"message":"Sakiet jaunu rindu, lai ierakstītu '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sakiet, nospiediet taustiņu Enter, lai nospiediet taustiņu Enter Noderīgi veidlapu iesniegšanai","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emociju valodas saraksts","description":"emoji list label"},"emoji_name_label":{"message":"Emocijzīmes nosaukums","description":"emoji name label"},"command_newline_description_new":{"message":"Sakiet jaunu rindu, lai iegūtu jaunu rindu.","description":"command newline desc"},"check_here_label":{"message":"Pārbaudiet šeit","description":"Check here label"},"imoji_list_label":{"message":"Pārbaudiet šeit","description":"Check here label"},"command_list_label":{"message":"Komandu saraksts","description":"Command List label"},"imoji_list_label_new":{"message":"Emociju saraksts","description":"imoji list label"},"symbol_list_label":{"message":"Matemātisko simbolu saraksts","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Uzmanība","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sakiet “mindfulness”, lai tekstlodziņā ievietotu nejaušu uzmanību","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Lūdzu, noklikšķiniet uz pogas zemāk, lai atļautu audio atļaujas, lai izmantotu šo rīku.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Piezīme. Ja nejauši esat neatļāvis atļaujas, varat atļaut tām noklikšķināt uz šīs cilnes meklēšanas joslas augšējā kreisajā stūrī","description":"audio permission extra info"},"allow_permission_label":{"message":"Atļaut atļauju","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Lūdzu, atļaujiet atļaujas, lai izmantotu šo rīku!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Tagad jūs varat aizvērt šo cilni un izmantot šo rīku, lai ar balsi ierakstītu jebkurā vietnē.","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Tagad noklikšķiniet uz jebkura ievades un runājiet","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Izveidojiet Morzes kodu","description":"cmc label"},"command_enable_disable_label":{"message":"Atļaut liegt","description":"enable or disable command label"},"command_arrow_label":{"message":"bultiņa","description":"command arrow label"},"command_arrow_description":{"message":"Sakiet “bultiņa pa kreisi”, lai ievadītu kreisās bultiņas taustiņu. iespējamās komandas: bultiņa pa kreisi | pareizi | uz augšu | uz leju","description":"command arrow desc"},"left_label":{"message":"pa kreisi","description":"left label"},"right_label":{"message":"pa labi","description":"right label"},"up_label":{"message":"uz augšu","description":"up label"},"down_label":{"message":"uz leju","description":"down label"},"command_go_to_label":{"message":"iet uz","description":"command go to label"},"command_go_to_description":{"message":"Sakiet, dodieties uz facebook.com, lai atvērtu jaunu cilni facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"apmeklējums","description":"command go to label 2"},"command_go_to_label3":{"message":"atvērts","description":"command go to label 3"},"command_search_label":{"message":"Meklēt","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sakiet meklēšanas kaķis vai google kaķis, lai meklētu kaķi vietnē google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"grāmatzīme","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"pievienojiet šai lapai grāmatzīmi","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"noņemt grāmatzīmi","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"noņemt šo grāmatzīmi","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sakiet “Grāmatzīmēt šo lapu” vai “Noņemt grāmatzīmi”, lai pievienotu vai noņemtu grāmatzīmi","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Pievienoja šo lapu grāmatzīmēm!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Šī lapa tika noņemta no grāmatzīmēm!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"spēlēt","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sakiet “play song_name”, tas atskaņos dziesmu no youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"atrast","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"izcelt","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"neizcelt","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sakiet “izcelt atslēgvārdu”, lai izceltu atslēgvārdu pašreizējā lapā, un otrādi","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"atsaukt","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"pārtaisīt","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"atsaukt visus","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sakiet atsaukt / atsaukt / atsaukt visus, lai veiktu atsaukšanu / atsaukšanu / atsaukšanu.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Nākamais","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"iepriekšējā","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Pārejiet uz ievades elementiem, sakot nākamo un iepriekšējo","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ritināt uz augšu","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"ritināt uz leju","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sakiet, ka ritiniet uz leju / ritiniet uz augšu, lai ritinātu lapu.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Runas atpazīšanas rīku komplekts","description":"app name"},"appDescription":{"message":"Aizpildiet jebkuru tīmekļa veidlapu, izmantojot tikai savu balsi!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Atļaut audio atļauju","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"noklikšķiniet šeit, lai atļautu audio atļauju","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Iestatījumi","description":"setting tab string"},"popup_mic_listening_label":{"message":"Klausīšanās","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Palīdzība","description":"help tab string"},"popup_help_heading_str":{"message":"Mēs esam šeit, lai palīdzētu","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ja jums ir radušās kādas problēmas, lūdzu, ziņojiet par to","description":"popup help tab description"},"here":{"message":"šeit","description":"word"},"popup_default_language_label_str":{"message":"Noklusējuma valoda","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Noklikšķiniet, lai mainītu noklusējuma valodu","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Noklikšķiniet šeit, lai ieslēgtu / izslēgtu runas atpazīšanu","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Atveriet iestatījumus","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Sāciet runas atpazīšanu, kad sākas Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Mainīt runas atpazīšanas valodu","description":"language change setting label"},"option_permission_success_msg":{"message":"Tagad jūs varat aizvērt šo cilni un izmantot šo rīku, lai ar balsi ierakstītu jebkurā vietnē.","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Lūdzu, atļaujiet atļaujas, lai izmantotu šo rīku!","description":"error message when user rejects permission"},"emoji":{"message":"emocijzīmes","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emocijzīmes nav atrastas!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Izmantojiet emocijzīmju diktēšanu (vairāk nekā 1800 emocijzīmes)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Meklējiet tuvākos emocijzīmes","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kā izmantot šo rīku?","description":"How to use this tool ? string"},"new_line_label":{"message":"jauna līnija","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Noklikšķiniet, lai redzētu balss komandas","description":"voice commands control label "},"popup_show_commands_label":{"message":"Rādīt komandas","description":"voice commands control label "},"commands_list_label":{"message":"Komandu saraksts valodai","description":"Commands List for language label"},"command_name_label":{"message":"Komandas nosaukums","description":"Command's Name label"},"command_description_label":{"message":"Komandas apraksts","description":"Command's Description label"},"command_emoji_description":{"message":"Sakiet “emocijzīmju emocijzīmju nosaukums”, lai ievietotu nedaudz līdzīgus emocijzīmes no 1800 emocijzīmju saraksta. izrakstīšanās iestatījumu lapā pilns emocijzīmju saraksts","description":"command emoji desc"},"command_newline_description":{"message":"Sakiet jaunu rindu, lai ierakstītu '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sakiet, nospiediet taustiņu Enter, lai nospiediet taustiņu Enter Noderīgi veidlapu iesniegšanai","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emociju valodas saraksts","description":"emoji list label"},"emoji_name_label":{"message":"Emocijzīmes nosaukums","description":"emoji name label"},"command_newline_description_new":{"message":"Sakiet jaunu rindu, lai iegūtu jaunu rindu.","description":"command newline desc"},"check_here_label":{"message":"Pārbaudiet šeit","description":"Check here label"},"imoji_list_label":{"message":"Pārbaudiet šeit","description":"Check here label"},"command_list_label":{"message":"Komandu saraksts","description":"Command List label"},"imoji_list_label_new":{"message":"Emociju saraksts","description":"imoji list label"},"symbol_list_label":{"message":"Matemātisko simbolu saraksts","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Uzmanība","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sakiet “mindfulness”, lai tekstlodziņā ievietotu nejaušu uzmanību","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Lūdzu, noklikšķiniet uz pogas zemāk, lai atļautu audio atļaujas, lai izmantotu šo rīku.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Piezīme. Ja nejauši esat neatļāvis atļaujas, varat atļaut tām noklikšķināt uz šīs cilnes meklēšanas joslas augšējā kreisajā stūrī","description":"audio permission extra info"},"allow_permission_label":{"message":"Atļaut atļauju","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Lūdzu, atļaujiet atļaujas, lai izmantotu šo rīku!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Tagad jūs varat aizvērt šo cilni un izmantot šo rīku, lai ar balsi ierakstītu jebkurā vietnē.","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Tagad noklikšķiniet uz jebkura ievades un runājiet","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Izveidojiet Morzes kodu","description":"cmc label"},"command_enable_disable_label":{"message":"Atļaut liegt","description":"enable or disable command label"},"command_arrow_label":{"message":"bultiņa","description":"command arrow label"},"command_arrow_description":{"message":"Sakiet “bultiņa pa kreisi”, lai ievadītu kreisās bultiņas taustiņu. iespējamās komandas: bultiņa pa kreisi | pareizi | uz augšu | uz leju","description":"command arrow desc"},"left_label":{"message":"pa kreisi","description":"left label"},"right_label":{"message":"pa labi","description":"right label"},"up_label":{"message":"uz augšu","description":"up label"},"down_label":{"message":"uz leju","description":"down label"},"command_search_label":{"message":"Meklēt","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sakiet meklēšanas kaķis vai google kaķis, lai meklētu kaķi vietnē google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"grāmatzīme","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"pievienojiet šai lapai grāmatzīmi","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"noņemt grāmatzīmi","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"noņemt šo grāmatzīmi","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sakiet “Grāmatzīmēt šo lapu” vai “Noņemt grāmatzīmi”, lai pievienotu vai noņemtu grāmatzīmi","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Pievienoja šo lapu grāmatzīmēm!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Šī lapa tika noņemta no grāmatzīmēm!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"spēlēt","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sakiet “play song_name”, tas atskaņos dziesmu no youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"atrast","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"izcelt","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"neizcelt","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sakiet “izcelt atslēgvārdu”, lai izceltu atslēgvārdu pašreizējā lapā, un otrādi","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"atsaukt","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"pārtaisīt","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"atsaukt visus","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sakiet atsaukt / atsaukt / atsaukt visus, lai veiktu atsaukšanu / atsaukšanu / atsaukšanu.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Nākamais","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"iepriekšējā","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Pārejiet uz ievades elementiem, sakot nākamo un iepriekšējo","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"ritināt uz augšu","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"ritināt uz leju","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sakiet, ka ritiniet uz leju / ritiniet uz augšu, lai ritinātu lapu.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"iet uz","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"apmeklējums","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"atvērts","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Sakiet “doties uz facebook.com”, lai atvērtu facebook.com jaunā cilnē. Sakiet “doties uz grāmatzīmi grāmatzīmes_nosaukums”, lai atvērtu grāmatzīmju URL.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"grāmatzīme","description":"bookmark"}} diff --git a/src/app/_locales/ml/messages.json b/src/app/_locales/ml/messages.json index 086f5ae..83bb872 100644 --- a/src/app/_locales/ml/messages.json +++ b/src/app/_locales/ml/messages.json @@ -1 +1 @@ -{"appName":{"message":"സ്പീച്ച് റെക്കഗ്നിഷൻ ടൂൾകിറ്റ്","description":"app name"},"appDescription":{"message":"നിങ്ങളുടെ ശബ്‌ദം മാത്രം ഉപയോഗിച്ച് ഏതെങ്കിലും വെബ് ഫോം പൂരിപ്പിക്കുക!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ഓഡിയോ അനുമതി അനുവദിക്കുക","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ഓഡിയോ അനുമതി അനുവദിക്കുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"ക്രമീകരണങ്ങൾ","description":"setting tab string"},"popup_mic_listening_label":{"message":"ശ്രദ്ധിക്കുന്നു","description":"label when mic is listening"},"popup_help_tab_str":{"message":"സഹായിക്കൂ","description":"help tab string"},"popup_help_heading_str":{"message":"സഹായിക്കാൻ ഞങ്ങൾ ഇവിടെയുണ്ട്","description":"popup help tab heading"},"popup_help_desc_str":{"message":"നിങ്ങൾക്ക് എന്തെങ്കിലും പ്രശ്‌നം നേരിട്ടിട്ടുണ്ടെങ്കിൽ, അത് റിപ്പോർട്ടുചെയ്യുക","description":"popup help tab description"},"here":{"message":"ഇവിടെ","description":"word"},"popup_default_language_label_str":{"message":"സ്ഥിര ഭാഷ","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"സ്ഥിരസ്ഥിതി ഭാഷ മാറ്റാൻ ക്ലിക്കുചെയ്യുക","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"സംഭാഷണ തിരിച്ചറിയൽ ഓൺ / ഓഫ് ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ക്രമീകരണങ്ങൾ തുറക്കുക","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ആരംഭിക്കുമ്പോൾ 'സ്പീച്ച് റെക്കഗ്നിഷൻ' ആരംഭിക്കുക","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"സംഭാഷണ തിരിച്ചറിയൽ ഭാഷ മാറ്റുക","description":"language change setting label"},"option_permission_success_msg":{"message":"ഇപ്പോൾ നിങ്ങൾക്ക് ഈ ടാബ് അടച്ച് നിങ്ങളുടെ ശബ്‌ദം ഉപയോഗിച്ച് ഏത് വെബ്‌സൈറ്റിലും ടൈപ്പുചെയ്യാൻ ഈ ഉപകരണം ഉപയോഗിക്കാം!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"ഈ ഉപകരണം ഉപയോഗിക്കുന്നതിന് ദയവായി അനുമതികൾ അനുവദിക്കുക!","description":"error message when user rejects permission"},"emoji":{"message":"ഇമോജി","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ഇമോജി കണ്ടെത്തിയില്ല!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ഇമോജി ഡിക്ടേഷൻ ഉപയോഗിക്കുക (1800 ൽ കൂടുതൽ ഇമോജികൾ)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ഏറ്റവും ശബ്‌ദമുള്ള ഇമോജികൾക്കായി തിരയുക","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ഈ ഉപകരണം എങ്ങനെ ഉപയോഗിക്കാം?","description":"How to use this tool ? string"},"new_line_label":{"message":"പുതിയ വര","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"വോയ്‌സ് കമാൻഡുകൾ കാണാൻ ക്ലിക്കുചെയ്യുക","description":"voice commands control label "},"popup_show_commands_label":{"message":"കമാൻഡുകൾ കാണിക്കുക","description":"voice commands control label "},"commands_list_label":{"message":"ഭാഷയ്ക്കുള്ള കമാൻഡുകളുടെ പട്ടിക","description":"Commands List for language label"},"command_name_label":{"message":"കമാൻഡിന്റെ പേര്","description":"Command's Name label"},"command_description_label":{"message":"കമാൻഡിന്റെ വിവരണം","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ഇമോജികളുടെ പട്ടികയിൽ‌ നിന്നും സമാനമായ ഇമോജികൾ‌ ചേർ‌ക്കുന്നതിന് 'ഇമോജി ഇമോജിയുടെ പേര്' എന്ന് പറയുക. ക്രമീകരണ പേജിലെ ഇമോജികളുടെ പൂർണ്ണ പട്ടിക പരിശോധിക്കുക","description":"command emoji desc"},"command_newline_description":{"message":"'' എന്ന് ടൈപ്പുചെയ്യാൻ പുതിയ വരി പറയുക.","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' കീ അമർത്താൻ എന്റർ അമർത്തുക. ഫോമുകൾ സമർപ്പിക്കാൻ ഉപയോഗപ്രദമാണ്","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ഭാഷയ്‌ക്കായുള്ള ഇമോജിയുടെ പട്ടിക","description":"emoji list label"},"emoji_name_label":{"message":"ഇമോജിയുടെ പേര്","description":"emoji name label"},"command_newline_description_new":{"message":"ഒരു പുതിയ ലൈൻ ലഭിക്കാൻ പുതിയ ലൈൻ പറയുക.","description":"command newline desc"},"check_here_label":{"message":"ഇവിടെ പരിശോധിക്കുക","description":"Check here label"},"imoji_list_label":{"message":"ഇവിടെ പരിശോധിക്കുക","description":"Check here label"},"command_list_label":{"message":"കമാൻഡ് ലിസ്റ്റ്","description":"Command List label"},"imoji_list_label_new":{"message":"ഇമോജി പട്ടിക","description":"imoji list label"},"symbol_list_label":{"message":"ഗണിത ചിഹ്നങ്ങളുടെ പട്ടിക","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"മനസ്സ്","description":"Mindfulness command"},"command_mindfulness_description":{"message":"ടെക്സ്റ്റ് ബോക്സിൽ ക്രമരഹിതമായ ചിന്താഗതി ഉൾപ്പെടുത്താൻ 'മന ful പൂർവ്വം' പറയുക","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ഈ ഉപകരണം ഉപയോഗിക്കുന്നതിന് ഓഡിയോ അനുമതികൾ അനുവദിക്കുന്നതിന് ചുവടെയുള്ള ബട്ടണിൽ ക്ലിക്കുചെയ്യുക.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"കുറിപ്പ്: നിങ്ങൾ ആകസ്മികമായി അനുമതികൾ അനുവദിച്ചിട്ടില്ലെങ്കിൽ, ഈ ടാബിന്റെ തിരയൽ ബാറിന്റെ മുകളിൽ ഇടത് കോണിൽ ക്ലിക്കുചെയ്യുന്നതിൽ നിന്ന് നിങ്ങൾക്ക് അവരെ അനുവദിക്കാം","description":"audio permission extra info"},"allow_permission_label":{"message":"അനുമതി അനുവദിക്കുക","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"ഈ ഉപകരണം ഉപയോഗിക്കുന്നതിന് ദയവായി അനുമതികൾ അനുവദിക്കുക!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ഇപ്പോൾ നിങ്ങൾക്ക് ഈ ടാബ് അടച്ച് നിങ്ങളുടെ ശബ്‌ദം ഉപയോഗിച്ച് ഏത് വെബ്‌സൈറ്റിലും ടൈപ്പുചെയ്യാൻ ഈ ഉപകരണം ഉപയോഗിക്കാം!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ഇപ്പോൾ ഏതെങ്കിലും ഇൻപുട്ടിൽ ക്ലിക്കുചെയ്‌ത് സംസാരിക്കുക","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"മോഴ്സ് കോഡ് സൃഷ്ടിക്കുക","description":"cmc label"},"command_enable_disable_label":{"message":"പ്രവർത്തനക്ഷമമാക്കുക / അപ്രാപ്‌തമാക്കുക","description":"enable or disable command label"},"command_arrow_label":{"message":"അമ്പടയാളം","description":"command arrow label"},"command_arrow_description":{"message":"ഇടത് അമ്പടയാള കീ ടൈപ്പുചെയ്യാൻ 'അമ്പടയാളം' എന്ന് പറയുക. സാധ്യമായ കമാൻഡുകൾ: അമ്പടയാളം ഇടത് | വലത് | മുകളിൽ | താഴേക്ക്","description":"command arrow desc"},"left_label":{"message":"ഇടത്തെ","description":"left label"},"right_label":{"message":"ശരി","description":"right label"},"up_label":{"message":"മുകളിലേക്ക്","description":"up label"},"down_label":{"message":"താഴേക്ക്","description":"down label"},"command_go_to_label":{"message":"എന്നതിലേക്ക് പോകുക","description":"command go to label"},"command_go_to_description":{"message":"Facebook.com- നായി പുതിയ ടാബ് തുറക്കാൻ facebook.com ലേക്ക് പോകുക എന്ന് പറയുക","description":"command go to description"},"command_go_to_label2":{"message":"സന്ദർശിക്കുക","description":"command go to label 2"},"command_go_to_label3":{"message":"തുറക്കുക","description":"command go to label 3"},"command_search_label":{"message":"തിരയൽ","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Google.com- ൽ പൂച്ചയെ തിരയാൻ തിരയൽ പൂച്ച അല്ലെങ്കിൽ ഗൂഗിൾ പൂച്ച എന്ന് പറയുക","description":"command go to label 3"},"command_bookmark_label":{"message":"ബുക്ക്മാർക്ക്","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ഈ പേജ് ബുക്ക്മാർക്ക് ചെയ്യുക","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ബുക്ക്മാർക്ക് നീക്കംചെയ്യുക","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ഈ ബുക്ക്മാർക്ക് നീക്കംചെയ്യുക","description":"command bookmark label 4"},"command_bookmark_description":{"message":"ബുക്ക്മാർക്ക് ചേർക്കാനോ നീക്കംചെയ്യാനോ 'ഈ പേജ് ബുക്ക്മാർക്ക് ചെയ്യുക' അല്ലെങ്കിൽ 'ബുക്ക്മാർക്ക് നീക്കംചെയ്യുക' എന്ന് പറയുക","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ബുക്ക്മാർക്കുകളിലേക്ക് ഈ പേജ് ചേർത്തു!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"ബുക്ക്മാർക്കുകളിൽ നിന്ന് ഈ പേജ് നീക്കംചെയ്‌തു!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"കളിക്കുക","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Play song_name' എന്ന് പറയുക, അത് യൂട്യൂബിൽ നിന്നുള്ള ഗാനം പ്ലേ ചെയ്യും.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"കണ്ടെത്തുക","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ഹൈലൈറ്റ് ചെയ്യുക","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ഹൈലൈറ്റ്","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"നിലവിലെ പേജിലെ കീവേഡ് ഹൈലൈറ്റ് ചെയ്യുന്നതിന് 'കീവേഡ് ഹൈലൈറ്റ് ചെയ്യുക' എന്ന് പറയുക","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"പഴയപടിയാക്കുക","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"വീണ്ടും ചെയ്യുക","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"എല്ലാം പഴയപടിയാക്കുക","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"എല്ലാം പഴയപടിയാക്കുക / വീണ്ടും ചെയ്യുക / പൂർവാവസ്ഥയിലാക്കുക എന്ന് പറയുക.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"അടുത്തത്","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"മുമ്പത്തെ","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"അടുത്തതും മുമ്പത്തേതും പറഞ്ഞുകൊണ്ട് ഇൻപുട്ട് ഘടകങ്ങളിലേക്ക് നാവിഗേറ്റുചെയ്യുക","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"മുകളിലേക്ക് സ്ക്രോൾ ചെയ്യുക","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"താഴേക്ക് സ്ക്രോൾ ചെയ്യുക","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"പേജ് സ്ക്രോൾ ചെയ്യുന്നതിന് താഴേക്ക് സ്ക്രോൾ ചെയ്യുക / മുകളിലേക്ക് സ്ക്രോൾ ചെയ്യുക എന്ന് പറയുക.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"സ്പീച്ച് റെക്കഗ്നിഷൻ ടൂൾകിറ്റ്","description":"app name"},"appDescription":{"message":"നിങ്ങളുടെ ശബ്‌ദം മാത്രം ഉപയോഗിച്ച് ഏതെങ്കിലും വെബ് ഫോം പൂരിപ്പിക്കുക!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ഓഡിയോ അനുമതി അനുവദിക്കുക","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ഓഡിയോ അനുമതി അനുവദിക്കുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"ക്രമീകരണങ്ങൾ","description":"setting tab string"},"popup_mic_listening_label":{"message":"ശ്രദ്ധിക്കുന്നു","description":"label when mic is listening"},"popup_help_tab_str":{"message":"സഹായിക്കൂ","description":"help tab string"},"popup_help_heading_str":{"message":"സഹായിക്കാൻ ഞങ്ങൾ ഇവിടെയുണ്ട്","description":"popup help tab heading"},"popup_help_desc_str":{"message":"നിങ്ങൾക്ക് എന്തെങ്കിലും പ്രശ്‌നം നേരിട്ടിട്ടുണ്ടെങ്കിൽ, അത് റിപ്പോർട്ടുചെയ്യുക","description":"popup help tab description"},"here":{"message":"ഇവിടെ","description":"word"},"popup_default_language_label_str":{"message":"സ്ഥിര ഭാഷ","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"സ്ഥിരസ്ഥിതി ഭാഷ മാറ്റാൻ ക്ലിക്കുചെയ്യുക","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"സംഭാഷണ തിരിച്ചറിയൽ ഓൺ / ഓഫ് ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"ക്രമീകരണങ്ങൾ തുറക്കുക","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ആരംഭിക്കുമ്പോൾ 'സ്പീച്ച് റെക്കഗ്നിഷൻ' ആരംഭിക്കുക","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"സംഭാഷണ തിരിച്ചറിയൽ ഭാഷ മാറ്റുക","description":"language change setting label"},"option_permission_success_msg":{"message":"ഇപ്പോൾ നിങ്ങൾക്ക് ഈ ടാബ് അടച്ച് നിങ്ങളുടെ ശബ്‌ദം ഉപയോഗിച്ച് ഏത് വെബ്‌സൈറ്റിലും ടൈപ്പുചെയ്യാൻ ഈ ഉപകരണം ഉപയോഗിക്കാം!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"ഈ ഉപകരണം ഉപയോഗിക്കുന്നതിന് ദയവായി അനുമതികൾ അനുവദിക്കുക!","description":"error message when user rejects permission"},"emoji":{"message":"ഇമോജി","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ഇമോജി കണ്ടെത്തിയില്ല!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ഇമോജി ഡിക്ടേഷൻ ഉപയോഗിക്കുക (1800 ൽ കൂടുതൽ ഇമോജികൾ)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ഏറ്റവും ശബ്‌ദമുള്ള ഇമോജികൾക്കായി തിരയുക","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ഈ ഉപകരണം എങ്ങനെ ഉപയോഗിക്കാം?","description":"How to use this tool ? string"},"new_line_label":{"message":"പുതിയ വര","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"വോയ്‌സ് കമാൻഡുകൾ കാണാൻ ക്ലിക്കുചെയ്യുക","description":"voice commands control label "},"popup_show_commands_label":{"message":"കമാൻഡുകൾ കാണിക്കുക","description":"voice commands control label "},"commands_list_label":{"message":"ഭാഷയ്ക്കുള്ള കമാൻഡുകളുടെ പട്ടിക","description":"Commands List for language label"},"command_name_label":{"message":"കമാൻഡിന്റെ പേര്","description":"Command's Name label"},"command_description_label":{"message":"കമാൻഡിന്റെ വിവരണം","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ഇമോജികളുടെ പട്ടികയിൽ‌ നിന്നും സമാനമായ ഇമോജികൾ‌ ചേർ‌ക്കുന്നതിന് 'ഇമോജി ഇമോജിയുടെ പേര്' എന്ന് പറയുക. ക്രമീകരണ പേജിലെ ഇമോജികളുടെ പൂർണ്ണ പട്ടിക പരിശോധിക്കുക","description":"command emoji desc"},"command_newline_description":{"message":"'' എന്ന് ടൈപ്പുചെയ്യാൻ പുതിയ വരി പറയുക.","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' കീ അമർത്താൻ എന്റർ അമർത്തുക. ഫോമുകൾ സമർപ്പിക്കാൻ ഉപയോഗപ്രദമാണ്","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"ഭാഷയ്‌ക്കായുള്ള ഇമോജിയുടെ പട്ടിക","description":"emoji list label"},"emoji_name_label":{"message":"ഇമോജിയുടെ പേര്","description":"emoji name label"},"command_newline_description_new":{"message":"ഒരു പുതിയ ലൈൻ ലഭിക്കാൻ പുതിയ ലൈൻ പറയുക.","description":"command newline desc"},"check_here_label":{"message":"ഇവിടെ പരിശോധിക്കുക","description":"Check here label"},"imoji_list_label":{"message":"ഇവിടെ പരിശോധിക്കുക","description":"Check here label"},"command_list_label":{"message":"കമാൻഡ് ലിസ്റ്റ്","description":"Command List label"},"imoji_list_label_new":{"message":"ഇമോജി പട്ടിക","description":"imoji list label"},"symbol_list_label":{"message":"ഗണിത ചിഹ്നങ്ങളുടെ പട്ടിക","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"മനസ്സ്","description":"Mindfulness command"},"command_mindfulness_description":{"message":"ടെക്സ്റ്റ് ബോക്സിൽ ക്രമരഹിതമായ ചിന്താഗതി ഉൾപ്പെടുത്താൻ 'മന ful പൂർവ്വം' പറയുക","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ഈ ഉപകരണം ഉപയോഗിക്കുന്നതിന് ഓഡിയോ അനുമതികൾ അനുവദിക്കുന്നതിന് ചുവടെയുള്ള ബട്ടണിൽ ക്ലിക്കുചെയ്യുക.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"കുറിപ്പ്: നിങ്ങൾ ആകസ്മികമായി അനുമതികൾ അനുവദിച്ചിട്ടില്ലെങ്കിൽ, ഈ ടാബിന്റെ തിരയൽ ബാറിന്റെ മുകളിൽ ഇടത് കോണിൽ ക്ലിക്കുചെയ്യുന്നതിൽ നിന്ന് നിങ്ങൾക്ക് അവരെ അനുവദിക്കാം","description":"audio permission extra info"},"allow_permission_label":{"message":"അനുമതി അനുവദിക്കുക","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"ഈ ഉപകരണം ഉപയോഗിക്കുന്നതിന് ദയവായി അനുമതികൾ അനുവദിക്കുക!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ഇപ്പോൾ നിങ്ങൾക്ക് ഈ ടാബ് അടച്ച് നിങ്ങളുടെ ശബ്‌ദം ഉപയോഗിച്ച് ഏത് വെബ്‌സൈറ്റിലും ടൈപ്പുചെയ്യാൻ ഈ ഉപകരണം ഉപയോഗിക്കാം!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ഇപ്പോൾ ഏതെങ്കിലും ഇൻപുട്ടിൽ ക്ലിക്കുചെയ്‌ത് സംസാരിക്കുക","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"മോഴ്സ് കോഡ് സൃഷ്ടിക്കുക","description":"cmc label"},"command_enable_disable_label":{"message":"പ്രവർത്തനക്ഷമമാക്കുക / അപ്രാപ്‌തമാക്കുക","description":"enable or disable command label"},"command_arrow_label":{"message":"അമ്പടയാളം","description":"command arrow label"},"command_arrow_description":{"message":"ഇടത് അമ്പടയാള കീ ടൈപ്പുചെയ്യാൻ 'അമ്പടയാളം' എന്ന് പറയുക. സാധ്യമായ കമാൻഡുകൾ: അമ്പടയാളം ഇടത് | വലത് | മുകളിൽ | താഴേക്ക്","description":"command arrow desc"},"left_label":{"message":"ഇടത്തെ","description":"left label"},"right_label":{"message":"ശരി","description":"right label"},"up_label":{"message":"മുകളിലേക്ക്","description":"up label"},"down_label":{"message":"താഴേക്ക്","description":"down label"},"command_search_label":{"message":"തിരയൽ","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Google.com- ൽ പൂച്ചയെ തിരയാൻ തിരയൽ പൂച്ച അല്ലെങ്കിൽ ഗൂഗിൾ പൂച്ച എന്ന് പറയുക","description":"command go to label 3"},"command_bookmark_label":{"message":"ബുക്ക്മാർക്ക്","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ഈ പേജ് ബുക്ക്മാർക്ക് ചെയ്യുക","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ബുക്ക്മാർക്ക് നീക്കംചെയ്യുക","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ഈ ബുക്ക്മാർക്ക് നീക്കംചെയ്യുക","description":"command bookmark label 4"},"command_bookmark_description":{"message":"ബുക്ക്മാർക്ക് ചേർക്കാനോ നീക്കംചെയ്യാനോ 'ഈ പേജ് ബുക്ക്മാർക്ക് ചെയ്യുക' അല്ലെങ്കിൽ 'ബുക്ക്മാർക്ക് നീക്കംചെയ്യുക' എന്ന് പറയുക","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ബുക്ക്മാർക്കുകളിലേക്ക് ഈ പേജ് ചേർത്തു!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"ബുക്ക്മാർക്കുകളിൽ നിന്ന് ഈ പേജ് നീക്കംചെയ്‌തു!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"കളിക്കുക","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Play song_name' എന്ന് പറയുക, അത് യൂട്യൂബിൽ നിന്നുള്ള ഗാനം പ്ലേ ചെയ്യും.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"കണ്ടെത്തുക","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ഹൈലൈറ്റ് ചെയ്യുക","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ഹൈലൈറ്റ്","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"നിലവിലെ പേജിലെ കീവേഡ് ഹൈലൈറ്റ് ചെയ്യുന്നതിന് 'കീവേഡ് ഹൈലൈറ്റ് ചെയ്യുക' എന്ന് പറയുക","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"പഴയപടിയാക്കുക","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"വീണ്ടും ചെയ്യുക","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"എല്ലാം പഴയപടിയാക്കുക","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"എല്ലാം പഴയപടിയാക്കുക / വീണ്ടും ചെയ്യുക / പൂർവാവസ്ഥയിലാക്കുക എന്ന് പറയുക.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"അടുത്തത്","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"മുമ്പത്തെ","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"അടുത്തതും മുമ്പത്തേതും പറഞ്ഞുകൊണ്ട് ഇൻപുട്ട് ഘടകങ്ങളിലേക്ക് നാവിഗേറ്റുചെയ്യുക","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"മുകളിലേക്ക് സ്ക്രോൾ ചെയ്യുക","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"താഴേക്ക് സ്ക്രോൾ ചെയ്യുക","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"പേജ് സ്ക്രോൾ ചെയ്യുന്നതിന് താഴേക്ക് സ്ക്രോൾ ചെയ്യുക / മുകളിലേക്ക് സ്ക്രോൾ ചെയ്യുക എന്ന് പറയുക.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"എന്നതിലേക്ക് പോകുക","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"സന്ദർശിക്കുക","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"തുറക്കുക","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"പുതിയ ടാബിൽ facebook.com തുറക്കാൻ 'facebook.com ലേക്ക് പോകുക' എന്ന് പറയുക. ബുക്ക്മാർക്ക് url തുറക്കുന്നതിന് 'ബുക്ക്മാർക്ക് ബുക്ക്മാർക്ക്_നാമത്തിലേക്ക് പോകുക' എന്ന് പറയുക.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"ബുക്ക്മാർക്ക്","description":"bookmark"}} diff --git a/src/app/_locales/mr/messages.json b/src/app/_locales/mr/messages.json index cf1746b..585ed8d 100644 --- a/src/app/_locales/mr/messages.json +++ b/src/app/_locales/mr/messages.json @@ -1 +1 @@ -{"appName":{"message":"स्पीच रिकग्निशन टूलकिट","description":"app name"},"appDescription":{"message":"केवळ आपला आवाज वापरुन कोणताही वेब फॉर्म भरा!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ऑडिओ परवानगीस परवानगी द्या","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ऑडिओ परवानगीस परवानगी देण्यासाठी येथे क्लिक करा","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"सेटिंग्ज","description":"setting tab string"},"popup_mic_listening_label":{"message":"ऐकत आहे","description":"label when mic is listening"},"popup_help_tab_str":{"message":"मदत करा","description":"help tab string"},"popup_help_heading_str":{"message":"आम्ही मदतीसाठी येथे आहोत","description":"popup help tab heading"},"popup_help_desc_str":{"message":"आपणास कोणतीही समस्या असल्यास, कृपया त्याचा अहवाल द्या","description":"popup help tab description"},"here":{"message":"येथे","description":"word"},"popup_default_language_label_str":{"message":"डीफॉल्ट भाषा","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"डीफॉल्ट भाषा बदलण्यासाठी क्लिक करा","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"भाषण ओळख चालू / बंद करण्यासाठी येथे क्लिक करा","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"सेटिंग्ज उघडा","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"जेव्हा Chrome प्रारंभ होईल तेव्हा 'भाषण ओळख' प्रारंभ करा","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"उच्चार ओळख भाषा बदला","description":"language change setting label"},"option_permission_success_msg":{"message":"आता आपण हा टॅब बंद करू शकता आणि आपल्या डिव्हाइसवर कोणत्याही वेबसाइटवर टाइप करण्यासाठी हे साधन वापरू शकता!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"कृपया हे साधन वापरण्यासाठी परवानग्यांना अनुमती द्या!","description":"error message when user rejects permission"},"emoji":{"message":"इमोजी","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"इमोजी सापडला नाही!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"इमोजी डिक्टेशन वापरा (1800 पेक्षा जास्त इमोजी)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"जवळच्या आवाजात इमोजी शोधा","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"हे साधन कसे वापरावे?","description":"How to use this tool ? string"},"new_line_label":{"message":"नवीन ओळ","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"व्हॉईस आज्ञा पाहण्यासाठी क्लिक करा","description":"voice commands control label "},"popup_show_commands_label":{"message":"आज्ञा दाखवा","description":"voice commands control label "},"commands_list_label":{"message":"भाषेसाठी आदेश सूची","description":"Commands List for language label"},"command_name_label":{"message":"कमांडचे नाव","description":"Command's Name label"},"command_description_label":{"message":"आदेशाचे वर्णन","description":"Command's Description label"},"command_emoji_description":{"message":"1800 इमोजींच्या सूचीतून काहीसे समान इमोजी घालण्यासाठी 'इमोजी इमोजीचे नाव' म्हणा. सेटिंग पृष्ठावर इमोजीची संपूर्ण यादी चेकआऊट करा","description":"command emoji desc"},"command_newline_description":{"message":"टाइप करण्यासाठी नवीन ओळ म्हणा.","description":"command newline desc"},"command_press_enter_description":{"message":"एंटर दाबा, एंटर दाबा. फॉर्म सबमिट करण्यासाठी उपयुक्त","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"भाषेसाठी इमोजीची यादी","description":"emoji list label"},"emoji_name_label":{"message":"इमोजीचे नाव","description":"emoji name label"},"command_newline_description_new":{"message":"नवीन ओळ मिळविण्यासाठी नवीन ओळ म्हणा.","description":"command newline desc"},"check_here_label":{"message":"येथे तपासा","description":"Check here label"},"imoji_list_label":{"message":"येथे तपासा","description":"Check here label"},"command_list_label":{"message":"आदेश यादी","description":"Command List label"},"imoji_list_label_new":{"message":"इमोजी यादी","description":"imoji list label"},"symbol_list_label":{"message":"गणिताची चिन्हे यादी","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"माइंडफुलनेस","description":"Mindfulness command"},"command_mindfulness_description":{"message":"मजकूर बॉक्समध्ये यादृच्छिक मानसिकतेचा विचार घालण्यासाठी 'माइंडफुलनेस' म्हणा","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"हे साधन वापरण्यासाठी ऑडिओ परवानग्यांना परवानगी देण्यासाठी कृपया खालील बटणावर क्लिक करा.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"टीप: जर आपण चुकून परवानग्यांना परवानगी नाकारली असेल तर आपण या टॅबच्या शोध बारच्या वरच्या डाव्या कोपर्‍यावर क्लिक करुन त्यांना परवानगी देऊ शकता.","description":"audio permission extra info"},"allow_permission_label":{"message":"परवानगी द्या","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"कृपया हे साधन वापरण्यासाठी परवानग्यांना अनुमती द्या!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"आता आपण हा टॅब बंद करू शकता आणि आपल्या डिव्हाइसवर कोणत्याही वेबसाइटवर टाइप करण्यासाठी हे साधन वापरू शकता!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* आता कोणत्याही इनपुटवर क्लिक करा आणि बोला","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"मोर्स कोड तयार करा","description":"cmc label"},"command_enable_disable_label":{"message":"सक्षम / अक्षम करा","description":"enable or disable command label"},"command_arrow_label":{"message":"बाण","description":"command arrow label"},"command_arrow_description":{"message":"डाव्या बाण की टाइप करण्यासाठी 'एरो डावीकडे' म्हणा. संभाव्य आज्ञा: बाण बाकी | बरोबर | शीर्ष | खाली","description":"command arrow desc"},"left_label":{"message":"डावीकडे","description":"left label"},"right_label":{"message":"बरोबर","description":"right label"},"up_label":{"message":"वर","description":"up label"},"down_label":{"message":"खाली","description":"down label"},"command_go_to_label":{"message":"जा","description":"command go to label"},"command_go_to_description":{"message":"फेसबूक डॉट कॉमसाठी नवीन टॅब उघडण्यासाठी 'फेसबुक डॉट कॉम' वर जा म्हणा","description":"command go to description"},"command_go_to_label2":{"message":"भेट","description":"command go to label 2"},"command_go_to_label3":{"message":"उघडा","description":"command go to label 3"},"command_search_label":{"message":"शोध","description":"command search label"},"command_search_label2":{"message":"गूगल","description":"command go to label 2"},"command_search_description":{"message":"Google.com वर मांजरी शोधण्यासाठी शोध मांजर किंवा Google मांजर म्हणा","description":"command go to label 3"},"command_bookmark_label":{"message":"बुकमार्क","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"हे पृष्ठ बुकमार्क करा","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"बुकमार्क काढा","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"हा बुकमार्क काढा","description":"command bookmark label 4"},"command_bookmark_description":{"message":"बुकमार्क जोडण्यासाठी किंवा काढण्यासाठी 'हे पृष्ठ बुकमार्क करा' किंवा 'बुकमार्क काढा' म्हणा","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"हे पृष्ठ बुकमार्कमध्ये जोडले!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"हे पृष्ठ बुकमार्कवरून काढले!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"खेळा","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"म्हणा 'प्ले प्ले गाणे_नाव', ते YouTube वरील गाणे प्ले करेल.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"शोधणे","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"हायलाइट करा","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"उजाळा","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"वर्तमान पृष्ठावरील कीवर्ड आणि त्याउलट हायलाइट करण्यासाठी 'हायलाइट कीवर्ड' म्हणा","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"पूर्ववत करा","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"पुन्हा करा","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"सर्व पूर्ववत करा","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Undo / redo / undo / redo / undo all करण्यासाठी सर्व undo / redo / undo म्हणा.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"पुढे","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"मागील","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"पुढील आणि मागील सांगून इनपुट घटकांवर नेव्हिगेट करा","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"वर स्क्रोल करा","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"खाली स्क्रोल कर","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"पृष्ठ स्क्रोल करण्यासाठी खाली / स्क्रोल करा म्हणा.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"स्पीच रिकग्निशन टूलकिट","description":"app name"},"appDescription":{"message":"केवळ आपला आवाज वापरुन कोणताही वेब फॉर्म भरा!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ऑडिओ परवानगीस परवानगी द्या","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ऑडिओ परवानगीस परवानगी देण्यासाठी येथे क्लिक करा","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"सेटिंग्ज","description":"setting tab string"},"popup_mic_listening_label":{"message":"ऐकत आहे","description":"label when mic is listening"},"popup_help_tab_str":{"message":"मदत करा","description":"help tab string"},"popup_help_heading_str":{"message":"आम्ही मदतीसाठी येथे आहोत","description":"popup help tab heading"},"popup_help_desc_str":{"message":"आपणास कोणतीही समस्या असल्यास, कृपया त्याचा अहवाल द्या","description":"popup help tab description"},"here":{"message":"येथे","description":"word"},"popup_default_language_label_str":{"message":"डीफॉल्ट भाषा","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"डीफॉल्ट भाषा बदलण्यासाठी क्लिक करा","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"भाषण ओळख चालू / बंद करण्यासाठी येथे क्लिक करा","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"सेटिंग्ज उघडा","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"जेव्हा Chrome प्रारंभ होईल तेव्हा 'भाषण ओळख' प्रारंभ करा","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"उच्चार ओळख भाषा बदला","description":"language change setting label"},"option_permission_success_msg":{"message":"आता आपण हा टॅब बंद करू शकता आणि आपल्या डिव्हाइसवर कोणत्याही वेबसाइटवर टाइप करण्यासाठी हे साधन वापरू शकता!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"कृपया हे साधन वापरण्यासाठी परवानग्यांना अनुमती द्या!","description":"error message when user rejects permission"},"emoji":{"message":"इमोजी","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"इमोजी सापडला नाही!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"इमोजी डिक्टेशन वापरा (1800 पेक्षा जास्त इमोजी)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"जवळच्या आवाजात इमोजी शोधा","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"हे साधन कसे वापरावे?","description":"How to use this tool ? string"},"new_line_label":{"message":"नवीन ओळ","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"व्हॉईस आज्ञा पाहण्यासाठी क्लिक करा","description":"voice commands control label "},"popup_show_commands_label":{"message":"आज्ञा दाखवा","description":"voice commands control label "},"commands_list_label":{"message":"भाषेसाठी आदेश सूची","description":"Commands List for language label"},"command_name_label":{"message":"कमांडचे नाव","description":"Command's Name label"},"command_description_label":{"message":"आदेशाचे वर्णन","description":"Command's Description label"},"command_emoji_description":{"message":"1800 इमोजींच्या सूचीतून काहीसे समान इमोजी घालण्यासाठी 'इमोजी इमोजीचे नाव' म्हणा. सेटिंग पृष्ठावर इमोजीची संपूर्ण यादी चेकआऊट करा","description":"command emoji desc"},"command_newline_description":{"message":"टाइप करण्यासाठी नवीन ओळ म्हणा.","description":"command newline desc"},"command_press_enter_description":{"message":"एंटर दाबा, एंटर दाबा. फॉर्म सबमिट करण्यासाठी उपयुक्त","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"भाषेसाठी इमोजीची यादी","description":"emoji list label"},"emoji_name_label":{"message":"इमोजीचे नाव","description":"emoji name label"},"command_newline_description_new":{"message":"नवीन ओळ मिळविण्यासाठी नवीन ओळ म्हणा.","description":"command newline desc"},"check_here_label":{"message":"येथे तपासा","description":"Check here label"},"imoji_list_label":{"message":"येथे तपासा","description":"Check here label"},"command_list_label":{"message":"आदेश यादी","description":"Command List label"},"imoji_list_label_new":{"message":"इमोजी यादी","description":"imoji list label"},"symbol_list_label":{"message":"गणिताची चिन्हे यादी","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"माइंडफुलनेस","description":"Mindfulness command"},"command_mindfulness_description":{"message":"मजकूर बॉक्समध्ये यादृच्छिक मानसिकतेचा विचार घालण्यासाठी 'माइंडफुलनेस' म्हणा","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"हे साधन वापरण्यासाठी ऑडिओ परवानग्यांना परवानगी देण्यासाठी कृपया खालील बटणावर क्लिक करा.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"टीप: जर आपण चुकून परवानग्यांना परवानगी नाकारली असेल तर आपण या टॅबच्या शोध बारच्या वरच्या डाव्या कोपर्‍यावर क्लिक करुन त्यांना परवानगी देऊ शकता.","description":"audio permission extra info"},"allow_permission_label":{"message":"परवानगी द्या","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"कृपया हे साधन वापरण्यासाठी परवानग्यांना अनुमती द्या!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"आता आपण हा टॅब बंद करू शकता आणि आपल्या डिव्हाइसवर कोणत्याही वेबसाइटवर टाइप करण्यासाठी हे साधन वापरू शकता!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* आता कोणत्याही इनपुटवर क्लिक करा आणि बोला","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"मोर्स कोड तयार करा","description":"cmc label"},"command_enable_disable_label":{"message":"सक्षम / अक्षम करा","description":"enable or disable command label"},"command_arrow_label":{"message":"बाण","description":"command arrow label"},"command_arrow_description":{"message":"डाव्या बाण की टाइप करण्यासाठी 'एरो डावीकडे' म्हणा. संभाव्य आज्ञा: बाण बाकी | बरोबर | शीर्ष | खाली","description":"command arrow desc"},"left_label":{"message":"डावीकडे","description":"left label"},"right_label":{"message":"बरोबर","description":"right label"},"up_label":{"message":"वर","description":"up label"},"down_label":{"message":"खाली","description":"down label"},"command_search_label":{"message":"शोध","description":"command search label"},"command_search_label2":{"message":"गूगल","description":"command go to label 2"},"command_search_description":{"message":"Google.com वर मांजरी शोधण्यासाठी शोध मांजर किंवा Google मांजर म्हणा","description":"command go to label 3"},"command_bookmark_label":{"message":"बुकमार्क","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"हे पृष्ठ बुकमार्क करा","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"बुकमार्क काढा","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"हा बुकमार्क काढा","description":"command bookmark label 4"},"command_bookmark_description":{"message":"बुकमार्क जोडण्यासाठी किंवा काढण्यासाठी 'हे पृष्ठ बुकमार्क करा' किंवा 'बुकमार्क काढा' म्हणा","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"हे पृष्ठ बुकमार्कमध्ये जोडले!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"हे पृष्ठ बुकमार्कवरून काढले!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"खेळा","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"म्हणा 'प्ले प्ले गाणे_नाव', ते YouTube वरील गाणे प्ले करेल.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"शोधणे","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"हायलाइट करा","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"उजाळा","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"वर्तमान पृष्ठावरील कीवर्ड आणि त्याउलट हायलाइट करण्यासाठी 'हायलाइट कीवर्ड' म्हणा","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"पूर्ववत करा","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"पुन्हा करा","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"सर्व पूर्ववत करा","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Undo / redo / undo / redo / undo all करण्यासाठी सर्व undo / redo / undo म्हणा.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"पुढे","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"मागील","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"पुढील आणि मागील सांगून इनपुट घटकांवर नेव्हिगेट करा","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"वर स्क्रोल करा","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"खाली स्क्रोल कर","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"पृष्ठ स्क्रोल करण्यासाठी खाली / स्क्रोल करा म्हणा.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"जा","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"भेट","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"उघडा","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"नवीन टॅबमध्ये facebook.com उघडण्यासाठी 'facebook.com वर जा' ​​म्हणा. बुकमार्क url उघडण्यासाठी 'बुकमार्क बुकमार्क_नाव वर जा' ​​म्हणा.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"बुकमार्क","description":"bookmark"}} diff --git a/src/app/_locales/ms/messages.json b/src/app/_locales/ms/messages.json index cbffcc8..05906a1 100644 --- a/src/app/_locales/ms/messages.json +++ b/src/app/_locales/ms/messages.json @@ -1 +1 @@ -{"appName":{"message":"Kit Alat Pengecaman Ucapan","description":"app name"},"appDescription":{"message":"Isi borang web dengan hanya menggunakan suara anda!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Benarkan Kebenaran Audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"klik di sini untuk Benarkan Kebenaran Audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Tetapan","description":"setting tab string"},"popup_mic_listening_label":{"message":"Mendengar","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Tolonglah","description":"help tab string"},"popup_help_heading_str":{"message":"Kami sedia membantu","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Sekiranya anda mengalami masalah, laporkan","description":"popup help tab description"},"here":{"message":"di sini","description":"word"},"popup_default_language_label_str":{"message":"Bahasa Lalai","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik untuk menukar bahasa lalai","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik di sini untuk menghidupkan / mematikan Pengiktirafan Ucapan","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Buka Tetapan","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Mulakan 'Speech Recognition' ketika Chrome bermula","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Tukar Bahasa Pengenalan Ucapan","description":"language change setting label"},"option_permission_success_msg":{"message":"Sekarang anda boleh menutup tab ini dan menggunakan alat ini untuk menaip di mana-mana laman web dengan suara anda!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Harap Benarkan Kebenaran untuk menggunakan alat ini!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji tidak dijumpai!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gunakan imlak emoji (lebih daripada 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cari emoji berbunyi yang paling dekat","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Bagaimana menggunakan alat ini?","description":"How to use this tool ? string"},"new_line_label":{"message":"baris baru","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik untuk melihat arahan suara","description":"voice commands control label "},"popup_show_commands_label":{"message":"Tunjukkan Perintah","description":"voice commands control label "},"commands_list_label":{"message":"Senarai Perintah untuk bahasa","description":"Commands List for language label"},"command_name_label":{"message":"Nama Perintah","description":"Command's Name label"},"command_description_label":{"message":"Huraian Perintah","description":"Command's Description label"},"command_emoji_description":{"message":"Katakan 'emoji emoji's name' untuk memasukkan emoji yang agak serupa dari senarai 1800 emoji. daftar penuh emoji di halaman tetapan","description":"command emoji desc"},"command_newline_description":{"message":"Katakan baris baru untuk menaip '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Katakan tekan enter untuk Tekan kekunci 'Enter'. Berguna untuk menghantar borang","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Senarai Emoji untuk bahasa","description":"emoji list label"},"emoji_name_label":{"message":"Nama Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Katakan baris baru untuk mendapatkan baris baru.","description":"command newline desc"},"check_here_label":{"message":"Lihat di sini","description":"Check here label"},"imoji_list_label":{"message":"Lihat di sini","description":"Check here label"},"command_list_label":{"message":"Senarai Perintah","description":"Command List label"},"imoji_list_label_new":{"message":"Senarai Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Senarai Simbol Matematik","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Kesedaran","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Ucapkan 'mindfulness' untuk memasukkan pemikiran minda secara rawak di kotak teks","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klik pada butang di bawah ini untuk membenarkan kebenaran audio untuk menggunakan alat ini.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Catatan: Sekiranya anda tidak membenarkan kebenaran secara tidak sengaja, maka anda boleh mengizinkannya mengklik sudut kiri atas bar carian tab ini","description":"audio permission extra info"},"allow_permission_label":{"message":"Izinkan kebenaran","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Harap Benarkan Kebenaran untuk menggunakan alat ini!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sekarang anda boleh menutup tab ini dan menggunakan alat ini untuk menaip di mana-mana laman web dengan suara anda!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sekarang klik pada sebarang input dan bercakap","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Buat Kod Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Membolehkan melumpuhkan","description":"enable or disable command label"},"command_arrow_label":{"message":"anak panah","description":"command arrow label"},"command_arrow_description":{"message":"Katakan 'panah kiri' untuk menaip kekunci anak panah kiri. arahan yang mungkin: panah kiri | betul | atas | turun","description":"command arrow desc"},"left_label":{"message":"meninggalkan","description":"left label"},"right_label":{"message":"betul","description":"right label"},"up_label":{"message":"naik","description":"up label"},"down_label":{"message":"turun","description":"down label"},"command_go_to_label":{"message":"pergi ke","description":"command go to label"},"command_go_to_description":{"message":"Katakan 'pergi ke facebook.com untuk membuka tab baru untuk facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"lawati","description":"command go to label 2"},"command_go_to_label3":{"message":"buka","description":"command go to label 3"},"command_search_label":{"message":"cari","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Katakan kucing carian atau kucing google untuk mencari kucing di google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"penanda buku","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"tandakan halaman ini","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"buang penanda buku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"alih keluar penanda buku ini","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Katakan 'Tandakan halaman ini' atau 'hapus penanda halaman' untuk menambah atau membuang penanda halaman","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Menambah halaman ini ke penanda halaman!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Membuang halaman ini dari penanda halaman!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"bermain","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Ucapkan 'play song_name', ia akan memainkan lagu dari youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"cari","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"kemuncak","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"tidak menyoroti","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Ucapkan 'highlight keyword' untuk menonjolkan kata kunci di halaman semasa dan sebaliknya","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"buat asal","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"buat semula","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"buat asal semua","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Katakan undo / redo / undo all untuk buat undo / redo / undo all.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"seterusnya","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"sebelumnya","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigasi ke elemen input dengan mengatakan seterusnya dan sebelumnya","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"tatal ke atas","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"tatal ke bawah","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Katakan tatal ke bawah / tatal ke atas untuk menatal halaman.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Kit Alat Pengecaman Ucapan","description":"app name"},"appDescription":{"message":"Isi borang web dengan hanya menggunakan suara anda!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Benarkan Kebenaran Audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"klik di sini untuk Benarkan Kebenaran Audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Tetapan","description":"setting tab string"},"popup_mic_listening_label":{"message":"Mendengar","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Tolonglah","description":"help tab string"},"popup_help_heading_str":{"message":"Kami sedia membantu","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Sekiranya anda mengalami masalah, laporkan","description":"popup help tab description"},"here":{"message":"di sini","description":"word"},"popup_default_language_label_str":{"message":"Bahasa Lalai","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik untuk menukar bahasa lalai","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik di sini untuk menghidupkan / mematikan Pengiktirafan Ucapan","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Buka Tetapan","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Mulakan 'Speech Recognition' ketika Chrome bermula","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Tukar Bahasa Pengenalan Ucapan","description":"language change setting label"},"option_permission_success_msg":{"message":"Sekarang anda boleh menutup tab ini dan menggunakan alat ini untuk menaip di mana-mana laman web dengan suara anda!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Harap Benarkan Kebenaran untuk menggunakan alat ini!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji tidak dijumpai!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gunakan imlak emoji (lebih daripada 1800 emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Cari emoji berbunyi yang paling dekat","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Bagaimana menggunakan alat ini?","description":"How to use this tool ? string"},"new_line_label":{"message":"baris baru","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik untuk melihat arahan suara","description":"voice commands control label "},"popup_show_commands_label":{"message":"Tunjukkan Perintah","description":"voice commands control label "},"commands_list_label":{"message":"Senarai Perintah untuk bahasa","description":"Commands List for language label"},"command_name_label":{"message":"Nama Perintah","description":"Command's Name label"},"command_description_label":{"message":"Huraian Perintah","description":"Command's Description label"},"command_emoji_description":{"message":"Katakan 'emoji emoji's name' untuk memasukkan emoji yang agak serupa dari senarai 1800 emoji. daftar penuh emoji di halaman tetapan","description":"command emoji desc"},"command_newline_description":{"message":"Katakan baris baru untuk menaip '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Katakan tekan enter untuk Tekan kekunci 'Enter'. Berguna untuk menghantar borang","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Senarai Emoji untuk bahasa","description":"emoji list label"},"emoji_name_label":{"message":"Nama Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Katakan baris baru untuk mendapatkan baris baru.","description":"command newline desc"},"check_here_label":{"message":"Lihat di sini","description":"Check here label"},"imoji_list_label":{"message":"Lihat di sini","description":"Check here label"},"command_list_label":{"message":"Senarai Perintah","description":"Command List label"},"imoji_list_label_new":{"message":"Senarai Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Senarai Simbol Matematik","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Kesedaran","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Ucapkan 'mindfulness' untuk memasukkan pemikiran minda secara rawak di kotak teks","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klik pada butang di bawah ini untuk membenarkan kebenaran audio untuk menggunakan alat ini.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Catatan: Sekiranya anda tidak membenarkan kebenaran secara tidak sengaja, maka anda boleh mengizinkannya mengklik sudut kiri atas bar carian tab ini","description":"audio permission extra info"},"allow_permission_label":{"message":"Izinkan kebenaran","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Harap Benarkan Kebenaran untuk menggunakan alat ini!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sekarang anda boleh menutup tab ini dan menggunakan alat ini untuk menaip di mana-mana laman web dengan suara anda!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sekarang klik pada sebarang input dan bercakap","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Buat Kod Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Membolehkan melumpuhkan","description":"enable or disable command label"},"command_arrow_label":{"message":"anak panah","description":"command arrow label"},"command_arrow_description":{"message":"Katakan 'panah kiri' untuk menaip kekunci anak panah kiri. arahan yang mungkin: panah kiri | betul | atas | turun","description":"command arrow desc"},"left_label":{"message":"meninggalkan","description":"left label"},"right_label":{"message":"betul","description":"right label"},"up_label":{"message":"naik","description":"up label"},"down_label":{"message":"turun","description":"down label"},"command_search_label":{"message":"cari","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Katakan kucing carian atau kucing google untuk mencari kucing di google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"penanda buku","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"tandakan halaman ini","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"buang penanda buku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"alih keluar penanda buku ini","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Katakan 'Tandakan halaman ini' atau 'hapus penanda halaman' untuk menambah atau membuang penanda halaman","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Menambah halaman ini ke penanda halaman!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Membuang halaman ini dari penanda halaman!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"bermain","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Ucapkan 'play song_name', ia akan memainkan lagu dari youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"cari","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"kemuncak","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"tidak menyoroti","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Ucapkan 'highlight keyword' untuk menonjolkan kata kunci di halaman semasa dan sebaliknya","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"buat asal","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"buat semula","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"buat asal semua","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Katakan undo / redo / undo all untuk buat undo / redo / undo all.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"seterusnya","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"sebelumnya","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigasi ke elemen input dengan mengatakan seterusnya dan sebelumnya","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"tatal ke atas","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"tatal ke bawah","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Katakan tatal ke bawah / tatal ke atas untuk menatal halaman.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"pergi ke","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"lawati","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"buka","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Katakan 'pergi ke facebook.com' untuk membuka facebook.com di tab baru. Katakan 'pergi ke bookmark_name bookmark' untuk membuka url penanda halaman.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"penanda buku","description":"bookmark"}} diff --git a/src/app/_locales/nl/messages.json b/src/app/_locales/nl/messages.json index e77b817..fd6ff4b 100644 --- a/src/app/_locales/nl/messages.json +++ b/src/app/_locales/nl/messages.json @@ -1 +1 @@ -{"appName":{"message":"Toolkit voor spraakherkenning","description":"app name"},"appDescription":{"message":"Vul elk webformulier in door alleen uw stem te gebruiken!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Sta audiotoestemming toe","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klik hier om audiotoestemming toe te staan","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Instellingen","description":"setting tab string"},"popup_mic_listening_label":{"message":"Luisteren","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Helpen","description":"help tab string"},"popup_help_heading_str":{"message":"We zijn hier om te helpen","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Als u een probleem heeft ondervonden, meld dit dan","description":"popup help tab description"},"here":{"message":"hier","description":"word"},"popup_default_language_label_str":{"message":"Standaard taal","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik om de standaardtaal te wijzigen","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik hier om spraakherkenning in of uit te schakelen","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Open instellingen","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Spraakherkenning' wanneer Chrome start","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Wijzig de taal voor spraakherkenning","description":"language change setting label"},"option_permission_success_msg":{"message":"Nu kunt u dit tabblad sluiten en deze tool gebruiken om met uw stem op elke website te typen!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Geef toestemming om deze tool te gebruiken!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji niet gevonden!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gebruik emoji-dictaat (meer dan 1800 emoji's)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Zoek naar emoji die het best klinken","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hoe gebruik je deze tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"nieuwe lijn","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik om spraakopdrachten te zien","description":"voice commands control label "},"popup_show_commands_label":{"message":"Toon opdrachten","description":"voice commands control label "},"commands_list_label":{"message":"Opdrachtenlijst voor taal","description":"Commands List for language label"},"command_name_label":{"message":"Commando's naam","description":"Command's Name label"},"command_description_label":{"message":"Command's Beschrijving","description":"Command's Description label"},"command_emoji_description":{"message":"Zeg 'naam emoji-emoji' om enigszins vergelijkbare emoji's uit de lijst met 1800 emoji's in te voegen. Bekijk de volledige lijst met emoji's op de instellingenpagina","description":"command emoji desc"},"command_newline_description":{"message":"Zeg een nieuwe regel om '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Zeg druk op enter om op 'Enter' te drukken. Handig voor het indienen van formulieren","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji's List voor taal","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's naam","description":"emoji name label"},"command_newline_description_new":{"message":"Zeg een nieuwe regel om een ​​nieuwe regel te krijgen.","description":"command newline desc"},"check_here_label":{"message":"Kijk hier","description":"Check here label"},"imoji_list_label":{"message":"Kijk hier","description":"Check here label"},"command_list_label":{"message":"Commando lijst","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-lijst","description":"imoji list label"},"symbol_list_label":{"message":"Lijst met wiskundige symbolen","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Zeg 'mindfulness' om een ​​willekeurige mindfulness-gedachte in het tekstvak in te voegen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klik op de onderstaande knop om audiotoestemmingen toe te staan ​​om deze tool te gebruiken.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Opmerking: als u per ongeluk machtigingen heeft geweigerd, kunt u hen toestaan ​​door in de linkerbovenhoek van de zoekbalk van dit tabblad te klikken","description":"audio permission extra info"},"allow_permission_label":{"message":"Toestemming toestaan","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Geef toestemming om deze tool te gebruiken!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nu kunt u dit tabblad sluiten en deze tool gebruiken om met uw stem op elke website te typen!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klik nu op een ingang en spreek","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Creëer morsecode","description":"cmc label"},"command_enable_disable_label":{"message":"Inschakelen / uitschakelen","description":"enable or disable command label"},"command_arrow_label":{"message":"pijl","description":"command arrow label"},"command_arrow_description":{"message":"Zeg 'pijl naar links' om de pijl naar links te typen. mogelijke opdrachten: pijl naar links | rechts | boven | naar beneden","description":"command arrow desc"},"left_label":{"message":"links","description":"left label"},"right_label":{"message":"Rechtsaf","description":"right label"},"up_label":{"message":"omhoog","description":"up label"},"down_label":{"message":"naar beneden","description":"down label"},"command_go_to_label":{"message":"ga naar","description":"command go to label"},"command_go_to_description":{"message":"Zeg 'ga naar facebook.com om een ​​nieuw tabblad voor facebook.com te openen","description":"command go to description"},"command_go_to_label2":{"message":"bezoek","description":"command go to label 2"},"command_go_to_label3":{"message":"Open","description":"command go to label 3"},"command_search_label":{"message":"zoeken","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Zeg 'zoek kat of google kat' om kat te zoeken op google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bladwijzer","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Maak een bladwijzer van deze pagina","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"verwijder bladwijzer","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"verwijder deze bladwijzer","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Zeg 'Bladwijzer toevoegen aan deze pagina' of 'Bladwijzer verwijderen' om een ​​bladwijzer toe te voegen of te verwijderen","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Deze pagina toegevoegd aan bladwijzers!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Deze pagina verwijderd uit bladwijzers!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Speel","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Zeg 'play song_name', het zal het nummer van youtube afspelen.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"vind","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"hoogtepunt","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Zeg 'markeer trefwoord' om het trefwoord op de huidige pagina te markeren en vice versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ongedaan maken","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"opnieuw doen","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"Maak alles ongedaan","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Zeg ongedaan maken / opnieuw / alles ongedaan maken om alles ongedaan te maken / opnieuw / ongedaan te maken.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"De volgende","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"vorige","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigeer naar invoerelementen door volgende en vorige te zeggen","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scroll omhoog","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"naar beneden scrollen","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Zeg: scroll naar beneden / scroll naar boven om door de pagina te scrollen.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Toolkit voor spraakherkenning","description":"app name"},"appDescription":{"message":"Vul elk webformulier in door alleen uw stem te gebruiken!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Sta audiotoestemming toe","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klik hier om audiotoestemming toe te staan","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Instellingen","description":"setting tab string"},"popup_mic_listening_label":{"message":"Luisteren","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Helpen","description":"help tab string"},"popup_help_heading_str":{"message":"We zijn hier om te helpen","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Als u een probleem heeft ondervonden, meld dit dan","description":"popup help tab description"},"here":{"message":"hier","description":"word"},"popup_default_language_label_str":{"message":"Standaard taal","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klik om de standaardtaal te wijzigen","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klik hier om spraakherkenning in of uit te schakelen","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Open instellingen","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Spraakherkenning' wanneer Chrome start","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Wijzig de taal voor spraakherkenning","description":"language change setting label"},"option_permission_success_msg":{"message":"Nu kunt u dit tabblad sluiten en deze tool gebruiken om met uw stem op elke website te typen!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Geef toestemming om deze tool te gebruiken!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji niet gevonden!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Gebruik emoji-dictaat (meer dan 1800 emoji's)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Zoek naar emoji die het best klinken","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hoe gebruik je deze tool?","description":"How to use this tool ? string"},"new_line_label":{"message":"nieuwe lijn","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klik om spraakopdrachten te zien","description":"voice commands control label "},"popup_show_commands_label":{"message":"Toon opdrachten","description":"voice commands control label "},"commands_list_label":{"message":"Opdrachtenlijst voor taal","description":"Commands List for language label"},"command_name_label":{"message":"Commando's naam","description":"Command's Name label"},"command_description_label":{"message":"Command's Beschrijving","description":"Command's Description label"},"command_emoji_description":{"message":"Zeg 'naam emoji-emoji' om enigszins vergelijkbare emoji's uit de lijst met 1800 emoji's in te voegen. Bekijk de volledige lijst met emoji's op de instellingenpagina","description":"command emoji desc"},"command_newline_description":{"message":"Zeg een nieuwe regel om '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Zeg druk op enter om op 'Enter' te drukken. Handig voor het indienen van formulieren","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji's List voor taal","description":"emoji list label"},"emoji_name_label":{"message":"Emoji's naam","description":"emoji name label"},"command_newline_description_new":{"message":"Zeg een nieuwe regel om een ​​nieuwe regel te krijgen.","description":"command newline desc"},"check_here_label":{"message":"Kijk hier","description":"Check here label"},"imoji_list_label":{"message":"Kijk hier","description":"Check here label"},"command_list_label":{"message":"Commando lijst","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-lijst","description":"imoji list label"},"symbol_list_label":{"message":"Lijst met wiskundige symbolen","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Zeg 'mindfulness' om een ​​willekeurige mindfulness-gedachte in het tekstvak in te voegen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klik op de onderstaande knop om audiotoestemmingen toe te staan ​​om deze tool te gebruiken.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Opmerking: als u per ongeluk machtigingen heeft geweigerd, kunt u hen toestaan ​​door in de linkerbovenhoek van de zoekbalk van dit tabblad te klikken","description":"audio permission extra info"},"allow_permission_label":{"message":"Toestemming toestaan","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Geef toestemming om deze tool te gebruiken!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nu kunt u dit tabblad sluiten en deze tool gebruiken om met uw stem op elke website te typen!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klik nu op een ingang en spreek","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Creëer morsecode","description":"cmc label"},"command_enable_disable_label":{"message":"Inschakelen / uitschakelen","description":"enable or disable command label"},"command_arrow_label":{"message":"pijl","description":"command arrow label"},"command_arrow_description":{"message":"Zeg 'pijl naar links' om de pijl naar links te typen. mogelijke opdrachten: pijl naar links | rechts | boven | naar beneden","description":"command arrow desc"},"left_label":{"message":"links","description":"left label"},"right_label":{"message":"Rechtsaf","description":"right label"},"up_label":{"message":"omhoog","description":"up label"},"down_label":{"message":"naar beneden","description":"down label"},"command_search_label":{"message":"zoeken","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Zeg 'zoek kat of google kat' om kat te zoeken op google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bladwijzer","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Maak een bladwijzer van deze pagina","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"verwijder bladwijzer","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"verwijder deze bladwijzer","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Zeg 'Bladwijzer toevoegen aan deze pagina' of 'Bladwijzer verwijderen' om een ​​bladwijzer toe te voegen of te verwijderen","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Deze pagina toegevoegd aan bladwijzers!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Deze pagina verwijderd uit bladwijzers!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Speel","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Zeg 'play song_name', het zal het nummer van youtube afspelen.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"vind","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"hoogtepunt","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Zeg 'markeer trefwoord' om het trefwoord op de huidige pagina te markeren en vice versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ongedaan maken","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"opnieuw doen","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"Maak alles ongedaan","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Zeg ongedaan maken / opnieuw / alles ongedaan maken om alles ongedaan te maken / opnieuw / ongedaan te maken.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"De volgende","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"vorige","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigeer naar invoerelementen door volgende en vorige te zeggen","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"scroll omhoog","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"naar beneden scrollen","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Zeg: scroll naar beneden / scroll naar boven om door de pagina te scrollen.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"ga naar","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"bezoek","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"Open","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Zeg 'ga naar facebook.com' om facebook.com op een nieuw tabblad te openen. Zeg 'ga naar bladwijzer bladwijzernaam' om de bladwijzer-URL te openen.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"bladwijzer","description":"bookmark"}} diff --git a/src/app/_locales/no/messages.json b/src/app/_locales/no/messages.json index 3b86096..846e626 100644 --- a/src/app/_locales/no/messages.json +++ b/src/app/_locales/no/messages.json @@ -1 +1 @@ -{"appName":{"message":"Verktøysett for talegjenkjenning","description":"app name"},"appDescription":{"message":"Fyll ut hvilket som helst webskjema ved å bare bruke stemmen din!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Tillat lydtillatelse","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klikk her for å tillate lydtillatelse","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Innstillinger","description":"setting tab string"},"popup_mic_listening_label":{"message":"Lytte","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hjelp","description":"help tab string"},"popup_help_heading_str":{"message":"Vi er her for å hjelpe","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Hvis du har opplevd noe problem, kan du rapportere det","description":"popup help tab description"},"here":{"message":"her","description":"word"},"popup_default_language_label_str":{"message":"Standard språk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klikk for å endre standardspråk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klikk her for å slå på / av talegjenkjenning","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Åpne innstillinger","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Talegjenkjenning' når Chrome starter","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Endre språk for talegjenkjenning","description":"language change setting label"},"option_permission_success_msg":{"message":"Nå kan du lukke denne fanen og bruke dette verktøyet til å skrive på hvilket som helst nettsted med stemmen din!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tillat tillatelser for å bruke dette verktøyet!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji ikke funnet!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Bruk emoji-diktering (mer enn 1800 emojier)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Søk etter emoji som høres nærmest ut","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hvordan bruker jeg dette verktøyet?","description":"How to use this tool ? string"},"new_line_label":{"message":"ny linje","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klikk for å se talekommandoer","description":"voice commands control label "},"popup_show_commands_label":{"message":"Vis kommandoer","description":"voice commands control label "},"commands_list_label":{"message":"Kommandoliste for språk","description":"Commands List for language label"},"command_name_label":{"message":"Kommandos navn","description":"Command's Name label"},"command_description_label":{"message":"Kommandos beskrivelse","description":"Command's Description label"},"command_emoji_description":{"message":"Si 'emoji emoji's name' for å sette inn noe lignende emoji fra listen over 1800 emoji. kassen full liste over emoji på innstillingssiden","description":"command emoji desc"},"command_newline_description":{"message":"Si en ny linje for å skrive '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Si trykk enter for å trykke 'Enter' -tasten. Nyttig for å sende inn skjemaer","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis liste for språk","description":"emoji list label"},"emoji_name_label":{"message":"Emojis navn","description":"emoji name label"},"command_newline_description_new":{"message":"Si ny linje for å få en ny linje.","description":"command newline desc"},"check_here_label":{"message":"Sjekk her","description":"Check here label"},"imoji_list_label":{"message":"Sjekk her","description":"Check here label"},"command_list_label":{"message":"Kommandoliste","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-liste","description":"imoji list label"},"symbol_list_label":{"message":"Liste over matematiske symboler","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Tankefullhet","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Si 'mindfulness' for å sette inn en tilfeldig mindfulness-tanke i tekstboksen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klikk på knappen nedenfor for å tillate lydtillatelser for å bruke dette verktøyet.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Merk: Hvis du ved et uhell har tillatt tillatelser, kan du tillate dem å klikke øverst til venstre i søkefeltet i denne fanen.","description":"audio permission extra info"},"allow_permission_label":{"message":"Tillat tillatelse","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tillat tillatelser for å bruke dette verktøyet!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nå kan du lukke denne fanen og bruke dette verktøyet til å skrive på hvilket som helst nettsted med stemmen din!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klikk nå på hvilken som helst innspill og snakk","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Lag Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"På av","description":"enable or disable command label"},"command_arrow_label":{"message":"pil","description":"command arrow label"},"command_arrow_description":{"message":"Si 'pil til venstre' for å skrive venstre piltast. mulige kommandoer: pil til venstre | høyre | topp | ned","description":"command arrow desc"},"left_label":{"message":"venstre","description":"left label"},"right_label":{"message":"Ikke sant","description":"right label"},"up_label":{"message":"opp","description":"up label"},"down_label":{"message":"ned","description":"down label"},"command_go_to_label":{"message":"gå til","description":"command go to label"},"command_go_to_description":{"message":"Si 'gå til facebook.com for å åpne ny fane for facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"besøk","description":"command go to label 2"},"command_go_to_label3":{"message":"åpen","description":"command go to label 3"},"command_search_label":{"message":"Søk","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Si søkekatt eller googlekatt for å søke katt på google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bokmerke","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Bokmerk denne siden","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"fjern bokmerke","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"fjern dette bokmerket","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Si 'Merk denne siden' eller 'fjern bokmerke' for å legge til eller fjerne bokmerke","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Lagt denne siden til bokmerker!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Fjernet denne siden fra bokmerker!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"spille","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Si 'spill sangnavn', den vil spille sangen fra youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"finne","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"fremheve","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"uhøydepunkt","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Si 'marker søkeord' for å markere søkeordet på gjeldende side og omvendt","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"angre","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"gjøre om","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"angre alle","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Si angre / gjøre om / angre alt for å gjøre angre / angre / angre alt.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"neste","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"tidligere","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Naviger til inndataelementer ved å si neste og forrige","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"bla opp","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"bla nedover","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Si rull ned / rull opp for å bla gjennom siden.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Verktøysett for talegjenkjenning","description":"app name"},"appDescription":{"message":"Fyll ut hvilket som helst webskjema ved å bare bruke stemmen din!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Tillat lydtillatelse","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Klikk her for å tillate lydtillatelse","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Innstillinger","description":"setting tab string"},"popup_mic_listening_label":{"message":"Lytte","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hjelp","description":"help tab string"},"popup_help_heading_str":{"message":"Vi er her for å hjelpe","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Hvis du har opplevd noe problem, kan du rapportere det","description":"popup help tab description"},"here":{"message":"her","description":"word"},"popup_default_language_label_str":{"message":"Standard språk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klikk for å endre standardspråk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klikk her for å slå på / av talegjenkjenning","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Åpne innstillinger","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Start 'Talegjenkjenning' når Chrome starter","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Endre språk for talegjenkjenning","description":"language change setting label"},"option_permission_success_msg":{"message":"Nå kan du lukke denne fanen og bruke dette verktøyet til å skrive på hvilket som helst nettsted med stemmen din!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tillat tillatelser for å bruke dette verktøyet!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji ikke funnet!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Bruk emoji-diktering (mer enn 1800 emojier)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Søk etter emoji som høres nærmest ut","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hvordan bruker jeg dette verktøyet?","description":"How to use this tool ? string"},"new_line_label":{"message":"ny linje","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klikk for å se talekommandoer","description":"voice commands control label "},"popup_show_commands_label":{"message":"Vis kommandoer","description":"voice commands control label "},"commands_list_label":{"message":"Kommandoliste for språk","description":"Commands List for language label"},"command_name_label":{"message":"Kommandos navn","description":"Command's Name label"},"command_description_label":{"message":"Kommandos beskrivelse","description":"Command's Description label"},"command_emoji_description":{"message":"Si 'emoji emoji's name' for å sette inn noe lignende emoji fra listen over 1800 emoji. kassen full liste over emoji på innstillingssiden","description":"command emoji desc"},"command_newline_description":{"message":"Si en ny linje for å skrive '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Si trykk enter for å trykke 'Enter' -tasten. Nyttig for å sende inn skjemaer","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis liste for språk","description":"emoji list label"},"emoji_name_label":{"message":"Emojis navn","description":"emoji name label"},"command_newline_description_new":{"message":"Si ny linje for å få en ny linje.","description":"command newline desc"},"check_here_label":{"message":"Sjekk her","description":"Check here label"},"imoji_list_label":{"message":"Sjekk her","description":"Check here label"},"command_list_label":{"message":"Kommandoliste","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-liste","description":"imoji list label"},"symbol_list_label":{"message":"Liste over matematiske symboler","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Tankefullhet","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Si 'mindfulness' for å sette inn en tilfeldig mindfulness-tanke i tekstboksen","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klikk på knappen nedenfor for å tillate lydtillatelser for å bruke dette verktøyet.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Merk: Hvis du ved et uhell har tillatt tillatelser, kan du tillate dem å klikke øverst til venstre i søkefeltet i denne fanen.","description":"audio permission extra info"},"allow_permission_label":{"message":"Tillat tillatelse","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tillat tillatelser for å bruke dette verktøyet!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nå kan du lukke denne fanen og bruke dette verktøyet til å skrive på hvilket som helst nettsted med stemmen din!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klikk nå på hvilken som helst innspill og snakk","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Lag Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"På av","description":"enable or disable command label"},"command_arrow_label":{"message":"pil","description":"command arrow label"},"command_arrow_description":{"message":"Si 'pil til venstre' for å skrive venstre piltast. mulige kommandoer: pil til venstre | høyre | topp | ned","description":"command arrow desc"},"left_label":{"message":"venstre","description":"left label"},"right_label":{"message":"Ikke sant","description":"right label"},"up_label":{"message":"opp","description":"up label"},"down_label":{"message":"ned","description":"down label"},"command_search_label":{"message":"Søk","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Si søkekatt eller googlekatt for å søke katt på google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bokmerke","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Bokmerk denne siden","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"fjern bokmerke","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"fjern dette bokmerket","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Si 'Merk denne siden' eller 'fjern bokmerke' for å legge til eller fjerne bokmerke","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Lagt denne siden til bokmerker!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Fjernet denne siden fra bokmerker!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"spille","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Si 'spill sangnavn', den vil spille sangen fra youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"finne","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"fremheve","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"uhøydepunkt","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Si 'marker søkeord' for å markere søkeordet på gjeldende side og omvendt","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"angre","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"gjøre om","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"angre alle","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Si angre / gjøre om / angre alt for å gjøre angre / angre / angre alt.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"neste","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"tidligere","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Naviger til inndataelementer ved å si neste og forrige","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"bla opp","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"bla nedover","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Si rull ned / rull opp for å bla gjennom siden.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"gå til","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"besøk","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"åpen","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Si 'gå til facebook.com' for å åpne facebook.com i ny fane. Si 'gå til bokmerke bokmerkenavn' for å åpne bokmerke-nettadressen.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"bokmerke","description":"bookmark"}} diff --git a/src/app/_locales/pl/messages.json b/src/app/_locales/pl/messages.json index 6a396fd..b6d3e70 100644 --- a/src/app/_locales/pl/messages.json +++ b/src/app/_locales/pl/messages.json @@ -1 +1 @@ -{"appName":{"message":"Zestaw narzędzi do rozpoznawania mowy","description":"app name"},"appDescription":{"message":"Wypełnij dowolny formularz internetowy, używając tylko swojego głosu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Zezwól na uprawnienia audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknij tutaj, aby zezwolić na dostęp audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Ustawienia","description":"setting tab string"},"popup_mic_listening_label":{"message":"Słuchający","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Wsparcie","description":"help tab string"},"popup_help_heading_str":{"message":"Jesteśmy tutaj aby pomóc","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jeśli napotkałeś jakiś problem, zgłoś go","description":"popup help tab description"},"here":{"message":"tutaj","description":"word"},"popup_default_language_label_str":{"message":"Domyślny język","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknij, aby zmienić domyślny język","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknij tutaj, aby włączyć / wyłączyć rozpoznawanie mowy","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otwórz ustawienia","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Uruchom „Rozpoznawanie mowy” po uruchomieniu Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Zmień język rozpoznawania mowy","description":"language change setting label"},"option_permission_success_msg":{"message":"Teraz możesz zamknąć tę kartę i używać tego narzędzia do pisania na dowolnej stronie internetowej za pomocą głosu!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Zezwól na uprawnienia, aby korzystać z tego narzędzia!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Nie znaleziono emotikonów!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Użyj dyktowania emotikonów (ponad 1800 emotikonów)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Wyszukaj najbliżej brzmiące emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Jak używać tego narzędzia?","description":"How to use this tool ? string"},"new_line_label":{"message":"Nowa linia","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknij, aby zobaczyć polecenia głosowe","description":"voice commands control label "},"popup_show_commands_label":{"message":"Pokaż polecenia","description":"voice commands control label "},"commands_list_label":{"message":"Lista poleceń dla języka","description":"Commands List for language label"},"command_name_label":{"message":"Nazwa polecenia","description":"Command's Name label"},"command_description_label":{"message":"Opis polecenia","description":"Command's Description label"},"command_emoji_description":{"message":"Powiedz „nazwa emoji emoji”, aby wstawić nieco podobne emoji z listy 1800 emoji. sprawdź pełną listę emotikonów na stronie ustawień","description":"command emoji desc"},"command_newline_description":{"message":"Powiedz nowy wiersz, aby wpisać „”.","description":"command newline desc"},"command_press_enter_description":{"message":"Powiedz, naciśnij enter, aby nacisnąć klawisz „Enter”. Przydatne do przesyłania formularzy","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista emotikonów dla języka","description":"emoji list label"},"emoji_name_label":{"message":"Nazwa emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Powiedz nowy wiersz, aby uzyskać nowy wiersz.","description":"command newline desc"},"check_here_label":{"message":"Sprawdź tutaj","description":"Check here label"},"imoji_list_label":{"message":"Sprawdź tutaj","description":"Check here label"},"command_list_label":{"message":"Lista poleceń","description":"Command List label"},"imoji_list_label_new":{"message":"Lista emotikonów","description":"imoji list label"},"symbol_list_label":{"message":"Lista symboli matematycznych","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Uważność","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Powiedz „uważność”, aby wstawić przypadkową myśl uważności w polu tekstowym","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknij poniższy przycisk, aby zezwolić na uprawnienia audio w celu korzystania z tego narzędzia.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Uwaga: jeśli przypadkowo utraciłeś uprawnienia, możesz zezwolić na kliknięcie w lewym górnym rogu paska wyszukiwania na tej karcie","description":"audio permission extra info"},"allow_permission_label":{"message":"Zezwól na pozwolenie","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Zezwól na uprawnienia, aby korzystać z tego narzędzia!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Teraz możesz zamknąć tę kartę i używać tego narzędzia do pisania na dowolnej stronie internetowej za pomocą głosu!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Teraz kliknij dowolne wejście i mów","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Utwórz kod Morse'a","description":"cmc label"},"command_enable_disable_label":{"message":"Włącz / wyłącz","description":"enable or disable command label"},"command_arrow_label":{"message":"strzałka","description":"command arrow label"},"command_arrow_description":{"message":"Powiedz „strzałka w lewo”, aby wpisać klawisz strzałki w lewo. możliwe polecenia: strzałka w lewo | prawo | do góry | na dół","description":"command arrow desc"},"left_label":{"message":"lewo","description":"left label"},"right_label":{"message":"dobrze","description":"right label"},"up_label":{"message":"w górę","description":"up label"},"down_label":{"message":"na dół","description":"down label"},"command_go_to_label":{"message":"iść do","description":"command go to label"},"command_go_to_description":{"message":"Powiedz „przejdź do facebook.com, aby otworzyć nową kartę dla facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"odwiedzić","description":"command go to label 2"},"command_go_to_label3":{"message":"otwarty","description":"command go to label 3"},"command_search_label":{"message":"Szukaj","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Powiedz „szukaj kota” lub „google kota”, aby wyszukać kota w google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"zakładka","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Dodaj stronę do ulubionych","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"usuń zakładkę","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"usuń tę zakładkę","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Powiedz „Dodaj do zakładek tę stronę” lub „Usuń zakładkę”, aby dodać lub usunąć zakładkę","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Dodano tę stronę do zakładek!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Usunięto tę stronę z zakładek!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"grać","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Powiedz „play song_name”, odtworzy utwór z youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"odnaleźć","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"atrakcja","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nie wyróżniać","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Powiedz „wyróżnij słowo kluczowe”, aby podświetlić słowo kluczowe na bieżącej stronie i odwrotnie","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Cofnij","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"przerobić","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"Cofnij wszystko","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Powiedz cofnij / ponów / cofnij wszystko, aby cofnąć / ponawiać / cofnąć wszystko.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Kolejny","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"poprzedni","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Przejdź do elementów wejściowych, mówiąc następny i poprzedni","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"przewiń do góry","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"przewiń w dół","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Powiedz przewiń w dół / przewiń w górę, aby przewinąć stronę.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Zestaw narzędzi do rozpoznawania mowy","description":"app name"},"appDescription":{"message":"Wypełnij dowolny formularz internetowy, używając tylko swojego głosu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Zezwól na uprawnienia audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknij tutaj, aby zezwolić na dostęp audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Ustawienia","description":"setting tab string"},"popup_mic_listening_label":{"message":"Słuchający","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Wsparcie","description":"help tab string"},"popup_help_heading_str":{"message":"Jesteśmy tutaj aby pomóc","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Jeśli napotkałeś jakiś problem, zgłoś go","description":"popup help tab description"},"here":{"message":"tutaj","description":"word"},"popup_default_language_label_str":{"message":"Domyślny język","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknij, aby zmienić domyślny język","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknij tutaj, aby włączyć / wyłączyć rozpoznawanie mowy","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otwórz ustawienia","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Uruchom „Rozpoznawanie mowy” po uruchomieniu Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Zmień język rozpoznawania mowy","description":"language change setting label"},"option_permission_success_msg":{"message":"Teraz możesz zamknąć tę kartę i używać tego narzędzia do pisania na dowolnej stronie internetowej za pomocą głosu!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Zezwól na uprawnienia, aby korzystać z tego narzędzia!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Nie znaleziono emotikonów!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Użyj dyktowania emotikonów (ponad 1800 emotikonów)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Wyszukaj najbliżej brzmiące emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Jak używać tego narzędzia?","description":"How to use this tool ? string"},"new_line_label":{"message":"Nowa linia","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknij, aby zobaczyć polecenia głosowe","description":"voice commands control label "},"popup_show_commands_label":{"message":"Pokaż polecenia","description":"voice commands control label "},"commands_list_label":{"message":"Lista poleceń dla języka","description":"Commands List for language label"},"command_name_label":{"message":"Nazwa polecenia","description":"Command's Name label"},"command_description_label":{"message":"Opis polecenia","description":"Command's Description label"},"command_emoji_description":{"message":"Powiedz „nazwa emoji emoji”, aby wstawić nieco podobne emoji z listy 1800 emoji. sprawdź pełną listę emotikonów na stronie ustawień","description":"command emoji desc"},"command_newline_description":{"message":"Powiedz nowy wiersz, aby wpisać „”.","description":"command newline desc"},"command_press_enter_description":{"message":"Powiedz, naciśnij enter, aby nacisnąć klawisz „Enter”. Przydatne do przesyłania formularzy","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista emotikonów dla języka","description":"emoji list label"},"emoji_name_label":{"message":"Nazwa emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Powiedz nowy wiersz, aby uzyskać nowy wiersz.","description":"command newline desc"},"check_here_label":{"message":"Sprawdź tutaj","description":"Check here label"},"imoji_list_label":{"message":"Sprawdź tutaj","description":"Check here label"},"command_list_label":{"message":"Lista poleceń","description":"Command List label"},"imoji_list_label_new":{"message":"Lista emotikonów","description":"imoji list label"},"symbol_list_label":{"message":"Lista symboli matematycznych","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Uważność","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Powiedz „uważność”, aby wstawić przypadkową myśl uważności w polu tekstowym","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknij poniższy przycisk, aby zezwolić na uprawnienia audio w celu korzystania z tego narzędzia.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Uwaga: jeśli przypadkowo utraciłeś uprawnienia, możesz zezwolić na kliknięcie w lewym górnym rogu paska wyszukiwania na tej karcie","description":"audio permission extra info"},"allow_permission_label":{"message":"Zezwól na pozwolenie","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Zezwól na uprawnienia, aby korzystać z tego narzędzia!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Teraz możesz zamknąć tę kartę i używać tego narzędzia do pisania na dowolnej stronie internetowej za pomocą głosu!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Teraz kliknij dowolne wejście i mów","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Utwórz kod Morse'a","description":"cmc label"},"command_enable_disable_label":{"message":"Włącz / wyłącz","description":"enable or disable command label"},"command_arrow_label":{"message":"strzałka","description":"command arrow label"},"command_arrow_description":{"message":"Powiedz „strzałka w lewo”, aby wpisać klawisz strzałki w lewo. możliwe polecenia: strzałka w lewo | prawo | do góry | na dół","description":"command arrow desc"},"left_label":{"message":"lewo","description":"left label"},"right_label":{"message":"dobrze","description":"right label"},"up_label":{"message":"w górę","description":"up label"},"down_label":{"message":"na dół","description":"down label"},"command_search_label":{"message":"Szukaj","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Powiedz „szukaj kota” lub „google kota”, aby wyszukać kota w google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"zakładka","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Dodaj stronę do ulubionych","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"usuń zakładkę","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"usuń tę zakładkę","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Powiedz „Dodaj do zakładek tę stronę” lub „Usuń zakładkę”, aby dodać lub usunąć zakładkę","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Dodano tę stronę do zakładek!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Usunięto tę stronę z zakładek!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"grać","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Powiedz „play song_name”, odtworzy utwór z youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"odnaleźć","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"atrakcja","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nie wyróżniać","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Powiedz „wyróżnij słowo kluczowe”, aby podświetlić słowo kluczowe na bieżącej stronie i odwrotnie","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Cofnij","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"przerobić","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"Cofnij wszystko","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Powiedz cofnij / ponów / cofnij wszystko, aby cofnąć / ponawiać / cofnąć wszystko.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Kolejny","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"poprzedni","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Przejdź do elementów wejściowych, mówiąc następny i poprzedni","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"przewiń do góry","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"przewiń w dół","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Powiedz przewiń w dół / przewiń w górę, aby przewinąć stronę.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"iść do","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"odwiedzić","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"otwarty","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Powiedz „przejdź do facebook.com”, aby otworzyć facebook.com w nowej karcie. Powiedz „przejdź do zakładki nazwa_zakładki”, aby otworzyć adres URL zakładki.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"zakładka","description":"bookmark"}} diff --git a/src/app/_locales/pt/messages.json b/src/app/_locales/pt/messages.json index b7da1f7..c7009e5 100644 --- a/src/app/_locales/pt/messages.json +++ b/src/app/_locales/pt/messages.json @@ -1 +1 @@ -{"appName":{"message":"Toolkit de reconhecimento de voz","description":"app name"},"appDescription":{"message":"Preencha qualquer formulário da web usando apenas sua voz!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permitir permissão de áudio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"clique aqui para permitir a permissão de áudio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Configurações","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ouvindo","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Socorro","description":"help tab string"},"popup_help_heading_str":{"message":"Estamos aqui para ajudar","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Se você teve algum problema, por favor, relate-o","description":"popup help tab description"},"here":{"message":"aqui","description":"word"},"popup_default_language_label_str":{"message":"Idioma padrão","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Clique para alterar o idioma padrão","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Clique aqui para ligar / desligar o reconhecimento de fala","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Abrir configurações","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Inicie o 'Reconhecimento de fala' quando o Chrome iniciar","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Alterar idioma de reconhecimento de fala","description":"language change setting label"},"option_permission_success_msg":{"message":"Agora você pode fechar esta guia e usar esta ferramenta para digitar em qualquer site com sua voz!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Por favor, permita permissões para usar esta ferramenta!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji não encontrado!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Use o ditado de emoji (mais de 1.800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Pesquise o emoji de som mais próximo","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Como usar esta ferramenta?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova linha","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Clique para ver os comandos de voz","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostrar comandos","description":"voice commands control label "},"commands_list_label":{"message":"Lista de comandos para o idioma","description":"Commands List for language label"},"command_name_label":{"message":"Nome do Comando","description":"Command's Name label"},"command_description_label":{"message":"Descrição do Comando","description":"Command's Description label"},"command_emoji_description":{"message":"Diga 'emoji emoji's name' para inserir um emoji semelhante da lista de 1800 emojis. verifique a lista completa de emojis na página de configuração","description":"command emoji desc"},"command_newline_description":{"message":"Diga uma nova linha para digitar '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Diga pressione Enter para pressionar a tecla 'Enter'. Útil para enviar formulários","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista de Emoji para o idioma","description":"emoji list label"},"emoji_name_label":{"message":"Nome do emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Diga nova linha para obter uma nova linha.","description":"command newline desc"},"check_here_label":{"message":"Verifique aqui","description":"Check here label"},"imoji_list_label":{"message":"Verifique aqui","description":"Check here label"},"command_list_label":{"message":"Lista de Comandos","description":"Command List label"},"imoji_list_label_new":{"message":"Lista de Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Lista de símbolos matemáticos","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Atenção Plena","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Diga 'atenção plena' para inserir um pensamento de atenção plena aleatório na caixa de texto","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Clique no botão abaixo para permitir as permissões de áudio para usar esta ferramenta.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Observação: se você acidentalmente desabilitou as permissões, pode permitir que eles cliquem no canto superior esquerdo da barra de pesquisa desta guia","description":"audio permission extra info"},"allow_permission_label":{"message":"Permitir permissão","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Por favor, permita permissões para usar esta ferramenta!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Agora você pode fechar esta guia e usar esta ferramenta para digitar em qualquer site com sua voz!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Agora clique em qualquer entrada e fale","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Criar Código Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Habilitar desabilitar","description":"enable or disable command label"},"command_arrow_label":{"message":"seta","description":"command arrow label"},"command_arrow_description":{"message":"Diga 'seta para a esquerda' para digitar a tecla de seta para a esquerda. comandos possíveis: seta para a esquerda | certo | topo | baixa","description":"command arrow desc"},"left_label":{"message":"deixou","description":"left label"},"right_label":{"message":"direita","description":"right label"},"up_label":{"message":"acima","description":"up label"},"down_label":{"message":"baixa","description":"down label"},"command_go_to_label":{"message":"vamos para","description":"command go to label"},"command_go_to_description":{"message":"Diga 'vá para facebook.com para abrir uma nova guia para facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"Visita","description":"command go to label 2"},"command_go_to_label3":{"message":"abrir","description":"command go to label 3"},"command_search_label":{"message":"procurar","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Diga pesquisar gato ou google cat para pesquisar gato em google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marca páginas","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Favoritar esta página","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"remover favorito","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"remova este favorito","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Diga 'Marcar esta página' ou 'remover favorito' para adicionar ou remover favorito","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Adicionada esta página aos favoritos!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Removido esta página dos favoritos!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Toque","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Diga 'play song_name' para reproduzir a música do youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"achar","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"realçar","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"apagar","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Diga 'realçar palavra-chave' para realçar a palavra-chave na página atual e vice-versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"desfazer","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"refazer","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"desfazer tudo","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Diga desfazer / refazer / desfazer tudo para desfazer / refazer / desfazer tudo.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Próximo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navegue para inserir os elementos dizendo próximo e anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"rolar para cima","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"rolar para baixo","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Diga rolar para baixo / rolar para cima para rolar a página.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Toolkit de reconhecimento de voz","description":"app name"},"appDescription":{"message":"Preencha qualquer formulário da web usando apenas sua voz!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permitir permissão de áudio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"clique aqui para permitir a permissão de áudio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Configurações","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ouvindo","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Socorro","description":"help tab string"},"popup_help_heading_str":{"message":"Estamos aqui para ajudar","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Se você teve algum problema, por favor, relate-o","description":"popup help tab description"},"here":{"message":"aqui","description":"word"},"popup_default_language_label_str":{"message":"Idioma padrão","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Clique para alterar o idioma padrão","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Clique aqui para ligar / desligar o reconhecimento de fala","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Abrir configurações","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Inicie o 'Reconhecimento de fala' quando o Chrome iniciar","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Alterar idioma de reconhecimento de fala","description":"language change setting label"},"option_permission_success_msg":{"message":"Agora você pode fechar esta guia e usar esta ferramenta para digitar em qualquer site com sua voz!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Por favor, permita permissões para usar esta ferramenta!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji não encontrado!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Use o ditado de emoji (mais de 1.800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Pesquise o emoji de som mais próximo","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Como usar esta ferramenta?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova linha","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Clique para ver os comandos de voz","description":"voice commands control label "},"popup_show_commands_label":{"message":"Mostrar comandos","description":"voice commands control label "},"commands_list_label":{"message":"Lista de comandos para o idioma","description":"Commands List for language label"},"command_name_label":{"message":"Nome do Comando","description":"Command's Name label"},"command_description_label":{"message":"Descrição do Comando","description":"Command's Description label"},"command_emoji_description":{"message":"Diga 'emoji emoji's name' para inserir um emoji semelhante da lista de 1800 emojis. verifique a lista completa de emojis na página de configuração","description":"command emoji desc"},"command_newline_description":{"message":"Diga uma nova linha para digitar '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Diga pressione Enter para pressionar a tecla 'Enter'. Útil para enviar formulários","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista de Emoji para o idioma","description":"emoji list label"},"emoji_name_label":{"message":"Nome do emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Diga nova linha para obter uma nova linha.","description":"command newline desc"},"check_here_label":{"message":"Verifique aqui","description":"Check here label"},"imoji_list_label":{"message":"Verifique aqui","description":"Check here label"},"command_list_label":{"message":"Lista de Comandos","description":"Command List label"},"imoji_list_label_new":{"message":"Lista de Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Lista de símbolos matemáticos","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Atenção Plena","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Diga 'atenção plena' para inserir um pensamento de atenção plena aleatório na caixa de texto","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Clique no botão abaixo para permitir as permissões de áudio para usar esta ferramenta.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Observação: se você acidentalmente desabilitou as permissões, pode permitir que eles cliquem no canto superior esquerdo da barra de pesquisa desta guia","description":"audio permission extra info"},"allow_permission_label":{"message":"Permitir permissão","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Por favor, permita permissões para usar esta ferramenta!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Agora você pode fechar esta guia e usar esta ferramenta para digitar em qualquer site com sua voz!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Agora clique em qualquer entrada e fale","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Criar Código Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Habilitar desabilitar","description":"enable or disable command label"},"command_arrow_label":{"message":"seta","description":"command arrow label"},"command_arrow_description":{"message":"Diga 'seta para a esquerda' para digitar a tecla de seta para a esquerda. comandos possíveis: seta para a esquerda | certo | topo | baixa","description":"command arrow desc"},"left_label":{"message":"deixou","description":"left label"},"right_label":{"message":"direita","description":"right label"},"up_label":{"message":"acima","description":"up label"},"down_label":{"message":"baixa","description":"down label"},"command_search_label":{"message":"procurar","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Diga pesquisar gato ou google cat para pesquisar gato em google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marca páginas","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Favoritar esta página","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"remover favorito","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"remova este favorito","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Diga 'Marcar esta página' ou 'remover favorito' para adicionar ou remover favorito","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Adicionada esta página aos favoritos!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Removido esta página dos favoritos!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Toque","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Diga 'play song_name' para reproduzir a música do youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"achar","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"realçar","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"apagar","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Diga 'realçar palavra-chave' para realçar a palavra-chave na página atual e vice-versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"desfazer","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"refazer","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"desfazer tudo","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Diga desfazer / refazer / desfazer tudo para desfazer / refazer / desfazer tudo.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Próximo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navegue para inserir os elementos dizendo próximo e anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"rolar para cima","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"rolar para baixo","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Diga rolar para baixo / rolar para cima para rolar a página.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"vamos para","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"Visita","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"abrir","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Diga 'ir para o facebook.com' para abrir o facebook.com em uma nova guia. Diga 'ir para o favorito bookmark_name' para abrir o url do favorito.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"marca páginas","description":"bookmark"}} diff --git a/src/app/_locales/ro/messages.json b/src/app/_locales/ro/messages.json index 56d40fe..5b16103 100644 --- a/src/app/_locales/ro/messages.json +++ b/src/app/_locales/ro/messages.json @@ -1 +1 @@ -{"appName":{"message":"Set de instrumente de recunoaștere a vorbirii","description":"app name"},"appDescription":{"message":"Completați orice formular web utilizând doar vocea dvs.!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permiteți permisiunea audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"faceți clic aici pentru a permite permisiunea audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Setări","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ascultare","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Ajutor","description":"help tab string"},"popup_help_heading_str":{"message":"Suntem aici sa ajutam","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Dacă ați întâmpinat vreo problemă, vă rugăm să o raportați","description":"popup help tab description"},"here":{"message":"aici","description":"word"},"popup_default_language_label_str":{"message":"Limba implicita","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Faceți clic pentru a schimba limba implicită","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Faceți clic aici pentru a activa / dezactiva recunoașterea vorbirii","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Deschide setările","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Porniți „Recunoaștere vorbire” când pornește Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Schimbați limba de recunoaștere a vorbirii","description":"language change setting label"},"option_permission_success_msg":{"message":"Acum puteți închide această filă și puteți utiliza acest instrument pentru a tasta pe orice site web cu vocea dvs.!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Vă rugăm să permiteți permisiunile pentru a utiliza acest instrument!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji nu a fost găsit!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utilizați dictarea emoji (mai mult de 1800 de emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Căutați cel mai apropiat emoji sonor","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Cum se folosește acest instrument?","description":"How to use this tool ? string"},"new_line_label":{"message":"linie nouă","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Faceți clic pentru a vedea comenzile vocale","description":"voice commands control label "},"popup_show_commands_label":{"message":"Afișați comenzile","description":"voice commands control label "},"commands_list_label":{"message":"Lista de comenzi pentru limbă","description":"Commands List for language label"},"command_name_label":{"message":"Numele comenzii","description":"Command's Name label"},"command_description_label":{"message":"Descrierea comenzii","description":"Command's Description label"},"command_emoji_description":{"message":"Spuneți „numele emoji emoji” pentru a insera emoji oarecum asemănător din lista de 1800 de emoji. Verificați lista completă a emoji-urilor în pagina de setare","description":"command emoji desc"},"command_newline_description":{"message":"Spuneți o linie nouă pentru a tasta „.”","description":"command newline desc"},"command_press_enter_description":{"message":"Spuneți apăsați Enter pentru a apăsa tasta „Enter”. Util pentru trimiterea formularelor","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista Emoji pentru limbă","description":"emoji list label"},"emoji_name_label":{"message":"Numele Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Spuneți o nouă linie pentru a obține o nouă linie.","description":"command newline desc"},"check_here_label":{"message":"Verifică aici","description":"Check here label"},"imoji_list_label":{"message":"Verifică aici","description":"Check here label"},"command_list_label":{"message":"Lista de comenzi","description":"Command List label"},"imoji_list_label_new":{"message":"Lista Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Lista simbolurilor matematice","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Sănătate mintală","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Spuneți „atenție” pentru a insera un gând aleatoriu de atenție în caseta de text","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Vă rugăm să faceți clic pe butonul de mai jos pentru a permite permisiunile audio pentru a utiliza acest instrument.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Notă: dacă aveți permisiunile interzise accidental, le puteți permite să facă clic pe colțul din stânga sus al barei de căutare a acestei file","description":"audio permission extra info"},"allow_permission_label":{"message":"Permiteți permisiunea","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Vă rugăm să permiteți permisiunile pentru a utiliza acest instrument!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Acum puteți închide această filă și puteți utiliza acest instrument pentru a tasta pe orice site web cu vocea dvs.!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Acum faceți clic pe orice intrare și vorbiți","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Creați cod Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Permite dezactivarea","description":"enable or disable command label"},"command_arrow_label":{"message":"săgeată","description":"command arrow label"},"command_arrow_description":{"message":"Spuneți „săgeată la stânga” pentru a tasta tasta săgeată la stânga. comenzi posibile: săgeată la stânga | dreapta | sus | jos","description":"command arrow desc"},"left_label":{"message":"stânga","description":"left label"},"right_label":{"message":"dreapta","description":"right label"},"up_label":{"message":"sus","description":"up label"},"down_label":{"message":"jos","description":"down label"},"command_go_to_label":{"message":"mergi la","description":"command go to label"},"command_go_to_description":{"message":"Spuneți „accesați facebook.com pentru a deschide o filă nouă pentru facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"vizita","description":"command go to label 2"},"command_go_to_label3":{"message":"deschis","description":"command go to label 3"},"command_search_label":{"message":"căutare","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Spuneți căutare pisică sau pisică google pentru a căuta pisică pe google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marcaj","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Marcați această pagină","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"eliminați marcajul","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"eliminați acest marcaj","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Spuneți „Marcați această pagină” sau „Ștergeți marcajul” pentru a adăuga sau a elimina marcajul","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Am adăugat această pagină la marcaje!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Am eliminat această pagină din marcaje!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Joaca","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Spuneți „jucați numele_cântecului”, acesta va reda melodia de pe YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"găsi","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"a evidentia","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Spuneți „evidențiați cuvântul cheie” pentru a evidenția cuvântul cheie pe pagina curentă și invers","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Anula","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"a reface","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"anulați toate","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Spune anulare / refacere / anulare toate pentru a anula / reface / anula toate.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Următorul","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigați la elementele de intrare spunând următorul și anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"derulați în sus","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"deruleaza in jos","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Spuneți derulați în jos / derulați în sus pentru a derula pagina.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Set de instrumente de recunoaștere a vorbirii","description":"app name"},"appDescription":{"message":"Completați orice formular web utilizând doar vocea dvs.!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Permiteți permisiunea audio","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"faceți clic aici pentru a permite permisiunea audio","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Setări","description":"setting tab string"},"popup_mic_listening_label":{"message":"Ascultare","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Ajutor","description":"help tab string"},"popup_help_heading_str":{"message":"Suntem aici sa ajutam","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Dacă ați întâmpinat vreo problemă, vă rugăm să o raportați","description":"popup help tab description"},"here":{"message":"aici","description":"word"},"popup_default_language_label_str":{"message":"Limba implicita","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Faceți clic pentru a schimba limba implicită","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Faceți clic aici pentru a activa / dezactiva recunoașterea vorbirii","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Deschide setările","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Porniți „Recunoaștere vorbire” când pornește Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Schimbați limba de recunoaștere a vorbirii","description":"language change setting label"},"option_permission_success_msg":{"message":"Acum puteți închide această filă și puteți utiliza acest instrument pentru a tasta pe orice site web cu vocea dvs.!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Vă rugăm să permiteți permisiunile pentru a utiliza acest instrument!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji nu a fost găsit!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Utilizați dictarea emoji (mai mult de 1800 de emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Căutați cel mai apropiat emoji sonor","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Cum se folosește acest instrument?","description":"How to use this tool ? string"},"new_line_label":{"message":"linie nouă","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Faceți clic pentru a vedea comenzile vocale","description":"voice commands control label "},"popup_show_commands_label":{"message":"Afișați comenzile","description":"voice commands control label "},"commands_list_label":{"message":"Lista de comenzi pentru limbă","description":"Commands List for language label"},"command_name_label":{"message":"Numele comenzii","description":"Command's Name label"},"command_description_label":{"message":"Descrierea comenzii","description":"Command's Description label"},"command_emoji_description":{"message":"Spuneți „numele emoji emoji” pentru a insera emoji oarecum asemănător din lista de 1800 de emoji. Verificați lista completă a emoji-urilor în pagina de setare","description":"command emoji desc"},"command_newline_description":{"message":"Spuneți o linie nouă pentru a tasta „.”","description":"command newline desc"},"command_press_enter_description":{"message":"Spuneți apăsați Enter pentru a apăsa tasta „Enter”. Util pentru trimiterea formularelor","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Lista Emoji pentru limbă","description":"emoji list label"},"emoji_name_label":{"message":"Numele Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Spuneți o nouă linie pentru a obține o nouă linie.","description":"command newline desc"},"check_here_label":{"message":"Verifică aici","description":"Check here label"},"imoji_list_label":{"message":"Verifică aici","description":"Check here label"},"command_list_label":{"message":"Lista de comenzi","description":"Command List label"},"imoji_list_label_new":{"message":"Lista Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Lista simbolurilor matematice","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Sănătate mintală","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Spuneți „atenție” pentru a insera un gând aleatoriu de atenție în caseta de text","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Vă rugăm să faceți clic pe butonul de mai jos pentru a permite permisiunile audio pentru a utiliza acest instrument.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Notă: dacă aveți permisiunile interzise accidental, le puteți permite să facă clic pe colțul din stânga sus al barei de căutare a acestei file","description":"audio permission extra info"},"allow_permission_label":{"message":"Permiteți permisiunea","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Vă rugăm să permiteți permisiunile pentru a utiliza acest instrument!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Acum puteți închide această filă și puteți utiliza acest instrument pentru a tasta pe orice site web cu vocea dvs.!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Acum faceți clic pe orice intrare și vorbiți","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Creați cod Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Permite dezactivarea","description":"enable or disable command label"},"command_arrow_label":{"message":"săgeată","description":"command arrow label"},"command_arrow_description":{"message":"Spuneți „săgeată la stânga” pentru a tasta tasta săgeată la stânga. comenzi posibile: săgeată la stânga | dreapta | sus | jos","description":"command arrow desc"},"left_label":{"message":"stânga","description":"left label"},"right_label":{"message":"dreapta","description":"right label"},"up_label":{"message":"sus","description":"up label"},"down_label":{"message":"jos","description":"down label"},"command_search_label":{"message":"căutare","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Spuneți căutare pisică sau pisică google pentru a căuta pisică pe google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"marcaj","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Marcați această pagină","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"eliminați marcajul","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"eliminați acest marcaj","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Spuneți „Marcați această pagină” sau „Ștergeți marcajul” pentru a adăuga sau a elimina marcajul","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Am adăugat această pagină la marcaje!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Am eliminat această pagină din marcaje!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Joaca","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Spuneți „jucați numele_cântecului”, acesta va reda melodia de pe YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"găsi","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"a evidentia","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Spuneți „evidențiați cuvântul cheie” pentru a evidenția cuvântul cheie pe pagina curentă și invers","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Anula","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"a reface","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"anulați toate","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Spune anulare / refacere / anulare toate pentru a anula / reface / anula toate.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Următorul","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"anterior","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigați la elementele de intrare spunând următorul și anterior","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"derulați în sus","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"deruleaza in jos","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Spuneți derulați în jos / derulați în sus pentru a derula pagina.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"mergi la","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"vizita","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"deschis","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Spuneți „accesați facebook.com” pentru a deschide facebook.com într-o filă nouă. Spuneți „accesați marcajul bookmark_name” pentru a deschide adresa URL a marcajului.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"marcaj","description":"bookmark"}} diff --git a/src/app/_locales/ru/messages.json b/src/app/_locales/ru/messages.json index 378abe3..3e50338 100644 --- a/src/app/_locales/ru/messages.json +++ b/src/app/_locales/ru/messages.json @@ -1 +1 @@ -{"appName":{"message":"Набор средств распознавания речи","description":"app name"},"appDescription":{"message":"Заполняйте любую веб-форму, используя только свой голос!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Разрешить аудио разрешение","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"нажмите здесь, чтобы разрешить аудио","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Настройки","description":"setting tab string"},"popup_mic_listening_label":{"message":"Прослушивание","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Помогите","description":"help tab string"},"popup_help_heading_str":{"message":"мы здесь, чтобы помочь","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Если у вас возникла проблема, сообщите об этом","description":"popup help tab description"},"here":{"message":"Вот","description":"word"},"popup_default_language_label_str":{"message":"Язык по умолчанию","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Нажмите, чтобы изменить язык по умолчанию","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Нажмите здесь, чтобы включить / выключить распознавание речи","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Открыть настройки","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Запустить распознавание речи при запуске Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Изменить язык распознавания речи","description":"language change setting label"},"option_permission_success_msg":{"message":"Теперь вы можете закрыть эту вкладку и использовать этот инструмент для ввода текста на любом веб-сайте своим голосом!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Разрешите разрешения, чтобы использовать этот инструмент!","description":"error message when user rejects permission"},"emoji":{"message":"смайлики","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Эмодзи не найден!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Используйте смайлы под диктовку (более 1800 смайликов)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Найдите самые близкие по звучанию смайлы","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Как пользоваться этим инструментом?","description":"How to use this tool ? string"},"new_line_label":{"message":"новая линия","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Нажмите, чтобы увидеть голосовые команды","description":"voice commands control label "},"popup_show_commands_label":{"message":"Показать команды","description":"voice commands control label "},"commands_list_label":{"message":"Список команд для языка","description":"Commands List for language label"},"command_name_label":{"message":"Имя команды","description":"Command's Name label"},"command_description_label":{"message":"Описание команды","description":"Command's Description label"},"command_emoji_description":{"message":"Произнесите «имя смайлика смайлика», чтобы вставить несколько похожих смайлов из списка 1800 смайлов. проверить полный список смайликов на странице настроек","description":"command emoji desc"},"command_newline_description":{"message":"Произнесите новую строку для ввода \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Скажем, нажмите Enter, чтобы нажать клавишу «Ввод». Полезно для отправки форм","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Список эмодзи для языка","description":"emoji list label"},"emoji_name_label":{"message":"Имя эмодзи","description":"emoji name label"},"command_newline_description_new":{"message":"Произнесите новую строку, чтобы получить новую строку.","description":"command newline desc"},"check_here_label":{"message":"Проверить здесь","description":"Check here label"},"imoji_list_label":{"message":"Проверить здесь","description":"Check here label"},"command_list_label":{"message":"Список команд","description":"Command List label"},"imoji_list_label_new":{"message":"Список эмодзи","description":"imoji list label"},"symbol_list_label":{"message":"Список математических символов","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Внимательность","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Скажите \"внимательность\", чтобы вставить случайную мысль осознанности в текстовое поле.","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Нажмите кнопку ниже, чтобы разрешить доступ к аудио для использования этого инструмента.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Примечание. Если вы случайно запретили разрешения, вы можете разрешить им щелкнуть верхний левый угол панели поиска на этой вкладке.","description":"audio permission extra info"},"allow_permission_label":{"message":"Разрешить разрешение","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Разрешите разрешения, чтобы использовать этот инструмент!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Теперь вы можете закрыть эту вкладку и использовать этот инструмент для ввода текста на любом веб-сайте своим голосом!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Теперь нажмите на любой ввод и говорите","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Создать код Морзе","description":"cmc label"},"command_enable_disable_label":{"message":"Включить выключить","description":"enable or disable command label"},"command_arrow_label":{"message":"стрелка","description":"command arrow label"},"command_arrow_description":{"message":"Произнесите «стрелка влево», чтобы ввести клавишу со стрелкой влево. возможные команды: стрелка влево | право | наверх | вниз","description":"command arrow desc"},"left_label":{"message":"оставили","description":"left label"},"right_label":{"message":"верно","description":"right label"},"up_label":{"message":"вверх","description":"up label"},"down_label":{"message":"вниз","description":"down label"},"command_go_to_label":{"message":"идти к","description":"command go to label"},"command_go_to_description":{"message":"Скажите 'перейдите на facebook.com, чтобы открыть новую вкладку для facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"посещение","description":"command go to label 2"},"command_go_to_label3":{"message":"открыто","description":"command go to label 3"},"command_search_label":{"message":"поиск","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Скажите \"поисковая кошка\" или \"кошка Google\", чтобы найти кошку на сайте google.com.","description":"command go to label 3"},"command_bookmark_label":{"message":"закладка","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"добавить эту страницу в закладки","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"удалить закладку","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"удалить эту закладку","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Скажите \"Добавить эту страницу в закладки\" или \"удалить закладку\", чтобы добавить или удалить закладку.","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Добавил эту страницу в закладки!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Эта страница удалена из закладок!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"играть в","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Скажите \"play song_name\", будет проигрываться песня с YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"найти","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"выделять","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"не выделять","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Произнесите \"выделить ключевое слово\", чтобы выделить ключевое слово на текущей странице, и наоборот.","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"отменить","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"повторить","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"отменить все","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Скажите «Отменить / повторить / отменить все», чтобы отменить / повторить / отменить все.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"следующий","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"предыдущий","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Перейдите к элементам ввода, произнося следующий и предыдущий","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"прокрутите вверх","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"прокрутить вниз","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Произнесите прокрутку вниз / прокрутку вверх, чтобы прокрутить страницу.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Набор средств распознавания речи","description":"app name"},"appDescription":{"message":"Заполняйте любую веб-форму, используя только свой голос!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Разрешить аудио разрешение","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"нажмите здесь, чтобы разрешить аудио","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Настройки","description":"setting tab string"},"popup_mic_listening_label":{"message":"Прослушивание","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Помогите","description":"help tab string"},"popup_help_heading_str":{"message":"мы здесь, чтобы помочь","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Если у вас возникла проблема, сообщите об этом","description":"popup help tab description"},"here":{"message":"Вот","description":"word"},"popup_default_language_label_str":{"message":"Язык по умолчанию","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Нажмите, чтобы изменить язык по умолчанию","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Нажмите здесь, чтобы включить / выключить распознавание речи","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Открыть настройки","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Запустить распознавание речи при запуске Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Изменить язык распознавания речи","description":"language change setting label"},"option_permission_success_msg":{"message":"Теперь вы можете закрыть эту вкладку и использовать этот инструмент для ввода текста на любом веб-сайте своим голосом!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Разрешите разрешения, чтобы использовать этот инструмент!","description":"error message when user rejects permission"},"emoji":{"message":"смайлики","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Эмодзи не найден!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Используйте смайлы под диктовку (более 1800 смайликов)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Найдите самые близкие по звучанию смайлы","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Как пользоваться этим инструментом?","description":"How to use this tool ? string"},"new_line_label":{"message":"новая линия","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Нажмите, чтобы увидеть голосовые команды","description":"voice commands control label "},"popup_show_commands_label":{"message":"Показать команды","description":"voice commands control label "},"commands_list_label":{"message":"Список команд для языка","description":"Commands List for language label"},"command_name_label":{"message":"Имя команды","description":"Command's Name label"},"command_description_label":{"message":"Описание команды","description":"Command's Description label"},"command_emoji_description":{"message":"Произнесите «имя смайлика смайлика», чтобы вставить несколько похожих смайлов из списка 1800 смайлов. проверить полный список смайликов на странице настроек","description":"command emoji desc"},"command_newline_description":{"message":"Произнесите новую строку для ввода \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"Скажем, нажмите Enter, чтобы нажать клавишу «Ввод». Полезно для отправки форм","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Список эмодзи для языка","description":"emoji list label"},"emoji_name_label":{"message":"Имя эмодзи","description":"emoji name label"},"command_newline_description_new":{"message":"Произнесите новую строку, чтобы получить новую строку.","description":"command newline desc"},"check_here_label":{"message":"Проверить здесь","description":"Check here label"},"imoji_list_label":{"message":"Проверить здесь","description":"Check here label"},"command_list_label":{"message":"Список команд","description":"Command List label"},"imoji_list_label_new":{"message":"Список эмодзи","description":"imoji list label"},"symbol_list_label":{"message":"Список математических символов","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Внимательность","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Скажите \"внимательность\", чтобы вставить случайную мысль осознанности в текстовое поле.","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Нажмите кнопку ниже, чтобы разрешить доступ к аудио для использования этого инструмента.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Примечание. Если вы случайно запретили разрешения, вы можете разрешить им щелкнуть верхний левый угол панели поиска на этой вкладке.","description":"audio permission extra info"},"allow_permission_label":{"message":"Разрешить разрешение","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Разрешите разрешения, чтобы использовать этот инструмент!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Теперь вы можете закрыть эту вкладку и использовать этот инструмент для ввода текста на любом веб-сайте своим голосом!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Теперь нажмите на любой ввод и говорите","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Создать код Морзе","description":"cmc label"},"command_enable_disable_label":{"message":"Включить выключить","description":"enable or disable command label"},"command_arrow_label":{"message":"стрелка","description":"command arrow label"},"command_arrow_description":{"message":"Произнесите «стрелка влево», чтобы ввести клавишу со стрелкой влево. возможные команды: стрелка влево | право | наверх | вниз","description":"command arrow desc"},"left_label":{"message":"оставили","description":"left label"},"right_label":{"message":"верно","description":"right label"},"up_label":{"message":"вверх","description":"up label"},"down_label":{"message":"вниз","description":"down label"},"command_search_label":{"message":"поиск","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Скажите \"поисковая кошка\" или \"кошка Google\", чтобы найти кошку на сайте google.com.","description":"command go to label 3"},"command_bookmark_label":{"message":"закладка","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"добавить эту страницу в закладки","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"удалить закладку","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"удалить эту закладку","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Скажите \"Добавить эту страницу в закладки\" или \"удалить закладку\", чтобы добавить или удалить закладку.","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Добавил эту страницу в закладки!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Эта страница удалена из закладок!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"играть в","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Скажите \"play song_name\", будет проигрываться песня с YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"найти","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"выделять","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"не выделять","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Произнесите \"выделить ключевое слово\", чтобы выделить ключевое слово на текущей странице, и наоборот.","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"отменить","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"повторить","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"отменить все","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Скажите «Отменить / повторить / отменить все», чтобы отменить / повторить / отменить все.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"следующий","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"предыдущий","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Перейдите к элементам ввода, произнося следующий и предыдущий","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"прокрутите вверх","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"прокрутить вниз","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Произнесите прокрутку вниз / прокрутку вверх, чтобы прокрутить страницу.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"перейти к","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"посещение","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"открытым","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Скажите «перейти на facebook.com», чтобы открыть facebook.com в новой вкладке. Скажите «перейти к закладке имя_закладки», чтобы открыть URL-адрес закладки.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"закладка","description":"bookmark"}} diff --git a/src/app/_locales/sk/messages.json b/src/app/_locales/sk/messages.json index eeaaf91..a51430e 100644 --- a/src/app/_locales/sk/messages.json +++ b/src/app/_locales/sk/messages.json @@ -1 +1 @@ -{"appName":{"message":"Sada nástrojov na rozpoznávanie reči","description":"app name"},"appDescription":{"message":"Vyplňte akýkoľvek webový formulár iba pomocou svojho hlasu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Povoliť zvukové povolenie","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknutím sem povolíte povolenie zvuku","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"nastavenie","description":"setting tab string"},"popup_mic_listening_label":{"message":"Počúvanie","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomoc","description":"help tab string"},"popup_help_heading_str":{"message":"Sme tu, aby sme pomohli","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ak ste narazili na akýkoľvek problém, nahláste to","description":"popup help tab description"},"here":{"message":"tu","description":"word"},"popup_default_language_label_str":{"message":"Predvolený jazyk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknutím zmeníte predvolený jazyk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknutím sem zapnete / vypnete rozpoznávanie reči","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otvorte Nastavenia","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Pri spustení prehliadača Chrome spustite program „Rozpoznávanie reči“","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Zmena jazyka rozpoznávania reči","description":"language change setting label"},"option_permission_success_msg":{"message":"Teraz môžete zavrieť túto kartu a použiť tento nástroj na písanie na ľubovoľnom webe pomocou svojho hlasu!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Ak chcete používať tento nástroj, povolte povolenia.","description":"error message when user rejects permission"},"emoji":{"message":"emodži","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emodži sa nenašli!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Použite diktát emodži (viac ako 1 800 emodži)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Vyhľadajte najbližšie znejúce emodži","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Ako používať tento nástroj?","description":"How to use this tool ? string"},"new_line_label":{"message":"Nový riadok","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknutím zobrazíte hlasové príkazy","description":"voice commands control label "},"popup_show_commands_label":{"message":"Zobraziť príkazy","description":"voice commands control label "},"commands_list_label":{"message":"Zoznam príkazov pre jazyk","description":"Commands List for language label"},"command_name_label":{"message":"Meno príkazu","description":"Command's Name label"},"command_description_label":{"message":"Popis príkazu","description":"Command's Description label"},"command_emoji_description":{"message":"Povedzte „názov emodži emodži“ a vložte trochu podobné emodži zo zoznamu 1 800 emodži. pozrite si úplný zoznam emodži na stránke nastavenia","description":"command emoji desc"},"command_newline_description":{"message":"Povedzte nový riadok a zadajte „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Povedzte stlačte kláves Enter a stlačte kláves „Enter“. Užitočné na odosielanie formulárov","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Zoznam emodži pre jazyk","description":"emoji list label"},"emoji_name_label":{"message":"Meno emodži","description":"emoji name label"},"command_newline_description_new":{"message":"Povedzte nový riadok a získate nový riadok.","description":"command newline desc"},"check_here_label":{"message":"Skontrolujte tu","description":"Check here label"},"imoji_list_label":{"message":"Skontrolujte tu","description":"Check here label"},"command_list_label":{"message":"Zoznam príkazov","description":"Command List label"},"imoji_list_label_new":{"message":"Zoznam emodži","description":"imoji list label"},"symbol_list_label":{"message":"Zoznam matematických symbolov","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Všímavosť","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Povedzte „všímavosť“ a do textového poľa vložte náhodnú myšlienku všímavosti","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknutím na tlačidlo nižšie povolíte zvukové povolenia, aby ste mohli používať tento nástroj.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Poznámka: Ak ste omylom nepovolili povolenia, môžete ich povoliť kliknutím na ľavý horný roh vyhľadávacieho panela na tejto karte.","description":"audio permission extra info"},"allow_permission_label":{"message":"Povoliť povolenie","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Ak chcete používať tento nástroj, povolte povolenia.","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Teraz môžete zavrieť túto kartu a použiť tento nástroj na písanie na ľubovoľnom webe pomocou svojho hlasu!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Teraz kliknite na ľubovoľný vstup a hovorte","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Vytvorte Morseovu abecedu","description":"cmc label"},"command_enable_disable_label":{"message":"Povoliť zakázať","description":"enable or disable command label"},"command_arrow_label":{"message":"šípka","description":"command arrow label"},"command_arrow_description":{"message":"Povedzte „šípka doľava“ a zadajte kláves so šípkou doľava. možné príkazy: šípka doľava | vpravo | hore | dole","description":"command arrow desc"},"left_label":{"message":"vľavo","description":"left label"},"right_label":{"message":"správny","description":"right label"},"up_label":{"message":"hore","description":"up label"},"down_label":{"message":"dole","description":"down label"},"command_go_to_label":{"message":"ísť do","description":"command go to label"},"command_go_to_description":{"message":"Povedzte „choďte na facebook.com a otvorte novú kartu pre facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"navštíviť","description":"command go to label 2"},"command_go_to_label3":{"message":"otvorené","description":"command go to label 3"},"command_search_label":{"message":"Vyhľadávanie","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Ak chcete vyhľadať mačku na google.com, povedzte vyhľadávať mačku alebo google mačku","description":"command go to label 3"},"command_bookmark_label":{"message":"záložka","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"pridať stránku medzi záložky","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"odstrániť záložku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"odstrániť túto záložku","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Ak chcete pridať alebo odstrániť záložku, povedzte „Označiť túto stránku ako záložku“ alebo „Odstrániť záložku“","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Táto stránka bola pridaná do záložiek!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Táto stránka bola odstránená zo záložiek!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"hrať","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Povedzte „play song_name“, prehrá sa skladba z youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"Nájsť","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Zlatý klinec","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nezvýrazniť","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Povedzte „zvýrazniť kľúčové slovo“, čím zvýrazníte kľúčové slovo na aktuálnej stránke a naopak","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Vrátenie späť","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"prerobiť","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"vrátiť späť všetky","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Ak chcete vrátiť späť / znova / vrátiť späť všetky, povedzte Späť / Znova / Vrátiť späť všetky.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Ďalšie","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"predchádzajúce","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Prejdite na vstupné prvky vyslovením nasledujúceho a predchádzajúceho","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"posunúť nahor","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"posunúť nadol","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Posunutím stránky nadol / posunutím nahor posuniete stránku.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Sada nástrojov na rozpoznávanie reči","description":"app name"},"appDescription":{"message":"Vyplňte akýkoľvek webový formulár iba pomocou svojho hlasu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Povoliť zvukové povolenie","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknutím sem povolíte povolenie zvuku","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"nastavenie","description":"setting tab string"},"popup_mic_listening_label":{"message":"Počúvanie","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomoc","description":"help tab string"},"popup_help_heading_str":{"message":"Sme tu, aby sme pomohli","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ak ste narazili na akýkoľvek problém, nahláste to","description":"popup help tab description"},"here":{"message":"tu","description":"word"},"popup_default_language_label_str":{"message":"Predvolený jazyk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknutím zmeníte predvolený jazyk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknutím sem zapnete / vypnete rozpoznávanie reči","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Otvorte Nastavenia","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Pri spustení prehliadača Chrome spustite program „Rozpoznávanie reči“","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Zmena jazyka rozpoznávania reči","description":"language change setting label"},"option_permission_success_msg":{"message":"Teraz môžete zavrieť túto kartu a použiť tento nástroj na písanie na ľubovoľnom webe pomocou svojho hlasu!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Ak chcete používať tento nástroj, povolte povolenia.","description":"error message when user rejects permission"},"emoji":{"message":"emodži","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emodži sa nenašli!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Použite diktát emodži (viac ako 1 800 emodži)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Vyhľadajte najbližšie znejúce emodži","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Ako používať tento nástroj?","description":"How to use this tool ? string"},"new_line_label":{"message":"Nový riadok","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknutím zobrazíte hlasové príkazy","description":"voice commands control label "},"popup_show_commands_label":{"message":"Zobraziť príkazy","description":"voice commands control label "},"commands_list_label":{"message":"Zoznam príkazov pre jazyk","description":"Commands List for language label"},"command_name_label":{"message":"Meno príkazu","description":"Command's Name label"},"command_description_label":{"message":"Popis príkazu","description":"Command's Description label"},"command_emoji_description":{"message":"Povedzte „názov emodži emodži“ a vložte trochu podobné emodži zo zoznamu 1 800 emodži. pozrite si úplný zoznam emodži na stránke nastavenia","description":"command emoji desc"},"command_newline_description":{"message":"Povedzte nový riadok a zadajte „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Povedzte stlačte kláves Enter a stlačte kláves „Enter“. Užitočné na odosielanie formulárov","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Zoznam emodži pre jazyk","description":"emoji list label"},"emoji_name_label":{"message":"Meno emodži","description":"emoji name label"},"command_newline_description_new":{"message":"Povedzte nový riadok a získate nový riadok.","description":"command newline desc"},"check_here_label":{"message":"Skontrolujte tu","description":"Check here label"},"imoji_list_label":{"message":"Skontrolujte tu","description":"Check here label"},"command_list_label":{"message":"Zoznam príkazov","description":"Command List label"},"imoji_list_label_new":{"message":"Zoznam emodži","description":"imoji list label"},"symbol_list_label":{"message":"Zoznam matematických symbolov","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Všímavosť","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Povedzte „všímavosť“ a do textového poľa vložte náhodnú myšlienku všímavosti","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknutím na tlačidlo nižšie povolíte zvukové povolenia, aby ste mohli používať tento nástroj.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Poznámka: Ak ste omylom nepovolili povolenia, môžete ich povoliť kliknutím na ľavý horný roh vyhľadávacieho panela na tejto karte.","description":"audio permission extra info"},"allow_permission_label":{"message":"Povoliť povolenie","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Ak chcete používať tento nástroj, povolte povolenia.","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Teraz môžete zavrieť túto kartu a použiť tento nástroj na písanie na ľubovoľnom webe pomocou svojho hlasu!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Teraz kliknite na ľubovoľný vstup a hovorte","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Vytvorte Morseovu abecedu","description":"cmc label"},"command_enable_disable_label":{"message":"Povoliť zakázať","description":"enable or disable command label"},"command_arrow_label":{"message":"šípka","description":"command arrow label"},"command_arrow_description":{"message":"Povedzte „šípka doľava“ a zadajte kláves so šípkou doľava. možné príkazy: šípka doľava | vpravo | hore | dole","description":"command arrow desc"},"left_label":{"message":"vľavo","description":"left label"},"right_label":{"message":"správny","description":"right label"},"up_label":{"message":"hore","description":"up label"},"down_label":{"message":"dole","description":"down label"},"command_search_label":{"message":"Vyhľadávanie","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Ak chcete vyhľadať mačku na google.com, povedzte vyhľadávať mačku alebo google mačku","description":"command go to label 3"},"command_bookmark_label":{"message":"záložka","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"pridať stránku medzi záložky","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"odstrániť záložku","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"odstrániť túto záložku","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Ak chcete pridať alebo odstrániť záložku, povedzte „Označiť túto stránku ako záložku“ alebo „Odstrániť záložku“","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Táto stránka bola pridaná do záložiek!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Táto stránka bola odstránená zo záložiek!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"hrať","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Povedzte „play song_name“, prehrá sa skladba z youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"Nájsť","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Zlatý klinec","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"nezvýrazniť","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Povedzte „zvýrazniť kľúčové slovo“, čím zvýrazníte kľúčové slovo na aktuálnej stránke a naopak","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Vrátenie späť","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"prerobiť","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"vrátiť späť všetky","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Ak chcete vrátiť späť / znova / vrátiť späť všetky, povedzte Späť / Znova / Vrátiť späť všetky.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Ďalšie","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"predchádzajúce","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Prejdite na vstupné prvky vyslovením nasledujúceho a predchádzajúceho","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"posunúť nahor","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"posunúť nadol","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Posunutím stránky nadol / posunutím nahor posuniete stránku.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"ísť do","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"navštíviť","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"otvorené","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Povedzte „prejsť na facebook.com“ a otvorí sa facebook.com na novej karte. Ak chcete otvoriť adresu URL záložky, povedzte „prejsť na záložku bookmark_name“.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"záložka","description":"bookmark"}} diff --git a/src/app/_locales/sl/messages.json b/src/app/_locales/sl/messages.json index 86fbdf2..bdc545e 100644 --- a/src/app/_locales/sl/messages.json +++ b/src/app/_locales/sl/messages.json @@ -1 +1 @@ -{"appName":{"message":"Nabor orodij za prepoznavanje govora","description":"app name"},"appDescription":{"message":"Izpolnite kateri koli spletni obrazec samo z glasom!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Dovoli zvočno dovoljenje","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknite tukaj, če želite dovoliti dovoljenje za zvok","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Nastavitve","description":"setting tab string"},"popup_mic_listening_label":{"message":"Poslušam","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomoč","description":"help tab string"},"popup_help_heading_str":{"message":"Tu smo, da vam pomagamo","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Če imate kakršno koli težavo, jo prijavite","description":"popup help tab description"},"here":{"message":"tukaj","description":"word"},"popup_default_language_label_str":{"message":"Privzeti jezik","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknite, če želite spremeniti privzeti jezik","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknite tukaj, da vklopite / izklopite prepoznavanje govora","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Odprite Nastavitve","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Zaženite »Prepoznavanje govora«, ko se zažene Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Spremenite jezik za prepoznavanje govora","description":"language change setting label"},"option_permission_success_msg":{"message":"Zdaj lahko zaprete ta zavihek in s tem orodjem tipkate na katero koli spletno mesto z glasom!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Dovolite dovoljenja za uporabo tega orodja!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emodžijev ni mogoče najti!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Uporabite narekovanje čustvenih simbolov (več kot 1800 čustvenih simbolov)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Poiščite najbližji emodži","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kako uporabljati to orodje?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova vrstica","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknite, če si želite ogledati glasovne ukaze","description":"voice commands control label "},"popup_show_commands_label":{"message":"Prikaži ukaze","description":"voice commands control label "},"commands_list_label":{"message":"Seznam ukazov za jezik","description":"Commands List for language label"},"command_name_label":{"message":"Ime ukaza","description":"Command's Name label"},"command_description_label":{"message":"Opis ukaza","description":"Command's Description label"},"command_emoji_description":{"message":"Izgovorite »ime čustvenega simbola«, če želite vstaviti nekaj podobnih znakov s seznama 1800 znakov. preveri celoten seznam emodžijev na strani z nastavitvami","description":"command emoji desc"},"command_newline_description":{"message":"Izgovorite novo vrstico, da vtipkate '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Recimo, da pritisnete enter, da pritisnete tipko 'Enter'. Uporabno za oddajo obrazcev","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Seznam znakov za jezik","description":"emoji list label"},"emoji_name_label":{"message":"Ime emojija","description":"emoji name label"},"command_newline_description_new":{"message":"Izgovorite novo vrstico, če želite dobiti novo vrstico.","description":"command newline desc"},"check_here_label":{"message":"Preverite tukaj","description":"Check here label"},"imoji_list_label":{"message":"Preverite tukaj","description":"Check here label"},"command_list_label":{"message":"Seznam ukazov","description":"Command List label"},"imoji_list_label_new":{"message":"Seznam emodžijev","description":"imoji list label"},"symbol_list_label":{"message":"Seznam matematičnih simbolov","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Čuječnost","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Recite „pozornost“, da v besedilno polje vstavite naključno miselnost","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknite spodnji gumb, če želite dovoliti zvočna dovoljenja za uporabo tega orodja.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Opomba: Če ste pomotoma zavrnili dovoljenja, jim lahko dovolite, da kliknejo zgornji levi kot iskalne vrstice tega zavihka","description":"audio permission extra info"},"allow_permission_label":{"message":"Dovoli dovoljenje","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Dovolite dovoljenja za uporabo tega orodja!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Zdaj lahko zaprete ta zavihek in s tem orodjem tipkate na katero koli spletno mesto z glasom!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Zdaj kliknite poljuben vnos in govorite","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Ustvari Morsejevo abecedo","description":"cmc label"},"command_enable_disable_label":{"message":"Omogoči onemogoči","description":"enable or disable command label"},"command_arrow_label":{"message":"puščica","description":"command arrow label"},"command_arrow_description":{"message":"Izgovorite »puščica levo«, če želite vnesti levo puščico. možni ukazi: puščica levo | desno | na vrh | dol","description":"command arrow desc"},"left_label":{"message":"levo","description":"left label"},"right_label":{"message":"prav","description":"right label"},"up_label":{"message":"gor","description":"up label"},"down_label":{"message":"dol","description":"down label"},"command_go_to_label":{"message":"Pojdi do","description":"command go to label"},"command_go_to_description":{"message":"Recite \"pojdite na facebook.com, da odprete nov zavihek za facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"obisk","description":"command go to label 2"},"command_go_to_label3":{"message":"odprto","description":"command go to label 3"},"command_search_label":{"message":"Iskanje","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Recite iskanje mačka ali google mačka za iskanje mačke na google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"zaznamek","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"označi to stran","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"odstrani zaznamek","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"odstranite ta zaznamek","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Izgovorite 'Dodaj to stran med zaznamke' ali 'odstrani zaznamek', če želite dodati ali odstraniti zaznamek","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"To stran je dodal med zaznamke!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"To stran odstranili iz zaznamkov!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"igra","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Recite 'play song_name', predvajala se bo skladba iz youtuba.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"najti","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"poudarite","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"osvetlitev","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Izgovorite „Označi ključno besedo“, da označite ključno besedo na trenutni strani in obratno","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"razveljavi","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ponoviti","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"razveljavi vse","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Recite razveljavi / ponovi / razveljavi vse, če želite razveljaviti / ponoviti / razveljaviti vse.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Naslednji","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"prejšnji","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Pomaknite se do vnosnih elementov tako, da izgovorite naslednji in prejšnji","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"pomaknite navzgor","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"pomaknite navzdol","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Recite, da se pomaknete navzdol / navzgor, da se pomaknete po strani.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Nabor orodij za prepoznavanje govora","description":"app name"},"appDescription":{"message":"Izpolnite kateri koli spletni obrazec samo z glasom!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Dovoli zvočno dovoljenje","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"kliknite tukaj, če želite dovoliti dovoljenje za zvok","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Nastavitve","description":"setting tab string"},"popup_mic_listening_label":{"message":"Poslušam","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Pomoč","description":"help tab string"},"popup_help_heading_str":{"message":"Tu smo, da vam pomagamo","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Če imate kakršno koli težavo, jo prijavite","description":"popup help tab description"},"here":{"message":"tukaj","description":"word"},"popup_default_language_label_str":{"message":"Privzeti jezik","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Kliknite, če želite spremeniti privzeti jezik","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Kliknite tukaj, da vklopite / izklopite prepoznavanje govora","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Odprite Nastavitve","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Zaženite »Prepoznavanje govora«, ko se zažene Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Spremenite jezik za prepoznavanje govora","description":"language change setting label"},"option_permission_success_msg":{"message":"Zdaj lahko zaprete ta zavihek in s tem orodjem tipkate na katero koli spletno mesto z glasom!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Dovolite dovoljenja za uporabo tega orodja!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emodžijev ni mogoče najti!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Uporabite narekovanje čustvenih simbolov (več kot 1800 čustvenih simbolov)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Poiščite najbližji emodži","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Kako uporabljati to orodje?","description":"How to use this tool ? string"},"new_line_label":{"message":"nova vrstica","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Kliknite, če si želite ogledati glasovne ukaze","description":"voice commands control label "},"popup_show_commands_label":{"message":"Prikaži ukaze","description":"voice commands control label "},"commands_list_label":{"message":"Seznam ukazov za jezik","description":"Commands List for language label"},"command_name_label":{"message":"Ime ukaza","description":"Command's Name label"},"command_description_label":{"message":"Opis ukaza","description":"Command's Description label"},"command_emoji_description":{"message":"Izgovorite »ime čustvenega simbola«, če želite vstaviti nekaj podobnih znakov s seznama 1800 znakov. preveri celoten seznam emodžijev na strani z nastavitvami","description":"command emoji desc"},"command_newline_description":{"message":"Izgovorite novo vrstico, da vtipkate '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Recimo, da pritisnete enter, da pritisnete tipko 'Enter'. Uporabno za oddajo obrazcev","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Seznam znakov za jezik","description":"emoji list label"},"emoji_name_label":{"message":"Ime emojija","description":"emoji name label"},"command_newline_description_new":{"message":"Izgovorite novo vrstico, če želite dobiti novo vrstico.","description":"command newline desc"},"check_here_label":{"message":"Preverite tukaj","description":"Check here label"},"imoji_list_label":{"message":"Preverite tukaj","description":"Check here label"},"command_list_label":{"message":"Seznam ukazov","description":"Command List label"},"imoji_list_label_new":{"message":"Seznam emodžijev","description":"imoji list label"},"symbol_list_label":{"message":"Seznam matematičnih simbolov","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Čuječnost","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Recite „pozornost“, da v besedilno polje vstavite naključno miselnost","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Kliknite spodnji gumb, če želite dovoliti zvočna dovoljenja za uporabo tega orodja.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Opomba: Če ste pomotoma zavrnili dovoljenja, jim lahko dovolite, da kliknejo zgornji levi kot iskalne vrstice tega zavihka","description":"audio permission extra info"},"allow_permission_label":{"message":"Dovoli dovoljenje","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Dovolite dovoljenja za uporabo tega orodja!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Zdaj lahko zaprete ta zavihek in s tem orodjem tipkate na katero koli spletno mesto z glasom!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Zdaj kliknite poljuben vnos in govorite","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Ustvari Morsejevo abecedo","description":"cmc label"},"command_enable_disable_label":{"message":"Omogoči onemogoči","description":"enable or disable command label"},"command_arrow_label":{"message":"puščica","description":"command arrow label"},"command_arrow_description":{"message":"Izgovorite »puščica levo«, če želite vnesti levo puščico. možni ukazi: puščica levo | desno | na vrh | dol","description":"command arrow desc"},"left_label":{"message":"levo","description":"left label"},"right_label":{"message":"prav","description":"right label"},"up_label":{"message":"gor","description":"up label"},"down_label":{"message":"dol","description":"down label"},"command_search_label":{"message":"Iskanje","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Recite iskanje mačka ali google mačka za iskanje mačke na google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"zaznamek","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"označi to stran","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"odstrani zaznamek","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"odstranite ta zaznamek","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Izgovorite 'Dodaj to stran med zaznamke' ali 'odstrani zaznamek', če želite dodati ali odstraniti zaznamek","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"To stran je dodal med zaznamke!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"To stran odstranili iz zaznamkov!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"igra","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Recite 'play song_name', predvajala se bo skladba iz youtuba.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"najti","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"poudarite","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"osvetlitev","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Izgovorite „Označi ključno besedo“, da označite ključno besedo na trenutni strani in obratno","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"razveljavi","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ponoviti","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"razveljavi vse","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Recite razveljavi / ponovi / razveljavi vse, če želite razveljaviti / ponoviti / razveljaviti vse.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Naslednji","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"prejšnji","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Pomaknite se do vnosnih elementov tako, da izgovorite naslednji in prejšnji","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"pomaknite navzgor","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"pomaknite navzdol","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Recite, da se pomaknete navzdol / navzgor, da se pomaknete po strani.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"Pojdi do","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"obisk","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"odprto","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Recite 'pojdi na facebook.com', da odprete facebook.com v novem zavihku. Recite »pojdi na zaznamek bookmark_name«, da odprete URL zaznamka.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"zaznamek","description":"bookmark"}} diff --git a/src/app/_locales/sr/messages.json b/src/app/_locales/sr/messages.json index 860eac3..7409db8 100644 --- a/src/app/_locales/sr/messages.json +++ b/src/app/_locales/sr/messages.json @@ -1 +1 @@ -{"appName":{"message":"Приручник за препознавање говора","description":"app name"},"appDescription":{"message":"Попуните било који веб образац само својим гласом!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Дозволи аудио дозволу","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"кликните овде да бисте дозволили дозволу за звук","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Подешавања","description":"setting tab string"},"popup_mic_listening_label":{"message":"Слушам","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Помоћ","description":"help tab string"},"popup_help_heading_str":{"message":"Овде смо да помогнемо","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ако сте наишли на било који проблем, пријавите га","description":"popup help tab description"},"here":{"message":"овде","description":"word"},"popup_default_language_label_str":{"message":"Подразумевани језик","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Кликните да бисте променили задати језик","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Кликните овде да бисте укључили / искључили препознавање говора","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Отворите Подешавања","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Покрените „Препознавање говора“ када се Цхроме покрене","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Промените језик за препознавање говора","description":"language change setting label"},"option_permission_success_msg":{"message":"Сада можете да затворите ову картицу и помоћу ове алатке типкате на било којој веб локацији својим гласом!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Дозволите дозволе да бисте користили овај алат!","description":"error message when user rejects permission"},"emoji":{"message":"емоји","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Емоџији нису пронађени!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Користите диктат емоџија (више од 1800 емоџија)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Потражите емоџије који најближе звуче","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Како се користи овај алат?","description":"How to use this tool ? string"},"new_line_label":{"message":"Нова линија","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Кликните да бисте видели гласовне команде","description":"voice commands control label "},"popup_show_commands_label":{"message":"Прикажи команде","description":"voice commands control label "},"commands_list_label":{"message":"Листа наредби за језик","description":"Commands List for language label"},"command_name_label":{"message":"Командно име","description":"Command's Name label"},"command_description_label":{"message":"Опис команде","description":"Command's Description label"},"command_emoji_description":{"message":"Изговорите „име емоји емоји-ја“ да бисте убацили нешто сличне емоји-е са листе од 1800 емоји-а. погледајте целу листу емоџија на страници за подешавање","description":"command emoji desc"},"command_newline_description":{"message":"Реците нови ред да бисте откуцали „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Рецимо притисните ентер да притиснете тастер 'Ентер'. Корисно за подношење образаца","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Списак емоџија за језик","description":"emoji list label"},"emoji_name_label":{"message":"Име емоџија","description":"emoji name label"},"command_newline_description_new":{"message":"Реците нову линију да бисте добили нову линију.","description":"command newline desc"},"check_here_label":{"message":"Проверите овде","description":"Check here label"},"imoji_list_label":{"message":"Проверите овде","description":"Check here label"},"command_list_label":{"message":"Листа наредби","description":"Command List label"},"imoji_list_label_new":{"message":"Листа емоји","description":"imoji list label"},"symbol_list_label":{"message":"Листа математичких симбола","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Пажљивост","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Реците „пажљивост“ да бисте у поље за текст уметнули случајну мисао пажљивости","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Кликните на доње дугме да бисте дозволили дозволе за звук како бисте користили овај алат.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Напомена: Ако сте случајно забранили дозволе, можете им дозволити да кликну на горњи леви угао траке за претрагу ове картице","description":"audio permission extra info"},"allow_permission_label":{"message":"Дозволи дозволу","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Дозволите дозволе да бисте користили овај алат!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Сада можете да затворите ову картицу и помоћу ове алатке типкате на било којој веб локацији својим гласом!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Сада кликните на било који унос и изговорите","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Направите Морзеов код","description":"cmc label"},"command_enable_disable_label":{"message":"Омогући онемогући","description":"enable or disable command label"},"command_arrow_label":{"message":"стрелац","description":"command arrow label"},"command_arrow_description":{"message":"Реците „стрелица улево“ да бисте откуцали тастер са стрелицом улево. могуће команде: стрелица лево | тачно | врх | доле","description":"command arrow desc"},"left_label":{"message":"лево","description":"left label"},"right_label":{"message":"јел тако","description":"right label"},"up_label":{"message":"горе","description":"up label"},"down_label":{"message":"доле","description":"down label"},"command_go_to_label":{"message":"Иди на","description":"command go to label"},"command_go_to_description":{"message":"Реците „идите на фацебоок.цом да бисте отворили нову картицу за фацебоок.цом","description":"command go to description"},"command_go_to_label2":{"message":"посети","description":"command go to label 2"},"command_go_to_label3":{"message":"отворен","description":"command go to label 3"},"command_search_label":{"message":"Претрага","description":"command search label"},"command_search_label2":{"message":"гоогле","description":"command go to label 2"},"command_search_description":{"message":"Реците претражи мачку или гоогле мачку да бисте претражили мачку на гоогле.цом","description":"command go to label 3"},"command_bookmark_label":{"message":"обележивач","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"обележи ову страницу","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"уклони обележивач","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"уклоните овај обележивач","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Реците „Означи ову страницу“ или „уклони обележивач“ да бисте додали или уклонили обележивач","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Додао ову страницу у обележиваче!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Уклонили ову страницу из обележивача!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"игра","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Реците „плаи сонг_наме“, репродуковаће песму са иоутубе-а.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"наћи","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"истакнути","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"нехајлигхт","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Реците „истакни кључну реч“ да бисте истакли кључну реч на тренутној страници и обрнуто","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"поништи","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"поновити","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"поништи све","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Реците поништи / понови / поништи све да бисте поништили / поновили / поништили све.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"следећи","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Претходна","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Дођите до улазних елемената изговарањем наредног и претходног","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"померање нагоре","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"померите се надоле","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Реците померите надоле / померите нагоре да бисте се померили по страници.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Приручник за препознавање говора","description":"app name"},"appDescription":{"message":"Попуните било који веб образац само својим гласом!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Дозволи аудио дозволу","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"кликните овде да бисте дозволили дозволу за звук","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Подешавања","description":"setting tab string"},"popup_mic_listening_label":{"message":"Слушам","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Помоћ","description":"help tab string"},"popup_help_heading_str":{"message":"Овде смо да помогнемо","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ако сте наишли на било који проблем, пријавите га","description":"popup help tab description"},"here":{"message":"овде","description":"word"},"popup_default_language_label_str":{"message":"Подразумевани језик","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Кликните да бисте променили задати језик","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Кликните овде да бисте укључили / искључили препознавање говора","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Отворите Подешавања","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Покрените „Препознавање говора“ када се Цхроме покрене","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Промените језик за препознавање говора","description":"language change setting label"},"option_permission_success_msg":{"message":"Сада можете да затворите ову картицу и помоћу ове алатке типкате на било којој веб локацији својим гласом!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Дозволите дозволе да бисте користили овај алат!","description":"error message when user rejects permission"},"emoji":{"message":"емоји","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Емоџији нису пронађени!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Користите диктат емоџија (више од 1800 емоџија)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Потражите емоџије који најближе звуче","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Како се користи овај алат?","description":"How to use this tool ? string"},"new_line_label":{"message":"Нова линија","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Кликните да бисте видели гласовне команде","description":"voice commands control label "},"popup_show_commands_label":{"message":"Прикажи команде","description":"voice commands control label "},"commands_list_label":{"message":"Листа наредби за језик","description":"Commands List for language label"},"command_name_label":{"message":"Командно име","description":"Command's Name label"},"command_description_label":{"message":"Опис команде","description":"Command's Description label"},"command_emoji_description":{"message":"Изговорите „име емоји емоји-ја“ да бисте убацили нешто сличне емоји-е са листе од 1800 емоји-а. погледајте целу листу емоџија на страници за подешавање","description":"command emoji desc"},"command_newline_description":{"message":"Реците нови ред да бисте откуцали „.“","description":"command newline desc"},"command_press_enter_description":{"message":"Рецимо притисните ентер да притиснете тастер 'Ентер'. Корисно за подношење образаца","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Списак емоџија за језик","description":"emoji list label"},"emoji_name_label":{"message":"Име емоџија","description":"emoji name label"},"command_newline_description_new":{"message":"Реците нову линију да бисте добили нову линију.","description":"command newline desc"},"check_here_label":{"message":"Проверите овде","description":"Check here label"},"imoji_list_label":{"message":"Проверите овде","description":"Check here label"},"command_list_label":{"message":"Листа наредби","description":"Command List label"},"imoji_list_label_new":{"message":"Листа емоји","description":"imoji list label"},"symbol_list_label":{"message":"Листа математичких симбола","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Пажљивост","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Реците „пажљивост“ да бисте у поље за текст уметнули случајну мисао пажљивости","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Кликните на доње дугме да бисте дозволили дозволе за звук како бисте користили овај алат.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Напомена: Ако сте случајно забранили дозволе, можете им дозволити да кликну на горњи леви угао траке за претрагу ове картице","description":"audio permission extra info"},"allow_permission_label":{"message":"Дозволи дозволу","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Дозволите дозволе да бисте користили овај алат!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Сада можете да затворите ову картицу и помоћу ове алатке типкате на било којој веб локацији својим гласом!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Сада кликните на било који унос и изговорите","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Направите Морзеов код","description":"cmc label"},"command_enable_disable_label":{"message":"Омогући онемогући","description":"enable or disable command label"},"command_arrow_label":{"message":"стрелац","description":"command arrow label"},"command_arrow_description":{"message":"Реците „стрелица улево“ да бисте откуцали тастер са стрелицом улево. могуће команде: стрелица лево | тачно | врх | доле","description":"command arrow desc"},"left_label":{"message":"лево","description":"left label"},"right_label":{"message":"јел тако","description":"right label"},"up_label":{"message":"горе","description":"up label"},"down_label":{"message":"доле","description":"down label"},"command_search_label":{"message":"Претрага","description":"command search label"},"command_search_label2":{"message":"гоогле","description":"command go to label 2"},"command_search_description":{"message":"Реците претражи мачку или гоогле мачку да бисте претражили мачку на гоогле.цом","description":"command go to label 3"},"command_bookmark_label":{"message":"обележивач","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"обележи ову страницу","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"уклони обележивач","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"уклоните овај обележивач","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Реците „Означи ову страницу“ или „уклони обележивач“ да бисте додали или уклонили обележивач","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Додао ову страницу у обележиваче!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Уклонили ову страницу из обележивача!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"игра","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Реците „плаи сонг_наме“, репродуковаће песму са иоутубе-а.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"наћи","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"истакнути","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"нехајлигхт","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Реците „истакни кључну реч“ да бисте истакли кључну реч на тренутној страници и обрнуто","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"поништи","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"поновити","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"поништи све","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Реците поништи / понови / поништи све да бисте поништили / поновили / поништили све.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"следећи","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Претходна","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Дођите до улазних елемената изговарањем наредног и претходног","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"померање нагоре","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"померите се надоле","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Реците померите надоле / померите нагоре да бисте се померили по страници.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"Иди на","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"посети","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"отворен","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Реците „идите на фацебоок.цом“ да бисте отворили фацебоок.цом у новој картици. Реците 'иди на обележивач боокмарк_наме' да бисте отворили УРЛ обележивача.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"обележивач","description":"bookmark"}} diff --git a/src/app/_locales/sv/messages.json b/src/app/_locales/sv/messages.json index 6a63534..452cbd4 100644 --- a/src/app/_locales/sv/messages.json +++ b/src/app/_locales/sv/messages.json @@ -1 +1 @@ -{"appName":{"message":"Verktygslåda för taligenkänning","description":"app name"},"appDescription":{"message":"Fyll i alla webbformulär med endast din röst!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Tillåt ljudtillstånd","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"klicka här för att tillåta ljudtillstånd","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"inställningar","description":"setting tab string"},"popup_mic_listening_label":{"message":"Lyssnande","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hjälp","description":"help tab string"},"popup_help_heading_str":{"message":"Vi är här för att hjälpa","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Rapportera det om du har haft något problem","description":"popup help tab description"},"here":{"message":"här","description":"word"},"popup_default_language_label_str":{"message":"Standardspråk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klicka för att ändra standardspråk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klicka här för att slå på / av taligenkänning","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Öppna Inställningar","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Starta 'Taligenkänning' när Chrome startar","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Ändra språkigenkänning","description":"language change setting label"},"option_permission_success_msg":{"message":"Nu kan du stänga den här fliken och använda detta verktyg för att skriva på vilken webbplats som helst med din röst!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tillåt behörigheter för att kunna använda detta verktyg!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji hittades inte!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Använd emoji-diktering (mer än 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Sök efter närmaste ljudande emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hur använder jag det här verktyget?","description":"How to use this tool ? string"},"new_line_label":{"message":"ny linje","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klicka för att se röstkommandon","description":"voice commands control label "},"popup_show_commands_label":{"message":"Visa kommandon","description":"voice commands control label "},"commands_list_label":{"message":"Kommandolista för språk","description":"Commands List for language label"},"command_name_label":{"message":"Kommandos namn","description":"Command's Name label"},"command_description_label":{"message":"Kommandos beskrivning","description":"Command's Description label"},"command_emoji_description":{"message":"Säg 'emoji emoji's name' för att infoga något liknande emoji från listan över 1800 emojis. kassan fullständig lista över emojis på inställningssidan","description":"command emoji desc"},"command_newline_description":{"message":"Säg ny rad för att skriva '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Säg tryck på Enter för att trycka på 'Enter'. Användbar för att skicka formulär","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis lista för språk","description":"emoji list label"},"emoji_name_label":{"message":"Emojis namn","description":"emoji name label"},"command_newline_description_new":{"message":"Säg ny rad för att få en ny rad.","description":"command newline desc"},"check_here_label":{"message":"Kolla här","description":"Check here label"},"imoji_list_label":{"message":"Kolla här","description":"Check here label"},"command_list_label":{"message":"Kommandolista","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-lista","description":"imoji list label"},"symbol_list_label":{"message":"Lista över matematiska symboler","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Säg \"mindfulness\" för att infoga en slumpmässig mindfulness-tanke i textrutan","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klicka på knappen nedan för att tillåta ljudbehörigheter för att använda detta verktyg.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Obs! Om du av misstag har avvisat behörigheter kan du tillåta dem att klicka på det övre vänstra hörnet i sökfältet på den här fliken","description":"audio permission extra info"},"allow_permission_label":{"message":"Tillåt tillstånd","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tillåt behörigheter för att kunna använda detta verktyg!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nu kan du stänga den här fliken och använda det här verktyget för att skriva på vilken webbplats som helst med din röst!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klicka nu på valfri ingång och tala","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Skapa Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Aktivera inaktivera","description":"enable or disable command label"},"command_arrow_label":{"message":"pil","description":"command arrow label"},"command_arrow_description":{"message":"Säg \"pil vänster\" för att skriva vänsterpil. möjliga kommandon: pil vänster | rätt | topp | ner","description":"command arrow desc"},"left_label":{"message":"vänster","description":"left label"},"right_label":{"message":"rätt","description":"right label"},"up_label":{"message":"upp","description":"up label"},"down_label":{"message":"ner","description":"down label"},"command_go_to_label":{"message":"gå till","description":"command go to label"},"command_go_to_description":{"message":"Säg \"gå till facebook.com för att öppna en ny flik för facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"besök","description":"command go to label 2"},"command_go_to_label3":{"message":"öppen","description":"command go to label 3"},"command_search_label":{"message":"Sök","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Säg sök katt eller google katt för att söka katt på google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bokmärke","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Bokmarkera den här sidan","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ta bort bokmärke","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ta bort det här bokmärket","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Säg \"Bokmärk den här sidan\" eller \"ta bort bokmärke\" för att lägga till eller ta bort bokmärke","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Tillagd denna sida till bokmärken!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Ta bort den här sidan från bokmärken!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"spela","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Säg \"spela låtnamn\", det kommer att spela låten från youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"hitta","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"markera","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"avljus","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Säg \"markera nyckelord\" för att markera nyckelordet på aktuell sida och vice versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ångra","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"göra om","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"ångra allt","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Säg ångra / ångra / ångra allt för att göra ångra / ångra / ångra allt.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Nästa","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"tidigare","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigera till inmatningselement genom att säga nästa och föregående","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"skrolla upp","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scrolla ner","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Säg bläddra nedåt / bläddra uppåt för att bläddra på sidan.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Verktygslåda för taligenkänning","description":"app name"},"appDescription":{"message":"Fyll i alla webbformulär med endast din röst!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Tillåt ljudtillstånd","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"klicka här för att tillåta ljudtillstånd","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"inställningar","description":"setting tab string"},"popup_mic_listening_label":{"message":"Lyssnande","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Hjälp","description":"help tab string"},"popup_help_heading_str":{"message":"Vi är här för att hjälpa","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Rapportera det om du har haft något problem","description":"popup help tab description"},"here":{"message":"här","description":"word"},"popup_default_language_label_str":{"message":"Standardspråk","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Klicka för att ändra standardspråk","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Klicka här för att slå på / av taligenkänning","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Öppna Inställningar","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Starta 'Taligenkänning' när Chrome startar","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Ändra språkigenkänning","description":"language change setting label"},"option_permission_success_msg":{"message":"Nu kan du stänga den här fliken och använda detta verktyg för att skriva på vilken webbplats som helst med din röst!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tillåt behörigheter för att kunna använda detta verktyg!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji hittades inte!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Använd emoji-diktering (mer än 1800 emojis)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Sök efter närmaste ljudande emoji","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Hur använder jag det här verktyget?","description":"How to use this tool ? string"},"new_line_label":{"message":"ny linje","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Klicka för att se röstkommandon","description":"voice commands control label "},"popup_show_commands_label":{"message":"Visa kommandon","description":"voice commands control label "},"commands_list_label":{"message":"Kommandolista för språk","description":"Commands List for language label"},"command_name_label":{"message":"Kommandos namn","description":"Command's Name label"},"command_description_label":{"message":"Kommandos beskrivning","description":"Command's Description label"},"command_emoji_description":{"message":"Säg 'emoji emoji's name' för att infoga något liknande emoji från listan över 1800 emojis. kassan fullständig lista över emojis på inställningssidan","description":"command emoji desc"},"command_newline_description":{"message":"Säg ny rad för att skriva '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Säg tryck på Enter för att trycka på 'Enter'. Användbar för att skicka formulär","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emojis lista för språk","description":"emoji list label"},"emoji_name_label":{"message":"Emojis namn","description":"emoji name label"},"command_newline_description_new":{"message":"Säg ny rad för att få en ny rad.","description":"command newline desc"},"check_here_label":{"message":"Kolla här","description":"Check here label"},"imoji_list_label":{"message":"Kolla här","description":"Check here label"},"command_list_label":{"message":"Kommandolista","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji-lista","description":"imoji list label"},"symbol_list_label":{"message":"Lista över matematiska symboler","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Mindfulness","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Säg \"mindfulness\" för att infoga en slumpmässig mindfulness-tanke i textrutan","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Klicka på knappen nedan för att tillåta ljudbehörigheter för att använda detta verktyg.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Obs! Om du av misstag har avvisat behörigheter kan du tillåta dem att klicka på det övre vänstra hörnet i sökfältet på den här fliken","description":"audio permission extra info"},"allow_permission_label":{"message":"Tillåt tillstånd","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tillåt behörigheter för att kunna använda detta verktyg!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Nu kan du stänga den här fliken och använda det här verktyget för att skriva på vilken webbplats som helst med din röst!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Klicka nu på valfri ingång och tala","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Skapa Morse Code","description":"cmc label"},"command_enable_disable_label":{"message":"Aktivera inaktivera","description":"enable or disable command label"},"command_arrow_label":{"message":"pil","description":"command arrow label"},"command_arrow_description":{"message":"Säg \"pil vänster\" för att skriva vänsterpil. möjliga kommandon: pil vänster | rätt | topp | ner","description":"command arrow desc"},"left_label":{"message":"vänster","description":"left label"},"right_label":{"message":"rätt","description":"right label"},"up_label":{"message":"upp","description":"up label"},"down_label":{"message":"ner","description":"down label"},"command_search_label":{"message":"Sök","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Säg sök katt eller google katt för att söka katt på google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"bokmärke","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Bokmarkera den här sidan","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ta bort bokmärke","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ta bort det här bokmärket","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Säg \"Bokmärk den här sidan\" eller \"ta bort bokmärke\" för att lägga till eller ta bort bokmärke","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Tillagd denna sida till bokmärken!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Ta bort den här sidan från bokmärken!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"spela","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Säg \"spela låtnamn\", det kommer att spela låten från youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"hitta","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"markera","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"avljus","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Säg \"markera nyckelord\" för att markera nyckelordet på aktuell sida och vice versa","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"ångra","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"göra om","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"ångra allt","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Säg ångra / ångra / ångra allt för att göra ångra / ångra / ångra allt.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Nästa","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"tidigare","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Navigera till inmatningselement genom att säga nästa och föregående","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"skrolla upp","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"scrolla ner","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Säg bläddra nedåt / bläddra uppåt för att bläddra på sidan.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"gå till","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"besök","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"öppet","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Säg \"gå till facebook.com\" för att öppna facebook.com i ny flik. Säg \"gå till bokmärke bokmärke_namn\" för att öppna webbadress för bokmärke.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"bokmärke","description":"bookmark"}} diff --git a/src/app/_locales/sw/messages.json b/src/app/_locales/sw/messages.json index 8b85e27..6e1871c 100644 --- a/src/app/_locales/sw/messages.json +++ b/src/app/_locales/sw/messages.json @@ -1 +1 @@ -{"appName":{"message":"Zana ya Utambuzi wa Hotuba","description":"app name"},"appDescription":{"message":"Jaza fomu yoyote ya wavuti kwa kutumia sauti yako tu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Ruhusu Ruhusa ya Sauti","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"bonyeza hapa Ruhusu Ruhusa ya Sauti","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Mipangilio","description":"setting tab string"},"popup_mic_listening_label":{"message":"Kusikiliza","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Msaada","description":"help tab string"},"popup_help_heading_str":{"message":"Tuko hapa kusaidia","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ikiwa umepata shida yoyote, tafadhali ripoti","description":"popup help tab description"},"here":{"message":"hapa","description":"word"},"popup_default_language_label_str":{"message":"Lugha Mbadala","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Bonyeza kubadilisha lugha chaguomsingi","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Bonyeza hapa kuwasha / Kuzima Utambuzi wa Hotuba","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Fungua Mipangilio","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Anza 'Utambuzi wa Hotuba' wakati Chrome inapoanza","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Badilisha Lugha ya Utambuzi wa Hotuba","description":"language change setting label"},"option_permission_success_msg":{"message":"Sasa unaweza kufunga kichupo hiki na utumie zana hii kuandika kwenye wavuti yoyote kwa sauti yako!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tafadhali Ruhusu Ruhusa ili utumie zana hii!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji haipatikani!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Tumia agizo la emoji (zaidi ya emojis 1800)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Tafuta emoji ya sauti ya karibu zaidi","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Jinsi ya kutumia zana hii?","description":"How to use this tool ? string"},"new_line_label":{"message":"laini mpya","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Bonyeza kuona amri za sauti","description":"voice commands control label "},"popup_show_commands_label":{"message":"Onyesha Amri","description":"voice commands control label "},"commands_list_label":{"message":"Orodha ya Amri kwa lugha","description":"Commands List for language label"},"command_name_label":{"message":"Jina la Amri","description":"Command's Name label"},"command_description_label":{"message":"Maelezo ya Amri","description":"Command's Description label"},"command_emoji_description":{"message":"Sema 'jina la emoji emoji' ili uweke emoji inayofanana kutoka orodha ya emoji 1800. orodha kamili ya emojis katika ukurasa wa kuweka","description":"command emoji desc"},"command_newline_description":{"message":"Sema laini mpya ya kuchapa '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sema waandishi wa habari kuingia ili bonyeza kitufe cha 'Ingiza'. Muhimu kwa kuwasilisha fomu","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Orodha ya Emoji kwa lugha","description":"emoji list label"},"emoji_name_label":{"message":"Jina la Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Sema laini mpya kupata laini mpya.","description":"command newline desc"},"check_here_label":{"message":"Angalia hapa","description":"Check here label"},"imoji_list_label":{"message":"Angalia hapa","description":"Check here label"},"command_list_label":{"message":"Orodha ya Amri","description":"Command List label"},"imoji_list_label_new":{"message":"Orodha ya Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Orodha ya Alama za hisabati","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Kuzingatia","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sema 'uangalifu' kuingiza mawazo ya nasibu katika kisanduku cha maandishi","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Tafadhali Bonyeza kitufe hapo chini kuruhusu ruhusa za sauti ili utumie zana hii.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Kumbuka: Ikiwa umekataa ruhusa kwa bahati mbaya, basi unaweza kuwaruhusu kubonyeza kona ya juu kushoto ya mwambaa wa utaftaji wa tabo hili","description":"audio permission extra info"},"allow_permission_label":{"message":"Ruhusu ruhusa","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tafadhali Ruhusu Ruhusa ili utumie zana hii!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sasa unaweza kufunga kichupo hiki na utumie zana hii kuandika kwenye wavuti yoyote kwa sauti yako!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sasa bonyeza bonyeza yoyote na uongee","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Unda Nambari ya Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Wezesha / Lemaza","description":"enable or disable command label"},"command_arrow_label":{"message":"mshale","description":"command arrow label"},"command_arrow_description":{"message":"Sema 'mshale kushoto' ili ubonyeze kitufe cha kushoto. amri zinazowezekana: mshale kushoto | kulia | juu | chini","description":"command arrow desc"},"left_label":{"message":"kushoto","description":"left label"},"right_label":{"message":"haki","description":"right label"},"up_label":{"message":"juu","description":"up label"},"down_label":{"message":"chini","description":"down label"},"command_go_to_label":{"message":"enda kwa","description":"command go to label"},"command_go_to_description":{"message":"Sema 'nenda facebook.com kufungua tabo mpya ya facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"tembelea","description":"command go to label 2"},"command_go_to_label3":{"message":"fungua","description":"command go to label 3"},"command_search_label":{"message":"tafuta","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sema paka ya kutafuta au paka ya google kutafuta paka kwenye google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"alamisho","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"alama ukurasa huu","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ondoa alamisho","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ondoa alamisho hii","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sema 'Alamisha ukurasa huu' au 'ondoa alamisho' ili kuongeza au kuondoa alamisho","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Aliongeza ukurasa huu kwa alamisho!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Imeondoa ukurasa huu kutoka kwa alamisho!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"cheza","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sema \"cheza jina la wimbo\", itacheza wimbo kutoka kwa youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"pata","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"kuonyesha","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sema 'onyesha neno kuu' kuonyesha neno kuu kwenye ukurasa wa sasa na kinyume chake","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"tengua","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"fanya upya","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"tengua yote","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sema tendua / fanya tena / tendua yote kufanya utendue / fanya tena / utendue yote.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ijayo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"uliopita","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Nenda kwenye vitu vya kuingiza kwa kusema inayofuata na ya awali","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"songa juu","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"shuka chini","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sema songa chini / songa juu ili kusogeza ukurasa.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Zana ya Utambuzi wa Hotuba","description":"app name"},"appDescription":{"message":"Jaza fomu yoyote ya wavuti kwa kutumia sauti yako tu!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Ruhusu Ruhusa ya Sauti","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"bonyeza hapa Ruhusu Ruhusa ya Sauti","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Mipangilio","description":"setting tab string"},"popup_mic_listening_label":{"message":"Kusikiliza","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Msaada","description":"help tab string"},"popup_help_heading_str":{"message":"Tuko hapa kusaidia","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Ikiwa umepata shida yoyote, tafadhali ripoti","description":"popup help tab description"},"here":{"message":"hapa","description":"word"},"popup_default_language_label_str":{"message":"Lugha Mbadala","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Bonyeza kubadilisha lugha chaguomsingi","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Bonyeza hapa kuwasha / Kuzima Utambuzi wa Hotuba","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Fungua Mipangilio","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Anza 'Utambuzi wa Hotuba' wakati Chrome inapoanza","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Badilisha Lugha ya Utambuzi wa Hotuba","description":"language change setting label"},"option_permission_success_msg":{"message":"Sasa unaweza kufunga kichupo hiki na utumie zana hii kuandika kwenye wavuti yoyote kwa sauti yako!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Tafadhali Ruhusu Ruhusa ili utumie zana hii!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji haipatikani!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Tumia agizo la emoji (zaidi ya emojis 1800)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Tafuta emoji ya sauti ya karibu zaidi","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Jinsi ya kutumia zana hii?","description":"How to use this tool ? string"},"new_line_label":{"message":"laini mpya","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Bonyeza kuona amri za sauti","description":"voice commands control label "},"popup_show_commands_label":{"message":"Onyesha Amri","description":"voice commands control label "},"commands_list_label":{"message":"Orodha ya Amri kwa lugha","description":"Commands List for language label"},"command_name_label":{"message":"Jina la Amri","description":"Command's Name label"},"command_description_label":{"message":"Maelezo ya Amri","description":"Command's Description label"},"command_emoji_description":{"message":"Sema 'jina la emoji emoji' ili uweke emoji inayofanana kutoka orodha ya emoji 1800. orodha kamili ya emojis katika ukurasa wa kuweka","description":"command emoji desc"},"command_newline_description":{"message":"Sema laini mpya ya kuchapa '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Sema waandishi wa habari kuingia ili bonyeza kitufe cha 'Ingiza'. Muhimu kwa kuwasilisha fomu","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Orodha ya Emoji kwa lugha","description":"emoji list label"},"emoji_name_label":{"message":"Jina la Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"Sema laini mpya kupata laini mpya.","description":"command newline desc"},"check_here_label":{"message":"Angalia hapa","description":"Check here label"},"imoji_list_label":{"message":"Angalia hapa","description":"Check here label"},"command_list_label":{"message":"Orodha ya Amri","description":"Command List label"},"imoji_list_label_new":{"message":"Orodha ya Emoji","description":"imoji list label"},"symbol_list_label":{"message":"Orodha ya Alama za hisabati","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Kuzingatia","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Sema 'uangalifu' kuingiza mawazo ya nasibu katika kisanduku cha maandishi","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Tafadhali Bonyeza kitufe hapo chini kuruhusu ruhusa za sauti ili utumie zana hii.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Kumbuka: Ikiwa umekataa ruhusa kwa bahati mbaya, basi unaweza kuwaruhusu kubonyeza kona ya juu kushoto ya mwambaa wa utaftaji wa tabo hili","description":"audio permission extra info"},"allow_permission_label":{"message":"Ruhusu ruhusa","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Tafadhali Ruhusu Ruhusa ili utumie zana hii!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Sasa unaweza kufunga kichupo hiki na utumie zana hii kuandika kwenye wavuti yoyote kwa sauti yako!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Sasa bonyeza bonyeza yoyote na uongee","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Unda Nambari ya Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Wezesha / Lemaza","description":"enable or disable command label"},"command_arrow_label":{"message":"mshale","description":"command arrow label"},"command_arrow_description":{"message":"Sema 'mshale kushoto' ili ubonyeze kitufe cha kushoto. amri zinazowezekana: mshale kushoto | kulia | juu | chini","description":"command arrow desc"},"left_label":{"message":"kushoto","description":"left label"},"right_label":{"message":"haki","description":"right label"},"up_label":{"message":"juu","description":"up label"},"down_label":{"message":"chini","description":"down label"},"command_search_label":{"message":"tafuta","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Sema paka ya kutafuta au paka ya google kutafuta paka kwenye google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"alamisho","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"alama ukurasa huu","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ondoa alamisho","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ondoa alamisho hii","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Sema 'Alamisha ukurasa huu' au 'ondoa alamisho' ili kuongeza au kuondoa alamisho","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Aliongeza ukurasa huu kwa alamisho!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Imeondoa ukurasa huu kutoka kwa alamisho!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"cheza","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Sema \"cheza jina la wimbo\", itacheza wimbo kutoka kwa youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"pata","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"kuonyesha","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"unhighlight","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Sema 'onyesha neno kuu' kuonyesha neno kuu kwenye ukurasa wa sasa na kinyume chake","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"tengua","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"fanya upya","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"tengua yote","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Sema tendua / fanya tena / tendua yote kufanya utendue / fanya tena / utendue yote.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ijayo","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"uliopita","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Nenda kwenye vitu vya kuingiza kwa kusema inayofuata na ya awali","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"songa juu","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"shuka chini","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sema songa chini / songa juu ili kusogeza ukurasa.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"enda kwa","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"tembelea","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"fungua","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Sema 'nenda facebook.com' kufungua facebook.com kwenye kichupo kipya. Sema 'nenda kwenye alamisho ya jina la jina' kufungua url ya alamisho.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"alamisho","description":"bookmark"}} diff --git a/src/app/_locales/ta/messages.json b/src/app/_locales/ta/messages.json index a8e2191..3c3ee6f 100644 --- a/src/app/_locales/ta/messages.json +++ b/src/app/_locales/ta/messages.json @@ -1 +1 @@ -{"appName":{"message":"பேச்சு அங்கீகார கருவித்தொகுதி","description":"app name"},"appDescription":{"message":"உங்கள் குரலை மட்டுமே பயன்படுத்தி எந்த வலை படிவத்தையும் நிரப்பவும்!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ஆடியோ அனுமதியை அனுமதிக்கவும்","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ஆடியோ அனுமதியை அனுமதிக்க இங்கே கிளிக் செய்க","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"அமைப்புகள்","description":"setting tab string"},"popup_mic_listening_label":{"message":"கேட்பது","description":"label when mic is listening"},"popup_help_tab_str":{"message":"உதவி","description":"help tab string"},"popup_help_heading_str":{"message":"நாங்கள் உதவ இங்கே இருக்கிறோம்","description":"popup help tab heading"},"popup_help_desc_str":{"message":"நீங்கள் ஏதேனும் சிக்கலை சந்தித்திருந்தால், தயவுசெய்து அதைப் புகாரளிக்கவும்","description":"popup help tab description"},"here":{"message":"இங்கே","description":"word"},"popup_default_language_label_str":{"message":"இயல்புநிலை மொழி","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"இயல்புநிலை மொழியை மாற்ற கிளிக் செய்க","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"பேச்சு அங்கீகாரத்தை இயக்க / முடக்க இங்கே கிளிக் செய்க","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"அமைப்புகளைத் திறக்கவும்","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome தொடங்கும் போது 'பேச்சு அங்கீகாரம்' தொடங்கவும்","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"பேச்சு அங்கீகார மொழியை மாற்றவும்","description":"language change setting label"},"option_permission_success_msg":{"message":"இப்போது நீங்கள் இந்த தாவலை மூடி, இந்த கருவியைப் பயன்படுத்தி உங்கள் வலைத்தளத்துடன் எந்த வலைத்தளத்திலும் தட்டச்சு செய்யலாம்!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"இந்த கருவியைப் பயன்படுத்த தயவுசெய்து அனுமதிகளை அனுமதிக்கவும்!","description":"error message when user rejects permission"},"emoji":{"message":"ஈமோஜி","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ஈமோஜி கிடைக்கவில்லை!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ஈமோஜி டிக்டேஷனைப் பயன்படுத்தவும் (1800 க்கும் மேற்பட்ட ஈமோஜிகள்)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"மிக நெருக்கமான ஒலி ஈமோஜிகளைத் தேடுங்கள்","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"இந்த கருவியை எவ்வாறு பயன்படுத்துவது?","description":"How to use this tool ? string"},"new_line_label":{"message":"புதிய கோடு","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"குரல் கட்டளைகளைக் காண கிளிக் செய்க","description":"voice commands control label "},"popup_show_commands_label":{"message":"கட்டளைகளைக் காட்டு","description":"voice commands control label "},"commands_list_label":{"message":"மொழிக்கான கட்டளைகள் பட்டியல்","description":"Commands List for language label"},"command_name_label":{"message":"கட்டளையின் பெயர்","description":"Command's Name label"},"command_description_label":{"message":"கட்டளையின் விளக்கம்","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ஈமோஜிகளின் பட்டியலிலிருந்து சற்றே ஒத்த ஈமோஜிகளைச் செருக 'ஈமோஜி ஈமோஜியின் பெயர்' என்று சொல்லுங்கள். பக்கத்தை அமைப்பதில் ஈமோஜிகளின் முழு பட்டியலையும் புதுப்பிக்கவும்","description":"command emoji desc"},"command_newline_description":{"message":"தட்டச்சு செய்ய புதிய வரியைச் சொல்லுங்கள். '","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' விசையை அழுத்தவும் என்டர் அழுத்தவும். படிவங்களை சமர்ப்பிக்க பயனுள்ளதாக இருக்கும்","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"மொழிக்கான ஈமோஜியின் பட்டியல்","description":"emoji list label"},"emoji_name_label":{"message":"ஈமோஜியின் பெயர்","description":"emoji name label"},"command_newline_description_new":{"message":"புதிய வரியைப் பெற புதிய வரியைச் சொல்லுங்கள்.","description":"command newline desc"},"check_here_label":{"message":"இங்கே பாருங்கள்","description":"Check here label"},"imoji_list_label":{"message":"இங்கே பாருங்கள்","description":"Check here label"},"command_list_label":{"message":"கட்டளை பட்டியல்","description":"Command List label"},"imoji_list_label_new":{"message":"ஈமோஜி பட்டியல்","description":"imoji list label"},"symbol_list_label":{"message":"கணித சின்னங்கள் பட்டியல்","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"மனம்","description":"Mindfulness command"},"command_mindfulness_description":{"message":"உரை பெட்டியில் ஒரு சீரற்ற நினைவாற்றல் சிந்தனையைச் செருக 'நினைவாற்றல்' என்று சொல்லுங்கள்","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"இந்த கருவியைப் பயன்படுத்த ஆடியோ அனுமதிகளை அனுமதிக்க கீழேயுள்ள பொத்தானைக் கிளிக் செய்க.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"குறிப்பு: நீங்கள் தற்செயலாக அனுமதிகளை அனுமதிக்கவில்லை என்றால், இந்த தாவலின் தேடல் பட்டியின் மேல் இடது மூலையில் கிளிக் செய்வதை நீங்கள் அனுமதிக்கலாம்","description":"audio permission extra info"},"allow_permission_label":{"message":"அனுமதி அனுமதிக்கவும்","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"இந்த கருவியைப் பயன்படுத்த தயவுசெய்து அனுமதிகளை அனுமதிக்கவும்!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"இப்போது நீங்கள் இந்த தாவலை மூடி, இந்த கருவியைப் பயன்படுத்தி உங்கள் வலைத்தளத்துடன் எந்த வலைத்தளத்திலும் தட்டச்சு செய்யலாம்!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* இப்போது எந்த உள்ளீட்டையும் கிளிக் செய்து பேசுங்கள்","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"மோர்ஸ் குறியீட்டை உருவாக்கவும்","description":"cmc label"},"command_enable_disable_label":{"message":"இயக்கு / முடக்கு","description":"enable or disable command label"},"command_arrow_label":{"message":"அம்பு","description":"command arrow label"},"command_arrow_description":{"message":"இடது அம்பு விசையைத் தட்டச்சு செய்ய 'அம்பு இடது' என்று சொல்லுங்கள். சாத்தியமான கட்டளைகள்: அம்பு இடது | வலது | மேல் | கீழ்","description":"command arrow desc"},"left_label":{"message":"இடது","description":"left label"},"right_label":{"message":"சரி","description":"right label"},"up_label":{"message":"மேலே","description":"up label"},"down_label":{"message":"கீழ்","description":"down label"},"command_go_to_label":{"message":"செல்லுங்கள்","description":"command go to label"},"command_go_to_description":{"message":"Facebook.com க்கான புதிய தாவலைத் திறக்க facebook.com க்குச் செல்லுங்கள்","description":"command go to description"},"command_go_to_label2":{"message":"வருகை","description":"command go to label 2"},"command_go_to_label3":{"message":"திறந்த","description":"command go to label 3"},"command_search_label":{"message":"தேடல்","description":"command search label"},"command_search_label2":{"message":"கூகிள்","description":"command go to label 2"},"command_search_description":{"message":"Google.com இல் பூனை தேட தேடல் பூனை அல்லது கூகிள் பூனை என்று சொல்லுங்கள்","description":"command go to label 3"},"command_bookmark_label":{"message":"புத்தககுறி","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"இப்பக்கத்தை குறியிட்டுவைக்கவும்","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"புக்மார்க்கை அகற்று","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"இந்த புக்மார்க்கை அகற்று","description":"command bookmark label 4"},"command_bookmark_description":{"message":"புக்மார்க்கைச் சேர்க்க அல்லது அகற்ற 'இந்தப் பக்கத்தை புக்மார்க்கு' அல்லது 'புக்மார்க்கை அகற்று' என்று சொல்லுங்கள்","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"புக்மார்க்குகளில் இந்தப் பக்கத்தைச் சேர்த்தது!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"புக்மார்க்குகளிலிருந்து இந்தப் பக்கம் அகற்றப்பட்டது!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"விளையாடு","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Play song_name' என்று சொல்லுங்கள், இது யூடியூபிலிருந்து வரும் பாடலை இயக்கும்.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"கண்டுபிடி","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"முன்னிலைப்படுத்த","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"வெளிச்சம்","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"நடப்பு பக்கத்தில் உள்ள முக்கிய சொல்லை முன்னிலைப்படுத்த 'முக்கிய சொல்லை முன்னிலைப்படுத்து' என்று சொல்லுங்கள்","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"செயல்தவிர்","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"மீண்டும் செய்","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"அனைத்தையும் செயல்தவிர்","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"அனைத்தையும் செயல்தவிர் / மீண்டும் செய் / அனைத்தையும் செயல்தவிர் என்று சொல்லுங்கள்.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"அடுத்தது","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"முந்தையது","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"அடுத்த மற்றும் முந்தையவற்றைக் கூறி உள்ளீட்டு உறுப்புகளுக்குச் செல்லவும்","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"மேலே உருட்டவும்","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"கீழே உருட்டவும்","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"பக்கத்தை உருட்ட கீழே உருட்டவும் / மேலே உருட்டவும் என்று சொல்லுங்கள்.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"பேச்சு அங்கீகார கருவித்தொகுதி","description":"app name"},"appDescription":{"message":"உங்கள் குரலை மட்டுமே பயன்படுத்தி எந்த வலை படிவத்தையும் நிரப்பவும்!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ஆடியோ அனுமதியை அனுமதிக்கவும்","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ஆடியோ அனுமதியை அனுமதிக்க இங்கே கிளிக் செய்க","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"அமைப்புகள்","description":"setting tab string"},"popup_mic_listening_label":{"message":"கேட்பது","description":"label when mic is listening"},"popup_help_tab_str":{"message":"உதவி","description":"help tab string"},"popup_help_heading_str":{"message":"நாங்கள் உதவ இங்கே இருக்கிறோம்","description":"popup help tab heading"},"popup_help_desc_str":{"message":"நீங்கள் ஏதேனும் சிக்கலை சந்தித்திருந்தால், தயவுசெய்து அதைப் புகாரளிக்கவும்","description":"popup help tab description"},"here":{"message":"இங்கே","description":"word"},"popup_default_language_label_str":{"message":"இயல்புநிலை மொழி","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"இயல்புநிலை மொழியை மாற்ற கிளிக் செய்க","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"பேச்சு அங்கீகாரத்தை இயக்க / முடக்க இங்கே கிளிக் செய்க","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"அமைப்புகளைத் திறக்கவும்","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome தொடங்கும் போது 'பேச்சு அங்கீகாரம்' தொடங்கவும்","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"பேச்சு அங்கீகார மொழியை மாற்றவும்","description":"language change setting label"},"option_permission_success_msg":{"message":"இப்போது நீங்கள் இந்த தாவலை மூடி, இந்த கருவியைப் பயன்படுத்தி உங்கள் வலைத்தளத்துடன் எந்த வலைத்தளத்திலும் தட்டச்சு செய்யலாம்!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"இந்த கருவியைப் பயன்படுத்த தயவுசெய்து அனுமதிகளை அனுமதிக்கவும்!","description":"error message when user rejects permission"},"emoji":{"message":"ஈமோஜி","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ஈமோஜி கிடைக்கவில்லை!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ஈமோஜி டிக்டேஷனைப் பயன்படுத்தவும் (1800 க்கும் மேற்பட்ட ஈமோஜிகள்)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"மிக நெருக்கமான ஒலி ஈமோஜிகளைத் தேடுங்கள்","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"இந்த கருவியை எவ்வாறு பயன்படுத்துவது?","description":"How to use this tool ? string"},"new_line_label":{"message":"புதிய கோடு","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"குரல் கட்டளைகளைக் காண கிளிக் செய்க","description":"voice commands control label "},"popup_show_commands_label":{"message":"கட்டளைகளைக் காட்டு","description":"voice commands control label "},"commands_list_label":{"message":"மொழிக்கான கட்டளைகள் பட்டியல்","description":"Commands List for language label"},"command_name_label":{"message":"கட்டளையின் பெயர்","description":"Command's Name label"},"command_description_label":{"message":"கட்டளையின் விளக்கம்","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ஈமோஜிகளின் பட்டியலிலிருந்து சற்றே ஒத்த ஈமோஜிகளைச் செருக 'ஈமோஜி ஈமோஜியின் பெயர்' என்று சொல்லுங்கள். பக்கத்தை அமைப்பதில் ஈமோஜிகளின் முழு பட்டியலையும் புதுப்பிக்கவும்","description":"command emoji desc"},"command_newline_description":{"message":"தட்டச்சு செய்ய புதிய வரியைச் சொல்லுங்கள். '","description":"command newline desc"},"command_press_enter_description":{"message":"'Enter' விசையை அழுத்தவும் என்டர் அழுத்தவும். படிவங்களை சமர்ப்பிக்க பயனுள்ளதாக இருக்கும்","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"மொழிக்கான ஈமோஜியின் பட்டியல்","description":"emoji list label"},"emoji_name_label":{"message":"ஈமோஜியின் பெயர்","description":"emoji name label"},"command_newline_description_new":{"message":"புதிய வரியைப் பெற புதிய வரியைச் சொல்லுங்கள்.","description":"command newline desc"},"check_here_label":{"message":"இங்கே பாருங்கள்","description":"Check here label"},"imoji_list_label":{"message":"இங்கே பாருங்கள்","description":"Check here label"},"command_list_label":{"message":"கட்டளை பட்டியல்","description":"Command List label"},"imoji_list_label_new":{"message":"ஈமோஜி பட்டியல்","description":"imoji list label"},"symbol_list_label":{"message":"கணித சின்னங்கள் பட்டியல்","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"மனம்","description":"Mindfulness command"},"command_mindfulness_description":{"message":"உரை பெட்டியில் ஒரு சீரற்ற நினைவாற்றல் சிந்தனையைச் செருக 'நினைவாற்றல்' என்று சொல்லுங்கள்","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"இந்த கருவியைப் பயன்படுத்த ஆடியோ அனுமதிகளை அனுமதிக்க கீழேயுள்ள பொத்தானைக் கிளிக் செய்க.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"குறிப்பு: நீங்கள் தற்செயலாக அனுமதிகளை அனுமதிக்கவில்லை என்றால், இந்த தாவலின் தேடல் பட்டியின் மேல் இடது மூலையில் கிளிக் செய்வதை நீங்கள் அனுமதிக்கலாம்","description":"audio permission extra info"},"allow_permission_label":{"message":"அனுமதி அனுமதிக்கவும்","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"இந்த கருவியைப் பயன்படுத்த தயவுசெய்து அனுமதிகளை அனுமதிக்கவும்!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"இப்போது நீங்கள் இந்த தாவலை மூடி, இந்த கருவியைப் பயன்படுத்தி உங்கள் வலைத்தளத்துடன் எந்த வலைத்தளத்திலும் தட்டச்சு செய்யலாம்!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* இப்போது எந்த உள்ளீட்டையும் கிளிக் செய்து பேசுங்கள்","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"மோர்ஸ் குறியீட்டை உருவாக்கவும்","description":"cmc label"},"command_enable_disable_label":{"message":"இயக்கு / முடக்கு","description":"enable or disable command label"},"command_arrow_label":{"message":"அம்பு","description":"command arrow label"},"command_arrow_description":{"message":"இடது அம்பு விசையைத் தட்டச்சு செய்ய 'அம்பு இடது' என்று சொல்லுங்கள். சாத்தியமான கட்டளைகள்: அம்பு இடது | வலது | மேல் | கீழ்","description":"command arrow desc"},"left_label":{"message":"இடது","description":"left label"},"right_label":{"message":"சரி","description":"right label"},"up_label":{"message":"மேலே","description":"up label"},"down_label":{"message":"கீழ்","description":"down label"},"command_search_label":{"message":"தேடல்","description":"command search label"},"command_search_label2":{"message":"கூகிள்","description":"command go to label 2"},"command_search_description":{"message":"Google.com இல் பூனை தேட தேடல் பூனை அல்லது கூகிள் பூனை என்று சொல்லுங்கள்","description":"command go to label 3"},"command_bookmark_label":{"message":"புத்தககுறி","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"இப்பக்கத்தை குறியிட்டுவைக்கவும்","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"புக்மார்க்கை அகற்று","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"இந்த புக்மார்க்கை அகற்று","description":"command bookmark label 4"},"command_bookmark_description":{"message":"புக்மார்க்கைச் சேர்க்க அல்லது அகற்ற 'இந்தப் பக்கத்தை புக்மார்க்கு' அல்லது 'புக்மார்க்கை அகற்று' என்று சொல்லுங்கள்","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"புக்மார்க்குகளில் இந்தப் பக்கத்தைச் சேர்த்தது!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"புக்மார்க்குகளிலிருந்து இந்தப் பக்கம் அகற்றப்பட்டது!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"விளையாடு","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Play song_name' என்று சொல்லுங்கள், இது யூடியூபிலிருந்து வரும் பாடலை இயக்கும்.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"கண்டுபிடி","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"முன்னிலைப்படுத்த","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"வெளிச்சம்","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"நடப்பு பக்கத்தில் உள்ள முக்கிய சொல்லை முன்னிலைப்படுத்த 'முக்கிய சொல்லை முன்னிலைப்படுத்து' என்று சொல்லுங்கள்","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"செயல்தவிர்","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"மீண்டும் செய்","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"அனைத்தையும் செயல்தவிர்","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"அனைத்தையும் செயல்தவிர் / மீண்டும் செய் / அனைத்தையும் செயல்தவிர் என்று சொல்லுங்கள்.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"அடுத்தது","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"முந்தையது","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"அடுத்த மற்றும் முந்தையவற்றைக் கூறி உள்ளீட்டு உறுப்புகளுக்குச் செல்லவும்","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"மேலே உருட்டவும்","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"கீழே உருட்டவும்","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"பக்கத்தை உருட்ட கீழே உருட்டவும் / மேலே உருட்டவும் என்று சொல்லுங்கள்.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"செல்லுங்கள்","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"வருகை","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"திறந்த","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"புதிய தாவலில் facebook.com ஐ திறக்க 'facebook.com க்குச் செல்லுங்கள்' என்று சொல்லுங்கள். புக்மார்க்கு URL ஐ திறக்க 'புக்மார்க்கு புக்மார்க்கு_பெயருக்குச் செல்லுங்கள்' என்று சொல்லுங்கள்.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"புத்தககுறி","description":"bookmark"}} diff --git a/src/app/_locales/te/messages.json b/src/app/_locales/te/messages.json index 7de44e0..c45e7e2 100644 --- a/src/app/_locales/te/messages.json +++ b/src/app/_locales/te/messages.json @@ -1 +1 @@ -{"appName":{"message":"స్పీచ్ రికగ్నిషన్ టూల్‌కిట్","description":"app name"},"appDescription":{"message":"మీ వాయిస్‌ని మాత్రమే ఉపయోగించడం ద్వారా ఏదైనా వెబ్ ఫారమ్‌ను పూరించండి!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ఆడియో అనుమతిని అనుమతించండి","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ఆడియో అనుమతిని అనుమతించడానికి ఇక్కడ క్లిక్ చేయండి","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"సెట్టింగులు","description":"setting tab string"},"popup_mic_listening_label":{"message":"వింటూ","description":"label when mic is listening"},"popup_help_tab_str":{"message":"సహాయం","description":"help tab string"},"popup_help_heading_str":{"message":"మేము సహాయం కోసం ఇక్కడ ఉన్నాము","description":"popup help tab heading"},"popup_help_desc_str":{"message":"మీరు ఏదైనా సమస్యను ఎదుర్కొన్నట్లయితే, దయచేసి దాన్ని నివేదించండి","description":"popup help tab description"},"here":{"message":"ఇక్కడ","description":"word"},"popup_default_language_label_str":{"message":"డిఫాల్ట్ భాష","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"డిఫాల్ట్ భాషను మార్చడానికి క్లిక్ చేయండి","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"స్పీచ్ రికగ్నిషన్ ఆన్ / ఆఫ్ చేయడానికి ఇక్కడ క్లిక్ చేయండి","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"సెట్టింగులను తెరవండి","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ప్రారంభమైనప్పుడు 'స్పీచ్ రికగ్నిషన్' ప్రారంభించండి","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"స్పీచ్ రికగ్నిషన్ లాంగ్వేజ్ మార్చండి","description":"language change setting label"},"option_permission_success_msg":{"message":"ఇప్పుడు మీరు ఈ ట్యాబ్‌ను మూసివేసి, మీ వాయిస్‌తో ఏదైనా వెబ్‌సైట్‌లో టైప్ చేయడానికి ఈ సాధనాన్ని ఉపయోగించవచ్చు!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"దయచేసి ఈ సాధనాన్ని ఉపయోగించడానికి అనుమతులను అనుమతించండి!","description":"error message when user rejects permission"},"emoji":{"message":"ఎమోజి","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ఎమోజి దొరకలేదు!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ఎమోజి డిక్టేషన్ ఉపయోగించండి (1800 కంటే ఎక్కువ ఎమోజీలు)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"దగ్గరి ధ్వనించే ఎమోజి కోసం శోధించండి","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ఈ సాధనాన్ని ఎలా ఉపయోగించాలి?","description":"How to use this tool ? string"},"new_line_label":{"message":"కొత్త వాక్యం","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"వాయిస్ ఆదేశాలను చూడటానికి క్లిక్ చేయండి","description":"voice commands control label "},"popup_show_commands_label":{"message":"ఆదేశాలను చూపించు","description":"voice commands control label "},"commands_list_label":{"message":"భాష కోసం ఆదేశాల జాబితా","description":"Commands List for language label"},"command_name_label":{"message":"కమాండ్ పేరు","description":"Command's Name label"},"command_description_label":{"message":"కమాండ్ యొక్క వివరణ","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ఎమోజీల జాబితా నుండి కొంతవరకు సమానమైన ఎమోజీలను చేర్చడానికి 'ఎమోజి ఎమోజి పేరు' అని చెప్పండి. సెట్టింగ్ పేజీలో ఎమోజీల పూర్తి జాబితాను తనిఖీ చేయండి","description":"command emoji desc"},"command_newline_description":{"message":"'టైప్ చేయడానికి కొత్త పంక్తిని చెప్పండి.'","description":"command newline desc"},"command_press_enter_description":{"message":"'ఎంటర్' కీని నొక్కండి ఎంటర్ నొక్కండి. ఫారమ్‌లను సమర్పించడానికి ఉపయోగపడుతుంది","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"భాష కోసం ఎమోజి జాబితా","description":"emoji list label"},"emoji_name_label":{"message":"ఎమోజి పేరు","description":"emoji name label"},"command_newline_description_new":{"message":"క్రొత్త పంక్తిని పొందడానికి కొత్త పంక్తిని చెప్పండి.","description":"command newline desc"},"check_here_label":{"message":"ఇక్కడ తనిఖీ చేయండి","description":"Check here label"},"imoji_list_label":{"message":"ఇక్కడ తనిఖీ చేయండి","description":"Check here label"},"command_list_label":{"message":"కమాండ్ జాబితా","description":"Command List label"},"imoji_list_label_new":{"message":"ఎమోజి జాబితా","description":"imoji list label"},"symbol_list_label":{"message":"గణిత చిహ్నాల జాబితా","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"మైండ్‌ఫుల్‌నెస్","description":"Mindfulness command"},"command_mindfulness_description":{"message":"టెక్స్ట్ బాక్స్‌లో యాదృచ్ఛిక బుద్ధిపూర్వక ఆలోచనను చొప్పించడానికి 'సంపూర్ణత' చెప్పండి","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ఈ సాధనాన్ని ఉపయోగించడానికి ఆడియో అనుమతులను అనుమతించడానికి దయచేసి క్రింది బటన్‌పై క్లిక్ చేయండి.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"గమనిక: మీరు అనుకోకుండా అనుమతులను అనుమతించకపోతే, ఈ ట్యాబ్ యొక్క శోధన పట్టీ యొక్క ఎగువ ఎడమ మూలలో క్లిక్ చేయకుండా మీరు వాటిని అనుమతించవచ్చు","description":"audio permission extra info"},"allow_permission_label":{"message":"అనుమతి అనుమతించండి","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"దయచేసి ఈ సాధనాన్ని ఉపయోగించడానికి అనుమతులను అనుమతించండి!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ఇప్పుడు మీరు ఈ ట్యాబ్‌ను మూసివేసి, మీ వాయిస్‌తో ఏదైనా వెబ్‌సైట్‌లో టైప్ చేయడానికి ఈ సాధనాన్ని ఉపయోగించవచ్చు!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ఇప్పుడు ఏదైనా ఇన్‌పుట్‌పై క్లిక్ చేసి మాట్లాడండి","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"మోర్స్ కోడ్‌ను సృష్టించండి","description":"cmc label"},"command_enable_disable_label":{"message":"ప్రారంభించు / ఆపివేయి","description":"enable or disable command label"},"command_arrow_label":{"message":"బాణం","description":"command arrow label"},"command_arrow_description":{"message":"ఎడమ బాణం కీని టైప్ చేయడానికి 'బాణం ఎడమ' అని చెప్పండి. సాధ్యం ఆదేశాలు: బాణం ఎడమ | కుడి | టాప్ | డౌన్","description":"command arrow desc"},"left_label":{"message":"ఎడమ","description":"left label"},"right_label":{"message":"కుడి","description":"right label"},"up_label":{"message":"పైకి","description":"up label"},"down_label":{"message":"డౌన్","description":"down label"},"command_go_to_label":{"message":"వెళ్ళండి","description":"command go to label"},"command_go_to_description":{"message":"Facebook.com కోసం క్రొత్త ట్యాబ్‌ను తెరవడానికి facebook.com కి వెళ్లండి అని చెప్పండి","description":"command go to description"},"command_go_to_label2":{"message":"సందర్శించండి","description":"command go to label 2"},"command_go_to_label3":{"message":"తెరిచి ఉంది","description":"command go to label 3"},"command_search_label":{"message":"వెతకండి","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Google.com లో పిల్లిని శోధించడానికి సెర్చ్ క్యాట్ లేదా గూగుల్ క్యాట్ చెప్పండి","description":"command go to label 3"},"command_bookmark_label":{"message":"బుక్‌మార్క్","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ఈ పేజీని బుక్‌మార్క్ చేయండి","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"బుక్‌మార్క్‌ను తొలగించండి","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ఈ బుక్‌మార్క్‌ను తొలగించండి","description":"command bookmark label 4"},"command_bookmark_description":{"message":"బుక్‌మార్క్‌ను జోడించడానికి లేదా తీసివేయడానికి 'ఈ పేజీని బుక్‌మార్క్ చేయండి' లేదా 'బుక్‌మార్క్‌ను తొలగించండి' అని చెప్పండి","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ఈ పేజీని బుక్‌మార్క్‌లకు చేర్చారు!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"బుక్‌మార్క్‌ల నుండి ఈ పేజీని తొలగించారు!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"ఆడండి","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Play song_name' అని చెప్పండి, ఇది యూట్యూబ్ నుండి పాటను ప్లే చేస్తుంది.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"కనుగొనండి","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"హైలైట్","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"హైలైట్","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"ప్రస్తుత పేజీలోని కీవర్డ్‌ని హైలైట్ చేయడానికి 'హైలైట్ కీవర్డ్' చెప్పండి మరియు దీనికి విరుద్ధంగా","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"చర్యరద్దు చేయండి","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"పునరావృతం","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"అన్నీ అన్డు","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"అన్నింటినీ అన్డు / పునరావృతం / అన్డు చేయమని చెప్పండి.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"తరువాత","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"మునుపటి","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"తదుపరి మరియు మునుపటి చెప్పడం ద్వారా ఇన్‌పుట్ మూలకాలకు నావిగేట్ చేయండి","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"పైకి స్క్రోల్ చేయండి","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"కిందకి జరుపు","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"పేజీని స్క్రోల్ చేయడానికి క్రిందికి స్క్రోల్ చేయండి / పైకి స్క్రోల్ చేయండి.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"స్పీచ్ రికగ్నిషన్ టూల్‌కిట్","description":"app name"},"appDescription":{"message":"మీ వాయిస్‌ని మాత్రమే ఉపయోగించడం ద్వారా ఏదైనా వెబ్ ఫారమ్‌ను పూరించండి!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"ఆడియో అనుమతిని అనుమతించండి","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"ఆడియో అనుమతిని అనుమతించడానికి ఇక్కడ క్లిక్ చేయండి","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"సెట్టింగులు","description":"setting tab string"},"popup_mic_listening_label":{"message":"వింటూ","description":"label when mic is listening"},"popup_help_tab_str":{"message":"సహాయం","description":"help tab string"},"popup_help_heading_str":{"message":"మేము సహాయం కోసం ఇక్కడ ఉన్నాము","description":"popup help tab heading"},"popup_help_desc_str":{"message":"మీరు ఏదైనా సమస్యను ఎదుర్కొన్నట్లయితే, దయచేసి దాన్ని నివేదించండి","description":"popup help tab description"},"here":{"message":"ఇక్కడ","description":"word"},"popup_default_language_label_str":{"message":"డిఫాల్ట్ భాష","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"డిఫాల్ట్ భాషను మార్చడానికి క్లిక్ చేయండి","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"స్పీచ్ రికగ్నిషన్ ఆన్ / ఆఫ్ చేయడానికి ఇక్కడ క్లిక్ చేయండి","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"సెట్టింగులను తెరవండి","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome ప్రారంభమైనప్పుడు 'స్పీచ్ రికగ్నిషన్' ప్రారంభించండి","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"స్పీచ్ రికగ్నిషన్ లాంగ్వేజ్ మార్చండి","description":"language change setting label"},"option_permission_success_msg":{"message":"ఇప్పుడు మీరు ఈ ట్యాబ్‌ను మూసివేసి, మీ వాయిస్‌తో ఏదైనా వెబ్‌సైట్‌లో టైప్ చేయడానికి ఈ సాధనాన్ని ఉపయోగించవచ్చు!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"దయచేసి ఈ సాధనాన్ని ఉపయోగించడానికి అనుమతులను అనుమతించండి!","description":"error message when user rejects permission"},"emoji":{"message":"ఎమోజి","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ఎమోజి దొరకలేదు!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ఎమోజి డిక్టేషన్ ఉపయోగించండి (1800 కంటే ఎక్కువ ఎమోజీలు)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"దగ్గరి ధ్వనించే ఎమోజి కోసం శోధించండి","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"ఈ సాధనాన్ని ఎలా ఉపయోగించాలి?","description":"How to use this tool ? string"},"new_line_label":{"message":"కొత్త వాక్యం","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"వాయిస్ ఆదేశాలను చూడటానికి క్లిక్ చేయండి","description":"voice commands control label "},"popup_show_commands_label":{"message":"ఆదేశాలను చూపించు","description":"voice commands control label "},"commands_list_label":{"message":"భాష కోసం ఆదేశాల జాబితా","description":"Commands List for language label"},"command_name_label":{"message":"కమాండ్ పేరు","description":"Command's Name label"},"command_description_label":{"message":"కమాండ్ యొక్క వివరణ","description":"Command's Description label"},"command_emoji_description":{"message":"1800 ఎమోజీల జాబితా నుండి కొంతవరకు సమానమైన ఎమోజీలను చేర్చడానికి 'ఎమోజి ఎమోజి పేరు' అని చెప్పండి. సెట్టింగ్ పేజీలో ఎమోజీల పూర్తి జాబితాను తనిఖీ చేయండి","description":"command emoji desc"},"command_newline_description":{"message":"'టైప్ చేయడానికి కొత్త పంక్తిని చెప్పండి.'","description":"command newline desc"},"command_press_enter_description":{"message":"'ఎంటర్' కీని నొక్కండి ఎంటర్ నొక్కండి. ఫారమ్‌లను సమర్పించడానికి ఉపయోగపడుతుంది","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"భాష కోసం ఎమోజి జాబితా","description":"emoji list label"},"emoji_name_label":{"message":"ఎమోజి పేరు","description":"emoji name label"},"command_newline_description_new":{"message":"క్రొత్త పంక్తిని పొందడానికి కొత్త పంక్తిని చెప్పండి.","description":"command newline desc"},"check_here_label":{"message":"ఇక్కడ తనిఖీ చేయండి","description":"Check here label"},"imoji_list_label":{"message":"ఇక్కడ తనిఖీ చేయండి","description":"Check here label"},"command_list_label":{"message":"కమాండ్ జాబితా","description":"Command List label"},"imoji_list_label_new":{"message":"ఎమోజి జాబితా","description":"imoji list label"},"symbol_list_label":{"message":"గణిత చిహ్నాల జాబితా","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"మైండ్‌ఫుల్‌నెస్","description":"Mindfulness command"},"command_mindfulness_description":{"message":"టెక్స్ట్ బాక్స్‌లో యాదృచ్ఛిక బుద్ధిపూర్వక ఆలోచనను చొప్పించడానికి 'సంపూర్ణత' చెప్పండి","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"ఈ సాధనాన్ని ఉపయోగించడానికి ఆడియో అనుమతులను అనుమతించడానికి దయచేసి క్రింది బటన్‌పై క్లిక్ చేయండి.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"గమనిక: మీరు అనుకోకుండా అనుమతులను అనుమతించకపోతే, ఈ ట్యాబ్ యొక్క శోధన పట్టీ యొక్క ఎగువ ఎడమ మూలలో క్లిక్ చేయకుండా మీరు వాటిని అనుమతించవచ్చు","description":"audio permission extra info"},"allow_permission_label":{"message":"అనుమతి అనుమతించండి","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"దయచేసి ఈ సాధనాన్ని ఉపయోగించడానికి అనుమతులను అనుమతించండి!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ఇప్పుడు మీరు ఈ ట్యాబ్‌ను మూసివేసి, మీ వాయిస్‌తో ఏదైనా వెబ్‌సైట్‌లో టైప్ చేయడానికి ఈ సాధనాన్ని ఉపయోగించవచ్చు!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ఇప్పుడు ఏదైనా ఇన్‌పుట్‌పై క్లిక్ చేసి మాట్లాడండి","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"మోర్స్ కోడ్‌ను సృష్టించండి","description":"cmc label"},"command_enable_disable_label":{"message":"ప్రారంభించు / ఆపివేయి","description":"enable or disable command label"},"command_arrow_label":{"message":"బాణం","description":"command arrow label"},"command_arrow_description":{"message":"ఎడమ బాణం కీని టైప్ చేయడానికి 'బాణం ఎడమ' అని చెప్పండి. సాధ్యం ఆదేశాలు: బాణం ఎడమ | కుడి | టాప్ | డౌన్","description":"command arrow desc"},"left_label":{"message":"ఎడమ","description":"left label"},"right_label":{"message":"కుడి","description":"right label"},"up_label":{"message":"పైకి","description":"up label"},"down_label":{"message":"డౌన్","description":"down label"},"command_search_label":{"message":"వెతకండి","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"Google.com లో పిల్లిని శోధించడానికి సెర్చ్ క్యాట్ లేదా గూగుల్ క్యాట్ చెప్పండి","description":"command go to label 3"},"command_bookmark_label":{"message":"బుక్‌మార్క్","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"ఈ పేజీని బుక్‌మార్క్ చేయండి","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"బుక్‌మార్క్‌ను తొలగించండి","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ఈ బుక్‌మార్క్‌ను తొలగించండి","description":"command bookmark label 4"},"command_bookmark_description":{"message":"బుక్‌మార్క్‌ను జోడించడానికి లేదా తీసివేయడానికి 'ఈ పేజీని బుక్‌మార్క్ చేయండి' లేదా 'బుక్‌మార్క్‌ను తొలగించండి' అని చెప్పండి","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"ఈ పేజీని బుక్‌మార్క్‌లకు చేర్చారు!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"బుక్‌మార్క్‌ల నుండి ఈ పేజీని తొలగించారు!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"ఆడండి","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Play song_name' అని చెప్పండి, ఇది యూట్యూబ్ నుండి పాటను ప్లే చేస్తుంది.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"కనుగొనండి","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"హైలైట్","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"హైలైట్","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"ప్రస్తుత పేజీలోని కీవర్డ్‌ని హైలైట్ చేయడానికి 'హైలైట్ కీవర్డ్' చెప్పండి మరియు దీనికి విరుద్ధంగా","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"చర్యరద్దు చేయండి","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"పునరావృతం","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"అన్నీ అన్డు","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"అన్నింటినీ అన్డు / పునరావృతం / అన్డు చేయమని చెప్పండి.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"తరువాత","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"మునుపటి","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"తదుపరి మరియు మునుపటి చెప్పడం ద్వారా ఇన్‌పుట్ మూలకాలకు నావిగేట్ చేయండి","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"పైకి స్క్రోల్ చేయండి","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"కిందకి జరుపు","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"పేజీని స్క్రోల్ చేయడానికి క్రిందికి స్క్రోల్ చేయండి / పైకి స్క్రోల్ చేయండి.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"వెళ్ళండి","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"సందర్శించండి","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"తెరిచి ఉంది","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"క్రొత్త ట్యాబ్‌లో facebook.com ను తెరవడానికి 'facebook.com కి వెళ్లండి' అని చెప్పండి. బుక్‌మార్క్ url ను తెరవడానికి 'బుక్‌మార్క్ బుక్‌మార్క్_పేరుకు వెళ్లండి' అని చెప్పండి.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"బుక్‌మార్క్","description":"bookmark"}} diff --git a/src/app/_locales/th/messages.json b/src/app/_locales/th/messages.json index d53b203..0455db0 100644 --- a/src/app/_locales/th/messages.json +++ b/src/app/_locales/th/messages.json @@ -1 +1 @@ -{"appName":{"message":"ชุดเครื่องมือรู้จำเสียง","description":"app name"},"appDescription":{"message":"กรอกแบบฟอร์มบนเว็บใดก็ได้โดยใช้เพียงเสียงของคุณ!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"อนุญาตการอนุญาตเสียง","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"คลิกที่นี่เพื่ออนุญาตการอนุญาตเสียง","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"การตั้งค่า","description":"setting tab string"},"popup_mic_listening_label":{"message":"การฟัง","description":"label when mic is listening"},"popup_help_tab_str":{"message":"ช่วยด้วย","description":"help tab string"},"popup_help_heading_str":{"message":"เราพร้อมให้ความช่วยเหลือ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"หากคุณประสบปัญหาใด ๆ โปรดรายงาน","description":"popup help tab description"},"here":{"message":"ที่นี่","description":"word"},"popup_default_language_label_str":{"message":"ภาษาเริ่มต้น","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"คลิกเพื่อเปลี่ยนภาษาเริ่มต้น","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"คลิกที่นี่เพื่อเปิด / ปิดการรู้จำเสียง","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"เปิดการตั้งค่า","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"เริ่ม 'การรู้จำเสียง' เมื่อ Chrome เริ่มทำงาน","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"เปลี่ยนภาษาการรู้จำเสียง","description":"language change setting label"},"option_permission_success_msg":{"message":"ตอนนี้คุณสามารถปิดแท็บนี้และใช้เครื่องมือนี้เพื่อพิมพ์บนเว็บไซต์ใดก็ได้ด้วยเสียงของคุณ!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"โปรดอนุญาตการอนุญาตเพื่อใช้เครื่องมือนี้!","description":"error message when user rejects permission"},"emoji":{"message":"อีโมจิ","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ไม่พบอีโมจิ!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ใช้การป้อนตามคำบอกอิโมจิ (อิโมจิมากกว่า 1,800 รายการ)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ค้นหาอีโมจิที่ทำให้เกิดเสียงที่ใกล้เคียงที่สุด","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"วิธีการใช้เครื่องมือนี้?","description":"How to use this tool ? string"},"new_line_label":{"message":"บรรทัดใหม่","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"คลิกเพื่อดูคำสั่งเสียง","description":"voice commands control label "},"popup_show_commands_label":{"message":"แสดงคำสั่ง","description":"voice commands control label "},"commands_list_label":{"message":"รายการคำสั่งสำหรับภาษา","description":"Commands List for language label"},"command_name_label":{"message":"ชื่อคำสั่ง","description":"Command's Name label"},"command_description_label":{"message":"คำอธิบายของคำสั่ง","description":"Command's Description label"},"command_emoji_description":{"message":"พูดว่า \"ชื่ออิโมจิอิโมจิ\" เพื่อแทรกอิโมจิที่คล้ายกันจากรายการอิโมจิ 1,800 รายการ ชำระเงินรายการอิโมจิทั้งหมดในหน้าการตั้งค่า","description":"command emoji desc"},"command_newline_description":{"message":"พูดบรรทัดใหม่เพื่อพิมพ์ \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"พูดว่ากด Enter เพื่อกดปุ่ม \"Enter\" มีประโยชน์สำหรับการส่งแบบฟอร์ม","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"รายการภาษาของ Emoji","description":"emoji list label"},"emoji_name_label":{"message":"ชื่อของ Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"ทักไลน์ใหม่เพื่อขึ้นบรรทัดใหม่","description":"command newline desc"},"check_here_label":{"message":"ตรวจสอบที่นี่","description":"Check here label"},"imoji_list_label":{"message":"ตรวจสอบที่นี่","description":"Check here label"},"command_list_label":{"message":"รายการคำสั่ง","description":"Command List label"},"imoji_list_label_new":{"message":"รายการอิโมจิ","description":"imoji list label"},"symbol_list_label":{"message":"รายการสัญลักษณ์ทางคณิตศาสตร์","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"สติ","description":"Mindfulness command"},"command_mindfulness_description":{"message":"พูดว่า \"สติ\" เพื่อใส่ความคิดเกี่ยวกับสติแบบสุ่มในกล่องข้อความ","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"โปรดคลิกที่ปุ่มด้านล่างเพื่ออนุญาตการอนุญาตเสียงเพื่อใช้เครื่องมือนี้","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"หมายเหตุ: หากคุณไม่ได้รับอนุญาตโดยไม่ได้ตั้งใจคุณสามารถอนุญาตได้จากการคลิกที่มุมบนซ้ายของแถบค้นหาของแท็บนี้","description":"audio permission extra info"},"allow_permission_label":{"message":"อนุญาต","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"โปรดอนุญาตการอนุญาตเพื่อใช้เครื่องมือนี้!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ตอนนี้คุณสามารถปิดแท็บนี้และใช้เครื่องมือนี้เพื่อพิมพ์บนเว็บไซต์ใดก็ได้ด้วยเสียงของคุณ!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ตอนนี้คลิกที่ข้อมูลใด ๆ และพูด","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"สร้างรหัสมอร์ส","description":"cmc label"},"command_enable_disable_label":{"message":"เปิดปิด","description":"enable or disable command label"},"command_arrow_label":{"message":"ลูกศร","description":"command arrow label"},"command_arrow_description":{"message":"พูดว่า \"ลูกศรซ้าย\" เพื่อพิมพ์แป้นลูกศรซ้าย คำสั่งที่เป็นไปได้: ลูกศรซ้าย | ขวา | ด้านบน | ลง","description":"command arrow desc"},"left_label":{"message":"ซ้าย","description":"left label"},"right_label":{"message":"ขวา","description":"right label"},"up_label":{"message":"ขึ้น","description":"up label"},"down_label":{"message":"ลง","description":"down label"},"command_go_to_label":{"message":"ไปที่","description":"command go to label"},"command_go_to_description":{"message":"พูดว่า 'ไปที่ facebook.com เพื่อเปิดแท็บใหม่สำหรับ facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"เยี่ยมชม","description":"command go to label 2"},"command_go_to_label3":{"message":"เปิด","description":"command go to label 3"},"command_search_label":{"message":"ค้นหา","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"พูดคำว่า Search cat หรือ google cat เพื่อค้นหา cat ใน google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"บุ๊คมาร์ค","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"บุ๊คมาร์คหน้านี้","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ลบบุ๊คมาร์ค","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ลบบุ๊กมาร์กนี้","description":"command bookmark label 4"},"command_bookmark_description":{"message":"พูดว่า \"บุ๊กมาร์กหน้านี้\" หรือ \"ลบบุ๊กมาร์ก\" เพื่อเพิ่มหรือลบบุ๊กมาร์ก","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"เพิ่มหน้านี้ในบุ๊กมาร์ก!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"นำหน้านี้ออกจากบุ๊กมาร์ก!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"เล่น","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"พูดว่า 'play song_name' มันจะเล่นเพลงจาก youtube","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"หา","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ไฮไลต์","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ไม่ไฮไลท์","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"พูดว่า 'เน้นคำหลัก' เพื่อเน้นคำหลักในหน้าปัจจุบันและในทางกลับกัน","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"เลิกทำ","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ทำซ้ำ","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"เลิกทำทั้งหมด","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"พูดว่าเลิกทำ / ทำซ้ำ / เลิกทำทั้งหมดเพื่อเลิกทำ / ทำซ้ำ / เลิกทำทั้งหมด","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ต่อไป","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ก่อนหน้านี้","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"ไปที่องค์ประกอบการป้อนข้อมูลโดยพูดถัดไปและก่อนหน้า","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"เลื่อนขึ้น","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"เลื่อนลง","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"พูดว่าเลื่อนลง / เลื่อนขึ้นเพื่อเลื่อนหน้า","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"ชุดเครื่องมือรู้จำเสียง","description":"app name"},"appDescription":{"message":"กรอกแบบฟอร์มบนเว็บใดก็ได้โดยใช้เพียงเสียงของคุณ!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"อนุญาตการอนุญาตเสียง","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"คลิกที่นี่เพื่ออนุญาตการอนุญาตเสียง","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"การตั้งค่า","description":"setting tab string"},"popup_mic_listening_label":{"message":"การฟัง","description":"label when mic is listening"},"popup_help_tab_str":{"message":"ช่วยด้วย","description":"help tab string"},"popup_help_heading_str":{"message":"เราพร้อมให้ความช่วยเหลือ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"หากคุณประสบปัญหาใด ๆ โปรดรายงาน","description":"popup help tab description"},"here":{"message":"ที่นี่","description":"word"},"popup_default_language_label_str":{"message":"ภาษาเริ่มต้น","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"คลิกเพื่อเปลี่ยนภาษาเริ่มต้น","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"คลิกที่นี่เพื่อเปิด / ปิดการรู้จำเสียง","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"เปิดการตั้งค่า","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"เริ่ม 'การรู้จำเสียง' เมื่อ Chrome เริ่มทำงาน","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"เปลี่ยนภาษาการรู้จำเสียง","description":"language change setting label"},"option_permission_success_msg":{"message":"ตอนนี้คุณสามารถปิดแท็บนี้และใช้เครื่องมือนี้เพื่อพิมพ์บนเว็บไซต์ใดก็ได้ด้วยเสียงของคุณ!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"โปรดอนุญาตการอนุญาตเพื่อใช้เครื่องมือนี้!","description":"error message when user rejects permission"},"emoji":{"message":"อีโมจิ","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"ไม่พบอีโมจิ!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"ใช้การป้อนตามคำบอกอิโมจิ (อิโมจิมากกว่า 1,800 รายการ)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"ค้นหาอีโมจิที่ทำให้เกิดเสียงที่ใกล้เคียงที่สุด","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"วิธีการใช้เครื่องมือนี้?","description":"How to use this tool ? string"},"new_line_label":{"message":"บรรทัดใหม่","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"คลิกเพื่อดูคำสั่งเสียง","description":"voice commands control label "},"popup_show_commands_label":{"message":"แสดงคำสั่ง","description":"voice commands control label "},"commands_list_label":{"message":"รายการคำสั่งสำหรับภาษา","description":"Commands List for language label"},"command_name_label":{"message":"ชื่อคำสั่ง","description":"Command's Name label"},"command_description_label":{"message":"คำอธิบายของคำสั่ง","description":"Command's Description label"},"command_emoji_description":{"message":"พูดว่า \"ชื่ออิโมจิอิโมจิ\" เพื่อแทรกอิโมจิที่คล้ายกันจากรายการอิโมจิ 1,800 รายการ ชำระเงินรายการอิโมจิทั้งหมดในหน้าการตั้งค่า","description":"command emoji desc"},"command_newline_description":{"message":"พูดบรรทัดใหม่เพื่อพิมพ์ \".\"","description":"command newline desc"},"command_press_enter_description":{"message":"พูดว่ากด Enter เพื่อกดปุ่ม \"Enter\" มีประโยชน์สำหรับการส่งแบบฟอร์ม","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"รายการภาษาของ Emoji","description":"emoji list label"},"emoji_name_label":{"message":"ชื่อของ Emoji","description":"emoji name label"},"command_newline_description_new":{"message":"ทักไลน์ใหม่เพื่อขึ้นบรรทัดใหม่","description":"command newline desc"},"check_here_label":{"message":"ตรวจสอบที่นี่","description":"Check here label"},"imoji_list_label":{"message":"ตรวจสอบที่นี่","description":"Check here label"},"command_list_label":{"message":"รายการคำสั่ง","description":"Command List label"},"imoji_list_label_new":{"message":"รายการอิโมจิ","description":"imoji list label"},"symbol_list_label":{"message":"รายการสัญลักษณ์ทางคณิตศาสตร์","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"สติ","description":"Mindfulness command"},"command_mindfulness_description":{"message":"พูดว่า \"สติ\" เพื่อใส่ความคิดเกี่ยวกับสติแบบสุ่มในกล่องข้อความ","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"โปรดคลิกที่ปุ่มด้านล่างเพื่ออนุญาตการอนุญาตเสียงเพื่อใช้เครื่องมือนี้","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"หมายเหตุ: หากคุณไม่ได้รับอนุญาตโดยไม่ได้ตั้งใจคุณสามารถอนุญาตได้จากการคลิกที่มุมบนซ้ายของแถบค้นหาของแท็บนี้","description":"audio permission extra info"},"allow_permission_label":{"message":"อนุญาต","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"โปรดอนุญาตการอนุญาตเพื่อใช้เครื่องมือนี้!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"ตอนนี้คุณสามารถปิดแท็บนี้และใช้เครื่องมือนี้เพื่อพิมพ์บนเว็บไซต์ใดก็ได้ด้วยเสียงของคุณ!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* ตอนนี้คลิกที่ข้อมูลใด ๆ และพูด","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"สร้างรหัสมอร์ส","description":"cmc label"},"command_enable_disable_label":{"message":"เปิดปิด","description":"enable or disable command label"},"command_arrow_label":{"message":"ลูกศร","description":"command arrow label"},"command_arrow_description":{"message":"พูดว่า \"ลูกศรซ้าย\" เพื่อพิมพ์แป้นลูกศรซ้าย คำสั่งที่เป็นไปได้: ลูกศรซ้าย | ขวา | ด้านบน | ลง","description":"command arrow desc"},"left_label":{"message":"ซ้าย","description":"left label"},"right_label":{"message":"ขวา","description":"right label"},"up_label":{"message":"ขึ้น","description":"up label"},"down_label":{"message":"ลง","description":"down label"},"command_search_label":{"message":"ค้นหา","description":"command search label"},"command_search_label2":{"message":"google","description":"command go to label 2"},"command_search_description":{"message":"พูดคำว่า Search cat หรือ google cat เพื่อค้นหา cat ใน google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"บุ๊คมาร์ค","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"บุ๊คมาร์คหน้านี้","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"ลบบุ๊คมาร์ค","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"ลบบุ๊กมาร์กนี้","description":"command bookmark label 4"},"command_bookmark_description":{"message":"พูดว่า \"บุ๊กมาร์กหน้านี้\" หรือ \"ลบบุ๊กมาร์ก\" เพื่อเพิ่มหรือลบบุ๊กมาร์ก","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"เพิ่มหน้านี้ในบุ๊กมาร์ก!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"นำหน้านี้ออกจากบุ๊กมาร์ก!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"เล่น","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"พูดว่า 'play song_name' มันจะเล่นเพลงจาก youtube","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"หา","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"ไฮไลต์","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"ไม่ไฮไลท์","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"พูดว่า 'เน้นคำหลัก' เพื่อเน้นคำหลักในหน้าปัจจุบันและในทางกลับกัน","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"เลิกทำ","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"ทำซ้ำ","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"เลิกทำทั้งหมด","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"พูดว่าเลิกทำ / ทำซ้ำ / เลิกทำทั้งหมดเพื่อเลิกทำ / ทำซ้ำ / เลิกทำทั้งหมด","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"ต่อไป","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"ก่อนหน้านี้","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"ไปที่องค์ประกอบการป้อนข้อมูลโดยพูดถัดไปและก่อนหน้า","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"เลื่อนขึ้น","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"เลื่อนลง","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"พูดว่าเลื่อนลง / เลื่อนขึ้นเพื่อเลื่อนหน้า","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"ไปที่","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"เยี่ยมชม","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"เปิด","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"พูดว่า 'ไปที่ facebook.com' เพื่อเปิด facebook.com ในแท็บใหม่ พูดว่า \"ไปที่บุ๊กมาร์ก bookmark_name\" เพื่อเปิด URL บุ๊กมาร์ก","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"บุ๊กมาร์ก","description":"bookmark"}} diff --git a/src/app/_locales/tr/messages.json b/src/app/_locales/tr/messages.json index ed5ade2..49cf581 100644 --- a/src/app/_locales/tr/messages.json +++ b/src/app/_locales/tr/messages.json @@ -1 +1 @@ -{"appName":{"message":"Konuşma Tanıma Araç Seti","description":"app name"},"appDescription":{"message":"Herhangi bir web formunu sadece sesinizi kullanarak doldurun!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Ses İznine İzin Ver","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Ses İznine İzin Vermek için burayı tıklayın","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Ayarlar","description":"setting tab string"},"popup_mic_listening_label":{"message":"Dinleme","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Yardım","description":"help tab string"},"popup_help_heading_str":{"message":"Yardım etmek için buradayız","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Herhangi bir sorunla karşılaştıysanız lütfen bildirin","description":"popup help tab description"},"here":{"message":"buraya","description":"word"},"popup_default_language_label_str":{"message":"Varsayılan dil","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Varsayılan dili değiştirmek için tıklayın","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Konuşma Tanıma'yı Açmak / Kapatmak için burayı tıklayın","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Ayarları aç","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome başladığında \"Konuşma Tanıma\" yı başlatın","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Konuşma Tanıma Dilini Değiştirin","description":"language change setting label"},"option_permission_success_msg":{"message":"Artık bu sekmeyi kapatabilir ve bu aracı kullanarak herhangi bir web sitesine sesinizle yazı yazabilirsiniz!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Bu aracı kullanmak için lütfen İzinlere İzin Verin!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji bulunamadı!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Emoji dikte etme özelliğini kullanın (1800'den fazla emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"En yakın sesli emojiyi arayın","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Bu araç nasıl kullanılır?","description":"How to use this tool ? string"},"new_line_label":{"message":"Yeni hat","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Sesli komutları görmek için tıklayın","description":"voice commands control label "},"popup_show_commands_label":{"message":"Komutları Göster","description":"voice commands control label "},"commands_list_label":{"message":"Dil için Komut Listesi","description":"Commands List for language label"},"command_name_label":{"message":"Komutun Adı","description":"Command's Name label"},"command_description_label":{"message":"Komutun Açıklaması","description":"Command's Description label"},"command_emoji_description":{"message":"1800 emoji listesinden biraz benzer emoji eklemek için 'emoji emojisinin adını' söyleyin. ayar sayfasında emojilerin tam listesini kontrol edin","description":"command emoji desc"},"command_newline_description":{"message":"\"Yazmak için yeni satır\" deyin.","description":"command newline desc"},"command_press_enter_description":{"message":"\"Enter\" tuşuna basmak için enter tuşuna basın. Form göndermek için kullanışlıdır","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji'nin Dil Listesi","description":"emoji list label"},"emoji_name_label":{"message":"Emoji'nin adı","description":"emoji name label"},"command_newline_description_new":{"message":"Yeni bir satır almak için yeni satır söyleyin.","description":"command newline desc"},"check_here_label":{"message":"Burayı kontrol et","description":"Check here label"},"imoji_list_label":{"message":"Burayı kontrol et","description":"Check here label"},"command_list_label":{"message":"Komut Listesi","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji Listesi","description":"imoji list label"},"symbol_list_label":{"message":"Matematiksel Semboller listesi","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Farkındalık","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Metin kutusuna rastgele bir farkındalık düşüncesi eklemek için 'farkındalık' deyin","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Bu aracı kullanmak üzere ses izinlerine izin vermek için lütfen aşağıdaki düğmeyi tıklayın.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Not: Yanlışlıkla izin vermediyseniz, bu sekmenin arama çubuğunun sol üst köşesine tıklamalarına izin verebilirsiniz.","description":"audio permission extra info"},"allow_permission_label":{"message":"İzin ver","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Bu aracı kullanmak için lütfen İzinlere İzin Verin!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Artık bu sekmeyi kapatabilir ve bu aracı kullanarak herhangi bir web sitesine sesinizle yazı yazabilirsiniz!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Şimdi herhangi bir girişe tıklayın ve konuşun","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Mors Kodu Oluştur","description":"cmc label"},"command_enable_disable_label":{"message":"Etkinleştirme / Devre dışı","description":"enable or disable command label"},"command_arrow_label":{"message":"ok","description":"command arrow label"},"command_arrow_description":{"message":"Sol ok tuşunu yazmak için 'sol ok' deyin. olası komutlar: sol ok | sağ | yukarı | aşağı","description":"command arrow desc"},"left_label":{"message":"ayrıldı","description":"left label"},"right_label":{"message":"sağ","description":"right label"},"up_label":{"message":"yukarı","description":"up label"},"down_label":{"message":"aşağı","description":"down label"},"command_go_to_label":{"message":"git","description":"command go to label"},"command_go_to_description":{"message":"Facebook.com için yeni sekme açmak için facebook.com'a git deyin","description":"command go to description"},"command_go_to_label2":{"message":"ziyaret etmek","description":"command go to label 2"},"command_go_to_label3":{"message":"açık","description":"command go to label 3"},"command_search_label":{"message":"arama","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Google.com'da kedi aramak için kedi ara veya google kedi deyin","description":"command go to label 3"},"command_bookmark_label":{"message":"yer imi","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bu sayfayı işaretle","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"yer işaretini kaldır","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"bu yer imini kaldır","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Yer imi eklemek veya kaldırmak için 'Bu sayfayı yer imlerine ekle' veya 'yer imini kaldır' deyin","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Bu sayfayı yer imlerine ekledi!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Bu sayfa yer imlerinden kaldırıldı!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Oyna","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Song_name çal' deyin, şarkıyı youtube'dan çalacaktır.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"bulmak","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"vurgulamak","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"vurguyu kaldırmak","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Geçerli sayfadaki anahtar kelimeyi vurgulamak için 'anahtar kelimeyi vurgulayın' deyin veya tam tersini yapın","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"geri alma","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"yeniden yapmak","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"hepsini geri al","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Tümünü geri almak / yinelemek / geri almak için geri al / yinele / tümünü geri al deyin.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Sonraki","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"önceki","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Sonraki ve önceki diyerek giriş öğelerine gidin","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"yukarı kaydırmak","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"Aşağı kaydır","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sayfayı kaydırmak için aşağı kaydır / yukarı kaydır deyin.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Konuşma Tanıma Araç Seti","description":"app name"},"appDescription":{"message":"Herhangi bir web formunu sadece sesinizi kullanarak doldurun!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Ses İznine İzin Ver","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"Ses İznine İzin Vermek için burayı tıklayın","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Ayarlar","description":"setting tab string"},"popup_mic_listening_label":{"message":"Dinleme","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Yardım","description":"help tab string"},"popup_help_heading_str":{"message":"Yardım etmek için buradayız","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Herhangi bir sorunla karşılaştıysanız lütfen bildirin","description":"popup help tab description"},"here":{"message":"buraya","description":"word"},"popup_default_language_label_str":{"message":"Varsayılan dil","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Varsayılan dili değiştirmek için tıklayın","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Konuşma Tanıma'yı Açmak / Kapatmak için burayı tıklayın","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Ayarları aç","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome başladığında \"Konuşma Tanıma\" yı başlatın","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Konuşma Tanıma Dilini Değiştirin","description":"language change setting label"},"option_permission_success_msg":{"message":"Artık bu sekmeyi kapatabilir ve bu aracı kullanarak herhangi bir web sitesine sesinizle yazı yazabilirsiniz!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Bu aracı kullanmak için lütfen İzinlere İzin Verin!","description":"error message when user rejects permission"},"emoji":{"message":"emoji","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Emoji bulunamadı!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Emoji dikte etme özelliğini kullanın (1800'den fazla emoji)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"En yakın sesli emojiyi arayın","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Bu araç nasıl kullanılır?","description":"How to use this tool ? string"},"new_line_label":{"message":"Yeni hat","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Sesli komutları görmek için tıklayın","description":"voice commands control label "},"popup_show_commands_label":{"message":"Komutları Göster","description":"voice commands control label "},"commands_list_label":{"message":"Dil için Komut Listesi","description":"Commands List for language label"},"command_name_label":{"message":"Komutun Adı","description":"Command's Name label"},"command_description_label":{"message":"Komutun Açıklaması","description":"Command's Description label"},"command_emoji_description":{"message":"1800 emoji listesinden biraz benzer emoji eklemek için 'emoji emojisinin adını' söyleyin. ayar sayfasında emojilerin tam listesini kontrol edin","description":"command emoji desc"},"command_newline_description":{"message":"\"Yazmak için yeni satır\" deyin.","description":"command newline desc"},"command_press_enter_description":{"message":"\"Enter\" tuşuna basmak için enter tuşuna basın. Form göndermek için kullanışlıdır","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Emoji'nin Dil Listesi","description":"emoji list label"},"emoji_name_label":{"message":"Emoji'nin adı","description":"emoji name label"},"command_newline_description_new":{"message":"Yeni bir satır almak için yeni satır söyleyin.","description":"command newline desc"},"check_here_label":{"message":"Burayı kontrol et","description":"Check here label"},"imoji_list_label":{"message":"Burayı kontrol et","description":"Check here label"},"command_list_label":{"message":"Komut Listesi","description":"Command List label"},"imoji_list_label_new":{"message":"Emoji Listesi","description":"imoji list label"},"symbol_list_label":{"message":"Matematiksel Semboller listesi","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Farkındalık","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Metin kutusuna rastgele bir farkındalık düşüncesi eklemek için 'farkındalık' deyin","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Bu aracı kullanmak üzere ses izinlerine izin vermek için lütfen aşağıdaki düğmeyi tıklayın.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Not: Yanlışlıkla izin vermediyseniz, bu sekmenin arama çubuğunun sol üst köşesine tıklamalarına izin verebilirsiniz.","description":"audio permission extra info"},"allow_permission_label":{"message":"İzin ver","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Bu aracı kullanmak için lütfen İzinlere İzin Verin!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Artık bu sekmeyi kapatabilir ve bu aracı kullanarak herhangi bir web sitesine sesinizle yazı yazabilirsiniz!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Şimdi herhangi bir girişe tıklayın ve konuşun","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Mors Kodu Oluştur","description":"cmc label"},"command_enable_disable_label":{"message":"Etkinleştirme / Devre dışı","description":"enable or disable command label"},"command_arrow_label":{"message":"ok","description":"command arrow label"},"command_arrow_description":{"message":"Sol ok tuşunu yazmak için 'sol ok' deyin. olası komutlar: sol ok | sağ | yukarı | aşağı","description":"command arrow desc"},"left_label":{"message":"ayrıldı","description":"left label"},"right_label":{"message":"sağ","description":"right label"},"up_label":{"message":"yukarı","description":"up label"},"down_label":{"message":"aşağı","description":"down label"},"command_search_label":{"message":"arama","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Google.com'da kedi aramak için kedi ara veya google kedi deyin","description":"command go to label 3"},"command_bookmark_label":{"message":"yer imi","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"bu sayfayı işaretle","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"yer işaretini kaldır","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"bu yer imini kaldır","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Yer imi eklemek veya kaldırmak için 'Bu sayfayı yer imlerine ekle' veya 'yer imini kaldır' deyin","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Bu sayfayı yer imlerine ekledi!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Bu sayfa yer imlerinden kaldırıldı!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"Oyna","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"'Song_name çal' deyin, şarkıyı youtube'dan çalacaktır.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"bulmak","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"vurgulamak","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"vurguyu kaldırmak","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Geçerli sayfadaki anahtar kelimeyi vurgulamak için 'anahtar kelimeyi vurgulayın' deyin veya tam tersini yapın","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"geri alma","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"yeniden yapmak","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"hepsini geri al","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Tümünü geri almak / yinelemek / geri almak için geri al / yinele / tümünü geri al deyin.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"Sonraki","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"önceki","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Sonraki ve önceki diyerek giriş öğelerine gidin","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"yukarı kaydırmak","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"Aşağı kaydır","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Sayfayı kaydırmak için aşağı kaydır / yukarı kaydır deyin.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"git","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"ziyaret etmek","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"açık","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Facebook.com'u yeni sekmede açmak için 'facebook.com'a git' deyin. Yer imi url'sini açmak için 'yer imi_adı'na git' deyin.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"yer imi","description":"bookmark"}} diff --git a/src/app/_locales/uk/messages.json b/src/app/_locales/uk/messages.json index 6204a6d..0ce3b32 100644 --- a/src/app/_locales/uk/messages.json +++ b/src/app/_locales/uk/messages.json @@ -1 +1 @@ -{"appName":{"message":"Набір інструментів розпізнавання мови","description":"app name"},"appDescription":{"message":"Заповніть будь-яку веб-форму, використовуючи лише свій голос!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Дозволити аудіодозвіл","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"натисніть тут, щоб дозволити аудіодозвіл","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Налаштування","description":"setting tab string"},"popup_mic_listening_label":{"message":"Слухання","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Допомога","description":"help tab string"},"popup_help_heading_str":{"message":"Ми тут, щоб допомогти","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Якщо у вас виникли проблеми, повідомте про це","description":"popup help tab description"},"here":{"message":"тут","description":"word"},"popup_default_language_label_str":{"message":"Мова за замовчуванням","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Клацніть, щоб змінити мову за замовчуванням","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Клацніть тут, щоб увімкнути / вимкнути розпізнавання мови","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Відкрийте Налаштування","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Запустіть «Розпізнавання мови» під час запуску Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Змінити мову розпізнавання мови","description":"language change setting label"},"option_permission_success_msg":{"message":"Тепер ви можете закрити цю вкладку та використовувати цей інструмент для друку на будь-якому веб-сайті своїм голосом!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Будь ласка, дозвольте дозволи, щоб використовувати цей інструмент!","description":"error message when user rejects permission"},"emoji":{"message":"смайлики","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Смайли не знайдено!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Використовуйте диктовки смайлів (більше 1800 смайлів)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Шукайте найпопулярніші смайлики","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Як користуватися цим засобом?","description":"How to use this tool ? string"},"new_line_label":{"message":"новий рядок","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Клацніть, щоб побачити голосові команди","description":"voice commands control label "},"popup_show_commands_label":{"message":"Показати команди","description":"voice commands control label "},"commands_list_label":{"message":"Список команд для мови","description":"Commands List for language label"},"command_name_label":{"message":"Ім'я команди","description":"Command's Name label"},"command_description_label":{"message":"Опис команди","description":"Command's Description label"},"command_emoji_description":{"message":"Скажіть \"ім'я смайлика\", щоб вставити дещо подібні смайлики зі списку 1800 смайлів. перевірити повний список смайлів на сторінці налаштування","description":"command emoji desc"},"command_newline_description":{"message":"Скажіть новий рядок, щоб набрати '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Скажімо, натисніть клавішу Enter, щоб натиснути клавішу \"Enter\". Корисно для подання форм","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Список емодзі для мови","description":"emoji list label"},"emoji_name_label":{"message":"Ім'я емодзі","description":"emoji name label"},"command_newline_description_new":{"message":"Скажіть новий рядок, щоб отримати новий рядок.","description":"command newline desc"},"check_here_label":{"message":"Перевірте тут","description":"Check here label"},"imoji_list_label":{"message":"Перевірте тут","description":"Check here label"},"command_list_label":{"message":"Список команд","description":"Command List label"},"imoji_list_label_new":{"message":"Список смайлів","description":"imoji list label"},"symbol_list_label":{"message":"Список математичних символів","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Уважність","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Скажіть \"уважність\", щоб вставити випадкову думку про уважність у текстове поле","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Натисніть на кнопку нижче, щоб дозволити звукові дозволи, щоб використовувати цей інструмент.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Примітка. Якщо ви випадково заборонили дозволи, ви можете дозволити їм натискати верхній лівий кут рядка пошуку на цій вкладці","description":"audio permission extra info"},"allow_permission_label":{"message":"Дозволити дозвіл","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Будь ласка, дозвольте дозволи, щоб використовувати цей інструмент!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Тепер ви можете закрити цю вкладку та використовувати цей інструмент для друку на будь-якому веб-сайті своїм голосом!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Тепер клацніть на будь-який вхід і говоріть","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Створіть азбуку Морзе","description":"cmc label"},"command_enable_disable_label":{"message":"Увімкнути / Вимкнути","description":"enable or disable command label"},"command_arrow_label":{"message":"стрілка","description":"command arrow label"},"command_arrow_description":{"message":"Скажіть \"стрілка вліво\", щоб ввести клавішу зі стрілкою вліво. можливі команди: стрілка вліво | праворуч | зверху | вниз","description":"command arrow desc"},"left_label":{"message":"зліва","description":"left label"},"right_label":{"message":"правильно","description":"right label"},"up_label":{"message":"вгору","description":"up label"},"down_label":{"message":"вниз","description":"down label"},"command_go_to_label":{"message":"йти до","description":"command go to label"},"command_go_to_description":{"message":"Скажіть \"перейдіть на facebook.com, щоб відкрити нову вкладку для facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"відвідати","description":"command go to label 2"},"command_go_to_label3":{"message":"відчинено","description":"command go to label 3"},"command_search_label":{"message":"пошук","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Скажімо, шукати кота або google cat, щоб шукати кота на google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"закладки","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Додати цю сторінку в закладки","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"видалити закладку - -","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"видалити цю закладку","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Скажіть \"Додати закладку на цю сторінку\" або \"видалити закладку\", щоб додати або видалити закладку","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Додав цю сторінку до закладок!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Видалено цю сторінку із закладок!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"грати","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Скажіть \"play song_name\", він відтворить пісню з YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"знайти","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"виділити","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"непроміння","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Скажіть \"виділити ключове слово\", щоб виділити ключове слово на поточній сторінці, і навпаки","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"скасувати","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"переробити","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"скасувати все","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Скажіть скасувати / повторити / скасувати все, щоб зробити скасувати / повторити / скасувати все.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"наступний","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Попередній","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Перейдіть до елементів введення, вимовляючи наступне та попереднє","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"прокрутки вгору","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"прокрути вниз","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Скажімо, прокрутіть вниз / прокрутіть вгору, щоб прокрутити сторінку.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Набір інструментів розпізнавання мови","description":"app name"},"appDescription":{"message":"Заповніть будь-яку веб-форму, використовуючи лише свій голос!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Дозволити аудіодозвіл","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"натисніть тут, щоб дозволити аудіодозвіл","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Налаштування","description":"setting tab string"},"popup_mic_listening_label":{"message":"Слухання","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Допомога","description":"help tab string"},"popup_help_heading_str":{"message":"Ми тут, щоб допомогти","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Якщо у вас виникли проблеми, повідомте про це","description":"popup help tab description"},"here":{"message":"тут","description":"word"},"popup_default_language_label_str":{"message":"Мова за замовчуванням","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Клацніть, щоб змінити мову за замовчуванням","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Клацніть тут, щоб увімкнути / вимкнути розпізнавання мови","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Відкрийте Налаштування","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Запустіть «Розпізнавання мови» під час запуску Chrome","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Змінити мову розпізнавання мови","description":"language change setting label"},"option_permission_success_msg":{"message":"Тепер ви можете закрити цю вкладку та використовувати цей інструмент для друку на будь-якому веб-сайті своїм голосом!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Будь ласка, дозвольте дозволи, щоб використовувати цей інструмент!","description":"error message when user rejects permission"},"emoji":{"message":"смайлики","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Смайли не знайдено!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Використовуйте диктовки смайлів (більше 1800 смайлів)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Шукайте найпопулярніші смайлики","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Як користуватися цим засобом?","description":"How to use this tool ? string"},"new_line_label":{"message":"новий рядок","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Клацніть, щоб побачити голосові команди","description":"voice commands control label "},"popup_show_commands_label":{"message":"Показати команди","description":"voice commands control label "},"commands_list_label":{"message":"Список команд для мови","description":"Commands List for language label"},"command_name_label":{"message":"Ім'я команди","description":"Command's Name label"},"command_description_label":{"message":"Опис команди","description":"Command's Description label"},"command_emoji_description":{"message":"Скажіть \"ім'я смайлика\", щоб вставити дещо подібні смайлики зі списку 1800 смайлів. перевірити повний список смайлів на сторінці налаштування","description":"command emoji desc"},"command_newline_description":{"message":"Скажіть новий рядок, щоб набрати '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Скажімо, натисніть клавішу Enter, щоб натиснути клавішу \"Enter\". Корисно для подання форм","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Список емодзі для мови","description":"emoji list label"},"emoji_name_label":{"message":"Ім'я емодзі","description":"emoji name label"},"command_newline_description_new":{"message":"Скажіть новий рядок, щоб отримати новий рядок.","description":"command newline desc"},"check_here_label":{"message":"Перевірте тут","description":"Check here label"},"imoji_list_label":{"message":"Перевірте тут","description":"Check here label"},"command_list_label":{"message":"Список команд","description":"Command List label"},"imoji_list_label_new":{"message":"Список смайлів","description":"imoji list label"},"symbol_list_label":{"message":"Список математичних символів","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Уважність","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Скажіть \"уважність\", щоб вставити випадкову думку про уважність у текстове поле","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Натисніть на кнопку нижче, щоб дозволити звукові дозволи, щоб використовувати цей інструмент.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Примітка. Якщо ви випадково заборонили дозволи, ви можете дозволити їм натискати верхній лівий кут рядка пошуку на цій вкладці","description":"audio permission extra info"},"allow_permission_label":{"message":"Дозволити дозвіл","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Будь ласка, дозвольте дозволи, щоб використовувати цей інструмент!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Тепер ви можете закрити цю вкладку та використовувати цей інструмент для друку на будь-якому веб-сайті своїм голосом!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Тепер клацніть на будь-який вхід і говоріть","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Створіть азбуку Морзе","description":"cmc label"},"command_enable_disable_label":{"message":"Увімкнути / Вимкнути","description":"enable or disable command label"},"command_arrow_label":{"message":"стрілка","description":"command arrow label"},"command_arrow_description":{"message":"Скажіть \"стрілка вліво\", щоб ввести клавішу зі стрілкою вліво. можливі команди: стрілка вліво | праворуч | зверху | вниз","description":"command arrow desc"},"left_label":{"message":"зліва","description":"left label"},"right_label":{"message":"правильно","description":"right label"},"up_label":{"message":"вгору","description":"up label"},"down_label":{"message":"вниз","description":"down label"},"command_search_label":{"message":"пошук","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Скажімо, шукати кота або google cat, щоб шукати кота на google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"закладки","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"Додати цю сторінку в закладки","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"видалити закладку - -","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"видалити цю закладку","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Скажіть \"Додати закладку на цю сторінку\" або \"видалити закладку\", щоб додати або видалити закладку","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Додав цю сторінку до закладок!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Видалено цю сторінку із закладок!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"грати","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Скажіть \"play song_name\", він відтворить пісню з YouTube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"знайти","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"виділити","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"непроміння","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Скажіть \"виділити ключове слово\", щоб виділити ключове слово на поточній сторінці, і навпаки","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"скасувати","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"переробити","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"скасувати все","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Скажіть скасувати / повторити / скасувати все, щоб зробити скасувати / повторити / скасувати все.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"наступний","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Попередній","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Перейдіть до елементів введення, вимовляючи наступне та попереднє","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"прокрутки вгору","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"прокрути вниз","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Скажімо, прокрутіть вниз / прокрутіть вгору, щоб прокрутити сторінку.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"йти до","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"відвідати","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"відчинено","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Скажіть \"перейти на facebook.com\", щоб відкрити facebook.com у новій вкладці. Скажіть \"перейти до закладки bookmark_name\", щоб відкрити URL-адресу закладки.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"закладки","description":"bookmark"}} diff --git a/src/app/_locales/vi/messages.json b/src/app/_locales/vi/messages.json index 77262f9..34a73a6 100644 --- a/src/app/_locales/vi/messages.json +++ b/src/app/_locales/vi/messages.json @@ -1 +1 @@ -{"appName":{"message":"Bộ công cụ nhận dạng giọng nói","description":"app name"},"appDescription":{"message":"Điền vào bất kỳ biểu mẫu web nào bằng cách chỉ sử dụng giọng nói của bạn!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Cho phép quyền âm thanh","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"bấm vào đây để Cho phép Quyền âm thanh","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Cài đặt","description":"setting tab string"},"popup_mic_listening_label":{"message":"Lắng nghe","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Cứu giúp","description":"help tab string"},"popup_help_heading_str":{"message":"Chúng tôi ở đây để giúp đỡ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Nếu bạn gặp bất kỳ vấn đề nào, vui lòng báo cáo nó","description":"popup help tab description"},"here":{"message":"đây","description":"word"},"popup_default_language_label_str":{"message":"Ngôn ngữ mặc định","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Nhấp để thay đổi ngôn ngữ mặc định","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Nhấp vào đây để bật / tắt tính năng Nhận dạng giọng nói","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Mở cài đặt","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Bắt đầu 'Nhận dạng giọng nói' khi Chrome khởi động","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Thay đổi ngôn ngữ nhận dạng giọng nói","description":"language change setting label"},"option_permission_success_msg":{"message":"Bây giờ bạn có thể đóng tab này và sử dụng công cụ này để gõ vào bất kỳ trang web nào bằng giọng nói của bạn!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Vui lòng cho phép Quyền để sử dụng công cụ này!","description":"error message when user rejects permission"},"emoji":{"message":"biểu tượng cảm xúc","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Không tìm thấy biểu tượng cảm xúc!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Sử dụng chính tả biểu tượng cảm xúc (hơn 1800 biểu tượng cảm xúc)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Tìm kiếm biểu tượng cảm xúc có âm thanh gần nhất","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Làm thế nào để sử dụng công cụ này?","description":"How to use this tool ? string"},"new_line_label":{"message":"dòng mới","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Nhấp để xem lệnh thoại","description":"voice commands control label "},"popup_show_commands_label":{"message":"Hiển thị lệnh","description":"voice commands control label "},"commands_list_label":{"message":"Danh sách lệnh cho ngôn ngữ","description":"Commands List for language label"},"command_name_label":{"message":"Tên lệnh","description":"Command's Name label"},"command_description_label":{"message":"Mô tả của Lệnh","description":"Command's Description label"},"command_emoji_description":{"message":"Nói 'tên biểu tượng cảm xúc biểu tượng cảm xúc' để chèn biểu tượng cảm xúc tương tự từ danh sách 1800 biểu tượng cảm xúc. kiểm tra danh sách đầy đủ các biểu tượng cảm xúc trong trang cài đặt","description":"command emoji desc"},"command_newline_description":{"message":"Nói dòng mới để nhập '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Nói nhấn enter để nhấn phím 'Enter'. Hữu ích cho việc gửi biểu mẫu","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Danh sách biểu tượng cảm xúc cho ngôn ngữ","description":"emoji list label"},"emoji_name_label":{"message":"Tên biểu tượng cảm xúc","description":"emoji name label"},"command_newline_description_new":{"message":"Nói dòng mới để nhận dòng mới.","description":"command newline desc"},"check_here_label":{"message":"Kiểm tra tại đây","description":"Check here label"},"imoji_list_label":{"message":"Kiểm tra tại đây","description":"Check here label"},"command_list_label":{"message":"Danh sách lệnh","description":"Command List label"},"imoji_list_label_new":{"message":"Danh sách biểu tượng cảm xúc","description":"imoji list label"},"symbol_list_label":{"message":"Danh sách các ký hiệu toán học","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Sự quan tâm","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Nói 'chánh niệm' để chèn một ý nghĩ chánh niệm ngẫu nhiên vào hộp văn bản","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Vui lòng nhấp vào nút bên dưới để cho phép quyền âm thanh để sử dụng công cụ này.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Lưu ý: Nếu bạn vô tình không cho phép các quyền, thì bạn có thể cho phép chúng bằng cách nhấp vào góc trên cùng bên trái của thanh tìm kiếm của tab này","description":"audio permission extra info"},"allow_permission_label":{"message":"Cho phép quyền","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Vui lòng Cho phép Quyền để sử dụng công cụ này!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Bây giờ bạn có thể đóng tab này và sử dụng công cụ này để gõ vào bất kỳ trang web nào bằng giọng nói của bạn!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Bây giờ hãy nhấp vào bất kỳ đầu vào nào và nói","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Tạo mã Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Cho phép vô hiệu hóa","description":"enable or disable command label"},"command_arrow_label":{"message":"mũi tên","description":"command arrow label"},"command_arrow_description":{"message":"Nói 'mũi tên trái' để nhập phím mũi tên trái. lệnh có thể: mũi tên trái | đúng | đầu trang | xuống","description":"command arrow desc"},"left_label":{"message":"trái","description":"left label"},"right_label":{"message":"đúng","description":"right label"},"up_label":{"message":"lên","description":"up label"},"down_label":{"message":"xuống","description":"down label"},"command_go_to_label":{"message":"đi đến","description":"command go to label"},"command_go_to_description":{"message":"Nói 'go to facebook.com để mở tab mới cho facebook.com","description":"command go to description"},"command_go_to_label2":{"message":"chuyến thăm","description":"command go to label 2"},"command_go_to_label3":{"message":"mở","description":"command go to label 3"},"command_search_label":{"message":"Tìm kiếm","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Nói tìm kiếm mèo hoặc mèo google để tìm kiếm mèo trên google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"dấu trang","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"đánh dấu trang này","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"xóa dấu trang","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"xóa dấu trang này","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Nói 'Đánh dấu trang này' hoặc 'xóa dấu trang' để thêm hoặc xóa dấu trang","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Đã thêm trang này vào dấu trang!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Đã xóa trang này khỏi dấu trang!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"chơi","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Nói 'play song_name', nó sẽ phát bài hát từ youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"tìm thấy","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Điểm nổi bật","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"không có ánh sáng","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Nói 'từ khóa đánh dấu' để đánh dấu từ khóa trên trang hiện tại và ngược lại","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Hoàn tác","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"làm lại","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"hoàn tác tất cả","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Nói hoàn tác / làm lại / hoàn tác tất cả để hoàn tác / làm lại / hoàn tác tất cả.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"kế tiếp","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Trước","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Điều hướng đến các phần tử đầu vào bằng cách nói tiếp theo và trước đó","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"cuộn lên","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"cuộn xuống","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Nói cuộn xuống / cuộn lên để cuộn trang.","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"Bộ công cụ nhận dạng giọng nói","description":"app name"},"appDescription":{"message":"Điền vào bất kỳ biểu mẫu web nào bằng cách chỉ sử dụng giọng nói của bạn!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"Cho phép quyền âm thanh","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"bấm vào đây để Cho phép Quyền âm thanh","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"Cài đặt","description":"setting tab string"},"popup_mic_listening_label":{"message":"Lắng nghe","description":"label when mic is listening"},"popup_help_tab_str":{"message":"Cứu giúp","description":"help tab string"},"popup_help_heading_str":{"message":"Chúng tôi ở đây để giúp đỡ","description":"popup help tab heading"},"popup_help_desc_str":{"message":"Nếu bạn gặp bất kỳ vấn đề nào, vui lòng báo cáo nó","description":"popup help tab description"},"here":{"message":"đây","description":"word"},"popup_default_language_label_str":{"message":"Ngôn ngữ mặc định","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"Nhấp để thay đổi ngôn ngữ mặc định","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"Nhấp vào đây để bật / tắt tính năng Nhận dạng giọng nói","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"Mở cài đặt","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Bắt đầu 'Nhận dạng giọng nói' khi Chrome khởi động","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"Thay đổi ngôn ngữ nhận dạng giọng nói","description":"language change setting label"},"option_permission_success_msg":{"message":"Bây giờ bạn có thể đóng tab này và sử dụng công cụ này để gõ vào bất kỳ trang web nào bằng giọng nói của bạn!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"Vui lòng cho phép Quyền để sử dụng công cụ này!","description":"error message when user rejects permission"},"emoji":{"message":"biểu tượng cảm xúc","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"Không tìm thấy biểu tượng cảm xúc!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"Sử dụng chính tả biểu tượng cảm xúc (hơn 1800 biểu tượng cảm xúc)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"Tìm kiếm biểu tượng cảm xúc có âm thanh gần nhất","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"Làm thế nào để sử dụng công cụ này?","description":"How to use this tool ? string"},"new_line_label":{"message":"dòng mới","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"Nhấp để xem lệnh thoại","description":"voice commands control label "},"popup_show_commands_label":{"message":"Hiển thị lệnh","description":"voice commands control label "},"commands_list_label":{"message":"Danh sách lệnh cho ngôn ngữ","description":"Commands List for language label"},"command_name_label":{"message":"Tên lệnh","description":"Command's Name label"},"command_description_label":{"message":"Mô tả của Lệnh","description":"Command's Description label"},"command_emoji_description":{"message":"Nói 'tên biểu tượng cảm xúc biểu tượng cảm xúc' để chèn biểu tượng cảm xúc tương tự từ danh sách 1800 biểu tượng cảm xúc. kiểm tra danh sách đầy đủ các biểu tượng cảm xúc trong trang cài đặt","description":"command emoji desc"},"command_newline_description":{"message":"Nói dòng mới để nhập '.'","description":"command newline desc"},"command_press_enter_description":{"message":"Nói nhấn enter để nhấn phím 'Enter'. Hữu ích cho việc gửi biểu mẫu","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"Danh sách biểu tượng cảm xúc cho ngôn ngữ","description":"emoji list label"},"emoji_name_label":{"message":"Tên biểu tượng cảm xúc","description":"emoji name label"},"command_newline_description_new":{"message":"Nói dòng mới để nhận dòng mới.","description":"command newline desc"},"check_here_label":{"message":"Kiểm tra tại đây","description":"Check here label"},"imoji_list_label":{"message":"Kiểm tra tại đây","description":"Check here label"},"command_list_label":{"message":"Danh sách lệnh","description":"Command List label"},"imoji_list_label_new":{"message":"Danh sách biểu tượng cảm xúc","description":"imoji list label"},"symbol_list_label":{"message":"Danh sách các ký hiệu toán học","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"Sự quan tâm","description":"Mindfulness command"},"command_mindfulness_description":{"message":"Nói 'chánh niệm' để chèn một ý nghĩ chánh niệm ngẫu nhiên vào hộp văn bản","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"Vui lòng nhấp vào nút bên dưới để cho phép quyền âm thanh để sử dụng công cụ này.","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"Lưu ý: Nếu bạn vô tình không cho phép các quyền, thì bạn có thể cho phép chúng bằng cách nhấp vào góc trên cùng bên trái của thanh tìm kiếm của tab này","description":"audio permission extra info"},"allow_permission_label":{"message":"Cho phép quyền","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"Vui lòng Cho phép Quyền để sử dụng công cụ này!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"Bây giờ bạn có thể đóng tab này và sử dụng công cụ này để gõ vào bất kỳ trang web nào bằng giọng nói của bạn!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"* Bây giờ hãy nhấp vào bất kỳ đầu vào nào và nói","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"Tạo mã Morse","description":"cmc label"},"command_enable_disable_label":{"message":"Cho phép vô hiệu hóa","description":"enable or disable command label"},"command_arrow_label":{"message":"mũi tên","description":"command arrow label"},"command_arrow_description":{"message":"Nói 'mũi tên trái' để nhập phím mũi tên trái. lệnh có thể: mũi tên trái | đúng | đầu trang | xuống","description":"command arrow desc"},"left_label":{"message":"trái","description":"left label"},"right_label":{"message":"đúng","description":"right label"},"up_label":{"message":"lên","description":"up label"},"down_label":{"message":"xuống","description":"down label"},"command_search_label":{"message":"Tìm kiếm","description":"command search label"},"command_search_label2":{"message":"Google","description":"command go to label 2"},"command_search_description":{"message":"Nói tìm kiếm mèo hoặc mèo google để tìm kiếm mèo trên google.com","description":"command go to label 3"},"command_bookmark_label":{"message":"dấu trang","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"đánh dấu trang này","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"xóa dấu trang","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"xóa dấu trang này","description":"command bookmark label 4"},"command_bookmark_description":{"message":"Nói 'Đánh dấu trang này' hoặc 'xóa dấu trang' để thêm hoặc xóa dấu trang","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"Đã thêm trang này vào dấu trang!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"Đã xóa trang này khỏi dấu trang!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"chơi","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"Nói 'play song_name', nó sẽ phát bài hát từ youtube.","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"tìm thấy","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"Điểm nổi bật","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"không có ánh sáng","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"Nói 'từ khóa đánh dấu' để đánh dấu từ khóa trên trang hiện tại và ngược lại","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"Hoàn tác","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"làm lại","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"hoàn tác tất cả","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"Nói hoàn tác / làm lại / hoàn tác tất cả để hoàn tác / làm lại / hoàn tác tất cả.","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"kế tiếp","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"Trước","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"Điều hướng đến các phần tử đầu vào bằng cách nói tiếp theo và trước đó","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"cuộn lên","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"cuộn xuống","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"Nói cuộn xuống / cuộn lên để cuộn trang.","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"đi đến","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"chuyến thăm","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"mở","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"Nói 'go to facebook.com' để mở facebook.com trong tab mới. Nói 'go to bookmark bookmark_name' để mở url bookmark.","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"dấu trang","description":"bookmark"}} diff --git a/src/app/_locales/zh/messages.json b/src/app/_locales/zh/messages.json index f73cd86..b7588c2 100644 --- a/src/app/_locales/zh/messages.json +++ b/src/app/_locales/zh/messages.json @@ -1 +1 @@ -{"appName":{"message":"语音识别工具包","description":"app name"},"appDescription":{"message":"仅使用您的声音填写任何网络表格!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"允许音频权限","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"单击此处以允许音频权限","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"设定值","description":"setting tab string"},"popup_mic_listening_label":{"message":"倾听","description":"label when mic is listening"},"popup_help_tab_str":{"message":"帮帮我","description":"help tab string"},"popup_help_heading_str":{"message":"我们在这里为您提供帮助","description":"popup help tab heading"},"popup_help_desc_str":{"message":"如果您遇到任何问题,请报告","description":"popup help tab description"},"here":{"message":"这里","description":"word"},"popup_default_language_label_str":{"message":"预设语言","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"点击更改默认语言","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"单击此处打开/关闭语音识别","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"打开设置","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome启动时启动“语音识别”","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"更改语音识别语言","description":"language change setting label"},"option_permission_success_msg":{"message":"现在,您可以关闭此选项卡,并使用此工具在您的声音中输入任何网站!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"请允许权限才能使用此工具!","description":"error message when user rejects permission"},"emoji":{"message":"表情符号","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"找不到表情符号!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"使用表情符号听写(超过1800个表情符号)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"搜索最接近的表情符号","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"如何使用这个工具?","description":"How to use this tool ? string"},"new_line_label":{"message":"新队","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"点击查看语音命令","description":"voice commands control label "},"popup_show_commands_label":{"message":"显示命令","description":"voice commands control label "},"commands_list_label":{"message":"语言命令列表","description":"Commands List for language label"},"command_name_label":{"message":"指令名称","description":"Command's Name label"},"command_description_label":{"message":"命令说明","description":"Command's Description label"},"command_emoji_description":{"message":"说出“表情符号表情符号的名称”,即可插入1800个表情符号列表中类似的表情符号。在设置页面中查看表情符号的完整列表","description":"command emoji desc"},"command_newline_description":{"message":"说新行以输入“。”。","description":"command newline desc"},"command_press_enter_description":{"message":"说按Enter键,然后按“ Enter”键。对提交表格很有用","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"表情符号语言列表","description":"emoji list label"},"emoji_name_label":{"message":"表情符号的名字","description":"emoji name label"},"command_newline_description_new":{"message":"说新线以获得新线。","description":"command newline desc"},"check_here_label":{"message":"在这里检查","description":"Check here label"},"imoji_list_label":{"message":"在这里检查","description":"Check here label"},"command_list_label":{"message":"命令清单","description":"Command List label"},"imoji_list_label_new":{"message":"表情符号列表","description":"imoji list label"},"symbol_list_label":{"message":"数学符号列表","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"正念","description":"Mindfulness command"},"command_mindfulness_description":{"message":"说“正念”,在文本框中插入一个随机的正念思想","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"请单击下面的按钮以允许音频权限才能使用此工具。","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"注意:如果您意外地禁用了权限,则可以允许他们单击此选项卡搜索栏的左上角","description":"audio permission extra info"},"allow_permission_label":{"message":"允许权限","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"请允许权限才能使用此工具!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"现在,您可以关闭此选项卡,并使用此工具在您的声音中输入任何网站!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"*现在单击任何输入并讲话","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"创建摩尔斯电码","description":"cmc label"},"command_enable_disable_label":{"message":"启用/禁用","description":"enable or disable command label"},"command_arrow_label":{"message":"箭","description":"command arrow label"},"command_arrow_description":{"message":"说“向左箭头”以输入向左箭头键。可能的命令:向左箭头|对|顶部|下","description":"command arrow desc"},"left_label":{"message":"剩下","description":"left label"},"right_label":{"message":"正确的","description":"right label"},"up_label":{"message":"向上","description":"up label"},"down_label":{"message":"下","description":"down label"},"command_go_to_label":{"message":"去","description":"command go to label"},"command_go_to_description":{"message":"说“转到facebook.com”以打开facebook.com的新标签页","description":"command go to description"},"command_go_to_label2":{"message":"访问","description":"command go to label 2"},"command_go_to_label3":{"message":"打开","description":"command go to label 3"},"command_search_label":{"message":"搜索","description":"command search label"},"command_search_label2":{"message":"谷歌","description":"command go to label 2"},"command_search_description":{"message":"说出搜寻猫或Google猫在google.com上搜寻猫","description":"command go to label 3"},"command_bookmark_label":{"message":"书签","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"收藏此页","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"删除书签","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"删除此书签","description":"command bookmark label 4"},"command_bookmark_description":{"message":"说“为此页面添加书签”或“删除书签”以添加或删除书签","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"将此页面添加到书签!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"从书签中删除了此页面!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"玩","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"说“播放song_name”,它将播放youtube中的歌曲。","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"找","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"强调","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"取消突出显示","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"说“突出显示关键字”以突出显示当前页面上的关键字,反之亦然","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"撤消","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"重做","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"全部撤消","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"说撤消/重做/全部撤消即可执行撤消/重做/全部撤消。","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"下一个","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"以前的","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"通过说下一个和上一个导航到输入元素","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"向上滑动","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"向下滚动","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"说向下滚动/向上滚动以滚动页面。","description":"command Say scroll down/ scroll up to scroll the page. alias"}} +{"appName":{"message":"语音识别工具包","description":"app name"},"appDescription":{"message":"仅使用您的声音填写任何网络表格!","description":"app short description"},"popup_allow_permission_btn_str":{"message":"允许音频权限","description":"String on the button on popup page that allows user to navigate to permissions page"},"popup_allow_permission_btn_tooltip_str":{"message":"单击此处以允许音频权限","description":"allow permission button tooltip string"},"popup_settings_tab_str":{"message":"设定值","description":"setting tab string"},"popup_mic_listening_label":{"message":"倾听","description":"label when mic is listening"},"popup_help_tab_str":{"message":"帮帮我","description":"help tab string"},"popup_help_heading_str":{"message":"我们在这里为您提供帮助","description":"popup help tab heading"},"popup_help_desc_str":{"message":"如果您遇到任何问题,请报告","description":"popup help tab description"},"here":{"message":"这里","description":"word"},"popup_default_language_label_str":{"message":"预设语言","description":"label for default language on popup"},"popup_default_language_tooltip_str":{"message":"点击更改默认语言","description":"popup page default language tooltip"},"popup_mic_btn_tooltip_str":{"message":"单击此处打开/关闭语音识别","description":"mic button tooltip on popup page"},"popup_gear_btn_tooltip_str":{"message":"打开设置","description":"popup page gear button tooltip"},"option_onstart_setting_str":{"message":"Chrome启动时启动“语音识别”","description":"onstart setting label"},"option_default_lang_change_setting_str":{"message":"更改语音识别语言","description":"language change setting label"},"option_permission_success_msg":{"message":"现在,您可以关闭此选项卡,并使用此工具在您的声音中输入任何网站!","description":"success message when user accepts permission"},"option_permission_error_msg":{"message":"请允许权限才能使用此工具!","description":"error message when user rejects permission"},"emoji":{"message":"表情符号","description":"phrase for invoking emoji script"},"emoji_not_found":{"message":"找不到表情符号!","description":"message to when emoji is not found."},"option_emoji_setting_str":{"message":"使用表情符号听写(超过1800个表情符号)","description":"emoji setting label on option page"},"option_emoji_closest_matching_setting_str":{"message":"搜索最接近的表情符号","description":"closest sounding emoji setting."},"popup_help_how_to_use_str":{"message":"如何使用这个工具?","description":"How to use this tool ? string"},"new_line_label":{"message":"新队","description":"new line (.) label"},"popup_show_commands_tooltip_str":{"message":"点击查看语音命令","description":"voice commands control label "},"popup_show_commands_label":{"message":"显示命令","description":"voice commands control label "},"commands_list_label":{"message":"语言命令列表","description":"Commands List for language label"},"command_name_label":{"message":"指令名称","description":"Command's Name label"},"command_description_label":{"message":"命令说明","description":"Command's Description label"},"command_emoji_description":{"message":"说出“表情符号表情符号的名称”,即可插入1800个表情符号列表中类似的表情符号。在设置页面中查看表情符号的完整列表","description":"command emoji desc"},"command_newline_description":{"message":"说新行以输入“。”。","description":"command newline desc"},"command_press_enter_description":{"message":"说按Enter键,然后按“ Enter”键。对提交表格很有用","description":"command press_enter desc"},"emoji_list_for_lang_label":{"message":"表情符号语言列表","description":"emoji list label"},"emoji_name_label":{"message":"表情符号的名字","description":"emoji name label"},"command_newline_description_new":{"message":"说新线以获得新线。","description":"command newline desc"},"check_here_label":{"message":"在这里检查","description":"Check here label"},"imoji_list_label":{"message":"在这里检查","description":"Check here label"},"command_list_label":{"message":"命令清单","description":"Command List label"},"imoji_list_label_new":{"message":"表情符号列表","description":"imoji list label"},"symbol_list_label":{"message":"数学符号列表","description":"Mathematical Symbols list label"},"mindfulness_label":{"message":"正念","description":"Mindfulness command"},"command_mindfulness_description":{"message":"说“正念”,在文本框中插入一个随机的正念思想","description":"command mindfulness desc"},"audio_permission_todo_label":{"message":"请单击下面的按钮以允许音频权限才能使用此工具。","description":"audio permission page instruction content"},"audio_permission_notice_info":{"message":"注意:如果您意外地禁用了权限,则可以允许他们单击此选项卡搜索栏的左上角","description":"audio permission extra info"},"allow_permission_label":{"message":"允许权限","description":"Allow audio permission label"},"audio_permission_error_msg":{"message":"请允许权限才能使用此工具!","description":"audio permission error message"},"audio_permission_success_msg":{"message":"现在,您可以关闭此选项卡,并使用此工具在您的声音中输入任何网站!","description":"audio permission success message"},"popup_mic_listening_note":{"message":"*现在单击任何输入并讲话","description":"note to user when mic starts listening"},"create_mcode_label":{"message":"创建摩尔斯电码","description":"cmc label"},"command_enable_disable_label":{"message":"启用/禁用","description":"enable or disable command label"},"command_arrow_label":{"message":"箭","description":"command arrow label"},"command_arrow_description":{"message":"说“向左箭头”以输入向左箭头键。可能的命令:向左箭头|对|顶部|下","description":"command arrow desc"},"left_label":{"message":"剩下","description":"left label"},"right_label":{"message":"正确的","description":"right label"},"up_label":{"message":"向上","description":"up label"},"down_label":{"message":"下","description":"down label"},"command_search_label":{"message":"搜索","description":"command search label"},"command_search_label2":{"message":"谷歌","description":"command go to label 2"},"command_search_description":{"message":"说出搜寻猫或Google猫在google.com上搜寻猫","description":"command go to label 3"},"command_bookmark_label":{"message":"书签","description":"command bookmark label"},"command_bookmark_label_bookmark_this_page":{"message":"收藏此页","description":"command bookmark label 2"},"command_bookmark_label_remove_bookmark":{"message":"删除书签","description":"command bookmark label 3"},"command_bookmark_label__remove_this_bookmark":{"message":"删除此书签","description":"command bookmark label 4"},"command_bookmark_description":{"message":"说“为此页面添加书签”或“删除书签”以添加或删除书签","description":"command bookmark desc"},"command_bookmark_add_callback_label":{"message":"将此页面添加到书签!","description":"command bookmark add callback"},"command_bookmark_remove_callback_label":{"message":"从书签中删除了此页面!","description":"command bookmark remove callback"},"7044C9F2_FD3B_29AC_E1E4_7D0B18CA93B9":{"message":"玩","description":"command play alias"},"05B91A69_8814_3B81_1332_6F72A3862DE3":{"message":"说“播放song_name”,它将播放youtube中的歌曲。","description":"command Say 'play song_name', it will play the song from youtube. alias"},"DB8D43DB_E16D_B358_B6B1_D9B232BC693A":{"message":"找","description":"command find alias"},"72A35434_E102_6F83_1013_BE40DB1DCC3D":{"message":"强调","description":"command highlight alias"},"E811504D_2032_556A_7FAE_DE6BB6E28DAB":{"message":"取消突出显示","description":"command unhighlight alias"},"166739BA_DD4A_0FAC_8635_877B90A755FC":{"message":"说“突出显示关键字”以突出显示当前页面上的关键字,反之亦然","description":"command Say 'highlight keyword' to highlight the keyword on current page and vice-verca alias"},"F95EEFFE_A9EC_A42B_ED51_3B5947C00947":{"message":"撤消","description":"command undo alias"},"72997E36_0DC6_71D1_8336_47562155ED79":{"message":"重做","description":"command redo alias"},"56287642_9B4E_5616_ACCF_1B0E03F6A2EB":{"message":"全部撤消","description":"command undo all alias"},"F16BC2BB_AD3E_749E_683B_560DF6F914E5":{"message":"说撤消/重做/全部撤消即可执行撤消/重做/全部撤消。","description":"command Say undo/redo/undo all to do undo/redo/undo all. alias"},"2316EF3E_4A28_D331_8160_BB9B0678008D":{"message":"下一个","description":"command next alias"},"4B3ABD84_BEA9_77F6_9833_2B73DAEAE87E":{"message":"以前的","description":"command previous alias"},"837C899B_2695_0944_4AB9_3F18657DAF86":{"message":"通过说下一个和上一个导航到输入元素","description":"command Navigate to input elements by saying next and previous alias"},"3B274849_89C8_2A34_4D00_67E924C3F3D7":{"message":"向上滑动","description":"command scroll up alias"},"32D6B609_F840_7BBE_60A9_A5A8CF06EBF6":{"message":"向下滚动","description":"command scroll down alias"},"7025F41F_A247_2606_5EEF_EF009D666B11":{"message":"说向下滚动/向上滚动以滚动页面。","description":"command Say scroll down/ scroll up to scroll the page. alias"},"397795DD_FAE6_7240_5F33_9CD70BB4CB60":{"message":"去","description":"command go to alias"},"1387F5BE_4725_EF5C_41CF_E3953ED349B3":{"message":"访问","description":"command visit alias"},"D4FC52CF_441B_0D7C_6DCF_631CDB617102":{"message":"打开","description":"command open alias"},"271F0428_E067_4BEB_90D6_8117EF8E7E29":{"message":"说“转到facebook.com”以在新标签页中打开facebook.com。说“转到书签bookmark_name”以打开书签URL。","description":"command Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. alias"},"bookmark_label":{"message":"书签","description":"bookmark"}} diff --git a/src/services/chromeService.js b/src/services/chromeService.js index 6b8b354..6a691d8 100644 --- a/src/services/chromeService.js +++ b/src/services/chromeService.js @@ -363,6 +363,7 @@ class ChromeApi { *@memberOf ChromeApi * */ bookmark = { + search: chrome.bookmarks.search, create: async () => { const activeTab = await this.tryGetActiveTab(); if (activeTab) { diff --git a/src/services/commands/_registry.js b/src/services/commands/_registry.js index 89937d5..16e5a6b 100644 --- a/src/services/commands/_registry.js +++ b/src/services/commands/_registry.js @@ -11,11 +11,11 @@ export { default as calculateCommand } from "./calculate"; export { default as mathSymbolCommand } from "./math_symbol"; export { default as mindfulnessCommand } from "./mindfulness"; export { default as arrowCommand } from "./arrow"; -export { default as goToCommand } from "./go_to"; export { default as remindMeCommand } from "./remind_me"; export { default as searchGoogleCommand } from "./search"; export { default as bookmarkCommand } from "./bookmark"; export { default as findCommand } from "./find"; export { default as undo_redoCommand } from "./undo_redo"; export { default as tab_navigationCommand } from "./tab_navigation"; -export { default as scrollCommand } from "./scroll"; \ No newline at end of file +export { default as scrollCommand } from "./scroll"; +export { default as gotoCommand } from "./goto"; diff --git a/src/services/commands/go_to.js b/src/services/commands/go_to.js deleted file mode 100644 index 96ded95..0000000 --- a/src/services/commands/go_to.js +++ /dev/null @@ -1,46 +0,0 @@ -/* eslint-disable no-unused-vars */ -import translationService from "../translationService"; -import WebsiteNames from "../popular_websites_files/en"; -import chromeService from "../chromeService"; -import { validURL } from "../helper"; -export default async langId => { - const commandAlias = await translationService.getMessage( - langId, - "command_go_to_label" - ); // go to - const commandAlias2 = await translationService.getMessage( - langId, - "command_go_to_label2" - ); // visit - const commandAlias3 = await translationService.getMessage( - langId, - "command_go_to_label3" - ); // open - const description = await translationService.getMessage( - langId, - "command_go_to_description" - ); - return { - id: "59A7532E-805F-8882-A6F1-6BF822E96612", - type: "backend", - name: commandAlias, - description: description, - condition: "startsWith", - match: [commandAlias, commandAlias2, commandAlias3], - exec: async (text, options, callback) => { - let url; - if (text == 'new tab') { - url = 'about:newtab/'; - } - else if (validURL(text)) { - url = `https://${text}`; - } else { - url = WebsiteNames[text] - ? `https://${WebsiteNames[text]}` - : `https://www.google.com/search?q=${text}`; - } - chromeService.openUrl(url); - callback(); - } - }; -}; diff --git a/src/services/commands/goto.js b/src/services/commands/goto.js new file mode 100644 index 0000000..9fbfd5c --- /dev/null +++ b/src/services/commands/goto.js @@ -0,0 +1,69 @@ +/* eslint-disable no-unused-vars,no-console */ +import translationService from "../translationService"; +import WebsiteNames from "../popular_websites_files/en"; +import chromeService from "../chromeService"; +import { validURL } from "../helper"; +export default async langId => { + const alias0 = await translationService.getMessage( + langId, + "397795DD_FAE6_7240_5F33_9CD70BB4CB60" + ); // go to + + const alias1 = await translationService.getMessage( + langId, + "1387F5BE_4725_EF5C_41CF_E3953ED349B3" + ); // visit + + const alias2 = await translationService.getMessage( + langId, + "D4FC52CF_441B_0D7C_6DCF_631CDB617102" + ); // open + + const description = await translationService.getMessage( + langId, + "271F0428_E067_4BEB_90D6_8117EF8E7E29" + ); // Say 'go to facebook.com' to open facebook.com in new tab. Say 'go to bookmark bookmark_name' to open bookmark url. + + const bookmarkLabel = await translationService.getMessage( + langId, + "bookmark_label" + ); // bookmark + return { + id: "84EDED19_4A31_A778_5C2C_BFBF8F5D3FA1", + type: "backend", + name: "84EDED19_4A31_A778_5C2C_BFBF8F5D3FA1", + description: description, + condition: "startsWith", + match: [alias0, alias1, alias2], + exec: async (text, options, callback) => { + // write your logic here. + let url; + if (text.startsWith(bookmarkLabel)) { + // search in bookmarks to find a match + const bookmarkSearchTerm = text.replace(bookmarkLabel, ""); + chromeService.bookmark.search(bookmarkSearchTerm, results => { + let firstUrl; + for (let res of results) { + if (res['url']) { + firstUrl = res.url; + break; + } + } + if (firstUrl) { + chromeService.openUrl(firstUrl); + } + }); + } else if (text == "new tab") { + url = "about:newtab/"; + } else if (validURL(text)) { + url = `https://${text}`; + } else { + url = WebsiteNames[text] + ? `https://${WebsiteNames[text]}` + : `https://www.google.com/search?q=${text}`; + } + chromeService.openUrl(url); + callback(); + } + }; +};