Update translator documentation.
Remove superfluous whitespace. i18n/L10n tweaks.
This commit is contained in:
parent
b1d451f98b
commit
ea8b468348
|
@ -45,7 +45,6 @@ define('TAGS_PER_SECTION', 20);
|
||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class TagCloudSection extends Section
|
class TagCloudSection extends Section
|
||||||
{
|
{
|
||||||
function showContent()
|
function showContent()
|
||||||
|
@ -53,7 +52,8 @@ class TagCloudSection extends Section
|
||||||
$tags = $this->getTags();
|
$tags = $this->getTags();
|
||||||
|
|
||||||
if (!$tags) {
|
if (!$tags) {
|
||||||
$this->out->element('p', null, _('None'));
|
// TRANS: Content displayed in a tag cloud section if there are no tags.
|
||||||
|
$this->out->element('p', null, _m('NOTAGS','None'));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +68,8 @@ class TagCloudSection extends Section
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($cnt == 0) {
|
if ($cnt == 0) {
|
||||||
$this->out->element('p', null, _('(None)'));
|
// TRANS: Content displayed in a tag cloud section if there are no tags.
|
||||||
|
$this->out->element('p', null, _m('NOTAGS','None'));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,8 @@ class ThemeUploader
|
||||||
public function __construct($filename)
|
public function __construct($filename)
|
||||||
{
|
{
|
||||||
if (!class_exists('ZipArchive')) {
|
if (!class_exists('ZipArchive')) {
|
||||||
throw new Exception(_("This server cannot handle theme uploads without ZIP support."));
|
// TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration.
|
||||||
|
throw new Exception(_('This server cannot handle theme uploads without ZIP support.'));
|
||||||
}
|
}
|
||||||
$this->sourceFile = $filename;
|
$this->sourceFile = $filename;
|
||||||
}
|
}
|
||||||
|
@ -55,10 +56,12 @@ class ThemeUploader
|
||||||
public static function fromUpload($name)
|
public static function fromUpload($name)
|
||||||
{
|
{
|
||||||
if (!isset($_FILES[$name]['error'])) {
|
if (!isset($_FILES[$name]['error'])) {
|
||||||
throw new ServerException(_("The theme file is missing or the upload failed."));
|
// TRANS: Server exception thrown when uploading a theme fails.
|
||||||
|
throw new ServerException(_('The theme file is missing or the upload failed.'));
|
||||||
}
|
}
|
||||||
if ($_FILES[$name]['error'] != UPLOAD_ERR_OK) {
|
if ($_FILES[$name]['error'] != UPLOAD_ERR_OK) {
|
||||||
throw new ServerException(_("The theme file is missing or the upload failed."));
|
// TRANS: Server exception thrown when uploading a theme fails.
|
||||||
|
throw new ServerException(_('The theme file is missing or the upload failed.'));
|
||||||
}
|
}
|
||||||
return new ThemeUploader($_FILES[$name]['tmp_name']);
|
return new ThemeUploader($_FILES[$name]['tmp_name']);
|
||||||
}
|
}
|
||||||
|
@ -88,7 +91,8 @@ class ThemeUploader
|
||||||
$this->loud();
|
$this->loud();
|
||||||
if (!$ok) {
|
if (!$ok) {
|
||||||
common_log(LOG_ERR, "Could not move old custom theme from $destDir to $killDir");
|
common_log(LOG_ERR, "Could not move old custom theme from $destDir to $killDir");
|
||||||
throw new ServerException(_("Failed saving theme."));
|
// TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails.
|
||||||
|
throw new ServerException(_('Failed saving theme.'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$killDir = false;
|
$killDir = false;
|
||||||
|
@ -99,7 +103,8 @@ class ThemeUploader
|
||||||
$this->loud();
|
$this->loud();
|
||||||
if (!$ok) {
|
if (!$ok) {
|
||||||
common_log(LOG_ERR, "Could not move saved theme from $tmpDir to $destDir");
|
common_log(LOG_ERR, "Could not move saved theme from $tmpDir to $destDir");
|
||||||
throw new ServerException(_("Failed saving theme."));
|
// TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails.
|
||||||
|
throw new ServerException(_('Failed saving theme.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($killDir) {
|
if ($killDir) {
|
||||||
|
@ -144,7 +149,8 @@ class ThemeUploader
|
||||||
$commonBaseDir = $baseDir;
|
$commonBaseDir = $baseDir;
|
||||||
} else {
|
} else {
|
||||||
if ($commonBaseDir != $baseDir) {
|
if ($commonBaseDir != $baseDir) {
|
||||||
throw new ClientException(_("Invalid theme: bad directory structure."));
|
// TRANS: Server exception thrown when an uploaded theme has an incorrect structure.
|
||||||
|
throw new ClientException(_('Invalid theme: Bad directory structure.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -163,6 +169,8 @@ class ThemeUploader
|
||||||
$estSize = $blockSize * max(1, intval(ceil($size / $blockSize)));
|
$estSize = $blockSize * max(1, intval(ceil($size / $blockSize)));
|
||||||
$totalSize += $estSize;
|
$totalSize += $estSize;
|
||||||
if ($totalSize > $sizeLimit) {
|
if ($totalSize > $sizeLimit) {
|
||||||
|
// TRANS: Client exception thrown when an uploaded theme is larger than the limit.
|
||||||
|
// TRANS: %d is the number of bytes of the uncompressed theme.
|
||||||
$msg = sprintf(_m('Uploaded theme is too large; must be less than %d byte uncompressed.',
|
$msg = sprintf(_m('Uploaded theme is too large; must be less than %d byte uncompressed.',
|
||||||
'Uploaded theme is too large; must be less than %d bytes uncompressed.',
|
'Uploaded theme is too large; must be less than %d bytes uncompressed.',
|
||||||
$sizeLimit),
|
$sizeLimit),
|
||||||
|
@ -176,8 +184,9 @@ class ThemeUploader
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$hasMain) {
|
if (!$hasMain) {
|
||||||
throw new ClientException(_("Invalid theme archive: " .
|
// TRANS: Server exception thrown when an uploaded theme is incomplete.
|
||||||
"missing file css/display.css"));
|
throw new ClientException(_('Invalid theme archive: ' .
|
||||||
|
"Missing file css/display.css"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -216,13 +225,15 @@ class ThemeUploader
|
||||||
{
|
{
|
||||||
if (!preg_match('/^[a-z0-9_\.-]+$/i', $name)) {
|
if (!preg_match('/^[a-z0-9_\.-]+$/i', $name)) {
|
||||||
common_log(LOG_ERR, "Bad theme filename: $name");
|
common_log(LOG_ERR, "Bad theme filename: $name");
|
||||||
|
// TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name.
|
||||||
$msg = _("Theme contains invalid file or folder name. " .
|
$msg = _("Theme contains invalid file or folder name. " .
|
||||||
"Stick with ASCII letters, digits, underscore, and minus sign.");
|
'Stick with ASCII letters, digits, underscore, and minus sign.');
|
||||||
throw new ClientException($msg);
|
throw new ClientException($msg);
|
||||||
}
|
}
|
||||||
if (preg_match('/\.(php|cgi|asp|aspx|js|vb)\w/i', $name)) {
|
if (preg_match('/\.(php|cgi|asp|aspx|js|vb)\w/i', $name)) {
|
||||||
common_log(LOG_ERR, "Unsafe theme filename: $name");
|
common_log(LOG_ERR, "Unsafe theme filename: $name");
|
||||||
$msg = _("Theme contains unsafe file extension names; may be unsafe.");
|
// TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions.
|
||||||
|
$msg = _('Theme contains unsafe file extension names; may be unsafe.');
|
||||||
throw new ClientException($msg);
|
throw new ClientException($msg);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -239,8 +250,9 @@ class ThemeUploader
|
||||||
// theme.ini exception
|
// theme.ini exception
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
$msg = sprintf(_("Theme contains file of type '.%s', " .
|
// TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed.
|
||||||
"which is not allowed."),
|
// TRANS: %s is the file type that is not allowed.
|
||||||
|
$msg = sprintf(_('Theme contains file of type ".%s", which is not allowed.'),
|
||||||
$ext);
|
$ext);
|
||||||
throw new ClientException($msg);
|
throw new ClientException($msg);
|
||||||
}
|
}
|
||||||
|
@ -257,7 +269,8 @@ class ThemeUploader
|
||||||
if ($ok !== true) {
|
if ($ok !== true) {
|
||||||
common_log(LOG_ERR, "Error opening theme zip archive: " .
|
common_log(LOG_ERR, "Error opening theme zip archive: " .
|
||||||
"{$this->sourceFile} code: {$ok}");
|
"{$this->sourceFile} code: {$ok}");
|
||||||
throw new Exception(_("Error opening theme archive."));
|
// TRANS: Server exception thrown when an uploaded compressed theme cannot be opened.
|
||||||
|
throw new Exception(_('Error opening theme archive.'));
|
||||||
}
|
}
|
||||||
return $zip;
|
return $zip;
|
||||||
}
|
}
|
||||||
|
@ -276,11 +289,13 @@ class ThemeUploader
|
||||||
$this->loud();
|
$this->loud();
|
||||||
if (!$ok) {
|
if (!$ok) {
|
||||||
common_log(LOG_ERR, "Failed to mkdir $dir while uploading theme");
|
common_log(LOG_ERR, "Failed to mkdir $dir while uploading theme");
|
||||||
throw new ServerException(_("Failed saving theme."));
|
// TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction.
|
||||||
|
throw new ServerException(_('Failed saving theme.'));
|
||||||
}
|
}
|
||||||
} else if (!is_dir($dir)) {
|
} else if (!is_dir($dir)) {
|
||||||
common_log(LOG_ERR, "Output directory $dir not a directory while uploading theme");
|
common_log(LOG_ERR, "Output directory $dir not a directory while uploading theme");
|
||||||
throw new ServerException(_("Failed saving theme."));
|
// TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction.
|
||||||
|
throw new ServerException(_('Failed saving theme.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ZipArchive::extractTo would be easier, but won't let us alter
|
// ZipArchive::extractTo would be easier, but won't let us alter
|
||||||
|
@ -288,14 +303,16 @@ class ThemeUploader
|
||||||
$in = $zip->getStream($from);
|
$in = $zip->getStream($from);
|
||||||
if (!$in) {
|
if (!$in) {
|
||||||
common_log(LOG_ERR, "Couldn't open archived file $from while uploading theme");
|
common_log(LOG_ERR, "Couldn't open archived file $from while uploading theme");
|
||||||
throw new ServerException(_("Failed saving theme."));
|
// TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction.
|
||||||
|
throw new ServerException(_('Failed saving theme.'));
|
||||||
}
|
}
|
||||||
$this->quiet();
|
$this->quiet();
|
||||||
$out = fopen($to, "wb");
|
$out = fopen($to, "wb");
|
||||||
$this->loud();
|
$this->loud();
|
||||||
if (!$out) {
|
if (!$out) {
|
||||||
common_log(LOG_ERR, "Couldn't open output file $to while uploading theme");
|
common_log(LOG_ERR, "Couldn't open output file $to while uploading theme");
|
||||||
throw new ServerException(_("Failed saving theme."));
|
// TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction.
|
||||||
|
throw new ServerException(_('Failed saving theme.'));
|
||||||
}
|
}
|
||||||
while (!feof($in)) {
|
while (!feof($in)) {
|
||||||
$buffer = fread($in, 65536);
|
$buffer = fread($in, 65536);
|
||||||
|
@ -333,5 +350,4 @@ class ThemeUploader
|
||||||
$list->close();
|
$list->close();
|
||||||
rmdir($dir);
|
rmdir($dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -423,8 +423,7 @@ class ThreadedNoticeListFavesItem extends NoticeListActorsItem
|
||||||
} else {
|
} else {
|
||||||
// TRANS: List message for favoured notices.
|
// TRANS: List message for favoured notices.
|
||||||
// TRANS: %d is the number of users that have favoured a notice.
|
// TRANS: %d is the number of users that have favoured a notice.
|
||||||
return sprintf(_m('FAVELIST',
|
return sprintf(_m('One person has favored this notice.',
|
||||||
'One person has favored this notice.',
|
|
||||||
'%d people have favored this notice.',
|
'%d people have favored this notice.',
|
||||||
$count),
|
$count),
|
||||||
$count);
|
$count);
|
||||||
|
@ -482,8 +481,7 @@ class ThreadedNoticeListRepeatsItem extends NoticeListActorsItem
|
||||||
} else {
|
} else {
|
||||||
// TRANS: List message for repeated notices.
|
// TRANS: List message for repeated notices.
|
||||||
// TRANS: %d is the number of users that have repeated a notice.
|
// TRANS: %d is the number of users that have repeated a notice.
|
||||||
return sprintf(_m('REPEATLIST',
|
return sprintf(_m('One person has repeated this notice.',
|
||||||
'One person has repeated this notice.',
|
|
||||||
'%d people have repeated this notice.',
|
'%d people have repeated this notice.',
|
||||||
$count),
|
$count),
|
||||||
$count);
|
$count);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user