From 01f37373baca9ae9c79dcd45ecef8e76f1a12f69 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marc=20V=C3=A9ron?= <veron@veron.ch>
Date: Sun, 28 May 2017 09:34:21 +0200
Subject: [PATCH] Bug 18687: Translatability: abbr tag should not contain lang
 attribute

In manage-marc-import.tt, we have an abbreviation:

<abbr title="Differences between the original biblio and the imported" lang="en">Diff</abbr>

In translations (e.g. German), the line appears as follows:
<abbr title="Unterschiede zwischen Originaltitelsatz und importiertem Titelsatz" lang="en">Diff</abbr>

The lang attribute is wrong here, it is still "en".
The text language is the same as defined at the top of the page - or with other
words, the lang tag is superfluous.

This patch removes it.

To test:
Verify that code change makes sense.

Passes QA test and the change is logical
Signed-off-by: Alex Buckley <alexbuckley@catalyst.net.nz>
---
 koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt
index 2f0d083..4d84eb3 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt
@@ -475,7 +475,7 @@ Page
                 <th>Status</th>
                 <th>Match type</th>
                 <th>Match details</th>
-                <th><abbr title="Differences between the original biblio and the imported" lang="en">Diff</abbr></th>
+                <th><abbr title="Differences between the original biblio and the imported">Diff</abbr></th>
                 <th>Record</th>
             </tr>
         </thead>
-- 
2.1.4