@ -496,7 +496,7 @@ given for you to guess on.</para>
<para>Jim Breen <email>jwb@csse.monash.edu.au</email> - Wrote xjdic, of which &kiten; borrows code, and the xjdic index file generator. Also is main author of edict and kanjidic, which &kiten; essentially require.</para>
</listitem>
<listitem>
<para>Paul Temple <email>paul.temple@gmx.net</email> - Port to KConfig XT and bug fixing.</para>
<para>Paul Temple <email>paul.temple@gmx.net</email> - Port to TDEConfig XT and bug fixing.</para>
aboutData.addCredit("Jim Breen",I18N_NOOP("Wrote xjdic, of which Kiten borrows code, and the xjdic index file generator.\nAlso is main author of edict and kanjidic, which Kiten essentially require."),"jwb@csse.monash.edu.au");
if(!KIO::NetAccess::exists(url,false,m_parent)||KMessageBox::warningContinueCancel(m_parent,i18n("A file named \"%1\" already exists. Are you sure you want to continue and overwrite this file?").arg(url.url()),i18n("Overwrite File?"),KGuiItem(i18n("&Overwrite")))==KMessageBox::Continue)
if(!TDEIO::NetAccess::exists(url,false,m_parent)||KMessageBox::warningContinueCancel(m_parent,i18n("A file named \"%1\" already exists. Are you sure you want to continue and overwrite this file?").arg(url.url()),i18n("Overwrite File?"),KGuiItem(i18n("&Overwrite")))==KMessageBox::Continue)
{
if(!kmplotio->save(url))
KMessageBox::error(m_parent,i18n("The file could not be saved"));
@ -293,7 +293,7 @@ void MainDlg::slotExport()
if(!url.isEmpty())
{
// check if file exists and overwriting is ok.
if(KIO::NetAccess::exists(url,false,m_parent)&&KMessageBox::warningContinueCancel(m_parent,i18n("A file named \"%1\" already exists. Are you sure you want to continue and overwrite this file?").arg(url.url()),i18n("Overwrite File?"),KGuiItem(i18n("&Overwrite")))!=KMessageBox::Continue)return;
if(TDEIO::NetAccess::exists(url,false,m_parent)&&KMessageBox::warningContinueCancel(m_parent,i18n("A file named \"%1\" already exists. Are you sure you want to continue and overwrite this file?").arg(url.url()),i18n("Overwrite File?"),KGuiItem(i18n("&Overwrite")))!=KMessageBox::Continue)return;
if(url.fileName().right(4).lower()==".svg")
{
@ -305,7 +305,7 @@ void MainDlg::slotExport()
{
KTempFiletmp;
pic.save(tmp.name(),"SVG");
if(!KIO::NetAccess::upload(tmp.name(),url,0))
if(!TDEIO::NetAccess::upload(tmp.name(),url,0))
KMessageBox::error(m_parent,i18n("The URL could not be saved."));
tmp.unlink();
}
@ -321,7 +321,7 @@ void MainDlg::slotExport()
{
KTempFiletmp;
pic.save(tmp.name(),"BMP");
if(!KIO::NetAccess::upload(tmp.name(),url,0))
if(!TDEIO::NetAccess::upload(tmp.name(),url,0))
KMessageBox::error(m_parent,i18n("The URL could not be saved."));
tmp.unlink();
}
@ -337,7 +337,7 @@ void MainDlg::slotExport()
{
KTempFiletmp;
pic.save(tmp.name(),"PNG");
if(!KIO::NetAccess::upload(tmp.name(),url,0))
if(!TDEIO::NetAccess::upload(tmp.name(),url,0))
KMessageBox::error(m_parent,i18n("The URL could not be saved."));
if(KMessageBox::warningContinueCancel(this,i18n("Line %1 is not a valid parameter value and will therefore not be included. Do you want to continue?").arg(i))==KMessageBox::Cancel)
{
file.close();
KIO::NetAccess::removeTempFile(tmpfile);
TDEIO::NetAccess::removeTempFile(tmpfile);
return;
}
elseif(KMessageBox::warningYesNo(this,i18n("Would you like to be informed about other lines that cannot be read?"),TQString(),i18n("Get Informed"),i18n("Ignore Information"))==KMessageBox::No)
if(!KIO::NetAccess::exists(url,false,this)||KMessageBox::warningContinueCancel(this,i18n("A file named \"%1\" already exists. Are you sure you want to continue and overwrite this file?").arg(url.url()),i18n("Overwrite File?"),KGuiItem(i18n("&Overwrite")))==KMessageBox::Continue)
if(!TDEIO::NetAccess::exists(url,false,this)||KMessageBox::warningContinueCancel(this,i18n("A file named \"%1\" already exists. Are you sure you want to continue and overwrite this file?").arg(url.url()),i18n("Overwrite File?"),KGuiItem(i18n("&Overwrite")))==KMessageBox::Continue)
@ -221,7 +221,7 @@ cies: That is a good plan! I have tux allready in my sprites dir (I'm a fan too
- About the language: when user is set to fr (not fr_FR but fr like me being in Canada), the parsing does not work because Settings::LogoLanguage() is set to fr and NOT to fr_FR.
Syntax highlighting does not work for fr DONE annma
- Default does not work in Language ComboBox -> I am not sure your use of KConfig XT is optimum here, Cies
- Default does not work in Language ComboBox -> I am not sure your use of TDEConfig XT is optimum here, Cies
and other bug: output: kturtle: desktopLanguage: fr:en_US
kturtle: defaultLanguage: en_US
Why is not default Language fr_FR? DONE annma 02/04/2004
// set the statusbar to display the language as just updated
// TODO maybe this language name can be more pretty by not using ".left(2)", ie "American English" would than be possible... [if this is possible this should be fixed at more places.]