function getStyleApplicationOptions()
 {
     $ops = parent::getStyleApplicationOptions();
     //Move nothing to the end
     $nothing = $ops['none'];
     unset($ops['none']);
     $ops['inline'] = __('Style Generator', 'ubermenu') . '<span class="spark-admin-op-radio-desc">' . __('If custom file is not writable, adds <code>&lt;style&gt;</code> tags to <code>&lt;head&gt;</code>', 'ubermenu') . '</span>';
     $ops['custom'] = __('Custom', 'ubermenu') . '<span class="spark-admin-op-radio-desc">' . __('Load <code>ubermenu/custom/custom.css</code>.  Always use this file for customizations!', 'ubermenu') . '</span>';
     $ops['none'] = $nothing;
     return $ops;
 }