diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2022-01-28 15:44:31 +0900 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2022-01-28 15:44:31 +0900 |
| commit | 3db78e367b392271a35a545dc2dfada93bf217bb (patch) | |
| tree | 3e993f37ae8dc2d0f460858ae68f65321991d127 /packages/client/src/init.ts | |
| parent | Merge branch 'develop' into pizzax-indexeddb (diff) | |
| parent | round relative time (#8199) (diff) | |
| download | sharkey-3db78e367b392271a35a545dc2dfada93bf217bb.tar.gz sharkey-3db78e367b392271a35a545dc2dfada93bf217bb.tar.bz2 sharkey-3db78e367b392271a35a545dc2dfada93bf217bb.zip | |
Merge branch 'develop' into pizzax-indexeddb
Diffstat (limited to 'packages/client/src/init.ts')
| -rw-r--r-- | packages/client/src/init.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/client/src/init.ts b/packages/client/src/init.ts index bdd07b63a7..9b670b4300 100644 --- a/packages/client/src/init.ts +++ b/packages/client/src/init.ts @@ -188,7 +188,7 @@ app.config.globalProperties = { $store: defaultStore, $instance: instance, $t: i18n.t, - $ts: i18n.locale, + $ts: i18n.ts, }; app.use(router); @@ -305,8 +305,8 @@ stream.on('_disconnected_', async () => { reloadDialogShowing = true; const { canceled } = await confirm({ type: 'warning', - title: i18n.locale.disconnectedFromServer, - text: i18n.locale.reloadConfirm, + title: i18n.ts.disconnectedFromServer, + text: i18n.ts.reloadConfirm, }); reloadDialogShowing = false; if (!canceled) { @@ -330,7 +330,7 @@ if ($i) { if ($i.isDeleted) { alert({ type: 'warning', - text: i18n.locale.accountDeletionInProgress, + text: i18n.ts.accountDeletionInProgress, }); } |