Merge branch 'master' of code.manuelcortez.net:manuelcortez/socializer

This commit is contained in:
Manuel Cortez 2019-05-20 00:42:19 -05:00
commit 82c71a3bd8
4 changed files with 27 additions and 9 deletions

View File

@ -21,6 +21,27 @@ test_py3:
- '%PYTHON3% -m coverage report --omit="test*"'
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
documentation:
type: deploy
tags:
- windows10
before_script:
- '%PYTHON3% -v'
script:
- copy changelog.md doc\changelog.md
- cd doc
- '%PYTHON2% documentation_importer.py'
- cd ..\src
- '%PYTHON2% ..\doc\generator.py'
- 'move documentation ..\'
only:
- master
artifacts:
paths:
- documentation
name: socializer_documentation
expire_in: 1 day
alpha_python3:
type: deploy
tags:

View File

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: Socializer 0.20\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-04-23 15:44-0500\n"
"PO-Revision-Date: 2019-05-06 11:45-0500\n"
"PO-Revision-Date: 2019-05-07 11:37-0500\n"
"Last-Translator: Manuel Cortez <manuel@manuelcortez.net>\n"
"Language-Team: Daria Ratnikova\n"
"Language: ru\n"
@ -1835,10 +1835,7 @@ msgid "* Destroy: dismisses the list you're on, if possible."
msgstr "* Уничтожить: удаляет список, в котором Вы находитесь, если это возможно."
msgid "### Player menu"
msgstr ""
"### * Удалить: открывает меню, в котором Вы можете удалить уже существующий альбом, "
"принадлежащий вам. В настоящее время поддерживаются только аудио и видео альбомы."
"Меню аудиоплеера"
msgstr "### Меню аудиоплеера"
msgid ""
"* Play: Plays the currently focused audio item, if the current buffer contains "
@ -2145,8 +2142,8 @@ msgid ""
"Socializer is developed and maintained by [Manuel Cortez,](https://manuelcortez."
"net) with contributions by [Anibal Hernandez](https://dragodark.com)"
msgstr ""
"Socializer разработан и поддерживается [Мануэлем Кортесом] (https://manuelcortez."
"net) при участии [Анибала Эрнандеса] (https://dragodark.com)"
"Socializer разработан и поддерживается [Мануэлем Кортесом](https://manuelcortez."
"net) при участии [Анибала Эрнандеса](https://dragodark.com)"
msgid ""
"We would also like to thank the translators of Socializer, who have allowed the "

View File

@ -82,8 +82,8 @@ class displayAudioPresenter(base.basePresenter):
def play(self, audio_index):
post = self.post[audio_index]
if player.player.stream != None:
return player.player.pause()
if player.player.check_is_playing() == True:
return pub.sendMessage("stop")
pub.sendMessage("play", object=post)
def load_audios(self):