mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
PHRAS-2888 Remove unused translation
This commit is contained in:
@@ -161,10 +161,10 @@
|
||||
});
|
||||
$( function() {
|
||||
$.datepicker.regional['default'] = {
|
||||
closeText: "{{ 'workzone:datepicker:closeText' | trans }}",
|
||||
closeText: "Close",
|
||||
prevText: "{{ 'workzone:datepicker:prevText' | trans }}",
|
||||
nextText: "{{ 'workzone:datepicker:nextText' | trans }}",
|
||||
currentText: "{{ 'workzone:datepicker:currentText' | trans }}",
|
||||
currentText: "Today",
|
||||
monthNames: [ "{{ 'workzone:datepicker:january' | trans }}", "{{ 'workzone:datepicker:february' | trans }}", "{{ 'workzone:datepicker:march' | trans }}", "{{ 'workzone:datepicker:april' | trans }}", "{{ 'workzone:datepicker:may' | trans }}", "{{ 'workzone:datepicker:june' | trans }}",
|
||||
"{{ 'workzone:datepicker:july' | trans }}", "{{ 'workzone:datepicker:august' | trans }}", "{{ 'workzone:datepicker:september' | trans }}", "{{ 'workzone:datepicker:october' | trans }}", "{{ 'workzone:datepicker:november' | trans }}", "{{ 'workzone:datepicker:december' | trans }}" ],
|
||||
dayNames: [ "{{ 'workzone:datepicker:sunday' | trans }}", "{{ 'workzone:datepicker:monday' | trans }}", "{{ 'workzone:datepicker:tuesday' | trans }}", "{{ 'workzone:datepicker:wednesday' | trans }}", "{{ 'workzone:datepicker:thursday' | trans }}", "{{ 'workzone:datepicker:friday' | trans }}", "{{ 'workzone:datepicker:saturday' | trans }}" ],
|
||||
|
@@ -4,9 +4,13 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
{% transchoice Total %}
|
||||
{0} No results|{1} Result|]1,Inf[ Results
|
||||
{% endtranschoice %}
|
||||
{% if Total == 0 %}
|
||||
{{ 'No results' | trans }}
|
||||
{% elseif Total == 1 %}
|
||||
{{ '1 result' | trans }}
|
||||
{% else %}
|
||||
{% trans with {'%Total%' : Total} %}%Total% results{% endtrans %}
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
Reference in New Issue
Block a user