[Rt-commit] r15244 - in rt/3.8/trunk: share/html/Ticket/Graphs/Elements

elacour at bestpractical.com elacour at bestpractical.com
Tue Aug 19 05:38:46 EDT 2008


Author: elacour
Date: Tue Aug 19 05:38:43 2008
New Revision: 15244

Modified:
   rt/3.8/trunk/   (props changed)
   rt/3.8/trunk/share/html/Ticket/Graphs/Elements/EditGraphProperties

Log:
 r10400 at datura:  manu | 2008-08-19 10:35:23 +0200
 Add missed locs on displayed strings on ticket graph properties.


Modified: rt/3.8/trunk/share/html/Ticket/Graphs/Elements/EditGraphProperties
==============================================================================
--- rt/3.8/trunk/share/html/Ticket/Graphs/Elements/EditGraphProperties	(original)
+++ rt/3.8/trunk/share/html/Ticket/Graphs/Elements/EditGraphProperties	Tue Aug 19 05:38:43 2008
@@ -78,7 +78,7 @@
 
 % my @properties = RT::Graph::Tickets->TicketProperties( $session{'CurrentUser'} );
 
-Fill boxes with color using:
+<% loc('Fill boxes with color using') %>:
 <select name="FillUsing">
 <option value=""><% 'nothing' %></option>
 <%PERL>
@@ -98,7 +98,7 @@
 % if ( RT::Link->can('Description' ) ) {
 % my $checked = '';
 % $checked = 'checked="checked"' if $ShowLinkDescriptions;
-Show link descriptions:
+<% loc('Show link descriptions') %>:
 <input type="checkbox" name="ShowLinkDescriptions" value="1" <% $checked |n %> />
 <br />
 % }
@@ -150,15 +150,15 @@
 my $class = '';
 $class = 'class="hidden"' if $Level != 1 && !@Default;
 </%INIT>
-Show Tickets Properties on <% $Level %> level
-(<small><a href="#" onclick="hideshow('<% $id %>'); return false;">open/close</a></small>):
+<% loc('Show Tickets Properties on [_1] level', $Level) %>
+(<small><a href="#" onclick="hideshow('<% $id %>'); return false;"><% loc('open/close') %></a></small>):
 <table id="<% $id %>" <% $class |n %>>
 % while ( my ($group, $list) = (splice @Available, 0, 2) ) {
-<tr><td><% $group %>:</td><td>
+<tr><td><% loc($group) %>:</td><td>
 % foreach my $prop ( @$list ) {
 % my $checked = '';
 % $checked = 'checked="checked"' if grep $_ eq $prop, @Default;
-<input type="checkbox" class="checkbox" name="Level-<% $Level %>-Properties" value="<% $prop %>" <% $checked |n %> /><% $prop %>
+<input type="checkbox" class="checkbox" name="Level-<% $Level %>-Properties" value="<% $prop %>" <% $checked |n %> /><% loc($prop) %>
 % }
 </td></tr>
 % }


More information about the Rt-commit mailing list