Colons must be part of translatable strings

This commit is contained in:
Christian Dywan 2012-09-14 23:51:17 +02:00
parent 1929c51d9d
commit 5fdd9bdee0
2 changed files with 2 additions and 2 deletions

View 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

View 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"));