enhance_trans

This commit is contained in:
Mohamed Eltayar 2025-08-30 20:29:48 +03:00 committed by GitHub
parent b2543772f8
commit 36cde35237
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -382,7 +382,7 @@ odoo.define('fims_general_search_tree_view.list_search', function (require) {
if (state.isFiltered && state.filteredCount >= 0) { if (state.isFiltered && state.filteredCount >= 0) {
this.$('.oe_search_count') this.$('.oe_search_count')
.text(_t('Records: ') + state.filteredCount) .text(_t('عدد السجلات: ') + state.filteredCount)
.removeClass('text-danger') .removeClass('text-danger')
.show(); .show();
} }
@ -410,7 +410,7 @@ odoo.define('fims_general_search_tree_view.list_search', function (require) {
} }
var countText = isFiltered ? var countText = isFiltered ?
_t('Records: ') + savedCount : ''; _t('عدد السجلات: ') + savedCount : '';
var html = var html =
'<div class="oe_search_container d-flex align-items-center">' + '<div class="oe_search_container d-flex align-items-center">' +