Rename many classes and header files to avoid conflicts with KDE4

r14.0.x
Timothy Pearson 11 years ago
parent d0af61c358
commit e8837d86c8

@ -9416,7 +9416,7 @@
2001-06-16 Javier Campos Morales <javi_cms@terra.es> 2001-06-16 Javier Campos Morales <javi_cms@terra.es>
* Only one settings dialog is needed so added new general settings dialog -> ksettingsdlg. * Only one settings dialog is needed so added new general settings dialog -> ksettingsdlg.
* Remove klistsettings and old settings variables. * Remove tdelistsettings and old settings variables.
* Modify to find correct kmy icon in startup dialog. * Modify to find correct kmy icon in startup dialog.
* Changes some toolbar icons. * Changes some toolbar icons.

@ -39,7 +39,7 @@ This appendix contains an example of a
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include &lt;kdialogbase.h&gt; #include &lt;kdialogbase.h&gt;
#include &lt;kfontdialog.h&gt; #include &lt;tdefontdialog.h&gt;
#include &lt;kcolorbutton.h&gt; #include &lt;kcolorbutton.h&gt;
#include &lt;klineedit.h&gt; #include &lt;klineedit.h&gt;
@ -76,9 +76,9 @@ private:
/** Color background */ /** Color background */
KColorButton *m_kcolorbuttonBack; KColorButton *m_kcolorbuttonBack;
/** Select font header */ /** Select font header */
TDEFontChooser *m_kfontchooserHeader; TDEFontChooser *m_tdefontchooserHeader;
/** Font cell setting */ /** Font cell setting */
TDEFontChooser *m_kfontchooserCell; TDEFontChooser *m_tdefontchooserCell;
/** No rows to show in register */ /** No rows to show in register */
KLineEdit *m_klineeditRowCount; KLineEdit *m_klineeditRowCount;
@ -387,14 +387,14 @@ void KSettingsDlg::setPageList()
QVBox *qvboxInsideTab1 = new QVBox( this, "tab1" ); QVBox *qvboxInsideTab1 = new QVBox( this, "tab1" );
qvboxInsideTab1->setSpacing( 6 ); qvboxInsideTab1->setSpacing( 6 );
qvboxInsideTab1->setMargin( 11 ); qvboxInsideTab1->setMargin( 11 );
m_kfontchooserHeader = new TDEFontChooser(qvboxInsideTab1); m_tdefontchooserHeader = new TDEFontChooser(qvboxInsideTab1);
qtabwidget->insertTab(qvboxInsideTab1, i18n("Header Font")); qtabwidget->insertTab(qvboxInsideTab1, i18n("Header Font"));
// Create another tab adding a font chooser widget // Create another tab adding a font chooser widget
QVBox *qvboxInsideTab2 = new QVBox( this, "tab2" ); QVBox *qvboxInsideTab2 = new QVBox( this, "tab2" );
qvboxInsideTab2->setSpacing( 6 ); qvboxInsideTab2->setSpacing( 6 );
qvboxInsideTab2->setMargin( 11 ); qvboxInsideTab2->setMargin( 11 );
m_kfontchooserCell = new TDEFontChooser(qvboxInsideTab2); m_tdefontchooserCell = new TDEFontChooser(qvboxInsideTab2);
qtabwidget->addTab(qvboxInsideTab2, i18n("Cell Font")); qtabwidget->addTab(qvboxInsideTab2, i18n("Cell Font"));
} }
@ -428,10 +428,10 @@ void KSettingsDlg::configRead()
m_qfontTempHeader = tdeconfig->readFontEntry("listHeaderFont", m_qfontTempHeader = tdeconfig->readFontEntry("listHeaderFont",
&amp;qfontDefault); &amp;qfontDefault);
m_kfontchooserHeader->setFont(m_qfontTempHeader); m_tdefontchooserHeader->setFont(m_qfontTempHeader);
m_qfontTempCell = tdeconfig->readFontEntry("listCellFont", &amp;qfontDefault); m_qfontTempCell = tdeconfig->readFontEntry("listCellFont", &amp;qfontDefault);
m_kfontchooserCell->setFont(m_qfontTempCell); m_tdefontchooserCell->setFont(m_qfontTempCell);
m_qstringTempRowCount = tdeconfig->readEntry("RowCount", "2"); m_qstringTempRowCount = tdeconfig->readEntry("RowCount", "2");
m_klineeditRowCount->setText(m_qstringTempRowCount); m_klineeditRowCount->setText(m_qstringTempRowCount);
@ -456,8 +456,8 @@ void KSettingsDlg::configWrite()
tdeconfig->setGroup("List Options"); tdeconfig->setGroup("List Options");
tdeconfig->writeEntry("listColor", m_kcolorbuttonList->color()); tdeconfig->writeEntry("listColor", m_kcolorbuttonList->color());
tdeconfig->writeEntry("listBGColor", m_kcolorbuttonBack->color()); tdeconfig->writeEntry("listBGColor", m_kcolorbuttonBack->color());
tdeconfig->writeEntry("listHeaderFont", m_kfontchooserHeader->font()); tdeconfig->writeEntry("listHeaderFont", m_tdefontchooserHeader->font());
tdeconfig->writeEntry("listCellFont", m_kfontchooserCell->font()); tdeconfig->writeEntry("listCellFont", m_tdefontchooserCell->font());
tdeconfig->writeEntry("RowCount", m_klineeditRowCount->text()); tdeconfig->writeEntry("RowCount", m_klineeditRowCount->text());
tdeconfig->writeEntry("ShowGrid", m_qcheckboxShowGrid->isChecked()); tdeconfig->writeEntry("ShowGrid", m_qcheckboxShowGrid->isChecked());
tdeconfig->writeEntry("ColourPerTransaction", tdeconfig->writeEntry("ColourPerTransaction",
@ -536,8 +536,8 @@ void KSettingsDlg::slotUser1()
m_qradiobuttonStartPrompt->setChecked(m_bTempStartPrompt); m_qradiobuttonStartPrompt->setChecked(m_bTempStartPrompt);
m_kcolorbuttonList->setColor(m_qcolorTempList); m_kcolorbuttonList->setColor(m_qcolorTempList);
m_kcolorbuttonBack->setColor(m_qcolorTempListBG); m_kcolorbuttonBack->setColor(m_qcolorTempListBG);
m_kfontchooserHeader->setFont(m_qfontTempHeader); m_tdefontchooserHeader->setFont(m_qfontTempHeader);
m_kfontchooserCell->setFont(m_qfontTempCell); m_tdefontchooserCell->setFont(m_qfontTempCell);
m_klineeditRowCount->setText(m_qstringTempRowCount); m_klineeditRowCount->setText(m_qstringTempRowCount);
m_qcheckboxShowGrid->setChecked(m_bTempShowGrid); m_qcheckboxShowGrid->setChecked(m_bTempShowGrid);
m_qradiobuttonPerTransaction->setChecked(m_bTempColourPerTransaction); m_qradiobuttonPerTransaction->setChecked(m_bTempColourPerTransaction);

@ -5,14 +5,14 @@ INCLUDES = $(all_includes) -I$(top_srcdir) -I. -I$(top_srcdir)/libkdchart -I$(t
libdialogs_a_METASOURCES = AUTO libdialogs_a_METASOURCES = AUTO
libdialogs_a_SOURCES = kreportconfigurationfilterdlg.cpp kcurrencycalculator.cpp kcurrencyeditdlg.cpp keditequityentrydlg.cpp keditloanwizard.cpp knewloanwizard.cpp kenterscheduledlg.cpp krecentfileitem.cpp keditscheduledlg.cpp mymoneyqifprofileeditor.cpp kaccountselectdlg.cpp kupdatestockpricedlg.cpp knewequityentrydlg.cpp kstartdlg.cpp kreconciledlg.cpp knewfiledlg.cpp knewbankdlg.cpp knewaccountdlg.cpp kfindtransactiondlg.cpp kendingbalancedlg.cpp ksplittransactiondlg.cpp kimportdlg.cpp kexportdlg.cpp kcsvprogressdlg.cpp kchooseimportexportdlg.cpp kbackupdlg.cpp kequitypriceupdatedlg.cpp kmymoneypricedlg.cpp knewinvestmentwizard.cpp knewinvestmentwizard.h ksecuritylisteditor.cpp kgncimportoptionsdlg.cpp konlinequoteconfigurationdlg.cpp kgncpricesourcedlg.cpp kmymoneyfileinfodlg.cpp kselectdatabasedlg.cpp kpayeereassigndlg.cpp kcategoryreassigndlg.cpp tdeconfirmmanualenterdlg.cpp kaccountselectdlgdecl.ui kbackupdlgdecl.ui kchooseimportexportdlgdecl.ui tdeconfirmmanualenterdlgdecl.ui kcsvprogressdlgdecl.ui kcurrencycalculatordecl.ui kcurrencyeditdlgdecl.ui keditequityentrydecl.ui keditscheduledlgdecl.ui kendingbalancedlgdecl.ui kenterscheduledlgdecl.ui kequitypriceupdatedlgdecl.ui kexportdlgdecl.ui kfindtransactiondlgdecl.ui kgncimportoptionsdlgdecl.ui kimportdlgdecl.ui kmymoneypricedlgdecl.ui knewaccountdlgdecl.ui knewbankdlgdecl.ui knewequityentrydecl.ui knewfiledlgdecl.ui knewinvestmentwizarddecl.ui knewloanwizarddecl.ui konlinequoteconfigurationdecl.ui kreconciledlgdecl.ui ksecuritylisteditordecl.ui ksplitcorrectiondlg.ui ksplittransactiondlgdecl.ui kupdatestockpricedlgdecl.ui mymoneyqifprofileeditordecl.ui kgncpricesourcedlgdecl.ui kmymoneyfileinfodlgdecl.ui kselectdatabasedlgdecl.ui kpayeereassigndlgdecl.ui kcategoryreassigndlgdecl.ui transactioneditor.cpp investtransactioneditor.cpp investactivities.cpp kbalancechartdlg.cpp kplugindlg.ui kgpgkeyselectiondlg.cpp transactionmatcher.cpp kbalancewarning.cpp \ libdialogs_a_SOURCES = kreportconfigurationfilterdlg.cpp kcurrencycalculator.cpp kcurrencyeditdlg.cpp keditequityentrydlg.cpp keditloanwizard.cpp knewloanwizard.cpp kenterscheduledlg.cpp tderecentfileitem.cpp keditscheduledlg.cpp mymoneyqifprofileeditor.cpp kaccountselectdlg.cpp kupdatestockpricedlg.cpp knewequityentrydlg.cpp kstartdlg.cpp kreconciledlg.cpp knewfiledlg.cpp knewbankdlg.cpp knewaccountdlg.cpp kfindtransactiondlg.cpp kendingbalancedlg.cpp ksplittransactiondlg.cpp kimportdlg.cpp kexportdlg.cpp kcsvprogressdlg.cpp kchooseimportexportdlg.cpp kbackupdlg.cpp kequitypriceupdatedlg.cpp kmymoneypricedlg.cpp knewinvestmentwizard.cpp knewinvestmentwizard.h ksecuritylisteditor.cpp kgncimportoptionsdlg.cpp konlinequoteconfigurationdlg.cpp kgncpricesourcedlg.cpp kmymoneyfileinfodlg.cpp tdeselectdatabasedlg.cpp kpayeereassigndlg.cpp kcategoryreassigndlg.cpp tdeconfirmmanualenterdlg.cpp kaccountselectdlgdecl.ui kbackupdlgdecl.ui kchooseimportexportdlgdecl.ui tdeconfirmmanualenterdlgdecl.ui kcsvprogressdlgdecl.ui kcurrencycalculatordecl.ui kcurrencyeditdlgdecl.ui keditequityentrydecl.ui keditscheduledlgdecl.ui kendingbalancedlgdecl.ui kenterscheduledlgdecl.ui kequitypriceupdatedlgdecl.ui kexportdlgdecl.ui kfindtransactiondlgdecl.ui kgncimportoptionsdlgdecl.ui kimportdlgdecl.ui kmymoneypricedlgdecl.ui knewaccountdlgdecl.ui knewbankdlgdecl.ui knewequityentrydecl.ui knewfiledlgdecl.ui knewinvestmentwizarddecl.ui knewloanwizarddecl.ui konlinequoteconfigurationdecl.ui kreconciledlgdecl.ui ksecuritylisteditordecl.ui ksplitcorrectiondlg.ui ksplittransactiondlgdecl.ui kupdatestockpricedlgdecl.ui mymoneyqifprofileeditordecl.ui kgncpricesourcedlgdecl.ui kmymoneyfileinfodlgdecl.ui tdeselectdatabasedlgdecl.ui kpayeereassigndlgdecl.ui kcategoryreassigndlgdecl.ui transactioneditor.cpp investtransactioneditor.cpp investactivities.cpp kbalancechartdlg.cpp kplugindlg.ui kgpgkeyselectiondlg.cpp transactionmatcher.cpp kbalancewarning.cpp \
knewbudgetdlgdecl.ui knewbudgetdlg.cpp kselecttransactionsdlgdecl.ui kselecttransactionsdlg.cpp kmergetransactionsdlg.cpp ksortoptiondlg.ui kloadtemplatedlgdecl.ui kloadtemplatedlg.cpp kmymoneysplittable.cpp knewbudgetdlgdecl.ui knewbudgetdlg.cpp tdeselecttransactionsdlgdecl.ui tdeselecttransactionsdlg.cpp kmergetransactionsdlg.cpp ksortoptiondlg.ui kloadtemplatedlgdecl.ui kloadtemplatedlg.cpp kmymoneysplittable.cpp
EXTRA_DIST = kaccountselectdlgdecl.ui kbackupdlgdecl.ui kchooseimportexportdlgdecl.ui tdeconfirmmanualenterdlgdecl.ui kcsvprogressdlgdecl.ui kcurrencycalculatordecl.ui kcurrencyeditdlgdecl.ui keditequityentrydecl.ui keditscheduledlgdecl.ui kendingbalancedlgdecl.ui kenterscheduledlgdecl.ui kequitypriceupdatedlgdecl.ui kexportdlgdecl.ui kfindtransactiondlgdecl.ui kgncimportoptionsdlgdecl.ui kimportdlgdecl.ui kmymoneypricedlgdecl.ui knewaccountdlgdecl.ui knewbankdlgdecl.ui knewequityentrydecl.ui knewfiledlgdecl.ui knewinvestmentwizarddecl.ui knewloanwizarddecl.ui konlinequoteconfigurationdecl.ui kreconciledlgdecl.ui ksecuritylisteditordecl.ui ksplitcorrectiondlg.ui ksplittransactiondlgdecl.ui kupdatestockpricedlgdecl.ui mymoneyqifprofileeditordecl.ui kgncpricesourcedlgdecl.ui kmymoneyfileinfodlgdecl.ui kselectdatabasedlgdecl.ui kpayeereassigndlgdecl.ui kcategoryreassigndlgdecl.ui knewbudgetdlgdecl.ui kselecttransactionsdlgdecl.ui ksortoptiondlg.ui ksortoptiondlg.ui.h kplugindlg.ui kloadtemplatedlgdecl.ui EXTRA_DIST = kaccountselectdlgdecl.ui kbackupdlgdecl.ui kchooseimportexportdlgdecl.ui tdeconfirmmanualenterdlgdecl.ui kcsvprogressdlgdecl.ui kcurrencycalculatordecl.ui kcurrencyeditdlgdecl.ui keditequityentrydecl.ui keditscheduledlgdecl.ui kendingbalancedlgdecl.ui kenterscheduledlgdecl.ui kequitypriceupdatedlgdecl.ui kexportdlgdecl.ui kfindtransactiondlgdecl.ui kgncimportoptionsdlgdecl.ui kimportdlgdecl.ui kmymoneypricedlgdecl.ui knewaccountdlgdecl.ui knewbankdlgdecl.ui knewequityentrydecl.ui knewfiledlgdecl.ui knewinvestmentwizarddecl.ui knewloanwizarddecl.ui konlinequoteconfigurationdecl.ui kreconciledlgdecl.ui ksecuritylisteditordecl.ui ksplitcorrectiondlg.ui ksplittransactiondlgdecl.ui kupdatestockpricedlgdecl.ui mymoneyqifprofileeditordecl.ui kgncpricesourcedlgdecl.ui kmymoneyfileinfodlgdecl.ui tdeselectdatabasedlgdecl.ui kpayeereassigndlgdecl.ui kcategoryreassigndlgdecl.ui knewbudgetdlgdecl.ui tdeselecttransactionsdlgdecl.ui ksortoptiondlg.ui ksortoptiondlg.ui.h kplugindlg.ui kloadtemplatedlgdecl.ui
DISTCLEANFILES= kaccountselectdlgdecl.cpp kbackupdlgdecl.cpp kchooseimportexportdlgdecl.cpp kcsvprogressdlgdecl.cpp kcurrencycalculatordecl.cpp kcurrencyeditdlgdecl.cpp keditequityentrydecl.cpp keditscheduledlgdecl.cpp kendingbalancedlgdecl.cpp kenterscheduledlgdecl.cpp kequitypriceupdatedlgdecl.cpp kexportdlgdecl.cpp kfindtransactiondlgdecl.cpp kgncimportoptionsdlgdecl.cpp kimportdlgdecl.cpp kmymoneypricedlgdecl.cpp knewaccountdlgdecl.cpp knewbankdlgdecl.cpp knewequityentrydecl.cpp knewfiledlgdecl.cpp knewinvestmentwizarddecl.cpp knewloanwizarddecl.cpp konlinequoteconfigurationdecl.cpp kreconciledlgdecl.cpp kreportconfigurationdecl.cpp ksecuritylisteditordecl.cpp ksplittransactiondlgdecl.cpp kupdatestockpricedlgdecl.cpp mymoneyqifprofileeditordecl.cpp kpayeereassigndlgdecl.cpp kcategoryreassigndlgdecl.cpp tdeconfirmmanualenterdlgdecl.cpp kaccountselectdlgdecl.h kbackupdlgdecl.h kchooseimportexportdlgdecl.h kcsvprogressdlgdecl.h kcurrencycalculatordecl.h kcurrencyeditdlgdecl.h keditequityentrydecl.h keditscheduledlgdecl.h kendingbalancedlgdecl.h kenterscheduledlgdecl.h kequitypriceupdatedlgdecl.h kexportdlgdecl.h kfindtransactiondlgdecl.h kgncimportoptionsdlgdecl.h kimportdlgdecl.h kmymoneypricedlgdecl.h knewaccountdlgdecl.h knewbankdlgdecl.h knewequityentrydecl.h knewfiledlgdecl.h knewinvestmentwizarddecl.h knewloanwizarddecl.h konlinequoteconfigurationdecl.h kreconciledlgdecl.h kreportconfigurationdecl.h ksecuritylisteditordecl.h ksplittransactiondlgdecl.h kupdatestockpricedlgdecl.h mymoneyqifprofileeditordecl.h kmymoneyfileinfodlgdecl.h kselectdatabasedlgdecl.h kpayeereassigndlgdecl.h kcategoryreassigndlgdecl.h knewbudgetdlgdecl.cpp knewbudgetdlgdecl.h kselecttransactionsdlgdecl.cpp kselecttransactionsdlgdecl.h tdeconfirmmanualenterdlgdecl.h kloadtemplatedlgdecl.cpp kloadtemplatedlgdecl.h DISTCLEANFILES= kaccountselectdlgdecl.cpp kbackupdlgdecl.cpp kchooseimportexportdlgdecl.cpp kcsvprogressdlgdecl.cpp kcurrencycalculatordecl.cpp kcurrencyeditdlgdecl.cpp keditequityentrydecl.cpp keditscheduledlgdecl.cpp kendingbalancedlgdecl.cpp kenterscheduledlgdecl.cpp kequitypriceupdatedlgdecl.cpp kexportdlgdecl.cpp kfindtransactiondlgdecl.cpp kgncimportoptionsdlgdecl.cpp kimportdlgdecl.cpp kmymoneypricedlgdecl.cpp knewaccountdlgdecl.cpp knewbankdlgdecl.cpp knewequityentrydecl.cpp knewfiledlgdecl.cpp knewinvestmentwizarddecl.cpp knewloanwizarddecl.cpp konlinequoteconfigurationdecl.cpp kreconciledlgdecl.cpp kreportconfigurationdecl.cpp ksecuritylisteditordecl.cpp ksplittransactiondlgdecl.cpp kupdatestockpricedlgdecl.cpp mymoneyqifprofileeditordecl.cpp kpayeereassigndlgdecl.cpp kcategoryreassigndlgdecl.cpp tdeconfirmmanualenterdlgdecl.cpp kaccountselectdlgdecl.h kbackupdlgdecl.h kchooseimportexportdlgdecl.h kcsvprogressdlgdecl.h kcurrencycalculatordecl.h kcurrencyeditdlgdecl.h keditequityentrydecl.h keditscheduledlgdecl.h kendingbalancedlgdecl.h kenterscheduledlgdecl.h kequitypriceupdatedlgdecl.h kexportdlgdecl.h kfindtransactiondlgdecl.h kgncimportoptionsdlgdecl.h kimportdlgdecl.h kmymoneypricedlgdecl.h knewaccountdlgdecl.h knewbankdlgdecl.h knewequityentrydecl.h knewfiledlgdecl.h knewinvestmentwizarddecl.h knewloanwizarddecl.h konlinequoteconfigurationdecl.h kreconciledlgdecl.h kreportconfigurationdecl.h ksecuritylisteditordecl.h ksplittransactiondlgdecl.h kupdatestockpricedlgdecl.h mymoneyqifprofileeditordecl.h kmymoneyfileinfodlgdecl.h tdeselectdatabasedlgdecl.h kpayeereassigndlgdecl.h kcategoryreassigndlgdecl.h knewbudgetdlgdecl.cpp knewbudgetdlgdecl.h tdeselecttransactionsdlgdecl.cpp tdeselecttransactionsdlgdecl.h tdeconfirmmanualenterdlgdecl.h kloadtemplatedlgdecl.cpp kloadtemplatedlgdecl.h
noinst_HEADERS = keditscheduledlg.h kaccountselectdlg.h kbackupdlg.h kchooseimportexportdlg.h kcsvprogressdlg.h kcurrencyeditdlg.h keditequityentrydlg.h keditloanwizard.h kendingbalancedlg.h kenterscheduledlg.h kequitypriceupdatedlg.h kexportdlg.h kfindtransactiondlg.h kgncimportoptionsdlg.h kimportdlg.h kmymoneypricedlg.h knewaccountdlg.h knewbankdlg.h knewequityentrydlg.h knewfiledlg.h knewinvestmentwizard.h knewloanwizard.h konlinequoteconfigurationdlg.h krecentfileitem.h kreconciledlg.h kreportconfigurationfilterdlg.h ksecuritylisteditor.h ksplittransactiondlg.h kstartdlg.h kupdatestockpricedlg.h mymoneyqifprofileeditor.h kgncpricesourcedlg.h kmymoneyfileinfodlg.h kselectdatabasedlg.h kpayeereassigndlg.h kcategoryreassigndlg.h knewbudgetdlg.h kselecttransactionsdlg.h kmergetransactionsdlg.h tdeconfirmmanualenterdlg.h investactivities.h kbalancechartdlg.h kloadtemplatedlg.h kmymoneysplittable.h kgpgkeyselectiondlg.h transactionmatcher.h kbalancewarning.h noinst_HEADERS = keditscheduledlg.h kaccountselectdlg.h kbackupdlg.h kchooseimportexportdlg.h kcsvprogressdlg.h kcurrencyeditdlg.h keditequityentrydlg.h keditloanwizard.h kendingbalancedlg.h kenterscheduledlg.h kequitypriceupdatedlg.h kexportdlg.h kfindtransactiondlg.h kgncimportoptionsdlg.h kimportdlg.h kmymoneypricedlg.h knewaccountdlg.h knewbankdlg.h knewequityentrydlg.h knewfiledlg.h knewinvestmentwizard.h knewloanwizard.h konlinequoteconfigurationdlg.h tderecentfileitem.h kreconciledlg.h kreportconfigurationfilterdlg.h ksecuritylisteditor.h ksplittransactiondlg.h kstartdlg.h kupdatestockpricedlg.h mymoneyqifprofileeditor.h kgncpricesourcedlg.h kmymoneyfileinfodlg.h tdeselectdatabasedlg.h kpayeereassigndlg.h kcategoryreassigndlg.h knewbudgetdlg.h tdeselecttransactionsdlg.h kmergetransactionsdlg.h tdeconfirmmanualenterdlg.h investactivities.h kbalancechartdlg.h kloadtemplatedlg.h kmymoneysplittable.h kgpgkeyselectiondlg.h transactionmatcher.h kbalancewarning.h
instdir=$(includedir)/kmymoney instdir=$(includedir)/kmymoney
inst_HEADERS = transactioneditor.h investtransactioneditor.h kcurrencycalculator.h inst_HEADERS = transactioneditor.h investtransactioneditor.h kcurrencycalculator.h

@ -38,7 +38,7 @@
#include <klocale.h> #include <klocale.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klistview.h> #include <tdelistview.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kinputdialog.h> #include <kinputdialog.h>

@ -30,7 +30,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
#include <klocale.h> #include <klocale.h>
#include <klineedit.h> #include <klineedit.h>

@ -39,7 +39,7 @@
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <ktextedit.h> #include <ktextedit.h>
#include <klistview.h> #include <tdelistview.h>
#include <kdebug.h> #include <kdebug.h>
#include <kprogress.h> #include <kprogress.h>
#include <kglobal.h> #include <kglobal.h>

@ -33,7 +33,7 @@
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klineedit.h> #include <klineedit.h>
#include <klistview.h> #include <tdelistview.h>
#include <kcombobox.h> #include <kcombobox.h>
#include <kstdguiitem.h> #include <kstdguiitem.h>
#include <kiconloader.h> #include <kiconloader.h>

@ -34,7 +34,7 @@ class TQResizeEvent;
#include <kmymoney/register.h> #include <kmymoney/register.h>
#include <kmymoney/mymoneyaccount.h> #include <kmymoney/mymoneyaccount.h>
#include "../dialogs/kselecttransactionsdlg.h" #include "../dialogs/tdeselecttransactionsdlg.h"
class KMergeTransactionsDlg: public TDESelectTransactionsDlg class KMergeTransactionsDlg: public TDESelectTransactionsDlg
{ {

@ -24,7 +24,7 @@
// KDE Includes // KDE Includes
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -29,7 +29,7 @@
// KDE Includes // KDE Includes
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klistview.h> #include <tdelistview.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kguiitem.h> #include <kguiitem.h>
#include <kmessagebox.h> #include <kmessagebox.h>

@ -42,9 +42,9 @@
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kcompletionbox.h> #include <kcompletionbox.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kpopupmenu.h> #include <tdepopupmenu.h>
#include <kstdaccel.h> #include <tdestdaccel.h>
#include <kshortcut.h> #include <tdeshortcut.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -44,7 +44,7 @@
#include <kglobal.h> #include <kglobal.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kcombobox.h> #include <kcombobox.h>
#include <klistview.h> #include <tdelistview.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kpushbutton.h> #include <kpushbutton.h>

@ -24,7 +24,7 @@
// KDE Includes // KDE Includes
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klistview.h> #include <tdelistview.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kguiitem.h> #include <kguiitem.h>
#include <klocale.h> #include <klocale.h>

@ -28,8 +28,8 @@
#include <klocale.h> #include <klocale.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klistbox.h> #include <tdelistbox.h>
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -18,7 +18,7 @@
#define KRECONCILEDLG_H #define KRECONCILEDLG_H
#include <tqlabel.h> #include <tqlabel.h>
#include <klistview.h> #include <tdelistview.h>
#include <tqpushbutton.h> #include <tqpushbutton.h>
#include "../mymoney/mymoneyfile.h" #include "../mymoney/mymoneyfile.h"

@ -51,7 +51,7 @@
#include <kapplication.h> #include <kapplication.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klineedit.h> #include <klineedit.h>
#include <klistview.h> #include <tdelistview.h>
#include <kcombobox.h> #include <kcombobox.h>
#include <kguiitem.h> #include <kguiitem.h>
#include <kiconloader.h> #include <kiconloader.h>

@ -24,7 +24,7 @@
// KDE Includes // KDE Includes
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klistview.h> #include <tdelistview.h>
#include <kguiitem.h> #include <kguiitem.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kglobal.h> #include <kglobal.h>

@ -29,7 +29,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kpopupmenu.h> #include <tdepopupmenu.h>
#include <kiconloader.h> #include <kiconloader.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -47,7 +47,7 @@
// Project Includes // Project Includes
#include "kstartdlg.h" #include "kstartdlg.h"
#include "krecentfileitem.h" #include "tderecentfileitem.h"
#include "../kmymoney2.h" #include "../kmymoney2.h"
#include <tqtooltip.h> #include <tqtooltip.h>

@ -23,7 +23,7 @@
#include <kdialogbase.h> #include <kdialogbase.h>
#include <klocale.h> #include <klocale.h>
#include <kfontdialog.h> #include <tdefontdialog.h>
#include <kurlrequester.h> #include <kurlrequester.h>
#include <kiconview.h> #include <kiconview.h>

@ -23,7 +23,7 @@
// KDE Includes // KDE Includes
#include <klineedit.h> #include <klineedit.h>
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -23,7 +23,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kglobalsettings.h> #include <kglobalsettings.h>
#include <kglobal.h> #include <kglobal.h>

@ -27,7 +27,7 @@
#include <tdeconfig.h> #include <tdeconfig.h>
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <tdelistview.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kguiitem.h> #include <kguiitem.h>
#include <kpushbutton.h> #include <kpushbutton.h>

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
krecentfileitem.cpp - description tderecentfileitem.cpp - description
------------------- -------------------
begin : Wed Jul 30 2003 begin : Wed Jul 30 2003
copyright : (C) 2000-2003 by Michael Edwardes copyright : (C) 2000-2003 by Michael Edwardes
@ -35,7 +35,7 @@
// Project Includes // Project Includes
#include "krecentfileitem.h" #include "tderecentfileitem.h"
TDERecentFileItem::TDERecentFileItem(const TQString& url, TQIconView* parent, const TQString& text, const TQPixmap& icon) TDERecentFileItem::TDERecentFileItem(const TQString& url, TQIconView* parent, const TQString& text, const TQPixmap& icon)
: TQIconViewItem(parent, text, icon), : TQIconViewItem(parent, text, icon),

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
krecentfileitem.h - description tderecentfileitem.h - description
------------------- -------------------
begin : Wed Jul 30 2003 begin : Wed Jul 30 2003
copyright : (C) 2000-2003 by Michael Edwardes copyright : (C) 2000-2003 by Michael Edwardes

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
kselectdatabasedlg.cpp tdeselectdatabasedlg.cpp
------------------- -------------------
copyright : (C) 2005 by Tony Bloomfield copyright : (C) 2005 by Tony Bloomfield
author : Tony Bloomfield author : Tony Bloomfield
@ -43,7 +43,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes
#include "kselectdatabasedlg.h" #include "tdeselectdatabasedlg.h"
TDESelectDatabaseDlg::TDESelectDatabaseDlg(TQWidget *parent, const char *name) TDESelectDatabaseDlg::TDESelectDatabaseDlg(TQWidget *parent, const char *name)
: TDESelectDatabaseDlgDecl(parent, name) { : TDESelectDatabaseDlgDecl(parent, name) {
@ -229,4 +229,4 @@ void TDESelectDatabaseDlg::setError() {
m_requiredFields = 0; m_requiredFields = 0;
} }
#include "kselectdatabasedlg.moc" #include "tdeselectdatabasedlg.moc"

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
kselectdatabase.h tdeselectdatabase.h
------------------- -------------------
copyright : (C) 2005 by Tony Bloomfield copyright : (C) 2005 by Tony Bloomfield
author : Tony Bloomfield author : Tony Bloomfield
@ -30,7 +30,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes
#include "kselectdatabasedlgdecl.h" #include "tdeselectdatabasedlgdecl.h"
#include "../mymoney/storage/mymoneystoragesql.h" #include "../mymoney/storage/mymoneystoragesql.h"
#include "kmymoney/kguiutils.h" #include "kmymoney/kguiutils.h"

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
kselecttransactionsdlg.cpp tdeselecttransactionsdlg.cpp
------------------- -------------------
begin : Wed May 16 2007 begin : Wed May 16 2007
copyright : (C) 2007 by Thomas Baumgart copyright : (C) 2007 by Thomas Baumgart
@ -174,5 +174,5 @@ bool TDESelectTransactionsDlg::eventFilter(TQObject* o, TQEvent* e)
return rc; return rc;
} }
#include "kselecttransactionsdlg.moc" #include "tdeselecttransactionsdlg.moc"
// vim:cin:si:ai:et:ts=2:sw=2: // vim:cin:si:ai:et:ts=2:sw=2:

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
kselecttransactionsdlg.h tdeselecttransactionsdlg.h
------------------- -------------------
begin : Wed May 16 2007 begin : Wed May 16 2007
copyright : (C) 2007 by Thomas Baumgart copyright : (C) 2007 by Thomas Baumgart
@ -34,7 +34,7 @@ class TQResizeEvent;
#include <kmymoney/register.h> #include <kmymoney/register.h>
#include <kmymoney/mymoneyaccount.h> #include <kmymoney/mymoneyaccount.h>
#include "../dialogs/kselecttransactionsdlgdecl.h" #include "../dialogs/tdeselecttransactionsdlgdecl.h"
class TDESelectTransactionsDlg: public TDESelectTransactionsDlgDecl class TDESelectTransactionsDlg: public TDESelectTransactionsDlgDecl
{ {

@ -55,7 +55,7 @@
#include "../dialogs/ksplittransactiondlg.h" #include "../dialogs/ksplittransactiondlg.h"
#include "../dialogs/kcurrencycalculator.h" #include "../dialogs/kcurrencycalculator.h"
#include "../dialogs/kselecttransactionsdlg.h" #include "../dialogs/tdeselecttransactionsdlg.h"
using namespace KMyMoneyRegister; using namespace KMyMoneyRegister;
using namespace KMyMoneyTransactionForm; using namespace KMyMoneyTransactionForm;

@ -48,7 +48,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <kapplication.h> #include <kapplication.h>
#include <kshortcut.h> #include <tdeshortcut.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <tdefiledialog.h> #include <tdefiledialog.h>
@ -104,7 +104,7 @@
#include "dialogs/knewinvestmentwizard.h" #include "dialogs/knewinvestmentwizard.h"
#include "dialogs/knewaccountdlg.h" #include "dialogs/knewaccountdlg.h"
#include "dialogs/knewfiledlg.h" #include "dialogs/knewfiledlg.h"
#include "dialogs/kselectdatabasedlg.h" #include "dialogs/tdeselectdatabasedlg.h"
#include "dialogs/kcurrencycalculator.h" #include "dialogs/kcurrencycalculator.h"
#include "dialogs/keditscheduledlg.h" #include "dialogs/keditscheduledlg.h"
#include "dialogs/knewloanwizard.h" #include "dialogs/knewloanwizard.h"

@ -31,9 +31,9 @@ class TQLabel;
// KDE Includes // KDE Includes
#include <kapplication.h> #include <kapplication.h>
#include <kmainwindow.h> #include <tdemainwindow.h>
#include <kaccel.h> #include <tdeaccel.h>
#include <kaction.h> #include <tdeaction.h>
#include <kprocess.h> #include <kprocess.h>
#include <kurl.h> #include <kurl.h>
#include <tdefile.h> #include <tdefile.h>

@ -23,7 +23,7 @@
#include <kinstance.h> #include <kinstance.h>
#include <kaboutdata.h> #include <kaboutdata.h>
#include <kaction.h> #include <tdeaction.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -39,8 +39,8 @@
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kprogress.h> #include <kprogress.h>
#include <kapplication.h> #include <kapplication.h>
#include <klistview.h> #include <tdelistview.h>
#include <klistviewsearchline.h> #include <tdelistviewsearchline.h>
#include <kcombobox.h> #include <kcombobox.h>
#include <kurlrequester.h> #include <kurlrequester.h>
@ -69,7 +69,7 @@ KOnlineBankingSetupWizard::KOnlineBankingSetupWizard(TQWidget *parent, const cha
m_headerVersion = new OfxHeaderVersion(m_headerVersionCombo, ""); m_headerVersion = new OfxHeaderVersion(m_headerVersionCombo, "");
// fill the list view with banks // fill the list view with banks
KProgressDialog* dlg = new KProgressDialog(this, 0, i18n("Loading banklist"), i18n("Getting list of banks from http://moneycentral.msn.com/\nThis may take some time depending on the available bandwidth."), true); KProgressDialog* dlg = new KProgressDialog(this, 0, i18n("Loading bantdelist"), i18n("Getting list of banks from http://moneycentral.msn.com/\nThis may take some time depending on the available bandwidth."), true);
dlg->setAllowCancel(false); dlg->setAllowCancel(false);
// force to show immediately as the call to OfxPartner::BankNames() // force to show immediately as the call to OfxPartner::BankNames()
// does not call the processEvents() loop // does not call the processEvents() loop

@ -31,7 +31,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <tdefile.h> #include <tdefile.h>
#include <kurl.h> #include <kurl.h>
#include <kaction.h> #include <tdeaction.h>
#include <kmessagebox.h> #include <kmessagebox.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -38,7 +38,7 @@
#include <kmymoney/mymoneyfile.h> #include <kmymoney/mymoneyfile.h>
#include "kaccountsview.h" #include "kaccountsview.h"
#include "kmymoneyview.h" #include "kmymoneyview.h"
#include "../widgets/klistviewsearchline.h" #include "../widgets/tdelistviewsearchline.h"
#include "../kmymoneyglobalsettings.h" #include "../kmymoneyglobalsettings.h"
#include "../kmymoney2.h" #include "../kmymoney2.h"

@ -26,8 +26,8 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
#include <kpopupmenu.h> #include <tdepopupmenu.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -41,7 +41,7 @@
#include <kmymoney/mymoneyfile.h> #include <kmymoney/mymoneyfile.h>
#include <kmymoney/kmymoneyaccounttree.h> #include <kmymoney/kmymoneyaccounttree.h>
#include "kcategoriesview.h" #include "kcategoriesview.h"
#include "../widgets/klistviewsearchline.h" #include "../widgets/tdelistviewsearchline.h"
#include "../kmymoneyglobalsettings.h" #include "../kmymoneyglobalsettings.h"
#include "../kmymoney2.h" #include "../kmymoney2.h"

@ -29,7 +29,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <tdelistview.h>
#include <kpushbutton.h> #include <kpushbutton.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -33,8 +33,8 @@
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <ktoolbar.h> #include <tdetoolbar.h>
#include <ktoolbarbutton.h> #include <tdetoolbarbutton.h>
#include <kpassivepopup.h> #include <kpassivepopup.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -43,8 +43,8 @@
#include <tdehtmlview.h> #include <tdehtmlview.h>
#include <tdeconfig.h> #include <tdeconfig.h>
#include <kstdaction.h> #include <kstdaction.h>
#include <kmainwindow.h> #include <tdemainwindow.h>
#include <kactioncollection.h> #include <tdeactioncollection.h>
#include <kapplication.h> #include <kapplication.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kdebug.h> #include <kdebug.h>

@ -28,7 +28,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -29,7 +29,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -32,7 +32,7 @@ class TQVBoxLayout;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kpopupmenu.h> #include <tdepopupmenu.h>
#include <kjanuswidget.h> #include <kjanuswidget.h>
#include <kurl.h> #include <kurl.h>

@ -62,7 +62,7 @@
#include <kmymoney/mymoneyfile.h> #include <kmymoney/mymoneyfile.h>
#include <kmymoney/kmymoneyaccounttree.h> #include <kmymoney/kmymoneyaccounttree.h>
#include <kmymoney/kmymoneyglobalsettings.h> #include <kmymoney/kmymoneyglobalsettings.h>
#include "../widgets/klistviewsearchline.h" #include "../widgets/tdelistviewsearchline.h"
#include "kpayeesview.h" #include "kpayeesview.h"

@ -35,8 +35,8 @@ class TQSplitter;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
#include <kpopupmenu.h> #include <tdepopupmenu.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -58,7 +58,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <tdefiledialog.h> #include <tdefiledialog.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <klistview.h> #include <tdelistview.h>
#include <kmessagebox.h> #include <kmessagebox.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -43,7 +43,7 @@ class TQListViewItem;
// KDE Includes // KDE Includes
#include <tdehtml_part.h> #include <tdehtml_part.h>
#include <klistview.h> #include <tdelistview.h>
#include <ktabwidget.h> #include <ktabwidget.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -31,7 +31,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -36,12 +36,12 @@
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <tdeconfig.h> #include <tdeconfig.h>
#include <kpopupmenu.h> #include <tdepopupmenu.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <klistview.h> #include <tdelistview.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <klistviewsearchline.h> #include <tdelistviewsearchline.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -6,7 +6,7 @@ noinst_LIBRARIES = libwidgets.a
libwidgets_a_METASOURCES = AUTO libwidgets_a_METASOURCES = AUTO
libwidgets_a_SOURCES = kbudgetvalues.cpp kbudgetvaluesdecl.ui kguiutils.cpp klistviewsearchline.cpp kmymoneyaccountcombo.cpp kmymoneyaccountcompletion.cpp kmymoneyaccountselector.cpp kmymoneyaccounttreebase.cpp kmymoneyaccounttree.cpp kmymoneyaccounttreebudget.cpp kmymoneyaccounttreeforecast.cpp kmymoneybriefschedule.cpp kmymoneycalculator.cpp kmymoneycalendar.cpp kmymoneycategory.cpp kmymoneychecklistitem.cpp kmymoneycombo.cpp kmymoneycompletion.cpp kmymoneycurrencyselector.cpp kmymoneydateinput.cpp kmymoneydatetbl.cpp kmymoneyedit.cpp kmymoneyforecastlistviewitem.cpp kmymoneygpgconfig.cpp kmymoneygpgconfigdecl.ui kmymoneylineedit.cpp kmymoneylistviewitem.cpp kmymoneyonlinequoteconfig.cpp kmymoneyonlinequoteconfigdecl.ui kmymoneypriceview.cpp kmymoneyreportconfigtab1decl.ui kmymoneyreportconfigtab2decl.ui kmymoneyreportconfigtab3decl.ui kmymoneyreportconfigtabchartdecl.ui kmymoneyreportcontroldecl.ui kmymoneyscheduledcalendar.cpp kmymoneyscheduleddatetbl.cpp kmymoneyselector.cpp kmymoneytitlelabel.cpp kmymoneywizard.cpp kschedulebriefwidget.ui register.cpp registeritem.cpp registersearchline.cpp transaction.cpp scheduledtransaction.cpp stdtransactiondownloaded.cpp stdtransactionmatched.cpp transactioneditorcontainer.cpp transactionform.cpp kaccounttemplateselectordecl.ui kaccounttemplateselector.cpp \ libwidgets_a_SOURCES = kbudgetvalues.cpp kbudgetvaluesdecl.ui kguiutils.cpp tdelistviewsearchline.cpp kmymoneyaccountcombo.cpp kmymoneyaccountcompletion.cpp kmymoneyaccountselector.cpp kmymoneyaccounttreebase.cpp kmymoneyaccounttree.cpp kmymoneyaccounttreebudget.cpp kmymoneyaccounttreeforecast.cpp kmymoneybriefschedule.cpp kmymoneycalculator.cpp kmymoneycalendar.cpp kmymoneycategory.cpp kmymoneychecklistitem.cpp kmymoneycombo.cpp kmymoneycompletion.cpp kmymoneycurrencyselector.cpp kmymoneydateinput.cpp kmymoneydatetbl.cpp kmymoneyedit.cpp kmymoneyforecastlistviewitem.cpp kmymoneygpgconfig.cpp kmymoneygpgconfigdecl.ui kmymoneylineedit.cpp kmymoneylistviewitem.cpp kmymoneyonlinequoteconfig.cpp kmymoneyonlinequoteconfigdecl.ui kmymoneypriceview.cpp kmymoneyreportconfigtab1decl.ui kmymoneyreportconfigtab2decl.ui kmymoneyreportconfigtab3decl.ui kmymoneyreportconfigtabchartdecl.ui kmymoneyreportcontroldecl.ui kmymoneyscheduledcalendar.cpp kmymoneyscheduleddatetbl.cpp kmymoneyselector.cpp kmymoneytitlelabel.cpp kmymoneywizard.cpp kschedulebriefwidget.ui register.cpp registeritem.cpp registersearchline.cpp transaction.cpp scheduledtransaction.cpp stdtransactiondownloaded.cpp stdtransactionmatched.cpp transactioneditorcontainer.cpp transactionform.cpp kaccounttemplateselectordecl.ui kaccounttemplateselector.cpp \
transactionsortoption.cpp transactionsortoption.ui \ transactionsortoption.cpp transactionsortoption.ui \
selectedtransaction.cpp selectedtransaction.cpp
@ -27,7 +27,7 @@ inst_HEADERS = kmymoneydateinput.h kmymoneyedit.h kmymoneytitlelabel.h kmymoneya
transactionsortoption.h transactionsortoption.h
# include the widgets that are only available to KMyMoney here # include the widgets that are only available to KMyMoney here
noinst_HEADERS = kbudgetvalues.h klistviewsearchline.h kmymoneyaccounttree.h \ noinst_HEADERS = kbudgetvalues.h tdelistviewsearchline.h kmymoneyaccounttree.h \
kmymoneyaccounttreebudget.h kmymoneyaccounttreeforecast.h kmymoneybriefschedule.h kmymoneycalculator.h kmymoneycalendar.h \ kmymoneyaccounttreebudget.h kmymoneyaccounttreeforecast.h kmymoneybriefschedule.h kmymoneycalculator.h kmymoneycalendar.h \
kmymoneycategory.h kmymoneydatetbl.h kmymoneygpgconfig.h kmymoneyonlinequoteconfig.h \ kmymoneycategory.h kmymoneydatetbl.h kmymoneygpgconfig.h kmymoneyonlinequoteconfig.h \
kmymoneypriceview.h kmymoneyscheduledcalendar.h kmymoneyscheduleddatetbl.h \ kmymoneypriceview.h kmymoneyscheduledcalendar.h kmymoneyscheduleddatetbl.h \

@ -28,7 +28,7 @@
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <klistview.h> #include <tdelistview.h>
#include <ktextedit.h> #include <ktextedit.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -18,7 +18,7 @@ inline TQString kmm_i18n(const char* msg) { return i18n(msg); }
#include <tqvariant.h> #include <tqvariant.h>
#include <tqpushbutton.h> #include <tqpushbutton.h>
#include <tqheader.h> #include <tqheader.h>
#include <klistview.h> #include <tdelistview.h>
#include <tqgroupbox.h> #include <tqgroupbox.h>
#include <ktextedit.h> #include <ktextedit.h>
#include <tqlayout.h> #include <tqlayout.h>

@ -29,7 +29,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -27,7 +27,7 @@ class TQDragObject;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -27,7 +27,7 @@ class TQDragObject;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -27,7 +27,7 @@ class TQDragObject;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -68,7 +68,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <knotifyclient.h> #include <knotifyclient.h>
#include <kdatetbl.h> // for maximum re-use #include <kdatetbl.h> // for maximum re-use
#include <kpopupmenu.h> #include <tdepopupmenu.h>
#if KDE_IS_VERSION(3,2,0) #if KDE_IS_VERSION(3,2,0)
#include <kcalendarsystem.h> #include <kcalendarsystem.h>
@ -119,11 +119,11 @@ void kMyMoneyCalendar::init( const TQDate &dt )
d->selectWeek = new TQToolButton( this ); d->selectWeek = new TQToolButton( this );
// KIconLoader *kiconloader = TDEGlobal::iconLoader(); // KIconLoader *kiconloader = TDEGlobal::iconLoader();
TDEPopupMenu* kpopupmenuNew = new TDEPopupMenu(this); TDEPopupMenu* tdepopupmenuNew = new TDEPopupMenu(this);
kpopupmenuNew->insertItem(i18n("Week"), this, TQT_SLOT(slotSetStyleWeekly())); tdepopupmenuNew->insertItem(i18n("Week"), this, TQT_SLOT(slotSetStyleWeekly()));
kpopupmenuNew->insertItem(i18n("Month"), this, TQT_SLOT(slotSetStyleMonthly())); tdepopupmenuNew->insertItem(i18n("Month"), this, TQT_SLOT(slotSetStyleMonthly()));
/* kpopupmenuNew->insertItem(i18n("3 Months"), this, TQT_SLOT(slotSetStyleQuarterly())); */ /* tdepopupmenuNew->insertItem(i18n("3 Months"), this, TQT_SLOT(slotSetStyleQuarterly())); */
styleControl->setPopup(kpopupmenuNew); styleControl->setPopup(tdepopupmenuNew);
TQToolTip::add(styleControl, i18n("Choose Style")); TQToolTip::add(styleControl, i18n("Choose Style"));
TQToolTip::add(yearForward, i18n("Next year")); TQToolTip::add(yearForward, i18n("Next year"));

@ -27,7 +27,7 @@
// KDE Includes // KDE Includes
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <tdelistview.h>
#include <kdebug.h> #include <kdebug.h>
#include <tdeconfig.h> #include <tdeconfig.h>

@ -28,7 +28,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -38,7 +38,7 @@
#include <klocale.h> #include <klocale.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kshortcut.h> #include <tdeshortcut.h>
#include <kpassivepopup.h> #include <kpassivepopup.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -26,7 +26,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -26,7 +26,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -26,7 +26,7 @@
#include <tdeconfig.h> #include <tdeconfig.h>
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <tdelistview.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kguiitem.h> #include <kguiitem.h>
#include <kpushbutton.h> #include <kpushbutton.h>

@ -34,7 +34,7 @@
#include <klocale.h> #include <klocale.h>
#include <kglobal.h> #include <kglobal.h>
#include <klistview.h> #include <tdelistview.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <tdeconfig.h> #include <tdeconfig.h>
#include <kmessagebox.h> #include <kmessagebox.h>

@ -27,8 +27,8 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kpopupmenu.h> #include <tdepopupmenu.h>
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -28,7 +28,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klocale.h> #include <klocale.h>
#include <kpopupmenu.h> #include <tdepopupmenu.h>
#include <kmessagebox.h> #include <kmessagebox.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@ -41,18 +41,18 @@ kMyMoneyScheduledCalendar::kMyMoneyScheduledCalendar(TQWidget *parent, const cha
{ {
TQPushButton *pb1 = new TQPushButton(i18n("Select Schedules"), this); TQPushButton *pb1 = new TQPushButton(i18n("Select Schedules"), this);
kpopupmenu = new TDEPopupMenu(this); tdepopupmenu = new TDEPopupMenu(this);
kpopupmenu->setCheckable(true); tdepopupmenu->setCheckable(true);
kpopupmenu->insertItem(i18n("Bills"), 0); tdepopupmenu->insertItem(i18n("Bills"), 0);
kpopupmenu->insertItem(i18n("Deposits"), 1); tdepopupmenu->insertItem(i18n("Deposits"), 1);
kpopupmenu->insertItem(i18n("Transfers"), 2); tdepopupmenu->insertItem(i18n("Transfers"), 2);
kpopupmenu->connectItem(0, this, TQT_SLOT(slotSetViewBills())); tdepopupmenu->connectItem(0, this, TQT_SLOT(slotSetViewBills()));
kpopupmenu->connectItem(1, this, TQT_SLOT(slotSetViewDeposits())); tdepopupmenu->connectItem(1, this, TQT_SLOT(slotSetViewDeposits()));
kpopupmenu->connectItem(2, this, TQT_SLOT(slotSetViewTransfers())); tdepopupmenu->connectItem(2, this, TQT_SLOT(slotSetViewTransfers()));
kpopupmenu->setItemChecked(0, true); tdepopupmenu->setItemChecked(0, true);
kpopupmenu->setItemChecked(1, true); tdepopupmenu->setItemChecked(1, true);
kpopupmenu->setItemChecked(2, true); tdepopupmenu->setItemChecked(2, true);
pb1->setPopup(kpopupmenu); pb1->setPopup(tdepopupmenu);
m_scheduledDateTable = new kMyMoneyScheduledDateTbl(this); m_scheduledDateTable = new kMyMoneyScheduledDateTbl(this);
setDateTable((kMyMoneyDateTbl*)m_scheduledDateTable); setDateTable((kMyMoneyDateTbl*)m_scheduledDateTable);
@ -73,20 +73,20 @@ kMyMoneyScheduledCalendar::~kMyMoneyScheduledCalendar()
void kMyMoneyScheduledCalendar::slotSetViewBills() void kMyMoneyScheduledCalendar::slotSetViewBills()
{ {
kpopupmenu->setItemChecked(0, ((kpopupmenu->isItemChecked(0)) ? false : true)); tdepopupmenu->setItemChecked(0, ((tdepopupmenu->isItemChecked(0)) ? false : true));
m_scheduledDateTable->filterBills(!kpopupmenu->isItemChecked(0)); m_scheduledDateTable->filterBills(!tdepopupmenu->isItemChecked(0));
} }
void kMyMoneyScheduledCalendar::slotSetViewDeposits() void kMyMoneyScheduledCalendar::slotSetViewDeposits()
{ {
kpopupmenu->setItemChecked(1, ((kpopupmenu->isItemChecked(1)) ? false : true)); tdepopupmenu->setItemChecked(1, ((tdepopupmenu->isItemChecked(1)) ? false : true));
m_scheduledDateTable->filterDeposits(!kpopupmenu->isItemChecked(1)); m_scheduledDateTable->filterDeposits(!tdepopupmenu->isItemChecked(1));
} }
void kMyMoneyScheduledCalendar::slotSetViewTransfers() void kMyMoneyScheduledCalendar::slotSetViewTransfers()
{ {
kpopupmenu->setItemChecked(2, ((kpopupmenu->isItemChecked(2)) ? false : true)); tdepopupmenu->setItemChecked(2, ((tdepopupmenu->isItemChecked(2)) ? false : true));
m_scheduledDateTable->filterTransfers(!kpopupmenu->isItemChecked(2)); m_scheduledDateTable->filterTransfers(!tdepopupmenu->isItemChecked(2));
} }
#include "kmymoneyscheduledcalendar.moc" #include "kmymoneyscheduledcalendar.moc"

@ -81,7 +81,7 @@ protected slots:
void slotSetViewTransfers(); void slotSetViewTransfers();
private: private:
TDEPopupMenu* kpopupmenu; TDEPopupMenu* tdepopupmenu;
kMyMoneyScheduledDateTbl *m_scheduledDateTable; kMyMoneyScheduledDateTbl *m_scheduledDateTable;
}; };

@ -25,8 +25,8 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <ktoolbar.h> #include <tdetoolbar.h>
#include <ktoolbarbutton.h> #include <tdetoolbarbutton.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <klocale.h> #include <klocale.h>

@ -16,12 +16,12 @@
Boston, MA 02110-1301, USA. Boston, MA 02110-1301, USA.
*/ */
#include "klistviewsearchline.h" #include "tdelistviewsearchline.h"
#include <klistview.h> #include <tdelistview.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <ktoolbar.h> #include <tdetoolbar.h>
#include <ktoolbarbutton.h> #include <tdetoolbarbutton.h>
#include <kdebug.h> #include <kdebug.h>
#include <klocale.h> #include <klocale.h>
@ -504,4 +504,4 @@ void TDEListViewSearchLineWidget::positionInToolBar()
d->searchLine->show(); d->searchLine->show();
} }
#include "klistviewsearchline.moc" #include "tdelistviewsearchline.moc"

@ -30,7 +30,7 @@
// KDE Includes // KDE Includes
#include <klocale.h> #include <klocale.h>
#include <klistbox.h> #include <tdelistbox.h>
#include <klineedit.h> #include <klineedit.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <knuminput.h> #include <knuminput.h>

@ -28,7 +28,7 @@
#include <kcombobox.h> #include <kcombobox.h>
#include <klineedit.h> #include <klineedit.h>
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -31,7 +31,7 @@
// KDE Includes // KDE Includes
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <tdelistview.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <klineedit.h> #include <klineedit.h>
#include <ktextedit.h> #include <ktextedit.h>

@ -23,7 +23,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <klistview.h> #include <tdelistview.h>
#include <kmymoney/kmymoneyaccounttree.h> #include <kmymoney/kmymoneyaccounttree.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -22,7 +22,7 @@
// KDE Includes // KDE Includes
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <tdelistview.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -7749,7 +7749,7 @@ msgstr ""
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
#, fuzzy #, fuzzy
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "S'estan carregant assentaments..." msgstr "S'estan carregant assentaments..."
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8552,39 +8552,39 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "S'ha produït un error fatal en determinar les dades: " msgstr "S'ha produït un error fatal en determinar les dades: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
#, fuzzy #, fuzzy
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
"%1|Fitxers de Gnucash\n" "%1|Fitxers de Gnucash\n"
"%2|Tots els fitxers (*.*)" "%2|Tots els fitxers (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Seleccioneu l'estil" msgstr "Seleccioneu l'estil"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
#, fuzzy #, fuzzy
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Totes les dates" msgstr "Totes les dates"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "Seleccioneu l'estil" msgstr "Seleccioneu l'estil"
@ -11817,12 +11817,12 @@ msgstr "Ubicació del filtre d'entrada"
msgid "Rename" msgid "Rename"
msgstr "Re&nomena" msgstr "Re&nomena"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
#, fuzzy #, fuzzy
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Transacció desglossada" msgstr "Transacció desglossada"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12591,22 +12591,22 @@ msgid ""
"Unknown" "Unknown"
msgstr "Desconegut" msgstr "Desconegut"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
#, fuzzy #, fuzzy
msgid "Search Columns" msgid "Search Columns"
msgstr "Columnes a mostrar" msgstr "Columnes a mostrar"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
#, fuzzy #, fuzzy
msgid "S&earch:" msgid "S&earch:"
msgstr "Cerca" msgstr "Cerca"

@ -7742,7 +7742,7 @@ msgid "OFX setup error"
msgstr "" msgstr ""
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Nahrávám seznam bank" msgstr "Nahrávám seznam bank"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8524,34 +8524,34 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Kritická chyba při rozeznávání dat: " msgstr "Kritická chyba při rozeznávání dat: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Vyberte SQLite soubor" msgstr "Vyberte SQLite soubor"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Všechny soubory" msgstr "Všechny soubory"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Vyberte výstupní soubor" msgstr "Vyberte výstupní soubor"
@ -11799,11 +11799,11 @@ msgstr "Umístění vstupního filtru"
msgid "Rename" msgid "Rename"
msgstr "Přejmenovat" msgstr "Přejmenovat"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Vybrat transakce" msgstr "Vybrat transakce"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12521,21 +12521,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Neznámý" msgstr "Neznámý"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Prohledávát sloupce" msgstr "Prohledávát sloupce"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Všechny viditelné sloupce" msgstr "Všechny viditelné sloupce"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Sloupec č. %1" msgstr "Sloupec č. %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "Hl&edat" msgstr "Hl&edat"

@ -7730,7 +7730,7 @@ msgstr "Filtypefejl"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
#, fuzzy #, fuzzy
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Flytter konto" msgstr "Flytter konto"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8504,41 +8504,41 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
#, fuzzy #, fuzzy
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
"*.%1|%2 filer\n" "*.%1|%2 filer\n"
"*.*|Alle filer (*.*)" "*.*|Alle filer (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Vælg stil" msgstr "Vælg stil"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
#, fuzzy #, fuzzy
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "" msgstr ""
"%1|XML filer\n" "%1|XML filer\n"
"%2|Alle filer (*.*)" "%2|Alle filer (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "Vælg filnavn" msgstr "Vælg filnavn"
@ -11729,12 +11729,12 @@ msgstr "Sti til input-filteret"
msgid "Rename" msgid "Rename"
msgstr "Om&døb" msgstr "Om&døb"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
#, fuzzy #, fuzzy
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Opdel overførsel" msgstr "Opdel overførsel"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12481,22 +12481,22 @@ msgid ""
"Unknown" "Unknown"
msgstr "Ukendt konto" msgstr "Ukendt konto"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
#, fuzzy #, fuzzy
msgid "Search Columns" msgid "Search Columns"
msgstr "Vis kolonner" msgstr "Vis kolonner"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
#, fuzzy #, fuzzy
msgid "S&earch:" msgid "S&earch:"
msgstr "&Søg" msgstr "&Søg"

@ -7884,7 +7884,7 @@ msgid "OFX setup error"
msgstr "OFX Einrichtungsfehler" msgstr "OFX Einrichtungsfehler"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Lade Liste der Banken" msgstr "Lade Liste der Banken"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8698,7 +8698,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Schwerwiegender Fehler beim Bestimmen der Daten: " msgstr "Schwerwiegender Fehler beim Bestimmen der Daten: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8708,27 +8708,27 @@ msgstr ""
"Bitte die Dokumentation der Distribution oder die Qt-Website (www.trolltech." "Bitte die Dokumentation der Distribution oder die Qt-Website (www.trolltech."
"com) konsultieren und nach SQL-Treibern suchen." "com) konsultieren und nach SQL-Treibern suchen."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "Der Qt-SQL Treiber %1 ist nicht mehr auf Ihrem System installiert." msgstr "Der Qt-SQL Treiber %1 ist nicht mehr auf Ihrem System installiert."
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Det Qt-SQL Treiber %1 wird nicht unterstützt" msgstr "Det Qt-SQL Treiber %1 wird nicht unterstützt"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "SQLite Dateien (*.sql);; Alle Dateien (*.*) " msgstr "SQLite Dateien (*.sql);; Alle Dateien (*.*) "
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "SQLite Datei auswählen" msgstr "SQLite Datei auswählen"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Alle Dateien (*.*)" msgstr "Alle Dateien (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Ausgabedateinamen wählen" msgstr "Ausgabedateinamen wählen"
@ -12128,11 +12128,11 @@ msgstr "Lesefilterprogramm"
msgid "Rename" msgid "Rename"
msgstr "Umbenennen" msgstr "Umbenennen"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Buchung auswählen" msgstr "Buchung auswählen"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "Select a transaction and press the OK button or use Cancel to select none." msgid "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
"Eine Buchung selektieren, \"OK\" drücken oder \"Abbruch\" um nichts " "Eine Buchung selektieren, \"OK\" drücken oder \"Abbruch\" um nichts "
@ -12894,21 +12894,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Unbekanntes Wertpapier" msgstr "Unbekanntes Wertpapier"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Suche Spalten" msgstr "Suche Spalten"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Alle sichtbaren Spalten" msgstr "Alle sichtbaren Spalten"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Zeilen-Nr. %1" msgstr "Zeilen-Nr. %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "&Suchen:" msgstr "&Suchen:"

@ -7756,8 +7756,8 @@ msgid "OFX setup error"
msgstr "OFX setup error" msgstr "OFX setup error"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Loading banklist" msgstr "Loading bantdelist"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "" msgid ""
@ -8499,7 +8499,7 @@ msgstr "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Fatal error in determining data: " msgstr "Fatal error in determining data: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www.trolltech.com) and search for SQL drivers." "Please consult documentation for your distro, or visit the Qt web site (www.trolltech.com) and search for SQL drivers."
@ -8507,27 +8507,27 @@ msgstr ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www.trolltech.com) and search for SQL drivers." "Please consult documentation for your distro, or visit the Qt web site (www.trolltech.com) and search for SQL drivers."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "Qt SQL driver %1 is no longer installed on your system" msgstr "Qt SQL driver %1 is no longer installed on your system"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Qt SQL driver %1 is not supported" msgstr "Qt SQL driver %1 is not supported"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "SQLite files (*.sql);; All files (*.*)" msgstr "SQLite files (*.sql);; All files (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Select SQLite file" msgstr "Select SQLite file"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "All files (*.*)" msgstr "All files (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Select output file" msgstr "Select output file"
@ -11626,11 +11626,11 @@ msgstr "Input filter location"
msgid "Rename" msgid "Rename"
msgstr "Rename" msgstr "Rename"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Select Transaction" msgstr "Select Transaction"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "Select a transaction and press the OK button or use Cancel to select none." msgid "Select a transaction and press the OK button or use Cancel to select none."
msgstr "Select a transaction and press the OK button or use Cancel to select none." msgstr "Select a transaction and press the OK button or use Cancel to select none."
@ -12309,21 +12309,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Unknown" msgstr "Unknown"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Search Columns" msgstr "Search Columns"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "All Visible Columns" msgstr "All Visible Columns"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Column No. %1" msgstr "Column No. %1"
#: widgets/klistviewsearchline.cpp:461 #: widgets/tdelistviewsearchline.cpp:461
#: widgets/registersearchline.cpp:286 #: widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "S&earch:" msgstr "S&earch:"

@ -7863,7 +7863,7 @@ msgid "OFX setup error"
msgstr "Error de configuración de OFX" msgstr "Error de configuración de OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Cargando lista de bancos..." msgstr "Cargando lista de bancos..."
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8693,7 +8693,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Error fatal durante la determinación de los datos:" msgstr "Error fatal durante la determinación de los datos:"
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8703,27 +8703,27 @@ msgstr ""
"Por favor, consulte la información de su distribución, o visite el sitio de " "Por favor, consulte la información de su distribución, o visite el sitio de "
"Qt (www.trolltech.com) y busque por manejadores de SQL." "Qt (www.trolltech.com) y busque por manejadores de SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "El manejador de Qt SQL %1 no esta más instalado en su sistema" msgstr "El manejador de Qt SQL %1 no esta más instalado en su sistema"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "El manejador de Qt SQL %1 no está soportado" msgstr "El manejador de Qt SQL %1 no está soportado"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "Archivos de SQLite (*.sql);; Todos los archivos (*.*)" msgstr "Archivos de SQLite (*.sql);; Todos los archivos (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Escoger archivo SQLite" msgstr "Escoger archivo SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Todos los archivos (*.*)" msgstr "Todos los archivos (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Escoja archivo de salida" msgstr "Escoja archivo de salida"
@ -12101,11 +12101,11 @@ msgstr "Localización del filtro para importar"
msgid "Rename" msgid "Rename"
msgstr "Renombrar" msgstr "Renombrar"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Escoger Asiento" msgstr "Escoger Asiento"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12865,21 +12865,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Desconocido" msgstr "Desconocido"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Buscar Columnas" msgstr "Buscar Columnas"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Todas las Columnas visibles" msgstr "Todas las Columnas visibles"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Columna N° %1" msgstr "Columna N° %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "Buscar:" msgstr "Buscar:"

@ -7881,7 +7881,7 @@ msgid "OFX setup error"
msgstr "Error de configuración de OFX" msgstr "Error de configuración de OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Cargando lista de bancos" msgstr "Cargando lista de bancos"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8711,7 +8711,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Error fatal durante la determinación de los datos:" msgstr "Error fatal durante la determinación de los datos:"
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8721,27 +8721,27 @@ msgstr ""
"Por favor consulte la documentación para su distribución, o visite el sitio " "Por favor consulte la documentación para su distribución, o visite el sitio "
"web de Qt (www.trolltech.com) y busque los controladores de SQL." "web de Qt (www.trolltech.com) y busque los controladores de SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "El manejador de Qt SQL %1 ya no está instalado en su sistema" msgstr "El manejador de Qt SQL %1 ya no está instalado en su sistema"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "El manejador de Qt SQL %1 no está soportado" msgstr "El manejador de Qt SQL %1 no está soportado"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "Archivos de SQLite (*.sql);; Todos los archivos (*.*)" msgstr "Archivos de SQLite (*.sql);; Todos los archivos (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Seleccionar archivo SQLite" msgstr "Seleccionar archivo SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Todos los archivos (*.*)" msgstr "Todos los archivos (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Escoja archivo de salida" msgstr "Escoja archivo de salida"
@ -12121,11 +12121,11 @@ msgstr "Filtro para importar"
msgid "Rename" msgid "Rename"
msgstr "Renombrar" msgstr "Renombrar"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Seleccionar Asiento" msgstr "Seleccionar Asiento"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12885,21 +12885,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Desconocido" msgstr "Desconocido"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Columnas de Búsqueda" msgstr "Columnas de Búsqueda"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Todas las Columnas Visibles" msgstr "Todas las Columnas Visibles"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Nro. de Columna %1" msgstr "Nro. de Columna %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "Buscar:" msgstr "Buscar:"

@ -7776,7 +7776,7 @@ msgid "OFX setup error"
msgstr "OFX-asetusvirhe" msgstr "OFX-asetusvirhe"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Pankkilistaa ladataan..." msgstr "Pankkilistaa ladataan..."
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8584,7 +8584,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Vakava virhe tietojen määrityksessä: " msgstr "Vakava virhe tietojen määrityksessä: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8594,27 +8594,27 @@ msgstr ""
"Selvitä asentaminen käytetyn jakelun dokumentaatiosta tai käy QT-" "Selvitä asentaminen käytetyn jakelun dokumentaatiosta tai käy QT-"
"webbisivuilla (http://www.trolltech.com) ja etsi hakusanoilla 'SQL drivers'." "webbisivuilla (http://www.trolltech.com) ja etsi hakusanoilla 'SQL drivers'."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "QT SQL-ajuri %1 ei ole enää asennettuna järjestelmään" msgstr "QT SQL-ajuri %1 ei ole enää asennettuna järjestelmään"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Qt SQL-ajuri %1 ei ole tuettu" msgstr "Qt SQL-ajuri %1 ei ole tuettu"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "SQLite-tiedostot (*.sql);; Kaikki tiedostot (*.*)" msgstr "SQLite-tiedostot (*.sql);; Kaikki tiedostot (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Valitse SQLite-tiedosto" msgstr "Valitse SQLite-tiedosto"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Kaikki tiedostot (*.*)" msgstr "Kaikki tiedostot (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Valitse nimi kirjoitettavalle tiedostolle" msgstr "Valitse nimi kirjoitettavalle tiedostolle"
@ -11944,11 +11944,11 @@ msgstr "Sisääntulosuodattimen sijainti"
msgid "Rename" msgid "Rename"
msgstr "Uudelleennimeä" msgstr "Uudelleennimeä"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Valitse tapahtuma" msgstr "Valitse tapahtuma"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "Select a transaction and press the OK button or use Cancel to select none." msgid "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
"Valitse tapahtuma ja paina OK-painiketta, tai ohita valinta painamalla " "Valitse tapahtuma ja paina OK-painiketta, tai ohita valinta painamalla "
@ -12697,21 +12697,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Tuntematon" msgstr "Tuntematon"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Hakusarakkeet" msgstr "Hakusarakkeet"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Kaikki näkyvät sarakkeet" msgstr "Kaikki näkyvät sarakkeet"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Sarakenro. %1" msgstr "Sarakenro. %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "&Hae:" msgstr "&Hae:"

@ -7979,7 +7979,7 @@ msgid "OFX setup error"
msgstr "Erreur d'initialisation OFX" msgstr "Erreur d'initialisation OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Chargement de la liste des banques" msgstr "Chargement de la liste des banques"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8822,7 +8822,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Erreur fatale dans la détermination des données : " msgstr "Erreur fatale dans la détermination des données : "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8832,27 +8832,27 @@ msgstr ""
"Merci de consulter la documentation de votre distribution ou visitez le site " "Merci de consulter la documentation de votre distribution ou visitez le site "
"Web Qt (www.trolltech.com) et cherchez les drivers SQL." "Web Qt (www.trolltech.com) et cherchez les drivers SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "Le pilote SQL pour Qt n'est pas installé sur votre système" msgstr "Le pilote SQL pour Qt n'est pas installé sur votre système"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Le pilote SQL pour Qt %1 n'est pas supporté" msgstr "Le pilote SQL pour Qt %1 n'est pas supporté"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "Fichiers SQLite (*.sql);; Tous les fichiers (*.*)" msgstr "Fichiers SQLite (*.sql);; Tous les fichiers (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Sélectionner le fichier SQLite" msgstr "Sélectionner le fichier SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Tous les fichiers (*.*)" msgstr "Tous les fichiers (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Sélectionnez le fichier de sortie" msgstr "Sélectionnez le fichier de sortie"
@ -12263,11 +12263,11 @@ msgstr "Emplacement du filtre de saisie"
msgid "Rename" msgid "Rename"
msgstr "Renommer" msgstr "Renommer"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Sélectionner l'opération" msgstr "Sélectionner l'opération"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -13034,21 +13034,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Inconnue" msgstr "Inconnue"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Colonnes de recherche" msgstr "Colonnes de recherche"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Toutes les colonnes visibles" msgstr "Toutes les colonnes visibles"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Colonne nº %1" msgstr "Colonne nº %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "Ch&ercher :" msgstr "Ch&ercher :"

@ -7843,7 +7843,7 @@ msgid "OFX setup error"
msgstr "Erro de configuración de OFX" msgstr "Erro de configuración de OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "A cargar a lista de bancos" msgstr "A cargar a lista de bancos"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8659,7 +8659,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Aconteceu un erro fatal ao determinar a data: " msgstr "Aconteceu un erro fatal ao determinar a data: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8669,27 +8669,27 @@ msgstr ""
"Consulte a documentación da súa distribución, ou visite o sitio web de Qt " "Consulte a documentación da súa distribución, ou visite o sitio web de Qt "
"(www.trolltech.com) e procure controladores SQL." "(www.trolltech.com) e procure controladores SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "O controlador para %1 de Qt SQL non está instalado no sistema" msgstr "O controlador para %1 de Qt SQL non está instalado no sistema"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "O controlador %1 de Qt SQL non está soportado" msgstr "O controlador %1 de Qt SQL non está soportado"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "Ficheiros de SQLite (*.sql);; Todos os ficheiros (*.*)" msgstr "Ficheiros de SQLite (*.sql);; Todos os ficheiros (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Escoller o estilo de SQLite" msgstr "Escoller o estilo de SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Todos os ficheiros (*.*)" msgstr "Todos os ficheiros (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Escoller o ficheiro de saída" msgstr "Escoller o ficheiro de saída"
@ -12048,11 +12048,11 @@ msgstr "Filtro para importar"
msgid "Rename" msgid "Rename"
msgstr "Mudar o nome" msgstr "Mudar o nome"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Escoller un asento" msgstr "Escoller un asento"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12807,21 +12807,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Descoñecido" msgstr "Descoñecido"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Procurar nas colunas" msgstr "Procurar nas colunas"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Todas as colunas visíbeis" msgstr "Todas as colunas visíbeis"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Coluna nº %1" msgstr "Coluna nº %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "&Procurar:" msgstr "&Procurar:"

@ -7766,7 +7766,7 @@ msgid "OFX setup error"
msgstr "Errore installazione OFX" msgstr "Errore installazione OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Caricamento elenco delle banche" msgstr "Caricamento elenco delle banche"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8513,7 +8513,7 @@ msgstr "Contrassegno di riconciliazione modificato.<br>&nbsp;&nbsp;&nbsp;Vecchio
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Errore nell'identificazione dei dati" msgstr "Errore nell'identificazione dei dati"
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www.trolltech.com) and search for SQL drivers." "Please consult documentation for your distro, or visit the Qt web site (www.trolltech.com) and search for SQL drivers."
@ -8521,27 +8521,27 @@ msgstr ""
"Non ci sono driver Qt SQL installati sul tuo sistema.\n" "Non ci sono driver Qt SQL installati sul tuo sistema.\n"
"Consulta la documentazione della tua distribuzione, o visita il sito web Qt (www.trolltech.com) e cerca i driver SQL." "Consulta la documentazione della tua distribuzione, o visita il sito web Qt (www.trolltech.com) e cerca i driver SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "Il driver Qt SQL %1 non è installato sul sistema" msgstr "Il driver Qt SQL %1 non è installato sul sistema"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Il driver Qt SQL %1 non è supportato" msgstr "Il driver Qt SQL %1 non è supportato"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "File SQLite (*.sql);; Tutti i file (*.*)" msgstr "File SQLite (*.sql);; Tutti i file (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Seleziona file SQLite" msgstr "Seleziona file SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Tutti i file (*.*)" msgstr "Tutti i file (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Seleziona il file di uscita" msgstr "Seleziona il file di uscita"
@ -11632,11 +11632,11 @@ msgstr "Posizione del filtro di importazione"
msgid "Rename" msgid "Rename"
msgstr "Rinomina" msgstr "Rinomina"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Seleziona transazione" msgstr "Seleziona transazione"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "Select a transaction and press the OK button or use Cancel to select none." msgid "Select a transaction and press the OK button or use Cancel to select none."
msgstr "Seleziona una transazione e premi il pulsante OK o usa Annulla per selezionarne una." msgstr "Seleziona una transazione e premi il pulsante OK o usa Annulla per selezionarne una."
@ -12317,21 +12317,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Sconosciuto" msgstr "Sconosciuto"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Colonne di ricerca" msgstr "Colonne di ricerca"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Tutte le colonne visibili" msgstr "Tutte le colonne visibili"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Colonna n. %1" msgstr "Colonna n. %1"
#: widgets/klistviewsearchline.cpp:461 #: widgets/tdelistviewsearchline.cpp:461
#: widgets/registersearchline.cpp:286 #: widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "C&erca:" msgstr "C&erca:"

@ -7256,7 +7256,7 @@ msgid "OFX setup error"
msgstr "" msgstr ""
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "" msgstr ""
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -7999,34 +7999,34 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site " "Please consult documentation for your distro, or visit the Qt web site "
"(www.trolltech.com) and search for SQL drivers." "(www.trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "" msgstr ""
@ -11030,11 +11030,11 @@ msgstr ""
msgid "Rename" msgid "Rename"
msgstr "" msgstr ""
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "" msgstr ""
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -11736,21 +11736,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "" msgstr ""

@ -7654,7 +7654,7 @@ msgstr ""
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
#, fuzzy #, fuzzy
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Įkeliamos kainos..." msgstr "Įkeliamos kainos..."
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8423,36 +8423,36 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Rimta klaida nustatant duomenis: " msgstr "Rimta klaida nustatant duomenis: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Pasirinkti stilių" msgstr "Pasirinkti stilių"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
#, fuzzy #, fuzzy
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Visas laikotarpis" msgstr "Visas laikotarpis"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "Pasirinkti stilių" msgstr "Pasirinkti stilių"
@ -11597,12 +11597,12 @@ msgstr "Įvedimo filtro vieta"
msgid "Rename" msgid "Rename"
msgstr "Pe&rvadinti" msgstr "Pe&rvadinti"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
#, fuzzy #, fuzzy
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Skelti operaciją" msgstr "Skelti operaciją"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12341,22 +12341,22 @@ msgid ""
"Unknown" "Unknown"
msgstr "Nežinoma sąskaita" msgstr "Nežinoma sąskaita"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
#, fuzzy #, fuzzy
msgid "Search Columns" msgid "Search Columns"
msgstr "Rodomi stulpeliai" msgstr "Rodomi stulpeliai"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
#, fuzzy #, fuzzy
msgid "S&earch:" msgid "S&earch:"
msgstr "Ieškoti" msgstr "Ieškoti"

@ -7880,7 +7880,7 @@ msgid "OFX setup error"
msgstr "OFX setup fout" msgstr "OFX setup fout"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Lijst van banken wordt geladen" msgstr "Lijst van banken wordt geladen"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8709,7 +8709,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Fatale fout tijdens het bepalen van gegevens: " msgstr "Fatale fout tijdens het bepalen van gegevens: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8719,27 +8719,27 @@ msgstr ""
"Raadpleeg de documentatie van uw distributie (bv. Ubuntu, OpenSuse), of " "Raadpleeg de documentatie van uw distributie (bv. Ubuntu, OpenSuse), of "
"bezoek de website (www.trolltech.com) en zoek naar de juiste SQL drivers." "bezoek de website (www.trolltech.com) en zoek naar de juiste SQL drivers."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "Qt SQL driver %1 is niet meer op uw systeem geïnstalleerd" msgstr "Qt SQL driver %1 is niet meer op uw systeem geïnstalleerd"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Qt SQL driver %1 wordt niet ondersteund" msgstr "Qt SQL driver %1 wordt niet ondersteund"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "SQLite bestanden (*.sql);; Alle bestanden (*.*)" msgstr "SQLite bestanden (*.sql);; Alle bestanden (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Selecteer SQLite bestand" msgstr "Selecteer SQLite bestand"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Alle bestanden (*.*)" msgstr "Alle bestanden (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Selecteer uitvoer bestand" msgstr "Selecteer uitvoer bestand"
@ -12129,11 +12129,11 @@ msgstr "Lokatie van invoerfilter"
msgid "Rename" msgid "Rename"
msgstr "Hernoemen" msgstr "Hernoemen"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Selecteer Transactie" msgstr "Selecteer Transactie"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12903,21 +12903,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Onbekend" msgstr "Onbekend"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Zoek in kolommen" msgstr "Zoek in kolommen"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Alle zichtbare kolommen" msgstr "Alle zichtbare kolommen"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Kolom Nr. %1" msgstr "Kolom Nr. %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "Z&oeken:" msgstr "Z&oeken:"

@ -8090,7 +8090,7 @@ msgstr "Błąd typu pliku"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
#, fuzzy #, fuzzy
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Wczytywanie kont..." msgstr "Wczytywanie kont..."
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8919,39 +8919,39 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Poważny błąd przy określaniu danych: " msgstr "Poważny błąd przy określaniu danych: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
#, fuzzy #, fuzzy
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
"*.%1|Pliki %2\n" "*.%1|Pliki %2\n"
"*.*|Wszystkie pliki (*.*)" "*.*|Wszystkie pliki (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Zaznacz styl" msgstr "Zaznacz styl"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
#, fuzzy #, fuzzy
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Wszystkie daty" msgstr "Wszystkie daty"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "Wybierz nazwę pliku" msgstr "Wybierz nazwę pliku"
@ -12380,12 +12380,12 @@ msgstr "Położenie filtra wejściowego"
msgid "Rename" msgid "Rename"
msgstr "&Zmień nazwę" msgstr "&Zmień nazwę"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
#, fuzzy #, fuzzy
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Podziel transakcję" msgstr "Podziel transakcję"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -13176,22 +13176,22 @@ msgid ""
"Unknown" "Unknown"
msgstr "Nieznane konto" msgstr "Nieznane konto"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
#, fuzzy #, fuzzy
msgid "Search Columns" msgid "Search Columns"
msgstr "Pokaż kolumny" msgstr "Pokaż kolumny"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
#, fuzzy #, fuzzy
msgid "S&earch:" msgid "S&earch:"
msgstr "Szukaj" msgstr "Szukaj"

@ -7871,7 +7871,7 @@ msgid "OFX setup error"
msgstr "Erro de preparação OFX" msgstr "Erro de preparação OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "A carregar a lista dos bancos" msgstr "A carregar a lista dos bancos"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8696,7 +8696,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Erro fatal determinando dados: " msgstr "Erro fatal determinando dados: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8706,27 +8706,27 @@ msgstr ""
"É favor verificar a documentação da sua distribuição, ou visitar o site " "É favor verificar a documentação da sua distribuição, ou visitar o site "
"internet do Qt (www.trolltech.com) e procurar os pilotos SQL." "internet do Qt (www.trolltech.com) e procurar os pilotos SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "O piloto Qt SQL %1 não está agora instalado no seu sistema" msgstr "O piloto Qt SQL %1 não está agora instalado no seu sistema"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "O piloto Qt SQL %1 não é suportado" msgstr "O piloto Qt SQL %1 não é suportado"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "Ficheiros SQLite (*.sql);;Todos os ficheiros (*.*)" msgstr "Ficheiros SQLite (*.sql);;Todos os ficheiros (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Seleccionar o ficheiro SQLite" msgstr "Seleccionar o ficheiro SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Todos os ficheiros (*.*)" msgstr "Todos os ficheiros (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Seleccionar o ficheiro de saída" msgstr "Seleccionar o ficheiro de saída"
@ -12104,11 +12104,11 @@ msgstr "Localização do filtro de entrada"
msgid "Rename" msgid "Rename"
msgstr "Renomear" msgstr "Renomear"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Seleccionar Transacção" msgstr "Seleccionar Transacção"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12877,21 +12877,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Desconhecida" msgstr "Desconhecida"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Colunas de Procura" msgstr "Colunas de Procura"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Todas as Colunas Visíveis" msgstr "Todas as Colunas Visíveis"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Coluna n° %1" msgstr "Coluna n° %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "P&rocurar:" msgstr "P&rocurar:"

@ -7878,7 +7878,7 @@ msgid "OFX setup error"
msgstr "Erro de configuração do OFX" msgstr "Erro de configuração do OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Carregando lista de bancos" msgstr "Carregando lista de bancos"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8692,7 +8692,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Erro fatal determinando dados: " msgstr "Erro fatal determinando dados: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8702,27 +8702,27 @@ msgstr ""
"Por favor consulte a documentação da sua distribuição, ou visite a página " "Por favor consulte a documentação da sua distribuição, ou visite a página "
"internet do Qt (www.trolltech.com) e procure os drivers SQL." "internet do Qt (www.trolltech.com) e procure os drivers SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "O driver Qt SQL %1 não está instalado no seu sistema" msgstr "O driver Qt SQL %1 não está instalado no seu sistema"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "O driver Qt SQL %1 não é suportado" msgstr "O driver Qt SQL %1 não é suportado"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "Arquivos SQLite (*.sql);;Todos os arquivos (*.*)" msgstr "Arquivos SQLite (*.sql);;Todos os arquivos (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Selecionar arquivo SQLite" msgstr "Selecionar arquivo SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Todos os arquivos (*.*)" msgstr "Todos os arquivos (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Selecionar o arquivo de saída" msgstr "Selecionar o arquivo de saída"
@ -12124,11 +12124,11 @@ msgstr "Localização do filtro de entrada"
msgid "Rename" msgid "Rename"
msgstr "Renomear" msgstr "Renomear"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Selecionar Transação" msgstr "Selecionar Transação"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "Select a transaction and press the OK button or use Cancel to select none." msgid "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
"Selecione uma transação e pressione 'OK' ou use o 'Cancelar' para não " "Selecione uma transação e pressione 'OK' ou use o 'Cancelar' para não "
@ -12892,21 +12892,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Desconhecido" msgstr "Desconhecido"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Colunas de Procura" msgstr "Colunas de Procura"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Todas as Colunas Visíveis" msgstr "Todas as Colunas Visíveis"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Coluna n° %1" msgstr "Coluna n° %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "P&rocurar:" msgstr "P&rocurar:"

@ -7917,7 +7917,7 @@ msgid "OFX setup error"
msgstr "Eroare de configurare OFX" msgstr "Eroare de configurare OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Încarcă lista băncilor" msgstr "Încarcă lista băncilor"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8755,7 +8755,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Eroare fatală la determinarea datelor: " msgstr "Eroare fatală la determinarea datelor: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8765,27 +8765,27 @@ msgstr ""
" Vă rog să consultaţi documentaţia pentru distribuţia dumneavoastră sau să " " Vă rog să consultaţi documentaţia pentru distribuţia dumneavoastră sau să "
"vizitaţi site-ul web (www.trolltech.com) pentru a căuta driverele SQL." "vizitaţi site-ul web (www.trolltech.com) pentru a căuta driverele SQL."
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "Driverul SQL Qt %1 nu mai este instalat pe sistemul dumneavoastră" msgstr "Driverul SQL Qt %1 nu mai este instalat pe sistemul dumneavoastră"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Driverul SQL Qt %1 nu este compatibil" msgstr "Driverul SQL Qt %1 nu este compatibil"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "fişiere SQLLite (*.sql);; Toate fişierele (*.*)" msgstr "fişiere SQLLite (*.sql);; Toate fişierele (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Alege fişierul SQLite" msgstr "Alege fişierul SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Toate fişierele (*.*)" msgstr "Toate fişierele (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Selectează numele fişierului de ieşire" msgstr "Selectează numele fişierului de ieşire"
@ -12207,11 +12207,11 @@ msgstr "Locaţia filtrului de intrare"
msgid "Rename" msgid "Rename"
msgstr "Redenumeşte" msgstr "Redenumeşte"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Alege o tranzacţie" msgstr "Alege o tranzacţie"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12979,21 +12979,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Necunoscută" msgstr "Necunoscută"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Caută coloane" msgstr "Caută coloane"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Toate coloanele vizibile" msgstr "Toate coloanele vizibile"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Coloana nr. %1" msgstr "Coloana nr. %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "Ca&ută:" msgstr "Ca&ută:"

@ -7771,7 +7771,7 @@ msgid "OFX setup error"
msgstr "Ошибка настройки импорта из OFX" msgstr "Ошибка настройки импорта из OFX"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Загрузка списка банков..." msgstr "Загрузка списка банков..."
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8570,7 +8570,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Ошибка обработки данных: " msgstr "Ошибка обработки данных: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8580,27 +8580,27 @@ msgstr ""
"Поищите информацию об их установке в документации к вашему дистрибутиву или " "Поищите информацию об их установке в документации к вашему дистрибутиву или "
"на сайте Qt (www.trolltech.com)" "на сайте Qt (www.trolltech.com)"
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "Драйвер Qt SQL %1 больше не установлен в системе" msgstr "Драйвер Qt SQL %1 больше не установлен в системе"
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "Драйвер Qt SQL %1 не поддерживается" msgstr "Драйвер Qt SQL %1 не поддерживается"
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "Файлы SQLite (*.sql);;Все файлы (*.*)" msgstr "Файлы SQLite (*.sql);;Все файлы (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Выберите файл SQLite" msgstr "Выберите файл SQLite"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Все файлы (*.*)" msgstr "Все файлы (*.*)"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
msgid "Select output file" msgid "Select output file"
msgstr "Выберите имя файла" msgstr "Выберите имя файла"
@ -11909,11 +11909,11 @@ msgstr "Программа импорта"
msgid "Rename" msgid "Rename"
msgstr "Переименовать" msgstr "Переименовать"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Выбор операции" msgstr "Выбор операции"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12653,21 +12653,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Неизвестная" msgstr "Неизвестная"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Поиск по столбцам" msgstr "Поиск по столбцам"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "По всем видимым" msgstr "По всем видимым"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Столбец %1" msgstr "Столбец %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "&Поиск:" msgstr "&Поиск:"

@ -7995,7 +7995,7 @@ msgstr "Chyba typu súboru"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
#, fuzzy #, fuzzy
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Načítavam.účty" msgstr "Načítavam.účty"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8801,37 +8801,37 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Kritická chyba v určujúcich dátach:" msgstr "Kritická chyba v určujúcich dátach:"
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
#, fuzzy #, fuzzy
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "n Všetky" msgstr "n Všetky"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Vyberte štýl" msgstr "Vyberte štýl"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
#, fuzzy #, fuzzy
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Všetky dátumy" msgstr "Všetky dátumy"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "Vyberte meno súboru" msgstr "Vyberte meno súboru"
@ -12189,12 +12189,12 @@ msgstr "Vstup filter"
msgid "Rename" msgid "Rename"
msgstr "Preme&novať" msgstr "Preme&novať"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
#, fuzzy #, fuzzy
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Rozdeliť transakciu" msgstr "Rozdeliť transakciu"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12977,22 +12977,22 @@ msgid ""
"Unknown" "Unknown"
msgstr "Neznámy Účet" msgstr "Neznámy Účet"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
#, fuzzy #, fuzzy
msgid "Search Columns" msgid "Search Columns"
msgstr "Zobraziť stĺpce" msgstr "Zobraziť stĺpce"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
#, fuzzy #, fuzzy
msgid "S&earch:" msgid "S&earch:"
msgstr "Hľadať" msgstr "Hľadať"

@ -7526,8 +7526,8 @@ msgid "OFX setup error"
msgstr "" msgstr ""
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Laddar banklista" msgstr "Laddar bantdelista"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "" msgid ""
@ -8289,35 +8289,35 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Fatalt fel vid bestämmande av data: " msgstr "Fatalt fel vid bestämmande av data: "
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Tilläggsavgifter:" msgstr "Tilläggsavgifter:"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "Välj konto:" msgstr "Välj konto:"
@ -11396,11 +11396,11 @@ msgstr ""
msgid "Rename" msgid "Rename"
msgstr "Döp om" msgstr "Döp om"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Välj transaktion" msgstr "Välj transaktion"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12138,21 +12138,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Okänt konto" msgstr "Okänt konto"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "" msgstr ""
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "" msgstr ""
@ -12947,7 +12947,7 @@ msgstr ""
#~ "Reading the bank list failed with the following error: '%1'. The console " #~ "Reading the bank list failed with the following error: '%1'. The console "
#~ "output may have more information." #~ "output may have more information."
#~ msgstr "" #~ msgstr ""
#~ "Försöket att läsa banklistan returnerade följande fel: '%1'. " #~ "Försöket att läsa bantdelistan returnerade följande fel: '%1'. "
#~ "Konsollutskriften kan innehålla ytterligare information." #~ "Konsollutskriften kan innehålla ytterligare information."
#~ msgid "XMLPP error" #~ msgid "XMLPP error"

@ -7468,7 +7468,7 @@ msgid "OFX setup error"
msgstr "Dosya Tipi Hatası" msgstr "Dosya Tipi Hatası"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "Banka listesi yükleniyor" msgstr "Banka listesi yükleniyor"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8243,39 +8243,39 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Veriler belirlenirken bir sonlandırıcı hata oluştu:" msgstr "Veriler belirlenirken bir sonlandırıcı hata oluştu:"
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
"trolltech.com) and search for SQL drivers." "trolltech.com) and search for SQL drivers."
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
#, fuzzy #, fuzzy
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
"%1|%2 dosyaları (%3)\n" "%1|%2 dosyaları (%3)\n"
"*.*|Tüm dosyalar (*.*)" "*.*|Tüm dosyalar (*.*)"
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "Biçem Seç" msgstr "Biçem Seç"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
#, fuzzy #, fuzzy
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "Tüm dosyalar" msgstr "Tüm dosyalar"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "Dosya adı seç" msgstr "Dosya adı seç"
@ -11336,11 +11336,11 @@ msgstr "Girdi filtresi konumu"
msgid "Rename" msgid "Rename"
msgstr "&Yeniden Adlandır" msgstr "&Yeniden Adlandır"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "Aktarım Seç" msgstr "Aktarım Seç"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "" msgstr ""
@ -12056,21 +12056,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "Bilinmeyen" msgstr "Bilinmeyen"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "Arama Sütunları" msgstr "Arama Sütunları"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "Tüm Görünebilir Sütunlar" msgstr "Tüm Görünebilir Sütunlar"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "Sütun No. %1" msgstr "Sütun No. %1"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "&Ara:" msgstr "&Ara:"

@ -7690,7 +7690,7 @@ msgid "OFX setup error"
msgstr "文件类型错误" msgstr "文件类型错误"
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
msgid "Loading banklist" msgid "Loading bantdelist"
msgstr "正在载入银行列表..." msgstr "正在载入银行列表..."
#: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72 #: plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp:72
@ -8481,7 +8481,7 @@ msgstr ""
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "在确定数据时发生致命错误。" msgstr "在确定数据时发生致命错误。"
#: dialogs/kselectdatabasedlg.cpp:56 #: dialogs/tdeselectdatabasedlg.cpp:56
msgid "" msgid ""
"There are no Qt SQL drivers installed in your system.\n" "There are no Qt SQL drivers installed in your system.\n"
"Please consult documentation for your distro, or visit the Qt web site (www." "Please consult documentation for your distro, or visit the Qt web site (www."
@ -8491,32 +8491,32 @@ msgstr ""
"请参考您的系统发行版文档或者访问Qt官方网站http://www.trolltech.com寻找" "请参考您的系统发行版文档或者访问Qt官方网站http://www.trolltech.com寻找"
"SQL驱动程序。" "SQL驱动程序。"
#: dialogs/kselectdatabasedlg.cpp:100 #: dialogs/tdeselectdatabasedlg.cpp:100
msgid "Qt SQL driver %1 is no longer installed on your system" msgid "Qt SQL driver %1 is no longer installed on your system"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:107 #: dialogs/tdeselectdatabasedlg.cpp:107
msgid "Qt SQL driver %1 is not suported" msgid "Qt SQL driver %1 is not suported"
msgstr "" msgstr ""
#: dialogs/kselectdatabasedlg.cpp:164 #: dialogs/tdeselectdatabasedlg.cpp:164
#, fuzzy #, fuzzy
msgid "SQLite files (*.sql);; All files (*.*)" msgid "SQLite files (*.sql);; All files (*.*)"
msgstr "" msgstr ""
"*.%1|%2文件 (%3)\n" "*.%1|%2文件 (%3)\n"
"*.*|所有文件(*.*) " "*.*|所有文件(*.*) "
#: dialogs/kselectdatabasedlg.cpp:167 #: dialogs/tdeselectdatabasedlg.cpp:167
#, fuzzy #, fuzzy
msgid "Select SQLite file" msgid "Select SQLite file"
msgstr "选择样式" msgstr "选择样式"
#: dialogs/kselectdatabasedlg.cpp:188 #: dialogs/tdeselectdatabasedlg.cpp:188
#, fuzzy #, fuzzy
msgid "All files (*.*)" msgid "All files (*.*)"
msgstr "所有文件" msgstr "所有文件"
#: dialogs/kselectdatabasedlg.cpp:191 #: dialogs/tdeselectdatabasedlg.cpp:191
#, fuzzy #, fuzzy
msgid "Select output file" msgid "Select output file"
msgstr "选择文件" msgstr "选择文件"
@ -11761,11 +11761,11 @@ msgstr "输入过滤器地址"
msgid "Rename" msgid "Rename"
msgstr "重命名" msgstr "重命名"
#: dialogs/kselecttransactionsdlg.cpp:44 #: dialogs/tdeselecttransactionsdlg.cpp:44
msgid "Select Transaction" msgid "Select Transaction"
msgstr "选择交易" msgstr "选择交易"
#: dialogs/kselecttransactionsdlg.cpp:45 #: dialogs/tdeselecttransactionsdlg.cpp:45
msgid "" msgid ""
"Select a transaction and press the OK button or use Cancel to select none." "Select a transaction and press the OK button or use Cancel to select none."
msgstr "选择一项交易并按“确定”,或者按“取消”不选择任何交易。" msgstr "选择一项交易并按“确定”,或者按“取消”不选择任何交易。"
@ -12494,21 +12494,21 @@ msgid ""
"Unknown" "Unknown"
msgstr "未知证券" msgstr "未知证券"
#: widgets/klistviewsearchline.cpp:249 #: widgets/tdelistviewsearchline.cpp:249
msgid "Search Columns" msgid "Search Columns"
msgstr "搜索栏目" msgstr "搜索栏目"
#: widgets/klistviewsearchline.cpp:251 #: widgets/tdelistviewsearchline.cpp:251
msgid "All Visible Columns" msgid "All Visible Columns"
msgstr "全部可见栏目" msgstr "全部可见栏目"
#: widgets/klistviewsearchline.cpp:266 #: widgets/tdelistviewsearchline.cpp:266
msgid "" msgid ""
"_: Column number %1\n" "_: Column number %1\n"
"Column No. %1" "Column No. %1"
msgstr "No.%1 栏" msgstr "No.%1 栏"
#: widgets/klistviewsearchline.cpp:461 widgets/registersearchline.cpp:286 #: widgets/tdelistviewsearchline.cpp:461 widgets/registersearchline.cpp:286
msgid "S&earch:" msgid "S&earch:"
msgstr "搜索(&S):" msgstr "搜索(&S):"

Loading…
Cancel
Save