|
1 |
| -/****************************************************************************** |
| 1 | +/****************************************************************************** |
2 | 2 | *
|
3 | 3 | *
|
4 | 4 | *
|
|
20 | 20 |
|
21 | 21 | // Updates:
|
22 | 22 | // --------
|
| 23 | +// 2022/08/30 - Updated for "new since 1.9.6" by: <petyovsky@vut.cz> |
| 24 | +// Changed translation: `trMemberFunctionDocumentation()`. |
| 25 | +// Added new translation: `trFlowchart()`. |
23 | 26 | // 2022/08/25 - Updated for "new since 1.9.4" by: <petyovsky@vut.cz>
|
24 | 27 | // removed all implicit conversion from QCString to const char *,
|
25 | 28 | // fixed issues: #7434, #8404, #9192,
|
|
126 | 129 | Translator class (by the local maintainer) when the localized
|
127 | 130 | translator is made up-to-date again.
|
128 | 131 | */
|
129 |
| -class TranslatorCzech : public TranslatorAdapter_1_9_5 |
| 132 | +class TranslatorCzech : public Translator |
130 | 133 | {
|
131 | 134 | public:
|
132 | 135 |
|
@@ -200,7 +203,16 @@ class TranslatorCzech : public TranslatorAdapter_1_9_5
|
200 | 203 |
|
201 | 204 | /*! header that is put before the list of member functions. */
|
202 | 205 | virtual QCString trMemberFunctionDocumentation()
|
203 |
| - { return "Dokumentace členských funkcí"; } |
| 206 | + { |
| 207 | + if (Config_getBool(OPTIMIZE_OUTPUT_VHDL)) |
| 208 | + { |
| 209 | + return "Dokumentace členských funkcí/procedur/procesů"; |
| 210 | + } |
| 211 | + else |
| 212 | + { |
| 213 | + return "Dokumentace členských funkcí"; |
| 214 | + } |
| 215 | + } |
204 | 216 |
|
205 | 217 | /*! header that is put before the list of member attributes. */
|
206 | 218 | virtual QCString trMemberDataDocumentation()
|
@@ -2460,6 +2472,22 @@ class TranslatorCzech : public TranslatorAdapter_1_9_5
|
2460 | 2472 |
|
2461 | 2473 | virtual QCString trPackageList()
|
2462 | 2474 | { return "Seznam balíků"; }
|
| 2475 | + |
| 2476 | +////////////////////////////////////////////////////////////////////////// |
| 2477 | +// new since 1.9.6 |
| 2478 | +////////////////////////////////////////////////////////////////////////// |
| 2479 | + |
| 2480 | + /*! This is used for translation of the word that will be |
| 2481 | + * followed by a single name of the VHDL process flowchart. |
| 2482 | + */ |
| 2483 | + virtual QCString trFlowchart() |
| 2484 | + { return "Vývojový diagram: "; } |
| 2485 | + |
| 2486 | + /*! Please translate also updated body of the method |
| 2487 | + * trMemberFunctionDocumentation(), now better adapted for |
| 2488 | + * VHDL sources documentation. |
| 2489 | + * Done. |
| 2490 | + */ |
2463 | 2491 | };
|
2464 | 2492 |
|
2465 | 2493 | #endif // TRANSLATOR_CZ_H
|
0 commit comments