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