Voice typing in Ukrainian — that actually works

Most voice dictation apps treat Ukrainian as one of "100+ supported languages," which usually means it kind of works, with persistent quirks: lost apostrophes, English words inserted mid-sentence, LLM cleanup that translates Ukrainian into Russian "thinking it's fixing it." Hovor doesn't train its own speech models, but we pick the strongest open ones for European languages and engineer the surrounding pipeline (prompts, dictionary, UI) so Ukrainian quality stops being an afterthought.

Last updated: 19 July 2026

Why Ukrainian voice typing is hard for most apps

Ukrainian speech recognition lags English mainly because there is far less high-quality training audio available, and because many older datasets mislabeled Ukrainian recordings as Russian, degrading the training signal further. That data gap shows up as predictable failures: transliterated names, dropped apostrophes and soft signs, English capitalization rules applied to Ukrainian text, and LLM cleanup that translates instead of formats.

The result: most cloud STT services support Ukrainian on paper, but the quality lags 1–2 generations behind English. Common failure modes:

What Hovor does differently for Ukrainian

Hovor doesn't train speech or language models: NVIDIA built Parakeet v3, OpenAI built Whisper. What Hovor built itself is the engineering around them — a system prompt (hovor-server/prompt.go) that blocks unwanted translation and corrects Russian/Belarusian character bleed-through, a custom dictionary for names, and a fully native Ukrainian UI and support channel.

1. We default to Parakeet v3, the strongest open model for Ukrainian we've found

Parakeet v3 (NVIDIA, 600 million parameters) was trained on 25 European languages — including Russian — with explicit balancing across them, per NVIDIA's published model card (verified 19 July 2026). Ukrainian audio gets the same training attention as German or French; on the FLEURS benchmark, NVIDIA reports 6.79% WER for Ukrainian. That's NVIDIA's engineering decision, not ours, but it's the reason we chose this model as Hovor's default.

More important than benchmarks: in real Ukrainian dictation, Parakeet preserves apostrophes (м'ясо, об'єкт), keeps soft signs (день, тінь), and follows Ukrainian capitalization rules rather than English ones. We didn't engineer that behaviour (NVIDIA did, by training on properly labeled Ukrainian data), but we did the work of evaluating which open model handles those quirks best.

2. Prompt engineering that prevents unwanted translation (this part is ours)

When Hovor uses an LLM for the cleanup pass (gpt-4o-mini on the server, Apple Foundation Models on iOS/macOS 26+, or your own BYOK provider), the system prompt explicitly instructs the model to preserve the source language and never translate unless translation is the explicit user request. This single guard removes the most common Ukrainian failure mode: gpt-4o-mini deciding to "translate" a Ukrainian phrase into Russian or English mid-cleanup.

The prompt also calls out Ukrainian-specific rules: keep apostrophes, follow Ukrainian capitalization, preserve regional variants, don't substitute Russian-derived alternatives. This is engineering work we did ourselves, in hovor-server/prompt.go, and we keep refining it as failure cases come in.

3. Custom dictionary that handles names

Voice models routinely mishear personal names, place names, and technical terms. Hovor's custom dictionary lets you map variant transcriptions to the canonical form: Кирило|Кирилл|Cyril → Кирило, Київ|Киев → Київ, Львів|Львов → Львів. The dictionary is shared with the LLM cleanup stage as a hint, so the model learns your preferences mid-session.

4. UI in Ukrainian, not Google Translate Ukrainian

The Hovor app interface is professionally translated into Ukrainian. Onboarding, settings, error messages, support pages: all native UA copy, not machine-translated. Same for the cabinet on hovor.app and the system templates.

5. Support that responds in Ukrainian

The developer (Kyrylo, based in Kyiv) handles support directly. Ukrainian users get responses in Ukrainian, usually within 24 hours. No outsourced offshore support team that doesn't understand the linguistic context.

Українською: коротко про Hovor

Hovor — це додаток для голосового вводу для iPhone та Mac, побудований навколо української мови як основної. На відміну від Wispr Flow або Superwhisper, де українська — один із багатьох "підтримуваних" мов, в Hovor українська — це основна мова дизайну. (Клієнт для Windows зараз переписується — скоро.)

Транскрипція може відбуватися на пристрої через Parakeet v3 (NVIDIA, 0.6B параметрів) — це означає що ваш голос не покидає телефон. Диктовка на пристрої має власну безкоштовну тижневу квоту, а з одноразовим Local Unlock стає необмеженою.

Системна клавіатура iOS працює в усіх додатках — Messages, Notes, Telegram, Slack, банківські застосунки. Натискаєте мікрофон, говорите, отримуєте чистий текст у тому полі де писали.

Безкоштовний тариф достатній для більшості користувачів. Pro коштує $11.99/міс або $89.99/рік.

Languages Hovor handles well

