Skip to content

Commit

Permalink
Merge branch '2' into 3
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 7, 2024
2 parents f4cb16f + 25cb107 commit b6e4fe3
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tag-patch-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tag patch release

on:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
workflow_dispatch:
inputs:
latest_local_sha:
description: The latest local sha
required: true
type: string

permissions: {}

jobs:
tagpatchrelease:
name: Tag patch release
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Tag release
uses: silverstripe/gha-tag-release@v2
with:
latest_local_sha: ${{ inputs.latest_local_sha }}
5 changes: 4 additions & 1 deletion client/lang/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
"CampaignAdmin.ADDCAMPAIGN": "Kampagne hinzufügen",
"CampaignAdmin.DELETECAMPAIGN": "Sind Sie sicher, dass Sie diesen Eintrag löschen möchten?",
"CampaignAdmin.DRAFT": "Entwurf",
"CampaignAdmin.FORBIDDEN": "Sie haben keinen Zugriff auf diese Kampagne.",
"CampaignAdmin.ITEM_SUMMARY_PLURAL": "%s Elemente",
"CampaignAdmin.ITEM_SUMMARY_SINGULAR": "%s Element",
"CampaignAdmin.MODIFIED": "Geändert",
"CampaignAdmin.NO_CHANGES": "Keine Änderungen",
"CampaignAdmin.PAGE_NOT_FOUND": "Die Kampagne kann nicht gefunden werden.",
"CampaignAdmin.PUBLISHCAMPAIGN": "Kampagne veröffentlichen",
"CampaignAdmin.REMOVED": "Entfernt",
"CampaignAdmin.REVERTCAMPAIGN": "Rückgängig machen"
"CampaignAdmin.REVERTCAMPAIGN": "Rückgängig machen",
"CampaignAdmin.SOMETHING_WENT_WRONG": "Etwas ist schief gelaufen."
});
}
5 changes: 4 additions & 1 deletion client/lang/src/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
"CampaignAdmin.ADDCAMPAIGN": "Kampagne hinzufügen",
"CampaignAdmin.DELETECAMPAIGN": "Sind Sie sicher, dass Sie diesen Eintrag löschen möchten?",
"CampaignAdmin.DRAFT": "Entwurf",
"CampaignAdmin.FORBIDDEN": "Sie haben keinen Zugriff auf diese Kampagne.",
"CampaignAdmin.ITEM_SUMMARY_PLURAL": "%s Elemente",
"CampaignAdmin.ITEM_SUMMARY_SINGULAR": "%s Element",
"CampaignAdmin.MODIFIED": "Geändert",
"CampaignAdmin.NO_CHANGES": "Keine Änderungen",
"CampaignAdmin.PAGE_NOT_FOUND": "Die Kampagne kann nicht gefunden werden.",
"CampaignAdmin.PUBLISHCAMPAIGN": "Kampagne veröffentlichen",
"CampaignAdmin.REMOVED": "Entfernt",
"CampaignAdmin.REVERTCAMPAIGN": "Rückgängig machen"
"CampaignAdmin.REVERTCAMPAIGN": "Rückgängig machen",
"CampaignAdmin.SOMETHING_WENT_WRONG": "Etwas ist schief gelaufen."
}

0 comments on commit b6e4fe3

Please sign in to comment.