diff options
| author | 2016-01-30 17:16:48 +0000 | |
|---|---|---|
| committer | 2016-02-02 16:24:57 +0000 | |
| commit | f22b036895439ee1ef7df86e94b8444da7a7fca6 (patch) | |
| tree | 703243ce0544da2f5e255267264150e9db6d0b7b /src/modules/mircimport | |
| parent | libkvidialog: dont use quotes as text emphasis, italic or bold text is OK (diff) | |
| download | KVIrc-f22b036895439ee1ef7df86e94b8444da7a7fca6.tar.gz KVIrc-f22b036895439ee1ef7df86e94b8444da7a7fca6.tar.bz2 KVIrc-f22b036895439ee1ef7df86e94b8444da7a7fca6.zip | |
libkvimircimport: remove center formatting and fix window title
Diffstat (limited to 'src/modules/mircimport')
| -rw-r--r-- | src/modules/mircimport/libkvimircimport.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/mircimport/libkvimircimport.cpp b/src/modules/mircimport/libkvimircimport.cpp index 3af86b695..0ad5b208a 100644 --- a/src/modules/mircimport/libkvimircimport.cpp +++ b/src/modules/mircimport/libkvimircimport.cpp @@ -123,7 +123,7 @@ void KviMircServersIniImport::start() { //KviCString buffer; QString buffer; - if(!KviFileDialog::askForOpenFileName(buffer,__tr("Choose a servers.ini file"),0,KVI_FILTER_INI,false,true,g_pMainWindow))return; + if(!KviFileDialog::askForOpenFileName(buffer,__tr("Choose a servers.ini File"),0,KVI_FILTER_INI,false,true,g_pMainWindow))return; doImport(buffer); delete this; @@ -151,15 +151,15 @@ KviRemoteMircServerImportWizard::KviRemoteMircServerImportWizard(KviRemoteMircSe QLabel * l = new QLabel(this); l->setWordWrap(true); - l->setText(__tr2qs("<center><b>Welcome!</b><br><br>This wizard will guide you in the process of " \ - "downloading a list of IRC servers. Please click \"<b>Next</b>\" to begin the operation.</center>")); + l->setText(__tr2qs("<center><b>Welcome!</b></center><br><br>This wizard will guide you in the process of " \ + "downloading a list of IRC servers. Please click \"<b>Next</b>\" to begin the operation.")); addPage(l,capt); KviTalVBox * vb = new KviTalVBox(this); l = new QLabel(vb); l->setWordWrap(true); - l->setText(__tr2qs("<center>Here you can modify the URL that the list will be downloaded from. In most cases the default URL is acceptable.</center>")); + l->setText(__tr2qs("Here you can modify the URL that the list will be downloaded from. In most cases the default URL is acceptable.")); vb->setStretchFactor(l,1); @@ -240,7 +240,7 @@ void KviRemoteMircServerImportWizard::getListTerminated(bool bSuccess) if(!m_pRequest)return; if(bSuccess) { - m_pOutput->setText(__tr2qs("File downloaded: processing ...")); + m_pOutput->setText(__tr2qs("File downloaded: processing...")); m_pOutput->repaint(); int iCount = m_pFilter->doImport(m_szTmpFileName); |
