X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=b8f6fc52324dd67d7996fa5ec6c79963c361b9d6;hb=105f3ca7479c20e118b47b3ec03f8c1b3ff8656f;hp=370d772e1c1824f4efa9ecf6eabd5496c8409ad7;hpb=d49f986d1eb6894dd948577288357b6c1755e3d3;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php index 370d772e1c..b8f6fc5232 100644 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -15,7 +15,7 @@ function repair_ostatus_content(App $a) { // NOTREACHED } - $o = "

".t("Resubscribing to OStatus contacts")."

"; + $o = "

".L10n::t("Resubscribing to OStatus contacts")."

"; $uid = local_user(); @@ -31,7 +31,7 @@ function repair_ostatus_content(App $a) { intval(CONTACT_IS_SHARING)); if (!$r) - return($o.t("Error")); + return($o.L10n::t("Error")); $total = $r[0]["total"]; @@ -45,15 +45,15 @@ function repair_ostatus_content(App $a) { intval(CONTACT_IS_SHARING), $counter++); if (!$r) { - $o .= t("Done"); + $o .= L10n::t("Done"); return $o; } $o .= "

".$counter."/".$total.": ".$r[0]["url"]."

"; - $o .= "

".t("Keep this window open until done.")."

"; + $o .= "

".L10n::t("Keep this window open until done.")."

"; - $result = Contact::createFromProbe($uid,$r[0]["url"],true); + $result = Contact::createFromProbe($uid, $r[0]["url"], true); $a->page['htmlhead'] = '';