Skip to content

Commit 466f200

Browse files
committed
Fix typo
1 parent 0ed34ec commit 466f200

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

library/ui-strings/src/main/res/values/strings.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1729,8 +1729,8 @@
17291729
<string name="create_room_public_title">"Public"</string>
17301730
<string name="create_room_public_description">"Anyone will be able to join this room"</string>
17311731
<string name="create_room_federation_error">"The room has been created, but some invitations have not been sent for the following reason:\n\n%s"</string>
1732-
<string name="create_room_unknow_users_dialog_content">Unable to find profiles for the Matrix IDs listed below. Would you like to start a chat anyway?\n\n%s</string>
1733-
<string name="create_room_unknow_users_dialog_submit">Start chat anyway</string>
1732+
<string name="create_room_unknown_users_dialog_content">Unable to find profiles for the Matrix IDs listed below. Would you like to start a chat anyway?\n\n%s</string>
1733+
<string name="create_room_unknown_users_dialog_submit">Start chat anyway</string>
17341734

17351735
<string name="keys_backup_unable_to_get_trust_info">"An error occurred getting trust info"</string>
17361736
<string name="keys_backup_unable_to_get_keys_backup_data">"An error occurred getting keys backup data"</string>
@@ -2746,8 +2746,8 @@
27462746
<item quantity="other">Invitations sent to %1$s and %2$d more</item>
27472747
</plurals>
27482748
<string name="invite_users_to_room_failure">We could not invite users. Please check the users you want to invite and try again.</string>
2749-
<string name="invite_unknow_users_dialog_content">Unable to find profiles for the Matrix IDs listed below. Would you like to invite them anyway?\n\n%s</string>
2750-
<string name="invite_unknow_users_dialog_submit">Invite anyway</string>
2749+
<string name="invite_unknown_users_dialog_content">Unable to find profiles for the Matrix IDs listed below. Would you like to invite them anyway?\n\n%s</string>
2750+
<string name="invite_unknown_users_dialog_submit">Invite anyway</string>
27512751

27522752
<string name="user_code_scan">Scan a QR code</string>
27532753
<string name="user_code_share">Share my code</string>

vector/src/main/java/im/vector/app/features/createdirect/CreateDirectRoomActivity.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ class CreateDirectRoomActivity : SimpleFragmentActivity() {
167167
} else {
168168
MaterialAlertDialogBuilder(this)
169169
.setTitle(R.string.dialog_title_confirmation)
170-
.setMessage(getString(R.string.create_room_unknow_users_dialog_content, unknownUsers.joinToString("\n", "") { it.getMxId() }))
171-
.setPositiveButton(R.string.create_room_unknow_users_dialog_submit) { _, _ ->
170+
.setMessage(getString(R.string.create_room_unknown_users_dialog_content, unknownUsers.joinToString("\n", "") { it.getMxId() }))
171+
.setPositiveButton(R.string.create_room_unknown_users_dialog_submit) { _, _ ->
172172
viewModel.handle(CreateDirectRoomAction.PrepareRoomWithSelectedUsers(action.selections))
173173
}
174174
.setNegativeButton(R.string.action_cancel, null)

vector/src/main/java/im/vector/app/features/invite/InviteUsersToRoomActivity.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ class InviteUsersToRoomActivity : SimpleFragmentActivity() {
101101
} else {
102102
MaterialAlertDialogBuilder(this)
103103
.setTitle(R.string.dialog_title_confirmation)
104-
.setMessage(getString(R.string.invite_unknow_users_dialog_content, unknownUsers.joinToString("\n", "") { it.getMxId() }))
105-
.setPositiveButton(R.string.invite_unknow_users_dialog_submit) { _, _ ->
104+
.setMessage(getString(R.string.invite_unknown_users_dialog_content, unknownUsers.joinToString("\n", "") { it.getMxId() }))
105+
.setPositiveButton(R.string.invite_unknown_users_dialog_submit) { _, _ ->
106106
viewModel.handle(InviteUsersToRoomAction.InviteSelectedUsers(action.selections))
107107
}
108108
.setNegativeButton(R.string.action_cancel, null)

0 commit comments

Comments
 (0)