Hovor's on-device Parakeet v3 transcribes 25 languages with balanced training, Ukrainian included at the same weight as German or French. Everything outside that list — Chinese, Japanese, Korean, Arabic, Hebrew, Turkish, Vietnamese, Thai, Indonesian, Hindi, and Norwegian — falls back to Hovor's cloud Whisper Large V3 Turbo path, which needs network connectivity. Apple Foundation Models (iOS/macOS 26+) handle the cleanup pass for both.

Belarusian isn't in Parakeet's 25-language set at all, so it also falls back to cloud Whisper. Russian is included in Parakeet's training and is a selectable language in Hovor, but our positioning and support still prioritize Ukrainian — see the FAQ below for how Hovor handles Russian-looking output when your language list is Ukrainian-only.

How accurate is it really?

On NVIDIA's own FLEURS benchmark, Parakeet v3 scores 6.79% word error rate for Ukrainian, per the published model card (verified 19 July 2026). That's a controlled lab measurement, not a guarantee for your voice, accent, or recording environment. Hovor's internal testing on Ukrainian news articles, novels, technical documentation, and casual conversation shows roughly 95–97% word accuracy on standard Ukrainian, dropping on heavy dialect or extreme code-switching.

Honest disclosure: no universal "it works X% of the time" claim survives contact with your specific use case. What you can do: install the free tier (no credit card, generous on-device quota) and dictate three real paragraphs of your typical content. If accuracy isn't good enough, uninstall; no commitment. The cleanup pass (LLM) bumps perceived quality further by fixing punctuation and capitalization.

Comparison: dictating in Ukrainian on different platforms

Across five widely used voice-typing paths, Hovor is the only one built with explicit Ukrainian-language balancing in its training data (Parakeet v3, 25 languages) rather than general multilingual dictation tuned mainly for English. The table below compares transcription quality claims, privacy model, and iPhone keyboard support; see the Ukrainian-specific handling table further down for apostrophes, soft signs, and capitalization.

PlatformUA qualityPrivacyiPhone keyboard
Apple system DictationNot independently rated by Apple per languageOn-device where available; not guaranteed for every language or modeYes (built-in)
Google Voice TypingNot independently rated by Google per languageCloudVia Gboard
Wispr FlowListed; not Ukrainian-tunedCloud (OpenAI/Meta)Yes
SuperwhisperWhisper baselineLocal + cloud optionsLimited
Hovor25-language balanced training (Parakeet v3), 6.79% FLEURS WER for UkrainianOn-device by defaultSystem-wide
Notta / Voice InCloud, English-biasedCloudBrowser only

Competitor behaviour verified on 19 July 2026.

Ukrainian-specific handling: apostrophes, soft signs, capitalization, on-device

Vendors rarely publish per-feature results for a single language, so most rows below can't be sourced beyond what each company states on its own site. Hovor's claims come from NVIDIA's Parakeet v3 model card and Hovor's own prompt engineering (hovor-server/prompt.go); everything else is marked as not published where no vendor source exists.

FeatureHovor (Parakeet v3)Apple DictationWindows Voice Access
Apostrophes (м'ясо, об'єкт)Preserved — NVIDIA-trained on native Ukrainian textNot published by AppleNot published by Microsoft
Soft signs (день, тінь)PreservedNot publishedNot published
Ukrainian capitalization rulesApplied, not English rulesNot publishedNot published
On-device processingDefault, offline-capableAvailable, user-verifiable in Keyboard settings; not guaranteed for every language or modeOn-device after a one-time language-pack download (Microsoft-stated), Windows 11 22H2+

Competitor behaviour verified on 19 July 2026.

Use cases where Hovor's Ukrainian support genuinely helps

Ukrainian voice typing pays off most for people writing long-form text daily: journalists and writers drafting articles, students taking lecture notes, developers with RSI dictating comments and commit messages, bilingual professionals switching between Ukrainian and English mid-day, and anyone typing messages longer than a sentence on a phone keyboard.

Writers and journalists

If you draft articles, blog posts, or essays in Ukrainian, dictating is 3–5× faster than typing. Hovor's long-form recording (no 6-min cap), AI cleanup, and on-device privacy work for this use case without compromise.

Students and academics

Lecture notes, essay drafts, research summaries: Ukrainian academic prose is verbose, and dictating saves hours. Free tier covers most students' weekly use; Pro for heavy users.

RSI / accessibility

50–70% of programmers face RSI at some point. For Ukrainian-speaking devs, Hovor + a Ukrainian custom dictionary (your function names, library names, project nouns) gets you usable hands-free dictation in your native language.

Professionals dictating in Ukrainian and English

Lawyers, doctors, consultants, managers who switch between Ukrainian and English mid-day. Hovor's auto-language-detection (with workflow per-app rules) handles the switch automatically.

Anyone whose phone screen feels too small

Composing long Telegram or Signal messages, replying to emails, writing Notes: voice is faster than thumbs, especially in Ukrainian where sentences are typically longer.

Privacy: why it matters specifically for Ukrainian users

