Rename a number of libraries and executables to avoid conflicts with KDE4

r14.0.x
Timothy Pearson 12 years ago
parent 9311d363bf
commit fe50f29e05

@ -602,7 +602,7 @@ AC_DEFUN([KDE_SUBST_PROGRAMS],
fi fi
if test -n "$trinity2ornewer"; then if test -n "$trinity2ornewer"; then
KDE_FIND_PATH(kconfig_compiler, KCONFIG_COMPILER, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kconfig_compiler)]) KDE_FIND_PATH(tdeconfig_compiler, KCONFIG_COMPILER, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(tdeconfig_compiler)])
KDE_FIND_PATH(dcopidlng, DCOPIDLNG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidlng)]) KDE_FIND_PATH(dcopidlng, DCOPIDLNG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidlng)])
fi fi
if test -n "$trinity3ornewer"; then if test -n "$trinity3ornewer"; then
@ -1788,7 +1788,7 @@ if test "$kde_qtver" = 1; then
kde_check_lib="libtdecore.la" kde_check_lib="libtdecore.la"
else else
kde_check_header="ksharedptr.h" kde_check_header="ksharedptr.h"
kde_check_lib="libkio.la" kde_check_lib="libtdeio.la"
fi fi
if test -z "$1"; then if test -z "$1"; then
@ -2094,7 +2094,7 @@ elif test $kde_qtver = 2; then
AC_SUBST(LIB_KIO, "-lkio") AC_SUBST(LIB_KIO, "-lkio")
AC_SUBST(LIB_KSYCOCA, "-ltdesycoca") AC_SUBST(LIB_KSYCOCA, "-ltdesycoca")
AC_SUBST(LIB_SMB, "-lsmb") AC_SUBST(LIB_SMB, "-lsmb")
AC_SUBST(LIB_KFILE, "-lkfile") AC_SUBST(LIB_KFILE, "-ltdefile")
AC_SUBST(LIB_KAB, "-lkab") AC_SUBST(LIB_KAB, "-lkab")
AC_SUBST(LIB_KHTML, "-ltdehtml") AC_SUBST(LIB_KHTML, "-ltdehtml")
AC_SUBST(LIB_KSPELL, "-ltdespell") AC_SUBST(LIB_KSPELL, "-ltdespell")
@ -2104,7 +2104,7 @@ else
AC_SUBST(LIB_TDECORE, "-ltdecore -lXext $(LIB_QT)") AC_SUBST(LIB_TDECORE, "-ltdecore -lXext $(LIB_QT)")
AC_SUBST(LIB_TDEUI, "-ltdeui $(LIB_TDECORE)") AC_SUBST(LIB_TDEUI, "-ltdeui $(LIB_TDECORE)")
AC_SUBST(LIB_KFM, "-lkfm $(LIB_TDECORE)") AC_SUBST(LIB_KFM, "-lkfm $(LIB_TDECORE)")
AC_SUBST(LIB_KFILE, "-lkfile $(LIB_KFM) $(LIB_TDEUI)") AC_SUBST(LIB_KFILE, "-ltdefile $(LIB_KFM) $(LIB_TDEUI)")
AC_SUBST(LIB_KAB, "-lkab $(LIB_KIMGIO) $(LIB_TDECORE)") AC_SUBST(LIB_KAB, "-lkab $(LIB_KIMGIO) $(LIB_TDECORE)")
fi fi
]) ])

