summaryrefslogtreecommitdiffstats
path: root/kmymoney2/dialogs
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2012-07-28 14:54:40 +0200
committerSlávek Banko <slavek.banko@axis.cz>2012-07-28 14:54:40 +0200
commit87f567cd9fd6ecf39a65f8c4564958e64df40e5f (patch)
tree8a4586d3f6d0b3f3a94cfa2dd4322e71ceaa2483 /kmymoney2/dialogs
parent8be22879a121ac2405c75e0c0878f857d8c53121 (diff)
downloadkmymoney-87f567cd9fd6ecf39a65f8c4564958e64df40e5f.tar.gz
kmymoney-87f567cd9fd6ecf39a65f8c4564958e64df40e5f.zip
Fix inadvertent "TQ" changes.
Diffstat (limited to 'kmymoney2/dialogs')
-rw-r--r--kmymoney2/dialogs/kaccountselectdlg.cpp2
-rw-r--r--kmymoney2/dialogs/kchooseimportexportdlg.cpp2
-rw-r--r--kmymoney2/dialogs/kchooseimportexportdlgdecl.ui2
-rw-r--r--kmymoney2/dialogs/kexportdlg.cpp4
-rw-r--r--kmymoney2/dialogs/kexportdlg.h10
-rw-r--r--kmymoney2/dialogs/kimportdlg.cpp2
-rw-r--r--kmymoney2/dialogs/kimportdlg.h6
-rw-r--r--kmymoney2/dialogs/mymoneyqifprofileeditor.cpp10
-rw-r--r--kmymoney2/dialogs/mymoneyqifprofileeditor.h4
-rw-r--r--kmymoney2/dialogs/transactionmatcher.cpp2
10 files changed, 22 insertions, 22 deletions
diff --git a/kmymoney2/dialogs/kaccountselectdlg.cpp b/kmymoney2/dialogs/kaccountselectdlg.cpp
index 3a05481..d572655 100644
--- a/kmymoney2/dialogs/kaccountselectdlg.cpp
+++ b/kmymoney2/dialogs/kaccountselectdlg.cpp
@@ -77,7 +77,7 @@ KAccountSelectDlg::KAccountSelectDlg(const KMyMoneyUtils::categoryTypeE accountT
KGuiItem abortButtenItem( i18n("&Abort" ),
TQIconSet(il->loadIcon("stop", KIcon::Small, KIcon::SizeSmall)),
i18n("Abort the import operation and dismiss all changes"),
- i18n("Use this to abort the import. Your financial data will be in the state before you started the TQIF import."));
+ i18n("Use this to abort the import. Your financial data will be in the state before you started the QIF import."));
m_kButtonAbort->setGuiItem(abortButtenItem);
diff --git a/kmymoney2/dialogs/kchooseimportexportdlg.cpp b/kmymoney2/dialogs/kchooseimportexportdlg.cpp
index 558216c..79c19e8 100644
--- a/kmymoney2/dialogs/kchooseimportexportdlg.cpp
+++ b/kmymoney2/dialogs/kchooseimportexportdlg.cpp
@@ -71,7 +71,7 @@ KChooseImportExportDlg::~KChooseImportExportDlg()
void KChooseImportExportDlg::slotTypeActivated(const TQString& text)
{
if (text=="QIF") {
- descriptionLabel->setText(i18n("TQIF files are created by the popular accounting program Quicken.\n"
+ descriptionLabel->setText(i18n("QIF files are created by the popular accounting program Quicken.\n"
"Another dialog will appear, if you choose this type, asking for further\n"
"information relevant to the Quicken format."));
} else {
diff --git a/kmymoney2/dialogs/kchooseimportexportdlgdecl.ui b/kmymoney2/dialogs/kchooseimportexportdlgdecl.ui
index 9ddaed0..abbb7a9 100644
--- a/kmymoney2/dialogs/kchooseimportexportdlgdecl.ui
+++ b/kmymoney2/dialogs/kchooseimportexportdlgdecl.ui
@@ -118,7 +118,7 @@ Once you have chosen an import type please press the OK button.</string>
<item>
<property>
<name>text</name>
- <string>TQIF</string>
+ <string>QIF</string>
</property>
</item>
<item>
diff --git a/kmymoney2/dialogs/kexportdlg.cpp b/kmymoney2/dialogs/kexportdlg.cpp
index d71a95c..ac94c5f 100644
--- a/kmymoney2/dialogs/kexportdlg.cpp
+++ b/kmymoney2/dialogs/kexportdlg.cpp
@@ -101,7 +101,7 @@ KExportDlg::~KExportDlg()
void KExportDlg::slotBrowse()
{
- TQString newName(KFileDialog::getSaveFileName(TQString(),"*.TQIF"));
+ TQString newName(KFileDialog::getSaveFileName(TQString(),"*.QIF"));
KMyMoneyUtils::appendCorrectFileExt(newName, TQString("qif"));
if (!newName.isEmpty())
m_qlineeditFile->setText(newName);
@@ -109,7 +109,7 @@ void KExportDlg::slotBrowse()
void KExportDlg::slotNewProfile(void)
{
- MyMoneyQifProfileEditor* editor = new MyMoneyQifProfileEditor(true, this, "TQIF Profile Editor");
+ MyMoneyQifProfileEditor* editor = new MyMoneyQifProfileEditor(true, this, "QIF Profile Editor");
if(editor->exec()) {
m_profileComboBox->setCurrentText(editor->selectedProfile());
loadProfiles();
diff --git a/kmymoney2/dialogs/kexportdlg.h b/kmymoney2/dialogs/kexportdlg.h
index 8825b9b..6bf91ad 100644
--- a/kmymoney2/dialogs/kexportdlg.h
+++ b/kmymoney2/dialogs/kexportdlg.h
@@ -39,9 +39,9 @@
/**
* This class is used to select the required user input to export
- * a specified account to the popular TQIF format.
- * It relies upon the TQIF file handling routines in MyMoneyQifProfile and
- * MyMoneyQifWriter to do the actual writing of TQIF files.
+ * a specified account to the popular QIF format.
+ * It relies upon the QIF file handling routines in MyMoneyQifProfile and
+ * MyMoneyQifWriter to do the actual writing of QIF files.
*
* It uses the global KConfig object to read and write the application
* settings.
@@ -50,7 +50,7 @@
*
* @author Felix Rodriguez, Michael Edwardes, Thomas Baumgart 2000-2003
*
- * @short A class to select user data required to export a specified account to the popular TQIF format.
+ * @short A class to select user data required to export a specified account to the popular QIF format.
**/
class KExportDlg : public KExportDlgDecl
{
@@ -110,7 +110,7 @@ protected slots:
void slotOkClicked();
/**
- * Called when the user needs to browse the filesystem for a TQIF file
+ * Called when the user needs to browse the filesystem for a QIF file
*/
void slotBrowse();
diff --git a/kmymoney2/dialogs/kimportdlg.cpp b/kmymoney2/dialogs/kimportdlg.cpp
index e484711..65865a5 100644
--- a/kmymoney2/dialogs/kimportdlg.cpp
+++ b/kmymoney2/dialogs/kimportdlg.cpp
@@ -159,7 +159,7 @@ void KImportDlg::slotFileTextChanged(const TQString& text)
void KImportDlg::slotNewProfile(void)
{
- MyMoneyQifProfileEditor* editor = new MyMoneyQifProfileEditor(true, this, "TQIF Profile Editor");
+ MyMoneyQifProfileEditor* editor = new MyMoneyQifProfileEditor(true, this, "QIF Profile Editor");
if(editor->exec()) {
m_profileComboBox->setCurrentText(editor->selectedProfile());
diff --git a/kmymoney2/dialogs/kimportdlg.h b/kmymoney2/dialogs/kimportdlg.h
index 9f95c2c..a2070fd 100644
--- a/kmymoney2/dialogs/kimportdlg.h
+++ b/kmymoney2/dialogs/kimportdlg.h
@@ -39,8 +39,8 @@
/**
* This class is used to import a qif file to an account.
- * It relies upon the TQIF file handling routines in MyMoneyAccount to do
- * the actual writing of TQIF files.
+ * It relies upon the QIF file handling routines in MyMoneyAccount to do
+ * the actual writing of QIF files.
*
* It uses the global KConfig object to read and write the application
* settings.
@@ -74,7 +74,7 @@ public:
const TQString profile(void) const { return m_profileComboBox->currentText(); };
protected slots:
- /** Called to let the user browse for a TQIF file to import from. */
+ /** Called to let the user browse for a QIF file to import from. */
void slotBrowse();
/** Test whether to enable the buttons */
diff --git a/kmymoney2/dialogs/mymoneyqifprofileeditor.cpp b/kmymoney2/dialogs/mymoneyqifprofileeditor.cpp
index 7cb1f1b..d187ce0 100644
--- a/kmymoney2/dialogs/mymoneyqifprofileeditor.cpp
+++ b/kmymoney2/dialogs/mymoneyqifprofileeditor.cpp
@@ -94,7 +94,7 @@ MyMoneyQifProfileEditor::MyMoneyQifProfileEditor(const bool edit, TQWidget *pare
KGuiItem newButtenItem( i18n( "&New" ),
TQIconSet(il->loadIcon("filenew", KIcon::Small, KIcon::SizeSmall)),
i18n("Create a new profile"),
- i18n("Use this to create a new TQIF import/export profile"));
+ i18n("Use this to create a new QIF import/export profile"));
m_newButton->setGuiItem(newButtenItem);
connect(m_profileListBox, TQT_SIGNAL(highlighted(const TQString&)), this, TQT_SLOT(slotLoadProfileFromConfig(const TQString&)));
@@ -145,9 +145,9 @@ MyMoneyQifProfileEditor::~MyMoneyQifProfileEditor()
void MyMoneyQifProfileEditor::loadWidgets(void)
{
if(m_inEdit)
- setCaption(i18n("TQIF Profile Editor"));
+ setCaption(i18n("QIF Profile Editor"));
else
- setCaption(i18n("TQIF Profile Selector"));
+ setCaption(i18n("QIF Profile Selector"));
m_editDateFormat->clear();
m_editDateFormat->insertItem( "%d/%m/%yy" );
@@ -233,7 +233,7 @@ void MyMoneyQifProfileEditor::loadProfileListFromConfig(void)
if(list.count() == 0) {
m_profile.clear();
- m_profile.setProfileDescription(i18n("The default TQIF profile"));
+ m_profile.setProfileDescription(i18n("The default QIF profile"));
addProfile("Default");
config->setGroup("Profiles");
@@ -400,7 +400,7 @@ const TQString MyMoneyQifProfileEditor::enterName(bool& ok)
{
MyMoneyQifProfileNameValidator val(TQT_TQOBJECT(this), "Validator");
#if KDE_IS_VERSION(3,2,0)
- return KInputDialog::getText(i18n("TQIF Profile Editor"),
+ return KInputDialog::getText(i18n("QIF Profile Editor"),
i18n("Enter new profile name"),
TQString(),
&ok,
diff --git a/kmymoney2/dialogs/mymoneyqifprofileeditor.h b/kmymoney2/dialogs/mymoneyqifprofileeditor.h
index 81b2905..7ea69d0 100644
--- a/kmymoney2/dialogs/mymoneyqifprofileeditor.h
+++ b/kmymoney2/dialogs/mymoneyqifprofileeditor.h
@@ -15,8 +15,8 @@
* *
***************************************************************************/
-#ifndef MYMONEYTQIFPROFILEEDITOR_H
-#define MYMONEYTQIFPROFILEEDITOR_H
+#ifndef MYMONEYQIFPROFILEEDITOR_H
+#define MYMONEYQIFPROFILEEDITOR_H
// ----------------------------------------------------------------------------
// QT Includes
diff --git a/kmymoney2/dialogs/transactionmatcher.cpp b/kmymoney2/dialogs/transactionmatcher.cpp
index ce1c16e..c4a21da 100644
--- a/kmymoney2/dialogs/transactionmatcher.cpp
+++ b/kmymoney2/dialogs/transactionmatcher.cpp
@@ -84,7 +84,7 @@ void TransactionMatcher::match(MyMoneyTransaction tm, MyMoneySplit sm, MyMoneyTr
}
// ipwizard: I took over the code to keep the bank id found in the endMatchTransaction
- // This might not work for TQIF imports as they don't setup this information. It sure
+ // This might not work for QIF imports as they don't setup this information. It sure
// makes sense for OFX and HBCI.
const TQString& bankID = si.bankID();
if (!bankID.isEmpty()) {