Hi Rodrigo,
Thanks for using Syncfusion product.
To localize the context menu strings or AppointmentForm strings, you could use the SchedulGrid.DisplayStrings and AppointmentForm.DisplayStrings property. Please refer the following code example and the KB link,
ContextMenu C#
//Localization for ScheduleGrid ContextMenu
ScheduleGrid.DisplayStrings[9] = "&Nuevo artículo";
ScheduleGrid.DisplayStrings[10] = "New &All Day item";
ScheduleGrid.DisplayStrings[11] = "Nuevo y todo el día";
ScheduleGrid.DisplayStrings[12] = "Eliminar elemento";
ScheduleGrid.DisplayStrings[13] = "Día";
ScheduleGrid.DisplayStrings[14] = "Semana de trabajo";
ScheduleGrid.DisplayStrings[15] = "Semana";
ScheduleGrid.DisplayStrings[16] = "Mes"; |
AppointmentForm C#
//Localization for AppointmentForm.
AppointmentForm.DisplayStrings[0] = "Tema";
AppointmentForm.DisplayStrings[1] = "Ubicación";
AppointmentForm.DisplayStrings[2] = "Mostrar el tiempo";
AppointmentForm.DisplayStrings[3] = "Recordatorio";
AppointmentForm.DisplayStrings[4] = "Evento";
AppointmentForm.DisplayStrings[5] = "Hora de inicio";
AppointmentForm.DisplayStrings[6] = "Hora de finalización";
AppointmentForm.DisplayStrings[7] = "Etiqueta";
AppointmentForm.DisplayStrings[9] = "Cancelar";
AppointmentForm.DisplayStrings[10] = "Guardar y cerrar";
AppointmentForm.DisplayStrings[11] = "Introduzca el nombramiento"; |
Note:
If you are using the Metro theme for ScheduleControl, default strings are available in MetroAppointmentForm.DisplayStrings property to localize the metro appointment form.
Please get back to us if you need any further assistance on this.
Regards,
Deivaselvan