TT#128256 Add localisation support on calls list select

Otherwise those strings are not localised.

Change-Id: Ibd0bf1d9e7fc632690602b95187b23d5ff339f51
mr10.0
Alexander Lutay 5 years ago
parent c4bb000dac
commit d25d25674e

@ -31,9 +31,9 @@ function showCallDetails(callId){
<select onChange="changeCalllist(this);" id="Calls_table_external_filter">
<option value="[% c.uri_for_action('/subscriber/ajax_calls', [c.req.captures.0], undef, {callid => callid}) -%]">Show all calls</option>
<option value="[% c.uri_for_action('/subscriber/ajax_calls_out', [c.req.captures.0], undef, {callid => callid}) -%]">Show outgoing calls only</option>
<option value="[% c.uri_for_action('/subscriber/ajax_calls_in', [c.req.captures.0], undef, {callid => callid}) -%]">Show incoming calls only</option>
<option value="[% c.uri_for_action('/subscriber/ajax_calls', [c.req.captures.0], undef, {callid => callid}) -%]">[% c.loc('Show all calls') %]</option>
<option value="[% c.uri_for_action('/subscriber/ajax_calls_out', [c.req.captures.0], undef, {callid => callid}) -%]">[% c.loc('Show outgoing calls only') %]</option>
<option value="[% c.uri_for_action('/subscriber/ajax_calls_in', [c.req.captures.0], undef, {callid => callid}) -%]">[% c.loc('Show incoming calls only') %]</option>
</select>
<script>
function changeCalllist(selection) {

Loading…
Cancel
Save