We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3110a17 commit 255e280Copy full SHA for 255e280
src/pages/user/signup.vue
@@ -113,12 +113,12 @@ export default Vue.extend({
113
const reg = /[ -~]{6,}$/
114
const response = reg.test(this.password)
115
if (!response) {
116
- return 'パスワードが条件を満たしていません'
+ return this.$tc('common.user_data.labels.password_not_acceptable')
117
}
118
119
if (this.password && this.confirmation) {
120
if (this.password !== this.confirmation) {
121
- return 'パスワードが一致していません'
+ return this.$tc('common.user_data.labels.password_not_same')
122
123
return ''
124
0 commit comments