| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * Bootstrap Table Spanish (Costa Rica) translation
- * Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
- */
- $.fn.bootstrapTable.locales['es-CR'] = {
- formatLoadingMessage () {
- return 'Cargando, por favor espere'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} registros por página`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `Mostrando de ${pageFrom} a ${pageTo} registros de ${totalRows} registros en total (filtered from ${totalNotFiltered} total rows)`
- }
- return `Mostrando de ${pageFrom} a ${pageTo} registros de ${totalRows} registros en total`
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatSearch () {
- return 'Buscar'
- },
- formatNoMatches () {
- return 'No se encontraron registros'
- },
- formatPaginationSwitch () {
- return 'Hide/Show pagination'
- },
- formatRefresh () {
- return 'Refrescar'
- },
- formatToggle () {
- return 'Alternar'
- },
- formatColumns () {
- return 'Columnas'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'Todo'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Export data'
- },
- formatClearFilters () {
- return 'Clear filters'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-CR'])
|