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

l10n.vue « view « js - github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16b39a11c12528763aad9caf96f41709a6116cff (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_sms", this.text, this.options || {});
    }
  },
  props: ["text", "options"]
};
</script>