summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-04 09:11:43 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-04 09:11:43 +0000
commit781880deaa20f3e84ca6c78d963984c5b2573583 (patch)
tree42e6ec6998f3dc1cce34f207421c1176ac4fe0ea
parenta7cda28607a255f5bbb8824068f3b658cf39b941 (diff)
downloadbrdo-781880deaa20f3e84ca6c78d963984c5b2573583.tar.gz
brdo-781880deaa20f3e84ca6c78d963984c5b2573583.tar.bz2
#61696 by Zen, book module: Missing t()
-rw-r--r--modules/book.module2
-rw-r--r--modules/book/book.module2
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();
}
}