visjs / vis-timeline

📅 Create a fully customizable, interactive timelines and 2d-graphs with items and ranges.
https://visjs.github.io/vis-timeline/
Other
1.85k stars 311 forks source link

Error on timeline spanish locale #1740

Open JuanMiguelBG-Ticarum opened 9 months ago

JuanMiguelBG-Ticarum commented 9 months ago

The values for the spanish locale on timeline locales file are:

// Espanol
const es = {
  current: 'corriente',
  time: 'hora',
  deleteSelected: 'Eliminar selecci\u00f3n',
};
const es_ES = es;

The current value corriente is wrong. The right value is actual. Example:

// Espanol
const es = {
  current: 'actual',
  time: 'hora',
  deleteSelected: 'Eliminar selecci\u00f3n',
};
const es_ES = es;
melloware commented 8 months ago

@JuanMiguelBG-Ticarum please submit PR!

JuanMiguelBG-Ticarum commented 8 months ago

Ok, working on it, thanks.