| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /**
- * Bootstrap Table Spanish (España) translation
- * Author: Antonio Pérez <anpegar@gmail.com>
- */
- $.fn.bootstrapTable.locales['es-SP'] = {
- formatCopyRows () {
- return 'Copy Rows'
- },
- formatPrint () {
- return 'Print'
- },
- formatLoadingMessage () {
- return 'Cargando, por favor espera'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} registros por página.`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `${pageFrom} - ${pageTo} de ${totalRows} registros (filtered from ${totalNotFiltered} total rows)`
- }
- return `${pageFrom} - ${pageTo} de ${totalRows} registros.`
- },
- formatSRPaginationPreText () {
- return 'previous page'
- },
- formatSRPaginationPageText (page) {
- return `to page ${page}`
- },
- formatSRPaginationNextText () {
- return 'next page'
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatClearSearch () {
- return 'Limpiar búsqueda'
- },
- formatSearch () {
- return 'Buscar'
- },
- formatNoMatches () {
- return 'No se han encontrado registros.'
- },
- formatPaginationSwitch () {
- return 'Hide/Show pagination'
- },
- formatPaginationSwitchDown () {
- return 'Show pagination'
- },
- formatPaginationSwitchUp () {
- return 'Hide pagination'
- },
- formatRefresh () {
- return 'Actualizar'
- },
- formatToggleOn () {
- return 'Show card view'
- },
- formatToggleOff () {
- return 'Hide card view'
- },
- formatColumns () {
- return 'Columnas'
- },
- formatColumnsToggleAll () {
- return 'Toggle all'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'Todo'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Export data'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- },
- formatFilterControlSwitch () {
- return 'Ocultar/Mostrar controles'
- },
- formatFilterControlSwitchHide () {
- return 'Ocultar controles'
- },
- formatFilterControlSwitchShow () {
- return 'Mostrar controles'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-SP'])
|