769 B20 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8import {t} from '../i18n';
9
10export const CONFLICT_SIDE_LABELS = {
11 /* Label used for the local / destination side of a conflict */
12 local: t('dest - rebasing onto'),
13 /* Shortened label used for the local / destination side of a conflict, when there's not good space for the full label */
14 localShort: t('dest'),
15 /* Label used for the incoming / source side of a conflict */
16 incoming: t('source - being rebased'),
17 /* Shortened label used for the incoming / source side of a conflict, when there's not good space for the full label */
18 incomingShort: t('source'),
19};
20