Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bootstrap-table-ar-SA.js #7028

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 29 additions & 28 deletions src/locale/bootstrap-table-ar-SA.js
Original file line number Diff line number Diff line change
@@ -1,42 +1,43 @@
/**
* Bootstrap Table English translation
* Author: Zhixin Wen<wenzhixin2010@gmail.com>
* Bootstrap Table Arabic translation
* Author: Othman Ali Modaes<othman2004_ye@yahoo.com>
*/

$.fn.bootstrapTable.locales['ar-SA'] = $.fn.bootstrapTable.locales['ar'] = {

formatCopyRows () {
return 'Copy Rows'
return 'نسخ الصفوف'
},
formatPrint () {
return 'Print'
return 'طباعة'
},
formatLoadingMessage () {
return 'جاري التحميل, يرجى الإنتظار'
return 'جارٍ التحميل، يرجى الانتظار...'
},
formatRecordsPerPage (pageNumber) {
return `${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} سجل ${totalNotFiltered} إجمالي الصفوف)`
}

return `الظاهر ${pageFrom} إلى ${pageTo} من ${totalRows} سجل`
},
formatSRPaginationPreText () {
return 'previous page'
return 'الصفحة السابقة'
},
formatSRPaginationPageText (page) {
return `to page ${page}`
return `إلى الصفحة ${page}`
},
formatSRPaginationNextText () {
return 'next page'
return 'الصفحة التالية'
},
formatDetailPagination (totalRows) {
return `Showing ${totalRows} rows`
return `عرض ${totalRows} أعمدة`
},
formatClearSearch () {
return 'Clear Search'
return 'مسح مربع البحث'
},
formatSearch () {
return 'بحث'
Expand All @@ -45,58 +46,58 @@ $.fn.bootstrapTable.locales['ar-SA'] = $.fn.bootstrapTable.locales['ar'] = {
return 'لا توجد نتائج مطابقة للبحث'
},
formatPaginationSwitch () { /* eslint-disable no-useless-escape */
return 'إخفاء\إظهار ترقيم الصفحات'
return 'إخفاء/إظهار ترقيم الصفحات'
},
formatPaginationSwitchDown () {
return 'Show pagination'
return 'إظهار ترقيم الصفحات'
},
formatPaginationSwitchUp () {
return 'Hide pagination'
return 'إخفاء ترقيم الصفحات'
},
formatRefresh () {
return 'تحديث'
},
formatToggleOn () {
return 'Show card view'
return 'إظهار كبطاقات'
},
formatToggleOff () {
return 'Hide card view'
return 'إلغاء البطاقات'
},
formatColumns () {
return 'أعمدة'
},
formatColumnsToggleAll () {
return 'Toggle all'
return 'تبديل الكل'
},
formatFullscreen () {
return 'Fullscreen'
return 'الشاشة كاملة'
},
formatAllRows () {
return 'All'
return 'الكل'
},
formatAutoRefresh () {
return 'Auto Refresh'
return 'تحديث تلقائي'
},
formatExport () {
return 'Export data'
return 'تصدير البيانات'
},
formatJumpTo () {
return 'GO'
return 'قفز'
},
formatAdvancedSearch () {
return 'Advanced search'
return 'بحث متقدم'
},
formatAdvancedCloseButton () {
return 'Close'
return 'إغلاق'
},
formatFilterControlSwitch () {
return 'Hide/Show controls'
return 'عرض/إخفاء عناصر التصفية'
},
formatFilterControlSwitchHide () {
return 'Hide controls'
return 'إخفاء عناصر التصفية'
},
formatFilterControlSwitchShow () {
return 'Show controls'
return 'عرض عناصر التصفية'
}
}

Expand Down