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

Fix capitalization in en lang strings, fix label for adding an issue to a Milestone #6142

Merged
merged 2 commits into from
Jul 25, 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
4 changes: 2 additions & 2 deletions plugins/document-assets/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Document": "Document",
"ParentDocument": "Parent document",
"ChildDocument": "Child document",
"CreateDocument": "Create a document",
"CreateDocument": "Create document",
"Documents": "Documents",
"CreateAnVersion": "Create new version",
"DocumentNamePlaceholder": "Untitled",
Expand Down Expand Up @@ -38,7 +38,7 @@

"Description": "Description",

"CopyDocumentUrl": "Copy Document URL to clipboard",
"CopyDocumentUrl": "Copy document URL to clipboard",

"ViewMode": "View",
"EditMode": "Edit",
Expand Down
28 changes: 14 additions & 14 deletions plugins/tracker-assets/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
"UsedInIssueIDs": "Used in issue IDs",
"Identifier": "Identifier",
"Import": "Import",
"ProjectIdentifier": "Project Identifier",
"ProjectIdentifier": "Project identifier",
"IdentifierExists": "Project identifier already exists",
"ProjectIdentifierPlaceholder": "PRJCT",
"ChooseIcon": "Choose icon",
"AddIssue": "Add Issue",
"AddIssue": "Add issue",
"NewIssue": "New issue",
"NewIssuePlaceholder": "New",
"ResumeDraft": "Resume draft",
Expand Down Expand Up @@ -103,7 +103,7 @@
"ModificationDate": "Updated {value}",
"Project": "Project",
"Issue": "Issue",
"SubIssue": "Sub-Issue",
"SubIssue": "Sub-issue",
"Document": "",
"DocumentIcon": "",
"DocumentColor": "",
Expand All @@ -129,10 +129,10 @@
"All": "All",
"PastWeek": "Past week",
"PastMonth": "Past month",
"CopyIssueUrl": "Copy Issue URL to clipboard",
"CopyIssueId": "Copy Issue ID to clipboard",
"CopyIssueUrl": "Copy issue URL to clipboard",
"CopyIssueId": "Copy issue ID to clipboard",
"CopyIssueBranch": "Copy Git branch name to clipboard",
"CopyIssueTitle": "Copy Issue title to clipboard",
"CopyIssueTitle": "Copy issue title to clipboard",
"AssetLabel": "Asset",
"AddToComponent": "Add to component\u2026",
"MoveToComponent": "Move to component\u2026",
Expand Down Expand Up @@ -221,12 +221,12 @@
"NewMilestone": "New Milestone",
"CreateMilestone": "Create",

"MoveAndDeleteMilestone": "Move Issues to {newMilestone} and Delete {deleteMilestone}",
"MoveAndDeleteMilestone": "Move issues to {newMilestone} and delete {deleteMilestone}",
"MoveAndDeleteMilestoneConfirm": "Do you want to delete milestone and move issues to another milestone?",

"Estimation": "Estimation",
"ReportedTime": "Spent time",
"RemainingTime": "Remaining Time",
"RemainingTime": "Remaining time",
"TimeSpendReports": "Time spent reports",
"TimeSpendReport": "Time",
"TimeSpendReportAdd": "Add time report",
Expand All @@ -237,8 +237,8 @@
"TimeSpendDays": "{value}d",
"TimeSpendHours": "{value}h",
"TimeSpendMinutes": "{value}m",
"ChildEstimation": "Subissues Estimation",
"ChildReportedTime": "Subissues Time",
"ChildEstimation": "Sub-issues estimation",
"ChildReportedTime": "Sub-issues time",
"CapacityValue": "of {value}d",
"NewRelatedIssue": "New related issue",
"RelatedIssuesNotFound": "Related issues not found",
Expand All @@ -249,9 +249,9 @@

"IssueTemplate": "Template",
"IssueTemplates": "Templates",
"NewProcess": "New Template",
"SaveProcess": "Save Template",
"NoIssueTemplate": "No Template",
"NewProcess": "New template",
"SaveProcess": "Save template",
"NoIssueTemplate": "No template",
"TemplateReplace": "Do you want to apply the new template?",
"TemplateReplaceConfirm": "All fields will be overwritten by the new template values",
"Apply": "Apply",
Expand Down Expand Up @@ -284,7 +284,7 @@
"PreviousAssigned": "Previously assigned",
"IssueAssigneedToYou": "Assigned to you",
"RelatedIssueTargetDescription": "Related issue project target for Class or Space",
"MapRelatedIssues": "Configure Related issue default projects",
"MapRelatedIssues": "Configure related issue default projects",
"DefaultIssueStatus": "Default issue status",
"IssueStatus": "Status",
"Extensions": "Extensions",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

export let createParams: Record<string, any> = {}
export let viewletId = tracker.viewlet.SubIssues
export let createLabel = tracker.string.CreatedIssue
export let createLabel = tracker.string.AddIssue
export let hasSubIssues = false

let isCollapsed = false
Expand Down