]> git.deb.at Git - pkg/abook.git/commitdiff
Made string less ambiguous for translators.
authorCedric Duval <cedricduval@free.fr>
Sun, 2 Oct 2005 22:13:25 +0000 (22:13 +0000)
committerCedric Duval <cedricduval@free.fr>
Sun, 2 Oct 2005 22:13:25 +0000 (22:13 +0000)
po/abook.pot
ui.c

index 555dc16173d9a084f73e2bde1b815822260df250..3a14feba727eab1671c8da40de87e2090df36e17 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: <cedricduval+abook@free.fr>\n"
-"POT-Creation-Date: 2005-09-30 19:27+0300\n"
+"POT-Creation-Date: 2005-10-03 00:06+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -220,7 +220,7 @@ msgstr ""
 msgid "Add \"%s <%s>\" to %s? (%c/%c)\n"
 msgstr ""
 
-#: abook.c:744 abook.c:751 ui.c:344
+#: abook.c:744 abook.c:751 ui.c:344 ui.c:606
 msgid "keybinding for yes|y"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Export <a>ll, export <s>elected, or <c>ancel?"
 msgstr ""
 
-#: filter.c:328 ui.c:621
+#: filter.c:328 ui.c:629
 msgid "keybindings:all/selected/cancel|asc"
 msgstr ""
 
@@ -669,26 +669,27 @@ msgstr ""
 msgid "Search hit bottom, continuing at top"
 msgstr ""
 
-#: ui.c:602
-msgid "Your current data will be lost - Press 'y' to continue"
+#: ui.c:604
+#, c-format
+msgid "Your current data will be lost - Press '%c' to continue"
 msgstr ""
 
-#: ui.c:621
+#: ui.c:629
 msgid "Print <a>ll, print <s>elected, or <c>ancel?"
 msgstr ""
 
-#: ui.c:627
+#: ui.c:635
 msgid "No selected items"
 msgstr ""
 
-#: ui.c:653
+#: ui.c:661
 msgid "File to open: "
 msgstr ""
 
-#: ui.c:663
+#: ui.c:671
 msgid "Save current database"
 msgstr ""
 
-#: ui.c:671
+#: ui.c:679
 msgid "Sorry, the specified file appears not to be a valid abook addressbook"
 msgstr ""
diff --git a/ui.c b/ui.c
index 1923138da1d45ac9d44637cd6a986bd128a54c76..644c2acc184b237fb9be0a18d5c0b255e045c1cb 100644 (file)
--- a/ui.c
+++ b/ui.c
@@ -598,10 +598,18 @@ ui_print_number_of_items()
 void
 ui_read_database()
 {
-       if(items > 0)
-               if(!statusline_ask_boolean(_("Your current data will be lost - "
-                               "Press 'y' to continue"), FALSE))
+       char *msg;
+
+       if(items > 0) {
+               msg = mkstr(_("Your current data will be lost - "
+                               "Press '%c' to continue"),
+                               *(S_("keybinding for yes|y")));
+               if(!statusline_ask_boolean(msg, FALSE)) {
+                       free(msg);
                        return;
+               }
+               free(msg);
+       }
 
        load_database(datafile);
        refresh_list();