[Xfce4-commits] <midori:master> Colons must be part of translatable strings
Christian Dywan
noreply at xfce.org
Sat Sep 15 01:22:03 CEST 2012
Updating branch refs/heads/master
to 5fdd9bdee0fd524adf26bad897b3a499a06150e9 (commit)
from 1929c51d9db0a06de7e953da3f2cd79447fa60a7 (commit)
commit 5fdd9bdee0fd524adf26bad897b3a499a06150e9
Author: Christian Dywan <christian at twotoasts.de>
Date: Fri Sep 14 23:51:17 2012 +0200
Colons must be part of translatable strings
extensions/delayed-load.vala | 2 +-
extensions/external-download-manager.vala | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/extensions/delayed-load.vala b/extensions/delayed-load.vala
index 6f6f254..83af253 100644
--- a/extensions/delayed-load.vala
+++ b/extensions/delayed-load.vala
@@ -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
diff --git a/extensions/external-download-manager.vala b/extensions/external-download-manager.vala
index c55eea1..b8c6014 100644
--- a/extensions/external-download-manager.vala
+++ b/extensions/external-download-manager.vala
@@ -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"));
More information about the Xfce4-commits
mailing list