Fixing Issue #465 - translatable strings

Credits to @kerrinhardy

4fa346f16b

Unfortunately due to merge conflict the
original author information was not retained.
This commit is contained in:
Sebastian Schmidt 2019-02-28 12:20:28 +11:00
parent a69523a53b
commit f2e441eae5
12 changed files with 14 additions and 7 deletions

View File

@ -31,8 +31,10 @@ return array (
'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',
'or(manual/existing_venue)' => 'or',
'payment_cancelled' => 'You cancelled your payment. You may try again.',
'post_code' => 'Post Code',
'post_code_placeholder' => 'E.g: 94568.',
'print_attendees_title' => 'Attendees',
'promote' => 'Promote',
'promote_event' => 'Promote Event',
'revenue' => 'Revenue',

View File

@ -26,6 +26,7 @@ return array (
'offline_payment_settings' => 'Offline Payment Settings',
'order_attendees' => 'Order Attendees',
'order_date' => 'Order Date',
'order_items' => 'Order Items',
'order_page_settings' => 'Order Page Settings',
'order_ref' => 'Reference',
'organiser_booking_fees' => 'Organiser Booking Fees',
@ -37,6 +38,7 @@ return array (
'reference' => 'Reference',
'refund/cancel' => 'Refund / Cancel',
'registered' => 'registered',
'search_placeholder' => 'Search Orders..',
'status' => 'Status',
'sub_total' => 'Sub Total',
'ticket' => 'Ticket',

View File

@ -65,6 +65,7 @@ return array (
'yes' => 'Yes',
'no' => 'No',
'sales_volume' => 'Sales Volume',
'search_placeholder' => 'Search Events..',
'select_an_organiser' => 'Select An Organiser',
'select_organiser' => 'Select Organiser',
'text_color' => 'Text Color',

View File

@ -38,6 +38,7 @@ return [
'free' => 'FREE',
'has_unlock_codes' => 'Do you have an unlock code?',
'inc_fees' => 'Booking Fees',
'grand_total' => 'Grand Total',
'last_name' => 'Last name',
'offline_payment_instructions' => 'Offline payment instructions',
'offline_payment_methods_available' => 'Offline Payment Methods Available',

View File

@ -23,6 +23,7 @@ return array (
'enabled' => 'Enabled',
'error_404' => 'Looks like the page you are looking for no longer exists or has moved.',
'event_dashboard' => 'Event Dashboard',
'event_menu' => 'Event Menu',
'event_page_design' => 'Event Page Design',
'export' => 'Export',
'general' => 'General',

View File

@ -73,7 +73,7 @@
</div>
</div>
<h3>Order Items</h3>
<h3>@lang('Order.order_items')</h3>
<div class="well nopad bgcolor-white p0">
<div class="table-responsive">
<table class="table table-hover" >

View File

@ -47,7 +47,7 @@
<div class="col-md-3 col-sm-6">
{!! Form::open(array('url' => route('showEventOrders', ['event_id'=>$event->id,'sort_by'=>$sort_by]), 'method' => 'get')) !!}
<div class="input-group">
<input name='q' value="{{$q or ''}}" placeholder="Search Orders.." type="text" class="form-control">
<input name='q' value="{{$q or ''}}" placeholder="@lang('Order.search_placeholder')" type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="ico-search"></i></button>
</span>

View File

@ -9,7 +9,7 @@
</a>
</li>
</ul>
<h5 class="heading">Event Menu</h5>
<h5 class="heading">@lang('basic.event_menu')</h5>
<ul id="nav_event" class="topmenu">
<li class="{{ Request::is('*dashboard*') ? 'active' : '' }}">
<a href="{{route('showEventDashboard', array('event_id' => $event->id))}}">

View File

@ -1,7 +1,7 @@
<html>
<head>
<title>
Attendees
@lang('Event.print_attendees_title')
</title>
<!--Style-->

View File

@ -33,7 +33,7 @@
<div class="col-md-3">
{!! Form::open(array('url' => route('showOrganiserEvents', ['organiser_id'=>$organiser->id]), 'method' => 'get')) !!}
<div class="input-group">
<input name="q" value="{{$search['q'] or ''}}" placeholder="Search Events.." type="text" class="form-control">
<input name="q" value="{{$search['q'] or ''}}" placeholder="@lang('Organiser.search_placeholder')" type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="ico-search"></i></button>
</span>

View File

@ -44,7 +44,7 @@
<span style="float: right;"><b>{{ $orderService->getTaxAmount(true) }}</b></span>
</h5>
<h5>
<strong>Grand Total:</strong>
<strong>@lang("Public_ViewEvent.grand_total")</strong>
<span style="float: right;"><b>{{ $orderService->getGrandTotal(true) }}</b></span>
</h5>
@endif

View File

@ -34,7 +34,7 @@
</p>
<div class="contact_form well well-sm">
{!! Form::open(array('url' => route('postContactOrganiser', array('event_id' => $event->id)), 'class' => 'reset ajax')) !!}
<h3>Contact <i>{{$event->organiser->name}}</i></h3>
<h3>@lang("Public_ViewEvent.Contact") <i>{{$event->organiser->name}}</i></h3>
<div class="form-group">
{!! Form::label(trans("Public_ViewEvent.your_name")) !!}
{!! Form::text('name', null,