summaryrefslogtreecommitdiff
path: root/src/about.cpp
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2013-03-29 20:34:22 +0100
committerReinhard Tartler <siretart@tauware.de>2013-03-29 20:34:22 +0100
commit228d763f5a95a2575a18e03e0ea77555106023c4 (patch)
tree1eb49f0c372de4eef020e4c7e1716248622a7f0b /src/about.cpp
parent038de1a143b9775f37d4848f52c59af7cee66e36 (diff)
Imported Upstream version 0.8.4
Diffstat (limited to 'src/about.cpp')
-rw-r--r--src/about.cpp21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/about.cpp b/src/about.cpp
index ebf65e8..6fe4852 100644
--- a/src/about.cpp
+++ b/src/about.cpp
@@ -1,5 +1,5 @@
/* smplayer, GUI front-end for mplayer.
- Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
+ Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
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
@@ -48,10 +48,12 @@ About::About(QWidget * parent, Qt::WindowFlags f)
mplayer_version = tr("Using MPlayer %1").arg(MplayerVersion::toString(pref->mplayer_detected_version));
}
mplayer_version += "<br><br>";
+ } else {
+ mplayer_version += "<br>";
}
info->setText(
- "<b>SMPlayer</b> &copy; 2006-2012 Ricardo Villalba &lt;rvm@users.sourceforge.net&gt;<br><br>"
+ "<b>SMPlayer</b> &copy; 2006-2013 Ricardo Villalba &lt;rvm@users.sourceforge.net&gt;<br><br>"
"<b>" + tr("Version: %1").arg(smplayerVersion()) + "</b>" +
#if PORTABLE_APP
" (" + tr("Portable Edition") + ")" +
@@ -60,15 +62,14 @@ About::About(QWidget * parent, Qt::WindowFlags f)
"<br>Experimental branch<br>"
#endif
"<br>" +
- tr("Using Qt %1 (compiled with Qt %2)").arg(qVersion()).arg(QT_VERSION_STR) + "<br><br>" +
+ tr("Using Qt %1 (compiled with Qt %2)").arg(qVersion()).arg(QT_VERSION_STR) + "<br>" +
mplayer_version +
- tr("Visit our web for updates:") +"<br>"+
- link("http://smplayer.sf.net") +
- "<br><br>" +
- tr("Get help in our forum:") +"<br>" + link("http://smplayer.sf.net/forum") +
- "<br><br>" +
+ "<b>"+ tr("Links:") +"</b><br>"+
+ tr("Official website:") +" "+ link("http://smplayer.sourceforge.net") +"<br>"+
+ tr("Support forum:") +" "+ link("http://smplayer.sourceforge.net/forum/") +"<br>"+
+ "<br>" +
tr("SMPlayer uses the award-winning MPlayer as playback engine. See %1")
- .arg("<a href=\"http://www.mplayerhq.hu\">http://www.mplayerhq.hu</a>")
+ .arg("<a href=\"http://www.mplayerhq.hu/design7/info.html\">http://www.mplayerhq.hu</a>")
);
@@ -221,6 +222,8 @@ QString About::getTranslators() {
<< QString::fromUtf8("Algimantas Margevičius <margevicius.algimantas@gmail.com>") ) +
trad(tr("Danish"), "Martin Schlander <mschlander@opensuse.org>") +
trad(tr("Croatian"), QString::fromUtf8("Josip Kujundžija <marshsmello@gmail.com>")) +
+ trad(tr("Hebrew"), "Genghis Khan <genghiskhan@gmx.ca>") +
+ trad(tr("Thai"), QString::fromUtf8("มาโนชญ์ สมศักดิ์ <xyteton@hotmail.com>")) +
"");
}