equal
deleted
inserted
replaced
1 /****************************************************************************** |
1 /****************************************************************************** |
2 * |
2 * |
3 * |
3 * |
4 * |
4 * |
5 * Copyright (C) 1997-2008 by Dimitri van Heesch. |
5 * Copyright (C) 1997-2010 by Dimitri van Heesch. |
6 * |
6 * |
7 * Permission to use, copy, modify, and distribute this software and its |
7 * Permission to use, copy, modify, and distribute this software and its |
8 * documentation under the terms of the GNU General Public License is hereby |
8 * documentation under the terms of the GNU General Public License is hereby |
9 * granted. No representations are made about the suitability of this software |
9 * granted. No representations are made about the suitability of this software |
10 * for any purpose. It is provided "as is" without express or implied warranty. |
10 * for any purpose. It is provided "as is" without express or implied warranty. |
38 base class is changed occasionaly to adapter classes when the |
38 base class is changed occasionaly to adapter classes when the |
39 Translator class changes the interface, or back to the |
39 Translator class changes the interface, or back to the |
40 Translator class (by the local maintainer) when the localized |
40 Translator class (by the local maintainer) when the localized |
41 translator is made up-to-date again. |
41 translator is made up-to-date again. |
42 */ |
42 */ |
43 class TranslatorEsperanto : public TranslatorAdapter_1_6_0 |
43 class TranslatorEsperanto : public TranslatorAdapter_1_6_3 |
44 { |
44 { |
45 public: |
45 public: |
46 |
46 |
47 // --- Language control methods ------------------- |
47 // --- Language control methods ------------------- |
48 |
48 |
1773 virtual QCString trTypeConstraints() |
1773 virtual QCString trTypeConstraints() |
1774 { |
1774 { |
1775 return "Tipaj Limigoj"; |
1775 return "Tipaj Limigoj"; |
1776 } |
1776 } |
1777 |
1777 |
|
1778 ////////////////////////////////////////////////////////////////////////// |
|
1779 // new since 1.6.0 (mainly for the new search engine) |
|
1780 ////////////////////////////////////////////////////////////////////////// |
|
1781 |
|
1782 /*! directory relation for \a name */ |
|
1783 virtual QCString trDirRelation(const char *name) |
|
1784 { |
|
1785 return QCString(name)+" Rilato"; |
|
1786 } |
|
1787 |
|
1788 /*! Loading message shown when loading search results */ |
|
1789 virtual QCString trLoading() |
|
1790 { |
|
1791 return "Ŝarĝante..."; |
|
1792 } |
|
1793 |
|
1794 /*! Label used for search results in the global namespace */ |
|
1795 virtual QCString trGlobalNamespace() |
|
1796 { |
|
1797 return "Malloka Nomspaco"; |
|
1798 } |
|
1799 |
|
1800 /*! Message shown while searching */ |
|
1801 virtual QCString trSearching() |
|
1802 { |
|
1803 return "Serĉante..."; |
|
1804 } |
|
1805 |
|
1806 /*! Text shown when no search results are found */ |
|
1807 virtual QCString trNoMatches() |
|
1808 { |
|
1809 return "Nenia kongruo"; |
|
1810 } |
|
1811 |
1778 }; |
1812 }; |
1779 |
1813 |
1780 #endif |
1814 #endif |