mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 23:06:16 -04:00
Fix casing for Morse code operations + description
This commit is contained in:
parent
230ba5ff67
commit
9bf0d66b88
2 changed files with 6 additions and 6 deletions
|
@ -85,8 +85,8 @@ var Categories = [
|
||||||
"Substitute",
|
"Substitute",
|
||||||
"Derive PBKDF2 key",
|
"Derive PBKDF2 key",
|
||||||
"Derive EVP key",
|
"Derive EVP key",
|
||||||
"To Morse Code",
|
"To Morse code",
|
||||||
"From Morse Code",
|
"From Morse code",
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -2953,8 +2953,8 @@ var OperationConfig = {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"To Morse Code": {
|
"To Morse code": {
|
||||||
description: "Translates alphanumeric characters into International Morse Code.<br><br>Ignores non-Morse characters.<br><br>e.g. SOS becomes ... --- ...",
|
description: "Translates alphanumeric characters into International Morse code.<br><br>Ignores non-Morse characters.<br><br>e.g. SOS becomes ... --- ...",
|
||||||
run: MorseCode.translateTo,
|
run: MorseCode.translateTo,
|
||||||
inputType: "string",
|
inputType: "string",
|
||||||
outputType: "string",
|
outputType: "string",
|
||||||
|
@ -2976,8 +2976,8 @@ var OperationConfig = {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"From Morse Code": {
|
"From Morse code": {
|
||||||
description: "Translates Morse Code into (upper case) alphanumeric characters.",
|
description: "Translates Morse code into (upper case) alphanumeric characters.",
|
||||||
run: MorseCode.translateFrom,
|
run: MorseCode.translateFrom,
|
||||||
inputType: "string",
|
inputType: "string",
|
||||||
outputType: "string",
|
outputType: "string",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue