Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/info.cc')
-rw-r--r--src/core/info.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/info.cc b/src/core/info.cc
index fc10fe5..5f31569 100644
--- a/src/core/info.cc
+++ b/src/core/info.cc
@@ -122,7 +122,7 @@ Info::~Info()
void Info::print() const
{
- con_print << "label: ^B" << label() << " ^Nname: ^B" << name() << "^N" << std::endl;
+ con_print << "label: ^B" << label() << " ^Nname: ^B" << name() << " ^Nmodel: ^B" << modelname() << "^N" << std::endl;
for (Text::const_iterator it = info_text.begin(); it != info_text.end(); it++) {
con_print << " " << (*it) << std::endl;
@@ -176,7 +176,7 @@ void Info::list()
Info *info = (*it).second;;
con_print << info->label() << std::endl;
}
- con_print << registry.size() << " registered infos" << std::endl;
+ con_print << registry.size() << " registered info " << aux::plural("record", registry.size()) << std::endl;
}
}