Skip to content

Commit

Permalink
0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Frechdachs committed Jan 6, 2017
1 parent c10cdab commit 5a735e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified locale/de/LC_MESSAGES/mpvQC.mo
Binary file not shown.
4 changes: 2 additions & 2 deletions locale/de/LC_MESSAGES/mpvQC.po
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ msgid "OK"
msgstr "OK"

#: mpvQC.py:576
msgid "<h1 style='text-align:center;'>{} - {}</h1><p><b>{}</b> is a free, open source and <b>libmpv</b> based application for the quick and easy creation of quality control reports of video files.</p><p>Based on {} and ffmpeg {}</p><p>Copyright © 2016 Frechdachs<br>&lt;frechdachs@rekt.cc&gt;</p><p><a href='https://mpvqc.rekt.cc/'>https://mpvqc.rekt.cc/</a></p>"
msgstr "<h1 style='text-align:center;'>{} - {}</h1><p><b>{}</b> ist ein freies, quelloffenes und <b>libmpv</b>-basiertes Programm zur einfachen und schnellen Anfertigung von QC-Berichten zu Videodateien.</p><p>Basiert auf {} und ffmpeg {}</p><p>Copyright © 2016 Frechdachs<br>&lt;frechdachs@rekt.cc&gt;</p><p><a href='https://mpvqc.rekt.cc/'>https://mpvqc.rekt.cc/</a></p>"
msgid "<h1 style='text-align:center;'>{} - {}</h1><p><b>{}</b> is a free, open source and <b>libmpv</b> based application for the quick and easy creation of quality control reports of video files.</p><p>Based on {} and ffmpeg {}</p><p>Copyright © {} Frechdachs<br>&lt;frechdachs@rekt.cc&gt;</p><p><a href='https://mpvqc.rekt.cc/'>https://mpvqc.rekt.cc/</a></p>"
msgstr "<h1 style='text-align:center;'>{} - {}</h1><p><b>{}</b> ist ein freies, quelloffenes und <b>libmpv</b>-basiertes Programm zur einfachen und schnellen Anfertigung von QC-Berichten zu Videodateien.</p><p>Basiert auf {} und ffmpeg {}</p><p>Copyright © {} Frechdachs<br>&lt;frechdachs@rekt.cc&gt;</p><p><a href='https://mpvqc.rekt.cc/'>https://mpvqc.rekt.cc/</a></p>"

#: mpvQC.py:586
msgid "About"
Expand Down
6 changes: 3 additions & 3 deletions mpvQC.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Copyright (C) 2016 Frechdachs <frechdachs@rekt.cc>
# Copyright (C) 2016-2017 Frechdachs <frechdachs@rekt.cc>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -487,7 +487,7 @@ def __init__(self, parent):
self.about = QTextBrowser()
self.about.setOpenExternalLinks(True)
self.about.setTextInteractionFlags(Qt.LinksAccessibleByMouse)
self.about.setHtml(_("<h1 style='text-align:center;'>{} - {}</h1><p><b>{}</b> is a free, open source and <b>libmpv</b> based application for the quick and easy creation of quality control reports of video files.</p><p>Based on {} and ffmpeg {}</p><p>Copyright © 2016 Frechdachs<br>&lt;frechdachs@rekt.cc&gt;</p><p><a href='https://mpvqc.rekt.cc/'>https://mpvqc.rekt.cc/</a></p>").format(v, platform.architecture()[0], v.split(" ")[0], mp.mpv_version, mp.ffmpeg_version))
self.about.setHtml(_("<h1 style='text-align:center;'>{} - {}</h1><p><b>{}</b> is a free, open source and <b>libmpv</b> based application for the quick and easy creation of quality control reports of video files.</p><p>Based on {} and ffmpeg {}</p><p>Copyright © {} Frechdachs<br>&lt;frechdachs@rekt.cc&gt;</p><p><a href='https://mpvqc.rekt.cc/'>https://mpvqc.rekt.cc/</a></p>").format(v, platform.architecture()[0], v.split(" ")[0], mp.mpv_version, mp.ffmpeg_version, "2016-2017"))

self.credits = QTextBrowser()
self.credits.setTextInteractionFlags(Qt.NoTextInteraction)
Expand Down Expand Up @@ -1688,7 +1688,7 @@ def mpvLogHandler(loglevel, component, message):
print("[{}] {}: {}".format(loglevel, component, message))


v = "mpvQC 0.5.0"
v = "mpvQC 0.5.1"

app = QApplication(sys.argv)
locale.setlocale(locale.LC_NUMERIC, "C")
Expand Down

0 comments on commit 5a735e1

Please sign in to comment.