diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-05-04 09:11:43 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-05-04 09:11:43 +0000 |
commit | 781880deaa20f3e84ca6c78d963984c5b2573583 (patch) | |
tree | 42e6ec6998f3dc1cce34f207421c1176ac4fe0ea | |
parent | a7cda28607a255f5bbb8824068f3b658cf39b941 (diff) | |
download | brdo-781880deaa20f3e84ca6c78d963984c5b2573583.tar.gz brdo-781880deaa20f3e84ca6c78d963984c5b2573583.tar.bz2 |
#61696 by Zen, book module: Missing t()
-rw-r--r-- | modules/book.module | 2 | ||||
-rw-r--r-- | modules/book/book.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module index 1692da7d5..f20ddd6f3 100644 --- a/modules/book.module +++ b/modules/book.module @@ -676,7 +676,7 @@ function book_export($type = 'html', $nid = 0) { print call_user_func($export_function, $nid, $depth); } else { - drupal_set_message('Unknown export format'); + drupal_set_message(t('Unknown export format.')); drupal_not_found(); } } diff --git a/modules/book/book.module b/modules/book/book.module index 1692da7d5..f20ddd6f3 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -676,7 +676,7 @@ function book_export($type = 'html', $nid = 0) { print call_user_func($export_function, $nid, $depth); } else { - drupal_set_message('Unknown export format'); + drupal_set_message(t('Unknown export format.')); drupal_not_found(); } } |