Page 1 of 1

Some controls are not being translated (Corrected)

Posted: Mon Apr 29, 2013 5:32 pm
by japonte
Some controls are is not being translated:
- gridMain In FormRecallLIst.cs.
- gridWaiting In ContrAppt.cs, gridEmpSche In ContrAppt.cs, groupSearch In ContrAppt.cs.
- gridMain in FormInsPlans.cs
- listRelathionship in FormGuardianEdit.cs. (Enum GuardianRelationship)

Re: Some controls are not being translated (Corrected)

Posted: Wed May 01, 2013 5:54 pm
by japonte
Some controls are is not being translated:
- gridMain In FormRecallLIst.cs.
Changed: "col=new ODGridColumn(fields.InternalName,fields.ColumnWidth);" by "col = new ODGridColumn(Lan.g("TableRecallList", fields.InternalName), fields.ColumnWidth);"
and "col=new ODGridColumn(fields.Description,fields.ColumnWidth);" by "col = new ODGridColumn(Lan.g("TableRecallList", fields.Description), fields.ColumnWidth);"
- gridWaiting In ContrAppt.cs, gridEmpSche In ContrAppt.cs, groupSearch In ContrAppt.cs.
Added: "gridWaiting,
gridEmpSched,
groupSearch"
at the end of "Lan.C(this,new Control[]
{
butToday,..."
- gridMain in FormInsPlans.cs
Changed: "ODGridColumn col=new ODGridColumn("Employer",140);" by "ODGridColumn col=new ODGridColumn(Lan.g("TableTemplates", "Employer"),140);" and so on for each column.
- listRelathionship in FormGuardianEdit.cs. (Enum GuardianRelationship)
Changed: "listRelationship.Items.Add(relationshipNames);" by "listRelationship.Items.Add(Lan.g("enumGuardianRelationship", relationshipNames));"

Re: Some controls are not being translated (Corrected)

Posted: Thu May 02, 2013 9:00 am
by jsalmon
I'll add this to our internal bugs list to look into.

Re: Some controls are not being translated (Corrected)

Posted: Wed May 08, 2013 11:10 am
by jsalmon
Fixed and will be released with v13.1.29.
Note that some translations need to have Open Dental restarted before the changes will take affect. Ex: ContrAppt.cs grids.

Re: Some controls are not being translated (Corrected)

Posted: Wed May 08, 2013 11:23 am
by jsalmon
I forgot to mention that those fixes do not include the translations for the FormRecallLIst.cs columns. Those are user defined and are slightly more complex and I need to talk with my boss before fixing them. For now, you can manually add the translations to the "New Descript" column in the Fields Showing grid of the Setup Display Fields window. http://opendental.com/manual/displayfields.html

Re: Some controls are not being translated (Corrected)

Posted: Mon May 13, 2013 10:42 am
by jsalmon
Just verified with my boss that you should go through all of the Display Fields and put their column name translations in the "New Descript" section.

Re: Some controls are not being translated (Corrected)

Posted: Fri May 17, 2013 3:02 pm
by japonte
Thank you.