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

constants.js « edit « profile « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e07615273f7a5ebe579119fc31009c53fea32584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { s__, __ } from '~/locale';

export const avatarI18n = {
  publicAvatar: s__('Profiles|Public avatar'),
  changeOrRemoveAvatar: s__(
    'Profiles|You can change your avatar here or remove the current avatar to revert to %{gravatar_link}',
  ),
  changeAvatar: s__('Profiles|You can change your avatar here'),
  uploadOrChangeAvatar: s__(
    'Profiles|You can upload your avatar here or change it at %{gravatar_link}',
  ),
  uploadAvatar: s__('Profiles|You can upload your avatar here'),
  uploadNewAvatar: s__('Profiles|Upload new avatar'),
  chooseFile: s__('Profiles|Choose file...'),
  noFileChosen: s__('Profiles|No file chosen.'),
  maximumFileSize: s__('Profiles|The maximum file size allowed is 200KB.'),
  removeAvatar: s__('Profiles|Remove avatar'),
  removeAvatarConfirmation: s__('Profiles|Avatar will be removed. Are you sure?'),
  cropAvatarTitle: s__('Profiles|Position and size your new avatar'),
  cropAvatarImageAltText: s__('Profiles|Avatar cropper'),
  cropAvatarSetAsNewAvatar: s__('Profiles|Set new profile picture'),
};

export const statusI18n = {
  setStatusTitle: s__('Profiles|Current status'),
  setStatusDescription: s__(
    'Profiles|This emoji and message will appear on your profile and throughout the interface.',
  ),
};

export const i18n = {
  updateProfileSettings: s__('Profiles|Update profile settings'),
  cancel: __('Cancel'),
};