diff --git a/Riot/Assets/de.lproj/Bwi.strings b/Riot/Assets/de.lproj/Bwi.strings index c1d8ef60a..6ca93b9ea 100644 --- a/Riot/Assets/de.lproj/Bwi.strings +++ b/Riot/Assets/de.lproj/Bwi.strings @@ -148,6 +148,9 @@ "room_participants_action_set_admin" = "Mache zum Administrator"; "room_participants_action_permalink" = "Nutzer teilen"; "room_event_action_permalink" = "Nachricht teilen"; +"bwi_room_participants_section_admin" = "Admin"; +"bwi_room_participants_section_moderator" = "Moderator"; +"bwi_room_participants_section_member" = "Mitglied"; // MARK: - Settings @@ -419,7 +422,7 @@ "bwi_rolls_and_rights_ban" = "Nutzer entfernen"; "bwi_rolls_and_rights_admin" = "Admin"; "bwi_rolls_and_rights_moderator" = "Moderator"; -"bwi_rolls_and_rights_user" = "Standard"; +"bwi_rolls_and_rights_user" = "Mitglied"; "bwi_rolls_and_rights_reset_button" = "Werte zurücksetzen"; "bwi_rolls_and_rights_reset_title" = "Bist du sicher, dass die Rechteeinstellungen dieses Raumes zurück gesetzt werden sollen?"; "bwi_rolls_and_rights_reset_cancel" = "Abbruch"; diff --git a/Riot/Assets/en.lproj/Bwi.strings b/Riot/Assets/en.lproj/Bwi.strings index 6fcb616de..fce3075b4 100644 --- a/Riot/Assets/en.lproj/Bwi.strings +++ b/Riot/Assets/en.lproj/Bwi.strings @@ -118,6 +118,9 @@ "room_participants_cant_leave_prompt_message" = "You cannot leave the room because there are no other admins in the room."; "room_participants_action_permalink" = "Share user"; +"bwi_room_participants_section_admin" = "Admin"; +"bwi_room_participants_section_moderator" = "Moderator"; +"bwi_room_participants_section_member" = "Member"; // MARK: - Settings @@ -292,7 +295,7 @@ "bwi_rolls_and_rights_ban" = "Remove members (kick, ban)"; "bwi_rolls_and_rights_admin" = "Admin"; "bwi_rolls_and_rights_moderator" = "Moderator"; -"bwi_rolls_and_rights_user" = "Default"; +"bwi_rolls_and_rights_user" = "Member"; "bwi_rolls_and_rights_reset_button" = "Reset to default"; "bwi_rolls_and_rights_reset_title" = "Are you sure that you want to reset the permission settings?"; "bwi_rolls_and_rights_reset_cancel" = "Cancel"; diff --git a/Riot/Modules/Room/Members/RoomParticipantsViewController.m b/Riot/Modules/Room/Members/RoomParticipantsViewController.m index 2e626b6b7..37d8b28b9 100644 --- a/Riot/Modules/Room/Members/RoomParticipantsViewController.m +++ b/Riot/Modules/Room/Members/RoomParticipantsViewController.m @@ -1216,13 +1216,13 @@ headerLabel.text = [VectorL10n roomParticipantsInvitedSection]; } else if (section == adminSection) { - headerLabel.text = NSLocalizedStringFromTable(@"bwi_room_participants_section_admin", @"Vector", nil); + headerLabel.text = NSLocalizedStringFromTable(@"bwi_room_participants_section_admin", @"Bwi", nil); } else if (section == modSection) { - headerLabel.text = NSLocalizedStringFromTable(@"bwi_room_participants_section_moderator", @"Vector", nil); + headerLabel.text = NSLocalizedStringFromTable(@"bwi_room_participants_section_moderator", @"Bwi", nil); } else if (section == participantsSection) { - headerLabel.text = NSLocalizedStringFromTable(@"bwi_room_participants_section_member", @"Vector", nil); + headerLabel.text = NSLocalizedStringFromTable(@"bwi_room_participants_section_member", @"Bwi", nil); } [sectionHeader addSubview:headerLabel];