/**
  * Get default format value for the options form.
  *
  * @return string
  */
 protected function getDefaultReplacementFormat()
 {
     switch ($this->argument_wrapper->getGranularity()) {
         case 'month':
             return 'F Y';
         case 'year':
             return 'Y';
         case 'week':
             return 'F j, Y';
         case 'day':
             return 'l, F j, Y';
         default:
             // @todo Load format used for medium here
             return 'F j, Y';
     }
 }