From dd83923057643888cc1c6dbb8ded9d52e766f525 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Thu, 23 Dec 2010 21:33:45 +0100 Subject: Translatable "Welcome to" in home --- mod/home.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/home.php') diff --git a/mod/home.php b/mod/home.php index 59cc31d3b..53b111bdf 100644 --- a/mod/home.php +++ b/mod/home.php @@ -19,7 +19,7 @@ function home_content(&$a) { * $a->page['footer'] = ''; * $a->page['footer'] .= "
Powered by friendika
"; */ - $o .= '

Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '

'; + $o .= '

' . ((x($a->config,'sitename')) ? t("Welcome to ").$a->config['sitename'] : "" ) . '

'; if(file_exists('home.html')) $o .= file_get_contents('home.html'); @@ -27,4 +27,4 @@ function home_content(&$a) { return $o; -}} \ No newline at end of file +}} -- cgit v1.2.3