Learn to properly localize strings with numbers pleeeeaaaase
authorunc0rr
Mon, 21 Jan 2013 12:22:33 +0400
changeset 8417 790492abc004
parent 8416 e691acd778f5
child 8418 4543cc2049af
Learn to properly localize strings with numbers pleeeeaaaase
QTfrontend/ui/dialog/bandialog.cpp
--- a/QTfrontend/ui/dialog/bandialog.cpp	Mon Jan 21 02:21:04 2013 -0500
+++ b/QTfrontend/ui/dialog/bandialog.cpp	Mon Jan 21 12:22:33 2013 +0400
@@ -22,16 +22,16 @@
     leReason = new QLineEdit(this);
     cbTime = new QComboBox(this);
 
-    cbTime->addItem(HWApplication::tr("%1 minutes").arg("10"), 5 * 60);
-    cbTime->addItem(HWApplication::tr("%1 minutes").arg("30"), 10 * 60);
-    cbTime->addItem(HWApplication::tr("%1 hour").arg("10"), 60 * 60);
-    cbTime->addItem(HWApplication::tr("%1 hours").arg("3"), 3 * 60 * 60);
-    cbTime->addItem(HWApplication::tr("%1 hours").arg("5"), 5 * 60 * 60);
-    cbTime->addItem(HWApplication::tr("%1 hours").arg("12"), 12 * 60 * 60);
-    cbTime->addItem(HWApplication::tr("%1 day").arg("1"), 24 * 60 * 60);
-    cbTime->addItem(HWApplication::tr("%1 days").arg("3"), 72 * 60 * 60);
-    cbTime->addItem(HWApplication::tr("%1 days").arg("7"), 168 * 60 * 60);
-    cbTime->addItem(HWApplication::tr("%1 days").arg("14"), 336 * 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 minutes", 0, 10).arg("10"), 5 * 60);
+    cbTime->addItem(HWApplication::tr("%1 minutes", 0, 30).arg("30"), 10 * 60);
+    cbTime->addItem(HWApplication::tr("%1 hour", 0, 10).arg("10"), 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 hours", 0, 3).arg("3"), 3 * 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 hours", 0, 5).arg("5"), 5 * 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 hours", 0, 12).arg("12"), 12 * 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 day", 0, 1).arg("1"), 24 * 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 days", 0, 3).arg("3"), 72 * 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 days", 0, 7).arg("7"), 168 * 60 * 60);
+    cbTime->addItem(HWApplication::tr("%1 days", 0, 14).arg("14"), 336 * 60 * 60);
     cbTime->addItem(tr("permanent"), 3650 * 24 * 60 * 60);
     cbTime->setCurrentIndex(0);