aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/sharedfileswindow/SharedFilesWindow.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-12-09 11:58:53 +0000
committerGravatar un1versal2015-12-19 02:40:22 +0000
commit7d4516afc4cd194f9224dcd5e07e0f234c162fdf (patch)
treea1a165c897339fcbd35a27108fe16c999a3041e2 /src/modules/sharedfileswindow/SharedFilesWindow.cpp
parentMerge pull request #1776 from TheReign/issue_1754_2 (diff)
downloadKVIrc-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.cpp10
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;