Colons must be part of translatable strings
This commit is contained in:
parent
1929c51d9d
commit
5fdd9bdee0
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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"));
|
||||
|
||||
|
|
Loading…
Reference in a new issue