Merge branch 'master' of code.manuelcortez.net:manuelcortez/socializer
This commit is contained in:
commit
82c71a3bd8
@ -21,6 +21,27 @@ test_py3:
|
|||||||
- '%PYTHON3% -m coverage report --omit="test*"'
|
- '%PYTHON3% -m coverage report --omit="test*"'
|
||||||
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
|
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:
|
alpha_python3:
|
||||||
type: deploy
|
type: deploy
|
||||||
tags:
|
tags:
|
||||||
|
Binary file not shown.
@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: Socializer 0.20\n"
|
"Project-Id-Version: Socializer 0.20\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-04-23 15:44-0500\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"
|
"Last-Translator: Manuel Cortez <manuel@manuelcortez.net>\n"
|
||||||
"Language-Team: Daria Ratnikova\n"
|
"Language-Team: Daria Ratnikova\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -1835,10 +1835,7 @@ msgid "* Destroy: dismisses the list you're on, if possible."
|
|||||||
msgstr "* Уничтожить: удаляет список, в котором Вы находитесь, если это возможно."
|
msgstr "* Уничтожить: удаляет список, в котором Вы находитесь, если это возможно."
|
||||||
|
|
||||||
msgid "### Player menu"
|
msgid "### Player menu"
|
||||||
msgstr ""
|
msgstr "### Меню аудиоплеера"
|
||||||
"### * Удалить: открывает меню, в котором Вы можете удалить уже существующий альбом, "
|
|
||||||
"принадлежащий вам. В настоящее время поддерживаются только аудио и видео альбомы."
|
|
||||||
"Меню аудиоплеера"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"* Play: Plays the currently focused audio item, if the current buffer contains "
|
"* 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."
|
"Socializer is developed and maintained by [Manuel Cortez,](https://manuelcortez."
|
||||||
"net) with contributions by [Anibal Hernandez](https://dragodark.com)"
|
"net) with contributions by [Anibal Hernandez](https://dragodark.com)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Socializer разработан и поддерживается [Мануэлем Кортесом] (https://manuelcortez."
|
"Socializer разработан и поддерживается [Мануэлем Кортесом](https://manuelcortez."
|
||||||
"net) при участии [Анибала Эрнандеса] (https://dragodark.com)"
|
"net) при участии [Анибала Эрнандеса](https://dragodark.com)"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would also like to thank the translators of Socializer, who have allowed the "
|
"We would also like to thank the translators of Socializer, who have allowed the "
|
||||||
|
@ -82,8 +82,8 @@ class displayAudioPresenter(base.basePresenter):
|
|||||||
|
|
||||||
def play(self, audio_index):
|
def play(self, audio_index):
|
||||||
post = self.post[audio_index]
|
post = self.post[audio_index]
|
||||||
if player.player.stream != None:
|
if player.player.check_is_playing() == True:
|
||||||
return player.player.pause()
|
return pub.sendMessage("stop")
|
||||||
pub.sendMessage("play", object=post)
|
pub.sendMessage("play", object=post)
|
||||||
|
|
||||||
def load_audios(self):
|
def load_audios(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user