From 2aa689c34b7fa0f2f2799b869a50e32d7ea44714 Mon Sep 17 00:00:00 2001 From: tipaul Date: Thu, 2 Sep 2004 16:32:18 +0000 Subject: [PATCH] french OPAC for 2.2 --- koha-tmpl/opac-tmpl/css/fr/includes/basket.js | 357 ++++++++++++++++++ .../opac-tmpl/css/fr/includes/marc-editor.css | 44 +++ .../css/fr/includes/opac-basket-menu.inc | 6 +- .../css/fr/includes/opac-basket-top.inc | 16 +- .../opac-tmpl/css/fr/includes/opac-bottom.inc | 6 +- .../opac-tmpl/css/fr/includes/opac-top.inc | 31 +- koha-tmpl/opac-tmpl/css/fr/includes/opac.css | 95 ++++- koha-tmpl/opac-tmpl/css/fr/kohaerror.tmpl | 6 +- .../opac-tmpl/css/fr/opac-ISBDdetail.tmpl | 16 + .../opac-tmpl/css/fr/opac-MARCdetail.tmpl | 251 ++++++++++++ koha-tmpl/opac-tmpl/css/fr/opac-account.tmpl | 10 +- koha-tmpl/opac-tmpl/css/fr/opac-auth.tmpl | 20 +- koha-tmpl/opac-tmpl/css/fr/opac-basket.tmpl | 34 +- koha-tmpl/opac-tmpl/css/fr/opac-detail.tmpl | 95 +++-- koha-tmpl/opac-tmpl/css/fr/opac-main.tmpl | 43 ++- .../opac-tmpl/css/fr/opac-moredetail.tmpl | 126 +++---- koha-tmpl/opac-tmpl/css/fr/opac-reserve.tmpl | 90 ++--- koha-tmpl/opac-tmpl/css/fr/opac-search.tmpl | 178 +++++++-- .../opac-tmpl/css/fr/opac-searchresults.tmpl | 230 +++++------ .../opac-tmpl/css/fr/opac-sendbasket.tmpl | 42 +-- .../opac-tmpl/css/fr/opac-sendbasketform.tmpl | 10 +- .../opac-tmpl/css/fr/opac-serial-issues.tmpl | 84 +++++ koha-tmpl/opac-tmpl/css/fr/opac-shelves.tmpl | 160 ++++++++ .../opac-tmpl/css/fr/opac-suggestions.tmpl | 150 ++++++++ koha-tmpl/opac-tmpl/css/fr/opac-user.tmpl | 91 +++-- .../opac-tmpl/css/fr/opac-userupdate.tmpl | 24 +- koha-tmpl/opac-tmpl/css/fr/subject.tmpl | 24 +- 27 files changed, 1758 insertions(+), 481 deletions(-) create mode 100644 koha-tmpl/opac-tmpl/css/fr/includes/basket.js create mode 100644 koha-tmpl/opac-tmpl/css/fr/includes/marc-editor.css create mode 100644 koha-tmpl/opac-tmpl/css/fr/opac-ISBDdetail.tmpl create mode 100644 koha-tmpl/opac-tmpl/css/fr/opac-MARCdetail.tmpl create mode 100644 koha-tmpl/opac-tmpl/css/fr/opac-serial-issues.tmpl create mode 100644 koha-tmpl/opac-tmpl/css/fr/opac-shelves.tmpl create mode 100644 koha-tmpl/opac-tmpl/css/fr/opac-suggestions.tmpl diff --git a/koha-tmpl/opac-tmpl/css/fr/includes/basket.js b/koha-tmpl/opac-tmpl/css/fr/includes/basket.js new file mode 100644 index 0000000000..8184dbe9f3 --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/fr/includes/basket.js @@ -0,0 +1,357 @@ +////////////////////////////////////////////////////////////////////////////// +// BASIC FUNCTIONS FOR COOKIE MANGEMENT // +////////////////////////////////////////////////////////////////////////////// + +var CGIBIN = "/cgi-bin/koha/"; + + +var nameCookie = "bib_list"; +var valCookie = readCookie(nameCookie); + +if(valCookie){ + var arrayRecords = valCookie.split("/"); + if(arrayRecords.length > 0){ + var basketcount = " ("+(arrayRecords.length-1)+")"; + } else { + var basketcount = ""; + } +} else { + var basketcount = ""; +} + +function writeCookie(name, val, wd) { + if (wd) { + parent.opener.document.cookie = name + "=" + val; + } + else { + parent.document.cookie = name + "=" + val; + } +} + +function readCookieValue (str, val_beg) { + var val_end = str.indexOf(";", val_end); + if (val_end == -1) + val_end = str.length; + return str.substring(val_beg, val_end); +} + +function readCookie(name, wd) { + var str_name = name + "="; + var str_len = str_name.length; + var str_cookie = ""; + if (wd) { + str_cookie = parent.opener.document.cookie; + } + else { + str_cookie = parent.document.cookie; + } + var coo_len = str_cookie.length; + var i = 0; + + while (i < coo_len) { + var j = i + str_len; + if (str_cookie.substring(i, j) == str_name) + return readCookieValue(str_cookie, j); + i = str_cookie.indexOf(" ", i) + 1; + if (i == 0) + break; + } + + return null; +} + +function delCookie(name) { + var exp = new Date(); + exp.setTime(exp.getTime()-1); + parent.opener.document.cookie = name + "=null; expires=" + exp.toGMTString(); +} + + +/////////////////////////////////////////////////////////////////// +// SPECIFIC FUNCTIONS USING COOKIES // +/////////////////////////////////////////////////////////////////// + +function openBasket() { + var strCookie = ""; + + var nameCookie = "bib_list"; + var valCookie = readCookie(nameCookie); + if (valCookie) { + strCookie = nameCookie + "=" + valCookie; + } + + if (strCookie) { + var iW = 620; + var iH = 450; + + var optWin = "dependant=yes,status=yes,scrollbars=yes,resizable=yes,toolbar=yes,height="+iH+",width="+iW; + var loc = CGIBIN + "opac-basket.pl?" + strCookie; + var basket = open(loc, "basket", optWin); + } + else { + alert(MSG_BASKET_EMPTY); + } +} + + +function addRecord(val, selection) { + var nameCookie = "bib_list"; + var valCookie = readCookie(nameCookie); + var write = 0; + + if ( ! valCookie ) { // empty basket + valCookie = val + '/'; + write = 1; + updateBasket(1,document); + } + else { + // is this record already in the basket ? + var found = false; + var arrayRecords = valCookie.split("/"); + + for (var i = 0; i < valCookie.length - 1; i++) { + if (val == arrayRecords[i]) { + found = true; + break; + } + } + + if ( found ) { + if (selection) { + return 0; + } + alert(MSG_RECORD_IN_BASKET); + } + else { + valCookie += val + '/'; + write = 1; + updateBasket(arrayRecords.length,document); + } + } + + if (write) { + writeCookie(nameCookie, valCookie); + if (selection) { // when adding a selection of records + return 1; + } + alert(MSG_RECORD_ADDED); + } +} + + +function addMultiple(){ + var c_value = ""; + if(document.myform.bibid.length > 0) { + for (var i=0; i < document.myform.bibid.length; i++) { + if (document.myform.bibid[i].checked) { + c_value = c_value + document.myform.bibid[i].value + "/"; + } + } + addSelRecords(c_value); + } +} + + +function addSelRecords(valSel) { // function for adding a selection of biblios to the basket + // from the results list + var arrayRecords = valSel.split("/"); + var i = 0; + var nbAdd = 0; + for (i=0;i nbAdd) { + msg = nbAdd+" "+MSG_NRECORDS_ADDED+", "+(i-nbAdd)+" "+MSG_NRECORDS_IN_BASKET; + } + else { + msg = nbAdd+" "+MSG_NRECORDS_ADDED; + } + } + else { + if (i < 1) { + msg = MSG_NO_RECORD_SELECTED; + } + else { + msg = MSG_NO_RECORD_ADDED+" ("+MSG_NRECORDS_IN_BASKET+") !"; + } + } + alert(msg); +} + + +function selRecord(num, status) { + var str = document.myform.records.value + if (status){ + str += num+"/"; + } + else { + str = delRecord(num, str); + } + + document.myform.records.value = str; +} + + +function delSelRecords() { + var recordsSel = 0; + var end = 0; + var nameCookie = "bib_list"; + var valCookie = readCookie(nameCookie, 1); + + if (valCookie) { + var str = document.myform.records.value; + if (str.length > 0){ + recordsSel = 1; + var str2 = valCookie; + while (!end){ + s = str.indexOf("/"); + if (s>0){ + num = str.substring(0, s) + str = delRecord(num,str); + str2 = delRecord(num,str2); + } else { + end = 1; + } + } + + if (str2.length == 0) { // equivalent to emptying the basket + var rep = false; + rep = confirm(MSG_CONFIRM_DEL_BASKET); + if (rep) { + delCookie(nameCookie); + document.location = "about:blank"; + updateBasket(0,top.opener.document); + window.close(); + } else { + return; + } + } else { + writeCookie(nameCookie, str2, 1); + } + } + } + + if (recordsSel) { + var strCookie = ""; + var nameCookie = "bib_list"; + var valCookie = readCookie(nameCookie, 1); + strCookie = nameCookie + "=" + valCookie; + var arrayRecords = valCookie.split("/"); + updateBasket(arrayRecords.length-1,top.opener.document); + document.location = CGIBIN + "opac-basket.pl?" + strCookie; + } + else { + alert(MSG_NO_RECORD_SELECTED); + } +} + + +function delRecord (n, s) { + var re = /\d/; + var aux = s; + var found = 0; + var pos = -1; + + while (!found) { + pos = aux.indexOf(n, pos+1); + var charAfter = aux.charAt(pos+n.length); // character right after the researched string + if (charAfter.match(re)) { // record number inside another one + continue; + } + else { // good record number + aux = s.substring(0, pos)+ s.substring(pos+n.length+1, s.length); + s = aux; + found = 1; + } + } + + return s; +} + + +function delBasket() { + var nameCookie = "bib_list"; + + var rep = false; + rep = confirm(MSG_CONFIRM_DEL_BASKET); + if (rep) { + delCookie(nameCookie); + document.location = "about:blank"; + updateBasket(0,top.opener.document); + window.close(); + } +} + + +function quit() { + if (document.myform.records.value) { + var rep = false; + rep = confirm(MSG_CONFIRM_DEL_RECORDS); + if (rep) { + delSelRecords(); + } + } + updateBasket(arrayRecords.length-1,top.opener.document); + window.close(); +} + +function sendBasket() { + var nameCookie = "bib_list"; + var valCookie = readCookie(nameCookie); + var strCookie = nameCookie + "=" + valCookie; + + var loc = CGIBIN + "opac-sendbasket.pl?" + strCookie; + + var optWin="dependant=yes,scrollbars=no,resizable=no,height=300,width=400,top=50,left=100"; + var win_form = open(loc,"win_form",optWin); +} + +function printBasket() { + var loc = document.location + "&print=1"; + document.location = loc; +} + +function showMore() { + var strCookie = ""; + + var nameCookie = "bib_list"; + var valCookie = readCookie(nameCookie); + if (valCookie) { + strCookie = nameCookie + "=" + valCookie; + } + var loc = CGIBIN + "opac-basket.pl?" + strCookie + "&verbose=1"; + document.location = loc; +} + +function showLess() { + var strCookie = ""; + + var nameCookie = "bib_list"; + var valCookie = readCookie(nameCookie); + if (valCookie) { + strCookie = nameCookie + "=" + valCookie; + } + var loc = CGIBIN + "opac-basket.pl?" + strCookie + "&verbose=0"; + document.location = loc; +} + +function updateBasket(updated_value,target) { + if(typeof document.getElementById != "undefined") { + target.getElementById('basket').innerHTML = " ("+updated_value+")"; + } else if (typeof document.layers != "undefined") { + target.layers['basket'].open(); + target.layers['basket'].write(" ("+updated_value+")"); + target.layers['basket'].close(); + } else if(typeof document.all != "undefined" && typeof +document.getElementById == "undefined") { + target.all['basket'].innerHTML = " ("+updated_value+")"; + } +} \ No newline at end of file diff --git a/koha-tmpl/opac-tmpl/css/fr/includes/marc-editor.css b/koha-tmpl/opac-tmpl/css/fr/includes/marc-editor.css new file mode 100644 index 0000000000..08cde79cc4 --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/fr/includes/marc-editor.css @@ -0,0 +1,44 @@ +div.tabs { + width:10px; + position:absolute; + display:block; + margin-left:50px; + margin-top:150px; +} + +div.tabs a { + display:block; + font-size: small; + border: thin solid black; + margin-right: 2px; + padding: 10px 10px; + -moz-border-radius: 5px 0px 0px 5px; +} + +div.tab { + background-color: #ACE6E6; + display: block; + visibility:hidden; + position:absolute; + margin-left:72px; + margin-top:150px; + margin-right:10%; +} +td { + border:0px; +} + +.MARCtag { /* style for tag definition (700 - Statement of responsability) */ + font-weight:bold; + color:#FF6600; + background-color:FFFFFF; + background-image:none; + border-bottom: thin solid #FF6600; + margin-right:30%; +} + +.labelsubfield { /* style for each subfield (like : a Publication year), just before the biblio subfield */ + float:left; + width: 12em; + margin-left:30px; +} diff --git a/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-menu.inc b/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-menu.inc index 7343995705..afba4f9bb2 100644 --- a/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-menu.inc +++ b/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-menu.inc @@ -1,13 +1,13 @@ diff --git a/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-top.inc b/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-top.inc index 4f7e9afd32..142c49ae43 100644 --- a/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-top.inc +++ b/koha-tmpl/opac-tmpl/css/fr/includes/opac-basket-top.inc @@ -2,16 +2,14 @@ - - - Panier de notices OPAC - /includes/opac.css"> - + Panier + /includes/opac.css"> + diff --git a/koha-tmpl/opac-tmpl/css/fr/includes/opac-bottom.inc b/koha-tmpl/opac-tmpl/css/fr/includes/opac-bottom.inc index c18217f17d..46c9e78c56 100644 --- a/koha-tmpl/opac-tmpl/css/fr/includes/opac-bottom.inc +++ b/koha-tmpl/opac-tmpl/css/fr/includes/opac-bottom.inc @@ -1,12 +1,12 @@

- Connecté en tant que Accueil lecteur - || Déconnecter + Connecté en tant que Accueil Membre + || Déconnection

- S'identifier à Koha + Se connecter à Koha

diff --git a/koha-tmpl/opac-tmpl/css/fr/includes/opac-top.inc b/koha-tmpl/opac-tmpl/css/fr/includes/opac-top.inc index 22e27a4249..7cb1933294 100644 --- a/koha-tmpl/opac-tmpl/css/fr/includes/opac-top.inc +++ b/koha-tmpl/opac-tmpl/css/fr/includes/opac-top.inc @@ -5,29 +5,30 @@ /includes/opac.css" /> <!--TMPL_VAR name="LibraryName"--> - - + + diff --git a/koha-tmpl/opac-tmpl/css/fr/includes/opac.css b/koha-tmpl/opac-tmpl/css/fr/includes/opac.css index a86cf5ed71..562d35fbd3 100644 --- a/koha-tmpl/opac-tmpl/css/fr/includes/opac.css +++ b/koha-tmpl/opac-tmpl/css/fr/includes/opac.css @@ -20,11 +20,25 @@ a.transparent { } a:hover { - background-color: #FF6600; +/* background-color: #FF6600; */ + background-image: url(/opac-tmpl/css/en/images/bar.gif); + background-repeat:no-repeat; text-decoration:none; color:#000000; } +a.results { + background-color : #FFD9BF; + padding : 0px 2px 0px 2px; + margin : 2px 1px 2px 0px; +} + +a.results:hover { + background-color: #FFFFCC; + padding : 0px 2px 0px 2px; + margin : 2px 1px 2px 0px; +} + label { float:left; width: 10em; @@ -33,8 +47,14 @@ label { img { border-width:0px; text-align:left; + position:absolute; } +.relative { /* for images in relative position */ + border-width:5px; + text-align:left; + position:relative; +} h1 { color:#FFD9BF; @@ -54,17 +74,31 @@ h1 { font-weight:bold; font-size: 150%; text-align:center; - vertical-align:top; padding: 2px; border: 4px inset #FF6600; width:75%; } +.SmallLibraryName { + color:#FFD9BF; + background-color:transparent; + font-weight:bold; + font-size: 115%; + text-align : center; + vertical-align:top; + padding: 2px; + width:100%; + margin-left:70px; +} + h2 { color:#FFD9BF; - background-color:#FF6600; +/* background-color:#FF6600; */ + background-image: url(/opac-tmpl/css/en/images/bar.gif); + background-repeat:no-repeat; font-weight:bold; font-size: 125%; + margin: 0px 0px 10px 0px; } p { @@ -106,6 +140,7 @@ th { td { font-size:10pt; border-left:1px solid #000000; + vertical-align:top; } /* hilighted cell */ @@ -113,6 +148,7 @@ td.hilighted { font-size:10pt; border-left:1px solid #000000; background-color:#ffffcc; + vertical-align:top; } /* FORMS */ @@ -129,6 +165,7 @@ td.hilighted { border-radius: 6px; -moz-border-radius: 6px; background-color:#FFD9BF; + margin : 3px 3px 3px 0px; } .button:hover { @@ -143,11 +180,15 @@ td.hilighted { border-radius: 6px; -moz-border-radius: 6px; background-color:#FF6600; + background-image: url(/opac-tmpl/css/en/images/bar.gif); + background-repeat:no-repeat; + margin : 3px 3px 3px 0px; } input { border:0px; border-bottom:1px solid #000000; + margin-bottom:2px; background-color:#009999; } @@ -157,12 +198,31 @@ input:hover { background-color:#FF6600; } +textarea { + border:0px; + border-bottom:1px solid #000000; + background-color:#009999; +} + +textarea:hover { + border:0px; + border-bottom:1px solid #000000; + background-color:#FF6600; +} + select { - background-color: #ACE6E6; - text-decoration:none; - color:#000000; + border:0px; + border-bottom:1px solid #000000; + background-color:#009999; } +select:hover { + border:0px; + border-bottom:1px solid #000000; + background-color:#FF6600; +} + + /* span classes */ /* used to show small 1,2,3, to reach other pages when too much results */ .smallnumber { @@ -221,7 +281,7 @@ select { } /* used in members */ -#bloc20 { +#bloc20, .bloc20 { float:left; width:30%; border:0; @@ -229,7 +289,7 @@ select { margin-right:20px; margin-bottom:20px; } -#bloc60 { +#bloc60, .bloc60 { float:left; width:60%; border:0; @@ -257,16 +317,25 @@ select { border:1px solid #000000; padding-left:10pt; padding-right:10pt; - float:left; +/* float:left; */ margin-bottom:10px; -moz-border-radius: 6px; } + #menuline { +/* width:100%; + vertical-align:top;*/ + float:left; +/* position:relative;*/ + display:block; +} + +#bibliomenu { + position: relative; + float:left; + display:block; + margin-left:10%; width:100%; - height:200%; - vertical-align:top; - float:none; - position:relative; } /* a little spacer. should not be used */ diff --git a/koha-tmpl/opac-tmpl/css/fr/kohaerror.tmpl b/koha-tmpl/opac-tmpl/css/fr/kohaerror.tmpl index 4050273894..b3fc71e878 100644 --- a/koha-tmpl/opac-tmpl/css/fr/kohaerror.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/kohaerror.tmpl @@ -2,11 +2,11 @@
- +
- +
- +
Une erreur s'est produite
diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-ISBDdetail.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-ISBDdetail.tmpl new file mode 100644 index 0000000000..bc3d771ed3 --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/fr/opac-ISBDdetail.tmpl @@ -0,0 +1,16 @@ + +/includes/marc-editor.css"> + + +
+

