diff --git a/resources/views/ja/Emails/Auth/Reminder.blade.php b/resources/views/ja/Emails/Auth/Reminder.blade.php index ca3536f1..c7bd4a4b 100644 --- a/resources/views/ja/Emails/Auth/Reminder.blade.php +++ b/resources/views/ja/Emails/Auth/Reminder.blade.php @@ -2,10 +2,10 @@ @section('message_content')
Hi {{$first_name}}
+こんにちは {{$first_name}}
- Thank you for registering for {{ config('attendize.app_name') }}. We're thrilled to have you on board. + {{config( 'attendize.app_name')}}に登録していただきありがとうございます。登録していただきとても嬉しいです。
- You can create you first event and confirm your email using the link below. + あなたは最初のイベントを作成し、下記のリンクを使ってあなたのメールアドレスを確認することができます。
- If you have any questions, feedback or suggestions feel free to reply to this email. + ご質問、ご意見、ご提案がありましたら、このメールにお気軽にお問い合わせください。
- Thank you + ありがとう
@stop diff --git a/resources/views/ja/Emails/OrderConfirmation.blade.php b/resources/views/ja/Emails/OrderConfirmation.blade.php index e788732f..da5ee5ec 100644 --- a/resources/views/ja/Emails/OrderConfirmation.blade.php +++ b/resources/views/ja/Emails/OrderConfirmation.blade.php @@ -1,121 +1,121 @@ @extends('en.Emails.Layouts.Master') @section('message_content') -Hello,| - Ticket - | -- Qty. - | -- Price - | -- Fee - | -- Total - | -||||||||||||||||||||||||||||
| - {{$order_item->title}} - | -- {{$order_item->quantity}} - | -
- @if((int)ceil($order_item->unit_price) == 0)
- FREE
- @else
- {{money($order_item->unit_price, $order->event->currency)}}
- @endif
+ Order Items+
+
|
+ ||||||||||||||||||||||||||||||
| + | ++ | ++ | ++ 小計 + | ++ {{$orderService->getOrderTotalWithBookingFee(true)}} + | +||||||||||||||||||||||||||||
| + | ++ | ++ | ++ {{$order->event->organiser->tax_name}} + | ++ {{$orderService->getTaxAmount(true)}} + | +||||||||||||||||||||||||||||
| + | ++ | ++ | ++ 合計 + | ++ {{$orderService->getGrandTotal(true)}} + | +||||||||||||||||||||||||||||
| - Ticket - | -- Quantity - | -- Price - | -- Booking Fee - | -- Total - | -|
|---|---|---|---|---|---|
| - {{$order_item->title}} - | -- {{$order_item->quantity}} - | -- @if((int)ceil($order_item->unit_price) == 0) - FREE - @else - {{money($order_item->unit_price, $order->event->currency)}} - @endif - - | -- @if((int)ceil($order_item->unit_price) == 0) - - - @else - {{money($order_item->unit_booking_fee, $order->event->currency)}} - @endif - - | -- @if((int)ceil($order_item->unit_price) == 0) - FREE - @else - {{money(($order_item->unit_price + $order_item->unit_booking_fee) * ($order_item->quantity), $order->event->currency)}} - @endif - - | -|
| - | -- | -- | -- Sub Total - | -- {{$orderService->getOrderTotalWithBookingFee(true)}} - | -|
| - | -- | -- | -- {{$order->event->organiser->tax_name}} - | -- {{$orderService->getTaxAmount(true)}} - | -|
| - | -- | -- | -- Total - | -- {{$orderService->getGrandTotal(true)}} - | -|
| + チケット + | ++ 個数 + | ++ 価格 + | ++ 予約料金 + | ++ 合計 + | +|
|---|---|---|---|---|---|
| + {{$order_item->title}} + | ++ {{$order_item->quantity}} + | ++ @if((int)ceil($order_item->unit_price) == 0) + 無料 + @else + {{money($order_item->unit_price, $order->event->currency)}} + @endif + + | ++ @if((int)ceil($order_item->unit_price) == 0) + - + @else + {{money($order_item->unit_booking_fee, $order->event->currency)}} + @endif + + | ++ @if((int)ceil($order_item->unit_price) == 0) + 無料 + @else + {{money(($order_item->unit_price + $order_item->unit_booking_fee) * ($order_item->quantity), $order->event->currency)}} + @endif + + | +|
| + | ++ | ++ | ++ 小計 + | ++ {{$orderService->getOrderTotalWithBookingFee(true)}} + | +|
| + | ++ | ++ | ++ {{$order->event->organiser->tax_name}} + | ++ {{$orderService->getTaxAmount(true)}} + | +|
| + | ++ | ++ | ++ 合計 + | ++ {{$orderService->getGrandTotal(true)}} + | +|
Hello
+こんにちは
You have been added to an {{ config('attendize.app_name') }} account by {{$inviter->first_name.' '.$inviter->last_name}}.
- You can log in using the following details.
+ 以下の詳細を使用してログインできます。
Username: {{$user->email}}
Password: {{$temp_password}}
- You can change your temporary password once you have logged. + ログイン後、一時パスワードを変更することができます。
- If you have any questions please reply to this email. + ご質問がある場合は、このメールに返信してください。
- Thank you + ありがとう
@stop diff --git a/resources/views/ja/Emails/messageReceived.blade.php b/resources/views/ja/Emails/messageReceived.blade.php index 171de2c0..b09ddb32 100644 --- a/resources/views/ja/Emails/messageReceived.blade.php +++ b/resources/views/ja/Emails/messageReceived.blade.php @@ -2,14 +2,14 @@ @section('message_content') -Hi there,
-You have received a message from {{ (isset($sender_name) ? $sender_name : $event->organiser->name) }} in relation to the event {{ $event->title }}.
+こんにちは、
+{{ $event->title }}に関して{{ (isset($sender_name) ? $sender_name : $event->organiser->name) }}からメッセージを受け取りました。
{{nl2br($message_content)}}
- You can contact {{ (isset($sender_name) ? $sender_name : $event->organiser->name) }} directly at {{ (isset($sender_email) ? $sender_email : $event->organiser->email) }}, or by replying to this email. + {{ (isset($sender_name) ? $sender_name : $event->organiser->name) }}に連絡するには{{ (isset($sender_email) ? $sender_email : $event->organiser->email) }}、またはこのメールに返信してください。
@stop diff --git a/resources/views/ja/Emails/notifyCancelledAttendee.blade.php b/resources/views/ja/Emails/notifyCancelledAttendee.blade.php index 43ca1789..f83ff8d0 100644 --- a/resources/views/ja/Emails/notifyCancelledAttendee.blade.php +++ b/resources/views/ja/Emails/notifyCancelledAttendee.blade.php @@ -2,13 +2,13 @@ @section('message_content') -Hi there,
+こんにちは、
- Your ticket for the event {{{$attendee->event->title}}} has been cancelled. + イベント:{{{$attendee->event->title}}}のチケットはキャンセルされました。.
- You can contact {{{$attendee->event->organiser->name}}} directly at {{{$attendee->event->organiser->email}}} or by replying to this email should you require any more information. + {{{$attendee->event->organiser->email}}}で直接{{{$attendee->event->organiser->name}}}に連絡することができます。またはこのメールに返信してください。
@stop diff --git a/resources/views/ja/Emails/notifyRefundedAttendee.blade.php b/resources/views/ja/Emails/notifyRefundedAttendee.blade.php index cf60160b..67c45137 100644 --- a/resources/views/ja/Emails/notifyRefundedAttendee.blade.php +++ b/resources/views/ja/Emails/notifyRefundedAttendee.blade.php @@ -2,14 +2,14 @@ @section('message_content') -Hi there,
+こんにちは、
- You have received a refund on behalf of your cancelled ticket for {{{$attendee->event->title}}}. - {{{ $refund_amount }}} has been refunded to the original payee, you should see the payment in a few days. + キャンセルされた{{{$attendee->event->title}}}チケットの代わりに払い戻しを受けました。 + 元の受取人に{{{ $refund_amount }}}払い戻されました、あなたは数日で支払いを見るべきです。
- You can contact {{{ $attendee->event->organiser->name }}} directly at {{{$attendee->event->organiser->email}}} or by replying to this email should you require any more information. + {{{$attendee->event->organiser->email}}}で直接{{{$attendee->event->organiser->name}}}に連絡することができます。またはこのメールに返信してください。
@stop diff --git a/resources/views/ja/Installer/Partials/Footer.blade.php b/resources/views/ja/Installer/Partials/Footer.blade.php index b605ce1d..48d93485 100644 --- a/resources/views/ja/Installer/Partials/Footer.blade.php +++ b/resources/views/ja/Installer/Partials/Footer.blade.php @@ -1,18 +1,19 @@- Installation may make take several minutes to complete. Once you click 'Install Attendize' the config settings will be written to this file: {{base_path('.env')}}. You can manually change these settings in the future by editing this file. + インストールが完了するまで数分かかる場合があります。 [Attendizeのインストール]をクリックすると、設定が次のファイルに書き込まれます。 + {{base_path('.env')}}ファイルを編集して、これらの設定を手動で変更することができます。
- If the install fails be sure to check the log file in {{storage_path('logs')}}. If there are no errors in the log files also check other log files on your server. + インストールに失敗した場合は、{{storage_path('logs')}}のログファイルを確認してください。ログファイルにエラーがない場合は、サーバー上の他のログファイルも確認してください。
- If you are using shared hosting please ask your host if they support the Attendize requirements before requesting support. + 共有ホスティングを使用している場合は、サポートを要求する前に、参加者がAttendizeの要件をサポートしているかどうかをホストに確認してください。
- If you still need help you can raise an issue. Please include as much detail as possible, including any errors in the log file. - Also take a look at the troubleshooting guide + それでも手助けが必要な場合は、Issueを作成してください。ログファイルにエラーがある場合など、できるだけ詳細を含めてください。 + トラブルシューティングガイドもご覧ください。
- Please also read the licence before installing Attendize. + Attendizeをインストールする前に、ライセンスを読んでください。
| - Ticket - | -- Qty. - | -- Price - | -- Fee - | -- Total - | -||||||||||||||||||||||||||||
| - {{$order_item->title}} - | -- {{$order_item->quantity}} - | -
- @if((int)ceil($order_item->unit_price) == 0)
- FREE
- @else
- {{money($order_item->unit_price, $order->event->currency)}}
- @endif
+ @if(!$order->is_payment_received)
+ + ご注意:この注文にはまだ支払いが必要です。 + 支払い方法についての説明は注文ページにあります。{{route('showOrderDetails', ['order_reference' => $order->order_reference])}} + + @endif + 注文詳細+ 注文照合: {{$order->order_reference}}+ 注文名: {{$order->full_name}} + 注文日: {{$order->created_at->format(config('attendize.default_datetime_format'))}} + 注文メール: {{$order->email}} + カレンダーに追加 + 注文商品+
+
|
+ ||||||||||||||||||||||||||||||
| + | ++ | ++ | ++ 小計 + | ++ {{$orderService->getOrderTotalWithBookingFee(true)}} + | +||||||||||||||||||||||||||||
| + | ++ | ++ | ++ {{$order->event->organiser->tax_name}} + | ++ {{$orderService->getTaxAmount(true)}} + | +||||||||||||||||||||||||||||
| + | ++ | ++ | ++ 合計 + | ++ {{$orderService->getGrandTotal(true)}} + | +||||||||||||||||||||||||||||