MuseScore/tools/fonttools/smufl2sym-cmd-symUserNames.jq
2021-01-26 16:33:49 +02:00

7 lines
309 B
Text

to_entries[] | [
" ",
if (.key | in($tr[0])) then "QT_TRANSLATE_NOOP(\"symUserNames\", \"" else "\"" end,
(.value.description | gsub("\""; "\\\"")),
if (.key | startswith("accidentalWyschnegradsky")) then " (Wyschnegradsky)" else "" end,
if (.key | in($tr[0])) then "\")," else "\"," end
] | join("")