ISBD :

+
+ + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-MARCdetail.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-MARCdetail.tmpl new file mode 100644 index 0000000000..b113b30b63 --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/fr/opac-MARCdetail.tmpl @@ -0,0 +1,251 @@ + +/includes/marc-editor.css"> + + +
+ +
0
+ + +
1
+ + +
2
+ + +
3
+ + +
4
+ + +
5
+ + +
6
+ + +
7
+ + +
8
+ + +
9
+ + I
t
e
m
s
+
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+ +

+ +

+ +

+ + +

+ + +
+ +
+

documents

+ + + + + + + + + + + +
+ +
+
+ + + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-account.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-account.tmpl index 97e6259794..b0596ba62d 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-account.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-account.tmpl @@ -2,13 +2,13 @@
-

Compte de

+

Compte

- - - + + + @@ -31,7 +31,7 @@ - + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-auth.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-auth.tmpl index 6477b09282..faf179c472 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-auth.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-auth.tmpl @@ -2,35 +2,35 @@
-

Désolé, je pense que vous n'avez pas les permissions suffisantes.

+

Désolé, Koha ne pense pas que vous pouvez accéder à cette page

- -

Déconnecté. Identifiez vous à nouveau.

+ +

Désolé, votre session a expiré, merci de vous reconnecter

