summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Osipov <simba@lerlan.ru>2012-06-17 15:01:02 +0200
committerMartin Lambers <marlam@marlam.de>2012-06-17 15:01:02 +0200
commit08e744f77765ab6489f96bbc7b4bc61292f18a9c (patch)
tree8fe4128d6d600eb4bb583c7bf5d5b2a822b27ab9
parent95fc821969c8c397570a05aa18fe5d30cceab163 (diff)
downloadbino-08e744f77765ab6489f96bbc7b4bc61292f18a9c.tar.gz
Fix incomplete closing tag in GUI message.
-rw-r--r--po/de.po4
-rw-r--r--po/fr.po2
-rw-r--r--po/ru.po2
-rw-r--r--src/gui.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/po/de.po b/po/de.po
index ac1b90b..950db5a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -670,10 +670,10 @@ msgstr "Zoom für überbreite Videos"
#: src/gui.cpp:1515
msgid ""
"<p>Set zoom level for videos that<br>are wider than the screen:<br>0: Show "
-"full video width.<br>1: Use full screen height.</p"
+"full video width.<br>1: Use full screen height.</p>"
msgstr ""
"<p>Setze den Zoom für Videos, die<br>breiter als der Bildschirm sind:<br>0: "
-"Zeige volle Videobreite.<br>1: Nutze volle Bildschirmhöhe.</p"
+"Zeige volle Videobreite.<br>1: Nutze volle Bildschirmhöhe.</p>"
#: src/gui.cpp:1519
msgid "Zoom:"
diff --git a/po/fr.po b/po/fr.po
index e90aef4..1c38883 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -674,7 +674,7 @@ msgstr "Zoom pour les vidéos larges"
#: src/gui.cpp:1515
msgid ""
"<p>Set zoom level for videos that<br>are wider than the screen:<br>0: Show "
-"full video width.<br>1: Use full screen height.</p"
+"full video width.<br>1: Use full screen height.</p>"
msgstr ""
"<p>Réglage du zoom pour les vidéos qui<br>sont plus larges que l'écran :"
"<br>0 : Pleine largeur.<br>1 : Pleine hauteur.</p>"
diff --git a/po/ru.po b/po/ru.po
index 6cb6881..1af6fc4 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -671,7 +671,7 @@ msgstr "Масштаб для широкоэкранного видео"
#: src/gui.cpp:1515
msgid ""
"<p>Set zoom level for videos that<br>are wider than the screen:<br>0: Show "
-"full video width.<br>1: Use full screen height.</p"
+"full video width.<br>1: Use full screen height.</p>"
msgstr ""
"<p>Масштаб для видеозаписей, ширина<br>которых превышает ширину экрана:"
"<br>0: Показывать видео в полную ширину.<br>1: Использовать всю высоту "
diff --git a/src/gui.cpp b/src/gui.cpp
index f2f5522..403358a 100644
--- a/src/gui.cpp
+++ b/src/gui.cpp
@@ -1515,7 +1515,7 @@ zoom_dialog::zoom_dialog(QWidget *parent) : QDialog(parent), _lock(false)
"<p>Set zoom level for videos that<br>"
"are wider than the screen:<br>"
"0: Show full video width.<br>"
- "1: Use full screen height.</p"));
+ "1: Use full screen height.</p>"));
QLabel *z_label = new QLabel(_("Zoom:"));
z_label->setToolTip(_("<p>Set the zoom level for videos that are wider than the screen.</p>"));
_z_slider = new QSlider(Qt::Horizontal);