Jelajahi Sumber

Fix casing for Morse code operations + description

toby 8 tahun lalu
induk
melakukan
9bf0d66b88
2 mengubah file dengan 6 tambahan dan 6 penghapusan
  1. 2 2
      src/js/config/Categories.js
  2. 4 4
      src/js/config/OperationConfig.js

+ 2 - 2
src/js/config/Categories.js

@@ -85,8 +85,8 @@ var Categories = [
             "Substitute",
             "Derive PBKDF2 key",
             "Derive EVP key",
-            "To Morse Code",
-            "From Morse Code",
+            "To Morse code",
+            "From Morse code",
         ]
     },
     {

+ 4 - 4
src/js/config/OperationConfig.js

@@ -2953,8 +2953,8 @@ var OperationConfig = {
             }
         ]
     },
-    "To Morse Code": {
-        description: "Translates alphanumeric characters into International Morse Code.<br><br>Ignores non-Morse characters.<br><br>e.g. SOS becomes ... --- ...",
+    "To Morse code": {
+        description: "Translates alphanumeric characters into International Morse code.<br><br>Ignores non-Morse characters.<br><br>e.g. SOS becomes ... --- ...",
         run: MorseCode.translateTo,
         inputType: "string",
         outputType: "string",
@@ -2976,8 +2976,8 @@ var OperationConfig = {
             }
         ]
     },
-    "From Morse Code": {
-        description: "Translates Morse Code into (upper case) alphanumeric characters.",
+    "From Morse code": {
+        description: "Translates Morse code into (upper case) alphanumeric characters.",
         run: MorseCode.translateFrom,
         inputType: "string",
         outputType: "string",