2018-04-12 21:25:40 +02:00
|
|
|
'use strict'
|
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
const baseProfile = require('./base.json')
|
2018-04-12 21:25:40 +02:00
|
|
|
const products = require('./products')
|
|
|
|
|
|
|
|
const cflProfile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2018-04-12 21:25:40 +02:00
|
|
|
locale: 'de-LU',
|
|
|
|
timezone: 'Europe/Luxembourg',
|
2022-04-29 00:19:54 +02:00
|
|
|
defaultLanguage: 'de',
|
2018-04-12 21:25:40 +02:00
|
|
|
|
|
|
|
products: products,
|
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
refreshJourneyUseOutReconL: true,
|
2018-06-10 20:44:12 +02:00
|
|
|
trip: true,
|
2020-09-16 17:21:59 +02:00
|
|
|
radar: true,
|
2021-04-18 22:31:41 +02:00
|
|
|
reachableFrom: true,
|
|
|
|
remarksGetPolyline: false,
|
2018-04-12 21:25:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = cflProfile;
|