Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1865 Change default to fixed assignee #1922

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e-test/cypress/integration/subproject_create_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("Subproject creation", function() {
cy.get("[data-test=subproject-create-button]").should("be.disabled");
});

it("Check confirmation dialog without a selected default assignee", function() {
it("Check confirmation dialog without a selected fixed assignee", function() {
cy.login();
cy.visit(`/projects/${projectId}`);
cy.intercept(apiRoute + "/project.viewDetails*").as("loadPage");
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/languages/english.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,12 @@ const en = {
subproject_general_workflowitem_type: "Only allow workflowitems of type general",
subproject_restricted_workflowitem_type:
"Only allow workflowitem of type restricted. When assigning a restricted workflowitem permissions are automatically granted and revoked. The assigner will only keep the view permissions.",
workflowitem_assignee: "Default assignee",
workflowitem_assignee: "Fixed assignee",
organization_info: "Organization",
total_budget_info: "Total budget",
default_assignee_warning: "Default assignee cannot be changed once Subproject is created.",
default_assignee_warning: "Fixed assignee cannot be changed once Subproject is created.",
default_assignee_warning2:
"Default assignee will be assigned to all workflow items in subproject without an option to change it."
"Fixed assignee will be assigned to all workflow items in subproject without an option to change it."
},

workflow: {
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/languages/french.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,12 @@ const fr = {
subproject_general_workflowitem_type: "Autoriser uniquement les éléments de workflow de type général",
subproject_restricted_workflowitem_type:
"Autoriser uniquement l'élément de flux de travail de type restreint. Lors de l'attribution d'un élément de flux de travail restreint, les autorisations sont automatiquement accordées et révoquées. Le cédant ne conservera que les autorisations d'affichage.",
workflowitem_assignee: "Default assignee",
workflowitem_assignee: "Fixed assignee",
organization_info: "Organization",
total_budget_info: "Total budget",
default_assignee_warning: "Default assignee cannot be changed once Subproject is created.",
default_assignee_warning: "Fixed assignee cannot be changed once Subproject is created.",
default_assignee_warning2:
"Default assignee will be assigned to all workflow items in subproject without an option to change it."
"Fixed assignee will be assigned to all workflow items in subproject without an option to change it."
},

workflow: {
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/languages/georgian.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,12 +303,12 @@ const ka = {
subproject_general_workflowitem_type: "დაუშვით მხოლოდ workflowitem ტიპის ზოგადი",
subproject_restricted_workflowitem_type:
"მხოლოდ ტიპის workflowitem- ის აკრძალვა შეზღუდულია. შეზღუდული workflowitem- ის მინიჭებისას, ნებართვები ავტომატურად გაიცემა და გაუქმდება. შემკვეთი მხოლოდ ნახვის ნებართვებს ინახავს.",
workflowitem_assignee: "ნაგულისხმევი მიმღები",
workflowitem_assignee: "ფიქსირებული მიმწოდებელი",
organization_info: "Organization",
total_budget_info: "Total budget",
default_assignee_warning: "Default assignee cannot be changed once Subproject is created.",
default_assignee_warning: "Fixed assignee cannot be changed once Subproject is created.",
default_assignee_warning2:
"Default assignee will be assigned to all workflow items in subproject without an option to change it."
"Fixed assignee will be assigned to all workflow items in subproject without an option to change it."
},

workflow: {
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/languages/german.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,12 @@ const de = {
subproject_general_workflowitem_type: "Nur Workflow-Elemente vom Typ 'general' zulassen",
subproject_restricted_workflowitem_type:
"Nur Workflow-Elemente vom Typ 'eingeschränkt' zulassen. Bei Zuweisung eines eingeschränkten Workflow-Items an einen anderen User werden Berechtigungen automatisch erteilt und entzogen. Der Zuweisende behält nur die Anzeigerechte.",
workflowitem_assignee: "Vorausgewählter Verantwortlicher",
workflowitem_assignee: "Fester Zuständiger",
organization_info: "Organization",
total_budget_info: "Total budget",
default_assignee_warning: "Default assignee cannot be changed once Subproject is created.",
default_assignee_warning: "Fixed assignee cannot be changed once Subproject is created.",
default_assignee_warning2:
"Default assignee will be assigned to all workflow items in subproject without an option to change it."
"Fixed assignee will be assigned to all workflow items in subproject without an option to change it."
},

workflow: {
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/languages/portuguese.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,9 @@ const pt = {
workflowitem_assignee: "Cessionário padrão",
organization_info: "Organization",
total_budget_info: "Total budget",
default_assignee_warning: "Default assignee cannot be changed once Subproject is created.",
default_assignee_warning: "Fixed assignee cannot be changed once Subproject is created.",
default_assignee_warning2:
"Default assignee will be assigned to all workflow items in subproject without an option to change it."
"Fixed assignee will be assigned to all workflow items in subproject without an option to change it."
},

workflow: {
Expand Down
Loading