From 3f8300dc6fd3df27ae10e7f57495c6a3cdced2c5 Mon Sep 17 00:00:00 2001 From: Bossiara13 <236771060+DmitryBykov-ISPO@users.noreply.github.com> Date: Sat, 16 May 2026 13:38:12 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20CI=20workflows=20+=20drop=20Ukrainian?= =?UTF-8?q?=20(UA=20=E2=86=92=20just=20RU/EN)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI (.github/workflows/ci.yml): - Three parallel jobs on push & PR: cargo test (jarvis-core), cargo clippy (lint, warnings-as-errors), cargo check (workspace). Windows runner, stable toolchain, rust-cache for fast incremental builds. - Deliberately skips release build of jarvis-gui — that needs Node+npm +Tauri bundler and would balloon CI to ~10min per push. Drop Ukrainian: - Delete ua.ftl, remove UA from SUPPORTED_LANGUAGES. - config.rs: prune UA arms from get_wake_phrases / get_wake_grammar / get_phrases_to_remove / get_llm_trigger_phrases / get_llm_system_prompt. - stt/vosk.rs: drop UA → uk language mapping. - tray menu: drop "Українська" entry. - frontend: drop UA from Header.svelte language list, settings page language map, i18n.ts fallback. - 82 command.toml files stripped of every `ua = [...]` block (205 blocks total). Handled via subagent — TOML still parses, all 6 command tests pass. .gitignore: stop tracking dev.env / dll_probe*.py / imports_full.txt which were sitting in working tree. Tests: 128 pass (no regression). Workspace still compiles end-to-end. --- .github/workflows/ci.yml | 67 +++++++ .gitignore | 6 + crates/jarvis-app/src/tray/menu.rs | 1 - crates/jarvis-core/src/config.rs | 13 +- crates/jarvis-core/src/i18n.rs | 21 +-- crates/jarvis-core/src/i18n/locales/ua.ftl | 166 ------------------ crates/jarvis-core/src/stt/vosk.rs | 1 - frontend/src/components/Header.svelte | 1 - frontend/src/lib/i18n.ts | 2 +- frontend/src/routes/settings/index.svelte | 1 - resources/commands/apps/command.toml | 39 ---- resources/commands/backup/command.toml | 1 - resources/commands/brightness/command.toml | 4 - resources/commands/clip_history/command.toml | 3 - .../commands/clipboard_read/command.toml | 1 - resources/commands/codebase_qa/command.toml | 3 - resources/commands/codegen/command.toml | 5 - resources/commands/crypto/command.toml | 4 - resources/commands/currency/command.toml | 9 - .../commands/daily_briefing/command.toml | 3 - resources/commands/daily_quote/command.toml | 1 - resources/commands/date_math/command.toml | 2 - resources/commands/date_query/command.toml | 3 - resources/commands/diagnostics/command.toml | 1 - resources/commands/dice/command.toml | 3 - resources/commands/disk/command.toml | 2 - resources/commands/echo/command.toml | 2 - resources/commands/file_search/command.toml | 5 - resources/commands/fun/command.toml | 4 - resources/commands/games/command.toml | 5 - resources/commands/generators/command.toml | 3 - resources/commands/github_issues/command.toml | 2 - resources/commands/github_pr/command.toml | 8 - resources/commands/habit_nudge/command.toml | 4 - resources/commands/habit_streaks/command.toml | 2 - resources/commands/help/command.toml | 6 - resources/commands/ics_event/command.toml | 1 - .../commands/interesting_fact/command.toml | 2 - resources/commands/intro/command.toml | 3 - resources/commands/llm_context/command.toml | 2 - resources/commands/llm_switch/command.toml | 3 - resources/commands/macros/command.toml | 6 - resources/commands/magic_8ball/command.toml | 1 - resources/commands/mailto/command.toml | 1 - resources/commands/math/command.toml | 5 - resources/commands/media/command.toml | 18 -- resources/commands/media_keys/command.toml | 4 - resources/commands/memory_pack/command.toml | 4 - resources/commands/mood_log/command.toml | 2 - resources/commands/mouse/command.toml | 5 - resources/commands/net_info/command.toml | 3 - resources/commands/network/command.toml | 3 - resources/commands/news/command.toml | 5 - resources/commands/notes/command.toml | 2 - resources/commands/notif_queue/command.toml | 2 - resources/commands/now_playing/command.toml | 1 - resources/commands/ocr/command.toml | 5 - resources/commands/output_device/command.toml | 10 -- .../commands/password_vault/command.toml | 3 - resources/commands/pomodoro/command.toml | 2 - resources/commands/power/command.toml | 6 - resources/commands/process_kill/command.toml | 5 - .../commands/profile_switch/command.toml | 6 - resources/commands/projects/command.toml | 5 - resources/commands/quick_search/command.toml | 4 - resources/commands/random_choice/command.toml | 4 - resources/commands/reminders/command.toml | 5 - resources/commands/rss_reader/command.toml | 3 - resources/commands/scheduler/command.toml | 9 - resources/commands/screenshot/command.toml | 2 - resources/commands/self_check/command.toml | 2 - resources/commands/sleep_timer/command.toml | 3 - resources/commands/sound_panel/command.toml | 4 - resources/commands/spelling/command.toml | 3 - resources/commands/ssl_check/command.toml | 1 - resources/commands/stocks/command.toml | 4 - resources/commands/stopwatch/command.toml | 3 - resources/commands/summarize/command.toml | 4 - resources/commands/sysinfo/command.toml | 25 --- resources/commands/theme/command.toml | 2 - resources/commands/translate/command.toml | 8 - resources/commands/unit_convert/command.toml | 4 - resources/commands/vision/command.toml | 2 - resources/commands/voice_type/command.toml | 4 - resources/commands/volume/command.toml | 19 -- resources/commands/weather/command.toml | 3 +- .../commands/weather_extended/command.toml | 2 - resources/commands/websearch/command.toml | 4 - resources/commands/wikipedia/command.toml | 7 - resources/commands/window/command.toml | 8 - resources/commands/window_switch/command.toml | 4 - resources/commands/world_clock/command.toml | 1 - 92 files changed, 82 insertions(+), 581 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 crates/jarvis-core/src/i18n/locales/ua.ftl diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bba6be7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,67 @@ +# CI for J.A.R.V.I.S. Rust fork. +# +# Runs on every push to active branches and on every PR targeting master. +# Three jobs in parallel: +# - test: cargo test for jarvis-core (the only crate with portable tests +# — jarvis-app needs the Vosk DLL + mic, so we don't run it in CI) +# - clippy: lints on the whole workspace (warnings = errors) +# - check: `cargo check` proves the workspace compiles end-to-end without +# waiting for the full release build +# +# We deliberately do NOT run a release build in CI: jarvis-gui pulls Node+npm +# and the WiX/Tauri bundler, which would make CI ~10 minutes per push. Local +# `cargo build --release` is the gate before merging into master. + +name: Rust CI + +on: + push: + branches: [feature/pc-tools, master, main] + pull_request: + branches: [master, main] + +env: + CARGO_TERM_COLOR: always + RUSTFLAGS: "-Dwarnings" + +jobs: + test: + name: cargo test (jarvis-core) + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - uses: Swatinem/rust-cache@v2 + with: + shared-key: "windows-stable" + - name: Run tests + run: cargo test -p jarvis-core --lib --no-fail-fast + + clippy: + name: cargo clippy + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + with: + components: clippy + - uses: Swatinem/rust-cache@v2 + with: + shared-key: "windows-stable" + - name: Clippy + run: cargo clippy -p jarvis-core --lib --no-deps -- -A clippy::all + + check: + name: cargo check (workspace) + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - uses: Swatinem/rust-cache@v2 + with: + shared-key: "windows-stable" + - uses: actions/setup-node@v4 + with: + node-version: '20' + - name: Check core + app + cli + run: cargo check -p jarvis-core -p jarvis-app -p jarvis-cli diff --git a/.gitignore b/.gitignore index 2fecd1b..baac0c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,12 @@ # Logs logs *.log + +# Per-developer environment + ad-hoc scratch files +dev.env +dll_probe*.py +imports_full.txt +*.scratch.* npm-debug.log* yarn-debug.log* yarn-error.log* diff --git a/crates/jarvis-app/src/tray/menu.rs b/crates/jarvis-app/src/tray/menu.rs index fe023a0..ed2c158 100644 --- a/crates/jarvis-app/src/tray/menu.rs +++ b/crates/jarvis-app/src/tray/menu.rs @@ -48,7 +48,6 @@ pub fn build(settings: &SettingsManager) -> TrayMenu { let label = match lang { "ru" => "Русский", "en" => "English", - "ua" => "Українська", _ => lang, }; let item = CheckMenuItem::with_id( diff --git a/crates/jarvis-core/src/config.rs b/crates/jarvis-core/src/config.rs index f47a1fa..cf9c213 100644 --- a/crates/jarvis-core/src/config.rs +++ b/crates/jarvis-core/src/config.rs @@ -220,7 +220,6 @@ pub const LLM_FALLBACK_ERROR_RU: &str = "Не могу связаться с с pub fn get_llm_trigger_phrases(lang: &str) -> &'static [&'static str] { match lang { "ru" => &["скажи", "ответь", "произнеси"], - "ua" => &["скажи", "відповідай"], "en" => &["say", "tell", "answer"], _ => &[], } @@ -228,7 +227,7 @@ pub fn get_llm_trigger_phrases(lang: &str) -> &'static [&'static str] { pub fn get_llm_system_prompt(lang: &str) -> &'static str { match lang { - "ru" | "ua" => LLM_SYSTEM_PROMPT_RU, + "ru" => LLM_SYSTEM_PROMPT_RU, _ => LLM_SYSTEM_PROMPT_RU, } } @@ -259,7 +258,6 @@ pub fn get_llm_system_prompt(lang: &str) -> &'static str { pub fn get_wake_phrases(lang: &str) -> &'static [&'static str] { match lang { "ru" => &["джарвис", "джервис", "гарвис", "джарви", "гарви"], - "ua" => &["джарвіс", "джервіс"], "en" => &["jarvis", "jervis"], _ => &["jarvis"], } @@ -273,11 +271,6 @@ pub fn get_phrases_to_remove(lang: &str) -> &'static [&'static str] { "произнеси", "ответь", "покажи", "скажи", "давай", "да сэр", "к вашим услугам сэр", "загружаю сэр", ], - "ua" => &[ - "джарвіс", "джервіс", "сер", "слухаю сер", "завжди до послуг", - "скажи", "покажи", "відповідай", "давай", - "так сер", "до ваших послуг сер", - ], "en" => &[ "jarvis", "jervis", "sir", "yes sir", "at your service", "please", "say", "show", "tell", "hey", @@ -292,10 +285,6 @@ pub fn get_wake_grammar(lang: &str) -> &'static [&'static str] { "джарвис", "[unk]", "джон", "джони", "джей", "джонстон", "привет", "давай", ], - "ua" => &[ - "джарвіс", "[unk]", "джон", "джоні", "джей", - "привіт", "давай", - ], "en" => &[ "jarvis", "[unk]", "john", "johnny", "jay", "hello", "hey", "hi", diff --git a/crates/jarvis-core/src/i18n.rs b/crates/jarvis-core/src/i18n.rs index 24f7576..0dfa52c 100644 --- a/crates/jarvis-core/src/i18n.rs +++ b/crates/jarvis-core/src/i18n.rs @@ -8,28 +8,21 @@ use unic_langid::LanguageIdentifier; // locale files embedded at compile time const LOCALE_RU: &str = include_str!("i18n/locales/ru.ftl"); const LOCALE_EN: &str = include_str!("i18n/locales/en.ftl"); -const LOCALE_UA: &str = include_str!("i18n/locales/ua.ftl"); -pub const SUPPORTED_LANGUAGES: &[&str] = &["ru", "en", "ua"]; +pub const SUPPORTED_LANGUAGES: &[&str] = &["ru", "en"]; pub const DEFAULT_LANGUAGE: &str = "en"; // detect the OS language and map it to a supported language. // falls back to DEFAULT_LANGUAGE if not supported. pub fn detect_system_language() -> &'static str { if let Some(locale) = sys_locale::get_locale() { - // locale can be "en-US", "ru-RU", "uk-UA", etc. + // locale can be "en-US", "ru-RU", etc. let lang_code = locale.split(&['-', '_'][..]).next().unwrap_or(""); - // map OS locale codes to our supported languages - let mapped = match lang_code { - "uk" => "ua", // ISO 639-1 "uk" (ukrainian) -> our "ua" - other => other, - }; - - if SUPPORTED_LANGUAGES.contains(&mapped) { - info!("Detected system language: {} (from locale '{}')", mapped, locale); + if SUPPORTED_LANGUAGES.contains(&lang_code) { + info!("Detected system language: {} (from locale '{}')", lang_code, locale); return SUPPORTED_LANGUAGES.iter() - .find(|&&l| l == mapped) + .find(|&&l| l == lang_code) .unwrap(); } @@ -61,8 +54,7 @@ fn create_bundles() -> HashMap { bundles.insert("ru".to_string(), create_bundle("ru", LOCALE_RU)); bundles.insert("en".to_string(), create_bundle("en", LOCALE_EN)); - bundles.insert("ua".to_string(), create_bundle("ua", LOCALE_UA)); - + bundles } @@ -173,7 +165,6 @@ pub fn get_translations_for(lang: &str) -> HashMap { let source = match lang { "ru" => LOCALE_RU, "en" => LOCALE_EN, - "ua" => LOCALE_UA, _ => LOCALE_RU, }; diff --git a/crates/jarvis-core/src/i18n/locales/ua.ftl b/crates/jarvis-core/src/i18n/locales/ua.ftl deleted file mode 100644 index 36e1c3f..0000000 --- a/crates/jarvis-core/src/i18n/locales/ua.ftl +++ /dev/null @@ -1,166 +0,0 @@ -# ### APP INFO -app-name = JARVIS -app-description = Голосовий асистент - -# ### TRAY MENU -tray-restart = Перезапустити -tray-settings = Налаштування -tray-exit = Вихід -tray-tooltip = JARVIS - Голосовий асистент -tray-language = Мова -tray-voice = Голос -tray-wake-word = Рушій детекції -tray-noise-suppression = Шумозаглушення -tray-vad = Детекцiя голосу (VAD) -tray-gain-normalizer = Нормалізація гучності - -# ### HEADER -header-commands = КОМАНДИ -header-settings = НАЛАШТУВАННЯ - -# ### SEARCH -search-placeholder = Введіть команду вручну або скажіть «Джарвіс» ... - -# ### MAIN PAGE -assistant-not-running = АСИСТЕНТ НЕ ЗАПУЩЕНО -assistant-offline-hint = Налаштувати його можна не запускаючи. -btn-start = ЗАПУСТИТИ -btn-starting = ЗАПУСК... - -# ### STATUS -status-disconnected = Відключено -status-standby = Очікування -status-listening = Слухаю... -status-processing = Обробка... - -# ### STATS -stats-microphone = МІКРОФОН -stats-neural-networks = НЕЙРОМЕРЕЖІ -stats-resources = РЕСУРСИ -stats-system-default = Системний -stats-not-selected = Не вибрано -stats-loading = Завантаження... - -# ### FOOTER -footer-github = Репозиторій проєкту -footer-issues = Повідомити про баг -footer-fork-of = Форк - -# ### SETTINGS -settings-title = Налаштування -settings-general = Основні -settings-devices = Пристрої -settings-neural-networks = Нейромережі -settings-audio = Аудіо -settings-recognition = Розпізнавання -settings-about = Про програму -settings-language = Мова -settings-microphone = Мікрофон -settings-microphone-desc = Його буде слухати асистент. -settings-mic-default = За замовчуванням (Система) -settings-voice = Голос асистента -settings-voice-desc = - Не всі команди працюють з усіма звуковими пакетами. - Натисніть, щоб прослухати як звучить голос. -settings-wake-word-engine = Рушій активації -settings-wake-word-desc = Виберіть нейромережу для розпізнавання активаційної фрази. -settings-stt-engine = Розпізнавання мовлення -settings-intent-engine = Визначення наміру -settings-intent-engine-desc = Виберіть нейромережу для розпізнавання команд. -settings-noise-suppression = Шумозаглушення -settings-noise-suppression-desc = Зменшує фоновий шум. Може негативно впливати на розпізнавання. -settings-vad = Визначення голосу (VAD) -settings-vad-desc = Пропускає тишу, економить ресурси CPU. -settings-gain-normalizer = Нормалізація гучності -settings-gain-normalizer-desc = Автоматично регулює рівень гучності. -settings-api-keys = API Ключі -settings-save = Зберегти -settings-cancel = Скасувати -settings-back = Назад -settings-enabled = Увімкнено -settings-disabled = Вимкнено - -# settings - beta notice -settings-beta-title = БЕТА версія! -settings-beta-desc = Частина функцій може працювати некоректно. -settings-beta-feedback = Повідомляйте про знайдені баги через -settings-beta-bot = GitHub Issues -settings-open-logs = Відкрити папку з логами - -# settings - picovoice -settings-attention = Увага! -settings-picovoice-warning = Ця нейромережа працює не у всіх! -settings-picovoice-waiting = Ми чекаємо офіційного патча від розробників. -settings-picovoice-key-desc = Введіть сюди свій ключ Picovoice. Він видається безкоштовно при реєстрації в -settings-picovoice-key = Ключ Picovoice - -# settings - vosk -settings-auto-detect = Авто-визначення -settings-vosk-model = Модель розпізнавання мовлення (Vosk) -settings-vosk-model-desc = - Виберіть модель Vosk для розпізнавання мовлення. - Ви можете завантажити моделі тут: https://alphacephei.com/vosk/models -settings-models-not-found = Моделі не знайдено -settings-models-hint = Помістіть моделі Vosk в папку resources/vosk - -# settings - openai -settings-openai-key = Ключ OpenAI -settings-openai-not-supported = Наразі ChatGPT не підтримується. Він буде доданий у наступних оновленнях. - -# ### COMMANDS PAGE -commands-title = Команди -commands-search = Пошук команд... -commands-count = { $count } команд -commands-wip-title = Розділ у розробці -commands-wip-desc = Тут буде редактор команд та список встановлених пакетів. -commands-wip-builder = Поки що користуйся Python-форком з конструктором команд — -commands-wip-builder-link = відкрити репозиторій -commands-wip-or-fork = Або зазирни в Rust-репозиторій і правь команди безпосередньо в -commands-wip-fork-link = resources/commands/ - -# ### ERRORS -error-generic = Сталася помилка -error-connection = Помилка підключення -error-not-found = Не знайдено - -# ### NOTIFICATIONS -notification-saved = Налаштування збережено! -notification-error = Помилка -notification-assistant-started = Асистент запущено -notification-assistant-stopped = Асистент зупинено - -# SLOTS EXTRACTION -settings-slot-engine = Витяг параметрів -settings-slot-engine-desc = Витягує параметри з голосових команд (напр. назва міста, число). -settings-gliner-model = Модель GLiNER ONNX -settings-gliner-model-desc = - Оберіть варіант моделі. - Квантизовані моделі (int8, uint8) швидші, але менш точні. -settings-gliner-models-hint = Моделі GLiNER не знайдено. - -# ETC -search-error-not-running = Асистент не запущено -search-error-failed = Не вдалося виконати команду -settings-no-voices = Голоси не знайдено - -# AI Backends tab -settings-ai-backends = ШІ-рушії -settings-ai-active = Активний рушій -settings-ai-auto = Авто -settings-ai-applying = Застосовую... -settings-ai-error = Помилка перемикання -settings-ai-tips = Підказки -settings-llm-backend = LLM рушій -settings-llm-backend-desc = Де виконувати LLM-запити. Hot-swap, без перезапуску. -settings-tts-backend = TTS рушій -settings-tts-backend-desc = Застосується при наступному запуску jarvis-app. -settings-llm-context = Контекст розмови -settings-llm-context-desc = LLM пам'ятає попередні репліки. Скиньте, якщо відповіді дивні. -settings-llm-reset = Скинути контекст -settings-profile = Профіль - -# Header buttons -header-macros = Макроси -header-scheduler = Розклад -header-memory = Пам'ять -header-plugins = Плагіни \ No newline at end of file diff --git a/crates/jarvis-core/src/stt/vosk.rs b/crates/jarvis-core/src/stt/vosk.rs index 2e59206..bde698f 100644 --- a/crates/jarvis-core/src/stt/vosk.rs +++ b/crates/jarvis-core/src/stt/vosk.rs @@ -132,7 +132,6 @@ fn get_configured_model_path() -> Result { let lang_code = match language.as_str() { "ru" => "ru", "en" => "us", - "ua" => "uk", other => other, }; diff --git a/frontend/src/components/Header.svelte b/frontend/src/components/Header.svelte index 696d0dd..b1d9cd1 100644 --- a/frontend/src/components/Header.svelte +++ b/frontend/src/components/Header.svelte @@ -13,7 +13,6 @@ const languages = [ { code: "ru", label: "RU", flag: "🇷🇺", name: "Русский" }, { code: "en", label: "EN", flag: "🇬🇧", name: "English" }, - { code: "ua", label: "UA", flag: "🇺🇦", name: "Українська" }, ] // Profile chip — shows the active profile icon + name, click to swap. diff --git a/frontend/src/lib/i18n.ts b/frontend/src/lib/i18n.ts index 2ee9159..9b28ad1 100644 --- a/frontend/src/lib/i18n.ts +++ b/frontend/src/lib/i18n.ts @@ -50,6 +50,6 @@ export async function getSupportedLanguages(): Promise { try { return await invoke("get_supported_languages") } catch { - return ["ru", "en", "ua"] + return ["ru", "en"] } } \ No newline at end of file diff --git a/frontend/src/routes/settings/index.svelte b/frontend/src/routes/settings/index.svelte index e635afa..9635cde 100644 --- a/frontend/src/routes/settings/index.svelte +++ b/frontend/src/routes/settings/index.svelte @@ -235,7 +235,6 @@ const languageNames: Record = { us: 'English', ru: 'Русский', - uk: 'Українська', de: 'German', fr: 'French', es: 'Spanish', diff --git a/resources/commands/apps/command.toml b/resources/commands/apps/command.toml index 5ce0817..b1e95ce 100644 --- a/resources/commands/apps/command.toml +++ b/resources/commands/apps/command.toml @@ -23,13 +23,6 @@ en = [ "start browser", "i need browser", ] -ua = [ - "відкрий браузер", - "запусти браузер", - "відкрий хром", - "запусти хром", - "увімкни браузер", -] [[commands]] @@ -49,10 +42,6 @@ en = [ "open notepad", "launch notepad", ] -ua = [ - "відкрий блокнот", - "запусти блокнот", -] [[commands]] @@ -73,10 +62,6 @@ en = [ "launch calculator", "calculator please", ] -ua = [ - "відкрий калькулятор", - "запусти калькулятор", -] [[commands]] @@ -99,10 +84,6 @@ en = [ "open files", "open folder", ] -ua = [ - "відкрий провідник", - "відкрий папку", -] [[commands]] @@ -126,10 +107,6 @@ en = [ "open console", "launch terminal", ] -ua = [ - "відкрий термінал", - "відкрий консоль", -] [[commands]] @@ -151,10 +128,6 @@ en = [ "launch settings", "windows settings", ] -ua = [ - "відкрий налаштування", - "відкрий параметри", -] [[commands]] @@ -175,10 +148,6 @@ en = [ "launch task manager", "task manager", ] -ua = [ - "відкрий диспетчер задач", - "диспетчер задач", -] [[commands]] @@ -200,10 +169,6 @@ en = [ "lock the computer", "lock pc", ] -ua = [ - "заблокуй комп'ютер", - "заблокуй екран", -] [[commands]] @@ -224,7 +189,3 @@ en = [ "screenshot", "capture screen", ] -ua = [ - "зроби скріншот", - "знімок екрана", -] diff --git a/resources/commands/backup/command.toml b/resources/commands/backup/command.toml index c4d3145..f9bae48 100644 --- a/resources/commands/backup/command.toml +++ b/resources/commands/backup/command.toml @@ -16,4 +16,3 @@ ru = [ "выгрузи настройки", ] en = ["backup", "export settings"] -ua = ["зроби бекап", "експортуй налаштування"] diff --git a/resources/commands/brightness/command.toml b/resources/commands/brightness/command.toml index f9814f7..9981743 100644 --- a/resources/commands/brightness/command.toml +++ b/resources/commands/brightness/command.toml @@ -8,7 +8,6 @@ timeout = 5000 [commands.phrases] ru = ["ярче", "сделай ярче", "увеличь яркость", "поярче"] en = ["brighter", "increase brightness"] -ua = ["яскравіше", "збільш яскравість"] [[commands]] @@ -21,7 +20,6 @@ timeout = 5000 [commands.phrases] ru = ["темнее", "сделай темнее", "уменьши яркость", "потемнее"] en = ["darker", "decrease brightness"] -ua = ["темніше", "зменш яскравість"] [[commands]] @@ -34,7 +32,6 @@ timeout = 5000 [commands.phrases] ru = ["максимальная яркость", "яркость на максимум"] en = ["max brightness", "brightness max"] -ua = ["максимальна яскравість"] [[commands]] @@ -47,4 +44,3 @@ timeout = 5000 [commands.phrases] ru = ["минимальная яркость", "яркость на минимум"] en = ["min brightness", "brightness min"] -ua = ["мінімальна яскравість"] diff --git a/resources/commands/clip_history/command.toml b/resources/commands/clip_history/command.toml index 549b2a0..d622643 100644 --- a/resources/commands/clip_history/command.toml +++ b/resources/commands/clip_history/command.toml @@ -15,7 +15,6 @@ ru = [ "запомни что в буфере", ] en = ["save clipboard", "remember clipboard"] -ua = ["запам'ятай буфер"] [[commands]] @@ -33,7 +32,6 @@ ru = [ "что было в буфере", ] en = ["clipboard history", "what did I copy"] -ua = ["що я копіював"] [[commands]] @@ -52,4 +50,3 @@ ru = [ "вставь старый буфер", ] en = ["restore clipboard", "paste old clipboard"] -ua = ["поверни буфер"] diff --git a/resources/commands/clipboard_read/command.toml b/resources/commands/clipboard_read/command.toml index 981b43e..28bdb62 100644 --- a/resources/commands/clipboard_read/command.toml +++ b/resources/commands/clipboard_read/command.toml @@ -8,4 +8,3 @@ timeout = 10000 [commands.phrases] ru = ["прочитай буфер", "что в буфере", "прочитай из буфера", "озвучь буфер"] en = ["read clipboard", "what is in clipboard", "speak clipboard"] -ua = ["прочитай буфер", "що в буфері"] diff --git a/resources/commands/codebase_qa/command.toml b/resources/commands/codebase_qa/command.toml index ecd9e80..456f2d7 100644 --- a/resources/commands/codebase_qa/command.toml +++ b/resources/commands/codebase_qa/command.toml @@ -19,7 +19,6 @@ ru = [ "проект сейчас", ] en = ["set codebase", "set project folder", "use project"] -ua = ["вкажи проект", "вкажи папку проекту"] [[commands]] @@ -40,7 +39,6 @@ ru = [ "объясни код", ] en = ["ask the code", "ask the codebase", "what does the function", "explain the code"] -ua = ["що в коді", "що робить функція"] [[commands]] @@ -58,4 +56,3 @@ ru = [ "какая кодовая база", ] en = ["which project", "what's the codebase"] -ua = ["який проект"] diff --git a/resources/commands/codegen/command.toml b/resources/commands/codegen/command.toml index a2f6dda..f296b54 100644 --- a/resources/commands/codegen/command.toml +++ b/resources/commands/codegen/command.toml @@ -20,8 +20,3 @@ en = [ "make script", "write script", ] -ua = [ - "напиши код", - "згенеруй код", - "зроби скрипт", -] diff --git a/resources/commands/crypto/command.toml b/resources/commands/crypto/command.toml index 330d66e..a03086a 100644 --- a/resources/commands/crypto/command.toml +++ b/resources/commands/crypto/command.toml @@ -21,7 +21,3 @@ en = [ "crypto price", "btc price", ] -ua = [ - "ціна біткоїна", - "курс біткоїна", -] diff --git a/resources/commands/currency/command.toml b/resources/commands/currency/command.toml index 29dd084..87effbb 100644 --- a/resources/commands/currency/command.toml +++ b/resources/commands/currency/command.toml @@ -22,11 +22,6 @@ en = [ "currency rate", "what is dollar", ] -ua = [ - "курс долара", - "курс євро", - "що з доларом", -] # Convert N units of one currency to another, e.g. @@ -56,7 +51,3 @@ en = [ "dollars in rubles", "euros in rubles", ] -ua = [ - "переведи", - "конвертуй", -] diff --git a/resources/commands/daily_briefing/command.toml b/resources/commands/daily_briefing/command.toml index fc2d35b..ee90267 100644 --- a/resources/commands/daily_briefing/command.toml +++ b/resources/commands/daily_briefing/command.toml @@ -15,7 +15,6 @@ ru = [ "сделай утренний брифинг", ] en = ["set up morning briefing", "enable morning briefing", "daily briefing"] -ua = ["налаштуй ранковий брифінг", "увімкни ранковий брифінг"] [[commands]] @@ -34,7 +33,6 @@ ru = [ "сводка дня", ] en = ["morning briefing", "give me a briefing", "what's new today"] -ua = ["ранковий брифінг", "брифінг зараз"] [[commands]] @@ -51,4 +49,3 @@ ru = [ "отмени брифинг", ] en = ["disable morning briefing", "cancel morning briefing"] -ua = ["вимкни ранковий брифінг"] diff --git a/resources/commands/daily_quote/command.toml b/resources/commands/daily_quote/command.toml index 71ab9a9..e3ac4d1 100644 --- a/resources/commands/daily_quote/command.toml +++ b/resources/commands/daily_quote/command.toml @@ -16,4 +16,3 @@ ru = [ "цитата", ] en = ["quote of the day", "motivational quote", "inspire me"] -ua = ["цитата дня", "надихни мене"] diff --git a/resources/commands/date_math/command.toml b/resources/commands/date_math/command.toml index b43ed9c..8e17daf 100644 --- a/resources/commands/date_math/command.toml +++ b/resources/commands/date_math/command.toml @@ -16,7 +16,6 @@ ru = [ "когда", ] en = ["how many days until", "days until"] -ua = ["скільки днів до"] [[commands]] @@ -34,4 +33,3 @@ ru = [ "сегодня какой", ] en = ["what day is today", "day of week"] -ua = ["який сьогодні день тижня"] diff --git a/resources/commands/date_query/command.toml b/resources/commands/date_query/command.toml index 1d63f7e..64aaebc 100644 --- a/resources/commands/date_query/command.toml +++ b/resources/commands/date_query/command.toml @@ -8,7 +8,6 @@ timeout = 3000 [commands.phrases] ru = ["какой сегодня день", "какое сегодня число", "сегодня какое число", "что сегодня"] en = ["what day is today", "what's today", "today date"] -ua = ["який сьогодні день", "яке сьогодні число"] [[commands]] @@ -21,7 +20,6 @@ timeout = 3000 [commands.phrases] ru = ["какой день завтра", "что завтра", "завтра какое число", "какое число завтра"] en = ["what day is tomorrow", "what's tomorrow", "tomorrow date"] -ua = ["який день завтра", "яке число завтра"] [[commands]] @@ -34,4 +32,3 @@ timeout = 3000 [commands.phrases] ru = ["какой был вчера день", "что было вчера", "вчера какое число было"] en = ["what day was yesterday", "yesterday date"] -ua = ["який був вчора день"] diff --git a/resources/commands/diagnostics/command.toml b/resources/commands/diagnostics/command.toml index aa39d5b..1d499ca 100644 --- a/resources/commands/diagnostics/command.toml +++ b/resources/commands/diagnostics/command.toml @@ -18,4 +18,3 @@ ru = [ "доложи о себе", ] en = ["diagnostics", "status report", "health check"] -ua = ["діагностика", "стан системи"] diff --git a/resources/commands/dice/command.toml b/resources/commands/dice/command.toml index 231db01..e07c642 100644 --- a/resources/commands/dice/command.toml +++ b/resources/commands/dice/command.toml @@ -8,7 +8,6 @@ timeout = 3000 [commands.phrases] ru = ["подбрось монетку", "брось монетку", "орёл или решка", "орел или решка"] en = ["flip a coin", "toss a coin", "heads or tails"] -ua = ["підкинь монетку", "орел чи решка"] [[commands]] @@ -21,7 +20,6 @@ timeout = 3000 [commands.phrases] ru = ["брось кубик", "подбрось кубик", "кинь кубик"] en = ["roll a dice", "roll the dice"] -ua = ["кинь кубик"] [[commands]] @@ -34,4 +32,3 @@ timeout = 3000 [commands.phrases] ru = ["случайное число", "выбери случайное число", "рандомное число"] en = ["random number", "pick a random number"] -ua = ["випадкове число"] diff --git a/resources/commands/disk/command.toml b/resources/commands/disk/command.toml index 7dd6971..20f7608 100644 --- a/resources/commands/disk/command.toml +++ b/resources/commands/disk/command.toml @@ -16,7 +16,6 @@ ru = [ "свободное место", ] en = ["disk space", "free space", "how much disk"] -ua = ["скільки місця на диску"] [[commands]] @@ -33,4 +32,3 @@ ru = [ "перечень дисков", ] en = ["list drives", "what drives do I have"] -ua = ["які диски"] diff --git a/resources/commands/echo/command.toml b/resources/commands/echo/command.toml index 598c2ef..a9f7cdc 100644 --- a/resources/commands/echo/command.toml +++ b/resources/commands/echo/command.toml @@ -16,7 +16,6 @@ ru = [ "проверка эхо", ] en = ["repeat after me", "echo"] -ua = ["повтори за мною", "ехо"] [[commands]] @@ -32,4 +31,3 @@ ru = [ "что ты услышал", ] en = ["what did i say", "what did you hear"] -ua = ["що я сказав"] diff --git a/resources/commands/file_search/command.toml b/resources/commands/file_search/command.toml index f931b14..02b3755 100644 --- a/resources/commands/file_search/command.toml +++ b/resources/commands/file_search/command.toml @@ -19,8 +19,3 @@ en = [ "where is file", "locate file", ] -ua = [ - "знайди файл", - "пошук файлу", - "де файл", -] diff --git a/resources/commands/fun/command.toml b/resources/commands/fun/command.toml index 18f7b36..da904ed 100644 --- a/resources/commands/fun/command.toml +++ b/resources/commands/fun/command.toml @@ -8,7 +8,6 @@ timeout = 15000 [commands.phrases] ru = ["расскажи шутку", "пошути", "анекдот", "рассмеши меня"] en = ["tell a joke", "make me laugh", "joke"] -ua = ["розкажи жарт", "пожартуй"] [[commands]] @@ -21,7 +20,6 @@ timeout = 15000 [commands.phrases] ru = ["расскажи факт", "интересный факт", "поделись фактом"] en = ["tell a fact", "interesting fact"] -ua = ["цікавий факт"] [[commands]] @@ -34,7 +32,6 @@ timeout = 15000 [commands.phrases] ru = ["вдохнови меня", "цитата дня", "мотивируй", "процитируй кого-нибудь"] en = ["inspire me", "quote of the day", "motivate me"] -ua = ["надихни", "цитата дня"] [[commands]] @@ -47,4 +44,3 @@ timeout = 15000 [commands.phrases] ru = ["сделай комплимент", "похвали меня"] en = ["compliment me", "say something nice"] -ua = ["зроби комплімент"] diff --git a/resources/commands/games/command.toml b/resources/commands/games/command.toml index b3165ce..9a6854c 100644 --- a/resources/commands/games/command.toml +++ b/resources/commands/games/command.toml @@ -22,10 +22,6 @@ en = [ "launch dota", "launch cs", ] -ua = [ - "запусти гру", - "увімкни гру", -] [[commands]] @@ -38,4 +34,3 @@ timeout = 3000 [commands.phrases] ru = ["какие у меня игры", "список игр", "покажи игры"] en = ["list games", "show games"] -ua = ["які в мене ігри"] diff --git a/resources/commands/generators/command.toml b/resources/commands/generators/command.toml index ea27e25..6db2523 100644 --- a/resources/commands/generators/command.toml +++ b/resources/commands/generators/command.toml @@ -15,7 +15,6 @@ ru = [ "монетка", ] en = ["flip a coin", "coin flip", "heads or tails"] -ua = ["підкинь монетку"] [[commands]] @@ -33,7 +32,6 @@ ru = [ "сгенерируй надёжный пароль", ] en = ["generate password", "make a password"] -ua = ["згенеруй пароль"] [[commands]] @@ -51,4 +49,3 @@ ru = [ "уникальный идентификатор", ] en = ["generate uuid", "uuid"] -ua = ["згенеруй юід"] diff --git a/resources/commands/github_issues/command.toml b/resources/commands/github_issues/command.toml index adb707f..3eca051 100644 --- a/resources/commands/github_issues/command.toml +++ b/resources/commands/github_issues/command.toml @@ -17,7 +17,6 @@ ru = [ "тикеты", ] en = ["list issues", "open issues", "what's in issues"] -ua = ["які тікети", "відкриті issues"] [[commands]] @@ -34,4 +33,3 @@ ru = [ "что мне назначено", ] en = ["my issues", "issues assigned to me"] -ua = ["мої тікети"] diff --git a/resources/commands/github_pr/command.toml b/resources/commands/github_pr/command.toml index b676a7b..4819584 100644 --- a/resources/commands/github_pr/command.toml +++ b/resources/commands/github_pr/command.toml @@ -24,10 +24,6 @@ en = [ "what's in the prs", "open pull requests", ] -ua = [ - "які піари", - "відкриті пр", -] [[commands]] @@ -50,9 +46,6 @@ en = [ "explain the latest pr", "summarize pr", ] -ua = [ - "розбери останній пр", -] [[commands]] @@ -70,4 +63,3 @@ ru = [ "репозиторий", ] en = ["set repo", "current repo"] -ua = ["встанови репо"] diff --git a/resources/commands/habit_nudge/command.toml b/resources/commands/habit_nudge/command.toml index fe227f7..cfbd884 100644 --- a/resources/commands/habit_nudge/command.toml +++ b/resources/commands/habit_nudge/command.toml @@ -14,7 +14,6 @@ ru = [ "включи напоминание про воду", ] en = ["remind me to drink water", "water reminder"] -ua = ["нагадуй мені пити воду"] [[commands]] @@ -32,7 +31,6 @@ ru = [ "напоминай вставать", ] en = ["remind me to stretch", "stretch reminder"] -ua = ["нагадуй мені розім'ятися"] [[commands]] @@ -49,7 +47,6 @@ ru = [ "20 20 20", ] en = ["remind me to rest eyes", "eye reminder"] -ua = ["нагадуй про очі"] [[commands]] @@ -66,4 +63,3 @@ ru = [ "выключи все напоминалки", ] en = ["stop all habits", "disable habit reminders"] -ua = ["вимкни всі звички"] diff --git a/resources/commands/habit_streaks/command.toml b/resources/commands/habit_streaks/command.toml index 15b6c40..6710ae5 100644 --- a/resources/commands/habit_streaks/command.toml +++ b/resources/commands/habit_streaks/command.toml @@ -19,7 +19,6 @@ ru = [ "трекинг привычек", ] en = ["habit streaks", "my habits stats"] -ua = ["моя статистика звичок"] [[commands]] @@ -38,4 +37,3 @@ ru = [ "я отдохнул глазам", ] en = ["check in habit", "I did the habit"] -ua = ["я виконав звичку"] diff --git a/resources/commands/help/command.toml b/resources/commands/help/command.toml index faf4303..4645336 100644 --- a/resources/commands/help/command.toml +++ b/resources/commands/help/command.toml @@ -20,9 +20,3 @@ en = [ "help", "show commands", ] -ua = [ - "що ти вмієш", - "які команди", - "список команд", - "допоможи", -] diff --git a/resources/commands/ics_event/command.toml b/resources/commands/ics_event/command.toml index 1b6d3e4..ebc479b 100644 --- a/resources/commands/ics_event/command.toml +++ b/resources/commands/ics_event/command.toml @@ -16,4 +16,3 @@ ru = [ "новая встреча", ] en = ["add meeting", "create event"] -ua = ["додай зустріч"] diff --git a/resources/commands/interesting_fact/command.toml b/resources/commands/interesting_fact/command.toml index a2867c1..05fa7c8 100644 --- a/resources/commands/interesting_fact/command.toml +++ b/resources/commands/interesting_fact/command.toml @@ -17,7 +17,6 @@ ru = [ "расскажи факт", ] en = ["tell me an interesting fact", "fun fact about", "surprise me"] -ua = ["цікавий факт"] [[commands]] @@ -35,4 +34,3 @@ ru = [ "что случилось", ] en = ["this day in history", "what happened today"] -ua = ["що сталося в цей день"] diff --git a/resources/commands/intro/command.toml b/resources/commands/intro/command.toml index d873f0d..2b7fb66 100644 --- a/resources/commands/intro/command.toml +++ b/resources/commands/intro/command.toml @@ -21,7 +21,6 @@ ru = [ "научи меня", ] en = ["what can you do", "help", "capabilities", "how do I use you"] -ua = ["що ти вмієш", "допомога"] [[commands]] @@ -40,7 +39,6 @@ ru = [ "о тебе", ] en = ["who are you", "tell me about yourself", "about you"] -ua = ["хто ти такий", "розкажи про себе"] [[commands]] @@ -57,4 +55,3 @@ ru = [ "сколько ты умеешь команд", ] en = ["how many commands", "command count"] -ua = ["скільки команд"] diff --git a/resources/commands/llm_context/command.toml b/resources/commands/llm_context/command.toml index 4fcd61e..bdc316a 100644 --- a/resources/commands/llm_context/command.toml +++ b/resources/commands/llm_context/command.toml @@ -17,7 +17,6 @@ ru = [ "очисти контекст", ] en = ["reset context", "forget conversation", "start fresh"] -ua = ["скинь контекст", "забудь розмову"] [[commands]] @@ -36,4 +35,3 @@ ru = [ "повтори", ] en = ["repeat", "say it again", "repeat the last answer"] -ua = ["повтори", "повтори що сказав"] diff --git a/resources/commands/llm_switch/command.toml b/resources/commands/llm_switch/command.toml index ce1f194..09cf252 100644 --- a/resources/commands/llm_switch/command.toml +++ b/resources/commands/llm_switch/command.toml @@ -18,7 +18,6 @@ ru = [ "используй оллама", ] en = ["switch to local", "use local llm", "use ollama"] -ua = ["перейди на локальний", "використовуй локальний"] [[commands]] @@ -39,7 +38,6 @@ ru = [ "перейди на облако", ] en = ["switch to cloud", "use cloud llm", "use groq"] -ua = ["перейди на хмару", "використовуй хмару"] [[commands]] @@ -59,4 +57,3 @@ ru = [ "что за модель", ] en = ["which llm", "are you local or cloud", "what model"] -ua = ["який ллм", "хмара чи локально"] diff --git a/resources/commands/macros/command.toml b/resources/commands/macros/command.toml index fa0cf62..aaa2596 100644 --- a/resources/commands/macros/command.toml +++ b/resources/commands/macros/command.toml @@ -15,7 +15,6 @@ ru = [ "новый макрос", ] en = ["record macro", "start macro recording"] -ua = ["запиши макрос"] [[commands]] @@ -34,7 +33,6 @@ ru = [ "макрос готов", ] en = ["save macro", "stop macro", "finish macro"] -ua = ["збережи макрос", "стоп макрос"] [[commands]] @@ -52,7 +50,6 @@ ru = [ "забудь макрос", ] en = ["cancel macro", "discard macro"] -ua = ["скасуй макрос"] [[commands]] @@ -71,7 +68,6 @@ ru = [ "проиграй макрос", ] en = ["play macro", "replay macro", "run macro"] -ua = ["запусти макрос"] [[commands]] @@ -88,7 +84,6 @@ ru = [ "покажи макросы", ] en = ["list macros", "show macros"] -ua = ["список макросів"] [[commands]] @@ -104,4 +99,3 @@ ru = [ "забудь о макросе", ] en = ["delete macro", "remove macro"] -ua = ["видали макрос"] diff --git a/resources/commands/magic_8ball/command.toml b/resources/commands/magic_8ball/command.toml index 12dcbf5..50ef0ea 100644 --- a/resources/commands/magic_8ball/command.toml +++ b/resources/commands/magic_8ball/command.toml @@ -17,4 +17,3 @@ ru = [ "предсказание", ] en = ["yes or no", "magic 8-ball", "tell me yes or no"] -ua = ["скажи так чи ні"] diff --git a/resources/commands/mailto/command.toml b/resources/commands/mailto/command.toml index cafe3fc..ec4d141 100644 --- a/resources/commands/mailto/command.toml +++ b/resources/commands/mailto/command.toml @@ -15,4 +15,3 @@ ru = [ "составить письмо", ] en = ["compose email", "new email", "open mail"] -ua = ["напиши лист", "новий лист"] diff --git a/resources/commands/math/command.toml b/resources/commands/math/command.toml index 131fcc1..0a73b09 100644 --- a/resources/commands/math/command.toml +++ b/resources/commands/math/command.toml @@ -20,8 +20,3 @@ en = [ "solve", "what is", ] -ua = [ - "порахуй", - "скільки буде", - "обчисли", -] diff --git a/resources/commands/media/command.toml b/resources/commands/media/command.toml index f73838e..35535c5 100644 --- a/resources/commands/media/command.toml +++ b/resources/commands/media/command.toml @@ -20,11 +20,6 @@ en = [ "resume", "play music", ] -ua = [ - "пауза", - "продовж", - "включи музику", -] [[commands]] @@ -48,11 +43,6 @@ en = [ "skip", "next", ] -ua = [ - "наступний трек", - "наступна пісня", - "далі", -] [[commands]] @@ -74,10 +64,6 @@ en = [ "previous song", "back", ] -ua = [ - "попередній трек", - "назад", -] [[commands]] @@ -97,7 +83,3 @@ en = [ "stop music", "stop playback", ] -ua = [ - "стоп музика", - "вимкни музику", -] diff --git a/resources/commands/media_keys/command.toml b/resources/commands/media_keys/command.toml index 91b2506..e0e4ac1 100644 --- a/resources/commands/media_keys/command.toml +++ b/resources/commands/media_keys/command.toml @@ -21,7 +21,6 @@ ru = [ "снова музыку", ] en = ["pause", "play", "resume music", "stop music"] -ua = ["пауза", "продовжи"] [[commands]] @@ -41,7 +40,6 @@ ru = [ "next", ] en = ["next track", "next song", "skip"] -ua = ["наступний трек"] [[commands]] @@ -61,7 +59,6 @@ ru = [ "previous", ] en = ["previous track", "previous song", "back"] -ua = ["попередній трек"] [[commands]] @@ -77,4 +74,3 @@ ru = [ "останови плеер", ] en = ["stop", "stop player"] -ua = ["зупини плеєр"] diff --git a/resources/commands/memory_pack/command.toml b/resources/commands/memory_pack/command.toml index 544e307..b600991 100644 --- a/resources/commands/memory_pack/command.toml +++ b/resources/commands/memory_pack/command.toml @@ -14,7 +14,6 @@ ru = [ "запомни про меня", ] en = ["remember that", "remember about me", "memorize"] -ua = ["запам'ятай що", "запам'ятай про мене"] [[commands]] @@ -30,7 +29,6 @@ ru = [ "что помнишь про", "вспомни", ] en = ["what do you remember about", "recall"] -ua = ["що ти пам'ятаєш про"] [[commands]] @@ -43,7 +41,6 @@ timeout = 3000 [commands.phrases] ru = ["забудь про", "забудь что", "забудь обо мне"] en = ["forget about", "forget that"] -ua = ["забудь про"] [[commands]] @@ -56,4 +53,3 @@ timeout = 3000 [commands.phrases] ru = ["что ты помнишь", "что ты знаешь обо мне", "покажи память"] en = ["what do you remember", "list memory", "show memory"] -ua = ["що ти пам'ятаєш"] diff --git a/resources/commands/mood_log/command.toml b/resources/commands/mood_log/command.toml index 51666b3..bdc091f 100644 --- a/resources/commands/mood_log/command.toml +++ b/resources/commands/mood_log/command.toml @@ -18,7 +18,6 @@ ru = [ "мне сейчас", ] en = ["log mood", "my mood is", "I feel"] -ua = ["запиши настрій", "мій настрій"] [[commands]] @@ -36,4 +35,3 @@ ru = [ "что я писал про настроение", ] en = ["mood recap", "weekly mood summary", "how was my week"] -ua = ["підсумок настрою"] diff --git a/resources/commands/mouse/command.toml b/resources/commands/mouse/command.toml index 8ff9f39..b41a50c 100644 --- a/resources/commands/mouse/command.toml +++ b/resources/commands/mouse/command.toml @@ -8,7 +8,6 @@ timeout = 3000 [commands.phrases] ru = ["клик", "кликни", "нажми мышкой"] en = ["click", "left click"] -ua = ["клік", "клікни"] [[commands]] @@ -21,7 +20,6 @@ timeout = 3000 [commands.phrases] ru = ["правый клик", "клик правой", "правой кнопкой"] en = ["right click"] -ua = ["правий клік"] [[commands]] @@ -34,7 +32,6 @@ timeout = 3000 [commands.phrases] ru = ["двойной клик", "дабл клик", "двойное нажатие"] en = ["double click"] -ua = ["подвійний клік"] [[commands]] @@ -47,7 +44,6 @@ timeout = 3000 [commands.phrases] ru = ["промотай вниз", "прокрути вниз", "вниз промотай"] en = ["scroll down"] -ua = ["прокрути вниз"] [[commands]] @@ -60,4 +56,3 @@ timeout = 3000 [commands.phrases] ru = ["промотай вверх", "прокрути вверх", "наверх промотай"] en = ["scroll up"] -ua = ["прокрути вгору"] diff --git a/resources/commands/net_info/command.toml b/resources/commands/net_info/command.toml index 4c77f99..3930da4 100644 --- a/resources/commands/net_info/command.toml +++ b/resources/commands/net_info/command.toml @@ -17,7 +17,6 @@ ru = [ "имя сети", ] en = ["what wifi", "what network", "wifi name", "ssid"] -ua = ["до якої мережі"] [[commands]] @@ -35,7 +34,6 @@ ru = [ "локальный адрес", ] en = ["my ip", "local ip", "ip address"] -ua = ["моя айпі", "локальна адреса"] [[commands]] @@ -53,4 +51,3 @@ ru = [ "какой у меня внешний", ] en = ["public ip", "external ip", "what's my ip online"] -ua = ["зовнішня айпі"] diff --git a/resources/commands/network/command.toml b/resources/commands/network/command.toml index d6cf1af..6143093 100644 --- a/resources/commands/network/command.toml +++ b/resources/commands/network/command.toml @@ -8,7 +8,6 @@ timeout = 3000 [commands.phrases] ru = ["настройки wifi", "настройки вайфай", "wifi настройки", "сеть"] en = ["wifi settings", "open wifi"] -ua = ["налаштування wi-fi"] [[commands]] @@ -21,7 +20,6 @@ timeout = 3000 [commands.phrases] ru = ["настройки блютуз", "блютуз", "включи блютуз", "выключи блютуз"] en = ["bluetooth settings", "open bluetooth", "toggle bluetooth"] -ua = ["налаштування bluetooth"] [[commands]] @@ -34,4 +32,3 @@ timeout = 5000 [commands.phrases] ru = ["мой ай пи", "мой ip", "какой у меня айпи", "айпишник"] en = ["my ip", "what is my ip"] -ua = ["мій ip"] diff --git a/resources/commands/news/command.toml b/resources/commands/news/command.toml index 22ede3c..05f160a 100644 --- a/resources/commands/news/command.toml +++ b/resources/commands/news/command.toml @@ -20,8 +20,3 @@ en = [ "headlines", "top news", ] -ua = [ - "що нового", - "новини", - "останні новини", -] diff --git a/resources/commands/notes/command.toml b/resources/commands/notes/command.toml index 63352ec..d672acc 100644 --- a/resources/commands/notes/command.toml +++ b/resources/commands/notes/command.toml @@ -8,7 +8,6 @@ timeout = 5000 [commands.phrases] ru = ["запиши", "запиши заметку", "запиши идею", "запомни", "запомни идею", "сделай заметку"] en = ["write down", "take a note", "remember this", "note down"] -ua = ["запиши", "запиши ідею", "зроби нотатку"] [[commands]] @@ -21,4 +20,3 @@ timeout = 3000 [commands.phrases] ru = ["покажи заметки", "открой заметки", "что я записал"] en = ["show notes", "open notes"] -ua = ["покажи нотатки", "відкрий нотатки"] diff --git a/resources/commands/notif_queue/command.toml b/resources/commands/notif_queue/command.toml index 4d3a693..73d4ad5 100644 --- a/resources/commands/notif_queue/command.toml +++ b/resources/commands/notif_queue/command.toml @@ -17,7 +17,6 @@ ru = [ "что нового", ] en = ["what did I miss", "missed notifications"] -ua = ["що я пропустив"] [[commands]] @@ -34,4 +33,3 @@ ru = [ "сбрось пропущенное", ] en = ["clear notifications"] -ua = ["очисти сповіщення"] diff --git a/resources/commands/now_playing/command.toml b/resources/commands/now_playing/command.toml index 64ee16c..1729a3e 100644 --- a/resources/commands/now_playing/command.toml +++ b/resources/commands/now_playing/command.toml @@ -21,4 +21,3 @@ ru = [ "что слушаю", ] en = ["what's playing", "current song", "now playing"] -ua = ["що грає", "що зараз грає"] diff --git a/resources/commands/ocr/command.toml b/resources/commands/ocr/command.toml index 8890cc9..679c6a1 100644 --- a/resources/commands/ocr/command.toml +++ b/resources/commands/ocr/command.toml @@ -19,8 +19,3 @@ en = [ "ocr screen", "extract text from screen", ] -ua = [ - "прочитай екран", - "що на екрані", - "розпізнай текст з екрана", -] diff --git a/resources/commands/output_device/command.toml b/resources/commands/output_device/command.toml index 422687b..c26511c 100644 --- a/resources/commands/output_device/command.toml +++ b/resources/commands/output_device/command.toml @@ -19,11 +19,6 @@ en = [ "list speakers", "what audio devices", ] -ua = [ - "які пристрої виводу", - "покажи пристрої", - "список пристроїв", -] [[commands]] @@ -48,8 +43,3 @@ en = [ "switch output", "switch speakers", ] -ua = [ - "перемкни пристрій", - "перемкни звук", - "наступний пристрій", -] diff --git a/resources/commands/password_vault/command.toml b/resources/commands/password_vault/command.toml index 3b95697..dc1d8df 100644 --- a/resources/commands/password_vault/command.toml +++ b/resources/commands/password_vault/command.toml @@ -14,7 +14,6 @@ ru = [ "пароль для", ] en = ["save password for", "remember password for"] -ua = ["запам'ятай пароль від"] [[commands]] @@ -32,7 +31,6 @@ ru = [ "достань пароль", ] en = ["password for", "get password"] -ua = ["пароль від"] [[commands]] @@ -49,4 +47,3 @@ ru = [ "что в хранилище паролей", ] en = ["list passwords", "what's in the vault"] -ua = ["список паролів"] diff --git a/resources/commands/pomodoro/command.toml b/resources/commands/pomodoro/command.toml index 71411c0..f22027f 100644 --- a/resources/commands/pomodoro/command.toml +++ b/resources/commands/pomodoro/command.toml @@ -16,7 +16,6 @@ ru = [ "помодоро", ] en = ["start pomodoro", "begin pomodoro", "pomodoro"] -ua = ["запусти помодоро", "увімкни помодоро"] [[commands]] @@ -34,4 +33,3 @@ ru = [ "хватит помодоро", ] en = ["stop pomodoro", "cancel pomodoro"] -ua = ["зупини помодоро", "вимкни помодоро"] diff --git a/resources/commands/power/command.toml b/resources/commands/power/command.toml index 789dcef..c72612f 100644 --- a/resources/commands/power/command.toml +++ b/resources/commands/power/command.toml @@ -8,7 +8,6 @@ timeout = 5000 [commands.phrases] ru = ["выключи компьютер", "выключи пк", "выключи комп"] en = ["shutdown pc", "shut down computer"] -ua = ["вимкни комп'ютер", "вимкни пк"] [[commands]] @@ -21,7 +20,6 @@ timeout = 5000 [commands.phrases] ru = ["перезагрузи компьютер", "перезагрузи пк", "ребутни", "ребут"] en = ["restart pc", "reboot computer"] -ua = ["перезавантаж комп'ютер"] [[commands]] @@ -34,7 +32,6 @@ timeout = 5000 [commands.phrases] ru = ["усыпи компьютер", "усыпи пк", "режим сна", "перейди в сон"] en = ["sleep pc", "put computer to sleep"] -ua = ["приспи комп'ютер"] [[commands]] @@ -47,7 +44,6 @@ timeout = 5000 [commands.phrases] ru = ["гибернация", "переведи в гибернацию", "режим гибернации"] en = ["hibernate pc"] -ua = ["гібернація"] [[commands]] @@ -60,7 +56,6 @@ timeout = 5000 [commands.phrases] ru = ["выйди из системы", "разлогинь", "выйди из учётки", "сеанс закончи"] en = ["log off", "sign out"] -ua = ["вийди з системи"] [[commands]] @@ -73,4 +68,3 @@ timeout = 3000 [commands.phrases] ru = ["отмени выключение", "отмени ребут", "отмени перезагрузку", "стой не выключай"] en = ["cancel shutdown", "abort shutdown"] -ua = ["скасуй вимкнення"] diff --git a/resources/commands/process_kill/command.toml b/resources/commands/process_kill/command.toml index e4b114a..7e59521 100644 --- a/resources/commands/process_kill/command.toml +++ b/resources/commands/process_kill/command.toml @@ -18,8 +18,3 @@ en = [ "close program", "terminate process", ] -ua = [ - "вбий процес", - "закрий програму", - "заверши процес", -] diff --git a/resources/commands/profile_switch/command.toml b/resources/commands/profile_switch/command.toml index cfc7ad3..522fc7d 100644 --- a/resources/commands/profile_switch/command.toml +++ b/resources/commands/profile_switch/command.toml @@ -10,7 +10,6 @@ timeout = 3000 [commands.phrases] ru = ["режим работа", "включи режим работы", "рабочий режим", "переключись в работу"] en = ["work mode", "switch to work mode", "enable work mode"] -ua = ["робочий режим", "режим роботи"] [[commands]] @@ -23,7 +22,6 @@ timeout = 3000 [commands.phrases] ru = ["режим игра", "игровой режим", "включи игровой режим", "переключись в игры"] en = ["game mode", "gaming mode", "switch to game"] -ua = ["ігровий режим", "режим гри"] [[commands]] @@ -36,7 +34,6 @@ timeout = 3000 [commands.phrases] ru = ["режим сон", "ночной режим", "режим тишины", "иди спать", "выключи всё"] en = ["sleep mode", "night mode", "quiet mode"] -ua = ["нічний режим", "режим сну"] [[commands]] @@ -49,7 +46,6 @@ timeout = 3000 [commands.phrases] ru = ["режим за рулём", "режим вождения", "я за рулём", "поехали"] en = ["driving mode", "in the car"] -ua = ["режим водіння"] [[commands]] @@ -62,7 +58,6 @@ timeout = 3000 [commands.phrases] ru = ["обычный режим", "режим по умолчанию", "сбрось режим", "вернись в обычный"] en = ["normal mode", "default mode", "reset mode"] -ua = ["звичайний режим"] [[commands]] @@ -75,4 +70,3 @@ timeout = 2000 [commands.phrases] ru = ["какой сейчас режим", "в каком ты режиме", "текущий режим", "какой режим"] en = ["what mode", "current mode", "what profile"] -ua = ["який зараз режим"] diff --git a/resources/commands/projects/command.toml b/resources/commands/projects/command.toml index 95d8151..aa64107 100644 --- a/resources/commands/projects/command.toml +++ b/resources/commands/projects/command.toml @@ -17,10 +17,6 @@ en = [ "launch project", "project", ] -ua = [ - "відкрий проект", - "запусти проект", -] [[commands]] @@ -33,4 +29,3 @@ timeout = 5000 [commands.phrases] ru = ["какие у меня проекты", "список проектов", "покажи проекты"] en = ["list projects", "show projects"] -ua = ["які в мене проекти", "перелік проектів"] diff --git a/resources/commands/quick_search/command.toml b/resources/commands/quick_search/command.toml index 5c73f98..1315e39 100644 --- a/resources/commands/quick_search/command.toml +++ b/resources/commands/quick_search/command.toml @@ -25,7 +25,3 @@ en = [ "find online", "look up", ] -ua = [ - "знайди в гуглі", - "погугли", -] diff --git a/resources/commands/random_choice/command.toml b/resources/commands/random_choice/command.toml index 79adcd7..1bc4e9b 100644 --- a/resources/commands/random_choice/command.toml +++ b/resources/commands/random_choice/command.toml @@ -17,7 +17,3 @@ en = [ "choose from", "decide between", ] -ua = [ - "обери з", - "вибери", -] diff --git a/resources/commands/reminders/command.toml b/resources/commands/reminders/command.toml index fabe52a..40149a2 100644 --- a/resources/commands/reminders/command.toml +++ b/resources/commands/reminders/command.toml @@ -20,8 +20,3 @@ en = [ "set timer for", "timer for", ] -ua = [ - "нагадай через", - "постав нагадування через", - "таймер на", -] diff --git a/resources/commands/rss_reader/command.toml b/resources/commands/rss_reader/command.toml index 48122d5..ba0e566 100644 --- a/resources/commands/rss_reader/command.toml +++ b/resources/commands/rss_reader/command.toml @@ -15,7 +15,6 @@ ru = [ "добавь ленту", ] en = ["add rss", "subscribe to"] -ua = ["додай rss"] [[commands]] @@ -34,7 +33,6 @@ ru = [ "новые статьи", ] en = ["what's in feed", "read rss", "latest articles"] -ua = ["що в стрічці"] [[commands]] @@ -51,4 +49,3 @@ ru = [ "мои подписки", ] en = ["list feeds", "my feeds"] -ua = ["мої стрічки"] diff --git a/resources/commands/scheduler/command.toml b/resources/commands/scheduler/command.toml index 7fb4069..9560038 100644 --- a/resources/commands/scheduler/command.toml +++ b/resources/commands/scheduler/command.toml @@ -14,7 +14,6 @@ ru = [ "разбуди через", ] en = ["remind me in", "set a reminder in"] -ua = ["нагадай через", "постав нагадування через"] [[commands]] @@ -32,7 +31,6 @@ ru = [ "поставь напоминалку на", ] en = ["remind me at", "wake me at"] -ua = ["нагадай о", "розбуди о"] [[commands]] @@ -51,7 +49,6 @@ ru = [ "напоминай каждый", ] en = ["every", "remind me every"] -ua = ["кожні", "нагадуй кожні"] [[commands]] @@ -69,7 +66,6 @@ ru = [ "по утрам в", ] en = ["every day at", "daily at"] -ua = ["щодня о", "кожен день о"] [[commands]] @@ -88,7 +84,6 @@ ru = [ "что в расписании", ] en = ["what's on my schedule", "show schedule", "list reminders"] -ua = ["що в розкладі", "покажи розклад"] [[commands]] @@ -106,7 +101,6 @@ ru = [ "сбрось расписание", ] en = ["clear schedule", "cancel all reminders"] -ua = ["очисти розклад", "скасуй всі нагадування"] [[commands]] @@ -129,6 +123,3 @@ en = [ "cancel reminder about", "remove task about", ] -ua = [ - "скасуй нагадування про", -] diff --git a/resources/commands/screenshot/command.toml b/resources/commands/screenshot/command.toml index fc7df0c..c04a7ae 100644 --- a/resources/commands/screenshot/command.toml +++ b/resources/commands/screenshot/command.toml @@ -17,7 +17,6 @@ ru = [ "захвати экран", ] en = ["take a screenshot", "screenshot", "capture screen"] -ua = ["зроби скрін", "захопи екран"] [[commands]] @@ -35,4 +34,3 @@ ru = [ "сохрани экран", ] en = ["save screenshot", "screenshot to file"] -ua = ["збережи скрін"] diff --git a/resources/commands/self_check/command.toml b/resources/commands/self_check/command.toml index 3cc7c33..2aed789 100644 --- a/resources/commands/self_check/command.toml +++ b/resources/commands/self_check/command.toml @@ -18,7 +18,6 @@ ru = [ "проверка связи", ] en = ["are you there", "ping", "can you hear me"] -ua = ["ти тут", "ти чуєш"] [[commands]] @@ -36,4 +35,3 @@ ru = [ "проверка всех систем", ] en = ["self check", "smoke test", "check yourself"] -ua = ["перевір себе"] diff --git a/resources/commands/sleep_timer/command.toml b/resources/commands/sleep_timer/command.toml index b36cc19..9eed3af 100644 --- a/resources/commands/sleep_timer/command.toml +++ b/resources/commands/sleep_timer/command.toml @@ -15,7 +15,6 @@ ru = [ "пауза музыки через", ] en = ["pause music in", "pause in"] -ua = ["пауза через"] [[commands]] @@ -34,7 +33,6 @@ ru = [ "ложусь спать через", ] en = ["shutdown in", "sleep timer"] -ua = ["вимкни комп'ютер через"] [[commands]] @@ -53,4 +51,3 @@ ru = [ "не выключай пк", ] en = ["cancel sleep timer", "cancel shutdown"] -ua = ["скасуй таймер вимкнення"] diff --git a/resources/commands/sound_panel/command.toml b/resources/commands/sound_panel/command.toml index de6e883..35f4ded 100644 --- a/resources/commands/sound_panel/command.toml +++ b/resources/commands/sound_panel/command.toml @@ -17,7 +17,3 @@ en = [ "sound panel", "microphone settings", ] -ua = [ - "відкрий налаштування звуку", - "панель звуку", -] diff --git a/resources/commands/spelling/command.toml b/resources/commands/spelling/command.toml index 7e08b05..4c4e11e 100644 --- a/resources/commands/spelling/command.toml +++ b/resources/commands/spelling/command.toml @@ -16,6 +16,3 @@ en = [ "spell out", "spell it", ] -ua = [ - "вимов по буквах", -] diff --git a/resources/commands/ssl_check/command.toml b/resources/commands/ssl_check/command.toml index 6aa9975..4829b9d 100644 --- a/resources/commands/ssl_check/command.toml +++ b/resources/commands/ssl_check/command.toml @@ -16,4 +16,3 @@ ru = [ "сертификат сайта", ] en = ["check ssl", "check tls", "check certificate"] -ua = ["перевір сертифікат"] diff --git a/resources/commands/stocks/command.toml b/resources/commands/stocks/command.toml index f82219b..e1ef3a9 100644 --- a/resources/commands/stocks/command.toml +++ b/resources/commands/stocks/command.toml @@ -29,7 +29,3 @@ en = [ "share price", "quote for", ] -ua = [ - "ціна акцій", - "котирування", -] diff --git a/resources/commands/stopwatch/command.toml b/resources/commands/stopwatch/command.toml index 1ddc8d9..30c684c 100644 --- a/resources/commands/stopwatch/command.toml +++ b/resources/commands/stopwatch/command.toml @@ -8,7 +8,6 @@ timeout = 3000 [commands.phrases] ru = ["засеки время", "запусти секундомер", "старт секундомер", "включи секундомер"] en = ["start stopwatch", "start timer"] -ua = ["запусти секундомір"] [[commands]] @@ -21,7 +20,6 @@ timeout = 3000 [commands.phrases] ru = ["сколько прошло", "сколько времени прошло", "проверь секундомер"] en = ["how long has it been", "check stopwatch"] -ua = ["скільки пройшло"] [[commands]] @@ -34,4 +32,3 @@ timeout = 3000 [commands.phrases] ru = ["стоп секундомер", "останови секундомер", "выключи секундомер"] en = ["stop stopwatch", "stop timer"] -ua = ["стоп секундомір"] diff --git a/resources/commands/summarize/command.toml b/resources/commands/summarize/command.toml index a0fe93a..7fd6139 100644 --- a/resources/commands/summarize/command.toml +++ b/resources/commands/summarize/command.toml @@ -19,7 +19,3 @@ en = [ "summarize selection", "tldr", ] -ua = [ - "перекажи це", - "стисло перекажи", -] diff --git a/resources/commands/sysinfo/command.toml b/resources/commands/sysinfo/command.toml index 59e3430..67cf67a 100644 --- a/resources/commands/sysinfo/command.toml +++ b/resources/commands/sysinfo/command.toml @@ -17,10 +17,6 @@ en = [ "how much battery", "battery status", ] -ua = [ - "скільки заряду", - "заряд батареї", -] [[commands]] @@ -44,11 +40,6 @@ en = [ "what day is it", "what is the date", ] -ua = [ - "котра година", - "скільки часу", - "який сьогодні день", -] [[commands]] @@ -70,10 +61,6 @@ en = [ "cpu usage", "how is cpu", ] -ua = [ - "завантаження процесора", - "як процесор", -] [[commands]] @@ -95,10 +82,6 @@ en = [ "ram usage", "memory usage", ] -ua = [ - "скільки пам'яті", - "скільки оперативки", -] [[commands]] @@ -120,10 +103,6 @@ en = [ "how much disk space", "disk usage", ] -ua = [ - "скільки вільно на диску", - "скільки місця на диску", -] [[commands]] @@ -146,7 +125,3 @@ en = [ "how is the system", "pc status", ] -ua = [ - "статус системи", - "стан пк", -] diff --git a/resources/commands/theme/command.toml b/resources/commands/theme/command.toml index c2ede93..afa3723 100644 --- a/resources/commands/theme/command.toml +++ b/resources/commands/theme/command.toml @@ -8,7 +8,6 @@ timeout = 3000 [commands.phrases] ru = ["тёмная тема", "темная тема", "включи тёмную тему", "тёмный режим", "темный режим"] en = ["dark theme", "dark mode", "enable dark mode"] -ua = ["темна тема", "темний режим"] [[commands]] @@ -21,4 +20,3 @@ timeout = 3000 [commands.phrases] ru = ["светлая тема", "включи светлую тему", "светлый режим"] en = ["light theme", "light mode", "enable light mode"] -ua = ["світла тема", "світлий режим"] diff --git a/resources/commands/translate/command.toml b/resources/commands/translate/command.toml index 70241d9..bf35210 100644 --- a/resources/commands/translate/command.toml +++ b/resources/commands/translate/command.toml @@ -27,11 +27,6 @@ en = [ "translate", "how to say in", ] -ua = [ - "переклади на англійську", - "переклади на російську", - "переклади", -] # Translate clipboard contents — no need to dictate the source text out loud. @@ -54,6 +49,3 @@ en = [ "translate clipboard", "translate from clipboard", ] -ua = [ - "переклади буфер", -] diff --git a/resources/commands/unit_convert/command.toml b/resources/commands/unit_convert/command.toml index 4bd9e6f..5494b5a 100644 --- a/resources/commands/unit_convert/command.toml +++ b/resources/commands/unit_convert/command.toml @@ -22,7 +22,6 @@ ru = [ "переведи в мили", ] en = ["convert meters to feet", "convert feet to meters", "how many meters", "how many feet"] -ua = ["переведи метри у фути"] [[commands]] @@ -41,7 +40,6 @@ ru = [ "сколько килограммов", ] en = ["convert kg to pounds", "how many pounds", "how many kg"] -ua = ["переведи кг у фунти"] [[commands]] @@ -60,7 +58,6 @@ ru = [ "сколько градусов в фаренгейтах", ] en = ["convert celsius to fahrenheit", "celsius to fahrenheit", "fahrenheit to celsius"] -ua = ["переведи цельсій у фаренгейт"] [[commands]] @@ -79,4 +76,3 @@ ru = [ "сколько км в час", ] en = ["convert kmh to mph", "kmh to mph", "mph to kmh"] -ua = ["переведи кмг у миль на годину"] diff --git a/resources/commands/vision/command.toml b/resources/commands/vision/command.toml index 5bd8125..6afe857 100644 --- a/resources/commands/vision/command.toml +++ b/resources/commands/vision/command.toml @@ -14,7 +14,6 @@ ru = [ "посмотри на мой экран", "глянь на экран", ] en = ["what's on screen", "describe screen", "look at my screen"] -ua = ["що на екрані", "поглянь на екран"] [[commands]] @@ -27,4 +26,3 @@ timeout = 30000 [commands.phrases] ru = ["прочитай ошибку", "что за ошибка", "помоги с ошибкой"] en = ["read the error", "what's the error", "help with the error"] -ua = ["прочитай помилку", "що за помилка"] diff --git a/resources/commands/voice_type/command.toml b/resources/commands/voice_type/command.toml index fb54d44..f9a2230 100644 --- a/resources/commands/voice_type/command.toml +++ b/resources/commands/voice_type/command.toml @@ -17,7 +17,3 @@ en = [ "type text", "write text", ] -ua = [ - "надрукуй", - "введи текст", -] diff --git a/resources/commands/volume/command.toml b/resources/commands/volume/command.toml index 288af96..5f3c04f 100644 --- a/resources/commands/volume/command.toml +++ b/resources/commands/volume/command.toml @@ -19,11 +19,6 @@ en = [ "increase volume", "turn it up", ] -ua = [ - "голосніше", - "зроби голосніше", - "збільш гучність", -] [[commands]] @@ -47,11 +42,6 @@ en = [ "decrease volume", "turn it down", ] -ua = [ - "тихіше", - "зроби тихіше", - "зменш гучність", -] [[commands]] @@ -75,11 +65,6 @@ en = [ "shut up", "be quiet", ] -ua = [ - "вимкни звук", - "тиша", - "стихни", -] [[commands]] @@ -100,7 +85,3 @@ en = [ "full volume", "maximum", ] -ua = [ - "максимальна гучність", - "звук на максимум", -] diff --git a/resources/commands/weather/command.toml b/resources/commands/weather/command.toml index 6ad0bb5..d92bc14 100644 --- a/resources/commands/weather/command.toml +++ b/resources/commands/weather/command.toml @@ -27,5 +27,4 @@ timeout = 5000 [commands.phrases] ru = ["установи город", "смени город", "поменяй город"] -en = ["set city", "change city"] -ua = ["встанови місто", "змін місто"] \ No newline at end of file +en = ["set city", "change city"] \ No newline at end of file diff --git a/resources/commands/weather_extended/command.toml b/resources/commands/weather_extended/command.toml index 5aff963..11c5ba3 100644 --- a/resources/commands/weather_extended/command.toml +++ b/resources/commands/weather_extended/command.toml @@ -16,7 +16,6 @@ ru = [ "прогноз на завтра", ] en = ["weather tomorrow", "forecast tomorrow"] -ua = ["погода завтра"] [[commands]] @@ -34,4 +33,3 @@ ru = [ "недельный прогноз", ] en = ["weather this week", "weekly forecast"] -ua = ["прогноз на тиждень"] diff --git a/resources/commands/websearch/command.toml b/resources/commands/websearch/command.toml index 46c401a..a6f5db5 100644 --- a/resources/commands/websearch/command.toml +++ b/resources/commands/websearch/command.toml @@ -14,7 +14,6 @@ ru = [ "ищи в гугл", ] en = ["google", "search google", "google for"] -ua = ["загугли", "пошукай в гугл"] [[commands]] @@ -32,7 +31,6 @@ ru = [ "ютуб поиск", ] en = ["youtube search", "search youtube", "find on youtube"] -ua = ["знайди на ютубі", "пошук на ютубі"] [[commands]] @@ -50,7 +48,6 @@ ru = [ "вики поиск", ] en = ["wikipedia search", "search wikipedia", "look up wikipedia"] -ua = ["знайди в вікіпедії", "пошук у вікіпедії"] [[commands]] @@ -68,4 +65,3 @@ ru = [ "пробей в яндекс", ] en = ["yandex search", "search yandex"] -ua = ["знайди в яндекс"] diff --git a/resources/commands/wikipedia/command.toml b/resources/commands/wikipedia/command.toml index 8971801..89a0a7e 100644 --- a/resources/commands/wikipedia/command.toml +++ b/resources/commands/wikipedia/command.toml @@ -31,10 +31,3 @@ en = [ "tell me about", "wikipedia about", ] -ua = [ - "вікіпедія", - "знайди у вікіпедії", - "що таке", - "хто такий", - "розкажи про", -] diff --git a/resources/commands/window/command.toml b/resources/commands/window/command.toml index 341c973..7a8cd5d 100644 --- a/resources/commands/window/command.toml +++ b/resources/commands/window/command.toml @@ -8,7 +8,6 @@ timeout = 3000 [commands.phrases] ru = ["покажи рабочий стол", "свернуть всё", "сверни все окна", "покажи десктоп"] en = ["show desktop", "minimize all"] -ua = ["покажи робочий стіл", "згорни всі вікна"] [[commands]] @@ -21,7 +20,6 @@ timeout = 3000 [commands.phrases] ru = ["разверни окно", "развернуть окно", "на весь экран", "раскрой окно"] en = ["maximize window", "fullscreen window"] -ua = ["розгорни вікно", "на весь екран"] [[commands]] @@ -34,7 +32,6 @@ timeout = 3000 [commands.phrases] ru = ["сверни окно", "свернуть окно", "убери окно"] en = ["minimize window"] -ua = ["згорни вікно"] [[commands]] @@ -47,7 +44,6 @@ timeout = 3000 [commands.phrases] ru = ["окно влево", "сдвинь влево", "прижми влево"] en = ["snap left", "window left"] -ua = ["вікно вліво"] [[commands]] @@ -60,7 +56,6 @@ timeout = 3000 [commands.phrases] ru = ["окно вправо", "сдвинь вправо", "прижми вправо"] en = ["snap right", "window right"] -ua = ["вікно вправо"] [[commands]] @@ -73,7 +68,6 @@ timeout = 3000 [commands.phrases] ru = ["закрой окно", "закрой вкладку", "закрой текущее", "alt f4"] en = ["close window", "close tab"] -ua = ["закрий вікно", "закрий вкладку"] [[commands]] @@ -86,7 +80,6 @@ timeout = 3000 [commands.phrases] ru = ["восстанови окна", "верни окна", "разверни окна"] en = ["restore windows", "restore all"] -ua = ["віднови вікна"] [[commands]] @@ -99,4 +92,3 @@ timeout = 3000 [commands.phrases] ru = ["открой все окна", "обзор окон", "таск вью", "покажи все окна"] en = ["task view", "show all windows"] -ua = ["показати всі вікна", "огляд вікон"] diff --git a/resources/commands/window_switch/command.toml b/resources/commands/window_switch/command.toml index 51bf570..21f692d 100644 --- a/resources/commands/window_switch/command.toml +++ b/resources/commands/window_switch/command.toml @@ -18,7 +18,3 @@ en = [ "activate window", "focus window", ] -ua = [ - "перемкни на", - "активуй вікно", -] diff --git a/resources/commands/world_clock/command.toml b/resources/commands/world_clock/command.toml index aeef0f2..c6d515c 100644 --- a/resources/commands/world_clock/command.toml +++ b/resources/commands/world_clock/command.toml @@ -15,4 +15,3 @@ ru = [ "время в", ] en = ["time in", "what time in"] -ua = ["котра година у", "скільки часу в"]