| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /**
- * Bootstrap Table Hebrew translation
- * Author: legshooter
- */
- $.fn.bootstrapTable.locales['he-IL'] = $.fn.bootstrapTable.locales['he'] = {
- formatCopyRows () {
- return 'Copy Rows'
- },
- formatPrint () {
- return 'Print'
- },
- formatLoadingMessage () {
- return 'טוען, נא להמתין'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} שורות בעמוד`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `מציג ${pageFrom} עד ${pageTo} מ-${totalRows}שורות${totalNotFiltered} total rows)`
- }
- return `מציג ${pageFrom} עד ${pageTo} מ-${totalRows} שורות`
- },
- formatSRPaginationPreText () {
- return 'previous page'
- },
- formatSRPaginationPageText (page) {
- return `to page ${page}`
- },
- formatSRPaginationNextText () {
- return 'next page'
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatClearSearch () {
- return 'Clear Search'
- },
- formatSearch () {
- return 'חיפוש'
- },
- formatNoMatches () {
- return 'לא נמצאו רשומות תואמות'
- },
- formatPaginationSwitch () {
- return 'הסתר/הצג מספור דפים'
- },
- formatPaginationSwitchDown () {
- return 'Show pagination'
- },
- formatPaginationSwitchUp () {
- return 'Hide pagination'
- },
- formatRefresh () {
- return 'רענן'
- },
- formatToggle () {
- return 'החלף תצוגה'
- },
- formatToggleOn () {
- return 'Show card view'
- },
- formatToggleOff () {
- return 'Hide card view'
- },
- formatColumns () {
- return 'עמודות'
- },
- formatColumnsToggleAll () {
- return 'Toggle all'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'הכל'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Export data'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- },
- formatFilterControlSwitch () {
- return 'Hide/Show controls'
- },
- formatFilterControlSwitchHide () {
- return 'Hide controls'
- },
- formatFilterControlSwitchShow () {
- return 'Show controls'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['he-IL'])
|