[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/value_builder unimarc_field_100.tmpl,NONE,1.1 unimarc_field_700-4.tmpl,NONE,1.1

Paul POULAIN tipaul at users.sourceforge.net
Mon Feb 3 13:34:59 CET 2003


Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder
In directory sc8-pr-cvs1:/tmp/cvs-serv14024/koha-tmpl/intranet-tmpl/default/fr/value_builder

Added Files:
	unimarc_field_100.tmpl unimarc_field_700-4.tmpl 
Log Message:
french translation

--- NEW FILE ---
<html>
<head>
<title>UNIMARC constructeur champ 100</title>
</head>
<body>
<form name="f_pop" onSubmit="javascript:report()">
<table>
	<tr>
		<td>Date d'enregistrement </td>
		<td><input type="text" name="f1" maxlength=8 size=8 value="<TMPL_VAR name="f1">"></td>
	</tr>
	<tr>
		<td>Code date publication </td><td><select name="f2" size="1">
		<option value="a" ><TMPL_IF name="f2a">SELECTED</TMPL_IF>>p&eacute;riodique en cours</option>
			<option value="b" ><TMPL_IF name="f2b">SELECTED</TMPL_IF>>p&eacute;riodique mort</option>
			<option value="c" ><TMPL_IF name="f2c">SELECTED</TMPL_IF>>p&eacute;riodique d'&eacute;tat inconnu</option>
			<option value="d" ><TMPL_IF name="f2d">SELECTED</TMPL_IF>>monographie compl&egrave;te</option>
			<option value="e" ><TMPL_IF name="f2e">SELECTED</TMPL_IF>>reproduction</option>
			</select>
		</td>
	</tr>
	<tr>
		
	  <td>Ann&eacute;e d&eacute;but</td>
		<td><input type="text" name="f3" maxlength=4 size=5 value="<TMPL_VAR name="f3">"></td>
	</tr>
	<tr>
	  <td>
		<p>Ann&eacute;e fin</p>
		</td>
	<td><input type="text" name="f4" maxlength=4 size=5 value="<TMPL_VAR name="f4">"></td>
	</tr>
	<tr><td colspan=2><input type="submit" value="Envoyer"></td></tr>
</table>
</form>
<script>
	function report() {
		document.f_pop.f1.value=document.f_pop.f1.value+'        ';
		document.f_pop.f3.value=document.f_pop.f3.value+'    ';
		document.f_pop.f4.value=document.f_pop.f4.value+'    ';
		document.f_pop.f1.value=document.f_pop.f1.value.substring(0,8);
		document.f_pop.f3.value=document.f_pop.f3.value.substring(0,4);
		document.f_pop.f4.value=document.f_pop.f4.value.substring(0,4);

		opener.document.f.field_value[<TMPL_VAR name="index">].value= document.f_pop.f1.value + document.f_pop.f2.value +document.f_pop.f3.value +document.f_pop.f4.value;
		self.close();
		return false;
	}
</script>
</body>
</html>

--- NEW FILE ---
<html>
<head>
<title>UNIMARC constructeur champ 700-4</title>
</head>
<body>
<p>Sélectionnez la valeur pour la zone 700 $4. Elle sera automatiquement reportée 
  dans la zone 700 $8.</p>
<form name="f_pop" onSubmit="javascript:report()">
<table>
	<tr>
		<td>Code date publication </td>
		<td><select name="f1" size="1">
		  <option value="075 - postface" selected>SELECTED>postface</option>
		  <option value="651 - dir. de publication">SELECTED>dir. de publication</option>
		  <option value="440 - illustrateur">SELECTED>illustrateur</option>
		  <option value="080 - pr&eacute;face, notes">SELECTED>pr&eacute;face, notes</option>
		  <option value="730 - traducteur">SELECTED>traducteur</option>
		</select>
		</td>
	</tr>
	<tr><td colspan=2><input type="submit" value="Envoyer"></td></tr>
</table>
</form>
<script>
	function report() {
		x = document.f_pop.f1.value.split(' - ');
		opener.document.f.field_value[<TMPL_VAR name="index">].value= x[0];
		if (<TMPL_VAR name="index2">>0) {
			opener.document.f.field_value[<TMPL_VAR name="index2">].value= x[1];
		}
		self.close();
		return false;
	}
</script>
</body>
</html>





More information about the Koha-cvs mailing list