@ -200,7 +200,7 @@ signals:
#include <klocale.h> #include <klocale.h>
#include <kstddirs.h> #include <kstddirs.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kcolorbutton.h> #include <kcolorbutton.h>
#include <kmessagebox.h> #include <kmessagebox.h>
@ -403,44 +403,44 @@ void KSettingsDlg::setPageList()
**/ **/
void KSettingsDlg::configRead() void KSettingsDlg::configRead()
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Settings Dialog"); tdeconfig->setGroup("Settings Dialog");
QSize *qsizeDefaultSize = new QSize(470,470); QSize *qsizeDefaultSize = new QSize(470,470);
this->resize(kconfig->readSizeEntry("Geometry", qsizeDefaultSize)); this->resize(tdeconfig->readSizeEntry("Geometry", qsizeDefaultSize));
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
m_bTempStartPrompt = kconfig->readBoolEntry("StartDialog", true); m_bTempStartPrompt = tdeconfig->readBoolEntry("StartDialog", true);
m_qradiobuttonStartPrompt->setChecked(m_bTempStartPrompt); m_qradiobuttonStartPrompt->setChecked(m_bTempStartPrompt);
m_qradiobuttonStartFile->setChecked(!m_bTempStartPrompt); m_qradiobuttonStartFile->setChecked(!m_bTempStartPrompt);
kconfig->setGroup("List Options"); tdeconfig->setGroup("List Options");
QFont qfontDefault = QFont("helvetica", 12); QFont qfontDefault = QFont("helvetica", 12);
QColor qcolorDefault = Qt::white; QColor qcolorDefault = Qt::white;
QColor qcolorDefaultBG = Qt::gray; QColor qcolorDefaultBG = Qt::gray;
m_qcolorTempList = kconfig->readColorEntry("listColor", &qcolorDefault); m_qcolorTempList = tdeconfig->readColorEntry("listColor", &qcolorDefault);
m_kcolorbuttonList->setColor(m_qcolorTempList); m_kcolorbuttonList->setColor(m_qcolorTempList);
m_qcolorTempListBG = kconfig->readColorEntry("listBGColor", m_qcolorTempListBG = tdeconfig->readColorEntry("listBGColor",
&qcolorDefaultBG); &qcolorDefaultBG);
m_kcolorbuttonBack->setColor(m_qcolorTempListBG); m_kcolorbuttonBack->setColor(m_qcolorTempListBG);
m_qfontTempHeader = kconfig->readFontEntry("listHeaderFont", m_qfontTempHeader = tdeconfig->readFontEntry("listHeaderFont",
&qfontDefault); &qfontDefault);
m_kfontchooserHeader->setFont(m_qfontTempHeader); m_kfontchooserHeader->setFont(m_qfontTempHeader);
m_qfontTempCell = kconfig->readFontEntry("listCellFont", &qfontDefault); m_qfontTempCell = tdeconfig->readFontEntry("listCellFont", &qfontDefault);
m_kfontchooserCell->setFont(m_qfontTempCell); m_kfontchooserCell->setFont(m_qfontTempCell);
m_qstringTempRowCount = kconfig->readEntry("RowCount", "2"); m_qstringTempRowCount = tdeconfig->readEntry("RowCount", "2");
m_klineeditRowCount->setText(m_qstringTempRowCount); m_klineeditRowCount->setText(m_qstringTempRowCount);
m_bTempShowGrid = kconfig->readBoolEntry("ShowGrid", true); m_bTempShowGrid = tdeconfig->readBoolEntry("ShowGrid", true);
m_qcheckboxShowGrid->setChecked(m_bTempShowGrid); m_qcheckboxShowGrid->setChecked(m_bTempShowGrid);
m_bTempColourPerTransaction = m_bTempColourPerTransaction =
kconfig->readBoolEntry("ColourPerTransaction", true); tdeconfig->readBoolEntry("ColourPerTransaction", true);
m_qradiobuttonPerTransaction->setChecked(m_bTempColourPerTransaction); m_qradiobuttonPerTransaction->setChecked(m_bTempColourPerTransaction);
m_qradiobuttonOtherRow->setChecked(!m_bTempColourPerTransaction); m_qradiobuttonOtherRow->setChecked(!m_bTempColourPerTransaction);
} }
@ -449,25 +449,25 @@ void KSettingsDlg::configRead()
**/ **/
void KSettingsDlg::configWrite() void KSettingsDlg::configWrite()
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Settings Dialog"); tdeconfig->setGroup("Settings Dialog");
kconfig->writeEntry("Geometry", this->size() ); tdeconfig->writeEntry("Geometry", this->size() );
kconfig->setGroup("List Options"); tdeconfig->setGroup("List Options");
kconfig->writeEntry("listColor", m_kcolorbuttonList->color()); tdeconfig->writeEntry("listColor", m_kcolorbuttonList->color());
kconfig->writeEntry("listBGColor", m_kcolorbuttonBack->color()); tdeconfig->writeEntry("listBGColor", m_kcolorbuttonBack->color());
kconfig->writeEntry("listHeaderFont", m_kfontchooserHeader->font()); tdeconfig->writeEntry("listHeaderFont", m_kfontchooserHeader->font());
kconfig->writeEntry("listCellFont", m_kfontchooserCell->font()); tdeconfig->writeEntry("listCellFont", m_kfontchooserCell->font());
kconfig->writeEntry("RowCount", m_klineeditRowCount->text()); tdeconfig->writeEntry("RowCount", m_klineeditRowCount->text());
kconfig->writeEntry("ShowGrid", m_qcheckboxShowGrid->isChecked()); tdeconfig->writeEntry("ShowGrid", m_qcheckboxShowGrid->isChecked());
kconfig->writeEntry("ColourPerTransaction", tdeconfig->writeEntry("ColourPerTransaction",
m_qradiobuttonPerTransaction->isChecked()); m_qradiobuttonPerTransaction->isChecked());
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
kconfig->writeEntry("StartDialog", tdeconfig->writeEntry("StartDialog",
m_qradiobuttonStartPrompt->isChecked()); m_qradiobuttonStartPrompt->isChecked());
kconfig->sync(); tdeconfig->sync();
} }
/** Called on OK being pressed */ /** Called on OK being pressed */
@ -505,20 +505,20 @@ and 3"));
void KSettingsDlg::slotCancel() void KSettingsDlg::slotCancel()
{ {
// make sure the config object is the same as we left it // make sure the config object is the same as we left it
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("List Options"); tdeconfig->setGroup("List Options");
kconfig->writeEntry("listColor", m_qcolorTempList); tdeconfig->writeEntry("listColor", m_qcolorTempList);
kconfig->writeEntry("listBGColor", m_qcolorTempListBG); tdeconfig->writeEntry("listBGColor", m_qcolorTempListBG);
kconfig->writeEntry("listHeaderFont", m_qfontTempHeader); tdeconfig->writeEntry("listHeaderFont", m_qfontTempHeader);
kconfig->writeEntry("listCellFont", m_qfontTempCell); tdeconfig->writeEntry("listCellFont", m_qfontTempCell);
kconfig->writeEntry("RowCount", m_qstringTempRowCount); tdeconfig->writeEntry("RowCount", m_qstringTempRowCount);
kconfig->writeEntry("ShowGrid", m_bTempShowGrid); tdeconfig->writeEntry("ShowGrid", m_bTempShowGrid);
kconfig->writeEntry("ColourPerTransaction", m_bTempColourPerTransaction); tdeconfig->writeEntry("ColourPerTransaction", m_bTempColourPerTransaction);
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
kconfig->writeEntry("StartDialog", m_bTempStartPrompt); tdeconfig->writeEntry("StartDialog", m_bTempStartPrompt);
kconfig->sync(); tdeconfig->sync();
if (m_bDoneApply) if (m_bDoneApply)
accept(); accept();

@ -33,7 +33,7 @@ email : mte@users.sourceforge.net
// KDE Includes // KDE Includes
#ifndef _GNCFILEANON #ifndef _GNCFILEANON
#include <klocale.h> #include <klocale.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#endif #endif

@ -25,7 +25,7 @@
// KDE Includes // KDE Includes
#include <kglobal.h> #include <kglobal.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <klocale.h> #include <klocale.h>
#include <kcalendarsystem.h> #include <kcalendarsystem.h>

@ -38,11 +38,11 @@
#include <klocale.h> #include <klocale.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kdebug.h> #include <kdebug.h>
#include <kprogress.h> #include <kprogress.h>
#include <kinputdialog.h> #include <kinputdialog.h>
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Headers // Project Headers

@ -36,7 +36,7 @@
#include <klocale.h> #include <klocale.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kdebug.h> #include <kdebug.h>
#include <kdialogbase.h> #include <kdialogbase.h>
#include <tqvbox.h> #include <tqvbox.h>

@ -29,7 +29,7 @@
#include <klocale.h> #include <klocale.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <ksavefile.h> #include <ksavefile.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -26,13 +26,13 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Headers // KDE Headers
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <kio/scheduler.h> #include <tdeio/scheduler.h>
#include <kurl.h> #include <kurl.h>
#include <klocale.h> #include <klocale.h>
#include <kdebug.h> #include <kdebug.h>
#include <kapplication.h> #include <kapplication.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kglobal.h> #include <kglobal.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kcalendarsystem.h> #include <kcalendarsystem.h>
@ -598,8 +598,8 @@ TQStringList WebPriceQuote::quoteSources (const _quoteSystemE _system) {
TQStringList WebPriceQuote::quoteSourcesNative() TQStringList WebPriceQuote::quoteSourcesNative()
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
TQStringList groups = kconfig->groupList(); TQStringList groups = tdeconfig->groupList();
TQStringList::Iterator it; TQStringList::Iterator it;
TQRegExp onlineQuoteSource(TQString("^Online-Quote-Source-(.*)$")); TQRegExp onlineQuoteSource(TQString("^Online-Quote-Source-(.*)$"));
@ -614,23 +614,23 @@ TQStringList WebPriceQuote::quoteSourcesNative()
// if the user has the OLD quote source defined, now is the // if the user has the OLD quote source defined, now is the
// time to remove that entry and convert it to the new system. // time to remove that entry and convert it to the new system.
if ( ! groups.count() && kconfig->hasGroup("Online Quotes Options") ) if ( ! groups.count() && tdeconfig->hasGroup("Online Quotes Options") )
{ {
kconfig->setGroup("Online Quotes Options"); tdeconfig->setGroup("Online Quotes Options");
TQString url(kconfig->readEntry("URL","http://finance.yahoo.com/d/quotes.csv?s=%1&f=sl1d1")); TQString url(tdeconfig->readEntry("URL","http://finance.yahoo.com/d/quotes.csv?s=%1&f=sl1d1"));
TQString symbolRegExp(kconfig->readEntry("SymbolRegex","\"([^,\"]*)\",.*")); TQString symbolRegExp(tdeconfig->readEntry("SymbolRegex","\"([^,\"]*)\",.*"));
TQString priceRegExp(kconfig->readEntry("PriceRegex","[^,]*,([^,]*),.*")); TQString priceRegExp(tdeconfig->readEntry("PriceRegex","[^,]*,([^,]*),.*"));
TQString dateRegExp(kconfig->readEntry("DateRegex","[^,]*,[^,]*,\"([^\"]*)\"")); TQString dateRegExp(tdeconfig->readEntry("DateRegex","[^,]*,[^,]*,\"([^\"]*)\""));
kconfig->deleteGroup("Online Quotes Options"); tdeconfig->deleteGroup("Online Quotes Options");
groups += "Old Source"; groups += "Old Source";
kconfig->setGroup(TQString("Online-Quote-Source-%1").arg("Old Source")); tdeconfig->setGroup(TQString("Online-Quote-Source-%1").arg("Old Source"));
kconfig->writeEntry("URL", url); tdeconfig->writeEntry("URL", url);
kconfig->writeEntry("SymbolRegex", symbolRegExp); tdeconfig->writeEntry("SymbolRegex", symbolRegExp);
kconfig->writeEntry("PriceRegex",priceRegExp); tdeconfig->writeEntry("PriceRegex",priceRegExp);
kconfig->writeEntry("DateRegex", dateRegExp); tdeconfig->writeEntry("DateRegex", dateRegExp);
kconfig->writeEntry("DateFormatRegex", "%m %d %y"); tdeconfig->writeEntry("DateFormatRegex", "%m %d %y");
kconfig->sync(); tdeconfig->sync();
} }
// Set up each of the default sources. These are done piecemeal so that // Set up each of the default sources. These are done piecemeal so that
@ -643,7 +643,7 @@ TQStringList WebPriceQuote::quoteSourcesNative()
{ {
groups += (*it_source).m_name; groups += (*it_source).m_name;
(*it_source).write(); (*it_source).write();
kconfig->sync(); tdeconfig->sync();
} }
++it_source; ++it_source;
} }
@ -683,29 +683,29 @@ WebPriceQuoteSource::WebPriceQuoteSource(const TQString& name, const TQString& u
WebPriceQuoteSource::WebPriceQuoteSource(const TQString& name) WebPriceQuoteSource::WebPriceQuoteSource(const TQString& name)
{ {
m_name = name; m_name = name;
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup(TQString("Online-Quote-Source-%1").arg(m_name)); tdeconfig->setGroup(TQString("Online-Quote-Source-%1").arg(m_name));
m_sym = kconfig->readEntry("SymbolRegex"); m_sym = tdeconfig->readEntry("SymbolRegex");
m_date = kconfig->readEntry("DateRegex"); m_date = tdeconfig->readEntry("DateRegex");
m_dateformat = kconfig->readEntry("DateFormatRegex","%m %d %y"); m_dateformat = tdeconfig->readEntry("DateFormatRegex","%m %d %y");
m_price = kconfig->readEntry("PriceRegex"); m_price = tdeconfig->readEntry("PriceRegex");
m_url = kconfig->readEntry("URL"); m_url = tdeconfig->readEntry("URL");
m_skipStripping = kconfig->readBoolEntry("SkipStripping", false); m_skipStripping = tdeconfig->readBoolEntry("SkipStripping", false);
} }
void WebPriceQuoteSource::write(void) const void WebPriceQuoteSource::write(void) const
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup(TQString("Online-Quote-Source-%1").arg(m_name)); tdeconfig->setGroup(TQString("Online-Quote-Source-%1").arg(m_name));
kconfig->writeEntry("URL", m_url); tdeconfig->writeEntry("URL", m_url);
kconfig->writeEntry("PriceRegex", m_price); tdeconfig->writeEntry("PriceRegex", m_price);
kconfig->writeEntry("DateRegex", m_date); tdeconfig->writeEntry("DateRegex", m_date);
kconfig->writeEntry("DateFormatRegex", m_dateformat); tdeconfig->writeEntry("DateFormatRegex", m_dateformat);
kconfig->writeEntry("SymbolRegex", m_sym); tdeconfig->writeEntry("SymbolRegex", m_sym);
if(m_skipStripping) if(m_skipStripping)
kconfig->writeEntry("SkipStripping", m_skipStripping); tdeconfig->writeEntry("SkipStripping", m_skipStripping);
else else
kconfig->deleteEntry("SkipStripping"); tdeconfig->deleteEntry("SkipStripping");
} }
void WebPriceQuoteSource::rename(const TQString& name) void WebPriceQuoteSource::rename(const TQString& name)
@ -717,8 +717,8 @@ void WebPriceQuoteSource::rename(const TQString& name)
void WebPriceQuoteSource::remove(void) const void WebPriceQuoteSource::remove(void) const
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->deleteGroup(TQString("Online-Quote-Source-%1").arg(m_name)); tdeconfig->deleteGroup(TQString("Online-Quote-Source-%1").arg(m_name));
} }
// //

@ -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 kconfirmmanualenterdlg.cpp kaccountselectdlgdecl.ui kbackupdlgdecl.ui kchooseimportexportdlgdecl.ui kconfirmmanualenterdlgdecl.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 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 \
knewbudgetdlgdecl.ui knewbudgetdlg.cpp kselecttransactionsdlgdecl.ui kselecttransactionsdlg.cpp kmergetransactionsdlg.cpp ksortoptiondlg.ui kloadtemplatedlgdecl.ui kloadtemplatedlg.cpp kmymoneysplittable.cpp knewbudgetdlgdecl.ui knewbudgetdlg.cpp kselecttransactionsdlgdecl.ui kselecttransactionsdlg.cpp kmergetransactionsdlg.cpp ksortoptiondlg.ui kloadtemplatedlgdecl.ui kloadtemplatedlg.cpp kmymoneysplittable.cpp
EXTRA_DIST = kaccountselectdlgdecl.ui kbackupdlgdecl.ui kchooseimportexportdlgdecl.ui kconfirmmanualenterdlgdecl.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 kselectdatabasedlgdecl.ui kpayeereassigndlgdecl.ui kcategoryreassigndlgdecl.ui knewbudgetdlgdecl.ui kselecttransactionsdlgdecl.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 kconfirmmanualenterdlgdecl.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 kconfirmmanualenterdlgdecl.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 kselectdatabasedlgdecl.h kpayeereassigndlgdecl.h kcategoryreassigndlgdecl.h knewbudgetdlgdecl.cpp knewbudgetdlgdecl.h kselecttransactionsdlgdecl.cpp kselecttransactionsdlgdecl.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 kconfirmmanualenterdlg.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 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
instdir=$(includedir)/kmymoney instdir=$(includedir)/kmymoney
inst_HEADERS = transactioneditor.h investtransactioneditor.h kcurrencycalculator.h inst_HEADERS = transactioneditor.h investtransactioneditor.h kcurrencycalculator.h

