Fix lang on remaining

This commit is contained in:
Ibnu Maksum 2024-05-16 16:53:20 +07:00
parent 0511459424
commit a9761dda28
No known key found for this signature in database
GPG key ID: 7FC82848810579E5
2 changed files with 3 additions and 2 deletions

View file

@ -127,7 +127,7 @@ class Lang
if (!$full)
$string = array_slice($string, 0, 1);
return $string ? implode(', ', $string) . ' ago' : 'just now';
return $string ? implode(', ', $string) .' '. Lang::T('ago') : Lang::T('just now');
}
public static function nl2br($text)

View file

@ -580,5 +580,6 @@
"Extend": "Extend",
"Created___Expired": "Created \/ Expired",
"Bank_Transfer": "Bank Transfer",
"Recharge_Using": "Recharge Using"
"Recharge_Using": "Recharge Using",
"ago": "ago"
}