/pidgin/main: 03437cc299d4: Drop ampersands
Richard Laager
rlaager at pidgin.im
Mon Jul 18 00:33:08 EDT 2016
Changeset: 03437cc299d42d80f15386c1c6d455bf0f3cd7dc
Author: Richard Laager <rlaager at pidgin.im>
Date: 2016-06-07 00:35 -0500
Branch: release-2.x.y
URL: https://hg.pidgin.im/pidgin/main/rev/03437cc299d4
Description:
Drop ampersands
This changes "Save & Use" to "Save and Use". I believe the use of
ampersands is discouraged in formal writing. The OpenOffice HIG
agrees, for whatever that is worth.
Reported-by: Allan Nordh?y <epost at anotheragency.no>
diffstat:
finch/gntstatus.c | 4 ++--
pidgin/gtksavedstatuses.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (37 lines):
diff --git a/finch/gntstatus.c b/finch/gntstatus.c
--- a/finch/gntstatus.c
+++ b/finch/gntstatus.c
@@ -602,8 +602,8 @@ void finch_savedstatus_edit(PurpleSavedS
g_object_set_data(G_OBJECT(button), "use", NULL);
g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(save_savedstatus_cb), edit);
- /* Save & Use */
- button = gnt_button_new(_("Save & Use"));
+ /* Save and Use */
+ button = gnt_button_new(_("Save and Use"));
gnt_box_add_widget(GNT_BOX(box), button);
g_object_set_data(G_OBJECT(button), "use", GINT_TO_POINTER(TRUE));
g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(save_savedstatus_cb), edit);
diff --git a/pidgin/gtksavedstatuses.c b/pidgin/gtksavedstatuses.c
--- a/pidgin/gtksavedstatuses.c
+++ b/pidgin/gtksavedstatuses.c
@@ -805,7 +805,7 @@ status_editor_ok_cb(GtkButton *button, g
g_free(message);
g_free(unformatted);
- /* If they clicked on "Save & Use" or "Use," then activate the status */
+ /* If they clicked on "Save and Use" or "Use," then activate the status */
if (button != dialog->save_button)
purple_savedstatus_activate(saved_status);
@@ -1215,8 +1215,8 @@ pidgin_status_editor_show(gboolean edit,
g_signal_connect(G_OBJECT(button), "clicked",
G_CALLBACK(status_editor_ok_cb), dialog);
- /* Save & Use button */
- button = pidgin_pixbuf_button_from_stock(_("Sa_ve & Use"), GTK_STOCK_OK,
+ /* Save and Use button */
+ button = pidgin_pixbuf_button_from_stock(_("Sa_ve and Use"), GTK_STOCK_OK,
PIDGIN_BUTTON_HORIZONTAL);
dialog->saveanduse_button = GTK_BUTTON(button);
gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0);
More information about the Commits
mailing list