]> git.mxchange.org Git - friendica.git/commitdiff
Updat tt() calls
authorAdam Magness <adam.magness@gmail.com>
Sun, 21 Jan 2018 22:15:52 +0000 (17:15 -0500)
committerAdam Magness <adam.magness@gmail.com>
Mon, 22 Jan 2018 23:03:26 +0000 (18:03 -0500)
update function calls for tt()

13 files changed:
include/conversation.php
include/text.php
mod/admin.php
mod/contacts.php
mod/dfrn_request.php
mod/invite.php
mod/message.php
mod/network.php
src/Content/Widget.php
src/Core/L10n.php
src/Core/UserImport.php
src/Object/Post.php
util/README

index bcc0b855f5abfd0acec9e70cca724eaa3f4ef1b1..91a835837e4c740a165ba3c96c0bbe01115f9dd8 100644 (file)
@@ -7,6 +7,7 @@ use Friendica\Content\ContactSelector;
 use Friendica\Content\Feature;
 use Friendica\Core\Addon;
 use Friendica\Core\Config;
+use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 use Friendica\Core\System;
 use Friendica\Database\DBM;
@@ -1668,19 +1669,19 @@ function get_response_button_text($v, $count)
 {
        switch ($v) {
                case 'like':
-                       $return = tt('Like', 'Likes', $count);
+                       $return = L10n::tt('Like', 'Likes', $count);
                        break;
                case 'dislike':
-                       $return = tt('Dislike', 'Dislikes', $count);
+                       $return = L10n::tt('Dislike', 'Dislikes', $count);
                        break;
                case 'attendyes':
-                       $return = tt('Attending', 'Attending', $count);
+                       $return = L10n::tt('Attending', 'Attending', $count);
                        break;
                case 'attendno':
-                       $return = tt('Not Attending', 'Not Attending', $count);
+                       $return = L10n::tt('Not Attending', 'Not Attending', $count);
                        break;
                case 'attendmaybe':
-                       $return = tt('Undecided', 'Undecided', $count);
+                       $return = L10n::tt('Undecided', 'Undecided', $count);
                        break;
        }
 
index 8de31043efe03aff272aa2e8709927184cf62da6..89e9e871d49bd1f5a8542ea3b5b0c34cb70f18bc 100644 (file)
@@ -952,10 +952,10 @@ function contact_block() {
                                dbesc(implode(",", $contacts)));
 
                        if (DBM::is_result($r)) {
-                               $contacts = sprintf(tt('%d Contact','%d Contacts', $total),$total);
+                               $contacts = sprintf(L10n::tt('%d Contact', '%d Contacts', $total), $total);
                                $micropro = [];
                                foreach ($r as $rr) {
-                                       $micropro[] = micropro($rr,true,'mpfriend');
+                                       $micropro[] = micropro($rr, true, 'mpfriend');
                                }
                        }
                }
index be24dea0af867559ce95bb2d15651ebf9aac07b3..756f4fe9498079e9dfe3844b56dd724ef741cdb8 100644 (file)
@@ -387,7 +387,7 @@ function admin_page_contactblock_post(App $a)
                foreach ($contacts as $uid) {
                        Contact::unblock($uid);
                }
-               notice(tt("%s contact unblocked", "%s contacts unblocked", count($contacts)));
+               notice(L10n::tt("%s contact unblocked", "%s contacts unblocked", count($contacts)));
        }
        goaway('admin/contactblock');
        return; // NOTREACHED
@@ -435,7 +435,7 @@ function admin_page_contactblock(App $a)
                '$baseurl'    => System::baseUrl(true),
 
                '$contacts'   => $contacts,
-               '$total_contacts' => tt('%s total blocked contact', '%s total blocked contacts', $total),
+               '$total_contacts' => L10n::tt('%s total blocked contact', '%s total blocked contacts', $total),
                '$paginate'   => paginate($a),
                '$contacturl' => ['contact_url', L10n::t("Profile URL"), '', L10n::t("URL of the remote contact to block.")],
        ]);
@@ -1516,13 +1516,13 @@ function admin_page_users_post(App $a)
                        q("UPDATE `user` SET `blocked` = 1-`blocked` WHERE `uid` = %s", intval($uid)
                        );
                }
