rocket-a


git -C '/home/opc/rocketa.git' show 782aabc -- resources/views/admin/media/site/list.blade.php

commit 782aabcdb0d7daab98f4294dcd7deaa6e85351d2
Author: Satoshi Ujihara <satoshi_ujihara@fivegate.jp>
Date:   Mon Oct 27 12:37:26 2025 +0900

    翻訳作業

diff --git a/resources/views/admin/media/site/list.blade.php b/resources/views/admin/media/site/list.blade.php
index 7b61469..72f48b2 100644
--- a/resources/views/admin/media/site/list.blade.php
+++ b/resources/views/admin/media/site/list.blade.php
@@ -57,7 +57,7 @@
                                         @foreach ($category as $key => $category_name)
                                             <div class="form-check form-check-inline">
                                                 {{ Form::checkbox('category[]', $key, (in_array($key, $conditions['category'])), ['class'=>'form-check-input', 'id'=>'search_form_check_1_'.$key])}}
-                                                {{ Form::label('search_form_check_1_'.$key, $category_name, ['class'=>'form-check-label']) }}
+                                                {{ Form::label('search_form_check_1_'.$key, __($category_name), ['class'=>'form-check-label']) }}
                                             </div>
                                         @endforeach
                                     </div>
@@ -74,7 +74,7 @@
                                         @foreach ($type as $key => $type_name)
                                             <div class="form-check form-check-inline">
                                                 {{ Form::checkbox('type[]', $key, (in_array($key, $conditions['type'])), ['class'=>'form-check-input', 'id'=>'search_form_check_2_'.$key])}}
-                                                {{ Form::label('search_form_check_2_'.$key, $type_name, ['class'=>'form-check-label']) }}
+                                                {{ Form::label('search_form_check_2_'.$key, __($type_name), ['class'=>'form-check-label']) }}
                                             </div>
                                         @endforeach
                                     </div>
@@ -91,7 +91,7 @@
                                         @foreach ($monthly_pv as $key => $monthly_pv_name)
                                             <div class="form-check form-check-inline">
                                                 {{ Form::checkbox('monthly_pv[]', $key, (in_array($key, $conditions['monthly_pv'])), ['class'=>'form-check-input', 'id'=>'search_form_check_3_'.$key])}}
-                                                {{ Form::label('search_form_check_3_'.$key, $monthly_pv_name, ['class'=>'form-check-label']) }}
+                                                {{ Form::label('search_form_check_3_'.$key, __($monthly_pv_name), ['class'=>'form-check-label']) }}
                                             </div>
                                         @endforeach
                                     </div>
@@ -108,7 +108,7 @@
                                         @foreach ($monthly_uu as $key => $monthly_uu_name)
                                             <div class="form-check form-check-inline">
                                                 {{ Form::checkbox('monthly_uu[]', $key, (in_array($key, $conditions['monthly_uu'])), ['class'=>'form-check-input', 'id'=>'search_form_check_4_'.$key])}}
-                                                {{ Form::label('search_form_check_4_'.$key, $monthly_uu_name, ['class'=>'form-check-label']) }}
+                                                {{ Form::label('search_form_check_4_'.$key, __($monthly_uu_name), ['class'=>'form-check-label']) }}
                                             </div>
                                         @endforeach
                                     </div>
@@ -252,9 +252,9 @@
 
                                         <td class="align-middle text-break">{{ $media_data['name'] }}</td>
 
-                                        <td class="align-middle text-center">{{ $category[$media_data['category']] }}</td>
+                                        <td class="align-middle text-center">{{ __($category[$media_data['category']]) }}</td>
 
-                                        <td class="align-middle text-center">{{ $type[$media_data['type']] }}</td>
+                                        <td class="align-middle text-center">{{ __($type[$media_data['type']]) }}</td>
 
                                         <td class="align-middle text-center">
                                             <div class="row m-0 align-items-center inner_area_btn inner_area_btn_col_2">

diff.txt · 最終更新: by root