Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cockpit-podman for openSUSE:Factory 
checked in at 2026-02-17 16:36:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cockpit-podman (Old)
 and      /work/SRC/openSUSE:Factory/.cockpit-podman.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cockpit-podman"

Tue Feb 17 16:36:13 2026 rev:28 rq:1333289 version:120

Changes:
--------
--- /work/SRC/openSUSE:Factory/cockpit-podman/cockpit-podman.changes    
2026-02-06 21:30:19.122143921 +0100
+++ /work/SRC/openSUSE:Factory/.cockpit-podman.new.1977/cockpit-podman.changes  
2026-02-17 16:36:22.287894683 +0100
@@ -1,0 +2,9 @@
+Wed Feb 11 10:14:25 UTC 2026 - Miika Alikirri <[email protected]>
+
+- Update to 120
+  * Packaging fixes and translation updates
+- Fix esbuild for ppc64le bsc#1257698
+   * Include esbuild-ppc64.patch
+   * Update update_version.sh
+
+-------------------------------------------------------------------

Old:
----
  cockpit-podman-119.1.tar.gz
  update_version.sh

New:
----
  cockpit-podman-120.tar.gz
  esbuild-ppc64.patch

----------(New B)----------
  New:- Fix esbuild for ppc64le bsc#1257698
   * Include esbuild-ppc64.patch
   * Update update_version.sh
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cockpit-podman.spec ++++++
--- /var/tmp/diff_new_pack.RrlRC5/_old  2026-02-17 16:37:10.505908230 +0100
+++ /var/tmp/diff_new_pack.RrlRC5/_new  2026-02-17 16:37:10.509908397 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           cockpit-podman
-Version:        119.1
+Version:        120
 Release:        0
 Summary:        Cockpit component for Podman containers
 License:        LGPL-2.1-or-later
@@ -28,6 +28,7 @@
 Source12:       update_version.sh
 %include %_sourcedir/node_modules.spec.inc
 Patch10:        load-css-overrides.patch
+Patch11:        esbuild-ppc64.patch
 BuildArch:      noarch
 BuildRequires:  appstream-glib
 Requires:       cockpit-bridge >= 138

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.RrlRC5/_old  2026-02-17 16:37:10.565910736 +0100
+++ /var/tmp/diff_new_pack.RrlRC5/_new  2026-02-17 16:37:10.573911070 +0100
@@ -1,6 +1,6 @@
-mtime: 1770105574
-commit: 04d4eb561d27bae8b8868f7958b6ea5dafb1a06dc35ede95867251ba5ccafae3
+mtime: 1770805249
+commit: 0b30b2dc89d9cf09919e62abbfc5fb4fcb5a00b62dc199520dad47a114ef0684
 url: https://src.opensuse.org/cockpit/cockpit-podman.git
