Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2016-01-07 18:53:48 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2016-01-07 18:53:48 +0300
commit07a6ded726a931668b0de25295cf85e8df13d937 (patch)
tree829908f6d5cf76f5e8a2bb6600c25fd495277abd /iphone/Maps/Settings
parent5c268fca56e81deb5054ca0041be95178c88204b (diff)
[ios] What's new with 3d.
Diffstat (limited to 'iphone/Maps/Settings')
-rw-r--r--iphone/Maps/Settings/SettingsViewController.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/iphone/Maps/Settings/SettingsViewController.mm b/iphone/Maps/Settings/SettingsViewController.mm
index 6294233a86..88491c0d27 100644
--- a/iphone/Maps/Settings/SettingsViewController.mm
+++ b/iphone/Maps/Settings/SettingsViewController.mm
@@ -124,7 +124,7 @@ typedef NS_ENUM(NSUInteger, Section)
{
bool _ = true;
GetFramework().Load3dMode(_, on);
- customCell.titleLabel.text = L(@"pref_3d_buildings");
+ customCell.titleLabel.text = L(@"pref_map_3d_buildings_title");
}
else
{
@@ -143,7 +143,7 @@ typedef NS_ENUM(NSUInteger, Section)
{
cell = [tableView dequeueReusableCellWithIdentifier:[SwitchCell className]];
SwitchCell * customCell = (SwitchCell *)cell;
- customCell.titleLabel.text = L(@"prefs_3d_mode");
+ customCell.titleLabel.text = L(@"pref_map_3d_title");
customCell.delegate = self;
bool _ = true, on = true;
GetFramework().Load3dMode(on, _);