Skip to content

Commit

Permalink
Add "Loading" default translation
Browse files Browse the repository at this point in the history
  • Loading branch information
lrljoe authored Oct 20, 2024
1 parent 24eaef9 commit cef3b30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions resources/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"livewire-tables::Deselect All": "Deselect All",
"livewire-tables::Done Reordering": "Done Reordering",
"livewire-tables::Filters": "Filters",
"livewire-tables::loading": "Loading",
"livewire-tables::max": "Max",
"livewire-tables::min": "Min",
"livewire-tables::not_applicable": "N/A",
Expand Down Expand Up @@ -45,6 +46,7 @@
"Deselect All": "Deselect All",
"Done Reordering": "Done Reordering",
"Filters": "Filters",
"loading": "Loading",
"max": "Max",
"min": "Min",
"not_applicable": "N/A",
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/Helpers/LoadingPlaceholderHelpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function getDisplayLoadingPlaceholder(): bool

public function getLoadingPlaceholderContent(): string
{
return $this->loadingPlaceholderContent ?? __('livewire-tables:loading');
return $this->loadingPlaceholderContent ?? __('livewire-tables::loading');
}

public function hasLoadingPlaceholderBlade(): bool
Expand Down

0 comments on commit cef3b30

Please sign in to comment.