17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
/* data table related */
|
|
import { __ } from '@wordpress/i18n';
|
|
import { FilterMatchMode } from 'primereact/api';
|
|
|
|
const currentPageReportTemplate = '';
|
|
|
|
const emptyMessage = __('Nessun dato disponibile', 'gepafin');
|
|
|
|
const selectOneLabel = __('Seleziona', 'gepafin');
|
|
|
|
const translationStrings = {
|
|
currentPageReportTemplate,
|
|
emptyMessage,
|
|
selectOneLabel
|
|
}
|
|
|
|
export default translationStrings; |