newKAction(i18n("Map to online account"),"news_subscribe",0,TQT_TQOBJECT(this),TQT_SLOT(slotAccountMapOnline()),actionCollection(),"account_online_map");
if(KMessageBox::questionYesNo(this,TQString("<qt>")+i18n("You have entered a scheduled transaction date of <b>%1</b>. Because the scheduled transaction was last paid on <b>%2</b>, KMyMoney will automatically adjust the scheduled transaction date to the next date unless the last payment date is reset. Do you want to reset the last payment date?").arg(KGlobal::locale()->formatDate(next,true)).arg(KGlobal::locale()->formatDate(last,true))+TQString("</qt>"),i18n("Reset Last Payment Date"),KStdGuiItem::yes(),KStdGuiItem::no())==KMessageBox::Yes){
if(KMessageBox::questionYesNo(this,TQString("<qt>")+i18n("You have entered a scheduled transaction date of <b>%1</b>. Because the scheduled transaction was last paid on <b>%2</b>, KMyMoney will automatically adjust the scheduled transaction date to the next date unless the last payment date is reset. Do you want to reset the last payment date?").arg(TDEGlobal::locale()->formatDate(next,true)).arg(TDEGlobal::locale()->formatDate(last,true))+TQString("</qt>"),i18n("Reset Last Payment Date"),KStdGuiItem::yes(),KStdGuiItem::no())==KMessageBox::Yes){
if(!schedule.isFinished()&&(KMessageBox::questionYesNo(this,TQString("<qt>")+i18n("Do you really want to skip the <b>%1</b> transaction scheduled for <b>%2</b>?").arg(schedule.name(),KGlobal::locale()->formatDate(next,true))+TQString("</qt>")))==KMessageBox::Yes){
if(!schedule.isFinished()&&(KMessageBox::questionYesNo(this,TQString("<qt>")+i18n("Do you really want to skip the <b>%1</b> transaction scheduled for <b>%2</b>?").arg(schedule.name(),TDEGlobal::locale()->formatDate(next,true))+TQString("</qt>")))==KMessageBox::Yes){
KMessageBox::error(0,i18n("The monetary decimal symbol is not correctly set in the TDE Control Center's Country/Region & Language settings. Please set it to a reasonable value and start KMyMoney again."),i18n("Invalid settings"));
deletea;
exit(1);
@ -145,16 +145,16 @@ int main(int argc, char *argv[])
args=TDECmdLineArgs::parsedArgs();
// setup the MyMoneyMoney locale settings according to the KDE settings
tqWarning("Unable to select language '%s'. This has one of two reasons:\n\ta) the standard TDE message catalogue is not installed\n\tb) the KMyMoney message catalogue is not installed",language.data());
result+=i18n("Report date range","%1 through %2").arg(KGlobal::locale()->formatDate(m_config.fromDate(),true)).arg(KGlobal::locale()->formatDate(m_config.toDate(),true));
result+=i18n("Report date range","%1 through %2").arg(TDEGlobal::locale()->formatDate(m_config.fromDate(),true)).arg(TDEGlobal::locale()->formatDate(m_config.toDate(),true));
csv+=i18n("Report date range","%1 through %2").arg(KGlobal::locale()->formatDate(m_config.fromDate(),true)).arg(KGlobal::locale()->formatDate(m_config.toDate(),true));
csv+=i18n("Report date range","%1 through %2").arg(TDEGlobal::locale()->formatDate(m_config.fromDate(),true)).arg(TDEGlobal::locale()->formatDate(m_config.toDate(),true));
csv+=TQString("\n");
}
@ -514,9 +514,9 @@ namespace reports {
csv+="\""+data+"\",";
// if we have a locale() then use its date formatter
result+=i18n("Report date range","%1 through %2").arg(KGlobal::locale()->formatDate(m_config_f.fromDate(),true)).arg(KGlobal::locale()->formatDate(m_config_f.toDate(),true));
result+=i18n("Report date range","%1 through %2").arg(TDEGlobal::locale()->formatDate(m_config_f.fromDate(),true)).arg(TDEGlobal::locale()->formatDate(m_config_f.toDate(),true));
TQStringheader=TQString("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\">\n<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"%1\">\n").arg(filename);