@@ -54,7 +54,7 @@ A modern Svelte-based frontend for the OpenTranscribe AI-powered transcription a
5454- ** Responsive Design** - Works seamlessly across desktop and mobile
5555- ** Real-time Updates** - WebSocket integration for live transcription progress
5656- ** Dark/Light Mode** - Automatic theme switching with user preference
57- - ** Internationalization (i18n)** - UI available in 7 languages (English, Spanish, French, German, Portuguese, Chinese, Japanese)
57+ - ** Internationalization (i18n)** - UI available in 7 languages (English, Spanish, French, German, Portuguese, Chinese, Japanese, Russian )
5858- ** Advanced Upload System** - Floating, draggable upload manager with concurrent processing
5959- ** Upload Progress Tracking** - Real-time progress with estimated time remaining
6060- ** Intelligent Upload Management** - Queue control, retry logic, and duplicate detection
@@ -262,7 +262,8 @@ export const SUPPORTED_LANGUAGES = [
262262 { code: ' de' , name: ' German' , nativeName: ' Deutsch' },
263263 { code: ' pt' , name: ' Portuguese' , nativeName: ' Português' },
264264 { code: ' zh' , name: ' Chinese' , nativeName: ' 中文' },
265- { code: ' ja' , name: ' Japanese' , nativeName: ' 日本語' }
265+ { code: ' ja' , name: ' Japanese' , nativeName: ' 日本語' },
266+ { code: " ru" , name: ' Russian' , nativeName: ' Русский' },
266267];
267268export const t = derived (locale , ... ); // Translation function
268269```
@@ -271,7 +272,7 @@ export const t = derived(locale, ...); // Translation function
271272
272273### Overview
273274
274- OpenTranscribe frontend supports 7 languages with a simple, efficient i18n system.
275+ OpenTranscribe frontend supports 8 languages with a simple, efficient i18n system.
275276
276277### Supported Languages
277278
@@ -282,6 +283,7 @@ OpenTranscribe frontend supports 7 languages with a simple, efficient i18n syste
282283- ** Portuguese** (pt) - Português
283284- ** Chinese** (zh) - 中文
284285- ** Japanese** (ja) - 日本語
286+ - ** Russian** (ru) - Русский
285287
286288### Usage in Components
287289
0 commit comments