UNPKG

survey-core

Version:

A framework-independent core of the SurveyJS Form Library that works with rendering packages. Use it to integrate dynamic, interactive JSON-based forms and surveys into your app, collect user responses, and send them to your own database.

17 lines (14 loc) 680 B
/*! * surveyjs - Survey JavaScript library v2.4.1 * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/ * License: MIT (http://www.opensource.org/licenses/mit-license.php) */ import { setupLocale } from 'survey-core'; import { dutchSurveyStrings } from './dutch.mjs'; /** * This is initialized as a copy of the Dutch strings, when they start to deviate a choice has to be made: * - Copy the Dutch set once and move forward as if it are 2 totally different languages * - Override the relevant strings only */ setupLocale({ localeCode: "nl-BE", strings: dutchSurveyStrings, nativeName: "vlaams", englishName: "Flemish" }); //# sourceMappingURL=nl-BE.mjs.map