added %T format support

added a new lang native

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40395
This commit is contained in:
Borja Ferrer
2007-01-27 03:25:34 +00:00
parent 7f44c014ae
commit aa8bf86dc1
8 changed files with 150 additions and 1 deletions
+15
View File
@@ -491,6 +491,21 @@ void CPlugin::SetTimeStamp(time_t t)
m_LastAccess = t;
}
void CPlugin::AddLangFile(unsigned int index)
{
m_PhraseFiles.push_back(index);
}
size_t CPlugin::GetLangFileCount() const
{
return m_PhraseFiles.size();
}
unsigned int CPlugin::GetFileByIndex(unsigned int index) const
{
return m_PhraseFiles.at(index);
}
/*******************
* PLUGIN ITERATOR *
*******************/