]> git.stg.codes - stg.git/commitdiff
Fix multiple typo: "alredy" -> "already"
authorMaxim Mamontov <faust@gts.dp.ua>
Wed, 4 May 2011 09:38:19 +0000 (12:38 +0300)
committerMaxim Mamontov <faust@gts.dp.ua>
Wed, 4 May 2011 09:38:19 +0000 (12:38 +0300)
projects/stargazer/admins_impl.cpp
projects/stargazer/plugins/authorization/inetaccess/inetaccess.cpp
projects/stargazer/store_loader.cpp
projects/stargazer/tariffs_impl.cpp

index 0179910ea12bdac511baaa23387df8ac24995156..4980234acc302a5734fa5afa478ab16445478bcc 100644 (file)
@@ -72,7 +72,7 @@ admin_iter ai(find(data.begin(), data.end(), adm));
 
 if (ai != data.end())
     {
-    strError = "Administrator \'" + login + "\' cannot not be added. Administrator alredy exist.";
+    strError = "Administrator \'" + login + "\' cannot not be added. Administrator already exist.";
     WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
 
     return -1;
index 8e44ed5ed276289fd93941d51b85960c2b093d53..439bee185ed3aabf03201ffdcaf104a1dd966a6e 100644 (file)
@@ -863,8 +863,8 @@ if ((*user)->GetProperty().passive.Get())
 
 if ((*user)->GetAuthorized() && (*user)->GetCurrIP() != sip)
     {
-    printfd(__FILE__, "Login %s alredy in use. IP \'%s\'\n", (*user)->GetLogin().c_str(), inet_ntostring(sip).c_str());
-    WriteServLog("Login %s alredy in use. IP \'%s\'", (*user)->GetLogin().c_str(), inet_ntostring(sip).c_str());
+    printfd(__FILE__, "Login %s already in use. IP \'%s\'\n", (*user)->GetLogin().c_str(), inet_ntostring(sip).c_str());
+    WriteServLog("Login %s already in use. IP \'%s\'", (*user)->GetLogin().c_str(), inet_ntostring(sip).c_str());
     SendError(sip, sport, protoVer, "÷ÁÛ ÌÏÇÉΠÕÖÅ ÉÓÐÏÌØÚÕÅÔÓÑ!");
     return 0;
     }
@@ -872,8 +872,8 @@ if ((*user)->GetAuthorized() && (*user)->GetCurrIP() != sip)
 USER_PTR u;
 if (users->FindByIPIdx(sip, &u) == 0 && u->GetLogin() != (*user)->GetLogin())
     {
-    printfd(__FILE__, "IP address alredy in use. IP \'%s\'", inet_ntostring(sip).c_str());
-    WriteServLog("IP address alredy in use. IP \'%s\'", inet_ntostring(sip).c_str());
+    printfd(__FILE__, "IP address already in use. IP \'%s\'", inet_ntostring(sip).c_str());
+    WriteServLog("IP address already in use. IP \'%s\'", inet_ntostring(sip).c_str());
     SendError(sip, sport, protoVer, "÷ÁÛ IP ÁÄÒÅÓ ÕÖÅ ÉÓÐÏÌØÚÕÅÔÓÑ!");
     return 0;
     }
index 0dceb81da785eeb8999388810094c80994a9d953..c54bdb361cc2e0b0dfb9884ce1f080dcfa873fc3 100644 (file)
@@ -54,7 +54,7 @@ bool STORE_LOADER::Load()
 {
 if (isLoaded)
     {
-    errorStr = "Store plugin '" + pluginFileName + "' was alredy loaded!";
+    errorStr = "Store plugin '" + pluginFileName + "' was already loaded!";
     printfd(__FILE__, "STORE_LOADER::Load() - %s\n", errorStr.c_str());
     return false;
     }
index 61e3e12c88ac5a69e3c9c2e81b617838f339f2f3..d6d6b36ae66a5ee97976194fd9cbb0894cee22f1 100644 (file)
@@ -206,7 +206,7 @@ ti = find(tariffs.begin(), tariffs.end(), TARIFF_IMPL(name));
 
 if (ti != tariffs.end())
     {
-    strError = "Tariff \'" + name + "\' cannot be added. Tariff alredy exist.";
+    strError = "Tariff \'" + name + "\' cannot be added. Tariff already exist.";
     WriteServLog("%s %s", admin->GetLogStr().c_str(), strError.c_str());
     return -1;
     }