diff options
Diffstat (limited to 'src/utils/translation/poparser.h')
-rw-r--r-- | src/utils/translation/poparser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/translation/poparser.h b/src/utils/translation/poparser.h index dbf87b531..08a6ac7b1 100644 --- a/src/utils/translation/poparser.h +++ b/src/utils/translation/poparser.h @@ -39,7 +39,7 @@ class PoParser final const std::string &restrict fileName = "", PoDict *restrict const dict = nullptr); - bool checkLang(std::string lang) const; + static bool checkLang(std::string lang); static PoDict *getEmptyDict(); @@ -55,13 +55,13 @@ class PoParser final bool readMsgStr(); - bool checkLine(); + bool checkLine() const; - std::string getFileName(std::string lang) const; + static std::string getFileName(std::string lang); PoDict *getDict() const; - void convertStr(std::string &str) const; + static void convertStr(std::string &str); // current lang std::string mLang; |