* gcustom-layout.c, gprefs.c: Make the preferences dialog
translatable. (include files in gcustom-layout.c and use of the _() macro in gprefs.c)
Этот коммит содержится в:
родитель
b0c964d988
Коммит
30052d80eb
@ -1,3 +1,9 @@
|
|||||||
|
1999-03-08 Sergey Panov <sipan@mit.edu>
|
||||||
|
|
||||||
|
* gcustom-layout.c, gprefs.c: Make the preferences dialog
|
||||||
|
translatable. (include files in gcustom-layout.c and use of
|
||||||
|
the _() macro in gprefs.c)
|
||||||
|
|
||||||
1999-02-28 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
1999-02-28 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||||
|
|
||||||
* gnome-file-property-dialog.c (create_settings_pane): Simplify
|
* gnome-file-property-dialog.c (create_settings_pane): Simplify
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
* Author: Owen Taylor
|
* Author: Owen Taylor
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include "x.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include "panel.h"
|
#include "panel.h"
|
||||||
#include "gcustom-layout.h"
|
#include "gcustom-layout.h"
|
||||||
|
@ -284,7 +284,7 @@ create_prop_bool (PrefsDlg *dlg, Property *prop)
|
|||||||
{
|
{
|
||||||
GtkWidget *checkbox;
|
GtkWidget *checkbox;
|
||||||
|
|
||||||
checkbox = gtk_check_button_new_with_label (prop->label);
|
checkbox = gtk_check_button_new_with_label (_(prop->label));
|
||||||
|
|
||||||
if (*((int*) prop->property_variable)) {
|
if (*((int*) prop->property_variable)) {
|
||||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (checkbox),
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (checkbox),
|
||||||
@ -313,11 +313,11 @@ create_prop_string (PrefsDlg *dlg, Property *prop)
|
|||||||
|
|
||||||
hbox = gtk_hbox_new (FALSE, GNOME_PAD_SMALL);
|
hbox = gtk_hbox_new (FALSE, GNOME_PAD_SMALL);
|
||||||
|
|
||||||
label = gtk_label_new (prop->label);
|
label = gtk_label_new (_(prop->label));
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), label,
|
gtk_box_pack_start (GTK_BOX (hbox), label,
|
||||||
FALSE, FALSE, 0);
|
FALSE, FALSE, 0);
|
||||||
|
|
||||||
entry = gnome_entry_new (prop->label);
|
entry = gnome_entry_new (_(prop->label));
|
||||||
gtk_entry = gnome_entry_gtk_entry (GNOME_ENTRY (entry));
|
gtk_entry = gnome_entry_gtk_entry (GNOME_ENTRY (entry));
|
||||||
|
|
||||||
max_length = (int)prop->extra_data1;
|
max_length = (int)prop->extra_data1;
|
||||||
@ -352,11 +352,11 @@ create_prop_int (PrefsDlg *dlg, Property *prop)
|
|||||||
|
|
||||||
hbox = gtk_hbox_new (FALSE, GNOME_PAD_SMALL);
|
hbox = gtk_hbox_new (FALSE, GNOME_PAD_SMALL);
|
||||||
|
|
||||||
label = gtk_label_new (prop->label);
|
label = gtk_label_new (_(prop->label));
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), label,
|
gtk_box_pack_start (GTK_BOX (hbox), label,
|
||||||
FALSE, FALSE, 0);
|
FALSE, FALSE, 0);
|
||||||
|
|
||||||
entry = gnome_entry_new (prop->label);
|
entry = gnome_entry_new (_(prop->label));
|
||||||
|
|
||||||
snprintf (buffer, 9, "%d", *( (int*) prop->property_variable));
|
snprintf (buffer, 9, "%d", *( (int*) prop->property_variable));
|
||||||
|
|
||||||
@ -437,7 +437,7 @@ create_page (PrefsDlg *dlg, PrefsPage *page)
|
|||||||
|
|
||||||
gnome_property_box_append_page (GNOME_PROPERTY_BOX (dlg->prop_box),
|
gnome_property_box_append_page (GNOME_PROPERTY_BOX (dlg->prop_box),
|
||||||
vbox,
|
vbox,
|
||||||
gtk_label_new (page->title));
|
gtk_label_new (_(page->title)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user