Localization not getting applied for Uploader

<div fxLayout="column">
<div fxLayout="row" fxLayoutAlign="space-between center">
....................................................................
div>
<div id='droparea'>
.....................................................
div>
<div fxLayout='row' fxLayoutAlign="center center" id="uploadButton">
<span>
<ejs-uploader #defaultupload [autoUpload]='false' [dropArea]='dropEle' locale='fr-CH' [asyncSettings]='path'
(success)="onUploadSuccess($event)" id="uploadFile" [allowedExtensions]=imagePopup.ALLOWEXTENSIONS
multiple='false' [maxFileSize]=imagePopup.MAXFILESIZE (selected)="onFileSelected($event)">ejs-uploader>
span>
div>
div>
TS. File
import { Component, OnInit, ViewChild } from '@angular/core';
import { UploaderComponent } from '@syncfusion/ej2-angular-inputs';
import { detach, L10n } from '@syncfusion/ej2-base';


............................................................................
ngOnInit(): void {
this.dropEle = document.getElementById('droparea');
L10n.load({
"fr-CH": {
"uploader": {
"invalidMinFileSize": "龠 | Invalid Min File Size | للمساعدة",
"invalidMaxFileSize": "龠 | Invalid Max File Size | للمساعدة",
"invalidFileType": "龠 | Invalid File Type | للمساعدة",
"Browse": "龠 | Choose File | للمساعدة",
"Clear": "龠 | Clear | للمساعدة",
"Upload": "龠 | Upload | للمساعدة",
"dropFilesHint": "龠 | Drop Area | للمساعدة",
"uploadFailedMessage": "龠 | Upload Failed | للمساعدة",
"uploadSuccessMessage": "龠 | Uploaded Successfully | للمساعدة",
"removedSuccessMessage": "龠 | Removed Successfully | للمساعدة",
"removedFailedMessage": "龠 | Remove Failed | للمساعدة",
"inProgress": "龠 | Upload in Progress | للمساعدة",
"readyToUploadMessage": "龠 | Ready to Upload | للمساعدة",
"remove": "龠 | Remove | للمساعدة",
"cancel": "龠 | Cancel | للمساعدة",
"delete": "龠 | Delete | للمساعدة"
}
}
})
}
  
Please help

1 Reply 1 reply marked as answer

BC Berly Christopher Syncfusion Team September 17, 2021 11:23 AM UTC

Hi Ansuman Panda, 
  
Greetings from Syncfusion support. 
  
We have checked the shared code example at our end and Uploader component get localized correctly. So, we have prepared the sample and attached it below. 
  
  
Screenshot: 
  
 
  
Please check the above sample and still issue persists, revert us with issue reproducing sample or modify the attached sample with reported issue that will help us to check and proceed further from our end. 
  
Regards, 
Berly B.C 


Marked as answer
Loader.
Up arrow icon