[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple addbiblio.tmpl,1.10.2.4,1.10.2.5 additem-nomarc.tmpl,1.1.2.4,1.1.2.5 additem.tmpl,1.5.2.5,1.5.2.6 marcimport.tmpl,1.2.2.4,1.2.2.5

Paul POULAIN tipaul at users.sourceforge.net
Fri Mar 19 09:17:09 CET 2004


Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28206/koha-tmpl/intranet-tmpl/default/fr/acqui.simple

Modified Files:
      Tag: rel_2_0
	addbiblio.tmpl additem-nomarc.tmpl additem.tmpl 
	marcimport.tmpl 
Log Message:


Index: addbiblio.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/addbiblio.tmpl,v
retrieving revision 1.10.2.4
retrieving revision 1.10.2.5
diff -C2 -r1.10.2.4 -r1.10.2.5
*** addbiblio.tmpl	10 Feb 2004 14:06:18 -0000	1.10.2.4
--- addbiblio.tmpl	19 Mar 2004 08:17:07 -0000	1.10.2.5
***************
*** 440,443 ****
--- 440,444 ----
  
  <script LANGUAGE="JavaScript">
+ function _(s) { return s } // dummy function for gettext
  function active(numlayer)
  {
***************
*** 501,508 ****
  	var alertString2;
  	if (total_errors!=0) {
! 		alertString2 = "Form not submitted because sur the following problem(s)\n";
! 		alertString2 += "------------------------------------------------------------------------------------\n\n";
! 		alertString2 += "- "+ total_missing_mandatory_tags +" mandatory tags empty\n";
! 		alertString2 += "- "+ total_missing_mandatory_subfields +" mandatory fields empty (see bold subfields)";
  		alert(alertString2);
  	} else {
--- 502,509 ----
  	var alertString2;
  	if (total_errors!=0) {
! 		alertString2  = _("Form not submitted because sur the following problem(s)");
! 		alertString2 += "\n------------------------------------------------------------------------------------\n";
! 		alertString2 += "\n- "+ total_missing_mandatory_tags +_(" mandatory tags empty");
! 		alertString2 += "\n- "+ total_missing_mandatory_subfields +_(" mandatory fields empty (see bold subfields)");
  		alert(alertString2);
  	} else {
***************
*** 531,535 ****
  		}
  	}
! 	newin=window.open("../z3950/search.pl?bibid=<!-- TMPL_VAR name="bibid" -->"+strQuery,"z3950search",'width=500,height=400,toolbar=false,scrollbars=oui');
  }
  
--- 532,536 ----
  		}
  	}
! 	newin=window.open("../z3950/search.pl?bibid=<!-- TMPL_VAR name="bibid" -->"+strQuery,"z3950search",'width=500,height=550');
  }
  

Index: additem-nomarc.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem-nomarc.tmpl,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -r1.1.2.4 -r1.1.2.5
*** additem-nomarc.tmpl	10 Feb 2004 14:06:18 -0000	1.1.2.4
--- additem-nomarc.tmpl	19 Mar 2004 08:17:07 -0000	1.1.2.5
***************
*** 174,178 ****
  <tr valign="top">
  <td>LCCN:</td>
! <td><input name="lccn" size="40"</td>
  </tr>
  <tr valign="top">
--- 174,178 ----
  <tr valign="top">
  <td>LCCN:</td>
! <td><input name="lccn" size="40"></td>
  </tr>
  <tr valign="top">

Index: additem.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem.tmpl,v
retrieving revision 1.5.2.5
retrieving revision 1.5.2.6
diff -C2 -r1.5.2.5 -r1.5.2.6
*** additem.tmpl	19 Feb 2004 10:26:07 -0000	1.5.2.5
--- additem.tmpl	19 Mar 2004 08:17:07 -0000	1.5.2.6
***************
*** 82,85 ****
--- 82,86 ----
  </form>
  <script LANGUAGE="JavaScript">
+ function _(s) { return s } // dummy function for gettext
  function active(numlayer)
  {
***************
*** 114,120 ****
  		document.f.submit();
  	} else {
! 		alertString2 = "Form not submitted because sur the following problem(s)\n";
! 		alertString2 += "------------------------------------------------------------------------------------\n\n";
! 		alertString2 += "- "+ total_errors+" mandatory fields empty (see bold subfields)";
  		alert(alertString2);
  	}
--- 115,121 ----
  		document.f.submit();
  	} else {
! 		alertString2  = _("Form not submitted because sur the following problem(s)");
! 		alertString2 += "\n------------------------------------------------------------------------------------\n";
! 		alertString2 += "\n- "+ total_errors+_(" mandatory fields empty (see bold subfields)");
  		alert(alertString2);
  	}
***************
*** 129,133 ****
  
  function confirm_deletion(bibid,itemnum) {
! 	var is_confirmed = confirm('Do you confirm item deletion ?');
  	if (is_confirmed) {
  	window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum;
--- 130,134 ----
  
  function confirm_deletion(bibid,itemnum) {
! 	var is_confirmed = confirm(_('Do you confirm item deletion?'));
  	if (is_confirmed) {
  	window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum;

Index: marcimport.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/marcimport.tmpl,v
retrieving revision 1.2.2.4
retrieving revision 1.2.2.5
diff -C2 -r1.2.2.4 -r1.2.2.5
*** marcimport.tmpl	10 Feb 2004 14:06:18 -0000	1.2.2.4
--- marcimport.tmpl	19 Mar 2004 08:17:07 -0000	1.2.2.5
***************
*** 22,26 ****
  	<li>Sélectionner un fichier à importer dans le réservoir. Il sera analysé et pour chaque ISBN trouvé, une entrée enfant sera créée dans le réservoir.</li>
  	<li>Si un ISBN existe déjà dans le réservoir, vous pouvez soit ignorer le nouveau, soit écrire par dessus l'ancien.</li>
! 	<li>Vous pouvez nommer ce fichier d'importation. Cela peut servir lors de la création de notice biblio pour se souvenir d'où viennent les données MARC par défaut.</li>
  	<li>Si l'ISBN existe déjà dans la base active, la notice biblio sera ignorée.</li>
  </ul>
--- 22,26 ----
  	<li>Sélectionner un fichier à importer dans le réservoir. Il sera analysé et pour chaque ISBN trouvé, une entrée enfant sera créée dans le réservoir.</li>
  	<li>Si un ISBN existe déjà dans le réservoir, vous pouvez soit ignorer le nouveau, soit écrire par dessus l'ancien.</li>
! 	<li>Vous pouvez nommer ce fichier d'importation. Cela peut servir lors de la création de notices biblio pour se souvenir d'où viennent les données MARC par défaut.</li>
  	<li>Si l'ISBN existe déjà dans la base active, la notice biblio sera ignorée.</li>
  </ul>





More information about the Koha-cvs mailing list