On the create subtheme page the homonym wether is used instead of whether.

Wether is defined as: A castrated ram. https://www.google.com/search?q=define%20wether

CommentFileSizeAuthor
#7 wether-to-whether-1568228-7.patch2.05 KBjghyde
#5 wether.patch505 bytesvm
#2 wether.patch503 bytesvm
wether.png14.99 KBnicxvan

Comments

vm’s picture

Status: Needs review » Active

another report: https://drupal.org/node/1823678 which was closed as a duplicate.

confirmed that the typo is used in -dev

  $form['finalize']['enable'] = array(
    '#type' => 'checkbox',
    '#title' => t('Enabled'),
    '#description' => t('Decide wether or not this theme should be enabled.'),
    '#default_value' => $subtheme->status,
    '#access' => $subtheme->automated,
  );

from the above:

    '#description' => t('Decide wether or not this theme should be enabled.'),

should be

    '#description' => t('Decide whether or not this theme should be enabled.'),
vm’s picture

Version: 7.x-3.0-rc4 » 7.x-3.x-dev
StatusFileSize
new503 bytes

here's an attempt at a patch file.

vm’s picture

Status: Active » Needs review
vm’s picture

Priority: Normal » Minor
Status: Active » Needs review
vm’s picture

StatusFileSize
new505 bytes

comparing with other .patch files in the queue looks like mine wasn't produced properly. here's another attempt

vm’s picture

Status: Needs review » Needs work

Just realized that there are multiple misspelling of whether as wether in multiple files.

2 in omega_tools.admin.inc
1 in omega_tools.wizard.inc (reported by nicxvan)

I'll try my hand at another patch in which all of the misspellings will be corrected.

jghyde’s picture

Assigned: Unassigned » jghyde
Status: Needs work » Needs review
StatusFileSize
new2.05 KB

Applied against the 7.x-3.x branch in the git repo. All instances of "wether" changed to "whether." Here's the patch:

damienmckenna’s picture

Status: Needs review » Closed (duplicate)

Marking this as a duplicate of #1668788: Corrections for text in admin interface and Drush as it covers this and other typos in the UI. That said, thank you for taking the time to put this together!