Merge branch 'feature/3626_change_copyright_url' into 'develop'

MESSENGER-3626 replaced copyright url

See merge request bwmessenger/bundesmessenger/bundesmessenger-ios!24
This commit is contained in:
Frank Rotermund
2022-10-06 05:55:50 +00:00
5 changed files with 10 additions and 10 deletions
@@ -708,10 +708,8 @@ ChangePasswordCoordinatorBridgePresenterDelegate>
[sectionAbout addRowWithTag:ADVANCED_REPORT_BUG_INDEX];
}
if (BuildSettings.settingsScreenAllowChangingCrashUsageDataSettings)
{
[sectionAbout addRowWithTag:ABOUT_COPYRIGHT_INDEX];
}
[sectionAbout addRowWithTag:ABOUT_COPYRIGHT_INDEX];
if (BuildSettings.applicationTermsConditionsUrlString.length)
{
[sectionAbout addRowWithTag:ABOUT_TERM_CONDITIONS_INDEX];
@@ -2638,7 +2636,7 @@ ChangePasswordCoordinatorBridgePresenterDelegate>
{
MXKTableViewCell *copyrightCell = [self getDefaultTableViewCell:tableView];
copyrightCell.textLabel.text = [VectorL10n settingsCopyright];
copyrightCell.textLabel.text = [BWIL10n settingsCopyright];
[copyrightCell vc_setAccessoryDisclosureIndicatorWithCurrentTheme];
@@ -2783,7 +2781,7 @@ ChangePasswordCoordinatorBridgePresenterDelegate>
{
MXKTableViewCell *termAndConditionCell = [self getDefaultTableViewCell:tableView];
termAndConditionCell.textLabel.text = [VectorL10n settingsTermConditions];
termAndConditionCell.textLabel.text = [BWIL10n settingsCopyright];
[termAndConditionCell vc_setAccessoryDisclosureIndicatorWithCurrentTheme];
@@ -2793,7 +2791,7 @@ ChangePasswordCoordinatorBridgePresenterDelegate>
{
MXKTableViewCell *copyrightCell = [self getDefaultTableViewCell:tableView];
copyrightCell.textLabel.text = [VectorL10n settingsCopyright];
copyrightCell.textLabel.text = [BWIL10n settingsCopyright];
[copyrightCell vc_setAccessoryDisclosureIndicatorWithCurrentTheme];
@@ -3222,7 +3220,7 @@ ChangePasswordCoordinatorBridgePresenterDelegate>
{
WebViewViewController *webViewViewController = [[WebViewViewController alloc] initWithURL:BuildSettings.applicationCopyrightUrlString];
webViewViewController.title = [VectorL10n settingsCopyright];
webViewViewController.title = [BWIL10n settingsCopyright];
[self pushViewController:webViewViewController];
}