diff options
-rw-r--r-- | timelinejs.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/timelinejs.module b/timelinejs.module index 9c61b88..d7ebb45 100644 --- a/timelinejs.module +++ b/timelinejs.module @@ -93,10 +93,10 @@ function timelinejs_json($nid) { } if (empty($items)) { - $items[0] = new stdClass(); + $items[0] = new stdClass(); $items[0]->field_date['und'][0]['value'] = NULL; - $items[0]->title = t('No items'); - $items[0]->body['und'][0]['value'] = t('Currently there are new items in this timeline'); + $items[0]->title = t('No items'); + $items[0]->body['und'][0]['value'] = t('Currently there are no items in this timeline.'); } foreach ($items as $event) { |