Hello,
Thank you for this update. However, is doesn't seem to work, now the whole component is not being translated.
Could you show me the definitive and final way to have the spreadsheet component in French and in euros please ?
Right now I'm doing :
import {
L10n,
setCulture,
setCurrencyCode,
loadCldr
} from '@syncfusion/ej2-base'
loadCldr(
require('./syncfusionL10n/currencies.json'),
require('./syncfusionL10n/numbers.json'),
require('./syncfusionL10n/ca-gregorian.json'),
require('./syncfusionL10n/timeZoneNames.json'),
require('./syncfusionL10n/numberingSystems.json')
)
import * as currencies from './syncfusionL10n/currencies.json'
import * as numbers from './syncfusionL10n/numbers.json'
import * as ca from './syncfusionL10n/ca-gregorian.json'
import * as timeZoneNames from './syncfusionL10n/timeZoneNames.json'
import * as numberingSystems from './syncfusionL10n/numberingSystems.json'
loadCldr(currencies, numbers, ca, timeZoneNames, numberingSystems)
Vue.use(SpreadsheetPlugin)
setCulture('fr')
setCurrencyCode('EUR')
L10n.load({
fr: {
spreadsheet: {
InsertingEmptyValue: "La valeur de référence n'est pas valide.",
FindValue: 'Trouver de la valeur',
Is this wrong ?
Thank you,
Tuan