Skip to content

Commit

Permalink
fix: update call permission dialog copy (#2182)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohassine committed Sep 6, 2023
1 parent 4c2fa91 commit 58a6413
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ fun MicrophoneBTPermissionsDeniedDialog(
) {
if (shouldShow) {
WireDialog(
title = stringResource(id = R.string.call_permission_dialog_title),
title = stringResource(id = R.string.permission_dialog_title),
text = stringResource(id = R.string.call_permission_dialog_description),
onDismiss = onDismiss,
dismissButtonProperties = WireDialogButtonProperties(
onClick = onDismiss,
text = stringResource(id = R.string.label_decline),
text = stringResource(id = R.string.label_not_now),
state = WireButtonState.Default
),
optionButton1Properties = WireDialogButtonProperties(
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1164,9 +1164,9 @@
<string name="record_audio_max_file_size_reached_text">File size for audio messages is limited to %1$d MB.</string>
<string name="record_audio_unable_due_to_ongoing_call">You can’t record an audio message during a call.</string>

<string name="call_permission_dialog_title">Call on Wire</string>
<string name="call_permission_dialog_description">Allow Wire access to your microphone and bluetooth to make this call.</string>
<string name="label_decline">Decline</string>
<string name="permission_dialog_title">App permissions</string>
<string name="call_permission_dialog_description">To make a call, allow Wire to access your microphone and to find nearby devices in your device settings.</string>
<string name="label_not_now">Not Now</string>

<string name="last_message_composite_with_missing_text">sent an interactive message</string>
<string name="join_conversation_dialog_password_label">Conversation Password</string>
Expand Down

0 comments on commit 58a6413

Please sign in to comment.