mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 22:03:56 -07:00
Updates to upstream changeset f71a8e5e84bffadd61ac93768b332262989844fd, with some additions that will be submitted upstream (without the addition of precompiled.h and win32 dirent). This was SVN commit r16462.
220 lines
5.5 KiB
C++
220 lines
5.5 KiB
C++
// tinygettext - A gettext replacement that works directly on .po files
|
|
// Copyright (C) 2006 Ingo Ruhnke <grumbel@gmx.de>
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#include "precompiled.h"
|
|
|
|
#include <assert.h>
|
|
|
|
#include "tinygettext/log_stream.hpp"
|
|
#include "tinygettext/dictionary.hpp"
|
|
|
|
namespace tinygettext {
|
|
|
|
Dictionary::Dictionary(const std::string& charset_) :
|
|
entries(),
|
|
ctxt_entries(),
|
|
charset(charset_),
|
|
plural_forms(),
|
|
m_has_fallback(false),
|
|
m_fallback()
|
|
{
|
|
}
|
|
|
|
Dictionary::~Dictionary()
|
|
{
|
|
}
|
|
|
|
std::string
|
|
Dictionary::get_charset() const
|
|
{
|
|
return charset;
|
|
}
|
|
|
|
void
|
|
Dictionary::set_plural_forms(const PluralForms& plural_forms_)
|
|
{
|
|
plural_forms = plural_forms_;
|
|
}
|
|
|
|
PluralForms
|
|
Dictionary::get_plural_forms() const
|
|
{
|
|
return plural_forms;
|
|
}
|
|
|
|
std::string
|
|
Dictionary::translate_plural(const std::string& msgid, const std::string& msgid_plural, int num)
|
|
{
|
|
return translate_plural(entries, msgid, msgid_plural, num);
|
|
}
|
|
|
|
std::string
|
|
Dictionary::translate_plural(const Entries& dict, const std::string& msgid, const std::string& msgid_plural, int count)
|
|
{
|
|
Entries::const_iterator i = dict.find(msgid);
|
|
const std::vector<std::string>& msgstrs = i->second;
|
|
|
|
if (i != dict.end())
|
|
{
|
|
unsigned int n = 0;
|
|
n = plural_forms.get_plural(count);
|
|
if (n >= msgstrs.size())
|
|
{
|
|
log_error << "Plural translation not available (and not set to empty): '" << msgid << "'" << std::endl;
|
|
log_error << "Missing plural form: " << n << std::endl;
|
|
return msgid;
|
|
}
|
|
|
|
if (!msgstrs[n].empty())
|
|
return msgstrs[n];
|
|
else
|
|
if (count == 1) // default to english rules
|
|
return msgid;
|
|
else
|
|
return msgid_plural;
|
|
}
|
|
else
|
|
{
|
|
log_info << "Couldn't translate: " << msgid << std::endl;
|
|
log_info << "Candidates: " << std::endl;
|
|
for (i = dict.begin(); i != dict.end(); ++i)
|
|
log_info << "'" << i->first << "'" << std::endl;
|
|
|
|
if (count == 1) // default to english rules
|
|
return msgid;
|
|
else
|
|
return msgid_plural;
|
|
}
|
|
}
|
|
|
|
std::string
|
|
Dictionary::translate(const std::string& msgid)
|
|
{
|
|
return translate(entries, msgid);
|
|
}
|
|
|
|
std::string
|
|
Dictionary::translate(const Entries& dict, const std::string& msgid)
|
|
{
|
|
Entries::const_iterator i = dict.find(msgid);
|
|
if (i != dict.end() && !i->second.empty())
|
|
{
|
|
return i->second[0];
|
|
}
|
|
else
|
|
{
|
|
log_info << "Couldn't translate: " << msgid << std::endl;
|
|
|
|
if (m_has_fallback) return m_fallback->translate(msgid);
|
|
else return msgid;
|
|
}
|
|
}
|
|
|
|
std::string
|
|
Dictionary::translate_ctxt(const std::string& msgctxt, const std::string& msgid)
|
|
{
|
|
CtxtEntries::iterator i = ctxt_entries.find(msgctxt);
|
|
if (i != ctxt_entries.end())
|
|
{
|
|
return translate(i->second, msgid);
|
|
}
|
|
else
|
|
{
|
|
log_info << "Couldn't translate: " << msgid << std::endl;
|
|
return msgid;
|
|
}
|
|
}
|
|
|
|
std::string
|
|
Dictionary::translate_ctxt_plural(const std::string& msgctxt,
|
|
const std::string& msgid, const std::string& msgidplural, int num)
|
|
{
|
|
CtxtEntries::iterator i = ctxt_entries.find(msgctxt);
|
|
if (i != ctxt_entries.end())
|
|
{
|
|
return translate_plural(i->second, msgid, msgidplural, num);
|
|
}
|
|
else
|
|
{
|
|
log_info << "Couldn't translate: " << msgid << std::endl;
|
|
if (num != 1) // default to english
|
|
return msgidplural;
|
|
else
|
|
return msgid;
|
|
}
|
|
}
|
|
|
|
void
|
|
Dictionary::add_translation(const std::string& msgid, const std::string& ,
|
|
const std::vector<std::string>& msgstrs)
|
|
{
|
|
// Do we need msgid2 for anything? its after all supplied to the
|
|
// translate call, so we just throw it away here
|
|
entries[msgid] = msgstrs;
|
|
}
|
|
|
|
void
|
|
Dictionary::add_translation(const std::string& msgid, const std::string& msgstr)
|
|
{
|
|
std::vector<std::string>& vec = entries[msgid];
|
|
if (vec.empty())
|
|
{
|
|
vec.push_back(msgstr);
|
|
}
|
|
else if (vec[0] != msgstr)
|
|
{
|
|
log_warning << "collision in add_translation: '"
|
|
<< msgid << "' -> '" << msgstr << "' vs '" << vec[0] << "'" << std::endl;
|
|
vec[0] = msgstr;
|
|
}
|
|
}
|
|
|
|
void
|
|
Dictionary::add_translation(const std::string& msgctxt,
|
|
const std::string& msgid, const std::string& msgid_plural,
|
|
const std::vector<std::string>& msgstrs)
|
|
{
|
|
std::vector<std::string>& vec = ctxt_entries[msgctxt][msgid];
|
|
if (vec.empty())
|
|
{
|
|
vec = msgstrs;
|
|
}
|
|
else
|
|
{
|
|
log_warning << "collision in add_translation(\"" << msgctxt << "\", \"" << msgid << "\", \"" << msgid_plural << "\")" << std::endl;
|
|
vec = msgstrs;
|
|
}
|
|
}
|
|
|
|
void
|
|
Dictionary::add_translation(const std::string& msgctxt, const std::string& msgid, const std::string& msgstr)
|
|
{
|
|
std::vector<std::string>& vec = ctxt_entries[msgctxt][msgid];
|
|
if (vec.empty())
|
|
{
|
|
vec.push_back(msgstr);
|
|
}
|
|
else
|
|
{
|
|
log_warning << "collision in add_translation(\"" << msgctxt << "\", \"" << msgid << "\")" << std::endl;
|
|
vec[0] = msgstr;
|
|
}
|
|
}
|
|
|
|
} // namespace tinygettext
|
|
|
|
/* EOF */
|