Skip to content

Commit 846204f

Browse files
committed
Update langs
1 parent 43513ad commit 846204f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

resources/views/bootstrap-4/includes/bulk-select-row.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<span>
77
@lang('You have selected')
88
<strong>{{ count($selected) }}</strong>
9-
@lang(':rows', ['rows' => count($selected) === 1 ? 'row' : 'rows']).
9+
@lang(count($selected) === 1 ? 'row' : 'rows').
1010
</span>
1111

1212
<button
@@ -41,7 +41,7 @@ class="btn btn-primary btn-sm"
4141
<span>
4242
@lang('You have selected')
4343
<strong>{{ count($selected) }}</strong>
44-
@lang(':rows', ['rows' => count($selected) === 1 ? 'row' : 'rows']).
44+
@lang(count($selected) === 1 ? 'row' : 'rows').
4545
</span>
4646

4747
<button

resources/views/bootstrap-5/includes/bulk-select-row.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<span>
77
@lang('You have selected')
88
<strong>{{ count($selected) }}</strong>
9-
@lang(':rows', ['rows' => count($selected) === 1 ? 'row' : 'rows']).
9+
@lang(count($selected) === 1 ? 'row' : 'rows').
1010
</span>
1111

1212
<button
@@ -41,7 +41,7 @@ class="btn btn-primary btn-sm"
4141
<span>
4242
@lang('You have selected')
4343
<strong>{{ count($selected) }}</strong>
44-
@lang(':rows', ['rows' => count($selected) === 1 ? 'row' : 'rows']).
44+
@lang(count($selected) === 1 ? 'row' : 'rows').
4545
</span>
4646

4747
<button

resources/views/tailwind/includes/bulk-select-row.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<span>
77
@lang('You have selected')
88
<strong>{{ count($selected) }}</strong>
9-
@lang(':rows', ['rows' => count($selected) === 1 ? 'row' : 'rows']).
9+
@lang(count($selected) === 1 ? 'row' : 'rows').
1010
</span>
1111

1212
<button
@@ -41,7 +41,7 @@ class="ml-1 text-blue-600 underline text-gray-700 text-sm leading-5 font-medium
4141
<span>
4242
@lang('You have selected')
4343
<strong>{{ count($selected) }}</strong>
44-
@lang(':rows', ['rows' => count($selected) === 1 ? 'row' : 'rows']).
44+
@lang(count($selected) === 1 ? 'row' : 'rows').
4545
</span>
4646

4747
<button

0 commit comments

Comments
 (0)