<?php

/**
 * @file
 * mathsplain_feature.features.menu_custom.inc
 */

/**
 * Implements hook_menu_default_menu_custom().
 */
function mathsplain_feature_menu_default_menu_custom() {
  $menus = array();

  // Exported menu: menu-main-menu-at.
  $menus['menu-main-menu-at'] = array(
    'menu_name' => 'menu-main-menu-at',
    'title' => 'Main menu (at)',
    'description' => '',
  );
  // Exported menu: menu-user-menu-at.
  $menus['menu-user-menu-at'] = array(
    'menu_name' => 'menu-user-menu-at',
    'title' => 'User menu (at)',
    'description' => '',
  );
  // Exported menu: menu-user-menu-en.
  $menus['menu-user-menu-en'] = array(
    'menu_name' => 'menu-user-menu-en',
    'title' => 'User menu (en)',
    'description' => '',
  );
  // Exported menu: user-menu.
  $menus['user-menu'] = array(
    'menu_name' => 'user-menu',
    'title' => 'User menu',
    'description' => 'The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.',
  );
  // Translatables
  // Included for use with string extractors like potx.
  t('Main menu (at)');
  t('The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.');
  t('User menu');
  t('User menu (at)');
  t('User menu (en)');

  return $menus;
}
