Skip to content

Commit

Permalink
Fix internationalization of REST key.
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat committed Jul 20, 2010
1 parent 96bcc81 commit 6ed6382
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions modules/rest/views/user_profile_rest.html.php
@@ -1,8 +1,10 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="g-rest-detail">
<ul>
<li id="g-rest-key">
<p><b><?= t("Key") ?></b>:<?= html::clean($rest_key) ?></p>
</li>
</ul>
<ul>
<li id="g-rest-key">
<p>
<?= t("<b>Key</b>: %key", array("key" => $rest_key)) ?>
</p>
</li>
</ul>
</div>

0 comments on commit 6ed6382

Please sign in to comment.