blob: c5ea6f538aec8d74498e1aa7eeebd2ddf893cf5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: grandr.glade
# modified: src/interface.c
#
diff --git a/grandr.glade b/grandr.glade
index f1f0f91..6c21a17 100644
--- a/grandr.glade
+++ b/grandr.glade
@@ -202,7 +202,7 @@ THE SOFTWARE.
<child>
<widget class="GtkLabel" id="label9">
<property name="visible">True</property>
- <property name="label" translatable="yes">Outpus </property>
+ <property name="label" translatable="yes">Outputs </property>
<property name="use_underline">False</property>
<property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>
diff --git a/src/interface.c b/src/interface.c
index 8cc1427..bee4b81 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -179,7 +179,7 @@ create_main_win (void)
gtk_widget_show (vbox2);
gtk_container_add (GTK_CONTAINER (viewport1), vbox2);
- label9 = gtk_label_new (_("Outpus "));
+ label9 = gtk_label_new (_("Outputs "));
gtk_widget_show (label9);
gtk_box_pack_start (GTK_BOX (vbox2), label9, FALSE, FALSE, 0);
|