Merge: - client: fix placeholder for table pages

Closes #1166

* commit '38c7e732a6af190f92d824a6af53aea60aab5146':
  - client: fix placeholder for table pages
This commit is contained in:
Ildar Kamalov 2019-11-26 15:30:00 +03:00
commit 7a665ff8f0
5 changed files with 4 additions and 5 deletions

View File

@ -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",

View File

@ -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')}
/> />

View File

@ -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')}
/> />

View File

@ -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')}
/> />

View File

@ -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')}
/> />