diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 20:03:01 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 21:02:21 +0200 |
commit | 5cc26ceed345bb95cb1defab204b631cb79319de (patch) | |
tree | 9c80b1750fe99cb93f51a1724a6f32daa53f30fe /poxml | |
parent | 412ffbefddef8bfe1c454bd9c275e13fd8319ca1 (diff) | |
download | tdesdk-5cc26ceed345bb95cb1defab204b631cb79319de.tar.gz tdesdk-5cc26ceed345bb95cb1defab204b631cb79319de.zip |
Additional k => tde renaming and fixes
Diffstat (limited to 'poxml')
-rw-r--r-- | poxml/Makefile.am | 10 | ||||
-rw-r--r-- | poxml/lauri.po | 2 | ||||
-rw-r--r-- | poxml/transxx.cpp | 2 | ||||
-rw-r--r-- | poxml/xml2pot.cpp | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/poxml/Makefile.am b/poxml/Makefile.am index a17a445c..a0b202c2 100644 --- a/poxml/Makefile.am +++ b/poxml/Makefile.am @@ -7,23 +7,23 @@ KDE_CXXFLAGS = $(USE_EXCEPTIONS) SUBDIRS = antlr split2po_SOURCES = split.cpp parser.cpp -split2po_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +split2po_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor split2po_LDADD = $(LIB_QT) xml2pot_SOURCES = xml2pot.cpp parser.cpp -xml2pot_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +xml2pot_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor xml2pot_LDADD = $(LIB_QT) po2xml_SOURCES = GettextLexer.cpp GettextParser.cpp po2xml.cpp parser.cpp -po2xml_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +po2xml_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor po2xml_LDADD = antlr/src/libantlr.la $(LIB_QT) swappo_SOURCES = GettextLexer.cpp GettextParser.cpp swappo.cpp parser.cpp -swappo_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +swappo_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor swappo_LDADD = antlr/src/libantlr.la $(LIB_QT) transxx_SOURCES = GettextLexer.cpp GettextParser.cpp transxx.cpp parser.cpp -transxx_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +transxx_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor transxx_LDADD = antlr/src/libantlr.la $(LIB_QT) parser: diff --git a/poxml/lauri.po b/poxml/lauri.po index 6384835c..d212f69a 100644 --- a/poxml/lauri.po +++ b/poxml/lauri.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2001-02-09 01:25+0100\n" "PO-Revision-Date: 2001-07-02 20:31MET\n" "Last-Translator: Stephan Kulow <coolo@kde.org>\n" -"Language-Team: german <tde-i18n-de@kde.org>\n" +"Language-Team: german <kde-i18n-de@kde.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/poxml/transxx.cpp b/poxml/transxx.cpp index ef451fe0..1ffff4a8 100644 --- a/poxml/transxx.cpp +++ b/poxml/transxx.cpp @@ -60,7 +60,7 @@ int main(int argc, char **argv) projectId += fi.baseName( false ); headerLines.gres( TQRegExp( "^Project-Id-Version:.*" ), projectId ); headerLines.gres( TQRegExp( "^Last-Translator:.*" ), "Last-Translator: transxx program <null@kde.org>" ); - headerLines.gres( TQRegExp( "^Language-Team:.*" ), "Language-Team: Test Language <tde-i18n-doc@kde.org>" ); + headerLines.gres( TQRegExp( "^Language-Team:.*" ), "Language-Team: Test Language <kde-i18n-doc@kde.org>" ); TQString revisionDate ( "PO-Revision-Date: " ); const TQDateTime dt = TQDateTime::currentDateTime( Qt::UTC ); revisionDate += dt.toString( "yyyy-MM-dd hh:mm+0000" ); diff --git a/poxml/xml2pot.cpp b/poxml/xml2pot.cpp index d3af9a0e..47b8f547 100644 --- a/poxml/xml2pot.cpp +++ b/poxml/xml2pot.cpp @@ -46,7 +46,7 @@ int main( int argc, char **argv ) cout << "\"POT-Creation-Date: " << now.toString("yyyy-MM-dd hh:mm").utf8().data() << "+0000\\n\"\n"; cout << "\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n"; cout << "\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n"; - cout << "\"Language-Team: LANGUAGE <tde-i18n-doc@kde.org>\\n\"\n"; + cout << "\"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\\n\"\n"; cout << "\"MIME-Version: 1.0\\n\"\n"; cout << "\"Content-Type: application/x-xml2pot; charset=UTF-8\\n\"\n"; cout << "\"Content-Transfer-Encoding: 8bit\\n\"\n"; |