summaryrefslogtreecommitdiff
path: root/desktop/global_history.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-11-11 14:32:07 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-11-11 14:32:07 +0000
commitb547e1205b58a40e6e546189ea7948a82b4de027 (patch)
treeaa5df0d76b870e865d73f3227652b571e37651d2 /desktop/global_history.c
parent7a920ace39937b7bc665ec7e3b716e6353467b00 (diff)
downloadnetsurf-b547e1205b58a40e6e546189ea7948a82b4de027.tar.gz
netsurf-b547e1205b58a40e6e546189ea7948a82b4de027.tar.bz2
Use messages for translations instead of string literals.
Diffstat (limited to 'desktop/global_history.c')
-rw-r--r--desktop/global_history.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/global_history.c b/desktop/global_history.c
index 94521e7c3..e8d99efc2 100644
--- a/desktop/global_history.c
+++ b/desktop/global_history.c
@@ -249,7 +249,8 @@ static nserror global_history_create_treeview_field_data(
struct global_history_entry *e,
const struct url_data *data)
{
- const char *title = (data->title != NULL) ? data->title : "<No title>";
+ const char *title = (data->title != NULL) ?
+ data->title : messages_get("NoTitle");
char buffer[16];
const char *last_visited;
char *last_visited2;