diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:07:55 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:07:55 -0600 |
commit | 3ad1b623ac4af0f19db3580e4ef6b0d923260ba0 (patch) | |
tree | 3b77748c913634d88310c7933877b201532d4ae1 /tools | |
parent | e02e31c8b9d854cd62cbe9799228f6e08e882773 (diff) | |
download | tqt3-3ad1b623ac4af0f19db3580e4ef6b0d923260ba0.tar.gz tqt3-3ad1b623ac4af0f19db3580e4ef6b0d923260ba0.zip |
Sync again
Diffstat (limited to 'tools')
-rw-r--r-- | tools/linguist/book/linguist-programmer.leaf | 2 | ||||
-rw-r--r-- | tools/linguist/book/linguist-translator.leaf | 2 | ||||
-rw-r--r-- | tools/qconfig/main.cpp | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tools/linguist/book/linguist-programmer.leaf b/tools/linguist/book/linguist-programmer.leaf index d1c1d33dc..ecf2689a5 100644 --- a/tools/linguist/book/linguist-programmer.leaf +++ b/tools/linguist/book/linguist-programmer.leaf @@ -149,7 +149,7 @@ or QObject::tr("&Quit") \endcode -\section2 Distinguishing Identical Strings That Retquire Different +\section2 Distinguishing Identical Strings That Require Different Translations \index Translation Contexts diff --git a/tools/linguist/book/linguist-translator.leaf b/tools/linguist/book/linguist-translator.leaf index f20c270e0..7a71b6aeb 100644 --- a/tools/linguist/book/linguist-translator.leaf +++ b/tools/linguist/book/linguist-translator.leaf @@ -141,7 +141,7 @@ navigate using the Translation menu. If you want to go to a different context entirely, click the context you want to work on in the Context list, then click the source text in the Source Text area. -\section2 Phrases That Retquire Multiple Translations Depending on Context +\section2 Phrases That Require Multiple Translations Depending on Context \index Contexts!for Translation \index Comments!for Translators diff --git a/tools/qconfig/main.cpp b/tools/qconfig/main.cpp index f2f422c1c..a56001132 100644 --- a/tools/qconfig/main.cpp +++ b/tools/qconfig/main.cpp @@ -344,7 +344,7 @@ void Main::testAll() c += section[*it]; c += "\n"; - c += "Retquires: "; + c += "Requires: "; c += dependencies[*it].join(" "); c += "\n"; @@ -445,7 +445,7 @@ void Main::loadFeatures(const TQString& filename) TQString value = line.mid(colon+1).stripWhiteSpace(); if ( tag == "Feature" ) feature = value; - else if ( tag == "Retquires" ) + else if ( tag == "Requires" ) deps = TQStringList::split(TQChar(' '),value); else if ( tag == "Name" ) lab = value; @@ -630,7 +630,7 @@ void Main::showInfo(TQListViewItem* i) TQString i = choice->info(); TQStringList deps = dependencies[choice->id]; if ( !deps.isEmpty() ) { - i += "<h3>Retquires:</h3><ul>"; + i += "<h3>Requires:</h3><ul>"; for (TQStringList::ConstIterator it = deps.begin(); it != deps.end(); ++it) { |