mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
correct Messages class implementation for non-NLS
This commit is contained in:
parent
404ef2467c
commit
5a9aa21350
@ -234,9 +234,14 @@ docstring const Messages::get(string const & m) const
|
|||||||
return trans;
|
return trans;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string Messages::language() const
|
||||||
|
{
|
||||||
|
return string();
|
||||||
|
}
|
||||||
|
|
||||||
bool Messages::available() const
|
bool Messages::available(string const & c)
|
||||||
{
|
{
|
||||||
|
(void)c;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user