# Localizations []({{ site.repo }}/blob/develop/docs/_i18n/{{ site.lang }}/documentation/localizations.md) ---
Nombre Parámetro Valor por defecto
formatLoadingMessage - 'Loading, please wait…'
formatRecordsPerPage pageNumber '%s records per page'
formatShowingRows pageFrom, pageTo, totalRows 'Showing %s to %s of %s rows'
formatDetailPagination totalRows 'Showing %s rows'
formatSearch - 'Search'
formatNoMatches - 'No matching records found'
formatRefresh - 'Refresh'
formatToggle - 'Toggle'
formatColumns - 'Columns'
formatAllRows --/td> 'All'
formatFullscreen - 'Fullscreen'
--- **PS:** Podemos importar [all locale files](https://github.com/wenzhixin/bootstrap-table/tree/master/src/locale) lo que necesita: ```html ... ``` Y luego utilice este código JavaScript para cambiar el lenguaje: ```js $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['en-US']); // $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-CN']); // ... ``` O utilice los data attributes para configurar el lenguaje: ```html
``` O utilice este JavaScript para configurar el lenguaje: ```js $('table').bootstrapTable({locale:'en-US'}); ```