Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/related_issues/constants.js')
-rw-r--r--app/assets/javascripts/related_issues/constants.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/javascripts/related_issues/constants.js b/app/assets/javascripts/related_issues/constants.js
index 3516836952f..23ea93cd258 100644
--- a/app/assets/javascripts/related_issues/constants.js
+++ b/app/assets/javascripts/related_issues/constants.js
@@ -114,8 +114,8 @@ export const PathIdSeparator = {
};
export const issuablesBlockHeaderTextMap = {
- [issuableTypesMap.ISSUE]: __('Linked issues'),
- [issuableTypesMap.INCIDENT]: __('Related incidents or issues'),
+ [issuableTypesMap.ISSUE]: __('Linked items'),
+ [issuableTypesMap.INCIDENT]: __('Linked incidents or issues'),
[issuableTypesMap.EPIC]: __('Linked epics'),
};
@@ -136,7 +136,7 @@ export const issuablesFormCategoryHeaderTextMap = {
};
export const issuablesFormInputTextMap = {
- [issuableTypesMap.ISSUE]: __('the following issue(s)'),
- [issuableTypesMap.INCIDENT]: __('the following incident(s) or issue(s)'),
- [issuableTypesMap.EPIC]: __('the following epic(s)'),
+ [issuableTypesMap.ISSUE]: __('the following issues'),
+ [issuableTypesMap.INCIDENT]: __('the following incidents or issues'),
+ [issuableTypesMap.EPIC]: __('the following epics'),
};