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,38 @@
<?php
function friendheader_widget_name() {
use Friendica\Core\L10n;
function friendheader_widget_name()
{
return "Shows friends as a bar";
}
function friendheader_widget_help() {
function friendheader_widget_help()
{
return "";
}
function friendheader_widget_args(){
function friendheader_widget_args()
{
return [];
}
function friendheader_widget_size(){
function friendheader_widget_size()
{
return ['780px','140px'];
}
function friendheader_widget_content(&$a, $conf){
function friendheader_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,7 +46,7 @@ function friendheader_widget_content(&$a, $conf){
</style>";
$o .= _abs_url(contact_block());
$o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."' target=new>". t('Get added to this list!') ."</a>";
$o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>";
return $o;
}

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;
}

View file

@ -1,5 +1,7 @@
<?php
use Friendica\Core\L10n;
function like_widget_name() {
return "Shows likes";
}
@ -56,10 +58,10 @@ function like_widget_content(&$a, $conf){
$t = get_markup_template("widget_like.tpl", "addon/widgets/");
$o .= replace_macros($t, [
'$like' => $likes,
'$strlike' => sprintf( tt("%d person likes this", "%d people like this", $likes), $likes),
'$strlike' => sprintf(L10n::tt("%d person likes this", "%d people like this", $likes), $likes),
'$dislike' => $dislikes,
'$strdislike'=> sprintf( tt("%d person doesn't like this", "%d people don't like this", $dislikes), $dislikes),
'$strdislike'=> sprintf(L10n::tt("%d person doesn't like this", "%d people don't like this", $dislikes), $dislikes),
'$baseurl' => $a->get_baseurl(),
]);

View file

@ -6,6 +6,7 @@
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrix/>
*/
use Friendica\Core\Addon;
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
function widgets_install() {
@ -55,12 +56,12 @@ function widgets_settings(&$a,&$o) {
# $t = file_get_contents( dirname(__file__). "/settings.tpl" );
$t = get_markup_template("settings.tpl", "addon/widgets/");
$o .= replace_macros($t, [
'$submit' => t('Generate new key'),
'$submit' => L10n::t('Generate new key'),
'$baseurl' => $a->get_baseurl(),
'$title' => "Widgets",
'$label' => t('Widgets key'),
'$label' => L10n::t('Widgets key'),
'$key' => $key,
'$widgets_h' => t('Widgets available'),
'$widgets_h' => L10n::t('Widgets available'),
'$widgets' => $widgets,
]);
@ -122,7 +123,7 @@ function widgets_content(&$a) {
if (isset($_GET['p']) && local_user()==$conf['uid'] ) {
$o .= "<style>.f9k_widget { float: left;border:1px solid black; }</style>";
$o .= "<h1>Preview Widget</h1>";
$o .= '<a href="'.$a->get_baseurl().'/settings/addon">'. t("Addon Settings") .'</a>';
$o .= '<a href="'.$a->get_baseurl().'/settings/addon">'. L10n::t("Addon Settings") .'</a>';
$o .= "<h4>".call_user_func($a->argv[1].'_widget_name')."</h4>";
$o .= call_user_func($a->argv[1].'_widget_help');
@ -167,14 +168,8 @@ function widgets_content(&$a) {
return $o;
}
}
echo $o;
killme();
}
?>