Made string "Permissions" in the file property dialog translatable.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@874 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2006-10-09 13:50:23 +00:00
parent ac2a9ed1e4
commit 76f60f7a03
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-10-09 Enrico Tröger <enrico.troeger@uvena.de>
* src/dialogs.c:
Made string "Permissions" in the file property dialog translatable.
2006-10-08 Enrico Tröger <enrico.troeger@uvena.de>
* src/highlighting.c, data/filetypes.ferite: Added some new keywords.

View File

@ -802,7 +802,7 @@ void dialogs_show_includes_arguments_gen()
response = gtk_dialog_run(GTK_DIALOG(dialog));
// call the callback manually
on_includes_arguments_dialog_response(GTK_DIALOG(dialog), response, ft);
gtk_widget_destroy(dialog);
}
@ -1021,7 +1021,7 @@ void dialogs_show_file_properties(gint idx)
gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), gtk_label_new(""));
// create permission label and then table with the permissions
label = gtk_label_new("<b>Permissions:</b>");
label = gtk_label_new(_("<b>Permissions:</b>"));
gtk_label_set_use_markup(GTK_LABEL(label), TRUE);
gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label);