mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-19 23:07:57 -05:00
50 lines
1.9 KiB
PHP
50 lines
1.9 KiB
PHP
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['<?php echo current_language_code(); ?>'] = {
|
|
formatLoadingMessage: function () {
|
|
return "<?php echo $this->lang->line('tables_loading');?>";
|
|
},
|
|
formatRecordsPerPage: function (pageNumber) {
|
|
return "<?php echo $this->lang->line('tables_rows_per_page'); ?>".replace('{0}', pageNumber);
|
|
},
|
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
|
return "<?php echo $this->lang->line('tables_page_from_to'); ?>".replace('{0}', pageFrom).replace('{1}', pageTo).replace('{2}', totalRows);
|
|
},
|
|
formatSearch: function () {
|
|
return "<?php echo $this->lang->line('common_search'); ?>";
|
|
},
|
|
formatNoMatches: function () {
|
|
return "<?php echo $this->lang->line(preg_match('(customers|suppliers|employees)', $controller_name) ?
|
|
'common_no_persons_to_display' : $controller_name . '_no_' . $controller_name .'_to_display'); ?>";
|
|
},
|
|
formatPaginationSwitch: function () {
|
|
return "<?php echo $this->lang->line('tables_hide_show_pagination'); ?>";
|
|
},
|
|
formatRefresh: function () {
|
|
return "<?php echo $this->lang->line('tables_refresh'); ?>";
|
|
},
|
|
formatToggle: function () {
|
|
return "<?php echo $this->lang->line('tables_toggle'); ?>";
|
|
},
|
|
formatColumns: function () {
|
|
return "<?php echo $this->lang->line('tables_columns'); ?>";
|
|
},
|
|
formatAllRows: function () {
|
|
return "<?php echo $this->lang->line('tables_all'); ?>";
|
|
},
|
|
formatConfirmAction: function(action) {
|
|
if (action == "delete")
|
|
{
|
|
return "<?php echo $this->lang->line((isset($editable) ? $editable : $controller_name). "_confirm_delete")?>";
|
|
}
|
|
else
|
|
{
|
|
return "<?php echo $this->lang->line((isset($editable) ? $editable : $controller_name). "_confirm_restore")?>";
|
|
}
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales["<?php echo current_language_code();?>"]);
|
|
|
|
})(jQuery); |