Minor refine

This commit is contained in:
CzBiX
2020-12-02 19:21:39 +08:00
parent 541cf10a8b
commit b5e7e02149
2 changed files with 10 additions and 10 deletions

View File

@@ -1,16 +1,16 @@
import Polyglot from 'node-polyglot';
import en from './en';
import ru from './ru';
import zhCn from './zh-CN';
import tr from './tr';
import langEn from './en';
import langRu from './ru';
import langTr from './tr';
import langZhCn from './zh-CN';
import { loadConfig } from '@/store/config';
export const translations = {
en: en,
'zh-CN': zhCn,
'ru': ru,
'tr': tr,
en: langEn,
'ru': langRu,
'tr': langTr,
'zh-CN': langZhCn,
}
export type LocaleKey = keyof typeof translations | null;

View File

@@ -109,7 +109,7 @@ export default {
dialog: {
trigger_exit_qb: {
title: 'qBittorrent\'ten Çık',
text: 'qBittorrent uygulamasından çıkmak istediğinize emin misiniz?'
text: 'qBittorrent uygulamasından çıkmak istediğinize emin misiniz?',
},
add_torrents: {
placeholder: 'Torrentleri yüklemek için\nlinkleri buraya girin\nveya sağdaki ataç butonuna tıklayıp seçim yapın.',
@@ -167,5 +167,5 @@ export default {
active: 'Etkin',
inactive: 'Etkin Değil',
errored: 'Hata Oldu',
}
},
}