We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db54c5 commit 7fe3884Copy full SHA for 7fe3884
1 file changed
src/components/Questions/QuestionLinearScale.vue
@@ -80,12 +80,14 @@
80
</template>
81
82
<script>
83
+import { t } from '@nextcloud/l10n'
84
import NcActionInput from '@nextcloud/vue/components/NcActionInput'
85
import NcCheckboxRadioSwitch from '@nextcloud/vue/components/NcCheckboxRadioSwitch'
86
87
+import IconPencil from 'vue-material-design-icons/Pencil.vue'
88
+
89
import QuestionMixin from '../../mixins/QuestionMixin.js'
90
-import IconPencil from 'vue-material-design-icons/Pencil.vue'
91
92
export default {
93
name: 'QuestionLinearScale',
@@ -104,8 +106,8 @@ export default {
104
106
105
107
lowestOption: 1,
108
highestOption: 5,
- labelLowest: 'Lowest',
- labelHighest: 'Highest',
109
+ labelLowest: t('forms', 'Strongly disagree'),
110
+ labelHighest: t('forms', 'Strongly agree'),
111
}
112
},
113
0 commit comments