From 1ddd0fd8238d44f700eb09f46a2e91896d15279d Mon Sep 17 00:00:00 2001
From: "transifex-integration[bot]"
<43880903+transifex-integration[bot]@users.noreply.github.com>
Date: Mon, 1 Jun 2026 11:24:55 +0000
Subject: [PATCH 1/2] [skip CI] i18n: Translate dde-session-ui.ts in pt_BR
100% translated source file: 'dde-session-ui.ts'
on 'pt_BR'.
---
translations/dde-session-ui_pt_BR.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/translations/dde-session-ui_pt_BR.ts b/translations/dde-session-ui_pt_BR.ts
index 05f85098..6d7150ed 100644
--- a/translations/dde-session-ui_pt_BR.ts
+++ b/translations/dde-session-ui_pt_BR.ts
@@ -138,7 +138,7 @@
Notification Center
- Central de Notificações
+ Notificações
From 43062ac6be74e711fa46e93731c34645f82e04c0 Mon Sep 17 00:00:00 2001
From: deepin-admin-bot
Date: Mon, 22 Jun 2026 11:03:57 +0000
Subject: [PATCH 2/2] chore: Sync by
https://github.com/linuxdeepin/.github/commit/88706fa723e3771211cb0781d3d97fd4a6cd2a68
sync by github workflow
Log: none
Influence: none
---
.github/workflows/call-update-changelog.yml | 53 +++++++++++++++++++++
1 file changed, 53 insertions(+)
create mode 100644 .github/workflows/call-update-changelog.yml
diff --git a/.github/workflows/call-update-changelog.yml b/.github/workflows/call-update-changelog.yml
new file mode 100644
index 00000000..b76b9b3f
--- /dev/null
+++ b/.github/workflows/call-update-changelog.yml
@@ -0,0 +1,53 @@
+name: Call update changelog
+
+on:
+ workflow_dispatch:
+ inputs:
+ version:
+ description: "Target version; leave empty to auto bump"
+ required: false
+ type: string
+ name:
+ description: "Maintainer name used in debian/changelog"
+ required: true
+ type: string
+ email:
+ description: "Maintainer email used in debian/changelog"
+ required: true
+ type: string
+ base_branch:
+ description: "Base branch to read and target"
+ required: false
+ default: master
+ type: string
+ distribution:
+ description: "Changelog distribution"
+ required: false
+ default: unstable
+ type: string
+ create_pr:
+ description: "Create a pull request after generating changelog"
+ required: false
+ default: true
+ type: boolean
+
+jobs:
+ update_changelog:
+ uses: linuxdeepin/.github/.github/workflows/update-changelog.yml@master
+ with:
+ version: ${{ inputs.version }}
+ name: ${{ inputs.name }}
+ email: ${{ inputs.email }}
+ base_branch: ${{ inputs.base_branch }}
+ distribution: ${{ inputs.distribution }}
+ create_pr: ${{ inputs.create_pr }}
+ secrets: inherit
+
+ show_result:
+ runs-on: ubuntu-latest
+ needs: update_changelog
+ steps:
+ - name: Show update changelog result
+ run: |
+ echo "Version: ${{ needs.update_changelog.outputs.version }}"
+ echo "Pull Request URL: ${{ needs.update_changelog.outputs.pr_url }}"