-

Vous avez changé d'adresse IP. Identifiez vous à nouveau

+

Vous accédez déjà à Koha à partir d'une autre adresse IP ! Merci de vous reconnecter

-

Identifiant ou mot de passe erroné. Essayez encore.

+

Vous avez saisi un nom de membre ou un mot de document invalide, merci de réessayer

- +
" method="post"> -

Identifiant Koha

-

-

+

Identification

+

+

- + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-basket.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-basket.tmpl index c31f06cb45..1f4ea576fe 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-basket.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-basket.tmpl @@ -20,29 +20,29 @@
Dettes & paiementsQuantitéDoit encoreAmendes et chargesMontantDettes
Total dûSomme due  
- (record ) + (enregistrement )
- ISBN:">
- Sous-titre:
- Auteur: ">
- Autres auteurs:
- Publié par : - en + ISBN:
+ sous-titre:
+ Auteur :
+ Auteurs supplémentaires:
+ publié par : + dans , ,
- Collection:
- Sujet:
- Année :
- Notes:
- Titre unifié:
- Périodique:
- Dewey: ">
- Classification:
- LCCN:
- URL: ">
+ Collection:
+ Sujet:
+ Tous droits réservés année:
+ Remarques:
+ Uniform title:
+ Serial:
+ Dewey:
+ Cote:
+ LCCN:
+ URL:
diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-detail.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-detail.tmpl index 7c7be13d54..0354f513e6 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-detail.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-detail.tmpl @@ -1,58 +1,102 @@ +/includes/marc-editor.css"> + + +

