summaryrefslogtreecommitdiff
path: root/HelpDialog.cpp
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2013-03-21 11:01:59 +0100
committerThomas Preud'homme <robotux@celest.fr>2013-03-21 11:01:59 +0100
commite297dbd8052ef4e66f069e2dd1865ae7fa8af28e (patch)
tree342fea0a2f6f33b8b62dad2d1729f8209da1a1ba /HelpDialog.cpp
parent8f9f382e1c97cab2e72e97495650c73ac4b97314 (diff)
Imported Upstream version 0.3.1.0
Diffstat (limited to 'HelpDialog.cpp')
-rw-r--r--HelpDialog.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/HelpDialog.cpp b/HelpDialog.cpp
index c9137e9..2d06d54 100644
--- a/HelpDialog.cpp
+++ b/HelpDialog.cpp
@@ -61,7 +61,11 @@ void HelpDialog::reloadTextValue()
{
ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
QString text=ui->label_ultracopier->text();
+ #ifdef ULTRACOPIER_VERSION_ULTIMATE
+ text=text.replace("%1",QString("Ultimate %1").arg(ULTRACOPIER_VERSION));
+ #else
text=text.replace("%1",ULTRACOPIER_VERSION);
+ #endif
ui->label_ultracopier->setText(text);
text=ui->label_description->text();
@@ -77,6 +81,7 @@ void HelpDialog::reloadTextValue()
ui->label_description->setText(text);
text=ui->label_site->text();
+ //: This site need be the official site of ultracopier, into the right languages, english if not exists
text=text.replace("%1",tr("http://ultracopier.first-world.info/"));
ui->label_site->setText(text);