diff options
| author | 2010-01-26 15:41:40 +0000 | |
|---|---|---|
| committer | 2010-01-26 15:41:40 +0000 | |
| commit | 728a0423cecf4c14ffbd1881a9f7ce8f5a08357a (patch) | |
| tree | 8928fd1851ef86762df1c09bd29a318d761687a3 /src/modules/addon/libkviaddon.cpp | |
| parent | bumped sources date (diff) | |
| download | KVIrc-728a0423cecf4c14ffbd1881a9f7ce8f5a08357a.tar.gz KVIrc-728a0423cecf4c14ffbd1881a9f7ce8f5a08357a.tar.bz2 KVIrc-728a0423cecf4c14ffbd1881a9f7ce8f5a08357a.zip | |
quick fixes
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3891 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/addon/libkviaddon.cpp')
| -rw-r--r-- | src/modules/addon/libkviaddon.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/addon/libkviaddon.cpp b/src/modules/addon/libkviaddon.cpp index a27f33243..e3ee47033 100644 --- a/src/modules/addon/libkviaddon.cpp +++ b/src/modules/addon/libkviaddon.cpp @@ -564,7 +564,7 @@ static bool addon_kvs_cmd_register(KviKvsModuleCallbackCommandCall * c) // complain unless -f is used if(!c->switches()->find('f',"force")) { - c->error(__tr2qs("The script addon \"%Q\" already exists with version %Q which is higher than %Q"),&(rd.szName),&(a->version()),&(rd.szVersion)); + c->error(__tr2qs("The addon \"%Q\" already exists with version %Q which is higher than %Q"),&(rd.szName),&(a->version()),&(rd.szVersion)); return false; } } @@ -578,12 +578,12 @@ static bool addon_kvs_cmd_register(KviKvsModuleCallbackCommandCall * c) if(!KviKvsScriptAddonManager::instance()->registerAddon(&rd)) { - c->error(__tr2qs("Script registration failed")); + c->error(__tr2qs("Addon registration failed")); return false; } if(!c->switches()->find('q',"quiet")) - c->window()->output(KVI_OUT_SYSTEMMESSAGE,__tr2qs("Script successfully registered")); + c->window()->output(KVI_OUT_SYSTEMMESSAGE,__tr2qs("Addon successfully registered")); return true; } @@ -686,8 +686,8 @@ KVIRC_MODULE( "Addon", // module name "4.0.0", // module version "Copyright (C) 2005 Szymon Stefanek (pragma at kvirc dot net)\n" \ - " 2008 Elvio Basello (hellvis69 at netsons dot org)", // author & (C) - "Script/addon management functions for the KVS engine", + " 2008 Elvio Basello (hell at hellvis69 dot netsons dot org)", // author & (C) + "Addon management functions for the KVS engine", addon_module_init, addon_module_can_unload, 0, |
