summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ConfigureChecks.cmake2
-rwxr-xr-x[-rw-r--r--]atlantik/pics/board/token.pngbin1274 -> 1361 bytes
-rw-r--r--atlantik/tdeio_atlantik/tdeio_atlantik.cpp2
-rw-r--r--katomic/feld.cpp4
-rw-r--r--katomic/feld.h4
-rw-r--r--katomic/gamewidget.cpp4
-rw-r--r--katomic/molek.cpp4
-rw-r--r--katomic/molek.h4
-rw-r--r--katomic/toplevel.cpp2
-rw-r--r--kjumpingcube/kjumpingcube.cpp4
-rw-r--r--kolf/pluginloader.cpp4
-rw-r--r--libtdegames/highscore/khighscore.cpp2
-rw-r--r--libtdegames/highscore/khighscore.h2
-rw-r--r--libtdegames/highscore/tdeconfigrawbackend.h6
-rw-r--r--libtdegames/kcarddialog.cpp14
-rw-r--r--translations/desktop_files/kolf-courses/zh_CN.po17
-rw-r--r--translations/desktop_files/konquest.desktop/zh_Hans.po29
-rw-r--r--translations/desktop_files/ksame.desktop/zh_CN.po15
-rw-r--r--translations/desktop_files/ksokoban.desktop/zh_Hans.po29
-rw-r--r--translations/desktop_files/kspaceduel.desktop/es.po15
20 files changed, 112 insertions, 51 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 765e7393..f625aeee 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -13,7 +13,7 @@
find_package( TQt )
find_package( TDE )
-tde_setup_architecture_flags( )
+tde_setup_compiler_flags( )
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
diff --git a/atlantik/pics/board/token.png b/atlantik/pics/board/token.png
index 439437d3..133f733e 100644..100755
--- a/atlantik/pics/board/token.png
+++ b/atlantik/pics/board/token.png
Binary files differ
diff --git a/atlantik/tdeio_atlantik/tdeio_atlantik.cpp b/atlantik/tdeio_atlantik/tdeio_atlantik.cpp
index 83e59eb1..426a10b3 100644
--- a/atlantik/tdeio_atlantik/tdeio_atlantik.cpp
+++ b/atlantik/tdeio_atlantik/tdeio_atlantik.cpp
@@ -26,7 +26,7 @@
#endif
#endif
#include <tdeio/slavebase.h>
-#include <kinstance.h>
+#include <tdeinstance.h>
#include <tdeprocess.h>
#include "tdeio_atlantik.h"
diff --git a/katomic/feld.cpp b/katomic/feld.cpp
index e8af79eb..bb8f40d1 100644
--- a/katomic/feld.cpp
+++ b/katomic/feld.cpp
@@ -15,7 +15,7 @@
#include <kiconloader.h>
#include <tdeglobal.h>
#include <tdestandarddirs.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include "molek.h"
#include "feld.h"
#include "settings.h"
@@ -67,7 +67,7 @@ void Feld::resetValidDirs()
}
}
-void Feld::load (const KSimpleConfig& config)
+void Feld::load (const TDESimpleConfig& config)
{
if(moving)
this->killTimers();
diff --git a/katomic/feld.h b/katomic/feld.h
index 5f8d5cc4..3af0aa6c 100644
--- a/katomic/feld.h
+++ b/katomic/feld.h
@@ -22,7 +22,7 @@
#define MAX_UNDO (100)
-class KSimpleConfig;
+class TDESimpleConfig;
class Molek;
#define FIELD_SIZE 15
@@ -45,7 +45,7 @@ public:
void startAnimation (Direction dir);
void done ();
- void load (const KSimpleConfig& config);
+ void load (const TDESimpleConfig& config);
void setMolek(Molek *_mol) { mol = _mol; }
diff --git a/katomic/gamewidget.cpp b/katomic/gamewidget.cpp
index 5266e079..0be6a43b 100644
--- a/katomic/gamewidget.cpp
+++ b/katomic/gamewidget.cpp
@@ -35,7 +35,7 @@
#include <tdelocale.h>
#include <tdestandarddirs.h>
#include <tdeglobal.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdeglobalsettings.h>
Options settings;
@@ -143,7 +143,7 @@ void GameWidget::updateLevel (int l)
return updateLevel(1);
}
- KSimpleConfig cfg(levelFile, true);
+ TDESimpleConfig cfg(levelFile, true);
cfg.setGroup("Level");
feld->load(cfg);
diff --git a/katomic/molek.cpp b/katomic/molek.cpp
index bc3d89ad..d59fd37c 100644
--- a/katomic/molek.cpp
+++ b/katomic/molek.cpp
@@ -18,7 +18,7 @@
#include <kiconloader.h>
#include <tdeglobal.h>
#include <tdestandarddirs.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdelocale.h>
#include <kdebug.h>
@@ -47,7 +47,7 @@ const atom& Molek::getAtom(uint index) const
return *atoms.at(index - 1);
}
-void Molek::load (const KSimpleConfig& config)
+void Molek::load (const TDESimpleConfig& config)
{
atoms.clear();
TQString key;
diff --git a/katomic/molek.h b/katomic/molek.h
index b019595c..14386e08 100644
--- a/katomic/molek.h
+++ b/katomic/molek.h
@@ -16,7 +16,7 @@
#include "atom.h"
#include <tqvaluelist.h>
-class KSimpleConfig;
+class TDESimpleConfig;
#define MOLEK_SIZE 15
@@ -29,7 +29,7 @@ public:
Molek (TQWidget *parent=0, const char *name=0);
~Molek ();
- void load(const KSimpleConfig& config);
+ void load(const TDESimpleConfig& config);
const atom& getAtom(uint index) const;
int atomSize() const { return atoms.count(); }
diff --git a/katomic/toplevel.cpp b/katomic/toplevel.cpp
index 40566fc8..4449a5df 100644
--- a/katomic/toplevel.cpp
+++ b/katomic/toplevel.cpp
@@ -23,7 +23,7 @@
#include <tdeglobal.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <tdeapplication.h>
diff --git a/kjumpingcube/kjumpingcube.cpp b/kjumpingcube/kjumpingcube.cpp
index dc5ba705..38840680 100644
--- a/kjumpingcube/kjumpingcube.cpp
+++ b/kjumpingcube/kjumpingcube.cpp
@@ -136,7 +136,7 @@ void KJumpingCube::saveGame(bool saveAs)
KTempFile tempFile;
tempFile.setAutoDelete(true);
- KSimpleConfig config(tempFile.name());
+ TDESimpleConfig config(tempFile.name());
config.setGroup("KJumpingCube");
config.writeEntry("Version",KJC_VERSION);
@@ -178,7 +178,7 @@ void KJumpingCube::openGame()
TQString tempFile;
if( TDEIO::NetAccess::download( url, tempFile, this ) )
{
- KSimpleConfig config(tempFile,true);
+ TDESimpleConfig config(tempFile,true);
config.setGroup("KJumpingCube");
if(!config.hasKey("Version"))
{
diff --git a/kolf/pluginloader.cpp b/kolf/pluginloader.cpp
index 7df00ab0..63e773fa 100644
--- a/kolf/pluginloader.cpp
+++ b/kolf/pluginloader.cpp
@@ -7,7 +7,7 @@
#include <kdebug.h>
#include <tdeglobal.h>
#include <tdestandarddirs.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <klibloader.h>
#include "pluginloader.h"
@@ -21,7 +21,7 @@ ObjectList *PluginLoader::loadAll()
for (TQStringList::Iterator it = files.begin(); it != files.end(); ++it)
{
- KSimpleConfig cfg(*it);
+ TDESimpleConfig cfg(*it);
TQString filename(cfg.readEntry("Filename", ""));
libs.append(filename);
diff --git a/libtdegames/highscore/khighscore.cpp b/libtdegames/highscore/khighscore.cpp
index 35503301..bdc82845 100644
--- a/libtdegames/highscore/khighscore.cpp
+++ b/libtdegames/highscore/khighscore.cpp
@@ -27,7 +27,7 @@
#include <sys/file.h>
#include <tdeapplication.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdeglobal.h>
#include <kstdguiitem.h>
#include <tdelocale.h>
diff --git a/libtdegames/highscore/khighscore.h b/libtdegames/highscore/khighscore.h
index b313ac9f..f3b3473e 100644
--- a/libtdegames/highscore/khighscore.h
+++ b/libtdegames/highscore/khighscore.h
@@ -295,7 +295,7 @@ protected:
/**
* @return A pointer to the TDEConfig object to be used. This is
- * either tdeApp->config() (default) or a KSimpleConfig object for
+ * either tdeApp->config() (default) or a TDESimpleConfig object for
* a system-wide highscore file.
**/
TDEConfig* config() const;
diff --git a/libtdegames/highscore/tdeconfigrawbackend.h b/libtdegames/highscore/tdeconfigrawbackend.h
index fdaeb88a..4ae90f8f 100644
--- a/libtdegames/highscore/tdeconfigrawbackend.h
+++ b/libtdegames/highscore/tdeconfigrawbackend.h
@@ -23,7 +23,7 @@
#include <tqfile.h>
#include <tdeconfigbackend.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
class TDEConfigRawBackEnd : public TDEConfigINIBackEnd
@@ -45,13 +45,13 @@ private:
TDEConfigRawBackEndPrivate *d;
};
-class KRawConfig : public KSimpleConfig
+class KRawConfig : public TDESimpleConfig
{
TQ_OBJECT
public:
KRawConfig(int fd, bool readOnly)
- : KSimpleConfig(new TDEConfigRawBackEnd(this, fd), readOnly) {}
+ : TDESimpleConfig(new TDEConfigRawBackEnd(this, fd), readOnly) {}
};
diff --git a/libtdegames/kcarddialog.cpp b/libtdegames/kcarddialog.cpp
index 3a7e98cf..e3735fec 100644
--- a/libtdegames/kcarddialog.cpp
+++ b/libtdegames/kcarddialog.cpp
@@ -35,7 +35,7 @@
#include <tdelocale.h>
#include <tdestandarddirs.h>
#include <kiconview.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include "kcarddialog.h"
#include <tqpushbutton.h>
@@ -464,7 +464,7 @@ void KCardDialog::insertCardIcons()
for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it)
{
- KSimpleConfig cfg(*it);
+ TDESimpleConfig cfg(*it);
cfg.setGroup(TQString::fromLatin1("KDE Backdeck"));
TQString path = (*it).left((*it).findRev('/') + 1);
assert(path[path.length() - 1] == '/');
@@ -500,7 +500,7 @@ void KCardDialog::insertDeckIcons()
for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it)
{
- KSimpleConfig cfg(*it);
+ TDESimpleConfig cfg(*it);
TQPixmap pixmap(getDeckName(*it));
if (pixmap.isNull())
continue;
@@ -742,7 +742,7 @@ void KCardDialog::saveConfig(TDEConfig* conf)
void KCardDialog::slotSetGlobalDeck()
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), false);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), false);
conf->setGroup(CONF_GLOBAL_GROUP);
conf->writeEntry(CONF_GLOBAL_DECK, deck());
@@ -753,7 +753,7 @@ void KCardDialog::slotSetGlobalDeck()
void KCardDialog::slotSetGlobalCardDir()
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), false);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), false);
conf->setGroup(CONF_GLOBAL_GROUP);
conf->writePathEntry(CONF_GLOBAL_CARDDIR, cardDir());
@@ -764,7 +764,7 @@ void KCardDialog::slotSetGlobalCardDir()
void KCardDialog::getGlobalDeck(TQString& deck, bool& random)
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), true);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), true);
conf->setGroup(CONF_GLOBAL_GROUP);
if (!conf->hasKey(CONF_GLOBAL_DECK) || conf->readBoolEntry(CONF_GLOBAL_RANDOMDECK, false)) {
@@ -780,7 +780,7 @@ void KCardDialog::getGlobalDeck(TQString& deck, bool& random)
void KCardDialog::getGlobalCardDir(TQString& dir, bool& random)
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), true);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), true);
conf->setGroup(CONF_GLOBAL_GROUP);
if (!conf->hasKey(CONF_GLOBAL_CARDDIR) || conf->readBoolEntry(CONF_GLOBAL_RANDOMCARDDIR, false)) {
diff --git a/translations/desktop_files/kolf-courses/zh_CN.po b/translations/desktop_files/kolf-courses/zh_CN.po
index 55a877ee..d273d230 100644
--- a/translations/desktop_files/kolf-courses/zh_CN.po
+++ b/translations/desktop_files/kolf-courses/zh_CN.po
@@ -1,25 +1,26 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
+# Toad114514 <xiaolan2332021@163.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-10 17:13+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2025-08-29 20:11+0000\n"
+"Last-Translator: Toad114514 <xiaolan2332021@163.com>\n"
+"Language-Team: Chinese (Simplified Han script) <https://mirror.git."
+"trinitydesktop.org/weblate/projects/tdegames/kolf-courses/zh_Hans/>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.18.2\n"
#. Name
#: intro:2
msgid "Intro"
-msgstr ""
+msgstr "入坑"
#. Name
#: tutorial.kolf:2
@@ -198,7 +199,7 @@ msgstr "真的很容易"
#. Name
#: courses/USApro:2
msgid "USA Pro"
-msgstr ""
+msgstr "高级 USA"
#. Comment
#: courses/USApro:44
diff --git a/translations/desktop_files/konquest.desktop/zh_Hans.po b/translations/desktop_files/konquest.desktop/zh_Hans.po
new file mode 100644
index 00000000..b035e549
--- /dev/null
+++ b/translations/desktop_files/konquest.desktop/zh_Hans.po
@@ -0,0 +1,29 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Toad114514 <xiaolan2332021@163.com>, 2025.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-06-10 17:27+0200\n"
+"PO-Revision-Date: 2025-08-29 20:11+0000\n"
+"Last-Translator: Toad114514 <xiaolan2332021@163.com>\n"
+"Language-Team: Chinese (Simplified Han script) <https://mirror.git."
+"trinitydesktop.org/weblate/projects/tdegames/konquest-konquestdesktop/"
+"zh_Hans/>\n"
+"Language: zh_Hans\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.18.2\n"
+
+#. Name
+#: konquest.desktop:3
+msgid "Konquest"
+msgstr "Konquest 征服"
+
+#. GenericName
+#: konquest.desktop:6
+msgid "Galactic Strategy Game"
+msgstr "哇还有星球争霸赛"
diff --git a/translations/desktop_files/ksame.desktop/zh_CN.po b/translations/desktop_files/ksame.desktop/zh_CN.po
index d1a58037..c7dfa1a5 100644
--- a/translations/desktop_files/ksame.desktop/zh_CN.po
+++ b/translations/desktop_files/ksame.desktop/zh_CN.po
@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
+# Toad114514 <xiaolan2332021@163.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-10 18:01+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2025-08-29 20:11+0000\n"
+"Last-Translator: Toad114514 <xiaolan2332021@163.com>\n"
+"Language-Team: Chinese (Simplified Han script) <https://mirror.git."
+"trinitydesktop.org/weblate/projects/tdegames/ksame-ksamedesktop/zh_Hans/>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.18.2\n"
#. Name
#: ksame.desktop:2
@@ -24,4 +25,4 @@ msgstr ""
#. GenericName
#: ksame.desktop:6
msgid "Board Game"
-msgstr "棋类游戏"
+msgstr "小球消消乐"
diff --git a/translations/desktop_files/ksokoban.desktop/zh_Hans.po b/translations/desktop_files/ksokoban.desktop/zh_Hans.po
new file mode 100644
index 00000000..8673802b
--- /dev/null
+++ b/translations/desktop_files/ksokoban.desktop/zh_Hans.po
@@ -0,0 +1,29 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Toad114514 <xiaolan2332021@163.com>, 2025.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-06-10 19:16+0200\n"
+"PO-Revision-Date: 2025-08-29 20:11+0000\n"
+"Last-Translator: Toad114514 <xiaolan2332021@163.com>\n"
+"Language-Team: Chinese (Simplified Han script) <https://mirror.git."
+"trinitydesktop.org/weblate/projects/tdegames/ksokoban-ksokobandesktop/"
+"zh_Hans/>\n"
+"Language: zh_Hans\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.18.2\n"
+
+#. Name
+#: data/ksokoban.desktop:2
+msgid "KSokoban"
+msgstr "KSokoban"
+
+#. GenericName
+#: data/ksokoban.desktop:3
+msgid "Sokoban Game"
+msgstr "TDE 笑转之推推箱(子)"
diff --git a/translations/desktop_files/kspaceduel.desktop/es.po b/translations/desktop_files/kspaceduel.desktop/es.po
index e7030022..da6b8bf5 100644
--- a/translations/desktop_files/kspaceduel.desktop/es.po
+++ b/translations/desktop_files/kspaceduel.desktop/es.po
@@ -1,25 +1,26 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
+# titae <benjamin.m21@outlook.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-10 19:17+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2025-06-15 03:21+0000\n"
+"Last-Translator: titae <benjamin.m21@outlook.com>\n"
+"Language-Team: Spanish <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/tdegames/kspaceduel-kspacedueldesktop/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.18.2\n"
#. Name
#: kspaceduel.desktop:2
msgid "KSpaceDuel"
-msgstr ""
+msgstr "KSpaceDuel"
#. GenericName
#: kspaceduel.desktop:5