git -C '/home/opc/rocketa.git' show 7245d28 -- resources/views/admin/ad/list.blade.phpcommit 7245d28b58611f78b3853832d95e2cc48ae639b5
Author: Satoshi Ujihara <satoshi_ujihara@fivegate.jp>
Date: Tue Oct 21 10:34:10 2025 +0900
翻訳作業
diff --git a/resources/views/admin/ad/list.blade.php b/resources/views/admin/ad/list.blade.php
index 1949979..a729a5c 100644
--- a/resources/views/admin/ad/list.blade.php
+++ b/resources/views/admin/ad/list.blade.php
@@ -85,7 +85,7 @@
@foreach ($items['reward_type'] as $key => $ad_reward_type_title)
<div class="form-check form-check-inline">
{{ Form::checkbox('reward_type[]', $key, (in_array($key, $conditions['reward_type'])), ['class'=>'form-check-input', 'id'=>'search_form_check_2_'.$key])}}
- {{ Form::label('search_form_check_2_'.$key, $ad_reward_type_title, ['class'=>'form-check-label']) }}
+ {{ Form::label('search_form_check_2_'.$key, __($ad_reward_type_title), ['class'=>'form-check-label']) }}
</div>
@endforeach
</div>
@@ -127,7 +127,7 @@
@foreach ($items['conditions_icon'] as $key => $conditions_icon_data)
<div class="form-check form-check-inline">
{{ Form::checkbox('conditions_icon[]', $key, (in_array($key, $conditions['conditions_icon'])), ['class'=>'form-check-input', 'id'=>'search_form_check_4_'.$key])}}
- {{ Form::label('search_form_check_4_'.$key, $conditions_icon_data[1]['title'], ['class'=>'form-check-label']) }}
+ {{ Form::label('search_form_check_4_'.$key, __($conditions_icon_data[1]['title']), ['class'=>'form-check-label']) }}
</div>
@endforeach
</div>