diff --git a/modules/storm/stormidea/stormidea.admin.inc b/modules/storm/stormidea/stormidea.admin.inc index c2f7c5c..269ed2b 100644 --- a/modules/storm/stormidea/stormidea.admin.inc +++ b/modules/storm/stormidea/stormidea.admin.inc @@ -14,7 +14,7 @@ function stormidea_list() { $header = array( array( - 'data' => t('Idea'), + 'data' => t('Reminder'), 'field' => 'n.title', ), array( diff --git a/modules/storm/stormidea/stormidea.module b/modules/storm/stormidea/stormidea.module index 711eb04..8248437 100644 --- a/modules/storm/stormidea/stormidea.module +++ b/modules/storm/stormidea/stormidea.module @@ -118,7 +118,7 @@ function stormidea_menu() { $items = array(); $items['ideas'] = array( - 'title' => 'My ideas', + 'title' => 'Jot downs', 'description' => 'SuiteDesk ideas', 'page callback' => 'stormidea_list', 'access arguments' => array('Storm idea: access'), @@ -157,7 +157,7 @@ function stormidea_node_info() { function stormidea_form(&$node) { $breadcrumb = array(); $breadcrumb[] = l(t('Home'), ''); - $breadcrumb[] = l(t('My ideas'), 'ideas'); + $breadcrumb[] = l(t('Jot downs'), 'ideas'); drupal_set_breadcrumb($breadcrumb); $type = node_get_types('type', $node); @@ -192,7 +192,7 @@ function stormidea_nodeapi($node, $op, $a3 = NULL, $a4 = NULL) { function stormidea_view($node, $teaser = FALSE, $page = FALSE) { $breadcrumb = array(); $breadcrumb[] = l(t('Home'), ''); - $breadcrumb[] = l(t('My ideas'), 'ideas'); + $breadcrumb[] = l(t('Jot downs'), 'ideas'); drupal_set_breadcrumb($breadcrumb); return theme('stormidea_view', $node, $teaser, $page); @@ -210,7 +210,7 @@ function stormidea_storm_dashboard_links($type) { if ($type == 'page' || $type == 'block') { $links[] = array( 'theme' => 'storm_dashboard_link', - 'title' => t('My ideas'), + 'title' => t('Jot downs'), 'icon' => 'stormidea-item', 'path' => 'ideas', 'params' => array(), diff --git a/themes/zuitedesk/css/suitedesk.css b/themes/zuitedesk/css/suitedesk.css index a3bec37..0518f1b 100644 --- a/themes/zuitedesk/css/suitedesk.css +++ b/themes/zuitedesk/css/suitedesk.css @@ -558,7 +558,7 @@ table#stormtasks td .popups-form { } } -table#tasks tbody tr td:first-child { +table#tasks tr td:first-child { overflow: hidden; word-wrap: normal; white-space: nowrap; diff --git a/themes/zuitedesk/template.php b/themes/zuitedesk/template.php index d5a9228..3711797 100644 --- a/themes/zuitedesk/template.php +++ b/themes/zuitedesk/template.php @@ -205,7 +205,7 @@ function zuitedesk_preprocess_page(&$vars, $hook) { // User submenu: $submenu = ''; $submenu .= _zuitedesk_option($deskmenu[14], "$lang/notes", t('My notes'), 'notes', 'note'); - $submenu .= _zuitedesk_option($deskmenu[15], "$lang/ideas", t('My ideas'), 'ideas', 'idea'); + $submenu .= _zuitedesk_option($deskmenu[15], "$lang/ideas", t('Jot downs'), 'ideas', 'idea'); $submenu .= _zuitedesk_option(TRUE, '', 'SuiteDesk Tour', 'help', 'help', t('A beginner\'s guide to SuiteDesk')); $partial = ''; $partial .= _zuitedesk_option($deskmenu[17], "$lang/user/watcher", t('Watcher'), 'watcher', 'apply');