Ticket #337 (closed Bug report: fixed)
Patch for UIUserList_getUserUI.tpl static text
| Reported by: | blue@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | Not yet assigned to a Milestone |
| Component: | Auth server, Usability, Interface and translations | Version: | |
| Keywords: | Cc: |
Description
UIUserList doesn't use locales:
Attaching output of: for i in find -iname *.tpl; do locale/gensmarty.pl $i; done > locale/smarty.txt Dunno if that is the correct way of updating smarty.txt
Patch:
Index: templates/classes/UIUserList_getUserUI.tpl
===================================================================
--- templates/classes/UIUserList_getUserUI.tpl (revision 1240)
+++ templates/classes/UIUserList_getUserUI.tpl (working copy)
@@ -60,12 +60,12 @@
{/section}
</ul>
{else}
- {"Nobody is online at this hotspot"|_} ...
+ {"Nobody is online at this hotspot"|_}
{/if}
</div>
<div id="recent_users">
- <label>Recent Users:</label>
+ <label>{"Recent Users:"|_}</label>
<ul>
{section name=recentUser loop=$recentUsers}
<li>{$recentUsers[recentUser]}</li>
@@ -74,11 +74,11 @@
</div>
<div id="active_users">
- <label>Most Active Users:</label>
+ <label>{"Most Active Users:"|_}</label>
<ul>
{section name=activeUser loop=$activeUsers}
<li>{$activeUsers[activeUser]}</li>
{/section}
</ul>
</div>
- {/if}
\ No newline at end of file
+ {/if}
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

