comparison pidgin/gtknotify.c @ 31779:3eaf954631fa

Add a hint to translators on how to translate this string. Italian and French had translated it the same as the "Close" button, which resulted in two "Close" buttons on the "You have pounced" dialog. Refs #11920
author Mark Doliner <mark@kingant.net>
date Thu, 10 Mar 2011 09:50:43 +0000
parents 70d8e2e71552
children d72d728226dc
comparison
equal deleted inserted replaced
31778:708ac15bf90e 31779:3eaf954631fa
1590 button = gtk_dialog_add_button(GTK_DIALOG(dialog), 1590 button = gtk_dialog_add_button(GTK_DIALOG(dialog),
1591 PIDGIN_STOCK_MODIFY, GTK_RESPONSE_APPLY); 1591 PIDGIN_STOCK_MODIFY, GTK_RESPONSE_APPLY);
1592 gtk_widget_set_sensitive(button, FALSE); 1592 gtk_widget_set_sensitive(button, FALSE);
1593 spec_dialog->edit_button = button; 1593 spec_dialog->edit_button = button;
1594 1594
1595 button = gtk_dialog_add_button(GTK_DIALOG(dialog), 1595 /* Translators: Make sure you translate "Dismiss" differently than
1596 _("Dismiss"), GTK_RESPONSE_NO); 1596 "close"! This string is used in the "You have pounced" dialog
1597 that appears when one of your Buddy Pounces is triggered. In
1598 this context "Dismiss" means "I acknowledge that I've seen that
1599 this pounce was triggered--remove it from this list." Translating
1600 it as "Remove" is acceptable if you can't think of a more precise
1601 word. */
1602 button = gtk_dialog_add_button(GTK_DIALOG(dialog), _("Dismiss"),
1603 GTK_RESPONSE_NO);
1597 gtk_widget_set_sensitive(button, FALSE); 1604 gtk_widget_set_sensitive(button, FALSE);
1598 spec_dialog->dismiss_button = button; 1605 spec_dialog->dismiss_button = button;
1599 1606
1600 g_signal_connect(G_OBJECT(dialog), "response", 1607 g_signal_connect(G_OBJECT(dialog), "response",
1601 G_CALLBACK(pounce_response_cb), spec_dialog); 1608 G_CALLBACK(pounce_response_cb), spec_dialog);