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

frequent_items_mixin.js « components « frequent_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 704dc83ca8ec011e5ed1127eb5fb9d8bb2883b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { TRANSLATION_KEYS } from '../constants';

export default {
  props: {
    namespace: {
      type: String,
      required: true,
    },
  },
  methods: {
    getTranslations(keys) {
      const translationStrings = keys.reduce(
        (acc, key) => ({
          ...acc,
          [key]: TRANSLATION_KEYS[this.namespace][key],
        }),
        {},
      );

      return translationStrings;
    },
  },
};