Skip to content

Commit 196448e

Browse files
committed
Restore translated strings
1 parent 0739a85 commit 196448e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/classes/app.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,9 @@ def __init__(self, *args, mode=None):
143143
QMessageBox.warning(
144144
None,
145145
_("Wrong Version of libopenshot Detected"),
146-
_("<b>Version %(minimum_version)s is required</b>, but %(current_version)s was detected. \
147-
Please update libopenshot or download our latest installer.")
146+
_("<b>Version %(minimum_version)s is required</b>, "
147+
"but %(current_version)s was detected. "
148+
"Please update libopenshot or download our latest installer.")
148149
% {
149150
"minimum_version": info.MINIMUM_LIBOPENSHOT_VERSION,
150151
"current_version": libopenshot_version,

src/windows/about.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ def __init__(self):
130130
log.warn("No changelog files found, disabling button")
131131

132132
create_text = _('Create &amp; Edit Amazing Videos and Movies')
133-
description_text = _('''
134-
OpenShot Video Editor 2.x is the next generation of the award-winning <br/>OpenShot video editing platform.
135-
''')
133+
description_text = _(
134+
"OpenShot Video Editor 2.x is the next generation of the award-winning <br/>"
135+
"OpenShot video editing platform.")
136136
learnmore_text = _('Learn more')
137137
copyright_text = _('Copyright &copy; %(begin_year)s-%(current_year)s') % {
138138
'begin_year': '2008',

0 commit comments

Comments
 (0)