diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c64a86f..add1b9d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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: diff --git a/src/locales/ru/LC_MESSAGES/socializer-documentation.mo b/src/locales/ru/LC_MESSAGES/socializer-documentation.mo index 2e18320..01f1912 100644 Binary files a/src/locales/ru/LC_MESSAGES/socializer-documentation.mo and b/src/locales/ru/LC_MESSAGES/socializer-documentation.mo differ diff --git a/src/locales/ru/LC_MESSAGES/socializer-documentation.po b/src/locales/ru/LC_MESSAGES/socializer-documentation.po index 92c0476..4efd589 100644 --- a/src/locales/ru/LC_MESSAGES/socializer-documentation.po +++ b/src/locales/ru/LC_MESSAGES/socializer-documentation.po @@ -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 \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 " diff --git a/src/presenters/displayPosts/audio.py b/src/presenters/displayPosts/audio.py index 9fda65e..3d2caac 100644 --- a/src/presenters/displayPosts/audio.py +++ b/src/presenters/displayPosts/audio.py @@ -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):