Marked "Nebula" and "Open cluster" for gettext translation.

ver1_6_1
Vincent Giangiulio 2009-12-12 10:05:29 +00:00
parent 3dd27d6cac
commit cad8bf7bdc
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ void Nebula::setType(const string& /*typeStr*/)
size_t Nebula::getDescription(char* buf, size_t bufLength) const
{
return snprintf(buf, bufLength, _("%s"), getType());
return snprintf(buf, bufLength, _("Nebula"));
}

View File

@ -41,7 +41,7 @@ void OpenCluster::setType(const std::string& /*typeStr*/)
size_t OpenCluster::getDescription(char* buf, size_t bufLength) const
{
return snprintf(buf, bufLength, _("%s"), getType());
return snprintf(buf, bufLength, _("Open cluster"));
}
const char* OpenCluster::getObjTypeName() const