-               notice(tt("%s user blocked/unblocked", "%s users blocked/unblocked", count($users)));
+               notice(L10n::tt("%s user blocked/unblocked", "%s users blocked/unblocked", count($users)));
        }
        if (x($_POST, 'page_users_delete')) {
                foreach ($users as $uid) {
                        User::remove($uid);
                }
-               notice(tt("%s user deleted", "%s users deleted", count($users)));
+               notice(L10n::tt("%s user deleted", "%s users deleted", count($users)));
        }
 
        if (x($_POST, 'page_users_approve')) {
index abfda5ef6ad038f6b7f455439d48d63231869e25..49c6e710ffcc2d4eee00f34a3f3b5539c0805060 100644 (file)
@@ -143,7 +143,7 @@ function contacts_batch_actions(App $a)
                }
        }
        if ($count_actions > 0) {
-               info(tt("%d contact edited.", "%d contacts edited.", $count_actions));
+               info(L10n::tt("%d contact edited.", "%d contacts edited.", $count_actions));
        }
 
        if (x($_SESSION, 'return_url')) {
index 473543b66ea749d1c8a1071844e0a4625169ad78..e3d8e668625451a9c0cd51d22f49e03ac6fac230 100644 (file)
@@ -117,7 +117,7 @@ function dfrn_request_post(App $a)
                                                }
                                                $invalid = Probe::validDfrn($parms);
                                                if ($invalid) {
-                                                       notice(sprintf(tt("%d required parameter was not found at the given location", "%d required parameters were not found at the given location", $invalid), $invalid) . EOL);
+                                                       notice(sprintf(L10n::tt("%d required parameter was not found at the given location", "%d required parameters were not found at the given location", $invalid), $invalid) . EOL);
                                                        return;
                                                }
                                        }
@@ -364,7 +364,7 @@ function dfrn_request_post(App $a)
                                        }
                                        $invalid = Probe::validDfrn($parms);
                                        if ($invalid) {
-                                               notice(sprintf(tt("%d required parameter was not found at the given location", "%d required parameters were not found at the given location", $invalid), $invalid) . EOL);
+                                               notice(sprintf(L10n::tt("%d required parameter was not found at the given location", "%d required parameters were not found at the given location", $invalid), $invalid) . EOL);
 
                                                return;
                                        }
index 40e54ec4a54b90dd87954c393f8964ceb977ab94..49f62cf0f8da328ca310c0a36fe67e1abf6c60cb 100644 (file)
@@ -91,11 +91,11 @@ function invite_post(App $a) {
                                return;
                        }
                } else {
-                       notice( sprintf( t('%s : Message delivery failed.'), $recip) . EOL);
+                       notice(sprintf(L10n::t('%s : Message delivery failed.'), $recip) . EOL);
                }
 
        }
-       notice( sprintf( tt("%d message sent.", "%d messages sent.", $total) , $total) . EOL);
+       notice(sprintf(L10n::tt("%d message sent.", "%d messages sent.", $total), $total) . EOL);
        return;
 }
 
index 0fc9b627c87ae5575818430167c1a6a90108a058..79b4ce0cecf769a1a8acad49595fe3968f66297d 100644 (file)
@@ -499,7 +499,7 @@ function render_messages(array $msg, $t)
                        '$date' => datetime_convert('UTC', date_default_timezone_get(), $rr['mailcreated'], t('D, d M Y - g:i A')),
                        '$ago' => relative_date($rr['mailcreated']),
                        '$seen' => $rr['mailseen'],
-                       '$count' => tt('%d message', '%d messages', $rr['count']),
+                       '$count' => L10n::tt('%d message', '%d messages', $rr['count']),
                ]);
        }
 
