@acorex/core 20.1.6 → 20.1.7

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.
@@ -1427,7 +1427,12 @@ class AXTimeDurationFormatter {
1427
1427
  return `${paddedCount} (${unit.label})`;
1428
1428
  }
1429
1429
  });
1430
- return result.join(' : ');
1430
+ if (this.translationService.getActiveLang() === 'fa-IR') {
1431
+ return result.reverse().join(' : ');
1432
+ }
1433
+ else {
1434
+ return result.join(' : ');
1435
+ }
1431
1436
  }
1432
1437
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXTimeDurationFormatter, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1433
1438
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXTimeDurationFormatter }); }