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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-10 06:10:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-10 06:10:53 +0300
commit20559c59bda329bcd8991eecd0c8d9d31bc075fe (patch)
tree8e3d90d1dc7b7a2e51373c88658676b02de8ef27 /app/assets/javascripts/diffs
parentb1ec9d50c874a7e02ca3ca8b50a30a8b4db8f216 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/diffs')
-rw-r--r--app/assets/javascripts/diffs/components/diff_row_utils.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/diffs/components/diff_row_utils.js b/app/assets/javascripts/diffs/components/diff_row_utils.js
index e0749b63021..479853caae3 100644
--- a/app/assets/javascripts/diffs/components/diff_row_utils.js
+++ b/app/assets/javascripts/diffs/components/diff_row_utils.js
@@ -72,17 +72,17 @@ export const addCommentTooltip = (line) => {
if (brokenSymlink) {
if (brokenSymlink.wasSymbolic || brokenSymlink.isSymbolic) {
tooltip = __(
- 'Commenting on symbolic links that replace or are replaced by files is currently not supported.',
+ 'Commenting on symbolic links that replace or are replaced by files is not supported',
);
} else if (brokenSymlink.wasReal || brokenSymlink.isReal) {
tooltip = __(
- 'Commenting on files that replace or are replaced by symbolic links is currently not supported.',
+ 'Commenting on files that replace or are replaced by symbolic links is not supported',
);
}
} else if (fileOnlyMoved) {
- tooltip = __('Commenting on files that are only moved or renamed is currently not supported');
+ tooltip = __('Commenting on files that are only moved or renamed is not supported');
} else if (brokenLineCode) {
- tooltip = __('Commenting on this line is currently not supported');
+ tooltip = __('Commenting on this line is not supported');
}
return tooltip;