fix(cc-dark-theme): fix ccdarktheme_switch_status option name

In some parts of the codebase we defined the option as
ccdarktheme_switch_enabled, but in practice we used the option as if it
was called ccdarktheme_switch_status.

Thus, this CL replaces references to the first name by the latter.

Change-Id: Ie8b371aed3632333b9d09e4bcac900ff49d8f188
diff --git a/src/common/options/specialOptions.json5 b/src/common/options/specialOptions.json5
index 37b69fa..b444c82 100644
--- a/src/common/options/specialOptions.json5
+++ b/src/common/options/specialOptions.json5
@@ -1,5 +1,5 @@
 [
   'profileindicatoralt_months',
   'ccdarktheme_mode',
-  'ccdarktheme_switch_enabled',
+  'ccdarktheme_switch_status',
 ]