fixes issue where the number of events are not displaying correctly
This commit is contained in:
Jeremy Quinton 2018-08-14 19:16:56 +02:00
parent 97c461cd04
commit 099ab7d2ff
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ return array (
'n_attendees_for_event' => '<b>:num</b> Attendee(s) for event: <b>:name</b> (:date)',
'no_events_yet' => 'No Event Yet!',
'no_events_yet_text' => 'Looks like you have yet to create an event. You can create one by clicking the button below.',
'num_events' => 'num_events',
'num_events' => ':num Events',
'or(manual/existing_venue)' => 'or',
'post_code' => 'Post Code',
'post_code_placeholder' => 'E.g: 94568.',

View File

@ -50,7 +50,7 @@
<div class="col-md-3 col-xs-6">
<div class="order_options">
<span class="event_count">
@lang("Event.num_events", ["num"=>$organiser->events->count()])
@lang("Event.num_events", ["num" => $organiser->events->count()])
</span>
</div>
</div>