Skip to content

Commit cef3b30

Browse files
authored
Add "Loading" default translation
1 parent 24eaef9 commit cef3b30

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

resources/lang/en.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"livewire-tables::Deselect All": "Deselect All",
1212
"livewire-tables::Done Reordering": "Done Reordering",
1313
"livewire-tables::Filters": "Filters",
14+
"livewire-tables::loading": "Loading",
1415
"livewire-tables::max": "Max",
1516
"livewire-tables::min": "Min",
1617
"livewire-tables::not_applicable": "N/A",
@@ -45,6 +46,7 @@
4546
"Deselect All": "Deselect All",
4647
"Done Reordering": "Done Reordering",
4748
"Filters": "Filters",
49+
"loading": "Loading",
4850
"max": "Max",
4951
"min": "Min",
5052
"not_applicable": "N/A",

src/Traits/Helpers/LoadingPlaceholderHelpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function getDisplayLoadingPlaceholder(): bool
1616

1717
public function getLoadingPlaceholderContent(): string
1818
{
19-
return $this->loadingPlaceholderContent ?? __('livewire-tables:loading');
19+
return $this->loadingPlaceholderContent ?? __('livewire-tables::loading');
2020
}
2121

2222
public function hasLoadingPlaceholderBlade(): bool

0 commit comments

Comments
 (0)