@ -29,7 +29,7 @@
// KDE Includes // KDE Includes
#include <klocale.h> #include <klocale.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kglobal.h> #include <kglobal.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kmessagebox.h> #include <kmessagebox.h>

@ -32,7 +32,7 @@
#include <klocale.h> #include <klocale.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kdirselectdialog.h> #include <kdirselectdialog.h>
#include <kglobalsettings.h> #include <kglobalsettings.h>
#include <kpushbutton.h> #include <kpushbutton.h>

@ -28,7 +28,7 @@
#include <tqpushbutton.h> #include <tqpushbutton.h>
#include <kglobal.h> #include <kglobal.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <klocale.h> #include <klocale.h>
#include "kchooseimportexportdlg.h" #include "kchooseimportexportdlg.h"

@ -34,11 +34,11 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kconfig.h> #include <tdeconfig.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes
@ -214,11 +214,11 @@ void KCsvProgressDlg::slotFileTextChanged(const TQString& text)
void KCsvProgressDlg::readConfig(void) void KCsvProgressDlg::readConfig(void)
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Last Use Settings"); tdeconfig->setGroup("Last Use Settings");
m_kmymoneydateStart->setDate(kconfig->readDateTimeEntry("KCsvProgressDlg_StartDate").date()); m_kmymoneydateStart->setDate(tdeconfig->readDateTimeEntry("KCsvProgressDlg_StartDate").date());
m_kmymoneydateEnd->setDate(kconfig->readDateTimeEntry("KCsvProgressDlg_EndDate").date()); m_kmymoneydateEnd->setDate(tdeconfig->readDateTimeEntry("KCsvProgressDlg_EndDate").date());
m_qlineeditFile->setText(kconfig->readEntry("KCsvProgressDlg_LastFile", "")); m_qlineeditFile->setText(tdeconfig->readEntry("KCsvProgressDlg_LastFile", ""));
if (m_qlineeditFile->text().length()>=1) if (m_qlineeditFile->text().length()>=1)
m_qbuttonRun->setEnabled(true); m_qbuttonRun->setEnabled(true);
else else
@ -227,12 +227,12 @@ void KCsvProgressDlg::readConfig(void)
void KCsvProgressDlg::writeConfig(void) void KCsvProgressDlg::writeConfig(void)
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Last Use Settings"); tdeconfig->setGroup("Last Use Settings");
kconfig->writeEntry("KCsvProgressDlg_LastFile", m_qlineeditFile->text()); tdeconfig->writeEntry("KCsvProgressDlg_LastFile", m_qlineeditFile->text());
kconfig->writeEntry("KCsvProgressDlg_StartDate", TQDateTime(m_kmymoneydateStart->date())); tdeconfig->writeEntry("KCsvProgressDlg_StartDate", TQDateTime(m_kmymoneydateStart->date()));
kconfig->writeEntry("KCsvProgressDlg_EndDate", TQDateTime(m_kmymoneydateEnd->date())); tdeconfig->writeEntry("KCsvProgressDlg_EndDate", TQDateTime(m_kmymoneydateEnd->date()));
kconfig->sync(); tdeconfig->sync();
} }
/** Update the progress bar, and update the transaction count indicator. */ /** Update the progress bar, and update the transaction count indicator. */

@ -43,7 +43,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <kprogress.h> #include <kprogress.h>
#include <kglobal.h> #include <kglobal.h>
#include <kconfig.h> #include <tdeconfig.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -31,7 +31,7 @@
#include <klocale.h> #include <klocale.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kiconloader.h> #include <kiconloader.h>
@ -156,28 +156,28 @@ void KExportDlg::slotOkClicked()
void KExportDlg::readConfig(void) void KExportDlg::readConfig(void)
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Last Use Settings"); tdeconfig->setGroup("Last Use Settings");
m_qlineeditFile->setText(kconfig->readEntry("KExportDlg_LastFile")); m_qlineeditFile->setText(tdeconfig->readEntry("KExportDlg_LastFile"));
m_qcheckboxAccount->setChecked(kconfig->readBoolEntry("KExportDlg_AccountOpt", true)); m_qcheckboxAccount->setChecked(tdeconfig->readBoolEntry("KExportDlg_AccountOpt", true));
m_qcheckboxCategories->setChecked(kconfig->readBoolEntry("KExportDlg_CatOpt", true)); m_qcheckboxCategories->setChecked(tdeconfig->readBoolEntry("KExportDlg_CatOpt", true));
m_kmymoneydateStart->setDate(kconfig->readDateTimeEntry("KExportDlg_StartDate").date()); m_kmymoneydateStart->setDate(tdeconfig->readDateTimeEntry("KExportDlg_StartDate").date());
m_kmymoneydateEnd->setDate(kconfig->readDateTimeEntry("KExportDlg_EndDate").date()); m_kmymoneydateEnd->setDate(tdeconfig->readDateTimeEntry("KExportDlg_EndDate").date());
// m_profileComboBox is loaded in loadProfiles(), so we don't worry here // m_profileComboBox is loaded in loadProfiles(), so we don't worry here
// m_accountComboBox is loaded in loadAccounts(), so we don't worry here // m_accountComboBox is loaded in loadAccounts(), so we don't worry here
} }
void KExportDlg::writeConfig(void) void KExportDlg::writeConfig(void)
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Last Use Settings"); tdeconfig->setGroup("Last Use Settings");
kconfig->writeEntry("KExportDlg_LastFile", m_qlineeditFile->text()); tdeconfig->writeEntry("KExportDlg_LastFile", m_qlineeditFile->text());
kconfig->writeEntry("KExportDlg_AccountOpt", m_qcheckboxAccount->isChecked()); tdeconfig->writeEntry("KExportDlg_AccountOpt", m_qcheckboxAccount->isChecked());
kconfig->writeEntry("KExportDlg_CatOpt", m_qcheckboxCategories->isChecked()); tdeconfig->writeEntry("KExportDlg_CatOpt", m_qcheckboxCategories->isChecked());
kconfig->writeEntry("KExportDlg_StartDate", TQDateTime(m_kmymoneydateStart->date())); tdeconfig->writeEntry("KExportDlg_StartDate", TQDateTime(m_kmymoneydateStart->date()));
kconfig->writeEntry("KExportDlg_EndDate", TQDateTime(m_kmymoneydateEnd->date())); tdeconfig->writeEntry("KExportDlg_EndDate", TQDateTime(m_kmymoneydateEnd->date()));
kconfig->writeEntry("KExportDlg_LastProfile", m_profileComboBox->currentText()); tdeconfig->writeEntry("KExportDlg_LastProfile", m_profileComboBox->currentText());
kconfig->sync(); tdeconfig->sync();
} }
void KExportDlg::checkData(const TQString& accountId) void KExportDlg::checkData(const TQString& accountId)

@ -36,11 +36,11 @@
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kcombobox.h> #include <kcombobox.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <klocale.h> #include <klocale.h>
#include <kglobal.h> #include <kglobal.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@ -130,18 +130,18 @@ void KImportDlg::slotOkClicked()
void KImportDlg::readConfig(void) void KImportDlg::readConfig(void)
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Last Use Settings"); tdeconfig->setGroup("Last Use Settings");
m_qlineeditFile->setText(kconfig->readEntry("KImportDlg_LastFile")); m_qlineeditFile->setText(tdeconfig->readEntry("KImportDlg_LastFile"));
} }
void KImportDlg::writeConfig(void) void KImportDlg::writeConfig(void)
{ {
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("Last Use Settings"); tdeconfig->setGroup("Last Use Settings");
kconfig->writeEntry("KImportDlg_LastFile", m_qlineeditFile->text()); tdeconfig->writeEntry("KImportDlg_LastFile", m_qlineeditFile->text());
kconfig->writeEntry("KImportDlg_LastProfile", m_profileComboBox->currentText()); tdeconfig->writeEntry("KImportDlg_LastProfile", m_profileComboBox->currentText());
kconfig->sync(); tdeconfig->sync();
} }
/** Make sure the text input is ok */ /** Make sure the text input is ok */

@ -36,7 +36,7 @@
// KDE Includes // KDE Includes
#include <kglobal.h> #include <kglobal.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <klocale.h> #include <klocale.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kpushbutton.h> #include <kpushbutton.h>

@ -34,13 +34,13 @@
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kglobalsettings.h> #include <kglobalsettings.h>
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kurl.h> #include <kurl.h>
#include <kurlrequester.h> #include <kurlrequester.h>
#include <kfile.h> #include <tdefile.h>
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <kmessagebox.h> #include <kmessagebox.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -30,7 +30,7 @@
#include "kdecompat.h" #include "kdecompat.h"
#include <klocale.h> #include <klocale.h>
#include <kglobal.h> #include <kglobal.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <klineedit.h> #include <klineedit.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kcombobox.h> #include <kcombobox.h>

