Skip to content

Commit 5a2b598

Browse files
committed
expiry translations
1 parent 0f055fa commit 5a2b598

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/monorepo-split-packages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
GITHUB_TOKEN: ${{ secrets.BOT }}
10-
CORE_VERSION: "^2.1.6"
10+
CORE_VERSION: "^2.1.7"
1111

1212
jobs:
1313
packages_split:
@@ -40,13 +40,13 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v4
4242

43-
# Search and replace "moox/core": "*" with "moox/core": "^2.1.6" in composer.json
43+
# Search and replace "moox/core": "*" with "moox/core": "^2.1.7" in composer.json
4444
- name: Replace core version in composer.json
4545
working-directory: packages/${{ matrix.package }}
4646
run: |
4747
if [ -f composer.json ]; then
4848
echo "Updating moox/core version in ${{ matrix.package }}"
49-
sed -i 's/"moox\/core": "\*"/"moox\/core": "^2.1.6"/g' composer.json
49+
sed -i 's/"moox\/core": "\*"/"moox\/core": "^2.1.7"/g' composer.json
5050
fi
5151
5252
# Commit the updated composer.json (if there was a change)
@@ -57,7 +57,7 @@ jobs:
5757
git config --global user.name "mooxbot"
5858
git config --global user.email "[email protected]"
5959
git add composer.json
60-
git commit -m "Update moox/core dependency to ^^2.1.6" || echo "No changes to commit"
60+
git commit -m "Update moox/core dependency to ^^2.1.7" || echo "No changes to commit"
6161
fi
6262
6363
- if: "!startsWith(github.ref, 'refs/tags/')"

packages/core/resources/lang/de/expiry.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
'updating_started' => 'Aktualisieren gestartet',
1515

1616
'expired_at' => 'Abgelaufen',
17+
'processing_deadline' => 'Bearbeitungsfrist'
1718
'cycle' => 'Turnus',
1819
'notifyUser' => 'Verantwortlicher',
1920
'expiry_job' => 'Typ',

packages/core/resources/lang/en/expiry.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'updating_started' => 'Updating started',
1919

2020
'expired_at' => 'Expired',
21+
'processing_deadline' => 'Processing deadline',
2122
'cycle' => 'Cycle',
2223
'notifyUser' => 'Verantwortlicher',
2324
'expiry_job' => 'Type',

packages/expiry/src/Resources/ExpiryResource.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ public static function table(Table $table): Table
5050
->toggleable()
5151
->sortable()
5252
->since(),
53+
Tables\Columns\TextColumn::make('processing_deadline')
54+
->label(__('core::expiry.processing_deadline'))
55+
->toggleable()
56+
->sortable()
57+
->since(),
5358
Tables\Columns\TextColumn::make('cycle')
5459
->label(__('core::expiry.cycle'))
5560
->toggleable()

0 commit comments

Comments
 (0)