mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
Check-in: New error reason for unapproved orders (#3741)
* Check-in: New error reason for unapproved orders * Fix documentation verbiage
This commit is contained in:
@@ -278,8 +278,10 @@ export default {
|
||||
return this.$root.strings['result.ok']
|
||||
} else if (this.checkResult.status === 'incomplete') {
|
||||
return this.$root.strings['result.questions']
|
||||
} else {
|
||||
} else if (this.$root.strings['result.' + this.checkResult.reason]) {
|
||||
return this.$root.strings['result.' + this.checkResult.reason]
|
||||
} else {
|
||||
return this.checkResult.reason
|
||||
}
|
||||
},
|
||||
checkResultColor () {
|
||||
|
||||
@@ -62,6 +62,7 @@ window.vapp = new Vue({
|
||||
'result.invalid_time': gettext('Ticket not valid at this time'),
|
||||
'result.canceled': gettext('Order canceled'),
|
||||
'result.ambiguous': gettext('Ticket code is ambiguous on list'),
|
||||
'result.unapproved': gettext('Order not approved'),
|
||||
'status.checkin': gettext('Checked-in Tickets'),
|
||||
'status.position': gettext('Valid Tickets'),
|
||||
'status.inside': gettext('Currently inside'),
|
||||
|
||||
Reference in New Issue
Block a user