[Gnucash-changes] r13062 - gnucash/trunk/src/register/ledger-core - String improvements: Make question a bit clearer, hopefully

Christian Stimming cstim at cvs.gnucash.org
Tue Jan 31 15:47:42 EST 2006


Author: cstim
Date: 2006-01-31 15:47:42 -0500 (Tue, 31 Jan 2006)
New Revision: 13062
Trac: http://svn.gnucash.org/trac/changeset/13062

Modified:
   gnucash/trunk/src/register/ledger-core/split-register-control.c
Log:
String improvements: Make question a bit clearer, hopefully

Modified: gnucash/trunk/src/register/ledger-core/split-register-control.c
===================================================================
--- gnucash/trunk/src/register/ledger-core/split-register-control.c	2006-01-31 20:45:49 UTC (rev 13061)
+++ gnucash/trunk/src/register/ledger-core/split-register-control.c	2006-01-31 20:47:42 UTC (rev 13062)
@@ -1472,11 +1472,11 @@
    * changed. See what the user wants to do. */
   {
     GtkWidget *dialog, *window;
-    const char *title = _("Save the current transaction?");
+    const char *title = _("Save the changed transaction?");
     const char *message =
       _("The current transaction has been changed.  Would you like to "
-	"record the changes before moving to a new transaction, move "
-	"without recording the changes, or cancel the move?");
+	"record the changes before moving to a new transaction, discard the "
+	"changes, or return to the changed transaction?");
 
     window = gnc_split_register_get_parent(reg);
     dialog = gtk_message_dialog_new(GTK_WINDOW(window),
@@ -1487,9 +1487,9 @@
     gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
 					     "%s", message);
     gtk_dialog_add_buttons(GTK_DIALOG(dialog),
-			   _("_Don't Record"), GTK_RESPONSE_REJECT,
+			   _("_Discard Changes"), GTK_RESPONSE_REJECT,
 			   GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
-			   _("_Record"), GTK_RESPONSE_ACCEPT,
+			   _("_Record Changes"), GTK_RESPONSE_ACCEPT,
 			   NULL);
     response = gnc_dialog_run(GTK_DIALOG(dialog), "transaction_changed");
     gtk_widget_destroy(dialog);



More information about the gnucash-changes mailing list