-revision: 04d4eb561d27bae8b8868f7958b6ea5dafb1a06dc35ede95867251ba5ccafae3
+revision: 0b30b2dc89d9cf09919e62abbfc5fb4fcb5a00b62dc199520dad47a114ef0684
 projectscmsync: https://src.opensuse.org/cockpit/_ObsPrj.git
 

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/update_version.sh new/update_version.sh
--- old/update_version.sh       1970-01-01 01:00:00.000000000 +0100
+++ new/update_version.sh       2026-02-13 13:44:45.000000000 +0100
@@ -0,0 +1,81 @@
+#!/usr/bin/bash
+
+set -e
+
+curVersion=$(grep Version: cockpit-podman.spec | sed -e 
's,^\(\s*Version:\s*\)\(.*\)\s*$,\2,')
+
+if [[ ! "$curVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
+  echo "Error: curVersion is not a valid integer"
+  exit 1
+fi
+
+if [[ "$curVersion" =~ '.' ]]; then
+    curMajor=$(echo ${curVersion} | cut -d'.' -f1)
+    curMinor=$(echo ${curVersion} | cut -d'.' -f2)
+else
+    curMajor=$curVersion
+    curMinor='0'
+fi
+
+###
+### Fetch latest soruces
+###
+
+GitDir="cockpit-podman"
+GWD="-C $GitDir"
+
+# fetch latest cockpit-podman
+if [ ! -d $GitDir ]; then
+       git clone https://github.com/cockpit-project/cockpit-podman $GitDir
+else
+    git $GWD checkout main
+       git $GWD fetch
+fi
+
+newVersion=$(git $GWD tag | grep '^[0-9.]\+$' | sort -rn | head -1)
+
+echo "Current version: $curVersion"
+echo "    New version: $newVersion"
+
+if [[ ! "$newVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
+  echo "Error: newVersion cannot be determined"
+  exit 1
+fi
+
+if [[ "$newVersion" =~ '.' ]]; then
+    newMajor=$(echo ${newVersion} | cut -d'.' -f1)
+    newMinor=$(echo ${newVersion} | cut -d'.' -f2)
+else
+    newMajor=$newVersion
+    newMinor='0'
+fi
+
+if [ "$curMajor" -gt "$newMajor" ]; then
+       echo "Nothing to do."
+       exit 0
+elif [[ "$curMajor" -eq "$newMajor"  && "$curMinor" -ge "$newMinor" ]]; then
+       echo "Nothing to do."
+       exit 0
+fi
+
+###
+### UPDATE
+###
+
+# update node_modules
+git $GWD checkout $newVersion
+pushd $PWD
+cd "$GitDir"
+npm install --include optional
+popd
+cp "$GitDir/package-lock.json" .
+osc service manualrun --verbose
+rm --verbose *.tgz || true
+
+# update package
+curl -Lo cockpit-podman-$newVersion.tar.gz 
https://github.com/cockpit-project/cockpit-podman/archive/$newVersion.tar.gz
+
+# Updating version in spec file
+sed -i -e "s,^\(\s*Version:\s*\)\(.*\)\s*$,\1${newVersion}," 
cockpit-podman.spec
+git rm cockpit-podman-$curVersion.tar.gz
+git add cockpit-podman-$newVersion.tar.gz

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-02-13 13:44:45.000000000 +0100
@@ -0,0 +1,2 @@
+.osc
+node_modules.sums
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/update_version.sh new/update_version.sh
--- old/update_version.sh       1970-01-01 01:00:00.000000000 +0100
+++ new/update_version.sh       2026-02-13 13:44:45.000000000 +0100
@@ -0,0 +1,81 @@
+#!/usr/bin/bash
+
+set -e
+
+curVersion=$(grep Version: cockpit-podman.spec | sed -e 
's,^\(\s*Version:\s*\)\(.*\)\s*$,\2,')
+
+if [[ ! "$curVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
+  echo "Error: curVersion is not a valid integer"
+  exit 1
+fi
+
+if [[ "$curVersion" =~ '.' ]]; then
+    curMajor=$(echo ${curVersion} | cut -d'.' -f1)
+    curMinor=$(echo ${curVersion} | cut -d'.' -f2)
+else
+    curMajor=$curVersion
+    curMinor='0'
+fi
+
+###
+### Fetch latest soruces
+###
+
+GitDir="cockpit-podman"
+GWD="-C $GitDir"
+
+# fetch latest cockpit-podman
+if [ ! -d $GitDir ]; then
+       git clone https://github.com/cockpit-project/cockpit-podman $GitDir
+else
+    git $GWD checkout main
+       git $GWD fetch
+fi
+
+newVersion=$(git $GWD tag | grep '^[0-9.]\+$' | sort -rn | head -1)
+
+echo "Current version: $curVersion"
+echo "    New version: $newVersion"
+
+if [[ ! "$newVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
+  echo "Error: newVersion cannot be determined"
+  exit 1
+fi
+
+if [[ "$newVersion" =~ '.' ]]; then
+    newMajor=$(echo ${newVersion} | cut -d'.' -f1)
+    newMinor=$(echo ${newVersion} | cut -d'.' -f2)
+else
+    newMajor=$newVersion
+    newMinor='0'
+fi
+
+if [ "$curMajor" -gt "$newMajor" ]; then
+       echo "Nothing to do."
+       exit 0
+elif [[ "$curMajor" -eq "$newMajor"  && "$curMinor" -ge "$newMinor" ]]; then
+       echo "Nothing to do."
+       exit 0
+fi
+
+###
+### UPDATE
+###
+
+# update node_modules
+git $GWD checkout $newVersion
+pushd $PWD
+cd "$GitDir"
+npm install --include optional
+popd
+cp "$GitDir/package-lock.json" .
+osc service manualrun --verbose
+rm --verbose *.tgz || true
+
+# update package
+curl -Lo cockpit-podman-$newVersion.tar.gz 
https://github.com/cockpit-project/cockpit-podman/archive/$newVersion.tar.gz
+
+# Updating version in spec file
+sed -i -e "s,^\(\s*Version:\s*\)\(.*\)\s*$,\1${newVersion}," 
cockpit-podman.spec
+git rm cockpit-podman-$curVersion.tar.gz
+git add cockpit-podman-$newVersion.tar.gz

++++++ cockpit-podman-119.1.tar.gz -> cockpit-podman-120.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/.cockpit-ci/container 
new/cockpit-podman-120/.cockpit-ci/container
--- old/cockpit-podman-119.1/.cockpit-ci/container      2025-12-10 
14:13:18.000000000 +0100
+++ new/cockpit-podman-120/.cockpit-ci/container        2026-01-27 
20:53:56.000000000 +0100
@@ -1 +1 @@
-ghcr.io/cockpit-project/tasks:2025-12-06
+ghcr.io/cockpit-project/tasks:2026-01-24
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/.github/dependabot.yml 
new/cockpit-podman-120/.github/dependabot.yml
--- old/cockpit-podman-119.1/.github/dependabot.yml     2025-12-10 
14:13:18.000000000 +0100
+++ new/cockpit-podman-120/.github/dependabot.yml       2026-01-27 
20:53:56.000000000 +0100
@@ -46,6 +46,10 @@
       - dependency-name: "*react*"
         update-types: ["version-update:semver-major"]
 
+      # @xterm/addon-canvas is deprecated and requires xterm/xterm 5.x.x
+      - dependency-name: "@xterm/*"
+        update-types: ["version-update:semver-major"]
+
   - package-ecosystem: "github-actions"
     directory: "/"
     open-pull-requests-limit: 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/Makefile 
new/cockpit-podman-120/Makefile
--- old/cockpit-podman-119.1/Makefile   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/Makefile     2026-01-27 20:53:56.000000000 +0100
@@ -60,7 +60,7 @@
        $(NULL)
 
 COCKPIT_REPO_URL = https://github.com/cockpit-project/cockpit.git
-COCKPIT_REPO_COMMIT = 6be0d41d97c7a2c21ef4586f854e6ab39f3051c7 # 352 + 55 
commits
+COCKPIT_REPO_COMMIT = a75b73690e6bb5f88f0adf3369db8fbbcfe2775a # 354 + 86 
commits
 
 $(COCKPIT_REPO_FILES): $(COCKPIT_REPO_STAMP)
 COCKPIT_REPO_TREE = '$(strip $(COCKPIT_REPO_COMMIT))^{tree}'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/build.js 
new/cockpit-podman-120/build.js
--- old/cockpit-podman-119.1/build.js   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/build.js     2026-01-27 20:53:56.000000000 +0100
@@ -3,6 +3,7 @@
 import fs from 'node:fs';
 import { createRequire } from 'node:module';
 import os from 'node:os';
+import path from 'node:path';
 import process from 'node:process';
 
 import { sassPlugin } from 'esbuild-sass-plugin';
@@ -31,7 +32,7 @@
 })();
 
 const production = process.env.NODE_ENV === 'production';
-/* List of directories to use when resolving import statements */
+// List of directories to use when using import statements
 const nodePaths = ['pkg/lib'];
 const outdir = 'dist';
 
@@ -39,8 +40,10 @@
 const packageJson = JSON.parse(fs.readFileSync('package.json'));
 
 const parser = (await import('argparse')).default.ArgumentParser();
+/* eslint-disable max-len */
 parser.add_argument('-r', '--rsync', { help: "rsync bundles to ssh target 
after build", metavar: "HOST" });
 parser.add_argument('-w', '--watch', { action: 'store_true', help: "Enable 
watch mode", default: process.env.ESBUILD_WATCH === "true" });
+/* eslint-enable max-len */
 const args = parser.parse_args();
 
 if (args.rsync)
@@ -65,12 +68,38 @@
     };
 }
 
+// similar to fs.watch(), but recursively watches all subdirectories
+function watch_dirs(dir, on_change) {
+    const callback = (ev, dir, fname) => {
+        // only listen for "change" events, as renames are noisy
+        // ignore hidden files
+        if (ev !== "change" || fname.startsWith('.')) {
+            return;
+        }
+        on_change(path.join(dir, fname));
+    };
+
+    fs.watch(dir, {}, (ev, path) => callback(ev, dir, path));
+
+    // watch all subdirectories in dir
+    const d = fs.opendirSync(dir);
+    let dirent;
+
+    while ((dirent = d.readSync()) !== null) {
+        if (dirent.isDirectory())
+            watch_dirs(path.join(dir, dirent.name), on_change);
+    }
+    d.closeSync();
+}
+
 const context = await esbuild.context({
     ...!production ? { sourcemap: "linked" } : {},
     bundle: true,
-    entryPoints: ["./src/index.js"],
-    external: ['*.woff', '*.woff2', '*.jpg', '*.svg', '../../assets*'], // 
Allow external font files which live in ../../static/fonts
-    legalComments: 'external', // Move all legal comments to a .LEGAL.txt file
+    entryPoints: ['./src/index.js'],
+    // Allow external font files which live in ../../static/fonts
+    external: ['*.woff', '*.woff2', '*.jpg', '*.svg', '../../assets*'],
+    // Move all legal comments to a .LEGAL.txt file
+    legalComments: 'external',
     loader: { ".js": "jsx", ".py": "text" },
     minify: production,
     nodePaths,
@@ -79,7 +108,6 @@
     target: ['es2020'],
     plugins: [
         cleanPlugin(),
-
         // Esbuild will only copy assets that are explicitly imported and used 
in the code.
         // Copy the other files here.
         {
@@ -101,10 +129,8 @@
         }),
 
         cockpitPoEsbuildPlugin(),
-
         ...production ? [cockpitCompressPlugin()] : [],
         cockpitRsyncEsbuildPlugin({ dest: packageJson.name }),
-
         notifyEndPlugin(),
     ]
 });
@@ -145,17 +171,17 @@
 }
 
 if (args.watch) {
-    // Attention: this does not watch subdirectories -- if you ever introduce 
one, need to set up one watch per subdir
-    fs.watch('src', {}, async (ev, path) => {
-        // only listen for "change" events, as renames are noisy
-        if (ev !== "change")
-            return;
+    const on_change = async path => {
         console.log("change detected:", path);
         await context.cancel();
+
         try {
             await context.rebuild();
         } catch (e) {} // ignore in watch mode
-    });
+    };
+
+    watch_dirs('src', on_change);
+
     // wait forever until Control-C
     await new Promise(() => {});
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/package.json 
new/cockpit-podman-120/package.json
--- old/cockpit-podman-119.1/package.json       2025-12-10 14:13:18.000000000 
+0100
+++ new/cockpit-podman-120/package.json 2026-01-27 20:53:56.000000000 +0100
@@ -11,15 +11,15 @@
     "build": "./build.js",
     "eslint": "eslint --ext .jsx --ext .js src/",
     "eslint:fix": "eslint --fix --ext .jsx --ext .js src/",
-    "stylelint": "stylelint src/*{.css,scss}",
-    "stylelint:fix": "stylelint --fix src/*{.css,scss}"
+    "stylelint": "stylelint src/*.{css,scss}",
+    "stylelint:fix": "stylelint --fix src/*.{css,scss}"
   },
   "devDependencies": {
     "@types/react": "18.3.12",
     "@types/react-dom": "18.3.1",
     "@types/throttle-debounce": "5.0.2",
-    "@typescript-eslint/eslint-plugin": "8.48.1",
-    "esbuild-wasm": "0.27.1",
+    "@typescript-eslint/eslint-plugin": "8.53.1",
+    "esbuild-wasm": "0.27.2",
     "eslint": "8.57.1",
     "eslint-config-standard": "17.1.0",
     "eslint-config-standard-jsx": "11.0.0",
@@ -47,9 +47,9 @@
     "@xterm/xterm": "5.5.0",
     "argparse": "2.0.1",
     "docker-names": "1.2.1",
-    "esbuild": "0.27.1",
-    "esbuild-sass-plugin": "3.3.1",
-    "gettext-parser": "8.0.0",
+    "esbuild": "0.27.2",
+    "esbuild-sass-plugin": "3.6.0",
+    "gettext-parser": "9.0.1",
     "ipaddr.js": "2.3.0",
     "prop-types": "15.8.1",
     "react": "18.3.1",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cockpit-podman-119.1/packaging/cockpit-podman.spec.in 
new/cockpit-podman-120/packaging/cockpit-podman.spec.in
--- old/cockpit-podman-119.1/packaging/cockpit-podman.spec.in   2025-12-10 
14:13:18.000000000 +0100
+++ new/cockpit-podman-120/packaging/cockpit-podman.spec.in     2026-01-27 
20:53:56.000000000 +0100
@@ -44,6 +44,7 @@
 %endif
 %if %{defined rebuild_bundle}
 BuildRequires: nodejs
+BuildRequires: %{_bindir}/node
 BuildRequires: nodejs-esbuild
 %endif
 
@@ -70,9 +71,9 @@
 %build
 %if %{defined rebuild_bundle}
 rm -rf dist
-# HACK: node module packaging is currently broken in Fedora, should be in
+# HACK: node module packaging is broken in Fedora ≤ 43; should be in
 # common location, not major version specific one
-NODE_ENV=production NODE_PATH=$(echo /usr/lib/node_modules_*) ./build.js
+NODE_ENV=production NODE_PATH=/usr/lib/node_modules:$(echo 
/usr/lib/node_modules_*) ./build.js
 %else
 # Use pre-built bundle on distributions without nodejs-esbuild
 %endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/ar.po 
new/cockpit-podman-120/po/ar.po
--- old/cockpit-podman-119.1/po/ar.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/ar.po     2026-01-27 20:53:56.000000000 +0100
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-07-21 10:54+0000\n"
 "Last-Translator: عمّار عبدالله <[email protected]>\n"
 "Language-Team: Arabic <https://translate.fedoraproject.org/projects/cockpit/";
@@ -777,7 +777,7 @@
 msgid "Loading details..."
 msgstr "جاري تحميل التفاصيل..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "جاري تحميل السجلات..."
 
@@ -1323,7 +1323,7 @@
 msgid "View $0"
 msgstr "عرض $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "عرض سجلات $0"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/cs.po 
new/cockpit-podman-120/po/cs.po
--- old/cockpit-podman-119.1/po/cs.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/cs.po     2026-01-27 20:53:56.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-11-21 00:06+0000\n"
 "Last-Translator: Pavel Borecki <[email protected]>\n"
 "Language-Team: Czech <https://translate.fedoraproject.org/projects/cockpit/";
@@ -755,7 +755,7 @@
 msgid "Loading details..."
 msgstr "Načítání podrobností…"
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Načítání záznamů událostí…"
 
@@ -1309,7 +1309,7 @@
 msgid "View $0"
 msgstr "Zobrazit $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Zobrazit záznamy událostí z $0"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/de.po 
new/cockpit-podman-120/po/de.po
--- old/cockpit-podman-119.1/po/de.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/de.po     2026-01-27 20:53:56.000000000 +0100
@@ -5,9 +5,9 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
-"PO-Revision-Date: 2025-10-26 10:53+0000\n"
-"Last-Translator: Nils Werner <[email protected]>\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
+"PO-Revision-Date: 2025-12-24 13:58+0000\n"
+"Last-Translator: Robert Simai <[email protected]>\n"
 "Language-Team: German <https://translate.fedoraproject.org/projects/cockpit/";
 "cockpit-podman/de/>\n"
 "Language: de\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1\n"
-"X-Generator: Weblate 5.13.3\n"
+"X-Generator: Weblate 5.15.1\n"
 
 #: src/Images.jsx:96
 msgid "$0 container"
@@ -631,8 +631,8 @@
 "If host IP is set to 0.0.0.0 or not set at all, the port will be bound on "
 "all IPs on the host."
 msgstr ""
-"Wenn die Host-IP auf 0.0.0.0 oder gar nicht gesetzt ist, wird der Port an "
-"alle IPs des Hosts gebunden."
+"Wird die Host-IP auf 0.0.0.0 oder gar nicht gesetzt, so wird der Port an "
+"alle auf dem Host vorhandenen IPs gebunden."
 
 #: src/PublishPort.jsx:82
 msgid ""
@@ -759,7 +759,7 @@
 msgid "Loading details..."
 msgstr "Details werden geladen ..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Protokolle werden geladen ..."
 
@@ -1313,7 +1313,7 @@
 msgid "View $0"
 msgstr "$0 ansehen"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "$0 Logs ansehen"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/es.po 
new/cockpit-podman-120/po/es.po
--- old/cockpit-podman-119.1/po/es.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/es.po     2026-01-27 20:53:56.000000000 +0100
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
-"PO-Revision-Date: 2025-11-21 00:06+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
+"PO-Revision-Date: 2025-12-24 13:58+0000\n"
 "Last-Translator: \"Fco. Javier F. Serrador\" <[email protected]>\n"
 "Language-Team: Spanish <https://translate.fedoraproject.org/projects/cockpit/";
 "cockpit-podman/es/>\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1\n"
-"X-Generator: Weblate 5.14.3\n"
+"X-Generator: Weblate 5.15.1\n"
 
 #: src/Images.jsx:96
 msgid "$0 container"
@@ -461,7 +461,7 @@
 
 #: src/ContainerRenameModal.jsx:58
 msgid "Failed to rename container $0"
-msgstr "Falló al renombrar el contenedor $0"
+msgstr "Fallo al renombrar el contenedor $0"
 
 #: src/Containers.jsx:135
 msgid "Failed to restart container $0"
@@ -473,11 +473,11 @@
 
 #: src/ContainerRestoreModal.jsx:35
 msgid "Failed to restore container $0"
-msgstr "Falló al restaurar el contenedor $0"
+msgstr "Fallo al restaurar el contenedor $0"
 
 #: src/Containers.jsx:109
 msgid "Failed to resume container $0"
-msgstr "Falló al reanudar el contenedor $0"
+msgstr "Fallo al reanudar el contenedor $0"
 
 #: src/PodActions.jsx:179
 msgid "Failed to resume pod $0"
@@ -485,7 +485,7 @@
 
 #: src/ImageRunModal.jsx:320
 msgid "Failed to run container $0"
-msgstr "Falló al ejecutar el contenedor $0"
+msgstr "Fallo al ejecutar el contenedor $0"
 
 #: src/ContainerHealthLogs.jsx:97
 msgid "Failed to run health check on container $0"
@@ -757,7 +757,7 @@
 msgid "Loading details..."
 msgstr "Cargando detalles..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Cargando registros..."
 
@@ -1310,7 +1310,7 @@
 msgid "View $0"
 msgstr "Ver $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Ver $0 bitácoras"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/fi.po 
new/cockpit-podman-120/po/fi.po
--- old/cockpit-podman-119.1/po/fi.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/fi.po     2026-01-27 20:53:56.000000000 +0100
@@ -8,9 +8,9 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
-"PO-Revision-Date: 2025-10-31 09:49+0000\n"
-"Last-Translator: Ricky Tigg <[email protected]>\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
+"PO-Revision-Date: 2025-12-30 19:58+0000\n"
+"Last-Translator: Jan Kuparinen <[email protected]>\n"
 "Language-Team: Finnish <https://translate.fedoraproject.org/projects/cockpit/";
 "cockpit-podman/fi/>\n"
 "Language: fi\n"
@@ -18,7 +18,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1\n"
-"X-Generator: Weblate 5.13.3\n"
+"X-Generator: Weblate 5.15.1\n"
 
 #: src/Images.jsx:96
 msgid "$0 container"
@@ -755,7 +755,7 @@
 msgid "Loading details..."
 msgstr "Ladataan tietoja..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Ladataan lokeja..."
 
@@ -1308,7 +1308,7 @@
 msgid "View $0"
 msgstr "Näytä $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Näytä $0 lokia"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/fr.po 
new/cockpit-podman-120/po/fr.po
--- old/cockpit-podman-119.1/po/fr.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/fr.po     2026-01-27 20:53:56.000000000 +0100
@@ -9,8 +9,8 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
-"PO-Revision-Date: 2025-11-13 23:29+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
+"PO-Revision-Date: 2026-01-26 20:58+0000\n"
 "Last-Translator: Léane GRASSER <[email protected]>\n"
 "Language-Team: French <https://translate.fedoraproject.org/projects/cockpit/";
 "cockpit-podman/fr/>\n"
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n > 1\n"
-"X-Generator: Weblate 5.14.3\n"
+"X-Generator: Weblate 5.15.2\n"
 
 #: src/Images.jsx:96
 msgid "$0 container"
@@ -631,7 +631,7 @@
 "all IPs on the host."
 msgstr ""
 "Si l'IP hôte est définie sur 0.0.0.0 ou non définie, le port sera relié à "
-"toutes les IP de l'hôte."
+"toutes les IP de l’hôte."
 
 #: src/PublishPort.jsx:82
 msgid ""
@@ -757,7 +757,7 @@
 msgid "Loading details..."
 msgstr "Chargement des détails..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Chargement des logs..."
 
@@ -1311,7 +1311,7 @@
 msgid "View $0"
 msgstr "Voir $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Voir les journaux $0"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/it.po 
new/cockpit-podman-120/po/it.po
--- old/cockpit-podman-119.1/po/it.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/it.po     2026-01-27 20:53:56.000000000 +0100
@@ -14,9 +14,10 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
-"PO-Revision-Date: 2025-12-05 16:34+0000\n"
-"Last-Translator: Salvatore Cocuzza <[email protected]>\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
+"PO-Revision-Date: 2026-01-24 11:58+0000\n"
+"Last-Translator: Weblate Translation Memory <noreply-mt-weblate-translation-"
+"[email protected]>\n"
 "Language-Team: Italian <https://translate.fedoraproject.org/projects/cockpit/";
 "cockpit-podman/it/>\n"
 "Language: it\n"
@@ -24,7 +25,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1\n"
-"X-Generator: Weblate 5.14.3\n"
+"X-Generator: Weblate 5.15.2\n"
 
 #: src/Images.jsx:96
 msgid "$0 container"
@@ -378,7 +379,7 @@
 
 #: src/ImageRunModal.jsx:922 src/ImageDetails.jsx:23
 msgid "Entrypoint"
-msgstr "Entrypoint"
+msgstr "Punto d'ingresso"
 
 #: src/ContainerIntegration.jsx:158 src/ImageRunModal.jsx:1069
 msgid "Environment variables"
@@ -765,7 +766,7 @@
 msgid "Loading details..."
 msgstr "Caricamento dettagli in corso..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Caricamento log in corso..."
 
@@ -1268,7 +1269,7 @@
 
 #: src/ContainerHealthLogs.jsx:79 src/ImageRunModal.jsx:1110
 msgid "Timeout"
-msgstr "Timeout"
+msgstr "Tempo scaduto"
 
 #: src/app.jsx:858
 msgid "Troubleshoot"
@@ -1318,7 +1319,7 @@
 msgid "View $0"
 msgstr "Visualizza $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Visualizza $0 log"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/ja.po 
new/cockpit-podman-120/po/ja.po
--- old/cockpit-podman-119.1/po/ja.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/ja.po     2026-01-27 20:53:56.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-02-28 05:23+0000\n"
 "Last-Translator: Martin Pitt <[email protected]>\n"
 "Language-Team: Japanese <https://translate.fedoraproject.org/projects/";
@@ -752,7 +752,7 @@
 msgid "Loading details..."
 msgstr "詳細をロード中..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "ログをロード中..."
 
@@ -1302,7 +1302,7 @@
 msgid "View $0"
 msgstr ""
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/ka.po 
new/cockpit-podman-120/po/ka.po
--- old/cockpit-podman-119.1/po/ka.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/ka.po     2026-01-27 20:53:56.000000000 +0100
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
-"PO-Revision-Date: 2025-11-13 23:29+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
+"PO-Revision-Date: 2026-01-24 11:58+0000\n"
 "Last-Translator: Temuri Doghonadze <[email protected]>\n"
 "Language-Team: Georgian <https://translate.fedoraproject.org/projects/";
 "cockpit/cockpit-podman/ka/>\n"
@@ -18,7 +18,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1\n"
-"X-Generator: Weblate 5.14.3\n"
+"X-Generator: Weblate 5.15.2\n"
 
 #: src/Images.jsx:96
 msgid "$0 container"
@@ -96,7 +96,7 @@
 
 #: src/Containers.jsx:559 src/Containers.jsx:562 src/Containers.jsx:681
 msgid "CPU"
-msgstr "პროცესორი"
+msgstr "CPU"
 
 #: src/ImageRunModal.jsx:974
 msgid "CPU Shares help"
@@ -756,7 +756,7 @@
 msgid "Loading details..."
 msgstr "დეტალების ჩატვირთვა..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "ჟურნალის ჩატვირთვა..."
 
@@ -1308,7 +1308,7 @@
 msgid "View $0"
 msgstr "$0-ის ნახვა"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "$0-ის ჟურნალის ნახვა"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/ko.po 
new/cockpit-podman-120/po/ko.po
--- old/cockpit-podman-119.1/po/ko.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/ko.po     2026-01-27 20:53:56.000000000 +0100
@@ -8,9 +8,9 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
-"PO-Revision-Date: 2025-12-03 21:23+0000\n"
-"Last-Translator: Jo Hyeonsu <[email protected]>\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
+"PO-Revision-Date: 2025-12-13 23:35+0000\n"
+"Last-Translator: 김인수 <[email protected]>\n"
 "Language-Team: Korean <https://translate.fedoraproject.org/projects/cockpit/";
 "cockpit-podman/ko/>\n"
 "Language: ko\n"
@@ -749,13 +749,13 @@
 msgid "Loading details..."
 msgstr "세부정보 적재 중..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "기록 적재 중..."
 
 #: src/ImageUsedBy.jsx:14 src/Containers.jsx:695
 msgid "Loading..."
-msgstr "불러오는 중..."
+msgstr "적재 중..."
 
 #: src/ImageRunModal.jsx:775
 msgid "Local"
@@ -1294,7 +1294,7 @@
 msgid "View $0"
 msgstr "$0 보기"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "$0 기록 보기"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/pl.po 
new/cockpit-podman-120/po/pl.po
--- old/cockpit-podman-119.1/po/pl.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/pl.po     2026-01-27 20:53:56.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2024-06-14 18:36+0000\n"
 "Last-Translator: Wojciech Teichert <[email protected]>\n"
 "Language-Team: Polish <https://translate.fedoraproject.org/projects/cockpit-";
@@ -770,7 +770,7 @@
 msgid "Loading details..."
 msgstr "Wczytywanie szczegółów…"
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Wczytywanie dzienników…"
 
@@ -1327,7 +1327,7 @@
 msgid "View $0"
 msgstr ""
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/pt_BR.po 
new/cockpit-podman-120/po/pt_BR.po
--- old/cockpit-podman-119.1/po/pt_BR.po        2025-12-10 14:13:18.000000000 
+0100
+++ new/cockpit-podman-120/po/pt_BR.po  2026-01-27 20:53:56.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-11-20 01:58+0000\n"
 "Last-Translator: Weblate Translation Memory <noreply-mt-weblate-translation-"
 "[email protected]>\n"
@@ -758,7 +758,7 @@
 msgid "Loading details..."
 msgstr "Carregando detalhes..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Carregando logs..."
 
@@ -1313,7 +1313,7 @@
 msgid "View $0"
 msgstr "Ver $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Ver logs de $0"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/sv.po 
new/cockpit-podman-120/po/sv.po
--- old/cockpit-podman-119.1/po/sv.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/sv.po     2026-01-27 20:53:56.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-07-21 10:54+0000\n"
 "Last-Translator: Luna Jernberg <[email protected]>\n"
 "Language-Team: Swedish <https://translate.fedoraproject.org/projects/cockpit/";
@@ -755,7 +755,7 @@
 msgid "Loading details..."
 msgstr "Läser in detaljer …"
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Läser in loggar …"
 
@@ -1307,7 +1307,7 @@
 msgid "View $0"
 msgstr "Visa $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Visa $0 loggar"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/tr.po 
new/cockpit-podman-120/po/tr.po
--- old/cockpit-podman-119.1/po/tr.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/tr.po     2026-01-27 20:53:56.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-11-02 14:18+0000\n"
 "Last-Translator: Burak Yavuz <[email protected]>\n"
 "Language-Team: Turkish <https://translate.fedoraproject.org/projects/cockpit/";
@@ -754,7 +754,7 @@
 msgid "Loading details..."
 msgstr "Ayrıntılar yükleniyor..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Günlükler yükleniyor..."
 
@@ -1307,7 +1307,7 @@
 msgid "View $0"
 msgstr "$0 görüntüle"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "$0 günlüklerini görüntüle"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/uk.po 
new/cockpit-podman-120/po/uk.po
--- old/cockpit-podman-119.1/po/uk.po   2025-12-10 14:13:18.000000000 +0100
+++ new/cockpit-podman-120/po/uk.po     2026-01-27 20:53:56.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-11-13 23:29+0000\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <https://translate.fedoraproject.org/projects/";
@@ -763,7 +763,7 @@
 msgid "Loading details..."
 msgstr "Завантаження подробиць…"
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "Завантаження журналу…"
 
@@ -1317,7 +1317,7 @@
 msgid "View $0"
 msgstr "Перегляд $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "Перегляд журналу $0"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/zh_CN.po 
new/cockpit-podman-120/po/zh_CN.po
--- old/cockpit-podman-119.1/po/zh_CN.po        2025-12-10 14:13:18.000000000 
+0100
+++ new/cockpit-podman-120/po/zh_CN.po  2026-01-27 20:53:56.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE_VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-11-16 00:21+0000\n"
 "Last-Translator: Weblate Translation Memory <noreply-mt-weblate-translation-"
 "[email protected]>\n"
@@ -744,7 +744,7 @@
 msgid "Loading details..."
 msgstr "加载详细信息..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "正在加载日志..."
 
@@ -1286,7 +1286,7 @@
 msgid "View $0"
 msgstr "查看 $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "查看 $0 日志"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/po/zh_Hant.po 
new/cockpit-podman-120/po/zh_Hant.po
--- old/cockpit-podman-119.1/po/zh_Hant.po      2025-12-10 14:13:18.000000000 
+0100
+++ new/cockpit-podman-120/po/zh_Hant.po        2026-01-27 20:53:56.000000000 
+0100
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-12-05 03:42+0000\n"
+"POT-Creation-Date: 2026-01-26 04:09+0000\n"
 "PO-Revision-Date: 2025-07-31 06:53+0000\n"
 "Last-Translator: hsu zangmen <[email protected]>\n"
 "Language-Team: Chinese (Traditional Han script) <https://";
@@ -750,7 +750,7 @@
 msgid "Loading details..."
 msgstr "正在載入詳細資料中..."
 
-#: src/ContainerLogs.jsx:57
+#: src/ContainerLogs.jsx:61
 msgid "Loading logs..."
 msgstr "正在載入記錄檔中..."
 
@@ -1291,7 +1291,7 @@
 msgid "View $0"
 msgstr "檢視 $0"
 
-#: src/ContainerLogs.jsx:178
+#: src/ContainerLogs.jsx:182
 msgid "View $0 logs"
 msgstr "檢視 $0 記錄檔"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cockpit-podman-119.1/src/ContainerLogs.jsx 
new/cockpit-podman-120/src/ContainerLogs.jsx
--- old/cockpit-podman-119.1/src/ContainerLogs.jsx      2025-12-10 
14:13:18.000000000 +0100
+++ new/cockpit-podman-120/src/ContainerLogs.jsx        2026-01-27 
20:53:56.000000000 +0100
@@ -35,6 +35,9 @@
 
 const _ = cockpit.gettext;
 
+// Default xterm.js scrollback size 
https://xtermjs.org/docs/api/terminal/interfaces/iterminaloptions/#optional-scrollback
+const LOGS_MAX_SIZE = 1000;
+
 class ContainerLogs extends React.Component {
     constructor(props) {
         super(props);
@@ -51,7 +54,8 @@
             disableStdin: true,
             fontSize: 12,
             fontFamily: 'Menlo, Monaco, Consolas, monospace',
-            screenReaderMode: true
+            screenReaderMode: true,
+            scrollback: LOGS_MAX_SIZE,
         });
         this.view._core.cursorHidden = true;
         this.view.write(_("Loading logs..."));
@@ -115,7 +119,7 @@
 
         const connection = rest.connect(this.props.uid);
         connection.monitor(client.VERSION + "libpod/containers/" + 
this.props.containerId +
-                           "/logs?follow=true&stdout=true&stderr=true",
+                           
`/logs?follow=true&stdout=true&stderr=true&tail=${LOGS_MAX_SIZE}`,
                            this.onStreamMessage, true)
                 .then(this.onStreamClose)
                 .catch(e => {

++++++ esbuild-ppc64.patch ++++++
>From 1764da027c73beece1c23f67726a34fce84ccd21 Mon Sep 17 00:00:00 2001
From: Miika Alikirri <[email protected]>
Date: Tue, 10 Feb 2026 22:55:45 +0200
Subject: Don't use esbuild wasm on ppc64

For some reason, wasm runtime is broken on node24 so we should
use native runtime instead
---
 build.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.js b/build.js
index cef4a9f..1f9a149 100755
--- a/build.js
+++ b/build.js
@@ -13,7 +13,7 @@ import { cockpitRsyncEsbuildPlugin } from 
'./pkg/lib/cockpit-rsync-plugin.js';
 import { cleanPlugin } from './pkg/lib/esbuild-cleanup-plugin.js';
 import { cockpitCompressPlugin } from './pkg/lib/esbuild-compress-plugin.js';
 
-const useWasm = os.arch() !== 'x64';
+const useWasm = os.arch() !== 'x64' && os.arch() !== 'ppc64';
 
 const esbuild = await (async () => {
     try {
-- 
2.52.0


++++++ node_modules.obscpio ++++++
/work/SRC/openSUSE:Factory/cockpit-podman/node_modules.obscpio 
/work/SRC/openSUSE:Factory/.cockpit-podman.new.1977/node_modules.obscpio 
differ: char 60, line 1

++++++ node_modules.spec.inc ++++++
++++ 931 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/cockpit-podman/node_modules.spec.inc
++++ and 
/work/SRC/openSUSE:Factory/.cockpit-podman.new.1977/node_modules.spec.inc

++++++ package-lock.json ++++++
++++ 2279 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/cockpit-podman/package-lock.json
++++ and /work/SRC/openSUSE:Factory/.cockpit-podman.new.1977/package-lock.json

Reply via email to