Make forgotten strings translatable.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2232 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2008-02-06 16:02:00 +00:00
parent 25dc10c65c
commit 7b9ba876c1
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2008-02-06 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* plugins/autosave.c, plugins/filebrowser.c:
Make forgotten strings translatable.
2008-02-05 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* scintilla/include/Platform.h: Fix definition of PLAT_GTK_WIN32 on

View File

@ -122,14 +122,14 @@ void configure(GtkWidget *parent)
gtk_widget_set_name(dialog, "GeanyDialog");
gtk_box_set_spacing(GTK_BOX(vbox), 6);
label = gtk_label_new("Auto save interval:");
label = gtk_label_new(_("Auto save interval:"));
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
gtk_container_add(GTK_CONTAINER(vbox), label);
spin = gtk_spin_button_new_with_range(1, 1800, 1);
gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin), interval);
label = gtk_label_new("seconds");
label = gtk_label_new(_("seconds"));
hbox = gtk_hbox_new(FALSE, 5);
gtk_box_pack_start(GTK_BOX(hbox), spin, TRUE, TRUE, 0);

View File

@ -842,7 +842,7 @@ void configure(GtkWidget *parent)
gtk_widget_set_name(dialog, "GeanyDialog");
gtk_box_set_spacing(GTK_BOX(vbox), 6);
label = gtk_label_new("External open command:");
label = gtk_label_new(_("External open command:"));
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
gtk_container_add(GTK_CONTAINER(vbox), label);