Skip to content

Commit 43513ad

Browse files
committed
Change default empty text
1 parent 8782e12 commit 43513ad

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
99
### Added
1010

1111
- [Spanish translation](https://github.com/rappasoft/laravel-livewire-tables/pull/433)
12+
13+
### Changed
14+
1215
- [Use package tool to register commands](https://github.com/rappasoft/laravel-livewire-tables/pull/434)
1316
- [Fix callback so it doesn't care about parameter names](https://github.com/rappasoft/laravel-livewire-tables/pull/438)
17+
- Changed default empty text
1418

1519
## [1.12.0] - 2021-07-31
1620

resources/lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"results": "results",
2222
"rows": "rows",
2323
"rows, do you want to select all": "rows, do you want to select all",
24-
"No items found. Try narrowing your search.": "No items found. Try narrowing your search.",
24+
"No items found. Try to broaden your search.": "No items found. Try to broaden your search.",
2525
"to": "to"
2626
}

resources/lang/es.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"results": "resultados",
2222
"rows": "filas",
2323
"rows, do you want to select all": "filas, desea seleccionar todas",
24-
"No items found. Try narrowing your search.": "No se encontraron elementos. Intente reducir la búsqueda.",
24+
"No items found. Try to broaden your search.": "No se encontraron elementos. Intente ampliar la búsqueda.",
2525
"to": "a"
2626
}

src/DataTableComponent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ abstract class DataTableComponent extends Component
5959
*
6060
* @var string
6161
*/
62-
public string $emptyMessage = 'No items found. Try narrowing your search.';
62+
public string $emptyMessage = 'No items found. Try to broaden your search.';
6363

6464
/**
6565
* Name of the page parameter for pagination

0 commit comments

Comments
 (0)