diff options
| author | 2015-12-09 11:58:53 +0000 | |
|---|---|---|
| committer | 2015-12-19 02:40:22 +0000 | |
| commit | 7d4516afc4cd194f9224dcd5e07e0f234c162fdf (patch) | |
| tree | a1a165c897339fcbd35a27108fe16c999a3041e2 /src/modules/sharedfileswindow/SharedFilesWindow.cpp | |
| parent | Merge pull request #1776 from TheReign/issue_1754_2 (diff) | |
| download | KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.gz KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.bz2 KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.zip | |
src/modules typos: capitalize, formatting, consistency and syntax fixes
Diffstat (limited to 'src/modules/sharedfileswindow/SharedFilesWindow.cpp')
| -rw-r--r-- | src/modules/sharedfileswindow/SharedFilesWindow.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/sharedfileswindow/SharedFilesWindow.cpp b/src/modules/sharedfileswindow/SharedFilesWindow.cpp index 3ee6cabcf..1b2b53cea 100644 --- a/src/modules/sharedfileswindow/SharedFilesWindow.cpp +++ b/src/modules/sharedfileswindow/SharedFilesWindow.cpp @@ -133,7 +133,7 @@ void SharedFileEditDialog::browse() { QString szBuf; QString szTxt = m_pFilePathEdit->text(); - if(!KviFileDialog::askForOpenFileName(szBuf,__tr2qs("Choose the file to share"),szTxt,QString(),false,true,this))return; + if(!KviFileDialog::askForOpenFileName(szBuf,__tr2qs("Choose the File to Share"),szTxt,QString(),false,true,this))return; m_pFilePathEdit->setText(szBuf); } @@ -156,16 +156,16 @@ void SharedFileEditDialog::okClicked() bool bExpires = m_pExpireCheckBox->isChecked(); if(bExpires && (dt <= QDateTime::currentDateTime())) { - QMessageBox::warning(this,__tr2qs_ctx("Invalid expire time","sharedfileswindow"), - __tr2qs_ctx("The expire date/time is in the past: please either remove the \"expires\"" \ - "check mark or specify a expire date/time in the future","sharedfileswindow"), + QMessageBox::warning(this,__tr2qs_ctx("Invalid Expiry Time","sharedfileswindow"), + __tr2qs_ctx("The expiry date/time is in the past: please either remove the \"Expires at\"" \ + "check mark or specify a expiry date/time in the future","sharedfileswindow"), __tr2qs_ctx("OK","sharedfileswindow")); return; } if(szName.isEmpty()) { - QMessageBox::warning(this,__tr2qs_ctx("Invalid share name","sharedfileswindow"), + QMessageBox::warning(this,__tr2qs_ctx("Invalid Share Name","sharedfileswindow"), __tr2qs_ctx("The share name can't be empty, please correct it","sharedfileswindow"), __tr2qs_ctx("OK","sharedfileswindow")); return; |
