From: Frederik Gladhorn Date: Mon, 27 Aug 2007 10:14:54 +0000 (+0000) Subject: Add missing special type explanations. X-Git-Tag: v3.93.0~49 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=8f2b8047fc2bd1c7bc788b3e703d53e9765c0ec7;p=libqmvoc.git Add missing special type explanations. svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=705152 --- diff --git a/keduvocdocument/keduvocwordtype.cpp b/keduvocdocument/keduvocwordtype.cpp index 2ed03ac..57f4c56 100644 --- a/keduvocdocument/keduvocwordtype.cpp +++ b/keduvocdocument/keduvocwordtype.cpp @@ -92,6 +92,15 @@ public: static const QString WORDTYPE_ADVERB; static const QString WORDTYPE_NOUN_EXPLANATION; + static const QString WORDTYPE_NOUN_MALE_EXPLANATION; + static const QString WORDTYPE_NOUN_FEMALE_EXPLANATION; + static const QString WORDTYPE_NOUN_NEUTRAL_EXPLANATION; + + static const QString WORDTYPE_VERB_EXPLANATION; + static const QString WORDTYPE_VERB_REGULAR_EXPLANATION; + static const QString WORDTYPE_VERB_IRREGULAR_EXPLANATION; + static const QString WORDTYPE_ADJECTIVE_EXPLANATION; + static const QString WORDTYPE_ADVERB_EXPLANATION; }; const QString KEduVocWordType::Private::KVTML_1_TYPE_USER = QString("#"); @@ -110,22 +119,17 @@ const QString KEduVocWordType::Private::WORDTYPE_ADJECTIVE = QString("adjective" const QString KEduVocWordType::Private::WORDTYPE_ADVERB = QString("adverb"); - - const QString KEduVocWordType::Private::WORDTYPE_NOUN_EXPLANATION = QString(i18n("This holds the words of type noun. You can rename it but not delete since the article training relies on it!")); +const QString KEduVocWordType::Private::WORDTYPE_NOUN_MALE_EXPLANATION = QString("This holds the words of type noun male. You can rename it but not delete since the article training relies on it!"); +const QString KEduVocWordType::Private::WORDTYPE_NOUN_FEMALE_EXPLANATION = QString("This holds the words of type noun female. You can rename it but not delete since the article training relies on it!"); +const QString KEduVocWordType::Private::WORDTYPE_NOUN_NEUTRAL_EXPLANATION = QString("This holds the words of type noun neutral. You can rename it but not delete since the article training relies on it!"); -/* - -const QString KEduVocWordType::Private::WORDTYPE_NOUN_MALE = QString("male", "This holds the words of type noun male. You can rename it but not delete since the article training relies on it!"); -const QString KEduVocWordType::Private::WORDTYPE_NOUN_FEMALE = QString("female", "This holds the words of type noun female. You can rename it but not delete since the article training relies on it!"); -const QString KEduVocWordType::Private::WORDTYPE_NOUN_NEUTRAL = QString("neutral", "This holds the words of type noun neutral. You can rename it but not delete since the article training relies on it!"); - -const QString KEduVocWordType::Private::WORDTYPE_VERB = QString("verb", "This holds the words of type verb. You can rename it but not delete since the article training relies on it!"); -const QString KEduVocWordType::Private::WORDTYPE_VERB_REGULAR = QString("regular", "This holds the words of type regular verbs. You can rename it but not delete since the article training relies on it!"); -const QString KEduVocWordType::Private::WORDTYPE_VERB_IRREGULAR = QString("irregular", "This holds the words of type irregular verbs. You can rename it but not delete since the article training relies on it!"); +const QString KEduVocWordType::Private::WORDTYPE_VERB_EXPLANATION = QString("This holds the words of type verb. You can rename it but not delete since the article training relies on it!"); +const QString KEduVocWordType::Private::WORDTYPE_VERB_REGULAR_EXPLANATION = QString("This holds the words of type regular verbs. You can rename it but not delete since the article training relies on it!"); +const QString KEduVocWordType::Private::WORDTYPE_VERB_IRREGULAR_EXPLANATION = QString("This holds the words of type irregular verbs. You can rename it but not delete since the article training relies on it!"); -const QString KEduVocWordType::Private::WORDTYPE_ADJECTIVE = QString("adjective", "This holds the words of type adjective. You can rename it but not delete since the article training relies on it!"); -const QString KEduVocWordType::Private::WORDTYPE_ADVERB = QString("adverb", "This holds the words of type adverb. You can rename it but not delete since the article training relies on it!");*/ +const QString KEduVocWordType::Private::WORDTYPE_ADJECTIVE_EXPLANATION = QString("This holds the words of type adjective. You can rename it but not delete since the article training relies on it!"); +const QString KEduVocWordType::Private::WORDTYPE_ADVERB_EXPLANATION = QString("This holds the words of type adverb. You can rename it but not delete since the article training relies on it!");