← Back to team overview

ubuntu-touch-coreapps-reviewers team mailing list archive

[Merge] lp:~phillip-sz/ubuntu-clock-app/remove-wrong-char into lp:ubuntu-clock-app

 

Phillip Sz has proposed merging lp:~phillip-sz/ubuntu-clock-app/remove-wrong-char into lp:ubuntu-clock-app.

Commit message:
remove wrong "’" in city name

Requested reviews:
  Ubuntu Clock Developers (ubuntu-clock-dev)

For more details, see:
https://code.launchpad.net/~phillip-sz/ubuntu-clock-app/remove-wrong-char/+merge/252204

remove wrong "’" in city name: 

"Simferopol’" is not the name its "Simferopol"
-- 
Your team Ubuntu Clock Developers is requested to review the proposed merge of lp:~phillip-sz/ubuntu-clock-app/remove-wrong-char into lp:ubuntu-clock-app.
=== modified file 'backend/modules/Timezone/statictimezonemodel.cpp'
--- backend/modules/Timezone/statictimezonemodel.cpp	2015-03-06 10:54:21 +0000
+++ backend/modules/Timezone/statictimezonemodel.cpp	2015-03-07 13:13:47 +0000
@@ -303,7 +303,7 @@
     addCity(_("Seoul"), "Asia/Seoul", _("South Korea"));
     addCity(_("Shanghai"), "Asia/Shanghai", _("China"));
     addCity(_("Singapore"), "Asia/Singapore", _("Singapore"));
-    addCity(_("Simferopol’"), "Europe/Simferopol", _("Ukraine"));
+    addCity(_("Simferopol"), "Europe/Simferopol", _("Ukraine"));
     addCity(_("Skopje"), "Europe/Skopje", _("Macedonia"));
     addCity(_("Sofia"), "Europe/Sofia", _("Bulgaria"));
     addCity(_("St.Johns"), "America/St_Johns", _("Canada"));


Follow ups