summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-03-13 10:33:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-03-13 10:33:47 +0900
commita7d0c9e487de9ae8c41d16c6da218151e3412cf3 (patch)
treefa1d62a720241045cb5096856b9d3d4c58b2b408
parent55ea90e756410fb86e28de6ed7bd5cc7254f0920 (diff)
downloadtellico-a7d0c9e487de9ae8c41d16c6da218151e3412cf3.tar.gz
tellico-a7d0c9e487de9ae8c41d16c6da218151e3412cf3.zip
cmake files: change keywords to lower case
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--doc/en/advanced.docbook2
-rw-r--r--doc/en/faqs.docbook2
-rw-r--r--doc/fr/advanced.docbook2
-rw-r--r--doc/fr/faqs.docbook2
-rw-r--r--doc/man/tellico.110
-rw-r--r--src/gui/listview.cpp2
-rw-r--r--src/mainwindow.cpp4
-rw-r--r--src/rtf2html/rtf2html.cpp2
-rw-r--r--translations/messages/ca.po2
-rw-r--r--translations/messages/cs.po2
-rw-r--r--translations/messages/ee.po2
-rw-r--r--translations/messages/en_GB.po2
-rw-r--r--translations/messages/es.po2
-rw-r--r--translations/messages/fi.po2
-rw-r--r--translations/messages/fr.po2
-rw-r--r--translations/messages/hu.po2
-rw-r--r--translations/messages/nb.po2
-rw-r--r--translations/messages/nl.po2
-rw-r--r--translations/messages/nn.po2
-rw-r--r--translations/messages/pl.po2
-rw-r--r--translations/messages/pt.po2
-rw-r--r--translations/messages/pt_BR.po2
-rw-r--r--translations/messages/ru.po2
-rw-r--r--translations/messages/sv.po2
-rw-r--r--translations/messages/tr.po2
-rw-r--r--translations/messages/uk.po2
26 files changed, 31 insertions, 31 deletions
diff --git a/doc/en/advanced.docbook b/doc/en/advanced.docbook
index 6703e23..f45d474 100644
--- a/doc/en/advanced.docbook
+++ b/doc/en/advanced.docbook
@@ -9,7 +9,7 @@ When running &appname; from the command line, there are several options for open
</para>
<programlisting>
-Usage: tellico [Qt-options] [KDE-options] [options] [filename]
+Usage: tellico [TQt-options] [TDE-options] [options] [filename]
Tellico - a collection manager for KDE
diff --git a/doc/en/faqs.docbook b/doc/en/faqs.docbook
index 387b301..b7a83f5 100644
--- a/doc/en/faqs.docbook
+++ b/doc/en/faqs.docbook
@@ -108,7 +108,7 @@ might also want to use
takes a bit more memory when compiling, but is more efficient when
running the application.</para>
-<para>The last message is slightly different, it just means your Qt
+<para>The last message is slightly different, it just means your TQt
installation was compiled with some debugging information.</para>
<para>Or, if &appname; is already installed, run
diff --git a/doc/fr/advanced.docbook b/doc/fr/advanced.docbook
index a238523..dec1bbe 100644
--- a/doc/fr/advanced.docbook
+++ b/doc/fr/advanced.docbook
@@ -11,7 +11,7 @@ exécutant <userinput>tellico --help</userinput>.
</para>
<programlisting>
-Usage: tellico [Qt-options] [KDE-options] [options] [filename]
+Usage: tellico [TQt-options] [TDE-options] [options] [filename]
Tellico - a collection manager for KDE
diff --git a/doc/fr/faqs.docbook b/doc/fr/faqs.docbook
index efa5ed7..b5ead4c 100644
--- a/doc/fr/faqs.docbook
+++ b/doc/fr/faqs.docbook
@@ -120,7 +120,7 @@ un peu plus de mémoire lors de la compilation, mais rend l'application
plus efficace à l'exécution.</para>
<para>Le dernier message est légèrement différent, il indique que votre
-installation de Qt a été compilée avec des informations de déboggage.</para>
+installation de TQt a été compilée avec des informations de déboggage.</para>
<para>Ou, si &appname; est déjà installé, executez
<userinput><command>tdedebugdialog</command></userinput> et assurez-vous
diff --git a/doc/man/tellico.1 b/doc/man/tellico.1
index 2ca087b..02b313b 100644
--- a/doc/man/tellico.1
+++ b/doc/man/tellico.1
@@ -12,8 +12,8 @@ Tellico \- a collection manager for TDE
\fB\-\-help\fR
Show help about options
.TP
-\fB\-\-help\-qt\fR
-Show Qt specific options
+\fB\-\-help\-tqt\fR
+Show TQt specific options
.TP
\fB\-\-help\-tde\fR
Show TDE specific options
@@ -51,13 +51,13 @@ filename
File to open
.SH "SEE ALSO"
The full documentation for
-.B Qt:
+.B TQt:
is maintained as a Texinfo manual. If the
.B info
and
-.B Qt:
+.B TQt:
programs are properly installed at your site, the command
.IP
-.B info Qt:
+.B info TQt:
.PP
should give you access to the complete manual.
diff --git a/src/gui/listview.cpp b/src/gui/listview.cpp
index 2634097..88afc55 100644
--- a/src/gui/listview.cpp
+++ b/src/gui/listview.cpp
@@ -234,7 +234,7 @@ void ListView::drawContentsOffset(TQPainter* p, int ox, int oy, int cx, int cy,
/* ****************** ListViewItem ********************* */
ListViewItem::~ListViewItem() {
- // I think there's a bug in qt where the children of this item are deleted after the item itself
+ // I think there's a bug in tqt where the children of this item are deleted after the item itself
// as a result, there is no listView() pointer for the children, that obvious causes
// a problem with updating the selection. So we MUST call clear() here ourselves!
clear();
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 5901dd9..e284014 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -1651,7 +1651,7 @@ void MainWindow::slotUpdateCollectionToolBar(Data::CollPtr coll_) {
if(tb) {
KComboBox* cb = tb->getCombo(m_entryGrouping->itemId(i));
if(cb) {
- // qt caches the combobox size and never recalculates the sizeHint()
+ // tqt caches the combobox size and never recalculates the sizeHint()
// the source code recommends calling setFont to invalidate the sizeHint
cb->setFont(cb->font());
cb->updateGeometry();
@@ -1836,7 +1836,7 @@ void MainWindow::setFilter(const TQString& text_) {
}
}
// if the text contains any non-word characters, assume it's a regexp
- // but \W in qt is letter, number, or '_', I want to be a bit less strict
+ // but \W in tqt is letter, number, or '_', I want to be a bit less strict
TQRegExp rx(TQString::fromLatin1("[^\\w\\s-']"));
if(text.find(rx) == -1) {
// split by whitespace, and add rules for each word
diff --git a/src/rtf2html/rtf2html.cpp b/src/rtf2html/rtf2html.cpp
index 6940608..abd4a0c 100644
--- a/src/rtf2html/rtf2html.cpp
+++ b/src/rtf2html/rtf2html.cpp
@@ -14,7 +14,7 @@
* *
***************************************************************************/
-// force to use QT with STL
+// force to use TQt with STL
#if defined(TQT_NO_STL)
# define DISABLE_TQT_NO_STL
# undef TQT_NO_STL
diff --git a/translations/messages/ca.po b/translations/messages/ca.po
index 5197beb..6395fcf 100644
--- a/translations/messages/ca.po
+++ b/translations/messages/ca.po
@@ -2903,7 +2903,7 @@ msgstr "Hi ha un error en l'anàlisi sintàctic XML a la línia %1, columna %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "El missatge d'error de Qt es:"
+msgstr "El missatge d'error de TQt es:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/cs.po b/translations/messages/cs.po
index 8564409..a98f688 100644
--- a/translations/messages/cs.po
+++ b/translations/messages/cs.po
@@ -2921,7 +2921,7 @@ msgstr "Při načítání XML byla na řádce %1, sloupci %2 chyba."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Chybová zpráva z Qt je:"
+msgstr "Chybová zpráva z TQt je:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/ee.po b/translations/messages/ee.po
index 521508e..52cf109 100644
--- a/translations/messages/ee.po
+++ b/translations/messages/ee.po
@@ -3024,7 +3024,7 @@ msgstr "XML sõelumisel on viga real %1, veerus %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Qt veateade:"
+msgstr "TQt veateade:"
#: filehandler.cpp:206
#, fuzzy, c-format
diff --git a/translations/messages/en_GB.po b/translations/messages/en_GB.po
index 781c5b0..66d2071 100644
--- a/translations/messages/en_GB.po
+++ b/translations/messages/en_GB.po
@@ -2913,7 +2913,7 @@ msgstr "There is an XML parsing error in line %1, column %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "The error message from Qt is:"
+msgstr "The error message from TQt is:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/es.po b/translations/messages/es.po
index 5ddbf95..862d1e8 100644
--- a/translations/messages/es.po
+++ b/translations/messages/es.po
@@ -2961,7 +2961,7 @@ msgstr "Hay un error de análisis sintáctico de XML en la línea %1, columna %2
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "El mensaje de error de Qt es:"
+msgstr "El mensaje de error de TQt es:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/fi.po b/translations/messages/fi.po
index b2ba41b..7b4447e 100644
--- a/translations/messages/fi.po
+++ b/translations/messages/fi.po
@@ -2917,7 +2917,7 @@ msgstr "Virhe XML:n tulkkauksessa. Virhe rivillä %1, sarakkeessa %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Qt:n virheilmoitus:"
+msgstr "TQt:n virheilmoitus:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/fr.po b/translations/messages/fr.po
index 7d4bc98..893fddc 100644
--- a/translations/messages/fr.po
+++ b/translations/messages/fr.po
@@ -2949,7 +2949,7 @@ msgstr "Une erreur d'analyse XML est survenue ligne %1, colonne %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Le message d'erreur de Qt est:"
+msgstr "Le message d'erreur de TQt est:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/hu.po b/translations/messages/hu.po
index 229f143..bf2e026 100644
--- a/translations/messages/hu.po
+++ b/translations/messages/hu.po
@@ -2910,7 +2910,7 @@ msgstr "A %1 sor, %2 oszlopában XML hiba van."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "A Qt hibaüzenet a következő:"
+msgstr "A TQt hibaüzenet a következő:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/nb.po b/translations/messages/nb.po
index c0015ae..8cdea0d 100644
--- a/translations/messages/nb.po
+++ b/translations/messages/nb.po
@@ -3039,7 +3039,7 @@ msgstr "Det er en XML sammenflettingsfeil på linje %1, kolonne %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Feilmeldingen fra QT er:"
+msgstr "Feilmeldingen fra TQt er:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/nl.po b/translations/messages/nl.po
index b4bc8b3..2deb787 100644
--- a/translations/messages/nl.po
+++ b/translations/messages/nl.po
@@ -3013,7 +3013,7 @@ msgstr "Er is een XML parsing fout op lijn %1, kolom %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "De fout melding van QT is:"
+msgstr "De fout melding van TQt is:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/nn.po b/translations/messages/nn.po
index 27eb0a7..e64fc32 100644
--- a/translations/messages/nn.po
+++ b/translations/messages/nn.po
@@ -2902,7 +2902,7 @@ msgstr "Det oppstod ein XML-tolkefeil i linje %1, kolonne %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Feilmeldinga frå Qt er:"
+msgstr "Feilmeldinga frå TQt er:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/pl.po b/translations/messages/pl.po
index 9b88fc0..1a98cde 100644
--- a/translations/messages/pl.po
+++ b/translations/messages/pl.po
@@ -2992,7 +2992,7 @@ msgstr "Błąd parsowania XML, linia %1, kolumna %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Komunikat błędu z Qt:"
+msgstr "Komunikat błędu z TQt:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/pt.po b/translations/messages/pt.po
index 80ab6c7..56b0aea 100644
--- a/translations/messages/pt.po
+++ b/translations/messages/pt.po
@@ -2942,7 +2942,7 @@ msgstr "Um erro de análise XML apareceu na linha %1, coluna %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "A mensagem de erro de Qt é:"
+msgstr "A mensagem de erro de TQt é:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/pt_BR.po b/translations/messages/pt_BR.po
index 96a059d..0c59434 100644
--- a/translations/messages/pt_BR.po
+++ b/translations/messages/pt_BR.po
@@ -2949,7 +2949,7 @@ msgstr "Há um erro de análise XML na linha %1, coluna %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "A mensagem de erro do Qt é:"
+msgstr "A mensagem de erro do TQt é:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/ru.po b/translations/messages/ru.po
index 38fbb33..d3ec482 100644
--- a/translations/messages/ru.po
+++ b/translations/messages/ru.po
@@ -2908,7 +2908,7 @@ msgstr "Произошла ошибка считывания XML в строке
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Ошибка QT:"
+msgstr "Ошибка TQt:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/sv.po b/translations/messages/sv.po
index b7a3ccd..44d58c0 100644
--- a/translations/messages/sv.po
+++ b/translations/messages/sv.po
@@ -2926,7 +2926,7 @@ msgstr "Fel i XML, rad %1, kolumn %2."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Felmeddelandet från Qt är:"
+msgstr "Felmeddelandet från TQt är:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/tr.po b/translations/messages/tr.po
index 9cd0245..9fad2ee 100644
--- a/translations/messages/tr.po
+++ b/translations/messages/tr.po
@@ -2938,7 +2938,7 @@ msgstr "%2 sütununda ve %1 sırasında bir XML kodlama hatası mevcut."
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Qt den gelen hata mesajı:"
+msgstr "TQt den gelen hata mesajı:"
#: filehandler.cpp:206
#, c-format
diff --git a/translations/messages/uk.po b/translations/messages/uk.po
index 4940643..3ecf601 100644
--- a/translations/messages/uk.po
+++ b/translations/messages/uk.po
@@ -2906,7 +2906,7 @@ msgstr "Відбулася помилка XML у рядку %1 та стовпц
#: translators/xmlimporter.cpp:45 translators/xmlimporter.cpp:62
#, fuzzy
msgid "The error message from TQt is:"
-msgstr "Помилка від QT:"
+msgstr "Помилка від TQt:"
#: filehandler.cpp:206
#, c-format