]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix i18n issues and bugs in string replacement.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 1 Apr 2011 19:56:55 +0000 (21:56 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 1 Apr 2011 19:56:55 +0000 (21:56 +0200)
plugins/Event/RSVP.php

index 108fd5f4db18e8ef043a1bb51e031ba1ee21d423..cce0f6ee56b89f48f732c0b983d804470481a48a 100644 (file)
@@ -316,16 +316,16 @@ class RSVP extends Managed_DataObject
 
         switch ($response) {
         case 'Y':
-            $fmt = _m("<span class='automatic event-rsvp'><a href='%1s'>%2s</a> is attending <a href='%3s'>%4s</a>.</span>");
+            $fmt = _m("<span class='automatic event-rsvp'><a href='%1$s'>%2$s</a> is attending <a href='%3$s'>%4$s</a>.</span>");
             break;
         case 'N':
-            $fmt = _m("<span class='automatic event-rsvp'><a href='%1s'>%2s</a> is not attending <a href='%3s'>%4s</a>.</span>");
+            $fmt = _m("<span class='automatic event-rsvp'><a href='%1$s'>%2$s</a> is not attending <a href='%3$s'>%4$s</a>.</span>");
             break;
         case '?':
-            $fmt = _m("<span class='automatic event-rsvp'><a href='%1s'>%2s</a> might attend <a href='%3s'>%4s</a>.</span>");
+            $fmt = _m("<span class='automatic event-rsvp'><a href='%1$s'>%2$s</a> might attend <a href='%3$s'>%4$s</a>.</span>");
             break;
         default:
-            throw new Exception("Unknown response code {$response}");
+            throw new Exception(sprintf(_('Unknown response code %s.'),$response));
             break;
         }
 
@@ -351,13 +351,13 @@ class RSVP extends Managed_DataObject
 
         switch ($response) {
         case 'Y':
-            $fmt = _m("%1s is attending %2s.");
+            $fmt = _m("%1$s is attending %2$s.");
             break;
         case 'N':
-            $fmt = _m("%1s is not attending %2s.");
+            $fmt = _m("%1$s is not attending %2$s.");
             break;
         case '?':
-            $fmt = _m("%1s might attend %2s.>");
+            $fmt = _m("%1$s might attend %2$s.>");
             break;
         default:
             throw new Exception("Unknown response code {$response}");