From 5efa0771b8f904d911e45eb410cad6a42270d920 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Mon, 6 Nov 2023 16:30:39 +1300 Subject: [PATCH 1/4] TLN Update translations --- lang/fr.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lang/fr.yml b/lang/fr.yml index d73d214f..93a48253 100644 --- a/lang/fr.yml +++ b/lang/fr.yml @@ -7,12 +7,18 @@ fr: GROUPS: Groupes USERS: Utilisateurs NotifyUsersWorkflowAction: + EMAILFROM: 'Email de' EMAILSUBJECT: 'Sujet de l''email' + EMAILTEMPLATE: 'Modèle d''e-mail' Symbiote\AdvancedWorkflow\Actions\AssignUsersToWorkflowAction: many_many_Groups: Groupes many_many_Users: Utilisateurs Symbiote\AdvancedWorkflow\Actions\NotifyUsersWorkflowAction: + db_EmailFrom: 'Email de' db_EmailSubject: 'Sujet de l''email' + db_EmailTemplate: 'Modèle d''e-mail' + Symbiote\AdvancedWorkflow\Actions\SetPropertyWorkflowAction: + db_Value: Valeur Symbiote\AdvancedWorkflow\DataObjects\ImportedWorkflowTemplate: db_Content: Contenu db_Filename: 'Nom du fichier' From 7286f144e28fbc3740c6376cb16973400507da1b Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Thu, 14 Dec 2023 14:54:23 +1300 Subject: [PATCH 2/4] FIX Use correct namespace for imports --- src/Actions/UnpublishItemWorkflowAction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Actions/UnpublishItemWorkflowAction.php b/src/Actions/UnpublishItemWorkflowAction.php index ece9f5b0..d3903cfa 100644 --- a/src/Actions/UnpublishItemWorkflowAction.php +++ b/src/Actions/UnpublishItemWorkflowAction.php @@ -10,8 +10,8 @@ use Symbiote\AdvancedWorkflow\DataObjects\WorkflowInstance; use Symbiote\AdvancedWorkflow\Extensions\WorkflowEmbargoExpiryExtension; use Symbiote\AdvancedWorkflow\Jobs\WorkflowPublishTargetJob; -use Symbiote\QueuedJob\Services\AbstractQueuedJob; -use Symbiote\QueuedJob\Services\QueuedJobService; +use Symbiote\QueuedJobs\Services\AbstractQueuedJob; +use Symbiote\QueuedJobs\Services\QueuedJobService; /** * Unpublishes an item From 97388a524bb2773885977f85ac882235fd2119ec Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Thu, 21 Dec 2023 16:33:07 +1300 Subject: [PATCH 3/4] MNT Run module-standardiser (#510) --- .github/ISSUE_TEMPLATE.md | 1 + .github/ISSUE_TEMPLATE/1_bug_report.yml | 72 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/2_feature_request.yml | 35 ++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 +++ .github/PULL_REQUEST_TEMPLATE.md | 39 +++++++++++ 5 files changed, 155 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/1_bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/2_feature_request.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..cb5f0580 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1 @@ + diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/1_bug_report.yml new file mode 100644 index 00000000..c9566535 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1_bug_report.yml @@ -0,0 +1,72 @@ +name: 🪳 Bug Report +description: Tell us if something isn't working the way it's supposed to + +body: + - type: markdown + attributes: + value: | + We strongly encourage you to [submit a pull request](https://docs.silverstripe.org/en/contributing/code/) which fixes the issue. + Bug reports which are accompanied with a pull request are a lot more likely to be resolved quickly. + - type: input + id: affected-versions + attributes: + label: Module version(s) affected + description: | + What version of _this module_ have you reproduced this bug on? + Run `composer info` to see the specific version of each module installed in your project. + If you don't have access to that, check inside the help menu in the bottom left of the CMS. + placeholder: x.y.z + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of the problem + validations: + required: true + - type: textarea + id: how-to-reproduce + attributes: + label: How to reproduce + description: | + ⚠️ This is the most important part of the report ⚠️ + Without a way to easily reproduce your issue, there is little chance we will be able to help you and work on a fix. + - Please, take the time to show us some code and/or configuration that is needed for others to reproduce the problem easily. + - If the bug is too complex to reproduce with some short code samples, please reproduce it in a public repository and provide a link to the repository along with steps for setting up and reproducing the bug using that repository. + - If part of the bug includes an error or exception, please provide a full stack trace. + - If any user interaction is required to reproduce the bug, please add an ordered list of steps that are required to reproduce it. + - Be as clear as you can, but don't miss any steps out. Simply saying "create a page" is less useful than guiding us through the steps you're taking to create a page, for example. + placeholder: | + + #### Code sample + ```php + + ``` + + #### Reproduction steps + 1. + validations: + required: true + - type: textarea + id: possible-solution + attributes: + label: Possible Solution + description: | + *Optional: only if you have suggestions on a fix/reason for the bug* + Please consider [submitting a pull request](https://docs.silverstripe.org/en/contributing/code/) with your solution! It helps get faster feedback and greatly increases the chance of the bug being fixed. + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: "*Optional: any other context about the problem: log messages, screenshots, etc.*" + - type: checkboxes + id: validations + attributes: + label: Validations + description: "Before submitting the issue, please make sure you do the following:" + options: + - label: Check that there isn't already an issue that reports the same bug + required: true + - label: Double check that your reproduction steps work in a fresh installation of [`silverstripe/installer`](https://github.com/silverstripe/silverstripe-installer) (with any code examples you've provided) + required: true diff --git a/.github/ISSUE_TEMPLATE/2_feature_request.yml b/.github/ISSUE_TEMPLATE/2_feature_request.yml new file mode 100644 index 00000000..fe808a5f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2_feature_request.yml @@ -0,0 +1,35 @@ +name: 🚀 Feature Request +description: Submit a feature request (but only if you're planning on implementing it) +body: + - type: markdown + attributes: + value: | + Please only submit feature requests if you plan on implementing the feature yourself. + See the [contributing code documentation](https://docs.silverstripe.org/en/contributing/code/#make-or-find-a-github-issue) for more guidelines about submitting feature requests. + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of the new feature, and why it belongs in core + validations: + required: true + - type: textarea + id: more-info + attributes: + label: Additional context or points of discussion + description: | + *Optional: Any additional context, points of discussion, etc that might help validate and refine your idea* + - type: checkboxes + id: validations + attributes: + label: Validations + description: "Before submitting the issue, please confirm the following:" + options: + - label: You intend to implement the feature yourself + required: true + - label: You have read the [contributing guide](https://docs.silverstripe.org/en/contributing/code/) + required: true + - label: You strongly believe this feature should be in core, rather than being its own community module + required: true + - label: You have checked for existing issues or pull requests related to this feature (and didn't find any) + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..f7652003 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: Security Vulnerability + url: https://docs.silverstripe.org/en/contributing/issues_and_bugs/#reporting-security-issues + about: ⚠️ We do not use GitHub issues to track security vulnerability reports. Click "open" on the right to see how to report security vulnerabilities. + - name: Support Question + url: https://www.silverstripe.org/community/ + about: We use GitHub issues only to discuss bugs and new features. For support questions, please use one of the support options available in our community channels. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..0e44db18 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,39 @@ + +## Description + + +## Manual testing steps + + +## Issues + +- # + +## Pull request checklist + +- [ ] The target branch is correct + - See [picking the right version](https://docs.silverstripe.org/en/contributing/code/#picking-the-right-version) +- [ ] All commits are relevant to the purpose of the PR (e.g. no debug statements, unrelated refactoring, or arbitrary linting) + - Small amounts of additional linting are usually okay, but if it makes it hard to concentrate on the relevant changes, ask for the unrelated changes to be reverted, and submitted as a separate PR. +- [ ] The commit messages follow our [commit message guidelines](https://docs.silverstripe.org/en/contributing/code/#commit-messages) +- [ ] The PR follows our [contribution guidelines](https://docs.silverstripe.org/en/contributing/code/) +- [ ] Code changes follow our [coding conventions](https://docs.silverstripe.org/en/contributing/coding_conventions/) +- [ ] This change is covered with tests (or tests aren't necessary for this change) +- [ ] Any relevant User Help/Developer documentation is updated; for impactful changes, information is added to the changelog for the intended release +- [ ] CI is green From e147a4db5ab54207839b3081642d22e7d9cb8b5e Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Wed, 7 Feb 2024 16:15:25 +1300 Subject: [PATCH 4/4] TLN Update translations (#520) --- lang/nl.yml | 2 ++ lang/sk.yml | 3 +++ lang/sl.yml | 16 ++++++++++++++++ lang/sv.yml | 4 ++++ 4 files changed, 25 insertions(+) diff --git a/lang/nl.yml b/lang/nl.yml index 82df0f16..364206cc 100644 --- a/lang/nl.yml +++ b/lang/nl.yml @@ -7,6 +7,7 @@ nl: GROUPS: Groepen USERS: Gebruikers NotifyUsersWorkflowAction: + EMAILFROM: 'E-mail van' EMAILSUBJECT: E-mailonderwerp EMAILTEMPLATE: E-mailtemplate FORMATTINGHELP: 'Hulp met opmaak' @@ -14,6 +15,7 @@ nl: many_many_Groups: Groepen many_many_Users: Gebruikers Symbiote\AdvancedWorkflow\Actions\NotifyUsersWorkflowAction: + db_EmailFrom: 'E-mail van' db_EmailSubject: E-mailonderwerp db_EmailTemplate: E-mailtemplate Symbiote\AdvancedWorkflow\Actions\SetPropertyWorkflowAction: diff --git a/lang/sk.yml b/lang/sk.yml index f3ec4fe0..c025901b 100644 --- a/lang/sk.yml +++ b/lang/sk.yml @@ -48,6 +48,9 @@ sk: db_Type: Typ many_many_Groups: Skupiny many_many_Users: Používatelia + Symbiote\AdvancedWorkflow\Extensions\WorkflowApplicable: + has_one_WorkflowDefinition: 'Definícia pracovného toku' + many_many_AdditionalWorkflowDefinitions: 'Ďalšie definície pracovného toku' WorkflowAction: Author: Autor COMMENT: Komentár diff --git a/lang/sl.yml b/lang/sl.yml index 5ed0dc41..3042c32d 100644 --- a/lang/sl.yml +++ b/lang/sl.yml @@ -6,14 +6,25 @@ sl: AssignUsersToWorkflowAction: GROUPS: Skupine USERS: Uporabniki + NotifyUsersWorkflowAction: + EMAILFROM: 'Pošiljatelj e-sporočila' + EMAILSUBJECT: 'Predmet e-sporočila' + EMAILTEMPLATE: 'Predloga e-sporočila' Symbiote\AdvancedWorkflow\Actions\AssignUsersToWorkflowAction: many_many_Groups: Skupine many_many_Users: Uporabniki + Symbiote\AdvancedWorkflow\Actions\NotifyUsersWorkflowAction: + db_EmailFrom: 'Pošiljatelj e-sporočila' + db_EmailSubject: 'Predmet e-sporočila' + db_EmailTemplate: 'Predloga e-sporočila' + Symbiote\AdvancedWorkflow\Actions\SetPropertyWorkflowAction: + db_Value: Vrednost Symbiote\AdvancedWorkflow\DataObjects\ImportedWorkflowTemplate: db_Content: Vsebina db_Filename: 'Ime datoteke' db_Name: Ime Symbiote\AdvancedWorkflow\DataObjects\WorkflowAction: + db_Sort: Razvrščanje db_Title: Naziv db_Type: Tip has_one_Member: Uporabnik @@ -21,6 +32,7 @@ sl: has_one_Member: Uporabnik Symbiote\AdvancedWorkflow\DataObjects\WorkflowDefinition: db_Description: Opis + db_Sort: Razvrščanje db_Title: Naziv has_many_Actions: Dejanja many_many_Groups: Skupine @@ -31,10 +43,14 @@ sl: many_many_Groups: Skupine many_many_Users: Uporabniki Symbiote\AdvancedWorkflow\DataObjects\WorkflowTransition: + db_Sort: Razvrščanje db_Title: Naziv db_Type: Tip many_many_Groups: Skupine many_many_Users: Uporabniki + Symbiote\AdvancedWorkflow\Extensions\WorkflowApplicable: + has_one_WorkflowDefinition: 'Definicija uredniškega procesa' + many_many_AdditionalWorkflowDefinitions: 'Dodatne definicije uredniških procesov' WorkflowAction: Author: Avtor TITLE: Naziv diff --git a/lang/sv.yml b/lang/sv.yml index 09f78cd9..822a78db 100644 --- a/lang/sv.yml +++ b/lang/sv.yml @@ -27,6 +27,7 @@ sv: has_one_Member: Medlem Symbiote\AdvancedWorkflow\DataObjects\WorkflowActionInstance: db_Comment: Kommentar + db_Finished: Slutförd has_one_Member: Medlem Symbiote\AdvancedWorkflow\DataObjects\WorkflowDefinition: db_Description: Beskrivning @@ -51,6 +52,7 @@ sv: COMMENT: Kommentar CommentLabel: Kommentar FRONTENDCOMMENT: Kommentar + FinishedLabel: Slutförd TITLE: Titel TypeLabel: Typ WorkflowActionInstance: @@ -58,6 +60,8 @@ sv: WorkflowDefinition: DESCRIPTION: Beskrivning TITLE: Titel + WorkflowEmbargoExpiryExtension: + BADGE_UNPUBLISH: 'Går ut' WorkflowField: CreateLabel: Skapa DeleteAction: Radera