Koha/koha-tmpl/intranet-tmpl/prog/en/modules/admin/koha2marclinks.tt
Marc Véron f9586b0199 Bug 15236: Better translatibility in "Connect biblio.biblionumber to a MARC subfield"
This patch moves html markup out of explanatory sentence in koha2marclinks.tt ("Connect
biblio.biblionumber to a MARC subfield") for better translatability.

To test:

- Apply patch
- Go to Home > Administration < Koha to MARC mapping
  and edit a tag
- Verify that text change makes sense

Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com>
Rewording Ok for translation purposes

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
2015-12-29 23:29:56 +00:00

115 lines
4 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Administration &rsaquo;
[% IF ( add_form ) %] Koha to MARC mapping &rsaquo; Connect [% tablename %].[% kohafield %] to a MARC subfield[% END %]
[% IF ( else ) %]Koha to MARC mapping [% tagfield %][% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="admin_koha2marclinks" class="admin">
[% INCLUDE 'header.inc' %]
[% INCLUDE 'cat-search.inc' %]
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; [% IF ( add_form ) %] <a href="/cgi-bin/koha/admin/koha2marclinks.pl">Koha to MARC Mapping</a> &rsaquo; Connect [% tablename %].[% kohafield %] to a MARC subfield[% END %]
[% IF ( else ) %]Koha to MARC mapping[% tagfield %][% END %]</div>
[% IF ( add_form ) %]
<div id="doc" class="yui-t7">
<div id="bd">
<div id="yui-main">
<div class="yui-g">
[% ELSE %]
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
[% END %]
[% IF ( add_form ) %]
<h1>Connect [% tablename %].[% kohafield %] to a MARC subfield</h1>
<p>Choose and validate 1 MARC subfield for <strong>[% tablename %].[% kohafield %]</strong>.</p>
<p><b>Note: </b>All frameworks will be modified which is usually what you need, but you have been warned.</p>
<fieldset class="rows">
<ol>
[% FOR i IN [ 0 .. 9 ] %]
[% marclist = "marclist$i" %]
<li>
<form action="[% script_name %]" method="post">
<input type="hidden" name="op" value="add_validate" />
<input type="hidden" name="tablename" value="[% tablename %]" />
<input type="hidden" name="kohafield" value="[% kohafield %]" />
<label>[% i %]00s</label>
<select name="marc" id="marc" size="1" width="570" style="width: 570px;">
[% FOREACH value IN $marclist.values %]
[% IF ( value == $marclist.default ) %]
<option value="[% value %]" selected="selected">[% value %]</option>
[% ELSE %]
<option value="[% value %]">[% value %]</option>
[% END %]
[% END %]
</select>
<input type="submit" value="OK" />
</form>
</li>
[% END %]
</ol>
</fieldset>
<fieldset class="action">
<form action="[% script_name %]" name="Aform" method="post">
<input type="hidden" name="op" value="add_validate" />
<input type="hidden" name="tablename" value="[% tablename %]" />
<input type="hidden" name="kohafield" value="[% kohafield %]" />
<input type="hidden" name="choice" value="" />
<input type="submit" value="Click to &quot;Unmap&quot;" />
</form>
<a class="cancel" href="/cgi-bin/koha/admin/koha2marclinks.pl">Cancel</a>
</fieldset>
[% END %]
[% IF ( else ) %]
<h1>Koha to MARC mapping [% tagfield %]</h1>
<form action="[% script_name %]" method="post">
<p>
<select name="tablename" id="tablename" size="1">
[% FOREACH value IN tablename.values %]
[% IF ( value == tablename.default ) %]
<option value="[% value %]" selected="selected">[% value %]</option>
[% ELSE %]
<option value="[% value %]">[% value %]</option>
[% END %]
[% END %]
</select>
<input type="submit" value="OK" />
</p>
</form>
<table>
<tr>
<th>Koha field</th>
<th>Tag</th>
<th>Subfield</th>
<th>Lib</th>
<th>&nbsp;</th>
</tr>
[% FOREACH loo IN loop %]
<tr>
<td><a href="[% loo.edit %]">[% loo.kohafield %]</a></td>
<td>[% loo.tagfield %]</td>
<td>[% loo.tagsubfield %]</td>
<td>[% loo.liblibrarian %]</td>
<td><a href="[% loo.edit %]">Edit</a></td>
</tr>
[% END %]
</table>
[% END %]
</div>
</div>
[% UNLESS ( add_form ) %]
<div class="yui-b">
[% INCLUDE 'admin-menu.inc' %]
</div>
[% END %]
</div>
[% INCLUDE 'intranet-bottom.inc' %]