X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=diaspora%2Fdiaspora.php;h=b486c0956a76cc6ec26685d4316dd73ed7083946;hb=7afef6b87f30c3e5fbad12de7c4980b7bab47f27;hp=34d84c8ff11b746ff815bbfd7259882cb56b67a1;hpb=3db056fe799de8c23cd95d8f601a6373f3ff972e;p=friendica-addons.git diff --git a/diaspora/diaspora.php b/diaspora/diaspora.php index 34d84c8f..b486c095 100644 --- a/diaspora/diaspora.php +++ b/diaspora/diaspora.php @@ -7,9 +7,10 @@ * Author: Michael Vogel */ -require_once("addon/diaspora/Diaspora_Connection.php"); +require_once 'addon/diaspora/Diaspora_Connection.php'; use Friendica\Core\Addon; +use Friendica\Core\L10n; use Friendica\Core\PConfig; use Friendica\Database\DBM; use Friendica\Model\Queue; @@ -41,7 +42,7 @@ function diaspora_jot_nets(&$a,&$b) { $diaspora_defpost = PConfig::get(local_user(),'diaspora','post_by_default'); $selected = ((intval($diaspora_defpost) == 1) ? ' checked="checked" ' : ''); $b .= '
' - . t('Post to Diaspora') . '
'; + . L10n::t('Post to Diaspora') . ''; } } @@ -139,9 +140,9 @@ function diaspora_settings(&$a,&$s) { $r = q("SELECT `addr` FROM `contact` WHERE `self` AND `uid` = %d", intval(local_user())); if (DBM::is_result($r)) { - $status = sprintf(t("Please remember: You can always be reached from Diaspora with your Friendica handle %s. "), $r[0]['addr']); - $status .= t('This connector is only meant if you still want to use your old Diaspora account for some time. '); - $status .= sprintf(t('However, it is preferred that you tell your Diaspora contacts the new handle %s instead.'), $r[0]['addr']); + $status = L10n::t("Please remember: You can always be reached from Diaspora with your Friendica handle %s. ", $r[0]['addr']); + $status .= L10n::t('This connector is only meant if you still want to use your old Diaspora account for some time. '); + $status .= L10n::t('However, it is preferred that you tell your Diaspora contacts the new handle %s instead.', $r[0]['addr']); } $aspects = false; @@ -151,18 +152,18 @@ function diaspora_settings(&$a,&$s) { $conn->logIn(); $aspects = $conn->getAspects(); if (!$aspects) { - $status = t("Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password."); + $status = L10n::t("Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password."); } } /* Add some HTML to the existing form */ $s .= ''; - $s .= '

'. t('Diaspora Export').'

'; + $s .= '

'. L10n::t('Diaspora Export').'

'; $s .= '
'; $s .= '
'; /* provide a submit button */ - $s .= '
'; + $s .= '
'; } @@ -368,7 +369,7 @@ function diaspora_send(&$a,&$b) { $s = serialize(['url' => $url, 'item' => $b['id'], 'post' => $body]); Queue::add($a->contact, NETWORK_DIASPORA2, $s); - notice(t('Diaspora post failed. Queued for retry.').EOL); + notice(L10n::t('Diaspora post failed. Queued for retry.').EOL); } } }