Skip to content

Commit

Permalink
fixing translation keys
Browse files Browse the repository at this point in the history
  • Loading branch information
shral committed Dec 7, 2023
1 parent c8d6eaf commit 9b5f2d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class RetrieveMonitoringService {
text:$localize `:@@SCHEDULED_FOR_RETRY:SCHEDULED FOR RETRY`,
},
{
value:$localize `IN PROCESS`,
value:$localize `:@@in_process:IN PROCESS`,
text:$localize `:@@in_process:IN PROCESS`
},
{
Expand Down
2 changes: 1 addition & 1 deletion dcm4chee-arc-ui2/src/app/study/study/study.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1629,7 +1629,7 @@ export class StudyComponent implements OnInit, OnDestroy, AfterContentChecked{
const errorCount = res.filter((result:any)=>result && result.isError).length;
if(errorCount > 0){
this.appService.showMsg($localize `:@@mwl.process_executed_successfully_detailed:Process executed successfully:<br>\nErrors: ${errorCount}:error:
<br>\nSuccessful: ${res.length - errorCount}:@@successful:`);
<br>\nSuccessful: ${res.length - errorCount}:successful:`);
}else{
this.appService.showMsg($localize `:@@mwl.status_changed_successfully:Status changed successfully`);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class DeviceCloneComponent implements OnInit {
console.log("In original device:",_.get(this.clonedDevice, `${key.path}[${i}][${key.name}]`));
console.log("In clone device:",part[key.name]);
console.groupEnd();
this.validationDetailMessage = this.validationDetailMessage || $localize `:@@value_in_path_was_not_changed: <br/>(${_.get(this.clonedDevice, `${key.path}[${i}][${key.name}]`)}:@@value: in ${key.path}:path:
this.validationDetailMessage = this.validationDetailMessage || $localize `:@@value_in_path_was_not_changed: <br/>(${_.get(this.clonedDevice, `${key.path}[${i}][${key.name}]`)}:value: in ${key.path}:path:
, was not changed)`;
valid = valid && false;
}else{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class UploadFilesComponent implements OnInit {
private setDicomObject(fileTypeOrExt, file0){
if(fileTypeOrExt === "application/dicom" && this.selectedWebApp && this.selectedWebApp.dcmWebServiceClass && this.selectedWebApp.dcmWebServiceClass.indexOf("DCM4CHEE_ARC_AET") === -1){
this.neededClassMissing = true;
this.mainservice.showError($localize `:@@selected_webapp_doesent_have_the_webapp_class:The selected WebApp doesn't have the webapp class ${'DCM4CHEE_ARC_AET'}:@@webAppServiceClass:`);
this.mainservice.showError($localize `:@@selected_webapp_doesent_have_the_webapp_class:The selected WebApp doesn't have the webapp class ${'DCM4CHEE_ARC_AET'}:webAppServiceClass:`);
}else{
if(file0 && (file0.type === "image/jpeg"
|| file0.type === "image/jp2"
Expand Down

0 comments on commit 9b5f2d5

Please sign in to comment.