Update t() calls

Update all t() calls.
This commit is contained in:
Adam Magness 2018-01-22 14:03:11 -05:00
parent 3ae390c6ee
commit f8c162cbfb
77 changed files with 1043 additions and 968 deletions

View file

@ -1,29 +1,40 @@
<?php
function friends_widget_name() {
use Friendica\Core\L10n;
function friends_widget_name()
{
return "Shows profile contacts";
}
function friends_widget_help() {
function friends_widget_help()
{
return "";
}
function friends_widget_args(){
function friends_widget_args()
{
return [];
}
function friends_widget_size(){
return ['100%','200px'];
function friends_widget_size()
{
return ['100%', '200px'];
}
function friends_widget_content(&$a, $conf){
function friends_widget_content(&$a, $conf)
{
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
WHERE `user`.`uid` = %s AND `profile`.`is-default` = 1 LIMIT 1",
intval($conf['uid'])
intval($conf['uid'])
);
if(!count($r)) return;
if (!count($r)) {
return;
}
$a->profile = $r[0];
$o = "";
@ -37,6 +48,6 @@ function friends_widget_content(&$a, $conf){
</style>";
$o .= _abs_url(contact_block());
$o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". t('Connect on Friendica!') ."</a>";
$o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
return $o;
}