Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « linked_resources « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b11cfc5f88dfee81c903adb142de482d2df8797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { s__ } from '~/locale';

export const resourceLinksI18n = Object.freeze({
  headerText: s__('LinkedResources|Linked resources'),
  helpText: s__('LinkedResources|Read more about linked resources'),
  addButtonText: s__('LinkedResources|Add a resource link'),
});

export const resourceLinksFormI18n = Object.freeze({
  linkTextLabel: s__('LinkedResources|Text (Optional)'),
  linkValueLabel: s__('LinkedResources|Link'),
  submitButtonText: s__('LinkedResources|Add'),
  cancelButtonText: s__('LinkedResources|Cancel'),
});