From 323642f5a1f308e162cffb00fde677ee213e2eb7 Mon Sep 17 00:00:00 2001 From: tipaul Date: Thu, 18 Sep 2003 10:19:28 +0000 Subject: [PATCH] all those fixes are related to translation improvement. A few minor bugfixes too in perl code. NOTE TO ENGLISH "TEMPLATORS" : you should look at this commits, as some ideas are really nice. Thanks to Carole, Wesford School, new Koha user in France :-) --- C4/Koha.pm | 1 + C4/Search.pm | 11 +- acqui/finishreceive.pl | 2 +- .../intranet-tmpl/default/fr/boraccount.tmpl | 10 +- .../default/fr/includes/members-top.inc | 3 +- .../default/fr/includes/opac-bottom.inc | 30 +- .../default/fr/includes/opac-top.inc | 106 +++---- .../opac-tmpl/default/fr/opac-account.tmpl | 78 ++--- koha-tmpl/opac-tmpl/default/fr/opac-auth.tmpl | 84 +++--- .../opac-tmpl/default/fr/opac-detail.tmpl | 44 +-- koha-tmpl/opac-tmpl/default/fr/opac-main.tmpl | 269 +++++++++--------- .../opac-tmpl/default/fr/opac-moredetail.tmpl | 210 +++++++------- .../opac-tmpl/default/fr/opac-reserve.tmpl | 78 +++-- .../opac-tmpl/default/fr/opac-search.tmpl | 22 +- .../default/fr/opac-searchresults.tmpl | 23 +- koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl | 107 +++---- .../opac-tmpl/default/fr/opac-userupdate.tmpl | 9 +- koha-tmpl/opac-tmpl/default/fr/subject.tmpl | 7 - opac/opac-reserve.pl | 10 +- opac/opac-user.pl | 2 +- 20 files changed, 505 insertions(+), 601 deletions(-) diff --git a/C4/Koha.pm b/C4/Koha.pm index 94cb2f26b1..cb3f3087da 100644 --- a/C4/Koha.pm +++ b/C4/Koha.pm @@ -195,6 +195,7 @@ sub getbranches { my $nsth = $dbh->prepare($query); $nsth->execute($branch->{'branchcode'}); while (my ($cat) = $nsth->fetchrow_array) { + warn "XX"; # FIXME - This seems wrong. It ought to be # $branch->{categorycodes}{$cat} = 1; # otherwise, there's a namespace collision if there's a diff --git a/C4/Search.pm b/C4/Search.pm index 5a16a4e85e..6ad4ac152f 100755 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1231,7 +1231,7 @@ If this is set, it is set to C. sub ItemInfo { my ($env,$biblionumber,$type) = @_; my $dbh = C4::Context->dbh; - my $query = "SELECT * FROM items, biblio, biblioitems left join itemtypes on biblioitems.itemtype = itemtypes.itemtype + my $query = "SELECT *,items.notforloan as itemnotforloan FROM items, biblio, biblioitems left join itemtypes on biblioitems.itemtype = itemtypes.itemtype WHERE items.biblionumber = ? AND biblioitems.biblioitemnumber = items.biblioitemnumber AND biblio.biblionumber = items.biblionumber"; @@ -1454,6 +1454,15 @@ sub bibdata { chop $data->{'subject'}; chop $data->{'subject'}; $sth->finish; + $query = "Select * from additionalauthors where biblionumber = ?"; + $sth = $dbh->prepare($query); + $sth->execute($bibnum); + while (my $dat = $sth->fetchrow_hashref){ + $data->{'additionalauthors'} .= "$dat->{'author'}, "; + } # while + chop $data->{'additionalauthors'}; + chop $data->{'additionalauthors'}; + $sth->finish; return($data); } # sub bibdata diff --git a/acqui/finishreceive.pl b/acqui/finishreceive.pl index be0a4c70bc..1945060ae9 100755 --- a/acqui/finishreceive.pl +++ b/acqui/finishreceive.pl @@ -84,7 +84,7 @@ if ($itemtype =~ /PER/){ classification => $class?$class:"" }); } if ($quantity != 0){ - warn "receive : $biblionumber,$ordnum,$quantrec,$user,$cost,$invoiceno,$bibitemno,$freight,$bookfund"; +# warn "receive : $biblionumber,$ordnum,$quantrec,$user,$cost,$invoiceno,$bibitemno,$freight,$bookfund"; receiveorder($biblionumber,$ordnum,$quantrec,$user,$cost,$invoiceno,$bibitemno,$freight,$bookfund); modbiblio($biblio); &modbibitem({ diff --git a/koha-tmpl/intranet-tmpl/default/fr/boraccount.tmpl b/koha-tmpl/intranet-tmpl/default/fr/boraccount.tmpl index 26bf99f9fc..2a7160209e 100644 --- a/koha-tmpl/intranet-tmpl/default/fr/boraccount.tmpl +++ b/koha-tmpl/intranet-tmpl/default/fr/boraccount.tmpl @@ -1,11 +1,11 @@ - + Compte de - +

-/images/create-man-invoice.gif border=0> +Ajouter une dette   -/images/create-man-credit.gif border=0> +Encaisser

@@ -44,4 +44,4 @@

 

- \ No newline at end of file + diff --git a/koha-tmpl/opac-tmpl/default/fr/includes/members-top.inc b/koha-tmpl/opac-tmpl/default/fr/includes/members-top.inc index c9a2db93cb..1882572dfb 100755 --- a/koha-tmpl/opac-tmpl/default/fr/includes/members-top.inc +++ b/koha-tmpl/opac-tmpl/default/fr/includes/members-top.inc @@ -4,7 +4,6 @@ KOHA: Rechercher dans le catalogue - @@ -27,7 +26,7 @@ marginheight=0 marginwidth=0 leftmargin=0 topmargin=0 > -
KOHA: services en ligne - -

 

-
-
- - -Rechercher dans le catalogue || - -S'inscrire aux services en ligne || -Accueil - - -
- - + + +

 

+
+
+ +Rechercher dans le catalogue || +Accueil || +
Votre compte lecteur + + + + diff --git a/koha-tmpl/opac-tmpl/default/fr/includes/opac-top.inc b/koha-tmpl/opac-tmpl/default/fr/includes/opac-top.inc index 8d140fed2c..dd3ac8cf8a 100755 --- a/koha-tmpl/opac-tmpl/default/fr/includes/opac-top.inc +++ b/koha-tmpl/opac-tmpl/default/fr/includes/opac-top.inc @@ -1,71 +1,35 @@ - - - - - -KOHA: Rechercher dans le catalogue - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
KOHA: Rechercher dans le catalogueRechercher - - - S'incrire - - Accueil
KOHA
- - - - -
+ + + + + +KOHA: Rechercher dans le catalogue + + + + + + + + + + + + +
Accueil +Rechercher +Votre compte lecteur +
+

+ +
diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-account.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-account.tmpl index 09086b5bdc..207d519973 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-account.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-account.tmpl @@ -1,39 +1,39 @@ - - - -Compte de -[Accueil][Déconnexion]

- -

-

- - - - - - - - - - - - - - - - - - - - - - - - -
AMENDESMONTANTRESTANT DU
-
Total
-
-

 

- - - + + + +Compte de +[Accueil][Déconnexion]

+ +

+

+ + + + + + + + + + + + + + + + + + + + + + + + +
AMENDESMONTANTRESTANT DU
+
Total
+
+

 

+ + + diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-auth.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-auth.tmpl index 89d0f42c10..14a5eeb68c 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-auth.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-auth.tmpl @@ -1,49 +1,35 @@ - - - -

Désolé, il semble que vous n'ayez pas d'autorisation pour cette page.

- - - - - - - -
-

- -
- - - - - -
- - - - - - -
Koha - Identification
numéro carte de lecteur:
mot de passe:
-
- - - - - -
Information [version démo]
-

Ce message doit être personnalisé par la bibliothèque pour la version de production!

- -

Exemple : le numéro de carte et le mot de passe que vous avez utilisé ne sont pas reconnu pas Koha. - Contactez le personnel de la biliothèque si vous avez perdu votre mot de passe. mailto:bibli@bibli.fr

- -

Pour la démo vous pouvez utiliser finlay : finlay ou bien superuser : koha

- -
- -
-
- - - \ No newline at end of file + + + +

Désolé, il semble que vous n'ayez pas d'autorisation pour cette page.

+ + + + + + + +
+

+ +
+ + + + + +
+ + + + + + +
Koha - Identification
numéro carte de lecteur:
mot de passe:
+
+ +
+
+ + + diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-detail.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-detail.tmpl index db7b14b5bf..42aff8745a 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-detail.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-detail.tmpl @@ -2,10 +2,13 @@ - () -

- - + () +>Réservation + +Non réservable + +

+

@@ -15,10 +18,15 @@
- Sous-titre:
- Auteur:
- Sujet:
- Année:
+ Sous-titre:
+ Autres auteurs:
+ Editeur
+ Année:
+
+ Résumé:
+
+ Sujet:
+
Nombre d'exemplaires:

@@ -27,23 +35,21 @@

- +
- - - - - - + + + + + - + - - - + + diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-main.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-main.tmpl index 5787ac4e10..824fd4b40e 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-main.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-main.tmpl @@ -1,134 +1,135 @@ - -BIENVENUE DANS LE CATALOGUE KOHA - - - - - - - - - -
-
Type de documentCatégorieLocalisationDate de retourDernière transactionCode barres Type   Cote   Localisation   Empruntable   Date de retour 
NonOui
- - - - -
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Koha: catalogue et services aux usagers
Interroger le catalogue
   
- -
- - Entrez votre recherche et tapez sur la touche Entrée.
- - - -Recherche avancée (plus d'options)
- -  -

- -

Connecté : [Accueil usagers][Déconnexion]

- -

Se connecter à Koha

- -
- -
-

-

+ +BIENVENUE DANS LE CATALOGUE KOHA + + + + + + + + + +
+ + + + + +
 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ Koha: catalogue et services aux usagers
Interroger le catalogue
   
+ +
+ + Entrez votre recherche et tapez sur la touche Entrée.
+ + + -Recherche avancée (plus d'options)
+ +  +

+ +

Bienvenue
+ -Votre compte lecteur
+ -Déconnexion

+ +

-Voir votre compte lecteur

+ +
+ +
+

+

diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-moredetail.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-moredetail.tmpl index be29015cf4..9c4b2bfe86 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-moredetail.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-moredetail.tmpl @@ -1,105 +1,105 @@ - -
-
- - - -&type=intra> -()

-

-

-> -> - - - - - - - - -
GROUPE -
- - -
- -Numéro de notice:
-Type de document:
-URL:
-Durée de prêt:
-Coût de location:
-Cote:
-ISBN:
-Editeur:
-Lieu de publication:
-Année de publication:
-Volume:
-Pages:
-Ill.:
-Taille:
-Notes:
-Nombre d'exemplaires: -
-
-
-
- - - - - - - - - -
CODE BARRES -
-
-> -> -> - - -
- -Site d'origine:
-Dernière transaction:
-Dernier emprunt:
-en prêt -Derniers emprunteurs 1:
-Derniers emprunteurs 2:
-Site actuel:
-Prix de remplacement:
-Exemplaire perdu:
-Payé par:
-Notes:
-Renouvellements:
-&biblio=&invoice=&catview=yes"> -Accession -Date:
-Annulé:
-&bi=&itm=>Total -Issues:
-Numéro de groupe:
-Numéro de notice:
- - - -
-
- -
- -

- -

- - + +
+
+ + + +&type=intra> +()

+

+

+> +> + + + + + + + + +
GROUPE -
+ + +
+ +Numéro de notice:
+Type de document:
+URL:
+Durée de prêt:
+Coût de location:
+Cote:
+ISBN:
+Editeur:
+Lieu de publication:
+Année de publication:
+Volume:
+Pages:
+Ill.:
+Taille:
+Notes:
+Nombre d'exemplaires: +
+
+
+
+ + + + + + + + + +
CODE BARRES +
+
+> +> +> + + +
+ +Site d'origine:
+Dernière transaction:
+Dernier emprunt:
+en prêt +Derniers emprunteurs 1:
+Derniers emprunteurs 2:
+Site actuel:
+Prix de remplacement:
+Exemplaire perdu:
+Payé par:
+Notes:
+Renouvellements:
+&biblio=&invoice=&catview=yes"> +Accession +Date:
+Annulé:
+&bi=&itm=>Total +Issues:
+Numéro de groupe:
+Numéro de notice:
+ + + +
+
+ +
+ +

+ +

+ + diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-reserve.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-reserve.tmpl index a8e622dc17..848c23cf60 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-reserve.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-reserve.tmpl @@ -1,13 +1,6 @@ - +
- - -

Connecté: [Accueil usagers][Déconnexion]

- -

Se connecter à Koha

-
- @@ -26,10 +19,13 @@

Réservation du document suivant: ( )

-

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

-

-Veuillez sélectionner les types de documents qui vous conviennent. Le premier document qui correspond à l'un de ces types sera mis de côté pour vous. + +

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

+ +

Ce document n'est réservé par personne actuellement

+

+Veuillez sélectionner les types de documents qui vous conviennent :
@@ -53,10 +49,11 @@ Veuillez sélectionner les types de documents qui vous conviennent. Le pre

+
Veuillez sélectionner la bibliothèque dans laquelle vous voulez retirer le document: -
+

- + @@ -64,37 +61,26 @@ Veuillez sélectionner la bibliothèque dans laquelle vous voulez re - -

-Veuillez confirmer que vous souhaitez réserver ces types de documents: -

- -

- - - - - - - - - - - - - - -
Type de document
- -Qui devra être retiré à la bibliothèque : .
- - - -
Attention, il y aura des frais de réservation de
-
- - - -
- +

+ Veuillez confirmer votre réservation : +

+

+ + + + + + + + + +
Type de document

+ Qui devra être retiré à la bibliothèque : .
+ + +
Attention, il y aura des frais de réservation de
+
+
+ +
diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-search.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-search.tmpl index 10f4ef8690..4ee76cde17 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-search.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-search.tmpl @@ -1,12 +1,5 @@ - -

Logged in as: [Members Home][Log Out]

- -

Log In to Koha

-
- -
@@ -54,14 +47,13 @@ - + @@ -74,7 +66,7 @@ - + diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-searchresults.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-searchresults.tmpl index 1fe6174da5..4d45a9e32f 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-searchresults.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-searchresults.tmpl @@ -1,14 +1,6 @@
- - -

Connecté: [Accueil usagers][Déconnexion]

- -

Se connecter à Koha

-
- - Votre recherche était @@ -65,7 +57,13 @@
ClasseCatégorie - +
/images/background-opac.gif> - + + + + + + + @@ -79,18 +77,17 @@ + + - - - /images/background-opac.gif>/images/background-opac.gif>
TitreAuteurAnnéeNbre d'exemplairesLocalisation TitreAuteurAnnéeNbre d'exemplairesLocalisationCote 
>Réservation Non réservable -
+
/images/background-opac.gif>
diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl index 41cc92b74d..4b44f1fdfb 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl @@ -1,4 +1,4 @@ - + @@ -21,17 +21,14 @@ Des informations sont inexactes? Vous avez déménagé, chang&
- - -Bonjour, -[Déconnexion]

- +Bonjour, +

[Déconnexion] [Voir vos finances]

-Vous avez une amende de +Vous devez Euros à la bibliothèque
@@ -40,7 +37,7 @@ Des informations sont inexactes? Vous avez déménagé, chang&
-Vous avez une amende de +Vous devez Euros à la bibliothèque
@@ -48,10 +45,9 @@ Des informations sont inexactes? Vous avez déménagé, chang&
-Vous avez un crédit de +Vous avez un crédit de Euros
-Voir votre compte @@ -69,63 +65,48 @@ Des informations sont inexactes? Vous avez déménagé, chang&

- -Vous avez documents en prêt actuellement.
- - - - - - - - - - - - - - - - - - - - - - - - -
TitreAuteurDate de retourType de doc.AmendesPrêts en cours
OuiNonOuiNon
- +

Vous avez document(s) en prêt actuellement :

+ + + + + + + + + + + + + + + + + + + + +
TitreAuteurDate de retourType de doc.AmendesPrêts en cours
OuiNonOuiNon
-Vous n'avez aucun prêt en cours. +

Vous n'avez aucun prêt en cours.

-

- - - -Vous avez réservé documents.
- - - - - - - - - - - - - - - - - - -
TitreAuteurDate de réservation
+

Vous avez réservé document(s) :

+ + + + + + + + + + + + + +
TitreAuteurDate de réservation
diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-userupdate.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-userupdate.tmpl index e02d5fa27b..a01c55740a 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-userupdate.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-userupdate.tmpl @@ -1,11 +1,4 @@ - - - -

Connecté: [Déconnexion]

- -

Se connecter à Koha

-
- + Si des informations sont erronées, vous pouvez les corriger. Notez qu'un mail sera envoyé à la bibliothèque, qui validera vos modifications.
en conséquence, vos modifications n'apparaitront pas immédiatement.


diff --git a/koha-tmpl/opac-tmpl/default/fr/subject.tmpl b/koha-tmpl/opac-tmpl/default/fr/subject.tmpl index 472bd5ca17..66bdb7f870 100755 --- a/koha-tmpl/opac-tmpl/default/fr/subject.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/subject.tmpl @@ -1,12 +1,5 @@ - - -

Connecté: [Déconnexion]

- -

Se connecter à Koha

-
-
diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index ae8249d46a..749f3fb8a1 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -49,8 +49,6 @@ foreach my $res (@$reserves) { } } - - $rank++; $template->param(rank => $rank); @@ -69,8 +67,10 @@ my @select_branch; my %select_branches; foreach my $branch (keys %$branches) { - push @select_branch, $branch; - $select_branches{$branch} = $branches->{$branch}->{'branchname'}; + if ($branch) { + push @select_branch, $branch; + $select_branches{$branch} = $branches->{$branch}->{'branchname'}; + } } my $CGIbranch=CGI::scrolling_list( -name => 'branch', -values => \@select_branch, @@ -161,7 +161,7 @@ for (my $rownum=0;$rownum<$publictypes[0]->{'count'} ;$rownum++) { my @items = @{$pty->{'items'}}; push @row, $items[$rownum] if defined $items[$rownum]; } - my $last = @row; + my $last = @row; $row[$last-1]->{'last'} =1 if $last == $width; my $fill = ($width - $last)*2; $fill-- if $fill; diff --git a/opac/opac-user.pl b/opac/opac-user.pl index b116ce72e6..6b33fbe4a2 100755 --- a/opac/opac-user.pl +++ b/opac/opac-user.pl @@ -42,7 +42,7 @@ if ($borr->{'amountoutstanding'} < 0) { $borr->{'amountoutstanding'} = -1*($borr->{'amountoutstanding'}); } -$borr->{'amountoutstanding'} = sprintf "\$%.02f", $borr->{'amountoutstanding'}; +$borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'}; my @bordat; $bordat[0] = $borr; -- 2.39.5