summaryrefslogtreecommitdiff
path: root/src/resources/db/textdb.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-06 01:31:12 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-06 01:31:12 +0300
commitd4e28aa97cbce34a0053d3c02cf070ef9065439f (patch)
tree8e7300771b93caeed5faefbe709bd0720766e755 /src/resources/db/textdb.cpp
parentbe163616712f8c360af9b3940969c7f127043dc0 (diff)
downloadplus-d4e28aa97cbce34a0053d3c02cf070ef9065439f.tar.gz
plus-d4e28aa97cbce34a0053d3c02cf070ef9065439f.tar.bz2
plus-d4e28aa97cbce34a0053d3c02cf070ef9065439f.tar.xz
plus-d4e28aa97cbce34a0053d3c02cf070ef9065439f.zip
Add quick messages with translation from current server language to default.
For use it open emotes/fonts in chat and select T tab.
Diffstat (limited to 'src/resources/db/textdb.cpp')
-rw-r--r--src/resources/db/textdb.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/resources/db/textdb.cpp b/src/resources/db/textdb.cpp
index 28198162d..8a8771535 100644
--- a/src/resources/db/textdb.cpp
+++ b/src/resources/db/textdb.cpp
@@ -30,7 +30,7 @@
namespace
{
- std::vector<std::string> mTexts;
+ StringVect mTexts;
} // namespace
void TextDb::load()
@@ -85,3 +85,18 @@ void TextDb::unload()
{
mTexts.clear();
}
+
+const StringVect &TextDb::getTexts()
+{
+ return mTexts;
+}
+
+std::string TextDb::getByIndex(const int index)
+{
+ if (index < 0 ||
+ static_cast<size_t>(index) >= mTexts.size())
+ {
+ return std::string();
+ }
+ return mTexts[index];
+}