all repos — tint2 @ 77d2a74865178f830c3ef0476c035e35c9fba2f9

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

tint2conf: Translate labels (issue #580)
o9000 mrovi9000@gmail.com
commit

77d2a74865178f830c3ef0476c035e35c9fba2f9

parent

a5374cbc4a8cb708ee335d163d3c19cf2a07f54f

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/tint2conf/properties.csrc/tint2conf/properties.c

@@ -675,22 +675,22 @@ gtk_widget_show(label);

gtk_table_attach(GTK_TABLE(table), label, col, col+1, row, row+1, GTK_FILL, 0, 0, 0); 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_table_attach(GTK_TABLE(table), background_border_sides_top, col, col+1, row, row+1, GTK_FILL, 0, 0, 0); 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_table_attach(GTK_TABLE(table), background_border_sides_bottom, col, col+1, row, row+1, GTK_FILL, 0, 0, 0); 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_table_attach(GTK_TABLE(table), background_border_sides_left, col, col+1, row, row+1, GTK_FILL, 0, 0, 0); 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_table_attach(GTK_TABLE(table), background_border_sides_right, col, col+1, row, row+1, GTK_FILL, 0, 0, 0); col++;