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. |
721 { return toUtf8(m_translator->trSearching()); } |
721 { return toUtf8(m_translator->trSearching()); } |
722 QCString trNoMatches() |
722 QCString trNoMatches() |
723 { return toUtf8(m_translator->trNoMatches()); } |
723 { return toUtf8(m_translator->trNoMatches()); } |
724 |
724 |
725 ////////////////////////////////////////////////////////////////////////// |
725 ////////////////////////////////////////////////////////////////////////// |
|
726 // new since 1.6.3 |
|
727 ////////////////////////////////////////////////////////////////////////// |
|
728 |
|
729 QCString trDirDependency(const char *name) |
|
730 { return toUtf8(m_translator->trDirDependency(fromUtf8(name))); } |
|
731 QCString trFileIn(const char *name) |
|
732 { return toUtf8(m_translator->trFileIn(fromUtf8(name))); } |
|
733 QCString trIncludesFileIn(const char *name) |
|
734 { return toUtf8(m_translator->trIncludesFileIn(fromUtf8(name))); } |
|
735 QCString trDateTime(int year,int month,int day,int dayOfWeek, |
|
736 int hour,int minutes,int seconds,bool includeTime) |
|
737 { return toUtf8(m_translator->trDateTime(year,month,day,dayOfWeek, |
|
738 hour,minutes,seconds,includeTime)); |
|
739 } |
|
740 |
|
741 |
|
742 ////////////////////////////////////////////////////////////////////////// |
726 private: |
743 private: |
727 Translator *m_translator; |
744 Translator *m_translator; |
728 void *m_toUtf8; |
745 void *m_toUtf8; |
729 void *m_fromUtf8; |
746 void *m_fromUtf8; |
730 |
747 |