index 9fdad257bf0b239bba4f6c5085910e56f15e7637..447d8c475914095e185b821d65aa89a7e6a104f8 100644 (file)
@@ -541,7 +541,7 @@ function networkThreadedView(App $a, $update = 0)
 
                if ($gid) {
                        if (($t = Contact::getOStatusCountByGroupId($gid)) && !PConfig::get(local_user(), 'system', 'nowarn_insecure')) {
-                               notice(tt("Warning: This group contains %s member from a network that doesn't allow non public messages.",
+                               notice(L10n::tt("Warning: This group contains %s member from a network that doesn't allow non public messages.",
                                                "Warning: This group contains %s members from a network that doesn't allow non public messages.",
                                                $t) . EOL);
                                notice(L10n::t("Messages in this group won't be send to these receivers.").EOL);
index 156e9e3593b29ee849d9812265ceeac6f87aa13e..00a24b4505ebb2f1e916dd5392c885dba4163dab 100644 (file)
@@ -8,6 +8,7 @@ use Friendica\Content\ContactSelector;
 use Friendica\Content\Feature;
 use Friendica\Core\Addon;
 use Friendica\Core\Config;
+use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 use Friendica\Core\System;
 use Friendica\Database\DBM;
@@ -48,7 +49,7 @@ class Widget
                        $x = PConfig::get(local_user(), 'system', 'invites_remaining');
                        if ($x || is_site_admin()) {
                                $a->page['aside'] .= '<div class="side-link" id="side-invite-remain">'
-                                       . tt('%d invitation available', '%d invitations available', $x)
+                                       . L10n::tt('%d invitation available', '%d invitations available', $x)
                                        . '</div>' . $inv;
                        }
                }
@@ -302,7 +303,7 @@ class Widget
                }
 
                return replace_macros(get_markup_template('remote_friends_common.tpl'), array(
-                       '$desc' => tt("%d contact in common", "%d contacts in common", $t),
+                       '$desc' => L10n::tt("%d contact in common", "%d contacts in common", $t),
                        '$base' => System::baseUrl(),
                        '$uid' => $profile_uid,
                        '$cid' => (($cid) ? $cid : '0'),
index 7e079ea6d7f1abb8d0fb37d2eca0eb97cd31ce5a..88697a2a2c2391283808875d9a42328ea55fc786 100644 (file)
@@ -174,7 +174,7 @@ class L10n
         * @param int $count
         * @return string
         */
-       function tt($singular, $plural, $count)
+       public static function tt($singular, $plural, $count)
        {
                global $lang;
                $a = get_app();
index ef2679b55c0f964a0a83bb4f3103027cc1c6cb60..2409b76da53b7db21b1efb34bf98a8416cee370c 100644 (file)
@@ -231,7 +231,7 @@ class UserImport
                        }
                }
                if ($errorcount > 0) {
-                       notice(sprintf(tt("%d contact not imported", "%d contacts not imported", $errorcount), $errorcount));
+                       notice(sprintf(L10n::tt("%d contact not imported", "%d contacts not imported", $errorcount), $errorcount));
                }
 
                foreach ($account['group'] as &$group) {
index 59258a0aec7ccc4fbafd988825504922e72460ac..ee557273d3db36db9539d8cda437c437a20eac77 100644 (file)
@@ -8,6 +8,7 @@ use Friendica\BaseObject;
 use Friendica\Content\ContactSelector;
 use Friendica\Content\Feature;
 use Friendica\Core\Addon;
+use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 use Friendica\Database\DBM;
 use Friendica\Model\Contact;
@@ -420,9 +421,9 @@ class Post extends BaseObject
                        // Collapse
                        if (($nb_children > 2) || ($thread_level > 1)) {
                                $result['children'][0]['comment_firstcollapsed'] = true;
-                               $result['children'][0]['num_comments'] = tt('%d comment', '%d comments', $total_children);
+                               $result['children'][0]['num_comments'] = L10n::tt('%d comment', '%d comments', $total_children);
                                $result['children'][0]['hidden_comments_num'] = $total_children;
-                               $result['children'][0]['hidden_comments_text'] = tt('comment', 'comments', $total_children);
+                               $result['children'][0]['hidden_comments_text'] = L10n::tt('comment', 'comments', $total_children);
                                $result['children'][0]['hide_text'] = t('show more');
                                if ($thread_level > 1) {
                                        $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
@@ -434,7 +435,7 @@ class Post extends BaseObject
 
                if ($this->isToplevel()) {
                        $result['total_comments_num'] = "$total_children";
-                       $result['total_comments_text'] = tt('comment', 'comments', $total_children);
+                       $result['total_comments_text'] = L10n::tt('comment', 'comments', $total_children);
                }
 
                $result['private'] = $item['private'];
index eecf85b842d1d601596c20e439d29cd59d3408b2..a6efd938b62fc21edf4734801740a1b4224ffe78 100644 (file)
@@ -61,7 +61,7 @@ e.g.
 
 Plural
 
-The tt() function supports plural form. Script extract.php write this in
+The L10n::tt() function supports plural form. Script extract.php write this in
 strings.php as an array, one string for every plural form language supports:
 
 $a->string["%d message sent"] = Array(
@@ -79,7 +79,7 @@ More info at http://www.gnu.org/software/hello/manual/gettext/Plural-forms.html
 Xgettext and .po workflow
 
 1. Run util/run_xgettext.sh script (on *unix sistems, with GNU xgettext installed)
-       This script runs xgettext on source tree, extracting strings from t() and tt()
+       This script runs xgettext on source tree, extracting strings from L10n::t() and L10n::tt()
        functions, and creates a util/messages.po file.
 
        $ cd util; ./run_xgettext.sh