Merge branch 'master' into develop

This commit is contained in:
Pieter Vander Vennet 2022-03-02 16:00:06 +01:00
commit e6185b8dca
43 changed files with 855 additions and 38313 deletions

View file

@ -177,7 +177,7 @@ function run(file, protojson) {
},
mappings: e.commonVoltages.map(voltage => {
return {
if: `socket:${e.key}:voltage=${voltage} V`,
if: `${e.key}:voltage=${voltage} V`,
then: {
en: `${e.description.get("en")} outputs ${voltage} volt`,
nl: `${e.description.get("nl")} heeft een spanning van ${voltage} volt`
@ -211,7 +211,7 @@ function run(file, protojson) {
},
mappings: e.commonCurrents.map(current => {
return {
if: `socket:${e.key}:current=${current} A`,
if: `${e.key}:current=${current} A`,
then: {
en: `${e.description.get("en")} outputs at most ${current} A`,
nl: `${e.description.get("nl")} levert een stroom van maximaal ${current} A`
@ -245,7 +245,7 @@ function run(file, protojson) {
},
mappings: e.commonOutputs.map(output => {
return {
if: `socket:${e.key}:output=${output}`,
if: `${e.key}:output=${output}`,
then: {
en: `${e.description.get("en")} outputs at most ${output} A`,
nl: `${e.description.get("nl")} levert een vermogen van maximaal ${output} A`