diff --git a/apps/wallet-mobile/ios/Podfile.lock b/apps/wallet-mobile/ios/Podfile.lock index 9adeb1bc5c..8efec1c935 100644 --- a/apps/wallet-mobile/ios/Podfile.lock +++ b/apps/wallet-mobile/ios/Podfile.lock @@ -821,7 +821,7 @@ SPEC CHECKSUMS: amplitude-react-native: 1ea3d5e1f80ccc357dd178c55c29e51c89f1cd11 boost: 57d2868c099736d80fcd648bf211b4431e51a558 BVLinearGradient: e3aad03778a456d77928f594a649e96995f1c872 - DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953 + DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 EXApplication: d8f53a7eee90a870a75656280e8d4b85726ea903 EXBarCodeScanner: 8e23fae8d267dbef9f04817833a494200f1fce35 EXCamera: 0fbfa338a3776af2722d626a3437abe33f708aad @@ -838,7 +838,7 @@ SPEC CHECKSUMS: FBLazyVector: 12ea01e587c9594e7b144e1bfc86ac4d9ac28fde FBReactNativeSpec: faca7d16c37626ca5780a87adef703817722fe61 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2 + glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b hermes-engine: d7cc127932c89c53374452d6f93473f1970d8e88 libaom: 144606b1da4b5915a1054383c3a4459ccdb3c661 libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7 diff --git a/apps/wallet-mobile/src/components/AmountItem/AmountItem.tsx b/apps/wallet-mobile/src/components/AmountItem/AmountItem.tsx index 260e3a473d..883a0d464a 100644 --- a/apps/wallet-mobile/src/components/AmountItem/AmountItem.tsx +++ b/apps/wallet-mobile/src/components/AmountItem/AmountItem.tsx @@ -16,7 +16,7 @@ export type AmountItemProps = { wallet: YoroiWallet amount: Balance.Amount style?: ViewProps['style'] - isPrivacyOff?: boolean + isPrivacyActive?: boolean status?: string inWallet?: boolean variant?: 'swap' @@ -25,7 +25,7 @@ export type AmountItemProps = { } export const AmountItem = ({ - isPrivacyOff, + isPrivacyActive, wallet, style, amount, @@ -84,7 +84,7 @@ export const AmountItem = ({ {priceImpactRisk === 'high' && } - {isPrivacyOff ? '**.*******' : formattedQuantity} + {isPrivacyActive ? '**.*******' : formattedQuantity} )} diff --git a/apps/wallet-mobile/src/components/HideableText/HideableText.tsx b/apps/wallet-mobile/src/components/HideableText/HideableText.tsx index 3749ca7f48..f3f716efe6 100644 --- a/apps/wallet-mobile/src/components/HideableText/HideableText.tsx +++ b/apps/wallet-mobile/src/components/HideableText/HideableText.tsx @@ -9,8 +9,8 @@ type Props = TextProps & { } export const HideableText = ({text, ...props}: Props) => { - const {isPrivacyOn} = usePrivacyMode() - const children = isPrivacyOn ? text : text?.replaceAll(/./g, '\u25CF') + const {isPrivacyActive} = usePrivacyMode() + const children = !isPrivacyActive ? text : text?.replaceAll(/./g, '\u25CF') return {children} } diff --git a/apps/wallet-mobile/src/components/PairedBalance/PairedBalance.tsx b/apps/wallet-mobile/src/components/PairedBalance/PairedBalance.tsx index 1626cf2ed1..e82e32db23 100644 --- a/apps/wallet-mobile/src/components/PairedBalance/PairedBalance.tsx +++ b/apps/wallet-mobile/src/components/PairedBalance/PairedBalance.tsx @@ -43,17 +43,17 @@ export const PairedBalance = React.forwardRef(({amount, te const Price = ({amount, textStyle, ignorePrivacy}: Props) => { const styles = useStyles() const wallet = useSelectedWallet() - const {isPrivacyOff, privacyPlaceholder} = usePrivacyMode() + const {isPrivacyActive, privacyPlaceholder} = usePrivacyMode() const {currency, config} = useCurrencyContext() const rate = useExchangeRate({wallet, to: currency}) const price = React.useMemo(() => { if (rate == null) return `... ${currency}` - return isPrivacyOff || ignorePrivacy + return !isPrivacyActive || ignorePrivacy === true ? `${amountBreakdown(amount).bn.times(rate).toFormat(config.decimals)} ${currency}` : `${privacyPlaceholder} ${currency}` - }, [amount, config.decimals, currency, ignorePrivacy, isPrivacyOff, privacyPlaceholder, rate]) + }, [amount, config.decimals, currency, ignorePrivacy, isPrivacyActive, privacyPlaceholder, rate]) return ( diff --git a/apps/wallet-mobile/src/features/Portfolio/common/TokenAmountItem/TokenAmountItem.tsx b/apps/wallet-mobile/src/features/Portfolio/common/TokenAmountItem/TokenAmountItem.tsx index 8823106ff8..59c15b3336 100644 --- a/apps/wallet-mobile/src/features/Portfolio/common/TokenAmountItem/TokenAmountItem.tsx +++ b/apps/wallet-mobile/src/features/Portfolio/common/TokenAmountItem/TokenAmountItem.tsx @@ -33,7 +33,7 @@ export const TokenAmountItem = ({ orderType, }: TokenAmountItemProps) => { const {styles, colors} = useStyles() - const {privacyPlaceholder, isPrivacyOff} = usePrivacyMode() + const {privacyPlaceholder, isPrivacyActive} = usePrivacyMode() const priceImpactRiskTheme = usePriceImpactRiskTheme(priceImpactRisk ?? 'none') const {info} = amount @@ -41,7 +41,7 @@ export const TokenAmountItem = ({ const detail = isPrimary ? info.description : info.fingerprint const name = infoExtractName(info) - const formattedQuantity = isPrivacyOff || ignorePrivacy ? amountFormatter()(amount) : privacyPlaceholder + const formattedQuantity = !isPrivacyActive && ignorePrivacy == true ? amountFormatter()(amount) : privacyPlaceholder const showSwapDetails = !isPrimary && variant === 'swap' const priceImpactRiskTextColor = orderType === 'market' ? priceImpactRiskTheme.text : colors.text diff --git a/apps/wallet-mobile/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.tsx b/apps/wallet-mobile/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.tsx index 39591e6c32..26a6bd4999 100644 --- a/apps/wallet-mobile/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.tsx +++ b/apps/wallet-mobile/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.tsx @@ -26,7 +26,7 @@ export const ApplicationSettingsScreen = () => { const {languageCode, supportedLanguages} = useLanguage() const language = supportedLanguages.find((lang) => lang.code === languageCode) ?? defaultLanguage - const {isTogglePrivacyModeLoading, isPrivacyOff} = usePrivacyMode() + const {isTogglePrivacyModeLoading, isPrivacyActive} = usePrivacyMode() const {currency} = useCurrencyContext() const {enabled: crashReportEnabled} = useCrashReports() @@ -119,7 +119,7 @@ export const ApplicationSettingsScreen = () => { label={strings.privacyMode} info={strings.privacyModeInfo} > - + { } // to avoid switch jumps -const PrivacyModeSwitch = ({isPrivacyOff}: {isPrivacyOff: boolean}) => { +const PrivacyModeSwitch = ({isPrivacyActive}: {isPrivacyActive: boolean}) => { const {setPrivacyModeOn, setPrivacyModeOff, isTogglePrivacyModeLoading} = usePrivacyMode() - const [isLocalPrivacyOff, setIsLocalPrivacyOff] = React.useState(isPrivacyOff) + const [isLocalPrivacyActive, setIsLocalPrivacyOff] = React.useState(isPrivacyActive) const onTogglePrivacyMode = () => { setIsLocalPrivacyOff((prevState) => { @@ -182,7 +182,7 @@ const PrivacyModeSwitch = ({isPrivacyOff}: {isPrivacyOff: boolean}) => { return ( diff --git a/apps/wallet-mobile/src/features/Settings/ManageCollateral/ManageCollateralScreen.tsx b/apps/wallet-mobile/src/features/Settings/ManageCollateral/ManageCollateralScreen.tsx index ef56fa645c..9cbd34ee1e 100644 --- a/apps/wallet-mobile/src/features/Settings/ManageCollateral/ManageCollateralScreen.tsx +++ b/apps/wallet-mobile/src/features/Settings/ManageCollateral/ManageCollateralScreen.tsx @@ -187,14 +187,14 @@ type ActionableAmountProps = { } const ActionableAmount = ({amount, onRemove, wallet, collateralId, disabled}: ActionableAmountProps) => { const {styles} = useStyles() - const {isPrivacyOff} = usePrivacyMode() + const {isPrivacyActive} = usePrivacyMode() const handleRemove = () => onRemove() return ( - + {collateralId !== '' && ( diff --git a/apps/wallet-mobile/src/features/Settings/PrivacyMode/PrivacyMode.tsx b/apps/wallet-mobile/src/features/Settings/PrivacyMode/PrivacyMode.tsx index c951ff1cba..bc20c3631c 100644 --- a/apps/wallet-mobile/src/features/Settings/PrivacyMode/PrivacyMode.tsx +++ b/apps/wallet-mobile/src/features/Settings/PrivacyMode/PrivacyMode.tsx @@ -62,8 +62,7 @@ export const usePrivacyMode = () => { const writePrivacyMode = useWritePrivacyMode() return { - isPrivacyOff: privacyMode === 'HIDDEN', - isPrivacyOn: privacyMode === 'SHOWN', + isPrivacyActive: privacyMode === 'HIDDEN', privacyMode, togglePrivacyMode, isTogglePrivacyModeLoading, diff --git a/apps/wallet-mobile/src/legacy/Dashboard/UserSummary.tsx b/apps/wallet-mobile/src/legacy/Dashboard/UserSummary.tsx index 63562fb638..7411ed89d5 100644 --- a/apps/wallet-mobile/src/legacy/Dashboard/UserSummary.tsx +++ b/apps/wallet-mobile/src/legacy/Dashboard/UserSummary.tsx @@ -25,7 +25,7 @@ export const UserSummary = ({totalAdaSum, totalRewards, totalDelegated, onWithdr const styles = useStyles() const strings = useStrings() const wallet = useSelectedWallet() - const {isPrivacyOn} = usePrivacyMode() + const {isPrivacyActive} = usePrivacyMode() return ( @@ -40,7 +40,7 @@ export const UserSummary = ({totalAdaSum, totalRewards, totalDelegated, onWithdr {strings.availableFunds}: - {isPrivacyOn + {!isPrivacyActive ? totalAdaSum != null ? formatAdaWithText(asQuantity(totalAdaSum), wallet.primaryToken) : '-' @@ -58,7 +58,7 @@ export const UserSummary = ({totalAdaSum, totalRewards, totalDelegated, onWithdr {strings.rewardsLabel}: - {isPrivacyOn + {!isPrivacyActive ? totalRewards != null ? formatAdaWithText(asQuantity(totalRewards), wallet.primaryToken) : '-' @@ -88,7 +88,7 @@ export const UserSummary = ({totalAdaSum, totalRewards, totalDelegated, onWithdr {strings.delegatedLabel}: - {isPrivacyOn + {!isPrivacyActive ? totalDelegated != null ? formatAdaWithText(asQuantity(totalDelegated), wallet.primaryToken) : '-' diff --git a/apps/wallet-mobile/src/legacy/TxHistory/AssetList/AssetList.tsx b/apps/wallet-mobile/src/legacy/TxHistory/AssetList/AssetList.tsx index 9cfb6c5628..7a2a077ecc 100644 --- a/apps/wallet-mobile/src/legacy/TxHistory/AssetList/AssetList.tsx +++ b/apps/wallet-mobile/src/legacy/TxHistory/AssetList/AssetList.tsx @@ -65,10 +65,10 @@ type ExplorableAssetItemProps = AmountItemProps & { } const ExplorableAssetItem = ({wallet, amount, onPress}: ExplorableAssetItemProps) => { const styles = useStyles() - const {isPrivacyOff} = usePrivacyMode() + const {isPrivacyActive} = usePrivacyMode() return ( - + ) } diff --git a/apps/wallet-mobile/src/legacy/TxHistory/BalanceBanner.tsx b/apps/wallet-mobile/src/legacy/TxHistory/BalanceBanner.tsx index b349aad464..3362677f1e 100644 --- a/apps/wallet-mobile/src/legacy/TxHistory/BalanceBanner.tsx +++ b/apps/wallet-mobile/src/legacy/TxHistory/BalanceBanner.tsx @@ -42,15 +42,17 @@ export const BalanceBanner = React.forwardRef((_, ref) => { type BalanceProps = {amount: Portfolio.Token.Amount; ignorePrivacy?: boolean} const Balance = ({amount, ignorePrivacy}: BalanceProps) => { - const {isPrivacyOff, privacyPlaceholder} = usePrivacyMode() + const {isPrivacyActive, privacyPlaceholder} = usePrivacyMode() const styles = useStyles() + console.log('ignorePrivacy', ignorePrivacy) + const balance = React.useMemo( () => - isPrivacyOff || ignorePrivacy + !isPrivacyActive || ignorePrivacy === true ? amountFormatter({template: '{{value}} {{ticker}}'})(amount) : amountFormatter({template: `${privacyPlaceholder} {{ticker}}`})(amount), - [amount, ignorePrivacy, isPrivacyOff, privacyPlaceholder], + [amount, ignorePrivacy, isPrivacyActive, privacyPlaceholder], ) return ( diff --git a/apps/wallet-mobile/src/legacy/TxHistory/LockedDeposit.tsx b/apps/wallet-mobile/src/legacy/TxHistory/LockedDeposit.tsx index 1bb8dfd4a1..36af3c428e 100644 --- a/apps/wallet-mobile/src/legacy/TxHistory/LockedDeposit.tsx +++ b/apps/wallet-mobile/src/legacy/TxHistory/LockedDeposit.tsx @@ -12,12 +12,12 @@ import globalMessages from '../../kernel/i18n/global-messages' export const LockedDeposit = ({ignorePrivacy = false}: {ignorePrivacy?: boolean}) => { const wallet = useSelectedWallet() - const {isPrivacyOff, privacyPlaceholder} = usePrivacyMode() + const {isPrivacyActive, privacyPlaceholder} = usePrivacyMode() const {lockedAsStorageCost} = usePortfolioPrimaryBreakdown({wallet}) const amount = React.useMemo( () => - isPrivacyOff || ignorePrivacy + !isPrivacyActive || !ignorePrivacy ? amountFormatter({template: '{{value}} {{ticker}}'})({ quantity: lockedAsStorageCost, info: wallet.portfolioPrimaryTokenInfo, @@ -26,7 +26,7 @@ export const LockedDeposit = ({ignorePrivacy = false}: {ignorePrivacy?: boolean} quantity: 0n, info: wallet.portfolioPrimaryTokenInfo, }), - [ignorePrivacy, isPrivacyOff, lockedAsStorageCost, privacyPlaceholder, wallet.portfolioPrimaryTokenInfo], + [ignorePrivacy, isPrivacyActive, lockedAsStorageCost, privacyPlaceholder, wallet.portfolioPrimaryTokenInfo], ) return diff --git a/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/AssetList.tsx b/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/AssetList.tsx index 06b853fef1..de0b952b5c 100644 --- a/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/AssetList.tsx +++ b/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/AssetList.tsx @@ -56,7 +56,7 @@ type AssetRowProps = { const AssetRow = ({styles, entry, backColor, onSelect}: AssetRowProps) => { const intl = useIntl() const wallet = useSelectedWallet() - const {isPrivacyOn, privacyPlaceholder} = usePrivacyMode() + const {isPrivacyActive, privacyPlaceholder} = usePrivacyMode() const tokenInfo = useTokenInfo({wallet, tokenId: entry.identifier}) const isPrimary = tokenInfo.id === wallet.primaryTokenInfo.id const primaryTicker = wallet.primaryTokenInfo.ticker @@ -75,7 +75,7 @@ const AssetRow = ({styles, entry, backColor, onSelect}: AssetRowProps) => { - {isPrivacyOn ? privacyPlaceholder : formatTokenAmount(asQuantity(entry.amount), tokenInfo)} + {isPrivacyActive ? privacyPlaceholder : formatTokenAmount(asQuantity(entry.amount), tokenInfo)} diff --git a/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/TxDetails.tsx b/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/TxDetails.tsx index baf7f3a56d..300e6de989 100644 --- a/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/TxDetails.tsx +++ b/apps/wallet-mobile/src/legacy/TxHistory/TxDetails/TxDetails.tsx @@ -197,10 +197,10 @@ const Label = ({children}: {children: string}) => { const AdaAmount = ({amount}: {amount: BigNumber}) => { const wallet = useSelectedWallet() const {styles} = useStyles() - const {isPrivacyOn, privacyPlaceholder} = usePrivacyMode() + const {isPrivacyActive, privacyPlaceholder} = usePrivacyMode() const amountStyle = amount.gte(0) ? styles.positiveAmount : styles.negativeAmount - if (isPrivacyOn) { + if (isPrivacyActive) { return {privacyPlaceholder} } diff --git a/apps/wallet-mobile/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.tsx b/apps/wallet-mobile/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.tsx index d762fa2de1..4ac3a6afbb 100644 --- a/apps/wallet-mobile/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.tsx +++ b/apps/wallet-mobile/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.tsx @@ -115,7 +115,7 @@ const Middle = ({style, ...props}: ViewProps) => ( const Right = ({style, ...props}: ViewProps) => const Amount = ({wallet, transaction}: {wallet: YoroiWallet; transaction: TransactionInfo}) => { const {styles} = useStyles() - const {isPrivacyOff, privacyPlaceholder} = usePrivacyMode() + const {isPrivacyActive, privacyPlaceholder} = usePrivacyMode() const amountAsMT = MultiToken.fromArray(transaction.amount) const amount: BigNumber = amountAsMT.getDefault() const fee = transaction.fee ? transaction.fee[0] : null @@ -129,10 +129,10 @@ const Amount = ({wallet, transaction}: {wallet: YoroiWallet; transaction: Transa return ( - {isPrivacyOff && formatTokenInteger(asQuantity(amount), wallet.primaryToken)} + {!isPrivacyActive && formatTokenInteger(asQuantity(amount), wallet.primaryToken)} - {isPrivacyOff ? formatTokenFractional(asQuantity(amount), wallet.primaryToken) : privacyPlaceholder} + {!isPrivacyActive ? formatTokenFractional(asQuantity(amount), wallet.primaryToken) : privacyPlaceholder} diff --git a/apps/wallet-mobile/translations/messages/src/components/PairedBalance/PairedBalance.json b/apps/wallet-mobile/translations/messages/src/components/PairedBalance/PairedBalance.json index 63b4de02b0..6adb27a21f 100644 --- a/apps/wallet-mobile/translations/messages/src/components/PairedBalance/PairedBalance.json +++ b/apps/wallet-mobile/translations/messages/src/components/PairedBalance/PairedBalance.json @@ -6,12 +6,12 @@ "start": { "line": 74, "column": 22, - "index": 2559 + "index": 2578 }, "end": { "line": 77, "column": 3, - "index": 2691 + "index": 2710 } } ] \ No newline at end of file diff --git a/apps/wallet-mobile/translations/messages/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.json b/apps/wallet-mobile/translations/messages/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.json index 44b37624d2..366382b60e 100644 --- a/apps/wallet-mobile/translations/messages/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.json +++ b/apps/wallet-mobile/translations/messages/src/features/Settings/ApplicationSettings/ApplicationSettingsScreen.json @@ -6,12 +6,12 @@ "start": { "line": 252, "column": 11, - "index": 8896 + "index": 8920 }, "end": { "line": 255, "column": 3, - "index": 9006 + "index": 9030 } }, { @@ -21,12 +21,12 @@ "start": { "line": 256, "column": 21, - "index": 9029 + "index": 9053 }, "end": { "line": 259, "column": 3, - "index": 9162 + "index": 9186 } }, { @@ -36,12 +36,12 @@ "start": { "line": 260, "column": 18, - "index": 9182 + "index": 9206 }, "end": { "line": 263, "column": 3, - "index": 9294 + "index": 9318 } }, { @@ -51,12 +51,12 @@ "start": { "line": 264, "column": 15, - "index": 9311 + "index": 9335 }, "end": { "line": 267, "column": 3, - "index": 9417 + "index": 9441 } }, { @@ -66,12 +66,12 @@ "start": { "line": 268, "column": 22, - "index": 9441 + "index": 9465 }, "end": { "line": 271, "column": 3, - "index": 9562 + "index": 9586 } }, { @@ -81,12 +81,12 @@ "start": { "line": 272, "column": 9, - "index": 9573 + "index": 9597 }, "end": { "line": 275, "column": 3, - "index": 9673 + "index": 9697 } }, { @@ -96,12 +96,12 @@ "start": { "line": 276, "column": 18, - "index": 9693 + "index": 9717 }, "end": { "line": 279, "column": 3, - "index": 9820 + "index": 9844 } }, { @@ -111,12 +111,12 @@ "start": { "line": 280, "column": 13, - "index": 9835 + "index": 9859 }, "end": { "line": 283, "column": 3, - "index": 9944 + "index": 9968 } }, { @@ -126,12 +126,12 @@ "start": { "line": 284, "column": 15, - "index": 9961 + "index": 9985 }, "end": { "line": 287, "column": 3, - "index": 10074 + "index": 10098 } }, { @@ -141,12 +141,12 @@ "start": { "line": 288, "column": 19, - "index": 10095 + "index": 10119 }, "end": { "line": 291, "column": 3, - "index": 10256 + "index": 10280 } }, { @@ -156,12 +156,12 @@ "start": { "line": 292, "column": 20, - "index": 10278 + "index": 10302 }, "end": { "line": 295, "column": 3, - "index": 10412 + "index": 10436 } }, { @@ -171,12 +171,12 @@ "start": { "line": 296, "column": 24, - "index": 10438 + "index": 10462 }, "end": { "line": 299, "column": 3, - "index": 10621 + "index": 10645 } }, { @@ -186,12 +186,12 @@ "start": { "line": 300, "column": 18, - "index": 10641 + "index": 10665 }, "end": { "line": 303, "column": 3, - "index": 10772 + "index": 10796 } }, { @@ -201,12 +201,12 @@ "start": { "line": 304, "column": 22, - "index": 10796 + "index": 10820 }, "end": { "line": 307, "column": 3, - "index": 10977 + "index": 11001 } }, { @@ -216,12 +216,12 @@ "start": { "line": 308, "column": 13, - "index": 10992 + "index": 11016 }, "end": { "line": 311, "column": 3, - "index": 11100 + "index": 11124 } }, { @@ -231,12 +231,12 @@ "start": { "line": 312, "column": 17, - "index": 11119 + "index": 11143 }, "end": { "line": 315, "column": 3, - "index": 11236 + "index": 11260 } }, { @@ -246,12 +246,12 @@ "start": { "line": 316, "column": 17, - "index": 11255 + "index": 11279 }, "end": { "line": 319, "column": 3, - "index": 11378 + "index": 11402 } }, { @@ -261,12 +261,12 @@ "start": { "line": 320, "column": 21, - "index": 11401 + "index": 11425 }, "end": { "line": 324, "column": 3, - "index": 11619 + "index": 11643 } } ] \ No newline at end of file diff --git a/apps/wallet-mobile/translations/messages/src/legacy/Dashboard/UserSummary.json b/apps/wallet-mobile/translations/messages/src/legacy/Dashboard/UserSummary.json index 027c78cc3f..2e953924a7 100644 --- a/apps/wallet-mobile/translations/messages/src/legacy/Dashboard/UserSummary.json +++ b/apps/wallet-mobile/translations/messages/src/legacy/Dashboard/UserSummary.json @@ -6,12 +6,12 @@ "start": { "line": 164, "column": 9, - "index": 4872 + "index": 4891 }, "end": { "line": 167, "column": 3, - "index": 4974 + "index": 4993 } }, { @@ -21,12 +21,12 @@ "start": { "line": 168, "column": 16, - "index": 4992 + "index": 5011 }, "end": { "line": 171, "column": 3, - "index": 5102 + "index": 5121 } }, { @@ -36,12 +36,12 @@ "start": { "line": 172, "column": 18, - "index": 5122 + "index": 5141 }, "end": { "line": 175, "column": 3, - "index": 5236 + "index": 5255 } }, { @@ -51,12 +51,12 @@ "start": { "line": 176, "column": 23, - "index": 5261 + "index": 5280 }, "end": { "line": 179, "column": 3, - "index": 5373 + "index": 5392 } } ] \ No newline at end of file diff --git a/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/AssetList.json b/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/AssetList.json index d8cb27cdfd..0f04144121 100644 --- a/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/AssetList.json +++ b/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/AssetList.json @@ -6,12 +6,12 @@ "start": { "line": 96, "column": 20, - "index": 3465 + "index": 3473 }, "end": { "line": 99, "column": 3, - "index": 3558 + "index": 3566 } } ] \ No newline at end of file diff --git a/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/TxDetails.json b/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/TxDetails.json index 7ff4f82a27..02b420efd2 100644 --- a/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/TxDetails.json +++ b/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxDetails/TxDetails.json @@ -6,12 +6,12 @@ "start": { "line": 350, "column": 8, - "index": 12289 + "index": 12297 }, "end": { "line": 353, "column": 3, - "index": 12384 + "index": 12392 } }, { @@ -21,12 +21,12 @@ "start": { "line": 354, "column": 12, - "index": 12398 + "index": 12406 }, "end": { "line": 357, "column": 3, - "index": 12501 + "index": 12509 } }, { @@ -36,12 +36,12 @@ "start": { "line": 358, "column": 8, - "index": 12511 + "index": 12519 }, "end": { "line": 361, "column": 3, - "index": 12619 + "index": 12627 } }, { @@ -51,12 +51,12 @@ "start": { "line": 362, "column": 9, - "index": 12630 + "index": 12638 }, "end": { "line": 365, "column": 3, - "index": 12739 + "index": 12747 } }, { @@ -66,12 +66,12 @@ "start": { "line": 369, "column": 24, - "index": 12803 + "index": 12811 }, "end": { "line": 372, "column": 3, - "index": 12904 + "index": 12912 } }, { @@ -81,12 +81,12 @@ "start": { "line": 373, "column": 23, - "index": 12929 + "index": 12937 }, "end": { "line": 376, "column": 3, - "index": 13030 + "index": 13038 } }, { @@ -96,12 +96,12 @@ "start": { "line": 377, "column": 24, - "index": 13056 + "index": 13064 }, "end": { "line": 380, "column": 3, - "index": 13159 + "index": 13167 } }, { @@ -111,12 +111,12 @@ "start": { "line": 381, "column": 7, - "index": 13168 + "index": 13176 }, "end": { "line": 384, "column": 3, - "index": 13251 + "index": 13259 } }, { @@ -126,12 +126,12 @@ "start": { "line": 385, "column": 17, - "index": 13270 + "index": 13278 }, "end": { "line": 388, "column": 3, - "index": 13372 + "index": 13380 } }, { @@ -141,12 +141,12 @@ "start": { "line": 389, "column": 15, - "index": 13389 + "index": 13397 }, "end": { "line": 392, "column": 3, - "index": 13487 + "index": 13495 } }, { @@ -156,12 +156,12 @@ "start": { "line": 393, "column": 8, - "index": 13497 + "index": 13505 }, "end": { "line": 396, "column": 3, - "index": 13580 + "index": 13588 } }, { @@ -171,12 +171,12 @@ "start": { "line": 397, "column": 17, - "index": 13599 + "index": 13607 }, "end": { "line": 400, "column": 3, - "index": 13701 + "index": 13709 } }, { @@ -186,12 +186,12 @@ "start": { "line": 401, "column": 20, - "index": 13723 + "index": 13731 }, "end": { "line": 404, "column": 3, - "index": 13841 + "index": 13849 } }, { @@ -201,12 +201,12 @@ "start": { "line": 405, "column": 17, - "index": 13860 + "index": 13868 }, "end": { "line": 408, "column": 3, - "index": 14009 + "index": 14017 } }, { @@ -216,12 +216,12 @@ "start": { "line": 409, "column": 16, - "index": 14027 + "index": 14035 }, "end": { "line": 412, "column": 3, - "index": 14176 + "index": 14184 } }, { @@ -231,12 +231,12 @@ "start": { "line": 413, "column": 18, - "index": 14196 + "index": 14204 }, "end": { "line": 416, "column": 3, - "index": 14277 + "index": 14285 } } ] \ No newline at end of file diff --git a/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.json b/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.json index 21b5505156..54e4fdb70f 100644 --- a/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.json +++ b/apps/wallet-mobile/translations/messages/src/legacy/TxHistory/TxHistoryList/TxHistoryListItem.json @@ -6,12 +6,12 @@ "start": { "line": 183, "column": 7, - "index": 6329 + "index": 6340 }, "end": { "line": 186, "column": 3, - "index": 6418 + "index": 6429 } }, { @@ -21,12 +21,12 @@ "start": { "line": 187, "column": 23, - "index": 6443 + "index": 6454 }, "end": { "line": 190, "column": 3, - "index": 6553 + "index": 6564 } }, { @@ -36,12 +36,12 @@ "start": { "line": 191, "column": 27, - "index": 6582 + "index": 6593 }, "end": { "line": 194, "column": 3, - "index": 6700 + "index": 6711 } }, { @@ -51,12 +51,12 @@ "start": { "line": 195, "column": 23, - "index": 6725 + "index": 6736 }, "end": { "line": 198, "column": 3, - "index": 6838 + "index": 6849 } }, { @@ -66,12 +66,12 @@ "start": { "line": 199, "column": 24, - "index": 6864 + "index": 6875 }, "end": { "line": 202, "column": 3, - "index": 6977 + "index": 6988 } }, { @@ -82,12 +82,12 @@ "start": { "line": 203, "column": 10, - "index": 6989 + "index": 7000 }, "end": { "line": 207, "column": 3, - "index": 7141 + "index": 7152 } } ] \ No newline at end of file