i18n: Fix a few en_GB-isms in C locale strings
authorPhilip Withnall <philip@tecnocode.co.uk>
Sat, 17 Sep 2011 11:31:40 +0000 (12:31 +0100)
committerPhilip Withnall <philip@tecnocode.co.uk>
Sat, 17 Sep 2011 19:41:54 +0000 (20:41 +0100)
folks/favourite-details.vala
tools/import-pidgin.vala
tools/import.vala

index a974537..711b97b 100644 (file)
@@ -49,6 +49,6 @@ public interface Folks.FavouriteDetails : Object
     {
       /* Default implementation. */
       throw new PropertyError.NOT_WRITEABLE (
-          _("Favourite status is not writeable on this contact."));
+          _("Favorite status is not writeable on this contact."));
     }
 }
index 061e7b8..e6458dd 100644 (file)
@@ -93,7 +93,7 @@ public class Folks.Importers.Pidgin : Folks.Importer
           delete xml_doc;
           throw new ImportError.MALFORMED_INPUT (
               /* Translators: the parameter is a filename. */
-              _("The Pidgin buddy list file '%s' could not be loaded: the root element could not be found or was not recognised."),
+              _("The Pidgin buddy list file ‘%s’ could not be loaded: the root element could not be found or was not recognized."),
               filename);
         }
 
index ca53947..df80d72 100644 (file)
@@ -185,8 +185,9 @@ public class Folks.ImportTool : Object
       else
         {
           stderr.printf (
-              _("Unrecognised source backend name '%s'. 'pidgin' is currently the only supported source backend.\n"),
-              source);
+              /* Translators: both parameters are identifiers for backends. */
+              _("Unrecognized source backend name ‘%s’. ‘%s’ is currently the only supported source backend.") + "\n",
+              source, "pidgin");
           return false;
         }
     }