Skip to content

Commit

Permalink
feat: new translation Russian
Browse files Browse the repository at this point in the history
  • Loading branch information
Crissium committed Feb 15, 2024
1 parent 166bac0 commit cece92f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions client/src/l10n.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import LocalizedStrings from 'react-localization';
import { RTL_LANGS } from './config';
import enGB from './translations/en-GB.json';
import enUS from './translations/en-US.json';
import ruRU from './translations/ru-RU.json';
import zhCN from './translations/zh-CN.json';

export const localisedStrings = new LocalizedStrings({
'en-GB': enGB,
'en-US': enUS,
'ru-RU': ruRU,
'zh-CN': zhCN
});

Expand Down
2 changes: 1 addition & 1 deletion server/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
project_directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
windows_save_path = os.path.join(os.path.dirname(project_directory), 'SilverDict-windows.zip')
unix_save_path = os.path.join(project_directory, 'SilverDict.zip')
current_version = 'v1.0.0'
current_version = 'v1.1.0'


def _get_latest_version_and_release_note() -> tuple[str, str]:
Expand Down

0 comments on commit cece92f

Please sign in to comment.