diff options
Diffstat (limited to 'plugins/HistoryStats/src/column_wordcount.h')
-rw-r--r-- | plugins/HistoryStats/src/column_wordcount.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/HistoryStats/src/column_wordcount.h b/plugins/HistoryStats/src/column_wordcount.h index 028c95a952..ebbea04c36 100644 --- a/plugins/HistoryStats/src/column_wordcount.h +++ b/plugins/HistoryStats/src/column_wordcount.h @@ -21,9 +21,9 @@ public: explicit ColWordCount();
protected:
- virtual const mu_text* impl_getUID() const { return con::ColWordCount; }
- virtual const mu_text* impl_getTitle() const { return i18n(muT("Word count")); }
- virtual const mu_text* impl_getDescription() const { return i18n(muT("Column holding the number of (distinct) words used by you, by your contact, or by both of you.")); }
+ virtual const TCHAR* impl_getUID() const { return con::ColWordCount; }
+ virtual const TCHAR* impl_getTitle() const { return TranslateT("Word count"); }
+ virtual const TCHAR* impl_getDescription() const { return TranslateT("Column holding the number of (distinct) words used by you, by your contact, or by both of you."); }
virtual void impl_copyConfig(const Column* pSource);
virtual void impl_configRead(const SettingsTree& settings);
virtual void impl_configWrite(SettingsTree& settings) const;
|