X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FBookmark%2Fdeliciousbackupimporter.php;h=1eb015f380efa63a6f2a313c867439cd9cb2f51b;hb=524b98bfa3fd340ade6ce8b0e7f23ce773db5d92;hp=197c7a143bc18af208782ca91c5e82af87858e7a;hpb=8eb66467165e107d0c80c64f6c429fed1d1101d5;p=quix0rs-gnu-social.git diff --git a/plugins/Bookmark/deliciousbackupimporter.php b/plugins/Bookmark/deliciousbackupimporter.php index 197c7a143b..1eb015f380 100644 --- a/plugins/Bookmark/deliciousbackupimporter.php +++ b/plugins/Bookmark/deliciousbackupimporter.php @@ -4,7 +4,7 @@ * Copyright (C) 2010, StatusNet, Inc. * * Importer class for Delicious.com backups - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class DeliciousBackupImporter extends QueueHandler { /** @@ -52,7 +51,6 @@ class DeliciousBackupImporter extends QueueHandler * * @return string transport string */ - function transport() { return 'dlcsback'; @@ -72,7 +70,6 @@ class DeliciousBackupImporter extends QueueHandler * * @return boolean success value */ - function handle($data) { list($user, $body) = $data; @@ -82,7 +79,8 @@ class DeliciousBackupImporter extends QueueHandler $dls = $doc->getElementsByTagName('dl'); if ($dls->length != 1) { - throw new ClientException(_("Bad import file.")); + // TRANS: Client exception thrown when a file upload is incorrect. + throw new ClientException(_m('Bad import file.')); } $dl = $dls->item(0); @@ -123,7 +121,7 @@ class DeliciousBackupImporter extends QueueHandler common_log(LOG_INFO, 'Skipping the

in the

.'); break; default: - common_log(LOG_WARNING, + common_log(LOG_WARNING, "Unexpected element $child->tagName ". " found in import."); } @@ -146,12 +144,12 @@ class DeliciousBackupImporter extends QueueHandler /** * Import a single bookmark - * + * * Takes a
/
pair. The
has a single * in it with some non-standard attributes. - * + * * A
sequence will appear as a
with - * anothe
as a child. We handle this case recursively. + * anothe
as a child. We handle this case recursively. * * @param User $user User to import data as * @param DOMElement $dt
element @@ -159,13 +157,13 @@ class DeliciousBackupImporter extends QueueHandler * * @return Notice imported notice */ - function importBookmark($user, $dt, $dd = null) { $as = $dt->getElementsByTagName('a'); if ($as->length == 0) { - throw new ClientException(_("No tag in a
.")); + // TRANS: Client exception thrown when a bookmark in an import file is incorrectly formatted. + throw new ClientException(_m("No tag in a
.")); } $a = $as->item(0); @@ -173,7 +171,8 @@ class DeliciousBackupImporter extends QueueHandler $private = $a->getAttribute('private'); if ($private != 0) { - throw new ClientException(_('Skipping private bookmark.')); + // TRANS: Client exception thrown when a bookmark in an import file is private. + throw new ClientException(_m('Skipping private bookmark.')); } if (!empty($dd)) { @@ -306,5 +305,4 @@ class DeliciousBackupImporter extends QueueHandler $this->fixListItem($node); } } - }