]> spindle.queued.net Git - midori/commitdiff
Colons must be part of translatable strings
authorChristian Dywan <christian@twotoasts.de>
Fri, 14 Sep 2012 21:51:17 +0000 (23:51 +0200)
committerChristian Dywan <christian@twotoasts.de>
Fri, 14 Sep 2012 23:19:58 +0000 (01:19 +0200)
extensions/delayed-load.vala
extensions/external-download-manager.vala

index 6f6f2545ca9ac3fdae0c16c8b3cab57d8df82b38..83af2539dce09f4b74e81543024d381a842dc69a 100644 (file)
@@ -46,7 +46,7 @@ namespace DelayedLoad {
         }
 
         private void create_widgets () {
-            Label text = new Label ("%s:".printf (_("Delay in seconds until loading the page")));
+            Label text = new Label (_("Delay in seconds until loading the page:"));
 #if HAVE_GTK3
             this.slider = new Scale.with_range (Orientation.HORIZONTAL, 0, 15, 0.1);
 #else
index c55eea1b4e8132dd87a9484f1e37a464fae280f7..b8c601429d0df9a61d66e9e55d8528c95cc1d1d4 100644 (file)
@@ -241,7 +241,7 @@ namespace EDM {
         }
 
         private void create_widgets () {
-            Label text = new Label ("%s:".printf (_("Command")));
+            Label text = new Label (_("Command:"));
             this.input = new Entry ();
             this.input.set_text (this.commandline.get_string ("commandline"));