2026-02-18 21:08:48 +05:00
|
|
|
|
# APP INFO
|
2026-01-07 05:04:04 +05:00
|
|
|
|
app-name = JARVIS
|
|
|
|
|
|
app-description = Голосовой ассистент
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# TRAY MENU
|
2026-01-07 05:04:04 +05:00
|
|
|
|
tray-restart = Перезапустить
|
|
|
|
|
|
tray-settings = Настройки
|
|
|
|
|
|
tray-exit = Выход
|
|
|
|
|
|
tray-tooltip = JARVIS - Голосовой ассистент
|
2026-02-18 21:08:48 +05:00
|
|
|
|
tray-language = Язык
|
|
|
|
|
|
tray-voice = Голос
|
|
|
|
|
|
tray-wake-word = Движок wake-word
|
|
|
|
|
|
tray-noise-suppression = Шумоподавление
|
|
|
|
|
|
tray-vad = Детекция голоса (VAD)
|
|
|
|
|
|
tray-gain-normalizer = Нормализация громкости
|
|
|
|
|
|
|
|
|
|
|
|
# HEADER
|
2026-01-07 05:04:04 +05:00
|
|
|
|
header-commands = КОМАНДЫ
|
|
|
|
|
|
header-settings = НАСТРОЙКИ
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# SEARCH
|
2026-01-07 05:04:04 +05:00
|
|
|
|
search-placeholder = Введите команду вручную или произнесите «Джарвис» ...
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# MAIN PAGE
|
2026-01-07 05:04:04 +05:00
|
|
|
|
assistant-not-running = АССИСТЕНТ НЕ ЗАПУЩЕН
|
|
|
|
|
|
assistant-offline-hint = Настроить его можно не запуская.
|
|
|
|
|
|
btn-start = ЗАПУСТИТЬ
|
|
|
|
|
|
btn-starting = ЗАПУСК...
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# STATUS
|
2026-01-07 05:04:04 +05:00
|
|
|
|
status-disconnected = Отключен
|
|
|
|
|
|
status-standby = Ожидание
|
|
|
|
|
|
status-listening = Слушаю...
|
|
|
|
|
|
status-processing = Обработка...
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# STATS
|
2026-01-07 05:04:04 +05:00
|
|
|
|
stats-microphone = МИКРОФОН
|
|
|
|
|
|
stats-neural-networks = НЕЙРОСЕТИ
|
|
|
|
|
|
stats-resources = РЕСУРСЫ
|
|
|
|
|
|
stats-system-default = Системный
|
|
|
|
|
|
stats-not-selected = Не выбран
|
|
|
|
|
|
stats-loading = Загрузка...
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# FOOTER
|
chore(gui): rebrand — strip TG/Boosty/Patreon/feedback-bot, keep CC BY-NC-SA attribution
The previous feature/gui-rebrand-polish work only updated the appInfo store
keys; Footer.svelte, settings, and the commands page were still rendering
upstream's Telegram channel, Boosty/Patreon support links, feedback bot,
and the original author byline. This finishes the job.
Rust side (applies after `cargo build` — currently a no-op until MSVC Build
Tools are reinstalled):
- Cargo.toml: authors = ["Bossiara13"], repository = J.A.R.V.I.S-rust fork.
Original attribution stays in LICENSE.txt per CC BY-NC-SA 4.0; the UI
no longer renders an author byline.
- config.rs: dropped TG_OFFICIAL_LINK / FEEDBACK_LINK / SUPPORT_BOOSTY_LINK
/ SUPPORT_PATREON_LINK. Added UPSTREAM_REPOSITORY_LINK (Priler/jarvis for
the licence attribution), ISSUES_LINK (this fork's GH issues), and
PYTHON_FORK_LINK.
- tauri_commands/etc.rs: dropped get_tg_official_link/get_boosty_link/
get_patreon_link/get_feedback_link. Added get_upstream_link, get_issues_link,
get_python_fork_link. Tidied up the Option<&str> -> String boilerplate
with unwrap_or.
- main.rs: invoke_handler updated to match.
Frontend side (visible only after Rust rebuild — Tauri bundles the dist into
the exe):
- stores.ts: appInfo shape reduced to repositoryLink / upstreamLink /
issuesLink / pythonForkLink / logFilePath. loadAppInfo() uses fetchOr()
with hardcoded fallbacks so the UI still populates correctly when run
against an un-rebuilt binary; fetchRepoOr() additionally overrides
CARGO_PKG_REPOSITORY if it still resolves to upstream's Priler/jarvis.
- Footer.svelte: rewritten — © year + "J.A.R.V.I.S." + repo link + issues
link + small "fork of Priler/jarvis · CC BY-NC-SA 4.0" attribution line.
No author byline (it's in LICENSE.txt).
- routes/settings/index.svelte: feedback link now points to GitHub Issues.
- routes/commands/index.svelte: TG-channel reference replaced with a link
to the Python fork (where the command builder lives) plus a pointer to
resources/commands/ in this repo. Bruh GIF removed.
- locales/{ru,en,ua}.ftl: removed footer-author / footer-telegram /
footer-support, added footer-issues / footer-fork-of, rewrote
commands-wip-* strings, retargeted settings-beta-bot to "GitHub Issues".
Bundle identifier (com.priler.jarvis) kept intact to avoid moving the app
data directory.
2026-05-15 01:09:14 +03:00
|
|
|
|
footer-github = Репозиторий проекта
|
|
|
|
|
|
footer-issues = Сообщить о баге
|
|
|
|
|
|
footer-fork-of = Форк
|
2026-01-07 05:04:04 +05:00
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# SETTINGS
|
2026-01-07 05:04:04 +05:00
|
|
|
|
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 = Голос ассистента
|
2026-01-07 23:29:46 +05:00
|
|
|
|
settings-voice-desc =
|
|
|
|
|
|
Не все команды работают со всеми звуковыми пакетами.
|
|
|
|
|
|
Кликните, чтобы прослушать как звучит голос.
|
2026-01-07 05:04:04 +05:00
|
|
|
|
settings-wake-word-engine = Движок активации
|
|
|
|
|
|
settings-wake-word-desc = Выберите нейросеть для распознавания активационной фразы.
|
|
|
|
|
|
settings-stt-engine = Распознавание речи
|
|
|
|
|
|
settings-intent-engine = Определение намерения
|
|
|
|
|
|
settings-intent-engine-desc = Выберите нейросеть для распознавания команд.
|
|
|
|
|
|
settings-noise-suppression = Шумоподавление
|
2026-01-08 00:35:21 +05:00
|
|
|
|
settings-noise-suppression-desc = Уменьшает фоновый шум. Может негативно влиять на распознавание.
|
2026-01-07 05:04:04 +05:00
|
|
|
|
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 = Часть функций может работать некорректно.
|
chore(gui): rebrand — strip TG/Boosty/Patreon/feedback-bot, keep CC BY-NC-SA attribution
The previous feature/gui-rebrand-polish work only updated the appInfo store
keys; Footer.svelte, settings, and the commands page were still rendering
upstream's Telegram channel, Boosty/Patreon support links, feedback bot,
and the original author byline. This finishes the job.
Rust side (applies after `cargo build` — currently a no-op until MSVC Build
Tools are reinstalled):
- Cargo.toml: authors = ["Bossiara13"], repository = J.A.R.V.I.S-rust fork.
Original attribution stays in LICENSE.txt per CC BY-NC-SA 4.0; the UI
no longer renders an author byline.
- config.rs: dropped TG_OFFICIAL_LINK / FEEDBACK_LINK / SUPPORT_BOOSTY_LINK
/ SUPPORT_PATREON_LINK. Added UPSTREAM_REPOSITORY_LINK (Priler/jarvis for
the licence attribution), ISSUES_LINK (this fork's GH issues), and
PYTHON_FORK_LINK.
- tauri_commands/etc.rs: dropped get_tg_official_link/get_boosty_link/
get_patreon_link/get_feedback_link. Added get_upstream_link, get_issues_link,
get_python_fork_link. Tidied up the Option<&str> -> String boilerplate
with unwrap_or.
- main.rs: invoke_handler updated to match.
Frontend side (visible only after Rust rebuild — Tauri bundles the dist into
the exe):
- stores.ts: appInfo shape reduced to repositoryLink / upstreamLink /
issuesLink / pythonForkLink / logFilePath. loadAppInfo() uses fetchOr()
with hardcoded fallbacks so the UI still populates correctly when run
against an un-rebuilt binary; fetchRepoOr() additionally overrides
CARGO_PKG_REPOSITORY if it still resolves to upstream's Priler/jarvis.
- Footer.svelte: rewritten — © year + "J.A.R.V.I.S." + repo link + issues
link + small "fork of Priler/jarvis · CC BY-NC-SA 4.0" attribution line.
No author byline (it's in LICENSE.txt).
- routes/settings/index.svelte: feedback link now points to GitHub Issues.
- routes/commands/index.svelte: TG-channel reference replaced with a link
to the Python fork (where the command builder lives) plus a pointer to
resources/commands/ in this repo. Bruh GIF removed.
- locales/{ru,en,ua}.ftl: removed footer-author / footer-telegram /
footer-support, added footer-issues / footer-fork-of, rewrote
commands-wip-* strings, retargeted settings-beta-bot to "GitHub Issues".
Bundle identifier (com.priler.jarvis) kept intact to avoid moving the app
data directory.
2026-05-15 01:09:14 +03:00
|
|
|
|
settings-beta-feedback = Сообщайте обо всех найденных багах через
|
|
|
|
|
|
settings-beta-bot = GitHub Issues
|
2026-01-07 05:04:04 +05:00
|
|
|
|
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)
|
2026-01-13 02:21:59 +05:00
|
|
|
|
settings-vosk-model-desc =
|
|
|
|
|
|
Выберите модель Vosk для распознавания речи.
|
|
|
|
|
|
Вы можете скачать модели здесь: https://alphacephei.com/vosk/models
|
2026-01-07 05:04:04 +05:00
|
|
|
|
settings-models-not-found = Модели не найдены
|
|
|
|
|
|
settings-models-hint = Поместите модели Vosk в папку resources/vosk
|
|
|
|
|
|
|
|
|
|
|
|
# settings - openai
|
|
|
|
|
|
settings-openai-key = Ключ OpenAI
|
|
|
|
|
|
settings-openai-not-supported = В данный момент ChatGPT не поддерживается. Он будет добавлен в ближайших обновлениях.
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# COMMANDS PAGE
|
2026-01-07 05:04:04 +05:00
|
|
|
|
commands-title = Команды
|
|
|
|
|
|
commands-search = Поиск команд...
|
|
|
|
|
|
commands-count = { $count } команд
|
chore(gui): rebrand — strip TG/Boosty/Patreon/feedback-bot, keep CC BY-NC-SA attribution
The previous feature/gui-rebrand-polish work only updated the appInfo store
keys; Footer.svelte, settings, and the commands page were still rendering
upstream's Telegram channel, Boosty/Patreon support links, feedback bot,
and the original author byline. This finishes the job.
Rust side (applies after `cargo build` — currently a no-op until MSVC Build
Tools are reinstalled):
- Cargo.toml: authors = ["Bossiara13"], repository = J.A.R.V.I.S-rust fork.
Original attribution stays in LICENSE.txt per CC BY-NC-SA 4.0; the UI
no longer renders an author byline.
- config.rs: dropped TG_OFFICIAL_LINK / FEEDBACK_LINK / SUPPORT_BOOSTY_LINK
/ SUPPORT_PATREON_LINK. Added UPSTREAM_REPOSITORY_LINK (Priler/jarvis for
the licence attribution), ISSUES_LINK (this fork's GH issues), and
PYTHON_FORK_LINK.
- tauri_commands/etc.rs: dropped get_tg_official_link/get_boosty_link/
get_patreon_link/get_feedback_link. Added get_upstream_link, get_issues_link,
get_python_fork_link. Tidied up the Option<&str> -> String boilerplate
with unwrap_or.
- main.rs: invoke_handler updated to match.
Frontend side (visible only after Rust rebuild — Tauri bundles the dist into
the exe):
- stores.ts: appInfo shape reduced to repositoryLink / upstreamLink /
issuesLink / pythonForkLink / logFilePath. loadAppInfo() uses fetchOr()
with hardcoded fallbacks so the UI still populates correctly when run
against an un-rebuilt binary; fetchRepoOr() additionally overrides
CARGO_PKG_REPOSITORY if it still resolves to upstream's Priler/jarvis.
- Footer.svelte: rewritten — © year + "J.A.R.V.I.S." + repo link + issues
link + small "fork of Priler/jarvis · CC BY-NC-SA 4.0" attribution line.
No author byline (it's in LICENSE.txt).
- routes/settings/index.svelte: feedback link now points to GitHub Issues.
- routes/commands/index.svelte: TG-channel reference replaced with a link
to the Python fork (where the command builder lives) plus a pointer to
resources/commands/ in this repo. Bruh GIF removed.
- locales/{ru,en,ua}.ftl: removed footer-author / footer-telegram /
footer-support, added footer-issues / footer-fork-of, rewrote
commands-wip-* strings, retargeted settings-beta-bot to "GitHub Issues".
Bundle identifier (com.priler.jarvis) kept intact to avoid moving the app
data directory.
2026-05-15 01:09:14 +03:00
|
|
|
|
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/
|
2026-01-07 05:04:04 +05:00
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# ERRORS
|
2026-01-07 05:04:04 +05:00
|
|
|
|
error-generic = Произошла ошибка
|
|
|
|
|
|
error-connection = Ошибка подключения
|
|
|
|
|
|
error-not-found = Не найдено
|
|
|
|
|
|
|
2026-02-18 21:08:48 +05:00
|
|
|
|
# NOTIFICATIONS
|
2026-01-07 05:04:04 +05:00
|
|
|
|
notification-saved = Настройки сохранены!
|
|
|
|
|
|
notification-error = Ошибка
|
|
|
|
|
|
notification-assistant-started = Ассистент запущен
|
|
|
|
|
|
notification-assistant-stopped = Ассистент остановлен
|
2026-01-07 23:29:46 +05:00
|
|
|
|
|
2026-02-11 07:21:50 +05:00
|
|
|
|
# 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 не найдены.
|
|
|
|
|
|
|
2026-01-07 23:29:46 +05:00
|
|
|
|
# ETC
|
|
|
|
|
|
search-error-not-running = Ассистент не запущен
|
|
|
|
|
|
search-error-failed = Не удалось выполнить команду
|
|
|
|
|
|
settings-no-voices = Голоса не найдены
|