@ -24,7 +24,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kconfig.h> #include <tdeconfig.h>
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <klistview.h>

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
kconfirmmanualenterdlg.cpp tdeconfirmmanualenterdlg.cpp
------------------- -------------------
begin : Mon Apr 9 2007 begin : Mon Apr 9 2007
copyright : (C) 2007 by Thomas Baumgart copyright : (C) 2007 by Thomas Baumgart
@ -34,7 +34,7 @@
#include <kmymoney/mymoneyfile.h> #include <kmymoney/mymoneyfile.h>
#include <kmymoney/kmymoneyutils.h> #include <kmymoney/kmymoneyutils.h>
#include "kconfirmmanualenterdlg.h" #include "tdeconfirmmanualenterdlg.h"
KConfirmManualEnterDlg::KConfirmManualEnterDlg(const MyMoneySchedule& schedule, TQWidget* parent, const char* name) : KConfirmManualEnterDlg::KConfirmManualEnterDlg(const MyMoneySchedule& schedule, TQWidget* parent, const char* name) :
KConfirmManualEnterDlgDecl(parent, name) KConfirmManualEnterDlgDecl(parent, name)
@ -199,4 +199,4 @@ KConfirmManualEnterDlg::Action KConfirmManualEnterDlg::action(void) const
return ModifyOnce; return ModifyOnce;
} }
#include "kconfirmmanualenterdlg.moc" #include "tdeconfirmmanualenterdlg.moc"

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
kconfirmmanualenterdlg.h tdeconfirmmanualenterdlg.h
------------------- -------------------
begin : Mon Apr 9 2007 begin : Mon Apr 9 2007
copyright : (C) 2007 by Thomas Baumgart copyright : (C) 2007 by Thomas Baumgart
@ -31,7 +31,7 @@
// Project Includes // Project Includes
#include <kmymoney/mymoneytransaction.h> #include <kmymoney/mymoneytransaction.h>
#include "../dialogs/kconfirmmanualenterdlgdecl.h" #include "../dialogs/tdeconfirmmanualenterdlgdecl.h"
class KConfirmManualEnterDlg : public KConfirmManualEnterDlgDecl class KConfirmManualEnterDlg : public KConfirmManualEnterDlgDecl
{ {

@ -51,10 +51,10 @@
#include <kshortcut.h> #include <kshortcut.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kmenubar.h> #include <kmenubar.h>
#include <klocale.h> #include <klocale.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kstdaction.h> #include <kstdaction.h>
#include <kglobal.h> #include <kglobal.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
@ -62,12 +62,12 @@
#include <ktip.h> #include <ktip.h>
#include <kkeydialog.h> #include <kkeydialog.h>
#include <kprogress.h> #include <kprogress.h>
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <dcopclient.h> #include <dcopclient.h>
#include <kstartupinfo.h> #include <kstartupinfo.h>
#include <tdeparts/componentfactory.h> #include <tdeparts/componentfactory.h>
#include <krun.h> #include <krun.h>
#include <kconfigdialog.h> #include <tdeconfigdialog.h>
#include <kinputdialog.h> #include <kinputdialog.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@ -93,7 +93,7 @@
#include "dialogs/kimportdlg.h" #include "dialogs/kimportdlg.h"
#include "dialogs/mymoneyqifprofileeditor.h" #include "dialogs/mymoneyqifprofileeditor.h"
#include "dialogs/kenterscheduledlg.h" #include "dialogs/kenterscheduledlg.h"
#include "dialogs/kconfirmmanualenterdlg.h" #include "dialogs/tdeconfirmmanualenterdlg.h"
#include "dialogs/kmymoneypricedlg.h" #include "dialogs/kmymoneypricedlg.h"
#include "dialogs/kcurrencyeditdlg.h" #include "dialogs/kcurrencyeditdlg.h"
#include "dialogs/kequitypriceupdatedlg.h" #include "dialogs/kequitypriceupdatedlg.h"
@ -2408,10 +2408,10 @@ void KMyMoney2App::slotCategoryNew(MyMoneyAccount& account, const MyMoneyAccount
} else { } else {
// we should not keep the 'no' setting because that can confuse people like // we should not keep the 'no' setting because that can confuse people like
// I have seen in some usability tests. So we just delete it right away. // I have seen in some usability tests. So we just delete it right away.
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
if(kconfig) { if(tdeconfig) {
kconfig->setGroup(TQString::fromLatin1("Notification Messages")); tdeconfig->setGroup(TQString::fromLatin1("Notification Messages"));
kconfig->deleteEntry(TQString::fromLatin1("CreateNewCategories")); tdeconfig->deleteEntry(TQString::fromLatin1("CreateNewCategories"));
} }
} }
} }
@ -2582,10 +2582,10 @@ void KMyMoney2App::slotInvestmentDelete(void)
} else { } else {
// we should not keep the 'no' setting because that can confuse people like // we should not keep the 'no' setting because that can confuse people like
// I have seen in some usability tests. So we just delete it right away. // I have seen in some usability tests. So we just delete it right away.
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
if(kconfig) { if(tdeconfig) {
kconfig->setGroup(TQString::fromLatin1("Notification Messages")); tdeconfig->setGroup(TQString::fromLatin1("Notification Messages"));
kconfig->deleteEntry(TQString::fromLatin1("DeleteInvestment")); tdeconfig->deleteEntry(TQString::fromLatin1("DeleteInvestment"));
} }
} }
} }
@ -3777,10 +3777,10 @@ void KMyMoney2App::slotPayeeNew(const TQString& newnameBase, TQString& id)
doit = false; doit = false;
// we should not keep the 'no' setting because that can confuse people like // we should not keep the 'no' setting because that can confuse people like
// I have seen in some usability tests. So we just delete it right away. // I have seen in some usability tests. So we just delete it right away.
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
if(kconfig) { if(tdeconfig) {
kconfig->setGroup(TQString::fromLatin1("Notification Messages")); tdeconfig->setGroup(TQString::fromLatin1("Notification Messages"));
kconfig->deleteEntry(dontAskAgain); tdeconfig->deleteEntry(dontAskAgain);
} }
} }
} }
@ -4263,7 +4263,7 @@ void KMyMoney2App::slotKDELanguageSettings(void)
TQString error; TQString error;
int pid; int pid;
TDEApplication::tdeinitExec("kcmshell", args, &error, &pid); TDEApplication::tdeinitExec("tdecmshell", args, &error, &pid);
} }
void KMyMoney2App::slotNewFeature(void) void KMyMoney2App::slotNewFeature(void)
@ -5751,28 +5751,28 @@ void KMyMoney2App::slotCheckSchedules(void)
void KMyMoney2App::writeLastUsedDir(const TQString& directory) void KMyMoney2App::writeLastUsedDir(const TQString& directory)
{ {
//get global config object for our app. //get global config object for our app.
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
if(kconfig) if(tdeconfig)
{ {
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
//write path entry, no error handling since its void. //write path entry, no error handling since its void.
kconfig->writePathEntry("LastUsedDirectory", directory); tdeconfig->writePathEntry("LastUsedDirectory", directory);
} }
} }
void KMyMoney2App::writeLastUsedFile(const TQString& fileName) void KMyMoney2App::writeLastUsedFile(const TQString& fileName)
{ {
//get global config object for our app. //get global config object for our app.
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
if(kconfig) if(tdeconfig)
{ {
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
// write path entry, no error handling since its void. // write path entry, no error handling since its void.
// use a standard string, as fileName could contain a protocol // use a standard string, as fileName could contain a protocol
// e.g. file:/home/thb/.... // e.g. file:/home/thb/....
kconfig->writeEntry("LastUsedFile", fileName); tdeconfig->writeEntry("LastUsedFile", fileName);
} }
} }
@ -5781,13 +5781,13 @@ TQString KMyMoney2App::readLastUsedDir(void) const
TQString str; TQString str;
//get global config object for our app. //get global config object for our app.
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
if(kconfig) if(tdeconfig)
{ {
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
//read path entry. Second parameter is the default if the setting is not found, which will be the default document path. //read path entry. Second parameter is the default if the setting is not found, which will be the default document path.
str = kconfig->readPathEntry("LastUsedDirectory", TDEGlobalSettings::documentPath()); str = tdeconfig->readPathEntry("LastUsedDirectory", TDEGlobalSettings::documentPath());
// if the path stored is empty, we use the default nevertheless // if the path stored is empty, we use the default nevertheless
if(str.isEmpty()) if(str.isEmpty())
str = TDEGlobalSettings::documentPath(); str = TDEGlobalSettings::documentPath();
@ -5801,13 +5801,13 @@ TQString KMyMoney2App::readLastUsedFile(void) const
TQString str; TQString str;
// get global config object for our app. // get global config object for our app.
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
if(kconfig) if(tdeconfig)
{ {
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
// read filename entry. // read filename entry.
str = kconfig->readEntry("LastUsedFile", ""); str = tdeconfig->readEntry("LastUsedFile", "");
} }
return str; return str;

@ -36,7 +36,7 @@ class TQLabel;
#include <kaction.h> #include <kaction.h>
#include <kprocess.h> #include <kprocess.h>
#include <kurl.h> #include <kurl.h>
#include <kfile.h> #include <tdefile.h>
#include <dcopobject.h> #include <dcopobject.h>
class KComboBox; class KComboBox;
class KPushButton; class KPushButton;

@ -30,7 +30,7 @@
#include <kglobal.h> #include <kglobal.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

@ -31,7 +31,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kfile.h> #include <tdefile.h>
#include <kurl.h> #include <kurl.h>
class KPopupMenu; class KPopupMenu;

@ -28,7 +28,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kfile.h> #include <tdefile.h>
#include <kurl.h> #include <kurl.h>
class KMyMoney2App; class KMyMoney2App;

@ -31,8 +31,8 @@
// KDE Includes // KDE Includes
#include <kurl.h> #include <kurl.h>
#include <kio/job.h> #include <tdeio/job.h>
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kdebug.h> #include <kdebug.h>
#include <ktempfile.h> #include <ktempfile.h>
#include <kprogress.h> #include <kprogress.h>

@ -29,7 +29,7 @@
#include <kgenericfactory.h> #include <kgenericfactory.h>
#include <kdebug.h> #include <kdebug.h>
#include <kfile.h> #include <tdefile.h>
#include <kurl.h> #include <kurl.h>
#include <kaction.h> #include <kaction.h>
#include <kmessagebox.h> #include <kmessagebox.h>

@ -39,7 +39,7 @@
// KDE Includes // KDE Includes
#include <kio/job.h> #include <tdeio/job.h>
#include <klocale.h> #include <klocale.h>
#include <kmessagebox.h> #include <kmessagebox.h>

@ -29,7 +29,7 @@
#include <tdeparts/componentfactory.h> #include <tdeparts/componentfactory.h>
#include <kdebug.h> #include <kdebug.h>
#include <kdialog.h> #include <kdialog.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kpluginselector.h> #include <kpluginselector.h>
#include <klocale.h> #include <klocale.h>

@ -36,7 +36,7 @@
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kiconloader.h> #include <kiconloader.h>

@ -41,7 +41,7 @@
#include <klocale.h> #include <klocale.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <tdehtmlview.h> #include <tdehtmlview.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kstdaction.h> #include <kstdaction.h>
#include <kmainwindow.h> #include <kmainwindow.h>
#include <kactioncollection.h> #include <kactioncollection.h>

@ -42,7 +42,7 @@
#include "kdecompat.h" #include "kdecompat.h"
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kglobal.h> #include <kglobal.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kicontheme.h> #include <kicontheme.h>
@ -50,12 +50,12 @@
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kurl.h> #include <kurl.h>
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <ktempfile.h> #include <ktempfile.h>
#include <ksavefile.h> #include <ksavefile.h>
#include <kfilterdev.h> #include <kfilterdev.h>
#include <kfilterbase.h> #include <kfilterbase.h>
#include <kfileitem.h> #include <tdefileitem.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <kapplication.h> #include <kapplication.h>
#include <kdebug.h> #include <kdebug.h>

@ -54,9 +54,9 @@
#include <klocale.h> #include <klocale.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <tdehtmlview.h> #include <tdehtmlview.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kdebug.h> #include <kdebug.h>
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <klistview.h> #include <klistview.h>
#include <kmessagebox.h> #include <kmessagebox.h>

@ -29,7 +29,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kconfig.h> #include <tdeconfig.h>
#include <klocale.h> #include <klocale.h>
#include <kglobal.h> #include <kglobal.h>
#include <kglobalsettings.h> #include <kglobalsettings.h>

@ -35,7 +35,7 @@
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kpopupmenu.h> #include <kpopupmenu.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kmessagebox.h> #include <kmessagebox.h>

@ -29,7 +29,7 @@
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <klistview.h>
#include <kdebug.h> #include <kdebug.h>
#include <kconfig.h> #include <tdeconfig.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes

@ -32,7 +32,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <klineedit.h> #include <klineedit.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kconfig.h> #include <tdeconfig.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Project Includes // Project Includes
@ -235,9 +235,9 @@ void kMyMoneyEdit::init(void)
m_resetButton->setEnabled(false); m_resetButton->setEnabled(false);
m_resetButton->setFocusProxy(m_edit); m_resetButton->setFocusProxy(m_edit);
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
if(kconfig->readBoolEntry("DontShowCalculatorButton", false) == true) if(tdeconfig->readBoolEntry("DontShowCalculatorButton", false) == true)
setCalculatorButtonVisible(false); setCalculatorButtonVisible(false);
setSpacing(0); setSpacing(0);

@ -24,7 +24,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kconfig.h> #include <tdeconfig.h>
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <klineedit.h> #include <klineedit.h>

@ -23,7 +23,7 @@
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// KDE Includes // KDE Includes
#include <kconfig.h> #include <tdeconfig.h>
#include <kglobal.h> #include <kglobal.h>
#include <klocale.h> #include <klocale.h>
#include <klistview.h> #include <klistview.h>

@ -36,7 +36,7 @@
#include <kglobal.h> #include <kglobal.h>
#include <klistview.h> #include <klistview.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kmessagebox.h> #include <kmessagebox.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@ -66,9 +66,9 @@ KMyMoneyPriceItem::KMyMoneyPriceItem(KListView *view, const MyMoneyPrice& pr) :
m_pr(pr) m_pr(pr)
{ {
MyMoneySecurity from, to; MyMoneySecurity from, to;
TDEConfig *kconfig = TDEGlobal::config(); TDEConfig *tdeconfig = TDEGlobal::config();
kconfig->setGroup("General Options"); tdeconfig->setGroup("General Options");
int prec = kconfig->readNumEntry("PricePrecision", 4); int prec = tdeconfig->readNumEntry("PricePrecision", 4);
if(!m_pr.isValid()) if(!m_pr.isValid())
m_pr = MyMoneyFile::instance()->price(m_pr.from(), m_pr.to(), m_pr.date()); m_pr = MyMoneyFile::instance()->price(m_pr.from(), m_pr.to(), m_pr.date());

@ -5,11 +5,11 @@ INCLUDES = $(all_includes) -I../wizardpages -I$(top_srcdir) -I.
libnewuserwizard_a_METASOURCES = AUTO libnewuserwizard_a_METASOURCES = AUTO
libnewuserwizard_a_SOURCES = knewuserwizard.cpp kgeneralpagedecl.ui kcurrencypagedecl.ui kpasswordpagedecl.ui kaccountpagedecl.ui kpreferencepagedecl.ui kfilepagedecl.ui kintropagedecl.ui libnewuserwizard_a_SOURCES = knewuserwizard.cpp kgeneralpagedecl.ui kcurrencypagedecl.ui kpasswordpagedecl.ui kaccountpagedecl.ui kpreferencepagedecl.ui tdefilepagedecl.ui kintropagedecl.ui
EXTRA_DIST = kgeneralpagedecl.ui kcurrencypagedecl.ui kpasswordpagedecl.ui kaccountpagedecl.ui kpreferencepagedecl.ui kfilepagedecl.ui kintropagedecl.ui EXTRA_DIST = kgeneralpagedecl.ui kcurrencypagedecl.ui kpasswordpagedecl.ui kaccountpagedecl.ui kpreferencepagedecl.ui tdefilepagedecl.ui kintropagedecl.ui
DISTCLEANFILES= kgeneralpagedecl.cpp kgeneralpagedecl.h kcurrencypagedecl.cpp kcurrencypagedecl.h kpasswordpagedecl.cpp kpasswordpagedecl.h kaccountpagedecl.cpp kaccountpagedecl.h kpreferencepagedecl.cpp kpreferencepagedecl.h kfilepagedecl.cpp kfilepagedecl.h kintropagedecl.cpp kintropagedecl.h DISTCLEANFILES= kgeneralpagedecl.cpp kgeneralpagedecl.h kcurrencypagedecl.cpp kcurrencypagedecl.h kpasswordpagedecl.cpp kpasswordpagedecl.h kaccountpagedecl.cpp kaccountpagedecl.h kpreferencepagedecl.cpp kpreferencepagedecl.h tdefilepagedecl.cpp tdefilepagedecl.h kintropagedecl.cpp kintropagedecl.h
noinst_HEADERS = knewuserwizard.h knewuserwizard_p.h noinst_HEADERS = knewuserwizard.h knewuserwizard_p.h

@ -37,7 +37,7 @@
#include <ktextedit.h> #include <ktextedit.h>
#include <kuser.h> #include <kuser.h>
#include <kurlrequester.h> #include <kurlrequester.h>
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <kurl.h> #include <kurl.h>
#include <kabc/addressee.h> #include <kabc/addressee.h>
#include <kabc/stdaddressbook.h> #include <kabc/stdaddressbook.h>

@ -29,7 +29,7 @@
#include "kintropagedecl.h" #include "kintropagedecl.h"
#include "kaccountpagedecl.h" #include "kaccountpagedecl.h"
#include "kpreferencepagedecl.h" #include "kpreferencepagedecl.h"
#include "kfilepagedecl.h" #include "tdefilepagedecl.h"
#include "../wizardpages/userinfo.h" #include "../wizardpages/userinfo.h"
#include "../wizardpages/currency.h" #include "../wizardpages/currency.h"

@ -5506,8 +5506,8 @@ msgstr ""
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8499,56 +8499,56 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
"El compte actual i el de destí són el mateix. Si us plau canvieu-ne un." "El compte actual i el de destí són el mateix. Si us plau canvieu-ne un."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "S'ha canviat el compte. Antic: \"%1\", Nou: \"%2\"" msgstr "S'ha canviat el compte. Antic: \"%1\", Nou: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
#, fuzzy #, fuzzy
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "S'ha canviat el compte de transferència. Antic: \"%1\", Nou: \"%2\"" msgstr "S'ha canviat el compte de transferència. Antic: \"%1\", Nou: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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: "

@ -5589,8 +5589,8 @@ msgstr "Platba pro %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Splátka půjčky %1" msgstr "Splátka půjčky %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8461,26 +8461,26 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Zdrojový i cílový účet je stejný. Prosím změňte alespoň jeden." msgstr "Zdrojový i cílový účet je stejný. Prosím změňte alespoň jeden."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Změněn plátce/příjemce.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: " "Změněn plátce/příjemce.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: "
"<b>%2</b><p>" "<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Změněn účet. Původní: \"%1\", Nový: \"%2\"" msgstr "Změněn účet. Původní: \"%1\", Nový: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Změněn účet.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: <b>%2</b><p>" msgstr "Změněn účet.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8488,31 +8488,31 @@ msgstr ""
"Změněn účet pro převod.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: " "Změněn účet pro převod.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: "
"<b>%2</b><p>" "<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Změněna kategorie.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nová: <b>" "Změněna kategorie.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nová: <b>"
"%2</b>" "%2</b>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "prázdný" msgstr "prázdný"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Změněna poznámka.<br/>&nbsp;&nbsp;&nbsp;Povodní: <b>%1</b>, Nová: <b>" "Změněna poznámka.<br/>&nbsp;&nbsp;&nbsp;Povodní: <b>%1</b>, Nová: <b>"
"%2</b><p>" "%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Změněna částka.<br/>&nbsp;&nbsp;&nbsp;Původní hodnota: <b>%1</b>, Nová " "Změněna částka.<br/>&nbsp;&nbsp;&nbsp;Původní hodnota: <b>%1</b>, Nová "
"hodnota: <b>%2</b>" "hodnota: <b>%2</b>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8520,7 +8520,7 @@ msgstr ""
"Změněn příznak schválení.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: " "Změněn příznak schválení.<br/>&nbsp;&nbsp;&nbsp;Původní: <b>%1</b>, Nový: "
"<b>%2</b>" "<b>%2</b>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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: "

@ -5504,8 +5504,8 @@ msgstr "Betaling til %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8452,55 +8452,55 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Kan ikke skrive ændringer til '%1'" msgstr "Kan ikke skrive ændringer til '%1'"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Konto og overførselskonto er den samme. Du skal derfor ændre én." msgstr "Konto og overførselskonto er den samme. Du skal derfor ændre én."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Konto ændret. Gammel: \"%1\", Ny: \"%2\"" msgstr "Konto ændret. Gammel: \"%1\", Ny: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
#, fuzzy #, fuzzy
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "Overførselskonto ændret. Gammel: \"%1\", Ny: \"%2\"" msgstr "Overførselskonto ændret. Gammel: \"%1\", Ny: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "" msgstr ""

@ -5711,8 +5711,8 @@ msgstr "Zahlung an %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Kreditzahlung von %1" msgstr "Kreditzahlung von %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8642,51 +8642,51 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Kann nicht alle Split-Buchungen zuordnen (%1)" msgstr "Kann nicht alle Split-Buchungen zuordnen (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
"Konto und Buchungskonto sind identisch. Bitte ändern Sie die Auswahl für " "Konto und Buchungskonto sind identisch. Bitte ändern Sie die Auswahl für "
"eines der beiden Konten." "eines der beiden Konten."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Zahlungsempfänger geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</" "Zahlungsempfänger geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Konto geändert. Alt: \"%1\", Neu: \"%2\"" msgstr "Konto geändert. Alt: \"%1\", Neu: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Konto geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>" msgstr "Konto geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "Gegenkonto geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>" msgstr "Gegenkonto geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Kategorie geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>" msgstr "Kategorie geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "leer" msgstr "leer"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Notiz geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>" msgstr "Notiz geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Betrag geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>" msgstr "Betrag geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8694,7 +8694,7 @@ msgstr ""
"Abgleichstatus geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</" "Abgleichstatus geändert.<br>&nbsp;&nbsp;&nbsp;Alt: <b>%1</b>, Neu: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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: "

@ -5580,8 +5580,8 @@ msgstr "Payment to %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Loan payment from %1" msgstr "Loan payment from %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 #: dialogs/tdeconfirmmanualenterdlg.cpp:133
#: views/kpayeesview.cpp:745 #: views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 #: widgets/kmymoneycategory.cpp:160
#: widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:166
@ -8453,49 +8453,49 @@ msgstr "Both of these transactions have been imported into %1. Therefore they c
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Unable to match all splits (%1)" msgstr "Unable to match all splits (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Account and transfer account are the same. Please change one." msgstr "Account and transfer account are the same. Please change one."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgstr "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Account changed. Old: \"%1\", New: \"%2\"" msgstr "Account changed. Old: \"%1\", New: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgstr "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgstr "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgstr "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "empty" msgstr "empty"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgstr "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgstr "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgstr "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Fatal error in determining data: " msgstr "Fatal error in determining data: "

@ -5692,8 +5692,8 @@ msgstr "Pago de %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Pagar préstamo con %1" msgstr "Pagar préstamo con %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8629,28 +8629,28 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "No fue posible hacer coinicidir todas las partidas (%1)" msgstr "No fue posible hacer coinicidir todas las partidas (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Las cuentas deudora y transferida son la misma. Por favor, cambie una." msgstr "Las cuentas deudora y transferida son la misma. Por favor, cambie una."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Beneficiario cambiado.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nuevo: <b>%" "Beneficiario cambiado.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nuevo: <b>%"
"2</b><p>" "2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Cuenta cambiada. Anterior: \"%1\", Nueva: \"%2\"" msgstr "Cuenta cambiada. Anterior: \"%1\", Nueva: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Cuenta cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nueva: <b>%2</" "Cuenta cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nueva: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8658,30 +8658,30 @@ msgstr ""
"Cuenta de transferencia cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: \"%1\", " "Cuenta de transferencia cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: \"%1\", "
"Nueva: \"%2\"" "Nueva: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Categoría cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nueva: <b>%2</" "Categoría cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nueva: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "vacío" msgstr "vacío"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Nota cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nueva: <b>%2</b><p>" "Nota cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nueva: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Importe cambiado.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nuevo: <b>%2</" "Importe cambiado.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nuevo: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8689,7 +8689,7 @@ msgstr ""
"Bandera de reconciliación cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</" "Bandera de reconciliación cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</"
"b>, Nueva: <b>%2</b><p>" "b>, Nueva: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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:"

@ -5706,8 +5706,8 @@ msgstr "Pago de %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Pagar préstamo con %1" msgstr "Pagar préstamo con %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8647,28 +8647,28 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Imposible conciliar todas las partidas (%1)" msgstr "Imposible conciliar todas las partidas (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Las cuentas deudora y transferida son la misma. Por favor, cambie una." msgstr "Las cuentas deudora y transferida son la misma. Por favor, cambie una."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Beneficiario modificado.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nuevo:<b>%" "Beneficiario modificado.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nuevo:<b>%"
"2</b><p>" "2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Cuenta modificada. Anterior: \"%1\", Nueva: \"%2\"" msgstr "Cuenta modificada. Anterior: \"%1\", Nueva: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Cuenta modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nueva:<b>%2</" "Cuenta modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nueva:<b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8676,30 +8676,30 @@ msgstr ""
"Cuenta de transferencia modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, " "Cuenta de transferencia modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, "
"Nueva:<b>%2</b><p>" "Nueva:<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Categoría modificado.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nueva:<b>%2</" "Categoría modificado.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nueva:<b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "vacío" msgstr "vacío"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Nota modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nueva:<b>%2</b><p>" "Nota modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nueva:<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Importe modificado.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nuevo:<b>%2</" "Importe modificado.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</b>, Nuevo:<b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8707,7 +8707,7 @@ msgstr ""
"Bandera de reconciliación modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</" "Bandera de reconciliación modificada.<br>&nbsp;&nbsp;&nbsp;Anterior:<b>%1</"
"b>, Nueva:<b>%2</b><p>" "b>, Nueva:<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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:"

@ -5613,8 +5613,8 @@ msgstr "Maksu %1:lle"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Lainan maksu %1:ltä" msgstr "Lainan maksu %1:ltä"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8524,26 +8524,26 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Ei voitu täsmätä kaikkia jaotteluja (%1)" msgstr "Ei voitu täsmätä kaikkia jaotteluja (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Kohdetili ja siirtotili ovat samoja. Vaihda toinen." msgstr "Kohdetili ja siirtotili ovat samoja. Vaihda toinen."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Maksunsaaja muutettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</" "Maksunsaaja muutettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Tili muutettu. Vanha \"%1\", uusi: \"%2\"" msgstr "Tili muutettu. Vanha \"%1\", uusi: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Tili muutettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, Uusi: <b>%2</b><p>" msgstr "Tili muutettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, Uusi: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8551,28 +8551,28 @@ msgstr ""
"Siirtotili vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</" "Siirtotili vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Kategoria vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</" "Kategoria vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "tyhjä" msgstr "tyhjä"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Muistiinpano vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</" "Muistiinpano vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Summa vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</b><p>" msgstr "Summa vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8580,7 +8580,7 @@ msgstr ""
"Yhteensovitustila vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>" "Yhteensovitustila vaihdettu.<br>&nbsp;&nbsp;&nbsp;Vanha: <b>%1</b>, uusi: <b>"
"%2</b><p>" "%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Vakava virhe tietojen määrityksessä: " msgstr "Vakava virhe tietojen määrityksessä: "

@ -5791,8 +5791,8 @@ msgstr "Paiement à %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Versement de prêt à partir de %1" msgstr "Versement de prêt à partir de %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8756,29 +8756,29 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Impossible de faire correspondre toutes les répartitions (%1)" msgstr "Impossible de faire correspondre toutes les répartitions (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
"Le compte et le compte de transfert sont identiques. Veuillez en changer un." "Le compte et le compte de transfert sont identiques. Veuillez en changer un."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Le tiers a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</" "Le tiers a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Le compte a changé. Ancien : \"%1\", Nouveau : \"%2\"" msgstr "Le compte a changé. Ancien : \"%1\", Nouveau : \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Le compte a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</" "Le compte a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8786,31 +8786,31 @@ msgstr ""
"Le compte de transfert a changé. <br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, " "Le compte de transfert a changé. <br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, "
"Nouveau: <b>%2</b><p>" "Nouveau: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"La catégorie a changée.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%" "La catégorie a changée.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%"
"2</b><p>" "2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "vide" msgstr "vide"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Le numéro a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</" "Le numéro a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Le montant a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</" "Le montant a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, Nouveau: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8818,7 +8818,7 @@ msgstr ""
"L'état du rapprochement a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, " "L'état du rapprochement a changé.<br>&nbsp;&nbsp;&nbsp;Ancien: <b>%1</b>, "
"Nouveau: <b>%2</b><p>" "Nouveau: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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 : "

@ -5673,8 +5673,8 @@ msgstr "Pagamento de %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Pagar empréstito con %1" msgstr "Pagar empréstito con %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8595,28 +8595,28 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Non foi posíbel emparellar todas as partidas (%1)" msgstr "Non foi posíbel emparellar todas as partidas (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
"A conta orixe e a conta a transferir son a mesma. Por favor, cambie unha." "A conta orixe e a conta a transferir son a mesma. Por favor, cambie unha."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Mudou o beneficiario<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</" "Mudou o beneficiario<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Conta cambiada. Anterior: «%1», Nova: «%2»" msgstr "Conta cambiada. Anterior: «%1», Nova: «%2»"
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Cambiou a conta.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nova: <b>%2</b><p>" "Cambiou a conta.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Nova: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8624,30 +8624,30 @@ msgstr ""
"Conta de transferencia cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, " "Conta de transferencia cambiada.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, "
"Nova: <b>%2</b><p>" "Nova: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Mudou a categoría.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</" "Mudou a categoría.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "vacío" msgstr "vacío"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Mudou o concepto.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</" "Mudou o concepto.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Mudou o importe.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</b><p>" "Mudou o importe.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, Novo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8655,7 +8655,7 @@ msgstr ""
"Mudou a marca de conciliación.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, " "Mudou a marca de conciliación.<br>&nbsp;&nbsp;&nbsp;Anterior: <b>%1</b>, "
"Novo: <b>%2</b><p>" "Novo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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: "

@ -5584,8 +5584,8 @@ msgstr "Pagamento a %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Pagamento del prestito da %1" msgstr "Pagamento del prestito da %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 #: dialogs/tdeconfirmmanualenterdlg.cpp:133
#: views/kpayeesview.cpp:745 #: views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 #: widgets/kmymoneycategory.cpp:160
#: widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:166
@ -8467,49 +8467,49 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Impossibile verificare tutte le suddivisioni (%1)" msgstr "Impossibile verificare tutte le suddivisioni (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Il conto di origine e il conto di destinazione coincidono. Cambiane uno." msgstr "Il conto di origine e il conto di destinazione coincidono. Cambiane uno."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Beneficiario cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>" msgstr "Beneficiario cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Conto cambiato. Vecchio: \"%1\", nuovo: \"%2\"" msgstr "Conto cambiato. Vecchio: \"%1\", nuovo: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Conto cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>" msgstr "Conto cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Conto di trasferimento cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>" msgstr "Conto di trasferimento cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Categoria cambiata.<br>&nbsp;&nbsp;&nbsp;Vecchia: <b>%1</b>, Nuova: <b>%2</b><p>" msgstr "Categoria cambiata.<br>&nbsp;&nbsp;&nbsp;Vecchia: <b>%1</b>, Nuova: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "vuoto" msgstr "vuoto"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Promemoria modificato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>" msgstr "Promemoria modificato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Importo cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>" msgstr "Importo cambiato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Contrassegno di riconciliazione modificato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>" msgstr "Contrassegno di riconciliazione modificato.<br>&nbsp;&nbsp;&nbsp;Vecchio: <b>%1</b>, Nuovo: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Errore nell'identificazione dei dati" msgstr "Errore nell'identificazione dei dati"

@ -5153,8 +5153,8 @@ msgstr ""
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -7948,54 +7948,54 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: " "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: "
"<b>%2</b><p>" "<b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: " "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: "
"<b>%2</b><p>" "<b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "" msgstr ""

@ -5425,8 +5425,8 @@ msgstr ""
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8370,56 +8370,56 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
"Sąskaita sutampa su sąskaita, į kurią perkeliama. Prašome vieną jų pakeisti." "Sąskaita sutampa su sąskaita, į kurią perkeliama. Prašome vieną jų pakeisti."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Sąskaita pakeista. Senoji: „%1“, Naujoji: „%2“" msgstr "Sąskaita pakeista. Senoji: „%1“, Naujoji: „%2“"
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
#, fuzzy #, fuzzy
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "Perkėlimo sąskaita pakeista. Senoji: „%1“, Naujoji: „%2“" msgstr "Perkėlimo sąskaita pakeista. Senoji: „%1“, Naujoji: „%2“"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Rimta klaida nustatant duomenis: " msgstr "Rimta klaida nustatant duomenis: "

@ -5697,8 +5697,8 @@ msgstr "Betaling aan %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Lening betaling van %1" msgstr "Lening betaling van %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8646,28 +8646,28 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Kan niet alle splitsingen vergelijken (%1)" msgstr "Kan niet alle splitsingen vergelijken (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Rekening en tegenrekening zijn hetzelfde. Verander één van beide." msgstr "Rekening en tegenrekening zijn hetzelfde. Verander één van beide."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Relatie is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</" "Relatie is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Rekening veranderd. Oud: \"%1\", Nieuw: \"%2\"" msgstr "Rekening veranderd. Oud: \"%1\", Nieuw: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Rekening is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</" "Rekening is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8675,29 +8675,29 @@ msgstr ""
"Tegenrekening veranderd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</" "Tegenrekening veranderd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Rubriek is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</" "Rubriek is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "leeg" msgstr "leeg"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Memo is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</b><p>" "Memo is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Bedrag is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</b><p>" "Bedrag is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8705,7 +8705,7 @@ msgstr ""
"Status veld is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</" "Status veld is gewijzigd.<br>&nbsp;&nbsp;&nbsp;Oud: <b>%1</b>, Nieuw: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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: "

@ -5788,8 +5788,8 @@ msgstr "Płatność na %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Spłata pożyczki z %1" msgstr "Spłata pożyczki z %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8867,55 +8867,55 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Nie można zaznaczyć podziału" msgstr "Nie można zaznaczyć podziału"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Konto i konto docelowe są takie same. Proszę zmienić jedno z nich." msgstr "Konto i konto docelowe są takie same. Proszę zmienić jedno z nich."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Zmiana konta. Stare :\"%1\", nowe: \"%2\"" msgstr "Zmiana konta. Stare :\"%1\", nowe: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
#, fuzzy #, fuzzy
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "Zmiana konta docelowego. Stare: \"%1\", nowe: \"%2\"" msgstr "Zmiana konta docelowego. Stare: \"%1\", nowe: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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: "

@ -5688,8 +5688,8 @@ msgstr "Pagamento para %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Pagamento de financiamento de %1" msgstr "Pagamento de financiamento de %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8635,27 +8635,27 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Não foi possível corresponder todas as parcelas (%1)" msgstr "Não foi possível corresponder todas as parcelas (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Contas de origem e destino são iguais. Por favor, mude uma delas." msgstr "Contas de origem e destino são iguais. Por favor, mude uma delas."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Beneficiário modificado.<br>&nbsp;&nbsp;&nbsp; Antes<b>%1</b>, Depois: <b>%" "Beneficiário modificado.<br>&nbsp;&nbsp;&nbsp; Antes<b>%1</b>, Depois: <b>%"
"2</b><p>" "2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Conta modificada. Antiga: \"%1\", Nova: \"%2\"" msgstr "Conta modificada. Antiga: \"%1\", Nova: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Conta modificada<br>&nbsp;&nbsp;&nbsp; Antiga: <b>%1</b> Nova: <b>%2</b><p>" "Conta modificada<br>&nbsp;&nbsp;&nbsp; Antiga: <b>%1</b> Nova: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8663,28 +8663,28 @@ msgstr ""
"Conta de transferência modificada.<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, " "Conta de transferência modificada.<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, "
"Depois:<b>%2</b><p>" "Depois:<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Categoria modificada<br>&nbsp;&nbsp;&nbsp;Antiga <b>%1</b>; Nova<b>%2</b><p>" "Categoria modificada<br>&nbsp;&nbsp;&nbsp;Antiga <b>%1</b>; Nova<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "empty" msgstr "empty"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Memo modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b> Depois: <b>%2</b><p>" "Memo modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b> Depois: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Valor modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, Depois: <b>%2</b><p>" "Valor modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, Depois: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8692,7 +8692,7 @@ msgstr ""
"A marca de reconciliação mudou.<br>&nbsp;&nbsp;&nbsp;Antes: <b>%1</b>, " "A marca de reconciliação mudou.<br>&nbsp;&nbsp;&nbsp;Antes: <b>%1</b>, "
"Depois: <b>%2</b><p>" "Depois: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Erro fatal determinando dados: " msgstr "Erro fatal determinando dados: "

@ -5701,8 +5701,8 @@ msgstr "Pagamento para %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Pagamento de financiamento de %1" msgstr "Pagamento de financiamento de %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8636,26 +8636,26 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Não foi possível corresponder todas as parcelas (%1)" msgstr "Não foi possível corresponder todas as parcelas (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Contas origem e destino são iguais. Por favor, mude uma delas." msgstr "Contas origem e destino são iguais. Por favor, mude uma delas."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Beneficiário modificado.<br>&nbsp;&nbsp;&nbsp; Antes<b>%1</b>, Depois: <b>%" "Beneficiário modificado.<br>&nbsp;&nbsp;&nbsp; Antes<b>%1</b>, Depois: <b>%"
"2</b><p>" "2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Conta modificada. Antiga: \"%1\", Nova: \"%2\"" msgstr "Conta modificada. Antiga: \"%1\", Nova: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Conta modificada<br>&nbsp;&nbsp;&nbsp; Antiga: <b>%1</b> Nova: <b>%2</b><p>" msgstr "Conta modificada<br>&nbsp;&nbsp;&nbsp; Antiga: <b>%1</b> Nova: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8663,24 +8663,24 @@ msgstr ""
"Conta de transferência modificada.<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, " "Conta de transferência modificada.<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, "
"Depois:<b>%2</b><p>" "Depois:<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Categoria modificada<br>&nbsp;&nbsp;&nbsp;Antiga <b>%1</b>; Nova<b>%2</b><p>" msgstr "Categoria modificada<br>&nbsp;&nbsp;&nbsp;Antiga <b>%1</b>; Nova<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "vazio" msgstr "vazio"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Memo modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b> Depois: <b>%2</b><p>" msgstr "Memo modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b> Depois: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Valor modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, Depois: <b>%2</b><p>" msgstr "Valor modificado<br>&nbsp;&nbsp;&nbsp; Antes: <b>%1</b>, Depois: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8688,7 +8688,7 @@ msgstr ""
"Marca de reconciliação modificada.<br>&nbsp;&nbsp;&nbsp;Antes: <b>%1</b>, " "Marca de reconciliação modificada.<br>&nbsp;&nbsp;&nbsp;Antes: <b>%1</b>, "
"Depois: <b>%2</b><p>" "Depois: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Erro fatal determinando dados: " msgstr "Erro fatal determinando dados: "

@ -5741,8 +5741,8 @@ msgstr "Plată la %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Plata împrumutului de la %1" msgstr "Plata împrumutului de la %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8688,30 +8688,30 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Nu s-au putut asocia niciuna dintre părţi (%1)" msgstr "Nu s-au putut asocia niciuna dintre părţi (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
"Contul destinaţie şi contul sursă al transferului coincid. Vă rog să " "Contul destinaţie şi contul sursă al transferului coincid. Vă rog să "
"schimbaţi unul dintre ele." "schimbaţi unul dintre ele."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Beneficiarul a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul beneficiar: <b>%" "Beneficiarul a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul beneficiar: <b>%"
"1</b> Noul beneficiar: <b>%2</b><p>" "1</b> Noul beneficiar: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Contul a fost schimbat. Vechiul cont: \"%1\", Noul cont: \"%2\"s" msgstr "Contul a fost schimbat. Vechiul cont: \"%1\", Noul cont: \"%2\"s"
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Contul a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul cont: <b>%1</b> Noul " "Contul a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul cont: <b>%1</b> Noul "
"cont: <b>%2</b><p>" "cont: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8719,31 +8719,31 @@ msgstr ""
"Contul de transfer a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul cont: <b>%" "Contul de transfer a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul cont: <b>%"
"1</b> Noul cont: <b>%2</b><p>" "1</b> Noul cont: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Categoria a fost schimbată.<br>&nbsp;&nbsp;&nbsp;Vechia categorie: <b>%1</b> " "Categoria a fost schimbată.<br>&nbsp;&nbsp;&nbsp;Vechia categorie: <b>%1</b> "
"Noua categorie: <b>%2</b><p>" "Noua categorie: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "gol" msgstr "gol"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Detaliile au fost schimbate.<br>&nbsp;&nbsp;&nbsp;Vechiul detaliu: <b>%1</b> " "Detaliile au fost schimbate.<br>&nbsp;&nbsp;&nbsp;Vechiul detaliu: <b>%1</b> "
"Noul detaliu: <b>%2</b><p>" "Noul detaliu: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Suma a fost schimbată.<br>&nbsp;&nbsp;&nbsp;Vechia sumă: <b>%1</b> Noua " "Suma a fost schimbată.<br>&nbsp;&nbsp;&nbsp;Vechia sumă: <b>%1</b> Noua "
"sumă: <b>%2</b><p>" "sumă: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8751,7 +8751,7 @@ msgstr ""
"Indicatorul de reconciliere a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul " "Indicatorul de reconciliere a fost schimbat.<br>&nbsp;&nbsp;&nbsp;Vechiul "
"indicator: <b>%1</b> Noul indicator: <b>%2</b><p>" "indicator: <b>%1</b> Noul indicator: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Eroare fatală la determinarea datelor: " msgstr "Eroare fatală la determinarea datelor: "

@ -5613,8 +5613,8 @@ msgstr "Выплата %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Выплата по кредиту с %1" msgstr "Выплата по кредиту с %1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8511,54 +8511,54 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "Невозможно привязать все разделённые операции (%1)" msgstr "Невозможно привязать все разделённые операции (%1)"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
"Для зачисления и списания указан один и тот же счёт. Укажите другой счёт." "Для зачисления и списания указан один и тот же счёт. Укажите другой счёт."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Изменен получатель.<br>&nbsp;&nbsp;&nbsp;С<b>%1</b> изменен на <b>%2</b><p>" "Изменен получатель.<br>&nbsp;&nbsp;&nbsp;С<b>%1</b> изменен на <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Изменён счёт списания. «%1» изменён на «%2»" msgstr "Изменён счёт списания. «%1» изменён на «%2»"
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "Изменен счет.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменен на <b>%2</b><p>" msgstr "Изменен счет.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменен на <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "" msgstr ""
"Изменен счет перевода.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменен на <b>%2</b><p>" "Изменен счет перевода.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменен на <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Изменена статья.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменена на <b>%2</b><p>" "Изменена статья.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменена на <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "пусто" msgstr "пусто"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Изменён комментарий.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменен на <b>%2</b><p>" "Изменён комментарий.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменен на <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Изменена сумма.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменена на <b>%2</b><p>" "Изменена сумма.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменена на <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8566,7 +8566,7 @@ msgstr ""
"Изменено состояние сверки.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменено на <b>%2</" "Изменено состояние сверки.<br>&nbsp;&nbsp;&nbsp;<b>%1</b> изменено на <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "Ошибка обработки данных: " msgstr "Ошибка обработки данных: "

@ -5706,8 +5706,8 @@ msgstr "Platba do %1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "Pôžička z 1" msgstr "Pôžička z 1"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8749,55 +8749,55 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "do" msgstr "do"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Oba účty sú totožné. Prosím zmeňte jeden z nich." msgstr "Oba účty sú totožné. Prosím zmeňte jeden z nich."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Zmena účtu. Starý: \"%1\", Nový: \"%2\"" msgstr "Zmena účtu. Starý: \"%1\", Nový: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
#, fuzzy #, fuzzy
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "Zmena prevodu učtu. Starý: \"%1\", Nový: \"%2\"" msgstr "Zmena prevodu učtu. Starý: \"%1\", Nový: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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:"

@ -5361,8 +5361,8 @@ msgstr ""
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8228,27 +8228,27 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "Till- och frånkonto är detsamma. Vänligen ändra en av dem." msgstr "Till- och frånkonto är detsamma. Vänligen ändra en av dem."
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Betalningsmottagare ändrad.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%" "Betalningsmottagare ändrad.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%"
"2</b><p>" "2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Konto ändrat. Gammalt: \"%1\", Nytt: \"%2\"" msgstr "Konto ändrat. Gammalt: \"%1\", Nytt: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Konto ändrat.<br>&nbsp;&nbsp;&nbsp;Gammalt: <b>%1</b>, Nytt: <b>%2</b><p>" "Konto ändrat.<br>&nbsp;&nbsp;&nbsp;Gammalt: <b>%1</b>, Nytt: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8256,28 +8256,28 @@ msgstr ""
"Konto för överföring ändrat.<br>&nbsp;&nbsp;&nbsp;Gammalt: <b>%1</b>, Nytt: " "Konto för överföring ändrat.<br>&nbsp;&nbsp;&nbsp;Gammalt: <b>%1</b>, Nytt: "
"<b>%2</b><p>" "<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Kategori bytt.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%2</b><p>" "Kategori bytt.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "tom" msgstr "tom"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Anteckning ändrad.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%2</b><p>" "Anteckning ändrad.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Belopp ändrat.<br>&nbsp;&nbsp;&nbsp;Gammalt: <b>%1</b>, Nytt: <b>%2</b><p>" "Belopp ändrat.<br>&nbsp;&nbsp;&nbsp;Gammalt: <b>%1</b>, Nytt: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8285,7 +8285,7 @@ msgstr ""
"Avstämningsflagga ändrad.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%2</" "Avstämningsflagga ändrad.<br>&nbsp;&nbsp;&nbsp;Gammal: <b>%1</b>, Ny: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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: "

@ -5295,8 +5295,8 @@ msgstr ""
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8181,26 +8181,26 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "" msgstr ""
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Ödeme değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</b><p>" "Ödeme değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "Hesap değiştirildi. Eski: \"%1\", Yeni: \"%2\"" msgstr "Hesap değiştirildi. Eski: \"%1\", Yeni: \"%2\""
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Hesap değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</b><p>" "Hesap değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
@ -8208,30 +8208,30 @@ msgstr ""
"Aktarım hesabı değiştirildi. <br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>" "Aktarım hesabı değiştirildi. <br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>"
"%2</b><p>" "%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Kategori değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</" "Kategori değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "boş" msgstr "boş"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Hatırlatma değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</" "Hatırlatma değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</"
"b><p>" "b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"Toplam değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</b><p>" "Toplam değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
@ -8239,7 +8239,7 @@ msgstr ""
"Uzlaştırma bayrağı değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: " "Uzlaştırma bayrağı değiştirildi.<br>&nbsp;&nbsp;&nbsp;Eski: <b>%1</b>, Yeni: "
"<b>%2</b><p>" "<b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
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:"

@ -5521,8 +5521,8 @@ msgstr "支付给%1"
msgid "Loan payment from %1" msgid "Loan payment from %1"
msgstr "来自%1的贷款支付" msgstr "来自%1的贷款支付"
#: dialogs/kconfirmmanualenterdlg.cpp:123 #: dialogs/tdeconfirmmanualenterdlg.cpp:123
#: dialogs/kconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745 #: dialogs/tdeconfirmmanualenterdlg.cpp:133 views/kpayeesview.cpp:745
#: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166 #: widgets/kmymoneycategory.cpp:160 widgets/kmymoneycategory.cpp:166
#: widgets/transaction.cpp:851 widgets/transaction.cpp:1397 #: widgets/transaction.cpp:851 widgets/transaction.cpp:1397
#: widgets/transaction.cpp:1411 #: widgets/transaction.cpp:1411
@ -8427,57 +8427,57 @@ msgstr ""
msgid "Unable to match all splits (%1)" msgid "Unable to match all splits (%1)"
msgstr "无法匹配全部拆分(%1" msgstr "无法匹配全部拆分(%1"
#: dialogs/kconfirmmanualenterdlg.cpp:65 #: dialogs/tdeconfirmmanualenterdlg.cpp:65
msgid "Account and transfer account are the same. Please change one." msgid "Account and transfer account are the same. Please change one."
msgstr "账户和转账账户相同。请修改其中之一。" msgstr "账户和转账账户相同。请修改其中之一。"
#: dialogs/kconfirmmanualenterdlg.cpp:84 #: dialogs/tdeconfirmmanualenterdlg.cpp:84
msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "" msgstr ""
"付款人有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>" "付款人有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:92 #: dialogs/tdeconfirmmanualenterdlg.cpp:92
#: dialogs/kconfirmmanualenterdlg.cpp:100 #: dialogs/tdeconfirmmanualenterdlg.cpp:100
msgid "Account changed. Old: \"%1\", New: \"%2\"" msgid "Account changed. Old: \"%1\", New: \"%2\""
msgstr "账户已从“%1”改为“%2”" msgstr "账户已从“%1”改为“%2”"
#: dialogs/kconfirmmanualenterdlg.cpp:107 #: dialogs/tdeconfirmmanualenterdlg.cpp:107
msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "账户有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>" msgstr "账户有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:115 #: dialogs/tdeconfirmmanualenterdlg.cpp:115
msgid "" msgid ""
"Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</" "Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</"
"b><p>" "b><p>"
msgstr "" msgstr ""
"转账账户有变化.<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>" "转账账户有变化.<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:143 #: dialogs/tdeconfirmmanualenterdlg.cpp:143
msgid "" msgid ""
"Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" "Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "类别有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>" msgstr "类别有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:151 #: dialogs/tdeconfirmmanualenterdlg.cpp:151
#: dialogs/kconfirmmanualenterdlg.cpp:153 #: dialogs/tdeconfirmmanualenterdlg.cpp:153
msgid "empty" msgid "empty"
msgstr "空的" msgstr "空的"
#: dialogs/kconfirmmanualenterdlg.cpp:157 #: dialogs/tdeconfirmmanualenterdlg.cpp:157
msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "备忘有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>" msgstr "备忘有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:166 #: dialogs/tdeconfirmmanualenterdlg.cpp:166
msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>" msgid "Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>"
msgstr "金额有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>" msgstr "金额有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:175 #: dialogs/tdeconfirmmanualenterdlg.cpp:175
msgid "" msgid ""
"Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%" "Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%"
"2</b><p>" "2</b><p>"
msgstr "" msgstr ""
"对帐标志有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>" "对帐标志有变化。<br>&nbsp;&nbsp;&nbsp;原为: <b>%1</b>, 现为: <b>%2</b><p>"
#: dialogs/kconfirmmanualenterdlg.cpp:182 #: dialogs/tdeconfirmmanualenterdlg.cpp:182
msgid "Fatal error in determining data: " msgid "Fatal error in determining data: "
msgstr "在确定数据时发生致命错误。" msgstr "在确定数据时发生致命错误。"

Loading…
Cancel
Save