diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-12-19 22:55:41 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-12-19 22:55:41 +0800 |
commit | 06d57f82d99a085c3d1eec11fc243175af67787e (patch) | |
tree | 989253f98638c0126287572c5173359b8b7cab24 /plugins/exchange-operations/exchange-delegates-user.c | |
parent | e338ea997ee714c5274c4d1df9dfc2693ac9a497 (diff) | |
download | gsoc2013-evolution-06d57f82d99a085c3d1eec11fc243175af67787e.tar.gz gsoc2013-evolution-06d57f82d99a085c3d1eec11fc243175af67787e.tar.zst gsoc2013-evolution-06d57f82d99a085c3d1eec11fc243175af67787e.zip |
Removed the repleted window title and added translator comments. Fixes #313545.
svn path=/trunk/; revision=30882
Diffstat (limited to 'plugins/exchange-operations/exchange-delegates-user.c')
-rw-r--r-- | plugins/exchange-operations/exchange-delegates-user.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/exchange-operations/exchange-delegates-user.c b/plugins/exchange-operations/exchange-delegates-user.c index 4b0913045c..a34ee09f8c 100644 --- a/plugins/exchange-operations/exchange-delegates-user.c +++ b/plugins/exchange-operations/exchange-delegates-user.c @@ -188,16 +188,18 @@ exchange_delegates_user_edit (ExchangeDelegatesUser *user, "delegate_permissions", PACKAGE); g_return_val_if_fail (xml, FALSE); - title = g_strdup_printf (_("Permissions for %s"), user->display_name); + title = g_strdup (_("Delegate Permissions")); dialog = glade_xml_get_widget (xml, "delegate_permissions"); gtk_window_set_title (GTK_WINDOW (dialog), title); e_dialog_set_transient_for (GTK_WINDOW (dialog), parent_window); + g_free (title); table = glade_xml_get_widget (xml, "toplevel_table"); gtk_widget_reparent (table, GTK_DIALOG (dialog)->vbox); gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 6); + title = g_strdup_printf (_("Permissions for %s"), user->display_name); label = glade_xml_get_widget (xml, "delegate_label"); gtk_label_set_text (GTK_LABEL (label), title); g_free (title); |