Changeset 9885bee for src/Clients/Angular/finki-chattery/src/app/shared-app/services/translate-from-json.service.ts
- Timestamp:
- 10/16/21 20:00:57 (3 years ago)
- Branches:
- dev
- Children:
- 3b395c5, 95d80e4
- Parents:
- f9983f5 (diff), dab7a9b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Clients/Angular/finki-chattery/src/app/shared-app/services/translate-from-json.service.ts
rf9983f5 r9885bee 43 43 } 44 44 45 public instant(key?: string): string | undefined { 46 if (key) { 47 return this.translateService.instant(key); 48 } 49 return undefined; 45 public instant(key: string): string { 46 return this.translateService.instant(key); 50 47 } 51 48 }
Note:
See TracChangeset
for help on using the changeset viewer.