Fix casing for Morse code operations + description

This commit is contained in:
toby 2017-02-03 17:54:50 -05:00
parent 230ba5ff67
commit 9bf0d66b88
2 changed files with 6 additions and 6 deletions

View File

@ -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",
] ]
}, },
{ {

View File

@ -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",