Skip to content

Commit e289ea9

Browse files
authored
Add "save", "cancel" to Core Localisation
1 parent 90355f8 commit e289ea9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

resources/lang/en/core.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
'Applied Sorting' => 'Applied Sorting',
88
'Bulk Actions' => 'Bulk Actions',
99
'Bulk Actions Confirm' => 'Are you sure?',
10+
'cancel' => 'Cancel',
1011
'Clear' => 'Clear',
1112
'Columns' => 'Columns',
1213
'Debugging Values' => 'Debugging Values',
@@ -27,6 +28,7 @@
2728
'row' => 'row',
2829
'rows' => 'rows',
2930
'rows, do you want to select all' => 'rows, do you want to select all',
31+
'save' => 'Save',
3032
'Search' => 'Search',
3133
'Select All' => 'Select All',
3234
'Select All On Page' => 'Select All On Page',

resources/views/components/tools/toolbar/items/reorder-buttons.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
])
1515
>
1616
<span x-cloak x-show="currentlyReorderingStatus">
17-
{{ __('livewire-tables::core.Cancel') }}
17+
{{ __('livewire-tables::core.cancel') }}
1818
</span>
1919

2020
<span x-cloak x-show="!currentlyReorderingStatus">
@@ -33,7 +33,7 @@
3333
])
3434
>
3535
<span>
36-
{{ __('livewire-tables::core.Save') }}
36+
{{ __('livewire-tables::core.save') }}
3737
</span>
3838
</button>
3939
</div>

0 commit comments

Comments
 (0)