mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
User: Use two translations of "was online"
This commit is contained in:
parent
97444315e4
commit
cab9aa99d3
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
|||
{if $user->isOnline()}
|
||||
<span><b>{_online}</b></span>
|
||||
{else}
|
||||
<span>{_was_online} {$user->getOnline()}</span>
|
||||
<span>{$user->isFemale() ? tr("was_online_f") : tr("was_online_m")} {$user->getOnline()}</span>
|
||||
{/if}
|
||||
</div>
|
||||
<div n:if="$user->onlineStatus() == 2" style="float:right;">
|
||||
|
|
Loading…
Reference in a new issue