addons/isl/src/mergeConflicts/consts.tsxblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318import {t} from '../i18n';
b69ab319
b69ab3110export const CONFLICT_SIDE_LABELS = {
b69ab3111 /* Label used for the local / destination side of a conflict */
b69ab3112 local: t('dest - rebasing onto'),
b69ab3113 /* Shortened label used for the local / destination side of a conflict, when there's not good space for the full label */
b69ab3114 localShort: t('dest'),
b69ab3115 /* Label used for the incoming / source side of a conflict */
b69ab3116 incoming: t('source - being rebased'),
b69ab3117 /* Shortened label used for the incoming / source side of a conflict, when there's not good space for the full label */
b69ab3118 incomingShort: t('source'),
b69ab3119};