@@ -, +, @@ Reports in the po/xx-YY-i-staff-t-prog-v-3006000.po the msgid - search for "translate_report_areas" --- .../prog/en/modules/reports/guided_reports_start.tt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -1,4 +1,13 @@ [% USE KohaDates %] +[% BLOCK translate_report_areas %] +[% SWITCH area %] +[% CASE 'CIRC' %]Circulation +[% CASE 'CAT' %]Catalogue +[% CASE 'PAT' %]Patrons +[% CASE 'ACQ' %]Acquisition +[% CASE 'ACC' %]Accounts +[% END %] +[% END %] [% INCLUDE 'doc-head-open.inc' %] Koha › Reports › Guided reports wizard [% IF ( saved1 ) %]› Saved Reports @@ -398,7 +407,7 @@ canned reports and writing custom SQL reports.</p> <legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and Choose report visibility </legend> <ol><li><label for="area">Choose: </label><select name="area" id="area"> [% FOREACH area IN areas %] -<option value="[% area.id %]">[% area.name %]</option> +<option value="[% area.id %]">[% PROCESS translate_report_areas area=area.id %]</option> [% END %] </select></li> [% IF (public) %] --