Show proper title for personal info screen

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2021-04-09 00:45:02 +02:00
parent 9771161a0f
commit e3a9e79f31
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
2 changed files with 7 additions and 0 deletions

View File

@ -297,6 +297,11 @@ public class ProfileController extends BaseController {
}); });
} }
@Override
protected String getTitle() {
return getResources().getString(R.string.nc_profile_personal_info_title);
}
private void showUserProfile() { private void showUserProfile() {
if (getActivity() == null) { if (getActivity() == null) {
return; return;

View File

@ -153,6 +153,8 @@
<string name="nc_select_an_account">Select an account</string> <string name="nc_select_an_account">Select an account</string>
<string name="nc_profile_personal_info_title">Personal Info</string>
<!-- Conversation menu --> <!-- Conversation menu -->
<string name="nc_start_conversation">Start a conversation</string> <string name="nc_start_conversation">Start a conversation</string>
<string name="nc_configure_room">Configure conversation</string> <string name="nc_configure_room">Configure conversation</string>