We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa7777a commit 4ef836bCopy full SHA for 4ef836b
src/ResizePage.vala
@@ -37,7 +37,7 @@ namespace Resizer {
37
intro_label.margin_bottom = spacing/2;
38
39
// Width input
40
- var width_label = new Gtk.Label (_("Width:"));
+ var width_label = new Gtk.Label (_("Max width:"));
41
width_label.halign = Gtk.Align.END;
42
43
width_entry = new Gtk.SpinButton.with_range (1, 10000, 1000);
@@ -54,7 +54,7 @@ namespace Resizer {
54
width_input.add(new Gtk.Label (""));
55
56
// height input
57
- var height_label = new Gtk.Label (_("Height:"));
+ var height_label = new Gtk.Label (_("Max height:"));
58
height_label.halign = Gtk.Align.START;
59
60
height_entry = new Gtk.SpinButton.with_range (1, 10000, 1000);
0 commit comments