mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 12:09:45 +01:00
Merge pull request #3793 from nextcloud/bugfix/3770/translateMoreBooleansInDiagnosisScreen
translate all boolean values in diagnosis screen
This commit is contained in:
commit
2c8d5f50cc
@ -261,10 +261,18 @@ class DiagnoseActivity : BaseActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
addKey(context.resources.getString(R.string.nc_diagnose_notification_calls_channel_permission))
|
addKey(context.resources.getString(R.string.nc_diagnose_notification_calls_channel_permission))
|
||||||
addValue(NotificationUtils.isCallsNotificationChannelEnabled(this).toString())
|
addValue(
|
||||||
|
translateBoolean(
|
||||||
|
NotificationUtils.isCallsNotificationChannelEnabled(this)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
addKey(context.resources.getString(R.string.nc_diagnose_notification_messages_channel_permission))
|
addKey(context.resources.getString(R.string.nc_diagnose_notification_messages_channel_permission))
|
||||||
addValue(NotificationUtils.isMessagesNotificationChannelEnabled(this).toString())
|
addValue(
|
||||||
|
translateBoolean(
|
||||||
|
NotificationUtils.isMessagesNotificationChannelEnabled(this)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
addKey(context.resources.getString(R.string.nc_diagnose_firebase_push_token_title))
|
addKey(context.resources.getString(R.string.nc_diagnose_firebase_push_token_title))
|
||||||
if (appPreferences.pushToken.isNullOrEmpty()) {
|
if (appPreferences.pushToken.isNullOrEmpty()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user