Bugzilla – Attachment 49728 Details for
Bug 16178
Tests for xt/single_quotes.t are failing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16178: Fix tests for xt/single_quotes.t
Bug-16178-Fix-tests-for-xtsinglequotest.patch (text/plain), 1.60 KB, created by
Jonathan Druart
on 2016-03-31 08:07:44 UTC
(
hide
)
Description:
Bug 16178: Fix tests for xt/single_quotes.t
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2016-03-31 08:07:44 UTC
Size:
1.60 KB
patch
obsolete
>From e6ffff357fc1cb3588937794b8197b1f0c298138 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 31 Mar 2016 09:06:14 +0100 >Subject: [PATCH] Bug 16178: Fix tests for xt/single_quotes.t > >Caused by > commit 9c5c1bc9f104b125e06b3805ce510024e6ad34ac > Bug 15206: Make strings translatable > >Test plan: > prove xt/single_quotes.t >should return green >--- > koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >index e6caf43..aeb7f12 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >@@ -142,15 +142,15 @@ function select_user(borrowernumber, borrower) { > > var age_string; > if (age.year || age.month) { >- age_string = _('Age: '); >+ age_string = _("Age: "); > } > > if (age.year) { >- age_string += age.year > 1 ? _('%s years ').format(age.year) : _('%s year ').format(age.year); >+ age_string += age.year > 1 ? _("%s years ").format(age.year) : _("%s year ").format(age.year); > } > > if (age.month) { >- age_string += age.month > 1 ? _('%s months ').format(age.month) : _('%s month ').format(age.month); >+ age_string += age.month > 1 ? _("%s months ").format(age.month) : _("%s month ").format(age.month); > } > > hint.html(age_string); >-- >2.7.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 16178
:
49728
|
49744
|
49776