Skip to content

Commit 255e280

Browse files
committed
翻訳キーが当たっていなかったところを修正
1 parent 3110a17 commit 255e280

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/user/signup.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ export default Vue.extend({
113113
const reg = /[ -~]{6,}$/
114114
const response = reg.test(this.password)
115115
if (!response) {
116-
return 'パスワードが条件を満たしていません'
116+
return this.$tc('common.user_data.labels.password_not_acceptable')
117117
}
118118
}
119119
if (this.password && this.confirmation) {
120120
if (this.password !== this.confirmation) {
121-
return 'パスワードが一致していません'
121+
return this.$tc('common.user_data.labels.password_not_same')
122122
}
123123
return ''
124124
}

0 commit comments

Comments
 (0)