Patch for #354688 - Capitalization in file properties dialog
- From: Federico Mena Quintero <federico novell com>
- To: nautilus-list gnome org
- Cc: gnome-i18n gnome org, gnome-doc-list gnome org
- Subject: Patch for #354688 - Capitalization in file properties dialog
- Date: Thu, 29 Nov 2007 10:30:12 -0600
OK to commit?
Federico
2007-11-29 Federico Mena Quintero <federico novell com>
Fix http://bugzilla.gnome.org/show_bug.cgi?id=354688 - Attack of
the HIG police.
* src/file-manager/fm-properties-window.c
(create_permissions_page): Use header capitalization for command button.
(add_permissions_combo_box): Use sentence capitalization for field labels.
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index aa4340c..481927d 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -3947,9 +3947,9 @@ add_permissions_combo_box (FMPropertiesWindow *window, GtkTable *table,
if (short_label) {
row = append_title_field (table, _("Access:"), &label);
} else if (is_folder) {
- row = append_title_field (table, _("Folder Access:"), &label);
+ row = append_title_field (table, _("Folder access:"), &label);
} else {
- row = append_title_field (table, _("File Access:"), &label);
+ row = append_title_field (table, _("File access:"), &label);
}
store = gtk_list_store_new (3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_BOOLEAN);
@@ -4570,7 +4570,7 @@ create_permissions_page (FMPropertiesWindow *window)
gtk_table_set_row_spacing (page_table, page_table->nrows - 1, 18);
append_title_value_pair
- (window, page_table, _("SELinux Context:"),
+ (window, page_table, _("SELinux context:"),
"selinux_context", _("--"),
FALSE);
append_title_value_pair
@@ -4588,7 +4588,7 @@ create_permissions_page (FMPropertiesWindow *window)
GTK_FILL, 0,
0, 0);
- button = gtk_button_new_with_mnemonic (_("Apply permissions to enclosed files"));
+ button = gtk_button_new_with_mnemonic (_("Apply Permissions to Enclosed Files"));
gtk_widget_show (button);
gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);
g_signal_connect (button, "clicked",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]