summaryrefslogtreecommitdiffstats
path: root/src/translator_eo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_eo.h')
-rw-r--r--src/translator_eo.h36
1 files changed, 35 insertions, 1 deletions
diff --git a/src/translator_eo.h b/src/translator_eo.h
index 675409e..c0610e6 100644
--- a/src/translator_eo.h
+++ b/src/translator_eo.h
@@ -40,7 +40,7 @@
Translator class (by the local maintainer) when the localized
translator is made up-to-date again.
*/
-class TranslatorEsperanto : public TranslatorAdapter_1_6_0
+class TranslatorEsperanto : public Translator
{
public:
@@ -1775,6 +1775,40 @@ class TranslatorEsperanto : public TranslatorAdapter_1_6_0
return "Tipaj Limigoj";
}
+//////////////////////////////////////////////////////////////////////////
+// new since 1.6.0 (mainly for the new search engine)
+//////////////////////////////////////////////////////////////////////////
+
+ /*! directory relation for \a name */
+ virtual QCString trDirRelation(const char *name)
+ {
+ return QCString(name)+" Rilato";
+ }
+
+ /*! Loading message shown when loading search results */
+ virtual QCString trLoading()
+ {
+ return "Ŝarĝante...";
+ }
+
+ /*! Label used for search results in the global namespace */
+ virtual QCString trGlobalNamespace()
+ {
+ return "Malloka Nomspaco";
+ }
+
+ /*! Message shown while searching */
+ virtual QCString trSearching()
+ {
+ return "Serĉante...";
+ }
+
+ /*! Text shown when no search results are found */
+ virtual QCString trNoMatches()
+ {
+ return "Nenia kongruo";
+ }
+
};
#endif