diff options
author | Kamil Domanski <kdomanski@kdemail.net> | 2011-06-20 17:13:18 +0200 |
---|---|---|
committer | Kamil Domanski <kdomanski@kdemail.net> | 2011-06-20 17:13:18 +0200 |
commit | 317b18bef8fbaa412b20e29b1fde8ddc6425cda2 (patch) | |
tree | 181d4151d7f6994447de5c8fb5d0365c817afaf5 /help | |
parent | 9f7e50ae8e0c869283b976ef6060d417e1d8eec9 (diff) | |
download | nextcloud-server-317b18bef8fbaa412b20e29b1fde8ddc6425cda2.tar.gz nextcloud-server-317b18bef8fbaa412b20e29b1fde8ddc6425cda2.zip |
make help translateable
Diffstat (limited to 'help')
-rw-r--r-- | help/templates/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/help/templates/index.php b/help/templates/index.php index a117c3d5fb4..ac7e12b757a 100644 --- a/help/templates/index.php +++ b/help/templates/index.php @@ -1,5 +1,5 @@ -<h1>Questions and Answers</h1> +<h1><?php echo $l->t( 'Questions and Answers' ); ?></h1> <table cellspacing="0" width="100%"> <tbody> @@ -18,6 +18,6 @@ $pageNavi=OC_UTIL::getPageNavi($_['pagecount'],$_['page'],$url); $pageNavi->printPage(); ?> -<a target="_blank" class="prettybutton" href="http://apps.owncloud.com/knowledgebase/editquestion.php?action=new">ASK A QUESTION</a> +<a target="_blank" class="prettybutton" href="http://apps.owncloud.com/knowledgebase/editquestion.php?action=new"><?php echo $l->t( 'ASK A QUESTION' ); ?></a> |