diff options
author | Olivier Fourdan <fourdan.olivier@wanadoo.fr> | 2006-04-02 18:47:41 +0000 |
---|---|---|
committer | Olivier Fourdan <fourdan.olivier@wanadoo.fr> | 2006-04-02 18:47:41 +0000 |
commit | 02090113b9c9e04145d76b08a0b0bd2dcb0eca24 (patch) | |
tree | ccc09836b22ac6f88066d25ce83fd9c2ad8e68cc /mcs-plugin | |
parent | 8bca81c9b07cacca388b73ab5fd849a9678e9d90 (diff) | |
download | xfwm4-02090113b9c9e04145d76b08a0b0bd2dcb0eca24.tar.gz |
Fix typo in icon name (Adriano Winter Bess <awbess@gmail.com>)
(Old svn revision: 20688)
Diffstat (limited to 'mcs-plugin')
-rw-r--r-- | mcs-plugin/xfwm4_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs-plugin/xfwm4_plugin.c b/mcs-plugin/xfwm4_plugin.c index bc28ffe38..bd94b665f 100644 --- a/mcs-plugin/xfwm4_plugin.c +++ b/mcs-plugin/xfwm4_plugin.c @@ -1783,14 +1783,14 @@ create_dialog (McsPlugin * mcs_plugin) gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5); - label = xfce_create_small_label (Q_("Attraction|Small")); + label = xfce_create_small_label (Q_("Resistance|Small")); gtk_widget_show (label); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, (GtkAttachOptions) (GTK_FILL), (GtkAttachOptions) (0), 0, 0); gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); gtk_misc_set_alignment (GTK_MISC (label), 1, 0.5); - label = xfce_create_small_label (Q_("Attraction|Wide")); + label = xfce_create_small_label (Q_("Resistance|Wide")); gtk_widget_show (label); gtk_table_attach (GTK_TABLE (table), label, 2, 3, 1, 2, (GtkAttachOptions) (GTK_FILL), (GtkAttachOptions) (0), 0, 0); |