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

L10n.vue « components « js - github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03e32e0a68b35a3e8cdefcd7c79d925d1921b67f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
    <span>{{ translated }}</span>
</template>

<script>
export default {
  computed: {
    translated: function() {
      return t("twofactor_gateway", this.text, this.options || {});
    }
  },
  props: ["text", "options"]
};
</script>