| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /**
- * Bootstrap Table English translation
- * Author: Zhixin Wen<wenzhixin2010@gmail.com>
- */
- $.fn.bootstrapTable.locales['ar-SA'] = $.fn.bootstrapTable.locales['ar'] = {
- 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 () { /* eslint-disable no-useless-escape */
- 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 'All'
- },
- 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['ar-SA'])
|