+

- (record ) + (enregistrement )
Sous-titre: - Auteur: ">
- Autres auteurs:
+ Auteur :
+ Auteurs Supplémentaires:
Publié par : - en + dans , ,
- ISBN:
- Collection:
- Sujet:
+ ISBN :
+ Collection :
+ Sujet : + + ">, +
Année :
- Notes:
- Titre unifié:
- Dewey:
+ Remarques:
+ Titre uniforme : %s
+ code Dewey :
URL: ">
- Nombre total d'exemplaires: + Type de document :
+ Nombre Total de documents
+ + + + + + + + + + + + + +
Detailed notes: +
    + + -
    + +
+
Related links: + +
- + - - - - + + - - - + @@ -61,7 +105,7 @@ - + @@ -69,12 +113,11 @@
ExemplaireDocument
typeclasse Localisationdate retourvu en dernierDate de retourVu pour la dernière fois code barre
() ()
Site webSite Web En ligne Disponible  
-

- - ">Reserver    - - ')">Ajouter au panier -

+ +

+ This is a serial subscription. You can see which " class="button catalogue" title="Serial issues"> Issues we have and don't have +

+
diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-main.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-main.tmpl index 794d9218a1..edfc3152bf 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-main.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-main.tmpl @@ -9,39 +9,58 @@
- koha + Koha
-

+

Chercher dans le catalogue

-
+

+ -
+ + + + +

- Recherche avancée, plus d'options + Recherche Avancée, Plus d'Options

Acquisitions récentes

- acquis dans les derniers jours + acquis dans les derniers jours

+

Autres options

+ + Etagères virtuelles + + + Voir et gérer les suggestions + -

Connecté en tant que

-

Accueil lecteur || Déconnecter

+ accueil Déconnexion +
+ + +
+ -

S'identifier

+

Connectez-vous à Koha

diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-moredetail.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-moredetail.tmpl index f55d3e3dd2..e5a9a2dfc7 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-moredetail.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-moredetail.tmpl @@ -3,97 +3,83 @@
- - -&type=intra> -()

+"> + + +

&type=intra"> ()

-

