Release 0.2.0 (594) (#1330)

This commit is contained in:
Honza Rychnovský 2024-04-09 16:20:17 +02:00 committed by GitHub
parent c6aac62070
commit c9308546ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 3 deletions

View File

@ -9,7 +9,7 @@ directly impact users rather than highlighting other key architectural updates.*
## [Unreleased]
## [0.2.0 (593)] - 2024-04-09
## [0.2.0 (594)] - 2024-04-09
### Added
- Advanced Settings screen that provides more technical options like Export private data, Recovery phrase, or

View File

@ -77,7 +77,11 @@ data class WalletDisplayValues(
context.getString(R.string.balances_status_error_detailed_connection)
)
} else {
statusText = context.getString(R.string.balances_status_error_simple)
statusText =
context.getString(
R.string.balances_status_error_simple,
context.getString(R.string.app_name)
)
}
}
Synchronizer.Status.STOPPED -> {
@ -99,7 +103,11 @@ data class WalletDisplayValues(
?: context.getString(R.string.balances_status_error_detailed_unknown)
)
} else {
statusText = context.getString(R.string.balances_status_error_simple)
statusText =
context.getString(
R.string.balances_status_error_simple,
context.getString(R.string.app_name)
)
}
}