Bug 658874 — Typo?
authorPhilip Withnall <philip@tecnocode.co.uk>
Tue, 13 Sep 2011 07:09:27 +0000 (08:09 +0100)
committerPhilip Withnall <philip@tecnocode.co.uk>
Tue, 13 Sep 2011 16:50:43 +0000 (17:50 +0100)
Fix a typo in a translatable string in the Tracker backend.

Closes: bgo#658874

NEWS
backends/tracker/lib/trf-persona-store.vala

diff --git a/NEWS b/NEWS
index 3dd52c8..dba456b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@ Overview of changes from libfolks 0.6.2.1 to libfolks 0.6.3
 Bugs fixed:
 * Bug 658631 — crash at empathy startup
 * Bug 658331 — Ensure read-only PersonaStores have empty writeable-properties
+* Bug 658874 — Typo?
 
 Overview of changes from libfolks 0.6.2 to libfolks 0.6.2.1
 ===========================================================
index f17cab9..b291f26 100644 (file)
@@ -726,11 +726,11 @@ public class Trf.PersonaStore : Folks.PersonaStore
           else
             {
               throw new PersonaStoreError.INVALID_ARGUMENT (
-                  /* Translators: the first parameter identifies the
-                   * persona store and the second the unknown key
-                   * that was received with the details params. */
-                _("Unrecognized parameter %s by the  %s PersonaStore:\n')"),
-                this.type_id, k);
+                  /* Translators: the first parameter is the unknown key that
+                   * was received with the details params, and the second
+                   * identifies the persona store. */
+                _("Unrecognized parameter '%s' passed to persona store '%s'."),
+                k, this.id);
             }
         }
       builder.insert_close ();