diff --git a/css/style.css b/css/style.css index ff70888..b75fcb2 100644 --- a/css/style.css +++ b/css/style.css @@ -231,16 +231,16 @@ button.disabled:hover } .userMenu li.userMenu-options > a { - background: url(../img/following.png) no-repeat 5px center; + background: url(../img/switch.png) no-repeat 5px center; padding-left: 50px; } .userMenu li.userMenu-options:hover > a { - background: url(../img/following.png) no-repeat 5px center rgba( 0, 0, 0 , .4 ); + background: url(../img/switch.png) no-repeat 5px center rgba( 0, 0, 0 , .4 ); } .userMenu li.userMenu-options.current > a { - background: url(../img/following.png) no-repeat 5px center #768fce; + background: url(../img/switch.png) no-repeat 5px center #768fce; } .userMenu li.userMenu-messages > a { @@ -610,7 +610,7 @@ input.userMenu-search-field:focus::-ms-input-placeholder { } .mini-profile-actions:hover ul { - height: 118px; + height: 90px; box-shadow: 0 2px 5px #65686f; } .mini-profile-actions ul li diff --git a/following.html b/following.html index eba71c6..70079ef 100644 --- a/following.html +++ b/following.html @@ -89,7 +89,6 @@
  • Display mentions to @
  • -
  • Display retransmissions
  • diff --git a/img/switch.png b/img/switch.png new file mode 100644 index 0000000..a7a46cd Binary files /dev/null and b/img/switch.png differ diff --git a/js/calm.js b/js/calm.js index 221fb1c..8d232fc 100644 --- a/js/calm.js +++ b/js/calm.js @@ -176,7 +176,7 @@ function replaceEmoji() { $(this).html(string.replace(exp, function(match){ var clearMatch = match.replace(/:/gi,''); if(emojies.indexOf(clearMatch) < 0) return match; - return '' + return '' })); }) } diff --git a/js/interface_common.js b/js/interface_common.js index 9995df7..074f717 100644 --- a/js/interface_common.js +++ b/js/interface_common.js @@ -394,6 +394,7 @@ function replyTextKeypress(e) { if($this.parent().parent().parent().is('.post-area,.post-reply-content')){ $this.parent().parent().removeClass('open'); $this.blur(); + setTimeout('requestTimelineUpdate("latest",postsPerRefresh,followingUsers,promotedPostsOnly)', 1000); } } } @@ -406,10 +407,12 @@ function replyTextKeypress(e) { if($this.parent().parent().parent().is('.post-area,.post-reply-content')){ $this.parent().parent().removeClass('open'); $this.blur(); + setTimeout('requestTimelineUpdate("latest",postsPerRefresh,followingUsers,promotedPostsOnly)', 1000); } } } } + } } diff --git a/js/interface_localization.js b/js/interface_localization.js index db64877..ba96310 100644 --- a/js/interface_localization.js +++ b/js/interface_localization.js @@ -80,6 +80,7 @@ if(preferredLanguage == "en"){ "Home": "Home", // homepage "hours": "%{smart_count} hour |||| %{smart_count} hours", "Internal error: lastPostId unknown (following yourself may fix!)": "Internal error: lastPostId unknown (following yourself may fix!)", + "Keys":"Keys", "Known peers:": "Known peers: ", "Last block is ahead of your computer time, check your clock.": "Last block is ahead of your computer time, check your clock.", "Mentions": "Mentions", @@ -118,11 +119,13 @@ if(preferredLanguage == "en"){ "search": "search", "seconds": "%{smart_count} second |||| %{smart_count} seconds", "send": "send", + "Send key":"Send key", "Send post with username": "Send post with username ", "Sent Direct Message": "Sent Direct Message", "Sent Post to @": "Sent Post to @", "Setup account": "Setup account", "Sound notifications": "Sound notifications", + "Show QR code":"Show QR code", "switch_to_network": "Local daemon is not connected to the network or\n" + "block chain is outdated. If you stay in this page\n" + "your actions may not work.\n" + @@ -134,6 +137,7 @@ if(preferredLanguage == "en"){ "Unfollow": "Unfollow", "Update": "Update", "Updating status...": "Updating status...", // status of block chain + "Use language": "Use language", "user_not_yet_accepted": "Other peers have not yet accepted this new user.\n" + "Unfortunately it is not possible to save profile\n" + "or send any posts in this state.\n\n" + @@ -800,6 +804,7 @@ if(preferredLanguage == "ru"){ "Home": "Главная", // homepage "hours": "%{smart_count} час |||| %{smart_count} часов", "Internal error: lastPostId unknown (following yourself may fix!)": "Внутренняя ошибка: lastPostId неизвестен (Попробуйте подписаться сами на себя, это должно помочь!)", + "Keys":"Клавиши", "Known peers:": "Известные пиры: ", "Last block is ahead of your computer time, check your clock.": "Последний полученный блок опережает время вашего компьютера, проверьте правильно ли работают часы.", "Mentions": "Упоминания", @@ -839,11 +844,13 @@ if(preferredLanguage == "ru"){ "search": "поиск", "seconds": "%{smart_count} секунда |||| %{smart_count} секунд", "send": "отправить", + "Send key":"Клавиша отправки", "Send post with username": "Отправить сообщение от имени", "Sent Direct Message": "Отправить личное сообщение", "Sent Post to @": "Отправить сообщение для @", "Setup account": "Настроить аккаунт", "Sound notifications": "Звуковые уведомления", + "Show QR code":"Показать QR код", "switch_to_network": "Локальный демон не подключен к сети или\n" + "цепочка блоков устарела. Если вы останитесь на этой странице\n" + "ваши действия могут быть не выполнены.\n" + @@ -856,6 +863,7 @@ if(preferredLanguage == "ru"){ "Unfollow": "Отписаться", "Update": "Обновить", "Updating status...": "Обновление информации...", // status of block chain + "Use language": "Использовать язык", "user_not_yet_accepted": "Другие участники сети еще не получили информацию о новом пользователе.\n" + "К сожалению, сейчас вы не можете редактировать ваш профиль\n" + "или отправлять сообщение.\n\n" + diff --git a/options.html b/options.html index 951f8f5..210c0a1 100644 --- a/options.html +++ b/options.html @@ -51,10 +51,9 @@
    -

    Language

    +

    Use language

    -

    Use language

    - +