# HG changeset patch # User antonc27 # Date 1445557772 -7200 # Node ID e21027aa90681e65f2b65c21fdfe604d9d0d60e7 # Parent 0425d60cd046b6d89416b205baf9ac5fbd73f079 - Fix for wrong localization key for sound in GeneralSettingsViewController diff -r 0425d60cd046 -r e21027aa9068 project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.m --- a/project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.m Fri Oct 23 01:46:00 2015 +0200 +++ b/project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.m Fri Oct 23 01:49:32 2015 +0200 @@ -179,7 +179,7 @@ switchContent = (UISwitch *)cell.accessoryView; if (row == 0) { - cell.textLabel.text = NSLocalizedString(@"Sound Effects", @"from the settings table"); + cell.textLabel.text = NSLocalizedString(@"Sound", @"from the settings table"); switchContent.on = [[settings objectForKey:@"sound"] boolValue]; switchContent.tag = 10; } else {