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

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

export default {
  computed: {
    statusTextBeforeAuthor() {
      return s__('mrWidget|Set by');
    },
    statusTextAfterAuthor() {
      return s__('mrWidget|to be merged automatically when the pipeline succeeds');
    },
    cancelButtonText() {
      return s__('mrWidget|Cancel');
    },
  },
};