I want to change the "Vocabularies" word in node create with something more user friendly. Can someone please help me find the t() for this? Thanks!

Comments

iharley’s picture

Title: Help » Help with finding the right t()
robloach’s picture

Wouldn't it just be "Vocabularies"?

    if (!empty($form['taxonomy']) && is_array($form['taxonomy'])) {
      if (count($form['taxonomy']) > 1) {
        // Add fieldset only if form has more than 1 element.
        $form['taxonomy'] += array(
          '#type' => 'fieldset',
          '#title' => t('Vocabularies'),
          '#collapsible' => TRUE,
          '#collapsed' => FALSE,
        );
      }
      $form['taxonomy']['#weight'] = -3;
      $form['taxonomy']['#tree'] = TRUE;
    }
iharley’s picture

Status: Active » Closed (fixed)

Thanks, I think I was over complicating things. I didn't think I could just put in "Vocabularies" to make the change.