mirror of
https://github.com/openvk/openvk
synced 2025-04-23 16:43:02 +03:00
Compare commits
6 commits
1ba7ce55f3
...
5c26eb73c7
Author | SHA1 | Date | |
---|---|---|---|
|
5c26eb73c7 | ||
|
b7fc23bb52 | ||
|
bf65910730 | ||
|
425e148ee5 | ||
|
756dcf68e3 | ||
|
153206f9ba |
4 changed files with 12 additions and 2 deletions
|
@ -371,7 +371,11 @@ abstract class OpenVKPresenter extends SimplePresenter
|
||||||
$whichbrowser->isEngine('NetFront') || // PSP and other japanese portable systems
|
$whichbrowser->isEngine('NetFront') || // PSP and other japanese portable systems
|
||||||
$whichbrowser->isOs('Android') ||
|
$whichbrowser->isOs('Android') ||
|
||||||
$whichbrowser->isOs('iOS') ||
|
$whichbrowser->isOs('iOS') ||
|
||||||
$whichbrowser->isBrowser('Internet Explorer', '<=', '8')) {
|
$whichbrowser->isBrowser('BlackBerry Browser') ||
|
||||||
|
$whichbrowser->isBrowser('Internet Explorer', '<=', '8') ||
|
||||||
|
$whichbrowser->isBrowser('Firefox', '<=', '47') ||
|
||||||
|
$whichbrowser->isBrowser('Safari', '<=', '7') ||
|
||||||
|
$whichbrowser->isBrowser('Google Chrome', '<=', '35')) {
|
||||||
// yeah, it's old, but ios and android are?
|
// yeah, it's old, but ios and android are?
|
||||||
if ($whichbrowser->isOs('iOS') && $whichbrowser->isOs('iOS', '<=', '9')) {
|
if ($whichbrowser->isOs('iOS') && $whichbrowser->isOs('iOS', '<=', '9')) {
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -458,8 +458,11 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr n:if="!is_null($user->getBirthday())">
|
<tr n:if="!is_null($user->getBirthday())">
|
||||||
<td class="label"><span class="nobold">{_birth_date}:</span></td>
|
<td class="label"><span class="nobold">{_birth_date}:</span></td>
|
||||||
<td n:if="$user->getBirthdayPrivacy() == 0" class="data">{$user->getBirthday()->format('%e %B %Y')},
|
{if $user->onlineStatus() != 2 && $user->getBirthdayPrivacy() == 0}
|
||||||
|
<td class="data">{$user->getBirthday()->format('%e %B %Y')},
|
||||||
{tr("years", $user->getAge())}</td>
|
{tr("years", $user->getAge())}</td>
|
||||||
|
{/if}
|
||||||
|
<td n:if="$user->onlineStatus() == 2" class="data">{$user->getBirthday()->format('%e %B %Y')}</td>
|
||||||
<td n:if="$user->getBirthdayPrivacy() == 1" class="data">{$user->getBirthday()->format('%e %B')}</td>
|
<td n:if="$user->getBirthdayPrivacy() == 1" class="data">{$user->getBirthday()->format('%e %B')}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -2235,6 +2235,7 @@
|
||||||
"mobile_like" = "Like";
|
"mobile_like" = "Like";
|
||||||
"mobile_user_info_hide" = "Hide";
|
"mobile_user_info_hide" = "Hide";
|
||||||
"mobile_user_info_show_details" = "Show details";
|
"mobile_user_info_show_details" = "Show details";
|
||||||
|
"mobile_attachment_only_for_pc" = "This attachments is not implemented for PDA version. Please, view it on PC.";
|
||||||
|
|
||||||
/* Fullscreen player */
|
/* Fullscreen player */
|
||||||
|
|
||||||
|
|
|
@ -2130,6 +2130,7 @@
|
||||||
"mobile_like" = "Нравится";
|
"mobile_like" = "Нравится";
|
||||||
"mobile_user_info_hide" = "Скрыть";
|
"mobile_user_info_hide" = "Скрыть";
|
||||||
"mobile_user_info_show_details" = "Показать подробнее";
|
"mobile_user_info_show_details" = "Показать подробнее";
|
||||||
|
"mobile_attachment_only_for_pc" = "Вложение недоступно в PDA версии, его просмотр возможен только с другого устройства";
|
||||||
|
|
||||||
/* Fullscreen player */
|
/* Fullscreen player */
|
||||||
|
|
||||||
|
@ -2306,3 +2307,4 @@
|
||||||
"faves_few" = "$1 закладки";
|
"faves_few" = "$1 закладки";
|
||||||
"faves_many" = "$1 закладок";
|
"faves_many" = "$1 закладок";
|
||||||
"faves_other" = "$1 закладок";
|
"faves_other" = "$1 закладок";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue