diff --git a/src/views/mobile/Signup.vue b/src/views/mobile/Signup.vue
index d11c86e2..8a0136d2 100644
--- a/src/views/mobile/Signup.vue
+++ b/src/views/mobile/Signup.vue
@@ -130,7 +130,7 @@
:key="categoryType" v-for="(categories, categoryType) in presetCategories">
{{ getCategoryTypeName(categoryType) }}
-
@@ -140,7 +140,7 @@
-
@@ -300,7 +300,7 @@ export default {
for (let j = 0; j < categories.length; j++) {
const category = categories[j];
const submitCategory = {
- name: self.$t('category.' + category.name, self.currentLocale),
+ name: self.$t('category.' + category.name),
type: parseInt(categoryType),
icon: category.categoryIconId,
color: category.color,
@@ -310,7 +310,7 @@ export default {
for (let k = 0; k < category.subCategories.length; k++) {
const subCategory = category.subCategories[k];
submitCategory.subCategories.push({
- name: self.$t('category.' + subCategory.name, self.currentLocale),
+ name: self.$t('category.' + subCategory.name),
type: parseInt(categoryType),
icon: subCategory.categoryIconId,
color: subCategory.color