From 89d19466df2b6777d374916ddd19103f185887c6 Mon Sep 17 00:00:00 2001 From: Keng Ye Date: Thu, 29 Jul 2021 11:31:44 +0800 Subject: [PATCH] refactor: move TokensVsUtxoScreen translation to its own section --- .../screens/Balances/screens/TokensVsUtxoScreen.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/screens/AppNavigator/screens/Balances/screens/TokensVsUtxoScreen.tsx b/app/screens/AppNavigator/screens/Balances/screens/TokensVsUtxoScreen.tsx index 4826dbff3d..2716df0835 100644 --- a/app/screens/AppNavigator/screens/Balances/screens/TokensVsUtxoScreen.tsx +++ b/app/screens/AppNavigator/screens/Balances/screens/TokensVsUtxoScreen.tsx @@ -17,13 +17,13 @@ export function TokensVsUtxoScreen (): JSX.Element { > - {translate('screens/ConvertScreen', 'DFI exists in two forms – UTXO and token, which are interchangeable depending on the usage. You can easily convert between the two forms with the app.')} + {translate('screens/TokensVsUtxoScreen', 'DFI exists in two forms – UTXO and token, which are interchangeable depending on the usage. You can easily convert between the two forms with the app.')} - {translate('screens/ConvertScreen', 'UTXO DFI is the main form DFI and is used for core cryptocurrency purposes like send, receive and fees. DFI tokens are used for DeFi functions such as swaps and liquidity mining.')} + {translate('screens/TokensVsUtxoScreen', 'UTXO DFI is the main form DFI and is used for core cryptocurrency purposes like send, receive and fees. DFI tokens are used for DeFi functions such as swaps and liquidity mining.')} - {translate('screens/ConvertScreen', 'Your DFI balance includes both UTXO and tokens.')} + {translate('screens/TokensVsUtxoScreen', 'Your DFI balance includes both UTXO and tokens.')} @@ -52,7 +52,7 @@ function ComparisonTitle (props: {tokenUnit: '_UTXO' | 'DFI'}): JSX.Element { return ( - {translate('screens/ConvertScreen', label)} + {translate('screens/TokensVsUtxoScreen', label)} ) } @@ -61,7 +61,7 @@ function ComparisonRow (props: {label: string}): JSX.Element { return ( - {translate('screens/ConvertScreen', props.label)} + {translate('screens/TokensVsUtxoScreen', props.label)} ) }