nuxeo-development-framework 1.5.9 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/nuxeo-development-framework.umd.js +4 -0
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +5 -1
- package/fesm2015/nuxeo-development-framework.js +4 -0
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/package.json +1 -1
|
@@ -16526,12 +16526,16 @@
|
|
|
16526
16526
|
_this.arContent = res.message.replace("رقم", "رقم -");
|
|
16527
16527
|
if (res.message.includes('ExtRequest') || res.message.includes('IntRequest')) {
|
|
16528
16528
|
_this.arContent = res.message.replace("المستند", "الطلب");
|
|
16529
|
+
_this.arContent = _this.arContent.replace(('IntRequest'), "رقم - ");
|
|
16530
|
+
_this.arContent = _this.arContent.replace(('ExtRequest'), "رقم - ");
|
|
16529
16531
|
}
|
|
16530
16532
|
}
|
|
16531
16533
|
if (res.lang === "EN") {
|
|
16532
16534
|
_this.enContent = res.message.replace("correspondence", "correspondence -");
|
|
16533
16535
|
if (res.message.includes('ExtRequest') || res.message.includes('IntRequest')) {
|
|
16534
16536
|
_this.enContent = res.message.replace("document", "request");
|
|
16537
|
+
_this.enContent = _this.enContent.replace(('IntRequest'), "number - ");
|
|
16538
|
+
_this.enContent = _this.enContent.replace(('ExtRequest'), "number - ");
|
|
16535
16539
|
}
|
|
16536
16540
|
}
|
|
16537
16541
|
});
|