From 5d5fc1735768cdd56611847d6cfef0b534d3eba6 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Sun, 1 Jun 2008 11:22:35 +0000 Subject: [PATCH] Re: Wrong translator's comment for libkdeedu Fix cardinal and ordinal mixup. Thank you Karl Ove Hufthammer! CCMAIL: kde-i18n-doc@kde.org svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=815179 --- keduvocdocument/keduvockvtmlcompability.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/keduvocdocument/keduvockvtmlcompability.cpp b/keduvocdocument/keduvockvtmlcompability.cpp index 1475dc8..3c6686d 100644 --- a/keduvocdocument/keduvockvtmlcompability.cpp +++ b/keduvocdocument/keduvockvtmlcompability.cpp @@ -59,8 +59,8 @@ void KEduVocKvtmlCompability::initOldTypeLists() m_oldSubTypeNames.clear(); - m_oldSubTypeNames.insert( "ord", i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Ordinal (one, two, three, ...)","Ordinal" ) ); - m_oldSubTypeNames.insert( "crd", i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Cardinal (first, second, third, ...)","Cardinal" ) ); + m_oldSubTypeNames.insert( "ord", i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Ordinal (first, second, third, ...)","Ordinal" ) ); + m_oldSubTypeNames.insert( "crd", i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Cardinal (one, two, three, ...)","Cardinal" ) ); m_oldSubTypeNames.insert( "def", i18nc( "@item:inlistbox A subtype of the grammatical word type: Article (the)","Definite" ) ); m_oldSubTypeNames.insert( "ind", i18nc( "@item:inlistbox A subtype of the grammatical word type: Article (a)","Indefinite" ) ); m_oldSubTypeNames.insert( "re", i18nc( "@item:inlistbox A subtype of the grammatical word type: Verb with regular conjugation","Regular" ) ); @@ -248,10 +248,10 @@ void KEduVocKvtmlCompability::setupWordTypes(KEduVocWordType * parent) KEduVocWordType* numeral = static_cast(parent->childContainer(8)); KEduVocWordType* wordType = new KEduVocWordType( - i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Ordinal (one, two, three, ...)","Ordinal" ), numeral); + i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Ordinal (first, second, third, ...)","Ordinal" ), numeral); numeral->appendChildContainer(wordType); wordType = new KEduVocWordType( - i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Cardinal (first, second, third, ...)","Cardinal" ), numeral); + i18nc( "@item:inlistbox A subtype of the grammatical word type: Numeral Cardinal (one, two, three, ...)","Cardinal" ), numeral); numeral->appendChildContainer(wordType); KEduVocWordType* article = static_cast(parent->childContainer(3)); -- 2.47.3