mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 18:38:52 -07:00
Merge: - client: fix placeholder for table pages
Closes #1166 * commit '38c7e732a6af190f92d824a6af53aea60aab5146': - client: fix placeholder for table pages
This commit is contained in:
commit
7a665ff8f0
@ -167,7 +167,6 @@
|
|||||||
"next_btn": "Next",
|
"next_btn": "Next",
|
||||||
"loading_table_status": "Loading...",
|
"loading_table_status": "Loading...",
|
||||||
"page_table_footer_text": "Page",
|
"page_table_footer_text": "Page",
|
||||||
"of_table_footer_text": "of",
|
|
||||||
"rows_table_footer_text": "rows",
|
"rows_table_footer_text": "rows",
|
||||||
"updated_custom_filtering_toast": "Updated the custom filtering rules",
|
"updated_custom_filtering_toast": "Updated the custom filtering rules",
|
||||||
"rule_removed_from_custom_filtering_toast": "Rule removed from the custom filtering rules",
|
"rule_removed_from_custom_filtering_toast": "Rule removed from the custom filtering rules",
|
||||||
|
@ -153,7 +153,7 @@ class Filters extends Component {
|
|||||||
nextText={t('next_btn')}
|
nextText={t('next_btn')}
|
||||||
loadingText={t('loading_table_status')}
|
loadingText={t('loading_table_status')}
|
||||||
pageText={t('page_table_footer_text')}
|
pageText={t('page_table_footer_text')}
|
||||||
ofText={t('of_table_footer_text')}
|
ofText="/"
|
||||||
rowsText={t('rows_table_footer_text')}
|
rowsText={t('rows_table_footer_text')}
|
||||||
noDataText={t('no_filters_added')}
|
noDataText={t('no_filters_added')}
|
||||||
/>
|
/>
|
||||||
|
@ -88,7 +88,7 @@ class AutoClients extends Component {
|
|||||||
nextText={t('next_btn')}
|
nextText={t('next_btn')}
|
||||||
loadingText={t('loading_table_status')}
|
loadingText={t('loading_table_status')}
|
||||||
pageText={t('page_table_footer_text')}
|
pageText={t('page_table_footer_text')}
|
||||||
ofText={t('of_table_footer_text')}
|
ofText="/"
|
||||||
rowsText={t('rows_table_footer_text')}
|
rowsText={t('rows_table_footer_text')}
|
||||||
noDataText={t('clients_not_found')}
|
noDataText={t('clients_not_found')}
|
||||||
/>
|
/>
|
||||||
|
@ -258,7 +258,7 @@ class ClientsTable extends Component {
|
|||||||
nextText={t('next_btn')}
|
nextText={t('next_btn')}
|
||||||
loadingText={t('loading_table_status')}
|
loadingText={t('loading_table_status')}
|
||||||
pageText={t('page_table_footer_text')}
|
pageText={t('page_table_footer_text')}
|
||||||
ofText={t('of_table_footer_text')}
|
ofText="/"
|
||||||
rowsText={t('rows_table_footer_text')}
|
rowsText={t('rows_table_footer_text')}
|
||||||
noDataText={t('clients_not_found')}
|
noDataText={t('clients_not_found')}
|
||||||
/>
|
/>
|
||||||
|
@ -67,7 +67,7 @@ class Table extends Component {
|
|||||||
nextText={t('next_btn')}
|
nextText={t('next_btn')}
|
||||||
loadingText={t('loading_table_status')}
|
loadingText={t('loading_table_status')}
|
||||||
pageText={t('page_table_footer_text')}
|
pageText={t('page_table_footer_text')}
|
||||||
ofText={t('of_table_footer_text')}
|
ofText="/"
|
||||||
rowsText={t('rows_table_footer_text')}
|
rowsText={t('rows_table_footer_text')}
|
||||||
noDataText={t('rewrite_not_found')}
|
noDataText={t('rewrite_not_found')}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user