summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/moz-sdk/jni_md.h16
-rw-r--r--src/moz-sdk/jri_md.h29
-rw-r--r--src/moz-sdk/npapi.h15
-rw-r--r--src/moz-sdk/nptypes.h2
-rw-r--r--translations/desktop_files/es.po16
-rw-r--r--translations/messages/ar.po4
-rw-r--r--translations/messages/be.po4
-rw-r--r--translations/messages/br.po4
-rw-r--r--translations/messages/bs.po4
-rw-r--r--translations/messages/ca.po4
-rw-r--r--translations/messages/cs.po4
-rw-r--r--translations/messages/csb.po4
-rw-r--r--translations/messages/cy.po4
-rw-r--r--translations/messages/da.po4
-rw-r--r--translations/messages/de.po4
-rw-r--r--translations/messages/el.po4
-rw-r--r--translations/messages/en_GB.po4
-rw-r--r--translations/messages/es.po4
-rw-r--r--translations/messages/et.po4
-rw-r--r--translations/messages/fi.po4
-rw-r--r--translations/messages/fr.po4
-rw-r--r--translations/messages/ga.po4
-rw-r--r--translations/messages/gl.po4
-rw-r--r--translations/messages/he.po4
-rw-r--r--translations/messages/hi.po4
-rw-r--r--translations/messages/hu.po4
-rw-r--r--translations/messages/is.po4
-rw-r--r--translations/messages/it.po4
-rw-r--r--translations/messages/ja.po4
-rw-r--r--translations/messages/ka.po4
-rw-r--r--translations/messages/lt.po4
-rw-r--r--translations/messages/mt.po4
-rw-r--r--translations/messages/nb.po4
-rw-r--r--translations/messages/nl.po4
-rw-r--r--translations/messages/nn.po4
-rw-r--r--translations/messages/pa.po4
-rw-r--r--translations/messages/pl.po4
-rw-r--r--translations/messages/pt.po4
-rw-r--r--translations/messages/pt_BR.po4
-rw-r--r--translations/messages/ro.po4
-rw-r--r--translations/messages/ru.po4
-rw-r--r--translations/messages/rw.po4
-rw-r--r--translations/messages/sk.po4
-rw-r--r--translations/messages/sr.po4
-rw-r--r--translations/messages/[email protected]4
-rw-r--r--translations/messages/sv.po4
-rw-r--r--translations/messages/ta.po4
-rw-r--r--translations/messages/tr.po4
-rw-r--r--translations/messages/uk.po4
-rw-r--r--translations/messages/zh_CN.po184
50 files changed, 196 insertions, 242 deletions
diff --git a/src/moz-sdk/jni_md.h b/src/moz-sdk/jni_md.h
index 22d0de9..2274410 100644
--- a/src/moz-sdk/jni_md.h
+++ b/src/moz-sdk/jni_md.h
@@ -65,7 +65,7 @@
* This is where we define the mystical JNI_PUBLIC_API macro that works on all
* platforms. If you're running with Visual C++ or Symantec C
* development environment on the PC, you're all set. Or if you're on the Mac
- * with Metrowerks, Symantec or MPW with SC you're ok too. For UNIX it shouldn't
+ * with Symantec or MPW with SC you're ok too. For UNIX it shouldn't
* matter.
* Changes by sailesh on 9/26
@@ -144,19 +144,7 @@
/* Mac */
#elif macintosh || Macintosh || THINK_C
-# if defined(__MWERKS__) /* Metrowerks */
-# if !__option(enumsalwaysint)
-# error You need to define 'Enums Always Int' for your project.
-# endif
-# if defined(TARGET_CPU_68K) && !TARGET_RT_MAC_CFM
-# if !__option(fourbyteints)
-# error You need to define 'Struct Alignment: 68k' for your project.
-# endif
-# endif /* !GENERATINGCFM */
-# define JNI_PUBLIC_API(ResultType) __declspec(export) ResultType
-# define JNI_PUBLIC_VAR(VarType) JNI_PUBLIC_API(VarType)
-# define JNI_NATIVE_STUB(ResultType) JNI_PUBLIC_API(ResultType)
-# elif defined(__SC__) /* Symantec */
+# if defined(__SC__) /* Symantec */
# error What are the Symantec defines? ([email protected])
# elif macintosh && applec /* MPW */
# error Please upgrade to the latest MPW compiler (SC).
diff --git a/src/moz-sdk/jri_md.h b/src/moz-sdk/jri_md.h
index c41c4aa..06e377e 100644
--- a/src/moz-sdk/jri_md.h
+++ b/src/moz-sdk/jri_md.h
@@ -54,7 +54,7 @@ extern "C" {
* This is where we define the mystical JRI_PUBLIC_API macro that works on all
* platforms. If you're running with Visual C++ or Symantec C
* development environment on the PC, you're all set. Or if you're on the Mac
- * with Metrowerks, Symantec or MPW with SC you're ok too. For UNIX it shouldn't
+ * with Symantec or MPW with SC you're ok too. For UNIX it shouldn't
* matter.
*
* On UNIX though you probably care about a couple of other symbols though:
@@ -114,21 +114,7 @@ extern "C" {
/* Mac */
#elif defined (macintosh) || Macintosh || THINK_C
-# if defined(__MWERKS__) /* Metrowerks */
-# if !__option(enumsalwaysint)
-# error You need to define 'Enums Always Int' for your project.
-# endif
-# if defined(TARGET_CPU_68K) && !TARGET_RT_MAC_CFM
-# if !__option(fourbyteints)
-# error You need to define 'Struct Alignment: 68k' for your project.
-# endif
-# endif /* !GENERATINGCFM */
-# define JRI_PUBLIC_API(ResultType) __declspec(export) ResultType
-# define JRI_PUBLIC_VAR(VarType) JRI_PUBLIC_API(VarType)
-# define JRI_PUBLIC_VAR_EXP(VarType) JRI_PUBLIC_API(VarType)
-# define JRI_PUBLIC_VAR_IMP(VarType) JRI_PUBLIC_API(VarType)
-# define JRI_NATIVE_STUB(ResultType) JRI_PUBLIC_API(ResultType)
-# elif defined(__SC__) /* Symantec */
+# if defined(__SC__) /* Symantec */
# error What are the Symantec defines? ([email protected])
# elif macintosh && applec /* MPW */
# error Please upgrade to the latest MPW compiler (SC).
@@ -192,16 +178,7 @@ typedef long jint;
#ifdef HAVE_LONG_LONG
-#ifdef OSF1
-
-/* long is default 64-bit on OSF1, -std1 does not allow long long */
-typedef long jlong;
-typedef unsigned long julong;
-#define jlong_MAXINT 0x7fffffffffffffffL
-#define jlong_MININT 0x8000000000000000L
-#define jlong_ZERO 0x0L
-
-#elif (defined(WIN32) || defined(_WIN32))
+#if (defined(WIN32) || defined(_WIN32))
typedef LONGLONG jlong;
typedef DWORDLONG julong;
diff --git a/src/moz-sdk/npapi.h b/src/moz-sdk/npapi.h
index df8c537..8998ba5 100644
--- a/src/moz-sdk/npapi.h
+++ b/src/moz-sdk/npapi.h
@@ -91,21 +91,6 @@
# endif /* XP_WIN */
#endif /* _WINDOWS */
-#ifdef __MWERKS__
-# define _declspec __declspec
-# ifdef macintosh
-# ifndef XP_MAC
-# define XP_MAC 1
-# endif /* XP_MAC */
-# endif /* macintosh */
-# ifdef __INTEL__
-# undef NULL
-# ifndef XP_WIN
-# define XP_WIN 1
-# endif /* XP_WIN */
-# endif /* __INTEL__ */
-#endif /* __MWERKS__ */
-
#if defined(XP_MAC) || defined(XP_MACOSX)
#include <Quickdraw.h>
#include <Events.h>
diff --git a/src/moz-sdk/nptypes.h b/src/moz-sdk/nptypes.h
index 45c0441..fbe6bd7 100644
--- a/src/moz-sdk/nptypes.h
+++ b/src/moz-sdk/nptypes.h
@@ -47,7 +47,7 @@
*/
typedef int int32_t;
typedef unsigned int uint32_t;
-#elif defined(_AIX) || defined(__sun) || defined(__osf__) || defined(IRIX) || defined(HPUX)
+#elif defined(_AIX) || defined(__sun) || defined(IRIX) || defined(HPUX)
/*
* AIX and SunOS ship a inttypes.h header that defines [u]int32_t,
* but not bool for C.
diff --git a/translations/desktop_files/es.po b/translations/desktop_files/es.po
index aafed73..082f856 100644
--- a/translations/desktop_files/es.po
+++ b/translations/desktop_files/es.po
@@ -1,26 +1,26 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
+# Juan M Ayala <[email protected]>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-03-12 00:00+0900\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <[email protected]>\n"
+"PO-Revision-Date: 2025-01-21 10:12+0000\n"
+"Last-Translator: Juan M Ayala <[email protected]>\n"
+"Language-Team: Spanish <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/kmplayer-desktop-files/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.17\n"
#. Name
#: src/kmplayer.desktop:3 src/kmplayer_koffice.desktop:3
-#, fuzzy
msgid "KMPlayer"
-msgstr "Reproductor multimedia"
+msgstr "KMPlayer"
#. GenericName
#: src/kmplayer.desktop:5
diff --git a/translations/messages/ar.po b/translations/messages/ar.po
index 339d5e5..e50f5b1 100644
--- a/translations/messages/ar.po
+++ b/translations/messages/ar.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-12-21 21:02+0100\n"
"Last-Translator: محمد سعد Mohamed SAAD <[email protected]>\n"
"Language-Team: Arabic <[email protected]>\n"
@@ -942,7 +942,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/be.po b/translations/messages/be.po
index e340351..79dd0b2 100644
--- a/translations/messages/be.po
+++ b/translations/messages/be.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-04-03 19:33+0300\n"
"Last-Translator: Darafei Praliaskouski <[email protected]>\n"
"Language-Team: Belarusian (Official spelling) <[email protected]>\n"
@@ -908,7 +908,7 @@ msgstr ""
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/br.po b/translations/messages/br.po
index e76dfc6..077e8d0 100644
--- a/translations/messages/br.po
+++ b/translations/messages/br.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kdeextragear-2/kmplayer.po\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2004-09-20 15:44+0200\n"
"Last-Translator: Thierry Vignaud <[email protected]>\n"
"Language-Team: br <[email protected]>\n"
@@ -911,7 +911,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/bs.po b/translations/messages/bs.po
index 15429b0..1ed2176 100644
--- a/translations/messages/bs.po
+++ b/translations/messages/bs.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2003-08-09 16:20+0200\n"
"Last-Translator: Senad Uka <[email protected]>\n"
"Language-Team: Bosnian <[email protected]>\n"
@@ -949,7 +949,7 @@ msgstr ""
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/ca.po b/translations/messages/ca.po
index b98f820..4401f37 100644
--- a/translations/messages/ca.po
+++ b/translations/messages/ca.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-02-26 12:53+0100\n"
"Last-Translator: Antoni Bella Pérez <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
@@ -914,7 +914,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/cs.po b/translations/messages/cs.po
index dd1a533..a7973e2 100644
--- a/translations/messages/cs.po
+++ b/translations/messages/cs.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-08-12 14:12+0200\n"
"Last-Translator: Lukáš Tinkl <[email protected]>\n"
"Language-Team: Czech <[email protected]>\n"
@@ -925,7 +925,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/csb.po b/translations/messages/csb.po
index 7cb1bf8..08de760 100644
--- a/translations/messages/csb.po
+++ b/translations/messages/csb.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-10-11 18:16+0200\n"
"Last-Translator: Michôł Òstrowsczi <[email protected]>\n"
"Language-Team: Kashubian\n"
@@ -924,7 +924,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/cy.po b/translations/messages/cy.po
index 7c26cd0..a23b49d 100644
--- a/translations/messages/cy.po
+++ b/translations/messages/cy.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: ../cy/messages//kdeextragear-2/kmplayer.po\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2004-09-20 15:44+0200\n"
"Last-Translator: Thierry Vignaud <[email protected]>\n"
"Language-Team: cy <[email protected]>\n"
@@ -912,7 +912,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/da.po b/translations/messages/da.po
index b6753e8..4783287 100644
--- a/translations/messages/da.po
+++ b/translations/messages/da.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-01-27 09:45-0500\n"
"Last-Translator: Erik Kjær Pedersen <[email protected]>\n"
"Language-Team: Danish <[email protected]>\n"
@@ -914,7 +914,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&Gstreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/de.po b/translations/messages/de.po
index 1bdb025..a24b009 100644
--- a/translations/messages/de.po
+++ b/translations/messages/de.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2019-12-25 11:00+0000\n"
"Last-Translator: Chris <[email protected]>\n"
"Language-Team: German <https://mirror.git.trinitydesktop.org/weblate/"
@@ -926,7 +926,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/el.po b/translations/messages/el.po
index 53c9262..c2b870f 100644
--- a/translations/messages/el.po
+++ b/translations/messages/el.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-06-19 10:13+0300\n"
"Last-Translator: Spiros Georgaras <[email protected]>\n"
"Language-Team: Greek <[email protected]>\n"
@@ -924,7 +924,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/en_GB.po b/translations/messages/en_GB.po
index 6ff6c47..6eda88d 100644
--- a/translations/messages/en_GB.po
+++ b/translations/messages/en_GB.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-01-09 16:00+0000\n"
"Last-Translator: Andrew Coles <[email protected]>\n"
"Language-Team: British English <[email protected]>\n"
@@ -919,7 +919,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/es.po b/translations/messages/es.po
index 670518a..2622409 100644
--- a/translations/messages/es.po
+++ b/translations/messages/es.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-03-19 14:57+0100\n"
"Last-Translator: Miguel Perez Ibars <[email protected]>\n"
"Language-Team: Spanish <[email protected]>\n"
@@ -934,7 +934,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/et.po b/translations/messages/et.po
index 0c89772..2c02cef 100644
--- a/translations/messages/et.po
+++ b/translations/messages/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-09-23 21:16+0300\n"
"Last-Translator: Marek Laane <[email protected]>\n"
"Language-Team: Estonian <[email protected]>\n"
@@ -914,7 +914,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/fi.po b/translations/messages/fi.po
index 7c0c088..6a75830 100644
--- a/translations/messages/fi.po
+++ b/translations/messages/fi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-04-14 22:25+0300\n"
"Last-Translator: Niklas Laxström <[email protected]>\n"
"Language-Team: Finnish <[email protected]>\n"
@@ -924,7 +924,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/fr.po b/translations/messages/fr.po
index 5a1f92d..ec76b50 100644
--- a/translations/messages/fr.po
+++ b/translations/messages/fr.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-01-27 12:10+0100\n"
"Last-Translator: Yannick Torrès <[email protected]>\n"
"Language-Team: Français <[email protected]>\n"
@@ -926,7 +926,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/ga.po b/translations/messages/ga.po
index c66c6c3..db31a70 100644
--- a/translations/messages/ga.po
+++ b/translations/messages/ga.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kdeextragear-2/kmplayer.po\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2004-12-03 14:52-0500\n"
"Last-Translator: Kevin Patrick Scannell <[email protected]>\n"
"Language-Team: ga <[email protected]>\n"
@@ -905,7 +905,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/gl.po b/translations/messages/gl.po
index e87006b..90035e9 100644
--- a/translations/messages/gl.po
+++ b/translations/messages/gl.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2023-09-08 13:31+0000\n"
"Last-Translator: Carlos Arjona <[email protected]>\n"
"Language-Team: Galician <https://mirror.git.trinitydesktop.org/weblate/"
@@ -921,7 +921,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/he.po b/translations/messages/he.po
index 2fd7c56..71394a1 100644
--- a/translations/messages/he.po
+++ b/translations/messages/he.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-09-30 21:07+0200\n"
"Last-Translator: Assaf Gillat\n"
"Language-Team: hebrew <[email protected]>\n"
@@ -919,7 +919,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/hi.po b/translations/messages/hi.po
index 191fcc0..86ace36 100644
--- a/translations/messages/hi.po
+++ b/translations/messages/hi.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2005-02-04 15:52+0530\n"
"Last-Translator: Ravishankar Shrivastava <[email protected]>\n"
"Language-Team: indlinux-hindi <[email protected]>\n"
@@ -941,7 +941,7 @@ msgstr "एक्साइन (&X)"
msgid "&GStreamer"
msgstr "जी-स्ट्रीमर (&G)"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/hu.po b/translations/messages/hu.po
index 183388a..5f67931 100644
--- a/translations/messages/hu.po
+++ b/translations/messages/hu.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KDE 3.5\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2005-11-27 11:11+0100\n"
"Last-Translator: Tamas Szanto <[email protected]>\n"
"Language-Team: Hungarian\n"
@@ -916,7 +916,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/is.po b/translations/messages/is.po
index 6fdd4d7..c552f93 100644
--- a/translations/messages/is.po
+++ b/translations/messages/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -902,7 +902,7 @@ msgstr ""
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/it.po b/translations/messages/it.po
index 4cc6ec5..9b4d0c7 100644
--- a/translations/messages/it.po
+++ b/translations/messages/it.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2019-05-28 12:15+0000\n"
"Last-Translator: stefano <[email protected]>\n"
"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
@@ -920,7 +920,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/ja.po b/translations/messages/ja.po
index c199e0d..acf1cdf 100644
--- a/translations/messages/ja.po
+++ b/translations/messages/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-01-14 23:00+0900\n"
"Last-Translator: Yukiko Bando <[email protected]>\n"
"Language-Team: Japanese <[email protected]>\n"
@@ -915,7 +915,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/ka.po b/translations/messages/ka.po
index c616246..6edcaf0 100644
--- a/translations/messages/ka.po
+++ b/translations/messages/ka.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2024-11-17 11:11+0000\n"
"Last-Translator: Temuri Doghonadze <[email protected]>\n"
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
@@ -920,7 +920,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/lt.po b/translations/messages/lt.po
index 5495748..7126350 100644
--- a/translations/messages/lt.po
+++ b/translations/messages/lt.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: ziogelis 77\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2005-09-03 02:48+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1197,7 +1197,7 @@ msgstr ""
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/mt.po b/translations/messages/mt.po
index 12df277..6724fb5 100644
--- a/translations/messages/mt.po
+++ b/translations/messages/mt.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2005-01-30 13:46+0100\n"
"Last-Translator: Kevin Attard Compagno <[email protected]>\n"
"Language-Team: Maltese <[email protected]>\n"
@@ -907,7 +907,7 @@ msgstr ""
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/nb.po b/translations/messages/nb.po
index 5055de3..a369dc3 100644
--- a/translations/messages/nb.po
+++ b/translations/messages/nb.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-02-11 11:07+0100\n"
"Last-Translator: Alexander Nicolaysen Sørnes <[email protected]>\n"
"Language-Team: <[email protected]>\n"
@@ -914,7 +914,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/nl.po b/translations/messages/nl.po
index d0f71f5..050f564 100644
--- a/translations/messages/nl.po
+++ b/translations/messages/nl.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2023-04-12 13:15+0000\n"
"Last-Translator: Heimen Stoffels <[email protected]>\n"
"Language-Team: Dutch <https://mirror.git.trinitydesktop.org/weblate/projects/"
@@ -926,7 +926,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/nn.po b/translations/messages/nn.po
index c50c6a1..354e7aa 100644
--- a/translations/messages/nn.po
+++ b/translations/messages/nn.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-08-21 17:49+0200\n"
"Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
"Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -967,7 +967,7 @@ msgstr ""
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/pa.po b/translations/messages/pa.po
index 1bcc6aa..dba6e98 100644
--- a/translations/messages/pa.po
+++ b/translations/messages/pa.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-02-16 22:08+0530\n"
"Last-Translator: AP S Alam <[email protected]>\n"
"Language-Team: Panjabi <[email protected]>\n"
@@ -914,7 +914,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/pl.po b/translations/messages/pl.po
index 85aabeb..2ee828a 100644
--- a/translations/messages/pl.po
+++ b/translations/messages/pl.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: pl\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2024-09-18 05:10+0000\n"
"Last-Translator: Eryk Michalak <[email protected]>\n"
"Language-Team: Polish <https://mirror.git.trinitydesktop.org/weblate/"
@@ -929,7 +929,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/pt.po b/translations/messages/pt.po
index d039402..e04dde4 100644
--- a/translations/messages/pt.po
+++ b/translations/messages/pt.po
@@ -2,7 +2,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2022-09-24 17:56+0000\n"
"Last-Translator: Tiago Carmo <[email protected]>\n"
"Language-Team: Portuguese <https://mirror.git.trinitydesktop.org/weblate/"
@@ -920,7 +920,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/pt_BR.po b/translations/messages/pt_BR.po
index b38a0bb..beba123 100644
--- a/translations/messages/pt_BR.po
+++ b/translations/messages/pt_BR.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2021-12-17 22:00+0000\n"
"Last-Translator: Sebastião Guerra <[email protected]>\n"
"Language-Team: Portuguese (Brazil) <https://mirror.git.trinitydesktop.org/"
@@ -925,7 +925,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/ro.po b/translations/messages/ro.po
index f4523d1..8738752 100644
--- a/translations/messages/ro.po
+++ b/translations/messages/ro.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: @PACKAGE\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2003-11-08 18:59+0200\n"
"Last-Translator: Claudiu Costin <[email protected]>\n"
"Language-Team: Romanian <[email protected]>\n"
@@ -907,7 +907,7 @@ msgstr ""
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/ru.po b/translations/messages/ru.po
index a86a762..a645084 100644
--- a/translations/messages/ru.po
+++ b/translations/messages/ru.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2024-04-26 18:42+0000\n"
"Last-Translator: Andrei Stepanov <[email protected]>\n"
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
@@ -918,7 +918,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ледяная обезьяна"
diff --git a/translations/messages/rw.po b/translations/messages/rw.po
index fd21e0a..ee331ff 100644
--- a/translations/messages/rw.po
+++ b/translations/messages/rw.po
@@ -15,7 +15,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer 3.4\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2005-05-25 18:36-0600\n"
"Last-Translator: Steve Murphy <[email protected]>\n"
"Language-Team: Kinyarwanda <[email protected]>\n"
@@ -1070,7 +1070,7 @@ msgstr "Mumurongo"
msgid "&GStreamer"
msgstr "Biruta"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/sk.po b/translations/messages/sk.po
index b0528c7..623e577 100644
--- a/translations/messages/sk.po
+++ b/translations/messages/sk.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: sk\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-08-25 14:13+0200\n"
"Last-Translator: Jozef Říha <[email protected]>\n"
"Language-Team: Slovak <[email protected]>\n"
@@ -918,7 +918,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/sr.po b/translations/messages/sr.po
index a51d2d7..7395d06 100644
--- a/translations/messages/sr.po
+++ b/translations/messages/sr.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-10-10 14:52+0200\n"
"Last-Translator: Slobodan Simic <[email protected]>\n"
"Language-Team: Serbian <[email protected]>\n"
@@ -923,7 +923,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/[email protected] b/translations/messages/[email protected]
index c8dc603..dacd161 100644
--- a/translations/messages/[email protected]
+++ b/translations/messages/[email protected]
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-10-10 14:52+0200\n"
"Last-Translator: Slobodan Simic <[email protected]>\n"
"Language-Team: Serbian <[email protected]>\n"
@@ -924,7 +924,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/sv.po b/translations/messages/sv.po
index 023ebd0..966f69a 100644
--- a/translations/messages/sv.po
+++ b/translations/messages/sv.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-06-12 19:01+0200\n"
"Last-Translator: Stefan Asserhäll <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\n"
@@ -918,7 +918,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&Gstreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr "&Ice Ape"
diff --git a/translations/messages/ta.po b/translations/messages/ta.po
index aece653..f4a0c47 100644
--- a/translations/messages/ta.po
+++ b/translations/messages/ta.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2004-09-22 04:08-0800\n"
"Last-Translator: Tamil PC <[email protected]>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -934,7 +934,7 @@ msgstr "&சைன்"
msgid "&GStreamer"
msgstr ""
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/tr.po b/translations/messages/tr.po
index 32826ca..e6cbb76 100644
--- a/translations/messages/tr.po
+++ b/translations/messages/tr.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2006-10-29 18:12+0200\n"
"Last-Translator: Engin Çağatay <[email protected]>\n"
"Language-Team: Türkçe <[email protected]>\n"
@@ -923,7 +923,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/uk.po b/translations/messages/uk.po
index 70555bb..f430dc4 100644
--- a/translations/messages/uk.po
+++ b/translations/messages/uk.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kmplayer\n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
"PO-Revision-Date: 2007-01-31 15:15-0800\n"
"Last-Translator: Ivan Petrouchtchak <[email protected]>\n"
"Language-Team: Ukrainian <[email protected]>\n"
@@ -919,7 +919,7 @@ msgstr "&Xine"
msgid "&GStreamer"
msgstr "&GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
msgstr ""
diff --git a/translations/messages/zh_CN.po b/translations/messages/zh_CN.po
index fa34547..525ce27 100644
--- a/translations/messages/zh_CN.po
+++ b/translations/messages/zh_CN.po
@@ -5,30 +5,35 @@
# Justin Fang <[email protected]>, 2003.
# Yan Shuangchun <[email protected]>, 2003.
# zhu-zhy <[email protected]>, 2003.
+# Toad114514 <[email protected]>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"POT-Creation-Date: 2023-11-28 18:17+0000\n"
-"PO-Revision-Date: 2005-10-15 22:00+0800\n"
-"Last-Translator: zhu-zhy <[email protected]>\n"
-"Language-Team: zh_CN <[email protected]>\n"
-"Language: \n"
+"POT-Creation-Date: 2024-11-21 18:13+0000\n"
+"PO-Revision-Date: 2025-02-07 23:12+0000\n"
+"Last-Translator: Toad114514 <[email protected]>\n"
+"Language-Team: Chinese (Simplified) <https://mirror.git.trinitydesktop.org/"
+"weblate/projects/applications/kmplayer/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"
-"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.17\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
-msgstr "方骏,颜双春,朱鸷勇"
+msgstr "方骏,颜双春,朱鸷勇,Toad114514"
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
+msgstr ""
+"com"
#: kmplayer_part.cpp:163 kmplayerapp.cpp:612
msgid "P&lay"
@@ -136,12 +141,12 @@ msgstr "150%"
#: kmplayerapp.cpp:599 kmplayercontrolpanel.cpp:396
#, c-format
msgid "200%"
-msgstr ""
+msgstr "200%"
#: kmplayerapp.cpp:600 kmplayercontrolpanel.cpp:397
#, c-format
msgid "300%"
-msgstr ""
+msgstr "300%"
#: kmplayerapp.cpp:601
msgid "&Edit mode"
@@ -418,7 +423,7 @@ msgstr "播放源"
#: kmplayerapp.cpp:2055
msgid "DVDNav"
-msgstr "DVDNav"
+msgstr "DVDnav"
#: kmplayerapp.cpp:2073
msgid "&Next"
@@ -592,7 +597,7 @@ msgstr "启动 ffmpeg 失败。"
#: kmplayerbroadcast.cpp:656
msgid "FFServer"
-msgstr "FFServer"
+msgstr "FFserver"
#: kmplayerconfig.cpp:57 kmplayerconfig.cpp:72
msgid "Auto"
@@ -620,7 +625,7 @@ msgstr "JACK 音频连接工具"
#: kmplayerconfig.cpp:63
msgid "OpenAL"
-msgstr "OpenAL"
+msgstr "openAL"
#: kmplayerconfig.cpp:64
msgid "Enlightened Sound Daemon"
@@ -640,23 +645,23 @@ msgstr "使用后端默认值"
#: kmplayerconfig.cpp:73
msgid "X11Shm"
-msgstr "X11Shm"
+msgstr "X11shm"
#: kmplayerconfig.cpp:74
msgid "XVidix"
-msgstr "XVidix"
+msgstr "xvidix"
#: kmplayerconfig.cpp:75
msgid "XvMC"
-msgstr ""
+msgstr "xvmc"
#: kmplayerconfig.cpp:76
msgid "SDL"
-msgstr ""
+msgstr "SDL"
#: kmplayerconfig.cpp:77
msgid "OpenGL"
-msgstr ""
+msgstr "openGL"
#: kmplayerconfig.cpp:78
msgid "OpenGL MT"
@@ -664,7 +669,7 @@ msgstr ""
#: kmplayerconfig.cpp:79
msgid "XVideo"
-msgstr "XVideo"
+msgstr "xvideo"
#: kmplayerconfig.cpp:90
msgid "Playlist background"
@@ -761,7 +766,7 @@ msgstr "饱和度:"
#: kmplayercontrolpanel.cpp:422
msgid "Co&lors"
-msgstr "色彩(&L):"
+msgstr "色彩"
#: kmplayercontrolpanel.cpp:424
msgid "&Configure KMPlayer..."
@@ -870,7 +875,7 @@ msgstr "VCD 轨道模式"
#: kmplayerprocess.cpp:882
msgid "Audio CD tracks pattern"
-msgstr "音频 CD 轨道模式"
+msgstr "音频 CD 轨道模式"
#: kmplayerprocess.cpp:904
msgid "MPlayer command:"
@@ -906,15 +911,15 @@ msgstr "Mplayer"
#: kmplayerprocess.cpp:1685 pref.cpp:611
msgid "&Xine"
-msgstr "&Xine"
+msgstr "Xine"
#: kmplayerprocess.cpp:1761
msgid "&GStreamer"
-msgstr "&GStreamer"
+msgstr "GStreamer"
-#: kmplayerprocess.cpp:2530
+#: kmplayerprocess.cpp:2527
msgid "&Ice Ape"
-msgstr ""
+msgstr "Ice Ape"
#: kmplayertvsource.cpp:62
msgid "Video device:"
@@ -1007,7 +1012,7 @@ msgstr "电视"
#: kmplayertvsource.cpp:475
msgid "TV: "
-msgstr "电视:"
+msgstr "电视: "
#: kmplayertvsource.cpp:598
msgid "Device already present."
@@ -1033,6 +1038,10 @@ msgid ""
"use here.\n"
"See the output from 'xvinfo' for more information"
msgstr ""
+"X Video扩展的端口基础。\n"
+"如果使用默认值 (0),将使用第一个可用的端口。但如果您有多个XVideo实例,则可能"
+"需要在此处提供要使用的端口。\n"
+"有关更多信息,请参阅xvinfo命令的输出"
#: kmplayervdr.cpp:92
msgid "Communication port:"
@@ -1044,18 +1053,20 @@ msgid ""
"If you use another port, with the '-p' option of 'vdr', you must set it here "
"too."
msgstr ""
+"VDR 的通讯端口。默认端口是2001。\n"
+"如果你要使用其他端口,请在 vdr 命令中添加 -p 参数,你必须设置它。"
#: kmplayervdr.cpp:99
msgid "Scale"
-msgstr ""
+msgstr "缩放"
#: kmplayervdr.cpp:100
msgid "4:3"
-msgstr ""
+msgstr "4:3"
#: kmplayervdr.cpp:101
msgid "16:9"
-msgstr ""
+msgstr "16:9"
#: kmplayervdr.cpp:102
msgid "Aspects to use when viewing VDR"
@@ -1071,103 +1082,87 @@ msgstr "断开(&C)"
#: kmplayervdr.cpp:243
msgid "VDR Key Up"
-msgstr ""
+msgstr "VDR 按键上"
#: kmplayervdr.cpp:244
msgid "VDR Key Down"
-msgstr ""
+msgstr "VDR 按键下"
#: kmplayervdr.cpp:245
msgid "VDR Key Back"
-msgstr ""
+msgstr "VDR 返回按键"
#: kmplayervdr.cpp:246
msgid "VDR Key Ok"
-msgstr ""
+msgstr "VDR 确认按键"
#: kmplayervdr.cpp:247
msgid "VDR Key Setup"
-msgstr ""
+msgstr "VDR 初始按键"
#: kmplayervdr.cpp:248
-#, fuzzy
msgid "VDR Key Channels"
-msgstr "声道"
+msgstr "VDR 频道按键"
#: kmplayervdr.cpp:249
-#, fuzzy
msgid "VDR Key Menu"
-msgstr "声道"
+msgstr "VDR 菜单按键"
#: kmplayervdr.cpp:250
-#, fuzzy
msgid "VDR Key Red"
-msgstr "声道"
+msgstr "VDR 红色按键"
#: kmplayervdr.cpp:251
-#, fuzzy
msgid "VDR Key Green"
-msgstr "声道"
+msgstr "VDR 绿色按键"
#: kmplayervdr.cpp:252
-#, fuzzy
msgid "VDR Key Yellow"
-msgstr "声道"
+msgstr "VDR 黄色按键"
#: kmplayervdr.cpp:253
-#, fuzzy
msgid "VDR Key Blue"
-msgstr "声道"
+msgstr "VDR 蓝色按键"
#: kmplayervdr.cpp:256
-#, fuzzy
msgid "VDR Key 0"
-msgstr "声道"
+msgstr "VDR 按键 0"
#: kmplayervdr.cpp:257
-#, fuzzy
msgid "VDR Key 1"
-msgstr "声道"
+msgstr "VDR 按键 1"
#: kmplayervdr.cpp:258
-#, fuzzy
msgid "VDR Key 2"
-msgstr "声道"
+msgstr "VDR 按键 2"
#: kmplayervdr.cpp:259
-#, fuzzy
msgid "VDR Key 3"
-msgstr "声道"
+msgstr "VDR 按键 3"
#: kmplayervdr.cpp:260
-#, fuzzy
msgid "VDR Key 4"
-msgstr "声道"
+msgstr "VDR 按键 4"
#: kmplayervdr.cpp:261
-#, fuzzy
msgid "VDR Key 5"
-msgstr "声道"
+msgstr "VDR 按键 5"
#: kmplayervdr.cpp:262
-#, fuzzy
msgid "VDR Key 6"
-msgstr "声道"
+msgstr "VDR 按键 6"
#: kmplayervdr.cpp:263
-#, fuzzy
msgid "VDR Key 7"
-msgstr "声道"
+msgstr "VDR 按键 7"
#: kmplayervdr.cpp:264
-#, fuzzy
msgid "VDR Key 8"
-msgstr "声道"
+msgstr "VDR 按键 8"
#: kmplayervdr.cpp:265
-#, fuzzy
msgid "VDR Key 9"
-msgstr "声道"
+msgstr "VDR 按键 9"
#: kmplayervdr.cpp:450
msgid "Host not found"
@@ -1189,6 +1184,11 @@ msgid ""
"\n"
"VDR Command:"
msgstr ""
+"你可以向 VDR 传递命令。\n"
+"输入 help 查看可用的命令。\n"
+"你应该可以在命令行窗口看到 VDR 响应结果。\n"
+"\n"
+"VDR 命令:"
#: kmplayervdr.cpp:693
msgid "Port "
@@ -1216,7 +1216,7 @@ msgstr "要打开的文件"
#: playlistview.cpp:182
msgid "unnamed"
-msgstr ""
+msgstr "未命名"
#: playlistview.cpp:182
msgid "none"
@@ -1252,11 +1252,11 @@ msgstr "录制"
#: pref.cpp:102
msgid "MEncoder"
-msgstr "MEncoder"
+msgstr "Mencoder"
#: pref.cpp:106
msgid "FFMpeg"
-msgstr "FFMpeg"
+msgstr "FFmpeg"
#: pref.cpp:123
msgid "Output Plugins"
@@ -1279,8 +1279,8 @@ msgid ""
"When checked, movie will keep its aspect ratio\n"
"when window is resized"
msgstr ""
-"选中时,当窗口大小被改变的时候,\n"
-"电影画面将保持宽高比。"
+"选中时,当窗口大小被改变的时候\n"
+"电影画面将保持宽高比"
#: pref.cpp:213
msgid "Dock in system tray"
@@ -1292,27 +1292,28 @@ msgid ""
"When clicked it will hide KMPlayer's main window and removing KMPlayer's "
"taskbar button."
msgstr ""
+"勾选后,一个 KMPlayer 的图标会被添加到系统任务栏。\n"
+"当你点击它时 KMPlayer 的主窗口将会隐藏并且移除 KMPlayer 的任务栏按钮。"
#: pref.cpp:215
msgid "Auto resize to video sizes"
-msgstr ""
+msgstr "自动调整为视频尺寸"
#: pref.cpp:216
-#, fuzzy
msgid ""
"When checked, KMPlayer will resize to movie sizes\n"
"when video starts"
msgstr ""
-"选中时,当窗口大小被改变的时候,\n"
-"电影画面将保持宽高比。"
+"选中后,当视频开始时 KMPlayer\n"
+"将会自动调整到视频尺寸大小"
#: pref.cpp:221
msgid "Remember window size on exit"
-msgstr ""
+msgstr "退出时记住当前窗口大小"
#: pref.cpp:222
msgid "Always start with fixed size"
-msgstr ""
+msgstr "每次启动时修复大小"
#: pref.cpp:228
msgid "Loop"
@@ -1338,7 +1339,7 @@ msgstr "启动时自动设定音量"
msgid ""
"When a new source is selected, the volume will be set according the volume "
"control"
-msgstr ""
+msgstr "当选择新源时,音量会根据音量控制自动调整"
#: pref.cpp:234
#, fuzzy
@@ -1360,16 +1361,15 @@ msgstr "显示配置按钮"
#: pref.cpp:242
msgid "Add a button that will popup a config menu"
-msgstr ""
+msgstr "添加一个弹出配置菜单的按钮"
#: pref.cpp:243
msgid "Show playlist button"
msgstr "显示播放列表按钮"
#: pref.cpp:244
-#, fuzzy
msgid "Add a playlist button to the control buttons"
-msgstr "添加“广播”到控制按钮"
+msgstr "添加一个播放列表到控制按钮"
#: pref.cpp:245
msgid "Show record button"
@@ -1405,7 +1405,7 @@ msgstr "饱和度:"
#: pref.cpp:341
msgid "Location of the playable item"
-msgstr ""
+msgstr "可播放的项目位置"
#: pref.cpp:344
msgid "Sub title:"
@@ -1413,7 +1413,7 @@ msgstr "字幕:"
#: pref.cpp:349
msgid "Optional location of a file containing the subtitles of the URL above"
-msgstr ""
+msgstr "包含上述URL字幕的文件的可选位置"
#: pref.cpp:352
msgid "Enable 'Click to Play' support"
@@ -1421,7 +1421,7 @@ msgstr "启用“点击即播放”支持"
#: pref.cpp:353
msgid "Support for WEB pages having a start image"
-msgstr ""
+msgstr "支持具有起始图像的网页"
#: pref.cpp:363
msgid "Use movie player:"
@@ -1437,6 +1437,8 @@ msgid ""
"particular bitrate.\n"
"This option sets how much bandwidth you would prefer to allocate to video."
msgstr ""
+"有时,在给定特定比特率的情况下,您可以在各种流之间进行选择。\n"
+"此选项将设置您希望分配给视频的带宽。"
#: pref.cpp:374
msgid ""
@@ -1444,14 +1446,16 @@ msgid ""
"particular bitrate.\n"
"This option sets the maximum bandwidth you have available for video."
msgstr ""
+"有时,在给定特定比特率的情况下,您可以在各种流之间进行选择。\n"
+"此选项设置可用于视频的最大带宽。"
#: pref.cpp:375
msgid "Preferred bitrate:"
-msgstr ""
+msgstr "首选比特率:"
#: pref.cpp:377 pref.cpp:380
msgid "kbit/s"
-msgstr ""
+msgstr "Kbit/s"
#: pref.cpp:378
msgid "Maximum bitrate:"
@@ -1467,7 +1471,7 @@ msgstr "开始录制(&R)"
#: pref.cpp:410
msgid "Current source: "
-msgstr "当前来源:"
+msgstr "当前来源: "
#: pref.cpp:411
msgid "Recorder"
@@ -1503,7 +1507,7 @@ msgstr "开始录制"
#: pref.cpp:468
msgid "Current Source: "
-msgstr "当前来源:"
+msgstr "当前来源: "
#: pref.cpp:545
msgid "Format"
@@ -1593,7 +1597,7 @@ msgstr "延展至全范围光度"
#: pref.cpp:764
msgid "Temporal noise reducer"
-msgstr "临时降噪器:"
+msgstr "临时降噪器"
#: pref.cpp:790
msgid "Linear blend deinterlacer"
@@ -1662,7 +1666,7 @@ msgstr "全屏"
#: viewarea.cpp:1387
msgid "Scale:"
-msgstr ""
+msgstr "缩放:"
#: kmplayerui.rc:12
#, no-c-format