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. |
1125 |
1125 |
1126 /*! This is used as the name of the chapter containing the directory |
1126 /*! This is used as the name of the chapter containing the directory |
1127 * hierarchy. |
1127 * hierarchy. |
1128 */ |
1128 */ |
1129 virtual QCString trDirIndex() |
1129 virtual QCString trDirIndex() |
1130 { return "Directory Hiërarchie"; } |
1130 { return "Folder Hiërarchie"; } |
1131 |
1131 |
1132 /*! This is used as the name of the chapter containing the documentation |
1132 /*! This is used as the name of the chapter containing the documentation |
1133 * of the directories. |
1133 * of the directories. |
1134 */ |
1134 */ |
1135 virtual QCString trDirDocumentation() |
1135 virtual QCString trDirDocumentation() |
1136 { return "Directory Documentatie"; } |
1136 { return "Folder Documentatie"; } |
1137 |
1137 |
1138 /*! This is used as the title of the directory index and also in the |
1138 /*! This is used as the title of the directory index and also in the |
1139 * Quick links of a HTML page, to link to the directory hierarchy. |
1139 * Quick links of a HTML page, to link to the directory hierarchy. |
1140 */ |
1140 */ |
1141 virtual QCString trDirectories() |
1141 virtual QCString trDirectories() |
1142 { return "Directories"; } |
1142 { return "Folders"; } |
1143 |
1143 |
1144 /*! This returns a sentences that introduces the directory hierarchy. |
1144 /*! This returns a sentences that introduces the directory hierarchy. |
1145 * and the fact that it is sorted alphabetically per level |
1145 * and the fact that it is sorted alphabetically per level |
1146 */ |
1146 */ |
1147 virtual QCString trDirDescription() |
1147 virtual QCString trDirDescription() |
1151 |
1151 |
1152 /*! This returns the title of a directory page. The name of the |
1152 /*! This returns the title of a directory page. The name of the |
1153 * directory is passed via \a dirName. |
1153 * directory is passed via \a dirName. |
1154 */ |
1154 */ |
1155 virtual QCString trDirReference(const char *dirName) |
1155 virtual QCString trDirReference(const char *dirName) |
1156 { QCString result=dirName; result+=" Directory Referentie"; return result; } |
1156 { QCString result=dirName; result+=" Folder Referentie"; return result; } |
1157 |
1157 |
1158 /*! This returns the word directory with or without starting capital |
1158 /*! This returns the word directory with or without starting capital |
1159 * (\a first_capital) and in sigular or plural form (\a singular). |
1159 * (\a first_capital) and in sigular or plural form (\a singular). |
1160 */ |
1160 */ |
1161 virtual QCString trDir(bool first_capital, bool singular) |
1161 virtual QCString trDir(bool first_capital, bool singular) |
1162 { |
1162 { |
1163 QCString result((first_capital ? "Director" : "director")); |
1163 QCString result((first_capital ? "Folder" : "folder")); |
1164 if (singular) result+="y"; else result+="ies"; |
1164 if (!singular) result+="s"; |
1165 return result; |
1165 return result; |
1166 } |
1166 } |
1167 |
1167 |
1168 ////////////////////////////////////////////////////////////////////////// |
1168 ////////////////////////////////////////////////////////////////////////// |
1169 // new since 1.4.1 |
1169 // new since 1.4.1 |
1405 virtual QCString trNoMatches() |
1405 virtual QCString trNoMatches() |
1406 { |
1406 { |
1407 return "Niets gevonden"; |
1407 return "Niets gevonden"; |
1408 } |
1408 } |
1409 |
1409 |
|
1410 ////////////////////////////////////////////////////////////////////////// |
|
1411 // new since 1.6.3 (missing items for the directory pages) |
|
1412 ////////////////////////////////////////////////////////////////////////// |
|
1413 |
|
1414 /*! introduction text for the directory dependency graph */ |
|
1415 virtual QCString trDirDependency(const char *name) |
|
1416 { |
|
1417 return (QCString)"Folder afhankelijkheidsgraaf voor "+name; |
|
1418 } |
|
1419 |
|
1420 /*! when clicking a directory dependency label, a page with a |
|
1421 * table is shown. The heading for the first column mentions the |
|
1422 * source file that has a relation to another file. |
|
1423 */ |
|
1424 virtual QCString trFileIn(const char *name) |
|
1425 { |
|
1426 return (QCString)"Bestand in "+name; |
|
1427 } |
|
1428 |
|
1429 /*! when clicking a directory dependency label, a page with a |
|
1430 * table is shown. The heading for the second column mentions the |
|
1431 * destination file that is included. |
|
1432 */ |
|
1433 virtual QCString trIncludesFileIn(const char *name) |
|
1434 { |
|
1435 return (QCString)"Includeert bestand in "+name; |
|
1436 } |
|
1437 virtual QCString trDateTime(int year,int month,int day,int dayOfWeek, |
|
1438 int hour,int minutes,int seconds, |
|
1439 bool includeTime) |
|
1440 { |
|
1441 static const char *days[] = { "Ma","Di","Wo","Do","Vr","Za","Zo" }; |
|
1442 static const char *months[] = { "Jan","Feb","Maa","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Dec" }; |
|
1443 QCString sdate; |
|
1444 sdate.sprintf("%s %d %s %d",days[dayOfWeek-1],day,months[month-1],year); |
|
1445 if (includeTime) |
|
1446 { |
|
1447 QCString stime; |
|
1448 stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds); |
|
1449 sdate+=stime; |
|
1450 } |
|
1451 return sdate; |
|
1452 } |
|
1453 |
|
1454 |
1410 |
1455 |
1411 |
1456 |
1412 }; |
1457 }; |
1413 |
1458 |
1414 #endif |
1459 #endif |