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/diffs/i18n.js')
-rw-r--r--app/assets/javascripts/diffs/i18n.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/assets/javascripts/diffs/i18n.js b/app/assets/javascripts/diffs/i18n.js
index a45fd92d0a9..e617890af2e 100644
--- a/app/assets/javascripts/diffs/i18n.js
+++ b/app/assets/javascripts/diffs/i18n.js
@@ -25,3 +25,25 @@ export const SETTINGS_DROPDOWN = {
fileByFile: __('Show one file at a time'),
preferences: __('Preferences'),
};
+
+export const CONFLICT_TEXT = {
+ both_modified: __('Conflict: This file was modified in both the source and target branches.'),
+ modified_source_removed_target: __(
+ 'Conflict: This file was modified in the source branch, but removed in the target branch.',
+ ),
+ modified_target_removed_source: __(
+ 'Conflict: This file was removed in the source branch, but modified in the target branch.',
+ ),
+ renamed_same_file: __(
+ 'Conflict: This file was renamed differently in the source and target branches.',
+ ),
+ removed_source_renamed_target: __(
+ 'Conflict: This file was removed in the source branch, but renamed in the target branch.',
+ ),
+ removed_target_renamed_source: __(
+ 'Conflict: This file was renamed in the source branch, but removed in the target branch.',
+ ),
+ both_added: __(
+ 'Conflict: This file was added both in the source and target branches, but with different contents.',
+ ),
+};