Translating Some Parts

Hi,


  1. How can i translate these texts('Enter the value','Filter','Clear') in filter menu ?

tr1.png

2. Translate this text('New Task #') in add dialog?

tr2.png


3.  Using 'tr' Internationalization  and localization, these dates displays as expected. But when switching to 

ResourceView, dates are not dislaying in correct format:

projectView:

date1.png


resourceView:

date2.png


5 Replies 1 reply marked as answer

PP Pooja Priya Krishna Moorthy Syncfusion Team December 20, 2021 03:03 PM UTC

Hi Halit, 
  
Currently, we are validating your reported query at our end and we will share the further details within one business day 21st  December, 2021. We would appreciate your patience until then. 
  
Regards, 
Premkumar s 



MS Monisha Sivanthilingam Syncfusion Team December 21, 2021 12:34 PM UTC

Hi Halit , 
 
Sl.No 
Query 
Syncfusion Comments 
 
1 
How can i translate these texts('Enter the value','Filter','Clear') in filter menu ? 
We can able to achieve this using localization please follow the below code snippets 
"grid": { 
                "Matchs": "Hiçbir sonuç bulunamadı", 
                "FilterButton": "filtre", 
                "ClearButton": "Açık", 
                "StartsWith": "İle başlar", 
                "EndsWith": "Şununla Bitiyor:", 
                "Contains":  
}, 
  
2 
Translate this text('New Task # 
') in add dialog 
We have also  logged bug report for this. The status can be tracked from below feedback link.  
   
 
We will fix this issue and the fix will be included in our weekly patch release on 5th Jan 2022. Until then we appreciate your patience.   
 
Yet we can resolve this now as a workaround by using “beforeOpenAddDialog”  request type in the actionBegin event. Please follow the below code snippet 
 
 
function actionBegin(args) { 
               if (args.requestType == "beforeOpenAddDialog") { 
            args.rowData.TaskName = "Yeni görev" + args.rowData.TaskId; 
            args.rowData.ganttProperties.taskName = "Yeni görev" + args.rowData.ganttProperties.taskId; 
        } 
    } 
 
 
 
3 
3.  Using 'tr' Internationalization  and localization, these dates displays as expected. But when switching to  
ResourceView, dates are not dislaying in correct format: 
 
However, we cannot able to replicate the issue please share the issue replicable sample or modify the attached sample to replicate your issue 
 
 
Please contact us for further assistance  
 
Regards, 
Premkumar S. 


Marked as answer

HA Halit December 22, 2021 06:32 AM UTC

  1. Thanks.
  2. The linked page returned "Page Not Found" but the workaround is effective.
  1. I couldn't replicate, either. Maybe it was a cache issue.


PP Pooja Priya Krishna Moorthy Syncfusion Team December 23, 2021 06:40 AM UTC

Hi Halit, 
  
Sorry for the inconvenience caused. We have now provided access to the page. Also, feel free to contact us if you have any other queries. 
  
Regards, 
  
Premkumar S 



PP Pooja Priya Krishna Moorthy Syncfusion Team January 5, 2022 09:47 AM UTC

Hi Halit, 
 
We are glad to announce that your reported issue “Add locale words for missing items” has been fixed in version  19.4.0.41. Please find the release notes from below link. 
 
 
We appreciate your patience and Please contact us if you require any further assistance. 
 
Regards, 
Premkumar S 


Loader.
Up arrow icon