-> -> - - - - - - -
GROUPE
- - + +"> +"> + + + + + + +Size:
+Remarques:
+No. of Items: +
GROUP -
+ +
- -Numéro notice ::
-Type d'ouvrage ::
+Biblionumber:
+Item Type:
URL:
-Durée prêt:
-Coût du prêt:
+Loan Length:
+Rental Charge:
Classification:
ISBN:
-Editions:
-Placer:
+Publisher:
+Place:
Date:
Volume:
Pages:
Illus:
-Taille:
-Notes:
-N° ouvrage: -
-
- - - - - - -
  • +
  • " />
  • - Qui sera retiré à + Qui doit être récupéré à
    - + " /> -

    Il y aura des frais de réservation de $

    +

    pour la réservation'>Notez qu'il y aura un coût de pour la réservation

    - - + + \ No newline at end of file diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-search.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-search.tmpl index 8a9425b9b9..b751fcbfbd 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-search.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-search.tmpl @@ -1,35 +1,151 @@ - - +
    -

    Recherche avancée

    -
    -
      -
    • -
    -

    OU :

    -
      -
    • -
    -

    OU un ou plus de : :

    -
      -
    • -
    • -
    • -
    • - + " /> + + + + + + +

      +

      + + + + + + +

      +

      + + + + + +

      +

      + + + + + + +

      +

      + + + + + + +

      +

      + + + + + + +

      +

      + +

      +
    +
    +

    Autres options

    +

    + + + + + + +

    +

    + + + + + + +

    +

    + + + + + + +

    +

    + + + + + + +

    +

    Réponses par page + +

    +

    Commandé par + - -

  • - -

    qui utilise Normal ou Recherche exacte

    +

    +

     

    +

     

    +
    + + + - + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-searchresults.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-searchresults.tmpl index e47911eda4..0f289fe010 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-searchresults.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-searchresults.tmpl @@ -1,150 +1,128 @@
    -

    Recherche effectuée sur

    +

    Recherche sur . réponses trouvées

    -

    acquis dans les derniers jours

    +

    acquis dans les derniers jours. réponses

    -

    Vous n'avez pas spécifié de critère

    +

    Vous n'avez précisé aucun critère de recherche

    -

    Réponses trouvées

    -

    - - - << - -   - - - -   - - &=" class="smallnumber"> - -   - - - - &=">>> - -   - -

    -

     

    - - - - -
    CODE BARRE -
    -
    + + + + + + +
    BARCODE
    + > > > - - + +
    - -Annexe propriétaire:
    -Vu:
    -Dernier prêt:
    -En prêt \? -Dernier emprunteur 1:
    -Dernier emprunteur 2:
    -Annexe:
    -Coût de remplacement:
    -Ouvrage perdu:
    -Payé pour ::
    -Notes:
    -Renouvellements:
    -&biblio=&invoice=&catview=yes"> -Accession -Date:
    -Annul\?:
    +Home Branch:
    +Last seen:
    +Last borrowed:
    +on issue bit +Last Borrower 1:
    +Last Borrower 2:
    +Current Branch:
    +Replacement Price:
    +Item lost:
    +Paid for:
    +Remarques:
    +Renewals:
    +&biblio=&invoice=&catview=yes"> Accession Date:
    +Cancelled:
    &bi=&itm=>Total -Issues:
    -Groupe numéro:
    -Notice biblio ::
    - - +href=/cgi-bin/koha/bookcount.pl?&bib=&bi=&itm=>Total Issues:

    +Group Number:
    +Biblio number:
    -
    -
    diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-reserve.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-reserve.tmpl index d0325a5200..955a91c13d 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-reserve.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-reserve.tmpl @@ -1,85 +1,91 @@
    -

    Page de réservation pour (, N°)

    +

    Page des réservations pour (,)

    -

    Impossible de réserver parce que

    +

    Impossible d'établir la réservation parce que

      -
    • Vous devez
    • -
    • you cannot make more than reserves.
    • -
    • Vous avez déjà placé une réservation sur cet exemplaire
    • -
    • Vous devez sélectionner au moins 1 type
    • -
    • Vous devez sélectionner une annexe ou retirer l'ouvrage
    • +
    • vous devez
    • +
    • vous ne pouvez faire plus de réservations
    • +
    • Vous avez déjà une réservation en cours pour ce document
    • +
    • Vous devez sélectionner au moins un type de document !
    • +
    • vous devez saisie un site de retrait !
    -

    Il y a Réservations déjà faites sur cet ouvrage

    -

    Sélectionnez les types d'ouvrages souhaités. Le premier disponible sera gardé pour vous.

    +

    Il y a déjà réservations pour ce document

    +

    Please select which item types are ok for you. The first of these item that matches one of these types that becomes available will be set kept for you.

    -
    - - "> - + + + " /> +
    - - - + + + - + - +
    ReserverType d'ouvrage :CopiesRequèteType de documentsExemplaires
    " checked="checked" /> Non réservableNe peut être Réservé
    -

    Sélectionnez l'annexe ou vous prendrez l'ouvrage:

    -

    Réserver à cette date :: - - - +

    Merci de sélectionner le site où vous souhaitez récupérer le ***

    +

    Réserver à cette date : + + +

    -

    Annuler réservation à cette date: - - - +

    Annuler la réservation le : + + +

    - -
    + + -

    Confirmez que vous souhaitez réserver un ouvrage ::

    +

    Merci de confirmer que vous souhaitez demander un document de ces types

    -
    - - - - + + + " /> + " /> + " />
      -
    - /images/background-opac.gif"> - - - - - - + results found

    --> + /images/background-opac.gif"> - + + + + +
    Sujet
    -   + + &=&&resultsperpage=&orderby=&type=intranet&op=do_search">Suivant >> + +

    +

    + +  Réponses à sur + + Pas de résultats + +

    + + + +
    + + + + + + + + + + + + class="hilighted">"> + + + + -
    SommaireNombre de documentsLocalisation 
    class="hilighted"> +

    +

    ">

    +

    + - + ; + - + : + ; +

    +
    class="hilighted"> + + class="hilighted"> + + () + + class="hilighted"> + + ">Requète + + Non Réservable +
    + +
    + + &=&resultsperpage=&orderby=&type=intranet&op=do_search"><< + +   + +   + + &=&&resultsperpage=&orderby=&type=intranet&op=do_search">Suivant >>> + +   + +
    + +

    + Réponses à sur réponses. +

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    TitreAuteur©Nombre d'ouvragesLocalisation 
    classe="hilighted"> - "> - classe="hilighted"> - "> - class="hilighted"> - - class="hilighted"> - - classe="hilighted"> - - classe="hilighted"> - - ">Reserver - - Non réservable - -
    +   + + + =&resultsperpage=&orderby=&type=intranet&op=do_search"> + + - &=">Next >>> - -   - -
    - - -

    - Résultats à de réponses -

    - -

    - - - << - -   - - - -   - - &="> - -   - - - - &=">>> - -   - -

    + &=&&resultsperpage=&orderby=&type=intranet&op=do_search">Suivant >> + +

    + -

    Désolé, aucun résultat !

    +

    Désolé, il n'y a aucun résultat

    - Essayez une autre chercher + Essayer une autre recherche

    diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-sendbasket.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-sendbasket.tmpl index 250e572fae..31797879c9 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-sendbasket.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-sendbasket.tmpl @@ -1,34 +1,34 @@ §SUBJECT§ -Votre panier de notices +Your biblio basket §END_SUBJECT§ §HEADER§ - Bonjour, -Voici les notices que vous avez mémorisées... +Hi, +Here is your biblio basket... §END_HEADER§ §FILENAME§ -panier.txt +basket.txt §END_FILENAME§ §MESSAGE§ - - (record ) -ISBN : -Sous-titre : -Auteur : -Autres auteurs : -Publié par : en , , -Collection : -Sujet : -Année : -Notes : -Titre unifié : -Périodique : -Dewey : -Classification : -LCCN : -URL : +--------------------------------------------- +(enregistrement ) +ISBN : +Sous-titre: +Auteur: +Auteurs supplémentaires: +Publié par : dans , , +Collection : +Sujet : +Date copyright : +Remarques : +Titre uniforme : +Bulletin : +Dewey: +Cote : +LCCN : +URL : --------------------------------------------- §END_MESSAGE§ diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-sendbasketform.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-sendbasketform.tmpl index 773e655b65..fb27c1e979 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-sendbasketform.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-sendbasketform.tmpl @@ -1,21 +1,21 @@
    -

    Envoi du panier

    +

    Envoyer le panier

    -

    Le panier a été envoyé à l'adresse :

    +

    Le panier a été envoyé à :

    -

    Problème lors de l'envoi du panier...

    +

    Problème lors de l'envoi du panier

    " method="post"> - + - +
    Adresse électronique
    adresse e-mail
     
    " />
    diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-serial-issues.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-serial-issues.tmpl new file mode 100644 index 0000000000..315ee7a5b3 --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/fr/opac-serial-issues.tmpl @@ -0,0 +1,84 @@ + + +
    +

    Bulletins

    +" class="button catalogue">Retour à la bibliothèque +
    +
    +

    Information de souscription pour

    +

    Débutant le et un numéro chaque + + jour + + + semaine + + + 2 semaines + + + 3 semaines + + + mois + + + 2 months + + + 3 months + + + trimestre + + + 2 trimestres + + + année + + + 2 ans + + + Le + + + Lundi + + + Mardi + + + Mercredi + + + Jeudi + + + Vendredi + + + Samedi + + + Dimanche + + + pour + prêts + mois + mois + + depuis +

    +

    +

    Bulletins

    +

    + +

    +
    + +
    + + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-shelves.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-shelves.tmpl new file mode 100644 index 0000000000..cff6777cef --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/fr/opac-shelves.tmpl @@ -0,0 +1,160 @@ + +
    + + + + + + + + + + + + + + + + + + + + + +
    + Contenu de +
    ">">">">
    +
    + Liste de l'étagère virtuelle + "> + + "> + + + + + +
    + "> + + "> + + + + + +
    + Ajouter un livre par saisie du code barre dans + + + + "> + +
    +
    + + + + +

    + + + +

    + + +

    +

    Rayons

    + + + + + + +
    +
    +

    + Liste de l'étagère virtuelle +

    +
    +
    +
    + + + + + + + + + + + + +
    Sélectionner les étagères virtuelles à supprimer +
    "> + "> + ( livres) +
    +

    +

    +

    +
    +
    + + + + + + + + +
    + Créer une étagère +
    +

    Nom :

    +

    Propriétaire ">

    +

    Catégorie +

    +

  • Une Ãéagère virtuelle privée est gérée par vous seul, et ne peut être vue que de vous.
  • +
  • public peut être vu par tous, mais géré uniquement par vous
  • +
  • libre peut être géré par n'importe quel utilisateur
  • +

    +
    +

    +
    +
    + + +
    + + + + + + + + + + +
    + Liste de l'étagère virtuelle +
    + + + + "> + ( livres) + +
    +

    + Créer ou Supprimer une (des) étagère(s) +

    + + +
    + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-suggestions.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-suggestions.tmpl new file mode 100644 index 0000000000..51c56cc98e --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/fr/opac-suggestions.tmpl @@ -0,0 +1,150 @@ + +
    + +

    Saisir une nouvelle suggestion

    +

    Fill this form to suggest the library a new acquisition. You will be mailed when the library treats you suggestion

    +

    No fields are mandatory. Fill whatever you know. The "Note" field can be used for whatever you want

    +
    + +

    +

    +

    +

    +

    +

    +

    +

    +

    +

    +
    + + + +

    Suggestions

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     TitreAuteur©EditeurEtatSuggéré parGéré parRemarque
    + Filter sur + + "> + + "> + +   + + "> + + + + + +   + + +
    + "> + class="hilighted"> + + class="hilighted"> + + class="hilighted"> + + class="hilighted"> + + class="hilighted"> + Demandé + Commandé par la bibliothèque + Suggestion rejetée : ne sera pas acheté + Disponible dans la bibliothèque + class="hilighted"> + , + class="hilighted"> + , + class="hilighted"> + +
    + +                
    +
    + + +
    +

    Note : if you ask suggestion done by anybody, the result will contain only new suggestions. Suggestions treated by a librarian will not be shown.

    + +
    + diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-user.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-user.tmpl index ba972de3ae..8d91bd5dc9 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-user.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-user.tmpl @@ -1,97 +1,96 @@ -/includes/opac-user.css">
    -
    -

    Nos informations sont-elles correctes \?

    -

    Carte lecteur:

    +
    +

    Are our records correct?

    +

    Carte de lecteur

    ()

    -

    ,

    (hm)

    -

    (wk)

    +

    ,

    +

    (maison)

    +

    (travail)

    -

    Quelque chose de changé : Mettre à jour

    +

    Something new: Update Record

    -
    +

    Vous avez des dettes de - Voir compte + Voir le compte

    -
    +

    Vous avez des dettes de

    - Voir compte + Voir le compte
    -
    +

    Vous avez un crédit de

    - Voir compte + Voir le compte
    -
    -

    Vous avez des réservations en attente:

    +
    +

    Des document réservés vous attendent :

      -
    • , pick up at:
    • +
    • , récupéré à
    -
    +
    - Vous avez ouvrages en cours de prêt
    - + Vous avez document en cours de prêt
    +
    - - - - - + + + + + - - - - - - - - + + + + + + + +
    Titre AuteurDate retourType d'ouvrageChargesPrêt
    Date de retourType de documentDettesPrêts en cours
    YesNoYesNo
    OuiNonOuiNon
    -

    Vous n'avez pas d'ouvrage en prêt

    +

    Vous n'avez pas de document en prêt

    -
    -

    Vous avez ouvrages réservés

    - - +
    +

    Vous avez document actuellement réservés

    +
    + - - + + - - - - - + + + + +
    Titre AuteurDate réservation
    Date de réservation
    -
    +
    diff --git a/koha-tmpl/opac-tmpl/css/fr/opac-userupdate.tmpl b/koha-tmpl/opac-tmpl/css/fr/opac-userupdate.tmpl index 4bd9eda064..e3cae51304 100644 --- a/koha-tmpl/opac-tmpl/css/fr/opac-userupdate.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/opac-userupdate.tmpl @@ -1,21 +1,21 @@
    -

    Modification informations lecteur

    -

    Changer le nécessaire
    -Vos changement n'apparaitront que lorsque la bibliothèque les aura validé

    +

    Member information change

    +

    Please change what's needed. An email will be sent to the library.
    +Vos modifications n'apparaîtront pas avant la validation de la bibliothèque

    -

    Nom:

    -

    Titre:

    -

    Prénom:

    -

    Adresse postale:

    -

    Ville:

    -

    Téléphone maison:

    -

    Tel bureau:

    -

    Mail:

    -

    +

    Nom :

    +

    Titre:

    +

    First name:

    +

    Adresse postale

    +

    Ville:

    +

    Téléphone domicile:

    +

    N° de téléphone/fax bureau

    +

    E-mail:

    +

    diff --git a/koha-tmpl/opac-tmpl/css/fr/subject.tmpl b/koha-tmpl/opac-tmpl/css/fr/subject.tmpl index aeab408292..71f0ad0416 100644 --- a/koha-tmpl/opac-tmpl/css/fr/subject.tmpl +++ b/koha-tmpl/opac-tmpl/css/fr/subject.tmpl @@ -3,38 +3,38 @@
    -/images/background-opac.gif> +/images/background-opac.gif"> - + -/images/background-opac.gif>/images/background-opac.gif">
    Sujet
    >
    +
     

    -Résultats à de réponses +Résultats à sur réponses
    - &=>/images/numbers/prev.gif border=0> + &="> + /images/numbers/prev.gif" border=0> + - /images/numbers/placeholder.gif border=0> + /images/numbers/placeholder.gif border=0> - /images/numbers/-highlight.gif> + /images/numbers/-highlight.gif"> - &=>/images/numbers/.gif border=0> + &=">/images/numbers/.gif" border=0> - &=>/images/numbers/next.gif border=0> + &=">/images/numbers/next.gif" border=0> - /images/numbers/placeholder.gif border=0> + /images/numbers/placeholder.gif" border=0> - -
    -- 2.39.2