File tree Expand file tree Collapse file tree
src/Filament/Tables/Filters Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?php
22
3- // translations for CodeWithDennis/FilamentPriceFilter
43return [
5- //
4+ 'from ' => 'from ' ,
5+ 'to ' => 'to ' ,
66];
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ return [
4+ 'from ' => 'van ' ,
5+ 'to ' => 'tot ' ,
6+ ];
Original file line number Diff line number Diff line change @@ -100,13 +100,13 @@ protected function setUp(): void
100100 $ this ->form (function () {
101101 return [
102102 TextInput::make ('from ' )
103- ->label (__ ( $ this ->getLabel () . ' from ' ))
103+ ->label ($ this ->getLabel () . ' ' . __ ( ' filament-price-filter::price-filter. from ' ))
104104 ->prefix ($ this ->getCurrencySymbol ($ this ->getCurrency ()))
105105 ->minValue ($ this ->getMin ())
106106 ->maxValue ($ this ->getMax ())
107107 ->numeric (),
108108 TextInput::make ('to ' )
109- ->label (__ ( $ this ->getLabel () . ' to ' ))
109+ ->label ($ this ->getLabel () . ' ' . __ ( ' filament-price-filter::price-filter. to ' ))
110110 ->prefix ($ this ->getCurrencySymbol ($ this ->getCurrency ()))
111111 ->minValue ($ this ->getMin ())
112112 ->maxValue ($ this ->getMax ())
You can’t perform that action at this time.
0 commit comments