tint2conf: Translate labels (issue #580)
This commit is contained in:
parent
a5374cbc4a
commit
77d2a74865
1 changed files with 4 additions and 4 deletions
|
@ -675,22 +675,22 @@ void create_background(GtkWidget *parent)
|
||||||
gtk_table_attach(GTK_TABLE(table), label, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
gtk_table_attach(GTK_TABLE(table), label, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
||||||
col++;
|
col++;
|
||||||
|
|
||||||
background_border_sides_top = gtk_check_button_new_with_label("Top");
|
background_border_sides_top = gtk_check_button_new_with_label(_("Top"));
|
||||||
gtk_widget_show(background_border_sides_top);
|
gtk_widget_show(background_border_sides_top);
|
||||||
gtk_table_attach(GTK_TABLE(table), background_border_sides_top, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
gtk_table_attach(GTK_TABLE(table), background_border_sides_top, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
||||||
col++;
|
col++;
|
||||||
|
|
||||||
background_border_sides_bottom = gtk_check_button_new_with_label("Bottom");
|
background_border_sides_bottom = gtk_check_button_new_with_label(_("Bottom"));
|
||||||
gtk_widget_show(background_border_sides_bottom);
|
gtk_widget_show(background_border_sides_bottom);
|
||||||
gtk_table_attach(GTK_TABLE(table), background_border_sides_bottom, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
gtk_table_attach(GTK_TABLE(table), background_border_sides_bottom, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
||||||
col++;
|
col++;
|
||||||
|
|
||||||
background_border_sides_left = gtk_check_button_new_with_label("Left");
|
background_border_sides_left = gtk_check_button_new_with_label(_("Left"));
|
||||||
gtk_widget_show(background_border_sides_left);
|
gtk_widget_show(background_border_sides_left);
|
||||||
gtk_table_attach(GTK_TABLE(table), background_border_sides_left, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
gtk_table_attach(GTK_TABLE(table), background_border_sides_left, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
||||||
col++;
|
col++;
|
||||||
|
|
||||||
background_border_sides_right = gtk_check_button_new_with_label("Right");
|
background_border_sides_right = gtk_check_button_new_with_label(_("Right"));
|
||||||
gtk_widget_show(background_border_sides_right);
|
gtk_widget_show(background_border_sides_right);
|
||||||
gtk_table_attach(GTK_TABLE(table), background_border_sides_right, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
gtk_table_attach(GTK_TABLE(table), background_border_sides_right, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);
|
||||||
col++;
|
col++;
|
||||||
|
|
Loading…
Reference in a new issue