From 4fbc4458e7bcd8e4e36cb62db8bb6f821ef231a7 Mon Sep 17 00:00:00 2001 From: TigerxWood Date: Thu, 28 May 2020 23:47:18 +0300 Subject: [PATCH] Made texts translatable Texts will be translated now --- ui/component/splash/view.jsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ui/component/splash/view.jsx b/ui/component/splash/view.jsx index dbbbc04fa..23084f814 100644 --- a/ui/component/splash/view.jsx +++ b/ui/component/splash/view.jsx @@ -170,24 +170,24 @@ export default class SplashScreen extends React.PureComponent { this.setState({ waitingForSync: this.state.waitingForSync + UPDATE_INTERVAL / 1000 }); if (this.state.waitingForSync < MAX_SYNC_WAIT) { this.setState({ - message: 'Loading Wallet', - details: 'Updating wallet data...', + message: __('Loading Wallet'), + details: __('Updating wallet data...'), }); } else { this.setState({ - message: 'Loading Wallet', + message: __('Loading Wallet'), details: ( -
Large account history
-
Please wait...
+
__('Large account history')
+
__('Please wait...')
), }); } } else if (wallet && !status.is_running && startupStatus.database) { this.setState({ - message: 'Finalizing', - details: 'Almost ready...', + message: __('Finalizing'), + details: __('Almost ready...'), }); } @@ -307,7 +307,7 @@ export default class SplashScreen extends React.PureComponent { +