Compare commits

...

2 commits

Author SHA1 Message Date
Slava Petrov
e2e53e7af8
Merge a870e60571 into 2e70a26283 2024-12-13 17:11:41 +03:00
Slava Petrov
a870e60571 news left menu 2024-12-13 16:57:19 +03:00
5 changed files with 23 additions and 1 deletions

View file

@ -239,6 +239,14 @@
</object> </object>
</a> </a>
</div> </div>
<div id="news" n:if="OPENVK_ROOT_CONF['openvk']['preferences']['news']['enable']">
<b>{_news} </b>
<hr size="1">
<text>{php echo OPENVK_ROOT_CONF['openvk']['preferences']['news']['title'];}</text>
<br><br>
<a href="{php echo OPENVK_ROOT_CONF['openvk']['preferences']['news']['link'];}">Подробнее »</a>
</div>
<div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && $thisUser->getCoins() != 0" id="votesBalance"> <div n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && $thisUser->getCoins() != 0" id="votesBalance">
{tr("you_still_have_x_points", $thisUser->getCoins())|noescape} {tr("you_still_have_x_points", $thisUser->getCoins())|noescape}

View file

@ -2305,7 +2305,7 @@ li {
padding-left: 15px; padding-left: 15px;
} }
#votesBalance { #votesBalance, #news {
margin-top: 10px; margin-top: 10px;
padding: 7px; padding: 7px;
background-color: #f6f6f6; background-color: #f6f6f6;
@ -2314,6 +2314,12 @@ li {
user-select: none; user-select: none;
} }
#news b
{
color: #8A0000;
font-size: 12px;
}
.cookies-popup { .cookies-popup {
position: fixed; position: fixed;
bottom: 0; bottom: 0;

View file

@ -1125,6 +1125,8 @@
"increased_your_rating_by" = "increased your rating by"; "increased_your_rating_by" = "increased your rating by";
"news" = "News";
/* Gifts */ /* Gifts */
"gift" = "Gift"; "gift" = "Gift";

View file

@ -1065,6 +1065,8 @@
"negative_rating_value" = "Мы не можем украсть рейтинг у другого человека, извините."; "negative_rating_value" = "Мы не можем украсть рейтинг у другого человека, извините.";
"increased_your_rating_by" = "повысил ваш рейтинг на"; "increased_your_rating_by" = "повысил ваш рейтинг на";
"news" = "Новость";
/* Gifts */ /* Gifts */
"gift" = "Подарок"; "gift" = "Подарок";

View file

@ -17,6 +17,10 @@ openvk:
minLength: 3 # won't affect existing short urls or the ones set via admin panel minLength: 3 # won't affect existing short urls or the ones set via admin panel
forbiddenNames: forbiddenNames:
- "index.php" - "index.php"
news:
enable: false
link: "/link"
title: "я покакал"
photos: photos:
upgradeStructure: false upgradeStructure: false
photoSaving: "quick" photoSaving: "quick"