2015-05-31 18:09:19 -07:00
|
|
|
// tinygettext - A gettext replacement that works directly on .po files
|
|
|
|
|
// Copyright (c) 2006 Ingo Ruhnke <grumbel@gmail.com>
|
2014-04-20 12:17:32 -07:00
|
|
|
//
|
2015-05-31 18:09:19 -07:00
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
|
// arising from the use of this software.
|
2014-04-20 12:17:32 -07:00
|
|
|
//
|
2015-05-31 18:09:19 -07:00
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
|
// freely, subject to the following restrictions:
|
2014-04-20 12:17:32 -07:00
|
|
|
//
|
2015-05-31 18:09:19 -07:00
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
|
// in a product, an acknowledgement in the product documentation would be
|
|
|
|
|
// appreciated but is not required.
|
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
|
// misrepresented as being the original software.
|
|
|
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
2014-04-20 12:17:32 -07:00
|
|
|
|
2014-04-24 13:05:48 -07:00
|
|
|
#include "precompiled.h"
|
|
|
|
|
|
2014-04-20 12:17:32 -07:00
|
|
|
#include <assert.h>
|
2015-01-21 12:37:37 -08:00
|
|
|
|
|
|
|
|
#include "tinygettext/log_stream.hpp"
|
|
|
|
|
#include "tinygettext/dictionary.hpp"
|
2014-04-20 12:17:32 -07:00
|
|
|
|
|
|
|
|
namespace tinygettext {
|
2015-03-24 10:47:08 -07:00
|
|
|
|
2014-04-20 12:17:32 -07:00
|
|
|
Dictionary::Dictionary(const std::string& charset_) :
|
|
|
|
|
entries(),
|
|
|
|
|
ctxt_entries(),
|
|
|
|
|
charset(charset_),
|
2015-03-24 10:47:08 -07:00
|
|
|
plural_forms(),
|
|
|
|
|
m_has_fallback(false),
|
|
|
|
|
m_fallback()
|
2014-04-20 12:17:32 -07:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
2015-03-24 10:47:08 -07:00
|
|
|
if (n >= msgstrs.size())
|
2014-07-05 03:29:24 -07:00
|
|
|
{
|
|
|
|
|
log_error << "Plural translation not available (and not set to empty): '" << msgid << "'" << std::endl;
|
|
|
|
|
log_error << "Missing plural form: " << n << std::endl;
|
|
|
|
|
return msgid;
|
2015-03-24 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
2014-04-20 12:17:32 -07:00
|
|
|
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;
|
2015-03-24 10:47:08 -07:00
|
|
|
|
|
|
|
|
if (m_has_fallback) return m_fallback->translate(msgid);
|
|
|
|
|
else return msgid;
|
|
|
|
|
}
|
2014-04-20 12:17:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
2015-03-24 10:47:08 -07:00
|
|
|
Dictionary::translate_ctxt_plural(const std::string& msgctxt,
|
2014-04-20 12:17:32 -07:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-24 10:47:08 -07:00
|
|
|
|
2014-04-20 12:17:32 -07:00
|
|
|
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];
|
2015-01-11 11:14:03 -08:00
|
|
|
if (vec.empty())
|
2014-04-20 12:17:32 -07:00
|
|
|
{
|
|
|
|
|
vec.push_back(msgstr);
|
|
|
|
|
}
|
2015-01-11 11:14:03 -08:00
|
|
|
else if (vec[0] != msgstr)
|
2014-04-20 12:17:32 -07:00
|
|
|
{
|
2015-03-24 10:47:08 -07:00
|
|
|
log_warning << "collision in add_translation: '"
|
2014-04-20 12:17:32 -07:00
|
|
|
<< msgid << "' -> '" << msgstr << "' vs '" << vec[0] << "'" << std::endl;
|
|
|
|
|
vec[0] = msgstr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2015-03-24 10:47:08 -07:00
|
|
|
Dictionary::add_translation(const std::string& msgctxt,
|
2014-04-20 12:17:32 -07:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-24 10:47:08 -07:00
|
|
|
|
2014-04-20 12:17:32 -07:00
|
|
|
} // namespace tinygettext
|
|
|
|
|
|
|
|
|
|
/* EOF */
|