diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-11-24 16:54:42 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-11-24 16:54:42 +0000 |
commit | f56fa1fc50484d99906a0a22e2931f9c1fe708b6 (patch) | |
tree | c70ac55756560ca11e4fbcd52b551954e942beea /h-source/Application/Views/Wiki/page.php | |
parent | deb6bcab1be6ec1c9fff6f34c80111a9f57c48d9 (diff) |
improved i18n
Diffstat (limited to 'h-source/Application/Views/Wiki/page.php')
-rw-r--r-- | h-source/Application/Views/Wiki/page.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/h-source/Application/Views/Wiki/page.php b/h-source/Application/Views/Wiki/page.php index afff4bd..1716edc 100644 --- a/h-source/Application/Views/Wiki/page.php +++ b/h-source/Application/Views/Wiki/page.php @@ -98,7 +98,7 @@ <?php if (!$isDeleted) { ?> <div class="talk_numb_ext_wiki"> - <a href="<?php echo $this->baseUrl."/".$this->controller."/talk/$lang/$id_wiki";?>">talk messages: <?php echo $talk_number;?></a> + <a href="<?php echo $this->baseUrl."/".$this->controller."/talk/$lang/$id_wiki";?>"><?php echo gtext("talk messages");?>: <?php echo $talk_number;?></a> </div> <?php } ?> @@ -109,7 +109,7 @@ </div> <div class="notebook_view_title"> - Revision of the wiki page <b><?php echo $tree_name;?></b> + <?php echo gtext("Revision of the wiki page");?> <b><?php echo $tree_name;?></b> </div> <div class="notebook_insert_link"> @@ -125,7 +125,7 @@ <!--if revision--> <?php if (strcmp($this->action,'revision') === 0) { ?> <div class="revision_alert"> - This is an old revision of this page, as edited by <b><?php echo $u->getLinkToUserFromId($created_by);?></b> at <b><?php echo smartDate($update_date); ?></b>. It may differ significantly from the <a href="<?php echo $this->baseUrl."/wiki/page/$lang/".encodeUrl($tree_name);?>">current revision</a>. + <?php echo gtext("This is an old revision of this page, as edited by");?> <b><?php echo $u->getLinkToUserFromId($created_by);?></b> <?php echo gtext('at');?> <b><?php echo smartDate($update_date); ?></b>. <?php echo gtext("It may differ significantly from the");?> <a href="<?php echo $this->baseUrl."/wiki/page/$lang/".encodeUrl($tree_name);?>"><?php echo gtext("Current revision");?></a></a>. </div> <?php } ?> |