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/sharedfile | |
| 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/sharedfile')
| -rw-r--r-- | src/modules/sharedfile/libkvisharedfile.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/sharedfile/libkvisharedfile.cpp b/src/modules/sharedfile/libkvisharedfile.cpp index 5a5fdaea8..6ac2c0dae 100644 --- a/src/modules/sharedfile/libkvisharedfile.cpp +++ b/src/modules/sharedfile/libkvisharedfile.cpp @@ -46,7 +46,7 @@ extern KVIRC_API KviSharedFilesManager * g_pSharedFilesManager; @title: sharedfile.add @keyterms: - trading files by dcc + trading files by DCC @short: Adds a file sharedfile @syntax: @@ -118,7 +118,7 @@ static bool sharedfile_kvs_cmd_add(KviKvsModuleCommandCall * c) if(!g_pSharedFilesManager->addSharedFile(szVisibleName,szFileName,szUserMask,timeout)) { - c->warning(__tr2qs_ctx("Ops..failed to add the sharedfile...","sharedfileswindow")); + c->warning(__tr2qs_ctx("Oops! Failed to add the sharedfile...","sharedfileswindow")); } return true; @@ -132,7 +132,7 @@ static bool sharedfile_kvs_cmd_add(KviKvsModuleCommandCall * c) @title: sharedfile.remove @keyterms: - trading files by dcc + trading files by DCC @short: Removes a shared file @syntax: @@ -170,7 +170,7 @@ static bool sharedfile_kvs_cmd_remove(KviKvsModuleCommandCall * c) @title: sharedfile.clear @keyterms: - trading files by dcc, shared files + trading files by DCC, shared files @short: Clears the shared files list @syntax: @@ -195,7 +195,7 @@ static bool sharedfile_kvs_cmd_clear(KviKvsModuleCommandCall *) @title: sharedfile.list @keyterms: - trading files by dcc + trading files by DCC @short: Lists the active file sharedfile @syntax: @@ -218,9 +218,9 @@ static bool sharedfile_kvs_cmd_list(KviKvsModuleCommandCall * c) { c->window()->output(KVI_OUT_NONE,"%c%d. %s", KviControlCodes::Bold,idx + 1,it.currentKey().toUtf8().data()); - c->window()->output(KVI_OUT_NONE,__tr2qs_ctx(" File: %s (%u bytes)","sharedfileswindow"), + c->window()->output(KVI_OUT_NONE,__tr2qs_ctx("File: %s (%u bytes)","sharedfileswindow"), o->absFilePath().toUtf8().data(),o->fileSize()); - c->window()->output(KVI_OUT_NONE,__tr2qs_ctx(" Mask: %s","sharedfileswindow"), + c->window()->output(KVI_OUT_NONE,__tr2qs_ctx("Mask: %s","sharedfileswindow"), o->userMask().toUtf8().data()); if(o->expireTime() > 0) { @@ -229,7 +229,7 @@ static bool sharedfile_kvs_cmd_list(KviKvsModuleCommandCall * c) secs = secs % 3600; int mins = secs / 60; secs = secs % 60; - c->window()->output(KVI_OUT_NONE,__tr2qs_ctx(" Expires in %d hours %d minutes %d seconds","sharedfileswindow"), + c->window()->output(KVI_OUT_NONE,__tr2qs_ctx("Expires in %d hours %d minutes %d seconds","sharedfileswindow"), hour,mins,secs); } ++idx; |