Hovor treats Ukrainian voice data as high-risk by default: on-device transcription is the default (with the model loaded, audio is not uploaded; while it is still loading, that recording falls back to server transcription), cloud STT audio is discarded immediately with zero server-side storage, the backend runs in Frankfurt (Oracle Cloud EU), and Russia and Belarus are excluded from the App Store availability list. The developer is Ukrainian, based in Kyiv.

Ukrainian voice data has an unfortunate history: training datasets that misclassified UA as RU, recordings ending up with Russian-tied service providers, voice prints in commercial products without clear consent. Hovor's privacy model is engineered for users who care:

Pricing

The free tier (2,000 cloud words/week plus a free weekly on-device quota) covers most casual dictation; Pro ($11.99/mo or $89.99/yr) removes the cloud cap for power users; three one-time unlocks (Local $49.99, BYOK $24.99, Bundle $69.99) remove usage limits permanently instead of via subscription.

PriceWhat you get
Free$02000 cloud words/week + a free weekly on-device quota
Pro Monthly$11.99Unlimited words, 5 devices, priority support
Pro Yearly$89.99~$7.50/mo billed annually
Local Unlock (one-time)$49.99 / 1999 UAHUnlimited offline dictation + unlimited dictionary/snippets/workflows
BYOK Unlock (one-time)$24.99 / 999 UAHUse your own OpenAI/Anthropic/custom keys forever
Local + BYOK Bundle$69.99 / 2799 UAHBoth unlocks, ~$5 cheaper than separately

The free tier includes 2000 cloud words/week plus a free weekly quota for on-device transcription on iPhone and Mac (Parakeet v3). For most students and casual writers, Free is enough. Pro is for power users who want unlimited cloud access, sync across 5 devices, and priority support. The one-time unlocks are family-shareable and sold on both the App Store (iOS) and Monobank web (macOS). BYOK keys (OpenAI, Anthropic, or any custom OpenAI-compatible endpoint like Ollama, LM Studio, vLLM) stay in your Keychain and never pass through Hovor's server.

How to get started

Getting started takes under two minutes: download Hovor, sign in, enable the system keyboard, and start dictating in Ukrainian anywhere text can be typed. The five steps below cover setup end to end, including how to add custom dictionary entries for names Hovor might mishear.

  1. Download Hovor from the App Store on iPhone, or get the macOS DMG at hovor.app. (A Windows client is being rebuilt and is coming soon.)
  2. Sign in with Apple or Google.
  3. On iPhone, enable the Hovor keyboard: Settings → General → Keyboards → Add New Keyboard → Hovor → Allow Full Access.
  4. Switch to the Hovor keyboard in any text field, hit the microphone, speak Ukrainian.
  5. Add your custom dictionary entries (names, places, terms) for higher accuracy.

FAQ

Чи підтримує Hovor суржик?

Технічно — так, Parakeet v3 розпізнає змішану мовлення, але результат буде непередбачуваним. Краще диктувати або українською, або англійською, не змішуючи в одному реченні.

Does Hovor work without internet for Ukrainian?

Yes. On-device Parakeet v3 handles speech, and Apple Foundation Models (iOS/macOS 26+) handle cleanup, so the full pipeline runs offline. iPhones without enough RAM (under 4 GB) fall back to cloud Whisper, which requires connectivity.

Чи можу я використовувати Hovor для журналістської роботи?

Так. Конфігурація, рекомендована для журналістів: speech model = Parakeet v3 (на пристрої), cleanup model = Apple Foundation Models (iOS 26+) або вимкнений (raw transcript). Коли модель на пристрої завантажена, розпізнавання виконується цілком на пристрої, і аудіо не надсилається; якщо модель ще завантажується, цей запис обробляється на сервері. Зберігайте транскрипти локально, синхронізуйте лише словник.

Will Hovor add Russian support?

Yes, technically — Russian is one of the 25 languages in NVIDIA's Parakeet v3 training set, and it's a selectable language in Hovor's settings, so dictation works the same as for any other language. What's different is the default safety net: if your language list includes Ukrainian but not Russian, Hovor treats Russian-looking recognizer output as likely misrecognition and auto-corrects it to Ukrainian (hovor-server/prompt.go). Add Russian to your language list in Settings if you actually want to dictate in it. Hovor's product positioning and support still prioritize Ukrainian.

Як купити Pro з України?

Через App Store (картка, Apple Pay) — стандартні Apple ціни, можливо перевід валюти. Або через сайт hovor.app — Monobank приймає українські картки в гривні. Pro-підписка та одноразові розблокування (Local Unlock 1999 ₴, BYOK Unlock 999 ₴, бандл 2799 ₴) доступні через Monobank.

Try Hovor in Ukrainian today

Free tier, no credit card, a generous on-device quota. iPhone and Mac (Windows coming soon).

Get Hovor

Wispr Flow alternative · Superwhisper alternative · Українською