From 7eb16ddaff01a150cd4d81b859f6ea58ccf39584 Mon Sep 17 00:00:00 2001 From: Tangem Date: Fri, 20 Sep 2024 14:37:30 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../impl/model/converters/InsightsConverter.kt | 8 ++++---- .../impl/model/converters/MetricsConverter.kt | 16 ++++++++++------ 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/InsightsConverter.kt b/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/InsightsConverter.kt index adb9f89f72..fb93bd86a2 100644 --- a/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/InsightsConverter.kt +++ b/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/InsightsConverter.kt @@ -77,7 +77,7 @@ internal class InsightsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_experienced_buyers), + title = resourceReference(R.string.markets_token_details_experienced_buyers_full), body = resourceReference(R.string.markets_token_details_experienced_buyers_description), ), ) @@ -92,7 +92,7 @@ internal class InsightsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_buy_pressure), + title = resourceReference(R.string.markets_token_details_buy_pressure_full), body = resourceReference(R.string.markets_token_details_buy_pressure_description), ), ) @@ -107,7 +107,7 @@ internal class InsightsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_holders), + title = resourceReference(R.string.markets_token_details_holders_full), body = resourceReference(R.string.markets_token_details_holders_description), ), ) @@ -122,7 +122,7 @@ internal class InsightsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_liquidity), + title = resourceReference(R.string.markets_token_details_liquidity_full), body = resourceReference(R.string.markets_token_details_liquidity_description), ), ) diff --git a/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/MetricsConverter.kt b/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/MetricsConverter.kt index 5cd11e6cd3..3501ff40f5 100644 --- a/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/MetricsConverter.kt +++ b/features/markets/impl/src/main/kotlin/com/tangem/features/markets/details/impl/model/converters/MetricsConverter.kt @@ -32,7 +32,9 @@ internal class MetricsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_market_capitalization), + title = resourceReference( + R.string.markets_token_details_market_capitalization_full, + ), body = resourceReference( R.string.markets_token_details_market_capitalization_description, ), @@ -46,7 +48,7 @@ internal class MetricsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_market_rating), + title = resourceReference(R.string.markets_token_details_market_rating_full), body = resourceReference(R.string.markets_token_details_market_rating_description), ), ) @@ -58,7 +60,7 @@ internal class MetricsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_trading_volume), + title = resourceReference(R.string.markets_token_details_trading_volume_full), body = resourceReference( R.string.markets_token_details_trading_volume_24h_description, ), @@ -72,7 +74,9 @@ internal class MetricsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_fully_diluted_valuation), + title = resourceReference( + R.string.markets_token_details_fully_diluted_valuation_full, + ), body = resourceReference( R.string.markets_token_details_fully_diluted_valuation_description, ), @@ -86,7 +90,7 @@ internal class MetricsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_circulating_supply), + title = resourceReference(R.string.markets_token_details_circulating_supply_full), body = resourceReference( R.string.markets_token_details_circulating_supply_description, ), @@ -100,7 +104,7 @@ internal class MetricsConverter( onInfoClick = { onInfoClick( InfoBottomSheetContent( - title = resourceReference(R.string.markets_token_details_total_supply), + title = resourceReference(R.string.markets_token_details_total_supply_full), body = resourceReference(R.string.markets_token_details_total_supply_description), ), )