View | Details | Raw Unified | Return to bug 15206
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-3 / +2 lines)
Lines 163-173 Link Here
163
        }
163
        }
164
164
165
        if (age.year) {
165
        if (age.year) {
166
            age_string += _(age.year > 1 ? '%s years ' : '%s year ').format(age.year);
166
            age_string += age.year > 1 ? _('%s years ').format(age.year) : _('%s year ').format(age.year);
167
        }
167
        }
168
168
169
        if (age.month) {
169
        if (age.month) {
170
            age_string += _(age.month > 1 ? '%s months ' : '%s month ').format(age.month);
170
            age_string += age.month > 1 ? _('%s months ').format(age.month) : _('%s month ').format(age.month);
171
        }
171
        }
172
172
173
        hint.html(age_string);
173
        hint.html(age_string);
174
- 

Return to bug 15206