]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix i18n issue and add translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 12 Sep 2010 16:11:28 +0000 (18:11 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 12 Sep 2010 16:11:28 +0000 (18:11 +0200)
lib/mediafile.php

index c96c78ab5d289feae5df65072c2ef99410887252..59463632079ea2a63eab29c7f7566260836fb13a 100644 (file)
@@ -315,12 +315,17 @@ class MediaFile
         }
         $media = MIME_Type::getMedia($filetype);
         if ('application' !== $media) {
-            $hint = sprintf(_(' Try using another %s format.'), $media);
+            // TRANS: Client exception thrown trying to upload a forbidden MIME type.
+            // TRANS: %1$s is the file type that was denied, %2$s is the application part of
+            // TRANS: the MIME type that was denied.
+            $hint = sprintf(_('"%1$s" is not a supported file type on this server. ' .
+            'Try using another %2$s format.'), $filetype, $media);
         } else {
-            $hint = '';
+            // TRANS: Client exception thrown trying to upload a forbidden MIME type.
+            // TRANS: %s is the file type that was denied.
+            $hint = sprintf(_('"%s" is not a supported file type on this server.'), $filetype);
         }
-        throw new ClientException(sprintf(
-            _('%s is not a supported file type on this server.'), $filetype) . $hint);
+        throw new ClientException($hint);
     }
 
     static function respectsQuota($user, $filesize)