summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-03-19 17:42:33 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-03-19 17:42:33 (GMT)
commit612d2262fba5728b1b0f38b286ef9b2572386dd3 (patch)
treedcc3e33715111727e7099b3b4c2b06f3dc821be5 /Swift/QtUI
parent5be2178d55246d22e079c05db848eb3ec50f1aa9 (diff)
downloadswift-612d2262fba5728b1b0f38b286ef9b2572386dd3.zip
swift-612d2262fba5728b1b0f38b286ef9b2572386dd3.tar.bz2
Added more untranslated strings.
Diffstat (limited to 'Swift/QtUI')
-rw-r--r--Swift/QtUI/QtStrings.h2
-rw-r--r--Swift/QtUI/QtSubscriptionRequestWindow.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/Swift/QtUI/QtStrings.h b/Swift/QtUI/QtStrings.h
index 13fdd73..39e6a80 100644
--- a/Swift/QtUI/QtStrings.h
+++ b/Swift/QtUI/QtStrings.h
@@ -16,6 +16,8 @@
QT_TRANSLATE_NOOP3("QApplication", "QT_LAYOUT_DIRECTION", "Translate this to LTR for left-to-right or RTL for right-to-left languages");
+QT_TRANSLATE_NOOP("QWebPage", "Copy Link");
+
QT_TRANSLATE_NOOP("QWizard", "< &Back");
QT_TRANSLATE_NOOP("QWizard", "&Finish");
QT_TRANSLATE_NOOP("QWizard", "&Help");
diff --git a/Swift/QtUI/QtSubscriptionRequestWindow.cpp b/Swift/QtUI/QtSubscriptionRequestWindow.cpp
index 83b8b31..7828103 100644
--- a/Swift/QtUI/QtSubscriptionRequestWindow.cpp
+++ b/Swift/QtUI/QtSubscriptionRequestWindow.cpp
@@ -15,7 +15,7 @@
namespace Swift {
QtSubscriptionRequestWindow::QtSubscriptionRequestWindow(boost::shared_ptr<SubscriptionRequestEvent> event, QWidget* parent) : QDialog(parent), event_(event) {
- QString text = QString("%1 would like to add you to their roster.\n Would you like to add them to your roster and share your status when you're online? \n\nIf you choose to defer this choice, you'll be asked again when you next login.").arg(event->getJID().toString().c_str());
+ QString text = QString(tr("%1 would like to add you to their contact list.\n Would you like to add them to your contact list and share your status when you're online? \n\nIf you choose to defer this choice, you will be asked again when you next login.")).arg(event->getJID().toString().c_str());
QVBoxLayout* layout = new QVBoxLayout();
QLabel* label = new QLabel(text, this);
layout->addWidget(label);