From shedges at users.sourceforge.net Sun Jan 2 15:12:42 2005 From: shedges at users.sourceforge.net (skemotah) Date: Sun, 02 Jan 2005 06:12:42 -0800 Subject: [Koha-cvs] CVS: koha-doc/en/sysadmin/installation Installing_Koha_on_Fedora.xml,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha-doc/en/sysadmin/installation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14771 Added Files: Installing_Koha_on_Fedora.xml Log Message: Load original version --- NEW FILE ---
Installing Koha 2.2 on Fedora Core (1, 2, 3) 2005-01-03 Joshua Ferraro 2.2.0 2004-12-23 Changes made by Joshua Ferraro. Original Document
Using this document
Copyright and License Copyright 2004, 2005 Joshua Ferraro jmf (at) kados.org This document is related to Koha and is licensed to you under the GNU General Public License version 2 or later (http://www.gnu.org/licenses/gpl.html). Koha-related documents may be reproduced and distributed in whole or in part, in any medium physical or electronic, as long as this copyright notice is retained on all copies. You may create a derivative work and distribute it provided that you: License the derivative work with this same license, or the Linux Documentation Project License (http://www.tldp.org/COPYRIGHT.html). Include a copyright notice and at least a pointer to the license used. Give due credit to previous authors and major contributors. Commercial redistribution is allowed and encouraged; however, the author would like to be notified of any such distributions.
Disclaimer No liability for the contents of this document can be accepted. Use the concepts, examples and information at your own risk. There may be errors and inaccuracies, that could be damaging to your system. Proceed with caution, and although this is highly unlikely, the author(s) do not take any responsibility. All copyrights are held by their by their respective owners, unless specifically noted otherwise. Use of a term in this document should not be regarded as affecting the validity of any trademark or service mark. Naming of particular products or brands should not be seen as endorsements.
Introduction
Prior Knowledge and Assumptions In this document I assume that you are running a standard installation of Fedora Core (1, 2, or 3). If you need help setting up Fedora Core on your machine please see the Fedora installation manual available from http://fedora.redhat.com. I would highly recommend using the latest release of Fedora Core as the shelf-life of these distributions is only about 12 months. If you need a longer shelf life for your Koha machines I recommend either Red Hat Enterprise Linux (AS or ES) or a distro like Debian which does not charge for a subscription service and has a much longer shelf life. If, like me, you expect that you will be upgrading your Koha installation every 6 months or so the Fedora Core series are a good choice. For more information about Fedora Core see the release notes for the distro you have chosen: Core 1: http://download.fedora.redhat.com/pub/fedora/linux/core/1/i386/os/RELEASE-NOTES-en.html Core 2: http://download.fedora.redhat.com/pub/fedora/linux/core/2/i386/os/RELEASE-NOTES-en.html Core 3: http://download.fedora.redhat.com/pub/fedora/linux/core/3/i386/os/RELEASE-NOTES-en.html If you already have some knowledge about Linux or other Unices it will be easier to understand this manual, however, no intermediate steps are necessary subsequent to the installation of Fedora Core before beginning the Koha installation. This guide is a "cookbook" for installing dependencies for Koha on Fedora Core.
Internet Connection This guide assumes that the Koha server has a dedicated Internet connection -- a high-speed connection is best. It is possible to install Koha without a dedicated Internet connection, but this guide does not go into how to do that.
Package Group Selections During a CD installation of Fedora Core you have the option of selecting "Package Groups" for installation -- you can also access this utility after installation. It can be found from the "hat" menu under System Settings --> Add/Remove Applications You'll want to install the following package groups: Web Server MySQL Database Careful, Core 1 and 2 hide this option ... use the Details button to select MySQL and de-select PostgreSQL Development Tools Administration Tools (optional but a good idea) System Tools (optional but a good idea) I don't generally recommend installing "Everything". Mainly this is because the more applications you have installed and running on your system the more complex the maintenance becomes. Running unused applications may also open up your system to attacks that would otherwise not be an issue.
Firewall Configuration I would highly recommend utilizing the default firewall features that come with Fedora Core. However, you'll want to allow access to http/https (port 80 and 8080) as well as ssh (port 22). You can configure the firewall during the initial install or subsequently using the "Security Level" utility in the "hat" menu.
A Note On The Graphical User Interface (GUI) Fedora Core will always default to installing and loading your GUI (by default this is X.org and Gnome). In the past I have always disabled installation of the GUI on a production server, but lately I've taken to installing it and then tweaking the startup procedures so that the GUI does not load by default but must be started manually (so during normal operations the GUI does not waste precious resources). This is mainly because I find some of the GUI tools to be quite useful when I'm physically on-location and working on a server. To disable the GUI subsequent to installation simply edit /etc/inittab and make the default runlevel 3 instead of 5. To start the GUI afterwards type startx at the command prompt. If the machine on which you will install Koha is nearby you can log in locally to perform the Koha install. But most folks find it more convenient to log in remotely using an SSH or a Telnet client. If you are running Windows you can start Telnet by clicking Start->Run from the start menu and typing telnet. Or you can download the free SSH program PuTTy from http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html. SSH is a more secure and robust terminal emulator standard and is a better choice. For many of the commands it will be necessary to have superuser privileges on the Koha server. However, it's generally not a good idea to log into your server directly as the root user. It's better to use the su utility to allow your regular user to obtain superuser privileges. For example,jmf at koha:~$ su password: koha:/home/jmf#The # tells you that you have root privileges. If you want to return to your regular user type exit.
Update Your System Fedora Core has a rapid development pace. There are usually daily updates or bugfixes to applications in the system. Be sure your installation is up-to-date. You can install updates either using the up2date application (or it's GUI equivalent) or by using the new tool yum. To install updates using yum type:[root at koha]# yum update You can also use yum to install programs that have been packaged for Fedora Core. See the yum man page for more information.
Dependencies Koha is built with a number of related open source web-based technologies which are sometimes designated with the acronym L.A.M.P. L.A.M.P. refers to Linux (the GNU/Linux operating system), Apache (a robust web server application), MySQL (a Relational Database Management System using the SQL standard) and Perl/Python/PHP (three common scripting languages). Koha was originally designed for a GNU/Linux system running Apache and MySQL and is written almost entirely in Perl. In order to install and use Koha it is necessary first to install and configure these dependencies.
Perl The majority of Koha is written in Perl -- a high-level programming or scripting language. Perl's functionality and usefulness has been extended and enhanced through the development and free distribution of modules (programming libraries) within the Perl community. The vast majority of these modules are available through the Perl Network CPAN. Others are available for download from the module developer's website or ftp server. Some of these modules have also been packaged directly into Fedora Core's packaging system. Koha relies on several of these extended module libraries for its functions and getting all of these modules set up can be the most challenging part of the Koha installation. Perl itself is installed by default on a Fedora Core system so you needn't install it. The extended Perl modules that are not available via Fedora Core's packaging system are available on the Perl Network CPAN. Perl has a utility that can be run to automatically install modules from CPAN and it's pretty good about keeping track of dependencies within Perl itself, but it cannot handle dependencies outside the Perl base. So before we can install these modules we need to install their dependencies which are outside of Perl.
Configuring Perl's CPAN utility while installing MARC::Record The first time you use Perl's CPAN utility it will configure itself. So we can start that process by telling Perl to install the MARC::Record module from the CPAN network:koha:/# perl -MCPAN -e 'install "MARC::Record"'You should get the following message:/usr/share/perl/5.6.1/CPAN/Config.pm initialized. CPAN is the world-wide archive of perl resources. It consists of about 100 sites that all replicate the same contents all around the globe. Many countries have at least one CPAN site already. The resources found on CPAN are easily accessible with the CPAN.pm module. If you want to use CPAN.pm, you have to configure it properly. If you do not want to enter a dialog now, you can answer 'no' to this question and I'll try to autoconfigure. (Note: you can revisit this dialog anytime later by typing 'o conf init' at the cpan prompt.) Are you ready for manual configuration? [yes] The setup process will take a while. It should be safe to answer all the questions with the default answers. You can safely ignore the utilities' attempts to get you to upgrade or install other Perl modules but you should allow it to prepend prerequisites. You can also set it to automatically build Perl prerequisites without asking by typing follow at the following prompt:The CPAN module can detect when a module that which you are trying to build depends on prerequisites. If this happens, it can build the prerequisites for you automatically ('follow'), ask you for confirmation ('ask'), or just ignore them ('ignore'). Please set your policy to one of the three values. Policy on building prerequisites (follow, ask or ignore)? [ask]Eventually you may get the following message:Now we need to know where your favorite CPAN sites are located. Push a few sites onto the array (just in case the first on the array won't work). If you are mirroring CPAN to your local workstation, specify a file: URL. First, pick a nearby continent and country (you can pick several of each, separated by spaces, or none if you just want to keep your existing selections). Then, you will be presented with a list of URLs of CPAN mirrors in the countries you selected, along with previously selected URLs. Select some of those URLs, or just keep the old list. Finally, you will be prompted for any extra URLs -- file:, ftp:, or http: -- that host a CPAN mirror. (1) Africa (2) Asia (3) Central America (4) Europe (5) North America (6) Oceania (7) South America Select your continent (or several nearby continents) []Proceed by selecting the numeric value for your location. You may be prompted for a more specific location and finally you will be able to select several URLs for CPAN to use to download your modules from. It's a good idea to select a few just in case some of them are not operational or are slow.
The Yaz Toolkit As long as everything went smoothly with the CPAN installation, Perl should finish the install and return you to the command prompt. We're almost ready to install the remaining Perl modules but one of them, namely Net::Z3950, has a non-Perl dependency that we need to install first called Yaz. As of this writing Indexdata, who wrote and maintains the Yaz toolkit has made packages available for Fedora Core 2 and 3. These can be downloaded from their ftp site: http://ftp.indexdata.dk/pub/yaz/redhat/. You'll need the yaz, libyaz and libyaz-devel packages (the latest version should be fine and if you don't find a package for your specific version of Fedora Core a previous version should work). Navigate to a convenient spot and type:[root at koha]# wget http://ftp.indexdata.dk/pub/yaz/redhat/fc2/libyaz-2.0.28-1.i386.rpm [root at koha]# wget http://ftp.indexdata.dk/pub/yaz/redhat/fc2/yaz-2.0.28-1.i386.rpm [root at koha]# wget http://ftp.indexdata.dk/pub/yaz/redhat/fc2/libyaz-devel-2.0.28-1.i386.rpm Now you should have three rpms that can be installed with the rpm utility thusly:[root at koha]# rpm -i yaz* [root at koha]# rpm -i libyaz*(the * is a wildcard).
Installing the Remaining Perl Modules At this point we can install the other Perl modules:[root at koha]# perl -MCPAN -e 'install Event' [root at koha]# perl -MCPAN -e 'install Net::Z3950' [root at koha]# perl -MCPAN -e 'install Digest::MD5' [root at koha]# perl -MCPAN -e 'install "HTML::Template"' [root at koha]# perl -MCPAN -e 'install "Mail::Sendmail"' [root at koha]# perl -MCPAN -e 'install "PDF::API2"' That should take care of the Perl installation and configuration as well as all the modules. If we left any Perl modules out Koha will warn us when we run the install script and will give instructions on how to install them.
MySQL For a database Koha uses MySQL — a free SQL-query-based Relational Database Management System. The installation and basic configuration of MySQL on a Debian system is quite simple. More advanced topics such as database optimization and MySQL administration are documented online at http://www.mysql.com/doc/en/index.html. It would be well worth your while to familiarize yourself with the basic functionality and behaviour that you can expect from MySQL. Chapter 5, Database Administration, is especially relevant for using Koha. To install the MySQL server on your Fedora Core machine type:[root at koha]# yum install mysql-serverAfter installing MySQL you will need to start it by typing:[root at koha]# /etc/init.d/mysqld start Note that If MySQL fails to start you may need to adjust selinux. To do that type the following:[root at koha ~]# setenforce 0 [root at koha ~]# mysql_install_db Preparing db table Preparing host table Preparing user table Preparing func table Preparing tables_priv table Preparing columns_priv table Installing all prepared tables 041201 17:07:25 /usr/libexec/mysqld: Shutdown Complete To start mysqld at boot time you have to copy support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! This is done with: /usr/bin/mysqladmin -u root password 'new-password' /usr/bin/mysqladmin -u root -h koha.athenscounty.lib.oh.us password 'new-password' See the manual for more instructions. You can start the MySQL daemon with: cd /usr ; /usr/bin/safe_mysqld & You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory: cd sql-bench ; run-all-tests Please report any problems with the /usr/bin/mysqlbug script! The latest information about MySQL is available on the web at http://www.mysql.com Support MySQL by buying support/licenses at https://order.mysql.com [root at koha ~]# setenforce 1Then start up MySQL again and you should be good to go. It's a good idea to set the MySQL administrator password right away. You will need to have this password handy later in the installation so make sure you write it down. You can set the password from the command line thusly:[root at koha]# mysqladmin password [type your new password here]but leave out the brackets.
Apache According to the Apache website, Apache has been the most popular web server on the Internet since April of 1996. Additionally, the October 2003 Netcraft Web Server Survey found that over 64% of websites on the Internet use Apache, making it more popular than all other web servers combined. You can see the survey at http://news.netcraft.com/. Additionally, you can find out more about the Apache Software Foundation on their website at http://www.apache.org/. We will have to configure Apache for Koha later on in the install, but for now you should know that Apache's configuration files are kept in /etc/httpd/conf/httpd.conf and Apache's log files are in /var/log/httpd.
Conclusion Well, that's it, we've installed all the dependencies for Koha on Fedora Core. Now you are ready to download Koha from http://www.koha.org and install it following the directions in the INSTALL file.
From tipaul at users.sourceforge.net Mon Jan 3 11:48:40 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 02:48:40 -0800 Subject: [Koha-cvs] CVS: koha/C4 Biblio.pm,1.113,1.114 SearchMarc.pm,1.35,1.36 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20615/C4 Modified Files: Biblio.pm SearchMarc.pm Log Message: * bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: Biblio.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v retrieving revision 1.113 retrieving revision 1.114 diff -C2 -r1.113 -r1.114 *** Biblio.pm 10 Dec 2004 16:27:53 -0000 1.113 --- Biblio.pm 3 Jan 2005 10:48:33 -0000 1.114 *************** *** 254,258 **** $sth = $dbh->prepare( ! "select tagfield,tagsubfield,$libfield as lib,tab, mandatory, repeatable,authorised_value,authtypecode,value_builder,kohafield,seealso,hidden,isurl from marc_subfield_structure where frameworkcode=? order by tagfield,tagsubfield" ); $sth->execute($frameworkcode); --- 254,258 ---- $sth = $dbh->prepare( ! "select tagfield,tagsubfield,$libfield as lib,tab, mandatory, repeatable,authorised_value,authtypecode,value_builder,kohafield,seealso,hidden,isurl,link from marc_subfield_structure where frameworkcode=? order by tagfield,tagsubfield" ); $sth->execute($frameworkcode); *************** *** 266,269 **** --- 266,270 ---- my $hidden; my $isurl; + my $link; while ( *************** *** 271,275 **** $mandatory, $repeatable, $authorised_value, $authtypecode, $value_builder, $kohafield, $seealso, $hidden, ! $isurl ) = $sth->fetchrow ) --- 272,276 ---- $mandatory, $repeatable, $authorised_value, $authtypecode, $value_builder, $kohafield, $seealso, $hidden, ! $isurl, $link ) = $sth->fetchrow ) *************** *** 286,289 **** --- 287,291 ---- $res->{$tag}->{$subfield}->{hidden} = $hidden; $res->{$tag}->{$subfield}->{isurl} = $isurl; + $res->{$tag}->{$subfield}->{link} = $link; } return $res; *************** *** 2633,2636 **** --- 2635,2642 ---- # $Id$ # $Log$ + # Revision 1.114 2005/01/03 10:48:33 tipaul + # * bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) + # * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. + # # Revision 1.113 2004/12/10 16:27:53 tipaul # limiting the number of search term to 8. There was no limit before, but 8 words seems to be the upper limit mySQL can deal with (in less than a second. tested on a DB with 13 000 items) Index: SearchMarc.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/SearchMarc.pm,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** SearchMarc.pm 10 Dec 2004 16:27:53 -0000 1.35 --- SearchMarc.pm 3 Jan 2005 10:48:36 -0000 1.36 *************** *** 167,170 **** --- 167,171 ---- sub catalogsearch { my ($dbh, $tags, $and_or, $excluding, $operator, $value, $offset,$length,$orderby) = @_; + warn "@$tags[0], @$and_or[0], @$excluding[0], @$operator[0], @$value[0], $offset,$length,$orderby"; # build the sql request. She will look like : # select m1.bibid *************** *** 191,198 **** #last minute stripping out of ' and , ! foreach $_ (@$value) { ! $_=~ s/\'/ /g; ! $_=~ s/\,/ /g; ! } for(my $i = 0 ; $i <= $#{$value} ; $i++) --- 192,200 ---- #last minute stripping out of ' and , ! # paul : quoting, it's done a few lines lated. ! # foreach $_ (@$value) { ! # $_=~ s/\'/ /g; ! # $_=~ s/\,/ /g; ! # } for(my $i = 0 ; $i <= $#{$value} ; $i++) *************** *** 202,206 **** # remove % at the beginning @$value[$i] =~ s/^%//g; ! @$value[$i] =~ s/(\.|\?|\:|\!|\'|,|\-|\"|\(|\)|\[|\]|\{|\})/ /g; if(@$excluding[$i]) # NOT statements { --- 204,208 ---- # remove % at the beginning @$value[$i] =~ s/^%//g; ! @$value[$i] =~ s/(\.|\?|\:|\!|\'|,|\-|\"|\(|\)|\[|\]|\{|\})/ /g if @$operator[$i] eq "contains"; if(@$excluding[$i]) # NOT statements { From tipaul at users.sourceforge.net Mon Jan 3 11:48:45 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 02:48:45 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters marc_subfields_structure.tmpl,1.37,1.38 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20615/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: marc_subfields_structure.tmpl Log Message: * bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -r1.37 -r1.38 *** marc_subfields_structure.tmpl 4 Oct 2004 20:52:11 -0000 1.37 --- marc_subfields_structure.tmpl 3 Jan 2005 10:48:39 -0000 1.38 *************** *** 137,140 **** --- 137,141 ---- Authority :, Plugin :, + Link:, From tipaul at users.sourceforge.net Mon Jan 3 11:48:45 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 02:48:45 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/catalogue MARCdetail.tmpl,1.29,1.30 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/catalogue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20615/koha-tmpl/intranet-tmpl/default/en/catalogue Modified Files: MARCdetail.tmpl Log Message: * bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: MARCdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -r1.29 -r1.30 *** MARCdetail.tmpl 22 Dec 2004 10:14:43 -0000 1.29 --- MARCdetail.tmpl 3 Jan 2005 10:48:37 -0000 1.30 *************** *** 86,91 ****

Add book to bookshelf

Select bookshelf

or add to a new bookshelf

">

Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-detail.tmpl 22 Nov 2004 16:18:11 -0000 1.14 --- opac-detail.tmpl 3 Jan 2005 11:09:33 -0000 1.15 *************** *** 3,11 ****
" class="button catalogue"> ISBD ! " class="button"> ! MARC ')" class="button catalogue"> --- 3,17 ----
+ " class="button catalogue"> + Simple + + " class="button"> + Complete + " class="button catalogue"> ISBD ! ')" class="button catalogue"> ! Add to shelf ')" class="button catalogue"> Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** opac-ISBDdetail.tmpl 28 Nov 2004 08:58:04 -0000 1.3 --- opac-ISBDdetail.tmpl 3 Jan 2005 11:09:33 -0000 1.4 *************** *** 3,10 ****
" class="button catalogue"> ! Normal " class="button"> ! MARC ')" class="button catalogue"> --- 3,16 ---- Index: opac-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-main.tmpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-main.tmpl 8 Dec 2004 10:26:32 -0000 1.15 --- opac-main.tmpl 3 Jan 2005 11:09:33 -0000 1.16 *************** *** 4,14 **** ! /includes/opac.css" /> <!--TMPL_VAR name="LibraryName"--> - --- 4,13 ---- ! ! " /> ! ! /includes/opac.css" /> ! <!--TMPL_VAR name="LibraryName"--> Index: opac-MARCdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-MARCdetail.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** opac-MARCdetail.tmpl 12 Nov 2004 16:28:10 -0000 1.4 --- opac-MARCdetail.tmpl 3 Jan 2005 11:09:33 -0000 1.5 *************** *** 1,20 **** - /includes/marc-editor.css"> --- 1,30 ---- Index: opac-shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-shelves.tmpl 15 Mar 2004 15:01:49 -0000 1.1 --- opac-shelves.tmpl 3 Jan 2005 11:09:33 -0000 1.2 *************** *** 2,160 ****
!
! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
! Contents of !
">">">">
!
! Shelf list ! "> ! ! "> ! -
- -
- "> - - "> - - - - - -
- Add a book by barcode in : - - - - "> - -
-
- !

!

!

!

Bookshelves

! ! ! ! - ! !
!
!

! Shelf list !

!
!
!
! ! ! ! ! ! ! ! -
Select Shelves to Delete !
"> ! "> ! ( books) !

!

-
-
- - - - - - - - -
- Add Shelf -
-

Name :

-

Owner : ">

-

Category : -

-

  • a private bookshelf is managed by you & can be seen only by you.
  • -
  • A public can be seen by everybody, but managed only by you.
  • -
  • A free can be managed by any user.
  • -

    -
    -

    !
    !
    ! ! ! ! ! ! ! ! ! ! !
    ! Shelf List !
    ! ! ! ! "> ! ( books) ! !
    !

    Add or Remove Book Shelves !

    --- 2,189 ----
    !
    !

    ! !
    !

    Shelf content

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    deletebarcodetitleAuthor
    ">">">">">">
    ! "> ! ! "> ! ! ! ! Shelf list !
    !
    ! !
    !
    !

    Add a book by barcode

    ! "> ! ! "> ! ! ! "> ! !
    !
    +

    Bookshelves

    !

    !

    !

    !

    Select Shelves to Delete

    !
    ! !

    ! ! "> ( item(s)) !

    !

    !
    !
    !
    ! !

    Add Shelf

    !

    !

    ">

    !

    ! !

    !
    • a private bookshelf is managed by you & can be seen only by you.
    • !
    • A public can be seen by everybody, but managed only by you.
    • !
    • A free can be managed by any user.
    • !
    !

    ! ! back to shelf list !

    +
    +
    !
    !

    Shelf list

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Shelf nameCategoryContent sizeModify
    "> ! "> ! ! ! "> ! ! Private ! ! ! Public ! ! ! Free ! ! "> ! item(s) ! "> ! " class="button">Modify ! !
    !
    ! + + +
    +
    + +

    Modify shelf

    + "> +

    ">

    +

    ">

    +

    + +

    +

  • a private bookshelf is managed by you & can be seen only by you.
  • +
  • A public can be seen by everybody, but managed only by you.
  • +
  • A free can be managed by any user.
  • +

    +

    + +

    + +
    +
    +
    From tipaul at users.sourceforge.net Mon Jan 3 12:10:01 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:10:01 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-addbookbybiblionumber.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24046/opac Added Files: opac-addbookbybiblionumber.pl Log Message: --- NEW FILE --- #!/usr/bin/perl #script to provide bookshelf management # WARNING: This file uses 4-character tabs! # # $Header: /cvsroot/koha/koha/opac/opac-addbookbybiblionumber.pl,v 1.1 2005/01/03 11:09:59 tipaul Exp $ # # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA use strict; use C4::Search; use C4::Biblio; use CGI; use C4::Output; use C4::BookShelves; use C4::Circulation::Circ2; use C4::Auth; use C4::Interface::CGI::Output; use HTML::Template; my $env; my $query = new CGI; my $biblionumber = $query->param('biblionumber'); my $shelfnumber = $query->param('shelfnumber'); my $newbookshelf = $query->param('newbookshelf'); my $category = $query->param('category'); my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "opac-addbookbybiblionumber.tmpl", query => $query, type => "opac", authnotrequired => 0, }); my $x; # for trash ($x,$x,$shelfnumber) = AddShelf('',$newbookshelf,$loggedinuser,$category) if $newbookshelf; if ($shelfnumber) { &AddToShelfFromBiblio($env, $biblionumber, $shelfnumber); print "Content-Type: text/html\n\n"; exit; } else { my ( $bibliocount, @biblios ) = getbiblio($biblionumber); my ($shelflist) = GetShelfList($loggedinuser,3); my @shelvesloop; my %shelvesloop; foreach my $element (sort keys %$shelflist) { push (@shelvesloop, $element); $shelvesloop{$element} = $shelflist->{$element}->{'shelfname'}; } my $CGIbookshelves=CGI::scrolling_list( -name => 'shelfnumber', -values => \@shelvesloop, -labels => \%shelvesloop, -size => 1, -multiple => 0 ); $template->param(biblionumber => $biblionumber, title => $biblios[0]->{'title'}, author => $biblios[0]->{'author'}, CGIbookshelves => $CGIbookshelves, ); output_html_with_http_headers $query, $cookie, $template->output; } # $Log: opac-addbookbybiblionumber.pl,v $ # Revision 1.1 2005/01/03 11:09:59 tipaul # *** empty log message *** # # Local Variables: # tab-width: 4 # End: From tipaul at users.sourceforge.net Mon Jan 3 12:11:13 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:11:13 -0800 Subject: [Koha-cvs] CVS: koha/misc Install.pm,1.86,1.87 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24344/misc Modified Files: Install.pm Log Message: * rolling back lock_tables_privs = 'Y' during install stage (too many problems) The option is shown in bulkmacimport instead. Index: Install.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/Install.pm,v retrieving revision 1.86 retrieving revision 1.87 diff -C2 -r1.86 -r1.87 *** Install.pm 15 Dec 2004 14:39:21 -0000 1.86 --- Install.pm 3 Jan 2005 11:11:10 -0000 1.87 *************** *** 1772,1776 **** startsysout(); print system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into user (Host,User,Password) values ('$hostname','$user',password('$pass'))\"\;");#" ! system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv, index_priv, alter_priv,lock_tables_priv) values ('%','$database','$user','Y','Y','Y','Y','Y','Y','Y','Y','Y')\""); system("$mysqldir/bin/mysqladmin -u$mysqluser reload"); # Change to admin user login --- 1772,1776 ---- startsysout(); print system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into user (Host,User,Password) values ('$hostname','$user',password('$pass'))\"\;");#" ! system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv, index_priv, alter_priv) values ('%','$database','$user','Y','Y','Y','Y','Y','Y','Y','Y')\""); system("$mysqldir/bin/mysqladmin -u$mysqluser reload"); # Change to admin user login From tipaul at users.sourceforge.net Mon Jan 3 13:55:40 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:55:40 -0800 Subject: [Koha-cvs] CVS: koha/misc koha.mysql,1.9,1.10 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9571/misc Modified Files: koha.mysql Log Message: adding an index Index: koha.mysql =================================================================== RCS file: /cvsroot/koha/koha/misc/koha.mysql,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** koha.mysql 12 Nov 2004 16:39:48 -0000 1.9 --- koha.mysql 3 Jan 2005 12:55:22 -0000 1.10 *************** *** 925,929 **** # Structure de la table `marc_subfield_structure` # - CREATE TABLE marc_subfield_structure ( tagfield char(3) NOT NULL default '', --- 925,928 ---- *************** *** 945,949 **** PRIMARY KEY (frameworkcode,tagfield,tagsubfield), KEY tab (frameworkcode,tab), ! KEY kohafield (frameworkcode,kohafield) ) TYPE=MyISAM; # -------------------------------------------------------- --- 944,949 ---- PRIMARY KEY (frameworkcode,tagfield,tagsubfield), KEY tab (frameworkcode,tab), ! KEY kohafield (frameworkcode,kohafield), ! KEY kohafield_2 (kohafield) ) TYPE=MyISAM; # -------------------------------------------------------- From tipaul at users.sourceforge.net Mon Jan 3 13:56:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:56:32 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.31,1.32 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9753/admin Modified Files: marc_subfields_structure.pl Log Message: * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** marc_subfields_structure.pl 8 Dec 2004 10:41:38 -0000 1.31 --- marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 *************** *** 380,383 **** --- 380,384 ---- $row_data{hidden} = $results->[$i]{'hidden'}; $row_data{isurl} = $results->[$i]{'isurl'}; + $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; $row_data{bgcolor} = $toggle; From tipaul at users.sourceforge.net Mon Jan 3 13:57:24 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:57:24 -0800 Subject: [Koha-cvs] CVS: koha MARCdetail.pl,1.24,1.25 Message-ID: Update of /cvsroot/koha/koha In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9893 Modified Files: MARCdetail.pl Log Message: * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: MARCdetail.pl =================================================================== RCS file: /cvsroot/koha/koha/MARCdetail.pl,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** MARCdetail.pl 22 Dec 2004 10:14:43 -0000 1.24 --- MARCdetail.pl 3 Jan 2005 12:57:21 -0000 1.25 *************** *** 74,78 **** my $record =MARCgetbiblio($dbh,$bibid); - warn "=>".$record->as_formatted; # open template my ($template, $loggedinuser, $cookie) --- 74,77 ---- *************** *** 96,100 **** my @subfields_data; for (my $x_i=0;$x_i<=$#fields;$x_i++) { ! warn "$tabloop => $x_i"; # if tag <10, there's no subfield, use the "@" trick if ($fields[$x_i]->tag()<10) { --- 95,99 ---- my @subfields_data; for (my $x_i=0;$x_i<=$#fields;$x_i++) { ! # warn "$tabloop => $x_i"; # if tag <10, there's no subfield, use the "@" trick if ($fields[$x_i]->tag()<10) { *************** *** 116,119 **** --- 115,119 ---- my %subfield_data; $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{lib}; + $subfield_data{link}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{link}; if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{isurl}) { $subfield_data{marc_value}="$subf[$i][1]"; From tipaul at users.sourceforge.net Mon Jan 3 13:58:01 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:58:01 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools - New directory Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9933/misc/migration_tools Log Message: Directory /cvsroot/koha/koha/misc/migration_tools added to the repository From tipaul at users.sourceforge.net Mon Jan 3 13:59:51 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:59:51 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools buildLANG.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10247/misc/migration_tools Added Files: buildLANG.pl Log Message: Auto-build LANG authorized values --- NEW FILE --- #!/usr/bin/perl # script that rebuild thesaurus from biblio table. # delete FROM `marc_subfield_table` WHERE tag = "606" AND subfieldcode = 9; use strict; # Koha modules used # use MARC::File::USMARC; # use MARC::Record; # use MARC::Batch; use C4::Context; use C4::Biblio; use C4::AuthoritiesMarc; use Time::HiRes qw(gettimeofday); use Getopt::Long; my ( $fields, $number,$language) = ('',0); my ($version, $verbose, $test_parameter, $field,$delete,$subfields); GetOptions( 'h' => \$version, 'd' => \$delete, 't' => \$test_parameter, 's:s' => \$fields, 'v' => \$verbose, 'l:s' => \$language, ); if ($version or !$fields) { print < 'english', 'fre' => 'french' ); %codesiso = ( 'mis' => 'diverses', 'und' => 'inconnue', 'mul' => 'multilingue', 'ger' => 'allemand', 'eng' => 'anglais', 'ara' => 'arabe', 'arm' => 'armnien', 'baq' => 'basque', 'ber' => 'berbere', 'bre' => 'breton', 'bul' => 'bulgare', 'cat' => 'catalan', 'chi' => 'chinois', 'cro' => 'croate', 'dan' => 'danois', 'spa' => 'espagnol', 'esp' => 'espranto', 'fin' => 'finnois', 'fra' => 'franais ancien', 'fre' => 'franais', 'wel' => 'gallois', 'grc' => 'grec classique', 'gre' => 'grec moderne', 'heb' => 'hbreu', 'hun' => 'hongrois', 'ita' => 'italien', 'jap' => 'japonais', 'lat' => 'latin', 'dut' => 'nerlandais', 'nor' => 'norvgien', 'pol' => 'polonais', 'por' => 'portugais', 'rum' => 'roumain', 'rus' => 'russe', 'ser' => 'serbe', 'swe' => 'suedois', 'cze' => 'tchque', 'tur' => 'turc', 'ukr' => 'ukraine', 'slo' => 'slovne', 'scr' => 'serbo-croate', ) if $language eq 'fr'; my $dbh = C4::Context->dbh; if ($delete) { print "deleting lang list\n"; $dbh->do("delete from authorised_values where category='LANG'"); } if ($test_parameter) { print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; } my $starttime = gettimeofday; my $sth = $dbh->prepare("SELECT DISTINCT subfieldvalue FROM marc_subfield_table WHERE tag + subfieldcode IN $fields order by subfieldvalue"); $sth->execute; my $i=1; print "=========================\n"; my $sth2 = $dbh->prepare("insert into authorised_values (category, authorised_value, lib) values (?,?,?)"); while (my ($langue) = $sth->fetchrow) { $sth2->execute('LANG',$langue,$langue?$codesiso{$langue}:$langue); print "lang : $langue is unknown is iso list\n" unless $codesiso{$langue}; } print "=========================\n"; From tipaul at users.sourceforge.net Mon Jan 3 16:25:52 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 07:25:52 -0800 Subject: [Koha-cvs] CVS: koha/misc bulkmarcimport.pl,1.9,NONE Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7798/misc Removed Files: bulkmarcimport.pl Log Message: moving bulkmarcimport script to migration_tools directory --- bulkmarcimport.pl DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 16:25:52 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 07:25:52 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools bulkmarcimport.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7798/misc/migration_tools Added Files: bulkmarcimport.pl Log Message: moving bulkmarcimport script to migration_tools directory --- NEW FILE --- #!/usr/bin/perl # small script that import an iso2709 file into koha 2.0 use strict; # Koha modules used use MARC::File::USMARC; use MARC::Record; use MARC::Batch; use C4::Context; use C4::Biblio; use Time::HiRes qw(gettimeofday); use Getopt::Long; my ( $input_marc_file, $number) = ('',0); my ($version, $delete, $test_parameter,$char_encoding, $verbose); GetOptions( 'file:s' => \$input_marc_file, 'n' => \$number, 'h' => \$version, 'd' => \$delete, 't' => \$test_parameter, 'c:s' => \$char_encoding, 'v:s' => \$verbose, ); if ($version || ($input_marc_file eq '')) { print <dbh; if ($delete) { print "deleting biblios\n"; $dbh->do("delete from biblio"); $dbh->do("delete from biblioitems"); $dbh->do("delete from items"); $dbh->do("delete from bibliosubject"); $dbh->do("delete from additionalauthors"); $dbh->do("delete from bibliosubtitle"); $dbh->do("delete from marc_biblio"); $dbh->do("delete from marc_subfield_table"); $dbh->do("delete from marc_word"); $dbh->do("delete from marc_blob_subfield"); } if ($test_parameter) { print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; } $char_encoding = 'MARC21' unless ($char_encoding); print "CHAR : $char_encoding\n" if $verbose; my $starttime = gettimeofday; my $batch = MARC::Batch->new( 'USMARC', $input_marc_file ); $batch->warnings_off(); $batch->strict_off(); my $i=0; #1st of all, find item MARC tag. my ($tagfield,$tagsubfield) = &MARCfind_marc_from_kohafield($dbh,"items.itemnumber",''); # $dbh->do("lock tables biblio write, biblioitems write, items write, marc_biblio write, marc_subfield_table write, marc_blob_subfield write, marc_word write, marc_subfield_structure write, stopwords write"); while ( my $record = $batch->next() ) { $i++; #now, parse the record, extract the item fields, and store them in somewhere else. ## create an empty record object to populate my $newRecord = MARC::Record->new(); # go through each field in the existing record foreach my $oldField ( $record->fields() ) { # just reproduce tags < 010 in our new record if ( $oldField->tag() < 10 ) { $newRecord->append_fields( $oldField ); next(); } # store our new subfield data in this list my @newSubfields = (); # go through each subfield code/data pair foreach my $pair ( $oldField->subfields() ) { $pair->[1] =~ s/\[1] =~ s/\>//g; push( @newSubfields, $pair->[0], char_decode($pair->[1],$char_encoding) ); } # add the new field to our new record my $newField = MARC::Field->new( $oldField->tag(), $oldField->indicator(1), $oldField->indicator(2), @newSubfields ); $newRecord->append_fields( $newField ); } warn "$i ==>".$newRecord->as_formatted() if $verbose eq 2; my @fields = $newRecord->field($tagfield); my @items; my $nbitems=0; foreach my $field (@fields) { my $item = MARC::Record->new(); $item->append_fields($field); push @items,$item; $newRecord->delete_field($field); $nbitems++; } print "$i : $nbitems items found\n" if $verbose; # now, create biblio and items with NEWnewXX call. unless ($test_parameter) { my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,''); warn "ADDED biblio NB $bibid in DB\n" if $verbose; for (my $i=0;$i<=$#items;$i++) { NEWnewitem($dbh,$items[$i],$bibid); } } } # $dbh->do("unlock tables"); my $timeneeded = gettimeofday - $starttime; print "$i MARC record done in $timeneeded seconds"; From tipaul at users.sourceforge.net Mon Jan 3 17:12:31 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 08:12:31 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator default_intranet_pl_PL.po,1.13,NONE default_opac_pl_PL.po,1.9,NONE Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18406 Removed Files: default_intranet_pl_PL.po default_opac_pl_PL.po Log Message: removing .po in the wrong place (is in po/ now) --- default_intranet_pl_PL.po DELETED --- --- default_opac_pl_PL.po DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 17:30:16 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 08:30:16 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator rebuild_lang.sh,NONE,1.1 translator_doc.txt,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23202 Modified Files: translator_doc.txt Added Files: rebuild_lang.sh Log Message: updating doc & adding a script to rebuild officially supported languages --- NEW FILE --- #!/bin/sh ./tmpl_process3.pl install -r -s po/css_opac_fr_FR.po -i ../../koha-tmpl/opac-tmpl/css/en -o ../../koha-tmpl/opac-tmpl/css/fr ./tmpl_process3.pl install -r -s po/default_intranet_fr_FR.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/fr ./tmpl_process3.pl install -r -s po/css_opac_zh_TW.po -i ../../koha-tmpl/opac-tmpl/css/zh_TW -o ../../koha-tmpl/opac-tmpl/css/zh_TW ./tmpl_process3.pl install -r -s po/default_intranet_zh_TW.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/zh_TW ./tmpl_process3.pl install -r -s po/css_opac_es_AR.po -i ../../koha-tmpl/opac-tmpl/css/zh_TW -o ../../koha-tmpl/opac-tmpl/css/es_AR ./tmpl_process3.pl install -r -s po/default_intranet_es_AR.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/es_AR Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** translator_doc.txt 30 Dec 2004 06:58:19 -0000 1.5 --- translator_doc.txt 3 Jan 2005 16:30:13 -0000 1.6 *************** *** 22,27 **** directory, i.e., misc/translator): ! ./tmpl_process.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the --- 22,26 ---- directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the *************** *** 34,40 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o / ! home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s ! css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default --- 33,37 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default *************** *** 47,52 **** 1. Update your translation file: ! ./tmpl_process.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as --- 44,48 ---- 1. Update your translation file: ! ./tmpl_process3.pl update -i ../../opac-tmpl/default/en -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as *************** *** 54,62 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed WEAKNESSES --- 50,62 ---- 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed + + REBUILD ALL + =========== + The rebuild_lang.sh script can be used to rebuild all languages officially supported in 2.2 release, when needed. + Useful for developpers, probably useless for all end-users. + WEAKNESSES *************** *** 71,74 **** * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) ! --- 71,73 ---- * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) \ No newline at end of file From oleonard at users.sourceforge.net Tue Jan 4 21:21:00 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 04 Jan 2005 12:21:00 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/barcodes barcodes.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9686/koha-tmpl/intranet-tmpl/default/en/barcodes Modified Files: barcodes.tmpl Log Message: Corrections to English and minor corrections to HTML Index: barcodes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** barcodes.tmpl 19 Oct 2004 11:50:18 -0000 1.3 --- barcodes.tmpl 4 Jan 2005 20:20:52 -0000 1.4 *************** *** 1,186 **** ! ! ! ! ! ! !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Add a new Country Code !
    ! Country Name  ! ! Country Code  !
    ! ! ! !
    !
    !
    ! ! ! ! ! !
    !

    Barcodes Generator

    ! ! ! ! !
    Generate barcodes from inventary codes
    !
      !
    • Select a range of inventary codes. You can select wether a continuous range or individual inventary codes
    • !
    • Select the standard type to generate barcodes.
    • !
    • Define the page size for output the PDF.
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page. !
    • !
    !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    !

    Can't find inventary codes on that range. Please try again.

    !
    ! ! ! ! ! ! ! !
    Type of Interval
    !
    !
    ! ! ! ! ! ! ! ! ! !
    From:
    To:
    !
    ! !
    ! ! ! ! ! ! ! !
    Country Code
    !
    ! /images/more.gif" hspace="0" vspace="0" border="0" ! style="vertical-align:bottom;cursor:pointer" ! onclick="javascript: addCountryCode()"> ! !
    !
    !
    ! ! ! ! ! ! ! !
    Page Size
    ! " ! size="10"> ! [Go to Printer Configuration] !
    !
    Text under label ! "> If this field is empty, author and title will be put instead !
    ! ! ! ! ! ! ! ! ! ! ! !
    ">Label number to start printing
    ! " ! name="label" > ! Label !
    !
    ! ! ! !
    !
    !
    ! --- 1,180 ---- ! ! ! ! ! ! !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Add a new Country Code !
    ! Country Name   ! ! Country Code   !
    ! ! ! !
    !
    !
    ! ! ! ! ! !
    !

    Barcodes Generator

    ! ! ! ! !
    Generate barcodes from inventory codes
    !
      !
    • Select a range of inventary codes. You can choose a continuous range or individual inventory codes
    • !
    • Select the standard type to generate barcodes.
    • !
    • Define the page size for output the PDF.
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page. !
    • !
    !
    !
    " name="form1" onsubmit="return checkFields(this);" target="_blank"> ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    !

    Can't find inventory codes in that range. Please try again.

    !
    ! ! ! ! ! ! ! !
    Type of Interval
    !
    !
    ! ! ! ! ! ! ! ! ! !
    From:
    To:
    !
    ! !
    ! ! ! ! ! ! ! !
    Country Code
    !
    ! /images/more.gif" hspace="0" vspace="0" border="0" style="vertical-align:bottom;cursor:pointer" onclick="addCountryCode();"> ! !
    !
    !
    ! ! ! ! ! ! ! !
    Page Size
    ! " ! size="10"> ! [Go to Printer Configuration] !
    !
    Text under label ! "> If this field is empty, author and title will be used instead !
    ! ! ! ! ! ! ! ! ! ! ! !
    ">Label number to start printing
    ! " name="label" > Label
    !
    ! ! ! !
    !
    !
    ! From oleonard at users.sourceforge.net Tue Jan 4 23:32:29 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 04 Jan 2005 14:32:29 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/barcodes barcodes.tmpl,NONE,1.1 printerConfig.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4015/koha-tmpl/intranet-tmpl/npl/en/barcodes Added Files: barcodes.tmpl printerConfig.tmpl Log Message: Adding NPL versions of these templates --- NEW FILE --- Koha -- Catalog: Advanced Search

    Barcodes Generator

    • Select a range of inventary codes. You can choose a continuous range or individual inventory codes
    • Select the standard type to generate barcodes.
    • Define the page size for output the PDF.
    • Depending on page size, Koha will show you how the page is arranged for each barcode. You can define wich point to start printing the page.
    " name="form1" onsubmit="return checkFields(this);" target="_blank">
    Generate barcodes from inventory codes

    Can't find inventory codes in that range. Please try again.

    From:
    To:
    +
    Add a new Country Code
    " size="10"> [Go to Printer Configuration]
    ">

    If this field is empty, author and title will be used instead

    ">Label number to start printing
    " name="label" > Label

    --- NEW FILE --- Koha -- Barcode Generator Printer Configuration

    Printer Configuration

    Set the printer configuration corresponding to your environment

    • Set width and height of the label that you are going to work with.
    • Set your system's default DPI.
    • Set the page size.
    • Select how many columns and rows are in your page size.
    • Set the left margin bottom margin the page that you are going to use. This parameters will help to center the barcodes into the labels.
    " name="form1">
    Label width (in mm) Label height (in mm) System DPI Page Size Columns Rows Margin Bottom (mm) Margin Left (Expressed in mm)
    "> "> "> "> "> "> ">

    From tipaul at users.sourceforge.net Wed Jan 5 15:31:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:31:20 -0800 Subject: [Koha-cvs] CVS: koha/misc buildrelease,1.22,1.23 Install.pm,1.87,1.88 koha.upgrade,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27147/misc Modified Files: buildrelease Install.pm koha.upgrade Log Message: minor update just before releasing official 2.2.0 Index: buildrelease =================================================================== RCS file: /cvsroot/koha/koha/misc/buildrelease,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** buildrelease 16 Nov 2004 13:04:18 -0000 1.22 --- buildrelease 5 Jan 2005 14:31:06 -0000 1.23 *************** *** 219,223 **** |; chdir($kohadir) || die "$kohadir: $!\n"; ! system("cvs update -P"); if ($cvstag) { print qq| --- 219,223 ---- |; chdir($kohadir) || die "$kohadir: $!\n"; ! # system("cvs update -P"); if ($cvstag) { print qq| Index: Install.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/Install.pm,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -r1.87 -r1.88 *** Install.pm 3 Jan 2005 11:11:10 -0000 1.87 --- Install.pm 5 Jan 2005 14:31:17 -0000 1.88 *************** *** 149,153 **** $messages->{'WelcomeToUpgrader'}->{en} = heading('Welcome to the Koha Upgrader') . qq| ! You are attempting to upgrade from Koha %s to %s. We recommend that you do a complete backup of all your files before upgrading. --- 149,153 ---- $messages->{'WelcomeToUpgrader'}->{en} = heading('Welcome to the Koha Upgrader') . qq| ! You are attempting to upgrade to Koha %s. We recommend that you do a complete backup of all your files before upgrading. *************** *** 1819,1823 **** such as DANMARC. We would like to hear from you if you do. ! UPGRADE : If you UPGRADE your version from a previous 2.x.x, the right choice here is N (None) to preserve your local MARC setup. Choose MARC definition [1]: |; --- 1819,1824 ---- such as DANMARC. We would like to hear from you if you do. ! *** UPGRADE *** ! If you UPGRADE your version from a previous 2.x.x, the right choice here is N (None) to preserve your local MARC setup. Choose MARC definition [1]: |; *************** *** 1827,1833 **** en : default language, all pages available ! fr : complete translation (except pictures) ! es : partial librarian site translation (including pictures) ! pl : complete OPAC and partial librarian translation zh_TW : partial translation --- 1828,1833 ---- en : default language, all pages available ! fr : complete translation ! es : partial librarian site translation zh_TW : partial translation Index: koha.upgrade =================================================================== RCS file: /cvsroot/koha/koha/misc/koha.upgrade,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** koha.upgrade 23 Nov 2004 16:02:33 -0000 1.16 --- koha.upgrade 5 Jan 2005 14:31:17 -0000 1.17 *************** *** 15,34 **** loadconfigfile(); ! my $kohaversion=`cat koha.version`; ! chomp $kohaversion; ! Install::setkohaversion $kohaversion; ! if ($kohaversion =~ /RC/) { releasecandidatewarning(); } ! my $answer = showmessage(getmessage('WelcomeToUpgrader',[$kohaversion,$::newversion]),'yn'); ! ! unless ($answer =~/y/i) { showmessage(getmessage('AbortingInstall'),'none'); exit; - } else { - print "Great! continuing upgrade... \n"; }; --- 15,33 ---- loadconfigfile(); ! $::newversion=`cat koha.version`; ! chomp $::newversion; ! Install::setkohaversion $::newversion; ! if ($::newversion =~ /RC/) { releasecandidatewarning(); } ! my $answer = showmessage(getmessage('WelcomeToUpgrader',[$::newversion]),'yn','n'); ! if ($answer eq "Y" || $answer eq "y") { ! print "Great! continuing upgrade... \n"; ! } else { showmessage(getmessage('AbortingInstall'),'none'); exit; }; From tipaul at users.sourceforge.net Wed Jan 5 15:32:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:32:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/authorities searchresultlist.tmpl,1.7,1.8 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27401/koha-tmpl/intranet-tmpl/default/en/authorities Modified Files: searchresultlist.tmpl Log Message: Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist.tmpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** searchresultlist.tmpl 2 Dec 2004 16:41:07 -0000 1.7 --- searchresultlist.tmpl 5 Jan 2005 14:32:30 -0000 1.8 *************** *** 43,47 **** ! '&operator==&value=&and_or=and&excluding=" class="button authority"> biblio(s) "> --- 43,47 ---- ! &operator==&value=&and_or=and&excluding=" class="button authority"> biblio(s) "> From tipaul at users.sourceforge.net Wed Jan 5 15:32:59 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:32:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en about.tmpl,1.11,1.12 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27471/koha-tmpl/intranet-tmpl/default/en Modified Files: about.tmpl Log Message: updated credits for 2.2 release Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/about.tmpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** about.tmpl 19 Jul 2004 21:41:29 -0000 1.11 --- about.tmpl 5 Jan 2005 14:32:56 -0000 1.12 *************** *** 3,98 ****
    -

    Data about the current version of Koha for bug reports (or general interest).

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Koha version:
    OS version (from 'uname -a'):
    Perl version:
    MySQL version:
    Apache version:
    Credits !

    Core team

    ! ! ! ! ! !
    ! Pat Eyler, Kaitiaki
    ! Paul Poulain, 2.2 release manager (MARC developper)
    ! Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    ! Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    ! Nicholas Rosasco, (Documentation Compiler)
    ! Mike Hansen
    ! MJ Ray and Turo Technology LLP, England (quality control, installer & updater, 2.0 release maintainer)
    ! Nicolas Morin, French Translation
    !
    ! Horowhenua Library Trust : Rosalie Blake, Head of Libraries
    ! Jo Ransom
    ! Katipo Communications : Rachel Hamilton-Williams, General Manager (Webmistress), ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    !
    !

    Thanks to

    ! ! ! ! ! ! !
    ! Adam Thick
    ! Andrew Hooper
    ! Al Banks
    ! Ambrose Li
    ! Andrew Arensburger
    ! Benedykt P. Barszcz (Polish for 2.0)
    ! Brig C. McCoy
    ! Daniel Holth
    ! David Strainchamps
    ! Dorian Meid
    !
    ! Ed Summers
    ! Florian Bischof
    ! Francisco M. Marzoa Alonso
    ! Glen Stewart
    ! Henri-Damien Laurent
    ! Jrome Vizcaino (Esiee School)
    ! Kip DeGraaf
    ! Marco Gaiarin
    ! Md. Aftabuddin
    ! Michaes Herman
    !
    ! Michel Lerenard (Esiee School)
    ! Mike Johnson
    ! Mike Mylonas
    ! Pierre Cauchois (Esiee School)
    ! Pawel Skuza (Polish for 1.2)
    ! Regula Sebastiao
    ! Roger Buck
    ! Ron Wickersham
    ! Sebastiaan Durand
    !
    !
    --- 3,72 ----

    Data about the current version of Koha for bug reports (or general interest).

    !
    !

    Server information

    !

    !

    !

    !

    !

    !
    !
    !

    Special thanks to the following funders

    !

    Horowhenua Library Trust and Rosalie Blake, Head of Libraries, (Koha 1.0)

    !

    The Nelsonville Public Library (MARC support)

    !

    EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)

    !

    ENSMP (Ecole Nationale Suprieure des Mines de Paris) (biblio frameworks, MARC authorities, OPAC basket, Serials support)

    !
    !
    !

    Core team for 2.2

    !

    Rachel Hamilton-Williams, Kaitiaki

    !

    Paul Poulain, 2.2 release manager (MARC developper)

    !

    Stephen Hedges & the Nelsonville Public Library (MARC features funders)

    !

    Nicholas Rosasco, (Documentation Compiler)

    !

    Mike Hansen

    !

    MJ Ray and Turo Technology LLP, (quality control, installer & updater, 2.0 release maintainer)

    !

    Katipo Communications

    !
      !

      Rachel Hamilton-Williams, General Manager (Webmistress)

      !

      Chris Cormack, 1.2 release manager

      !

      and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson,

      !

      Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine

      !
    !
    !
    !

    Thanks to

    !

    Adam Thick

    !

    Andrew Hooper

    !

    Al Banks

    !

    Ambrose Li (chinese & translation tool)

    !

    Andrew Arensburger (the small & great C4::Context module)

    !

    Benedykt P. Barszcz (Polish for 2.0)

    !

    Brig C. McCoy

    !

    Daniel Holth

    !

    David Strainchamps

    !

    Dorian Meid (German translation)

    !

    doXulting (Matthieu Branlat) OPAC basket

    !

    Ed Summers (Some code and Perl packages like MARC::Record)

    !

    Esiee School (Jrome Vizcaino, Michel Lerenard, Pierre Cauchois)

    !

    Florian Bischof

    !

    Francisco M. Marzoa Alonso

    !

    Glen Stewart

    !

    Henri-Damien Laurent

    !

    Jo Ransom

    !

    Kip DeGraaf

    !

    Marco Gaiarin

    !

    Md. Aftabuddin

    !

    Michaes Herman

    !

    Mike Johnson

    !

    Mike Mylonas

    !

    Nicolas Morin (French Translation in 2.0)

    !

    Pawel Skuza (Polish for 1.2)

    !

    Regula Sebastiao

    !

    Roger Buck

    !

    Ron Wickersham

    !

    Sebastiaan Durand

    !

    Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)

    !
    From tipaul at users.sourceforge.net Wed Jan 5 15:33:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:33:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr about.tmpl,1.3,1.4 auth.tmpl,1.3,1.4 bookcount.tmpl,1.3,1.4 boraccount.tmpl,1.6,1.7 charges.tmpl,1.3,1.4 intranet-main.tmpl,1.8,1.9 modbibitem.tmpl,1.3,1.4 moditem.tmpl,1.3,1.4 overdue.tmpl,1.3,1.4 reports.tmpl,1.3,1.4 request.tmpl,1.7,1.8 shelves.tmpl,1.3,1.4 thesaurus_popup.tmpl,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27604/koha-tmpl/intranet-tmpl/default/fr Modified Files: about.tmpl auth.tmpl bookcount.tmpl boraccount.tmpl charges.tmpl intranet-main.tmpl modbibitem.tmpl moditem.tmpl overdue.tmpl reports.tmpl request.tmpl shelves.tmpl thesaurus_popup.tmpl Log Message: french version for 2.2.0 Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/about.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** about.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- about.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 2,96 ****
    !

    Data about the current version of Koha for bug reports (or general interest).

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Version Koha
    Version de l'OS (depuis 'uname -a) :
    version PERL :
    Version MySQL
    Version Apache :
    Crdits !

    Contributeurs principaux

    ! ! ! ! ! !
    ! Pat Eyler,Kaitiaki
    ! Paul Poulain, responsable de la version 2.2 (dveloppeur MARC)
    ! Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    ! Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    ! Nicholas Rosasco,(rdacteur de la documentation)
    ! Mike Hansen
    ! MJ Ray and Turo Technology LLP, England (quality control, installer & updater, 2.0 release maintainer)
    ! Nicolas Morin, traduction franaise
    !
    ! Groupement de bibliothques de Horowhenua : Rosalie Blake, directrice des bibliothques
    ! Jo Ransom
    ! Katipo Communications : Rachel Hamilton-Williams, General Manager (Webmistress), ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    !
    !

    Merci

    ! ! ! ! ! ! !
    ! Adam Thick
    ! Andrew Hooper
    ! Al Banks
    ! Ambrose Li
    ! Andrew Arensburger
    ! Benedykt P. Barszcz (Polonais pour version 2.0)
    ! Brig C. McCoy
    ! Daniel Holth
    ! David Strainchamps
    ! Dorian Meid
    !
    ! Ed Summers
    ! Florian Bischof
    ! Francisco M. Marzoa Alonso
    ! Glen Stewart
    ! Henri Damien Laurent
    ! Jrome Vizcaino (Esiee Paris)
    ! Kip DeGraaf
    ! Marco Gaiarin
    ! Md. Aftabuddin
    ! Michaes Herman
    !
    ! Michel Lerenard (Esiee)
    ! Mike Johnson
    ! Mike Mylonas
    ! Pierre Cauchois (Ecole Esiee)
    ! Pawel Skuza (Polonais pour la version 1.2)
    ! Regula Sebastiao
    ! Roger Buck
    ! Ron Wickersham
    ! Sebastiaan Durand
    !
    !
    --- 2,71 ----
    !

    Informations sur la version actuelle de Koha pour le rapport de bogues (ou d'intrt gnral).

    \t !
    !

    Information serveur

    !

    !

    !

    !

    !

    !
    !
    !

    Un merci particulier aux financeurs suivants

    !

    Groupement de bibliothques de Horowhenua : Rosalie Blake, directrice des bibliothques (Koha 1.0)

    !

    La Bibliothque Publique de Nelsonville (support MARC)

    !

    EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)

    !

    EMN (Ecole des Mines de Nantes) (modules suggestion et stats, support ldap amlior)

    !
    !
    !

    Contributeurs principaux pour la version 2.2

    !

    Rachel Hamilton-Williams, Kaitiaki

    !

    Paul Poulain, responsable de la version 2.2 (dveloppeur MARC)

    !

    Stephen Hedges et La Bibliothque Publique de Nelsonville (Financement du codage MARC)

    !

    Nicholas Rosasco,(rdacteur de la documentation)

    !

    Mike Hansen

    !

    MJ Ray et Turo Technology LLP, (contrle qualit, installation et mise jour, maintenance de la version 2.0)

    !

    Katipo Communications

    !
      !

      Rachel Hamilton-Williams, General Manager (Webmistress)

      !

      Chris Cormack, 1.2 release manager

      !

      et Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson,

      !

      Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine

      !
    !
    !
    !

    Merci

    !

    Adam Thick

    !

    Andrew Hooper

    !

    Al Banks

    !

    Ambrose Li (chinese & translation tool)

    !

    Andrew Arensburger (the small & great C4::Context module)

    !

    Benedykt P. Barszcz (Polonais pour version 2.0)

    !

    Brig C. McCoy

    !

    Daniel Holth

    !

    David Strainchamps

    !

    Dorian Meid (German translation)

    !

    doXulting (Matthieu Branlat) panier OPAC

    !

    Ed Summers (Some code and Perl packages like MARC::Record)

    !

    Esiee (Jrome Vizcaino, Michel Lerenard, Pierre Cauchois)

    !

    Florian Bischof

    !

    Francisco M. Marzoa Alonso

    !

    Glen Stewart

    !

    Henri Damien Laurent

    !

    Jo Ransom

    !

    Kip DeGraaf

    !

    Marco Gaiarin

    !

    Md. Aftabuddin

    !

    Michaes Herman

    !

    Mike Johnson

    !

    Mike Mylonas

    !

    Nicolas Morin, (traduction franaise 2.0)

    !

    Pawel Skuza (Polonais pour la version 1.2)

    !

    Regula Sebastiao

    !

    Roger Buck

    !

    Ron Wickersham

    !

    Sebastiaan Durand

    !

    Steve Tonnesen (prparation MARC, conception des Etagres virtuelles, KohaCD)

    !
    Index: auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/auth.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** auth.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- auth.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 18,22 **** !

    Vous avez saisi un nom d'utilisateur ou un mot de passe invalide. Merci de ressayer.

    --- 18,22 ---- !

    Vous avez saisi un nom d'utilisateur ou un mot de passe invalide. Merci de ressayer.

    Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookcount.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** bookcount.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- bookcount.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 5,9 **** ! CODE BARRE --- 5,9 ---- ! CODE A BARRES *************** *** 11,15 **** ! '>Site d'origine:
    Site Actuel:
    Date d'arrive au site actuel:
    --- 11,15 ---- ! Site d'origine:
    Site Actuel:
    Date d'arrive au site actuel:
    Index: boraccount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/boraccount.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** boraccount.tmpl 24 Nov 2004 16:22:25 -0000 1.6 --- boraccount.tmpl 5 Jan 2005 14:33:21 -0000 1.7 *************** *** 3,7 **** !

    Compte pour

    ">Crer une facture manuelle

    --- 3,7 ---- !

    Compte pour ">

    ">Crer une facture manuelle

    Index: charges.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/charges.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** charges.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- charges.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 4,9 ****

    ! Each box needs to be filled in with fine,time to start charging,charging cycle
    ! par exemple 1,7,7 signifie 1EUR d'amende, aprs 7 jours, tous les 7 jours.

    --- 4,9 ----

    ! Chaque cellule doit tre remplie avec l'amende, l'chance et la dure des charges
    ! par exemple 1,7,7 signifie 1EUR d'amende, aprs 7 jours, tous les 7 jours.

    Index: intranet-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/intranet-main.tmpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** intranet-main.tmpl 24 Nov 2004 16:22:25 -0000 1.8 --- intranet-main.tmpl 5 Jan 2005 14:33:21 -0000 1.9 *************** *** 74,78 ****

    Catalogue

    Recherche catalogue !

    Search a biblio. When this biblio is found, you can check its status, reserve it, or see where it is

    Ajouter une notice

    Ajouter directement une notice au catalogue de la bibliothque

    --- 74,78 ----

    Catalogue

    Recherche catalogue !

    Rechercher une notice.Quand ce document est trouv, vous pouvez vrifier son tat, faire une rservation, ou bien voir o il se trouve

    Ajouter une notice

    Ajouter directement une notice au catalogue de la bibliothque

    *************** *** 80,86 ****

    Gestion des abonnements et des priodiques

    Etagres Virtuelles !

    Virtual shelves can be used by librarian or patrons to build virtual libraries inside the "real" one. ! The virtual shelf can be used by a teacher to help his/her students searching information on a specific topic. ! It can be used by a library to define "most valuable books for <some category of patron>"

    --- 80,84 ----

    Gestion des abonnements et des priodiques

    Etagres Virtuelles !

    Les tagres virtuelles peuvent tre utilises par des bibliothcaires ou des usagers pour constituer des bibliothques virtuelles au sein de la vraie. L'tagre virtuelle peut tre utilis par un enseignant pour aider ses lves dans la recherche d'information sur un sujet particulier.On peut l'utiliser dans une bibliothque pour indiquer des listes de documents (les plus emprunts, les plus reprsentatifs...).

    *************** *** 107,122 ****

    Aller la page principale des lecteurs

    Ajouter une inscription !

    Add a member in the library. The member can be attached to any branch of the library. He or she can also have children.

    Ajouter une collectivit !

    Add an organisation in the library. This member doesn't have some information a "physical" member has.

    Acquisitions

    ! Lignes de Commande, recevoir des commandes, tablir des budgets...
    !

    Rapports

    ! Tous les rapports systme
    --- 105,120 ----

    Aller la page principale des lecteurs

    Ajouter une inscription !

    Ajouter un lecteur la bibliothque.Le lecteur peut-tre rattach n'importe quel site de la bibliothque.Il ou elle peut aussi avoir des enfants

    Ajouter une collectivit !

    Ajouter une collectivit la bibliothque.Cette inscription ne peut contenir les mmes informations que pour une personne physique.

    Acquisitions

    ! Commander des documents, recevoir des commandes, tablir des budgets...
    !

    Bilans

    ! Tous les bilans du systme
    *************** *** 126,136 ****

    Prt

    ! Work at the front desk on Issues and returns using only a barcode reader and a mouse
    --- 124,134 ----

    Prt

    ! A la banque de prt, effectuez les prts et les retours, en utilisant uniquement un lecteur de code barre et une souris
    *************** *** 145,149 **** Autorits
    ! Rapports
    Paramtres
    --- 143,147 ---- Autorits
    ! Bilans
    Paramtres
    Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/modbibitem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** modbibitem.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- modbibitem.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 36,40 ****
    ! --- 36,40 ---- ! *************** *** 68,78 **** ! ! --- 68,78 ---- ! ! *************** *** 99,104 **** ! HELP: You must click on the appropriate radio button (in the green boxes), and choose to either re-assign the item/s to a record already in the system, or modify this record. IF your changes only apply to some ! items, tick the appropriate ones and a new group record will be created automatically for them.

     

    --- 99,103 ---- ! AIDE:Vousdevezcliquer sur le bouton adquat (dans les pavs verts), et choisir soit de dplacer le(s) exemplaire(s)vers un enregistrement dj existant dans la base, soit de modifier cet enregistrement. Si vos modifications ne concernent que quelques exemplaires, pointer ceux qui sont concerns et une nouvelle notice sera cre automatiquement pour eux.

     

    Index: moditem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/moditem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** moditem.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- moditem.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 5,9 **** - ! ! --- 20,27 ---- "> ! ! *************** *** 35,48 **** !
    Editeur" size="20">
    Localisation" size="20">
    Editeur" size="20">
    Emplacement" size="20">
    LES MODIFICATIONS VONT AFFECTER CES CODES BARRES
    ! Tick ALL barcodes that changes are to apply too. Those left un-ticked will keep the original group record.
     Code Barre Localisation Date de retour
    LES MODIFICATIONS VONT AFFECTER CES CODES A BARRES
    ! Pointez TOUS les codes-barres auquels les changements s'appliquent.
     Code Barres Localisation Date de retour
    ! "> "> --- 5,9 ---- --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Mon Jan 10 17:49:19 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 08:49:19 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29393/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: member.tmpl Log Message: Removing accidentally-hardcoded member number Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** member.tmpl 27 Oct 2004 15:35:03 -0000 1.4 --- member.tmpl 10 Jan 2005 16:49:17 -0000 1.5 *************** *** 31,35 **** --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Mon Jan 10 18:00:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 09:00:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters marc_subfields_structure.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32072/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: marc_subfields_structure.tmpl Log Message: Synching with default tempalte Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** marc_subfields_structure.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- marc_subfields_structure.tmpl 10 Jan 2005 17:00:30 -0000 1.3 *************** *** 4,120 **** Data Deleted MARC Subfield Structure for '' ! !
    ! ! ! !
    " name="Aform" method="post"> !

    !
    Code Barre" size="40">
    ! "> "> Index: overdue.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/overdue.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** overdue.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- overdue.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 6,10 **** ! --- 6,10 ---- ! Index: reports.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** reports.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- reports.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 1,5 **** !

    rapports

    --- 1,5 ---- !

    bilans

    Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/request.tmpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** request.tmpl 24 Nov 2004 16:22:26 -0000 1.7 --- request.tmpl 5 Jan 2005 14:33:21 -0000 1.8 *************** *** 103,107 **** --- 103,107 ---- Index: shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/shelves.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** shelves.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- shelves.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 32,36 **** --- 95,99 ---- From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/authorities authorities.tmpl,1.1,1.2 searchresultlist-auth.tmpl,1.1,1.2 searchresultlist.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/authorities Modified Files: authorities.tmpl searchresultlist-auth.tmpl searchresultlist.tmpl Log Message: french version for 2.2.0 Index: authorities.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/authorities.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** authorities.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- authorities.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 15,19 **** -

    --- 15,18 ---- *************** *** 134,139 **** alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(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 { --- 133,138 ---- alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_missing_mandatory_tags +_("Champ(s) obligatoire(s) non renseign(s)"); ! alertString2 += "\n- "+ total_missing_mandatory_subfields +_("champs obligatoires non renseigns (voir les champs en caractre gras)"); alert(alertString2); } else { Index: searchresultlist-auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/searchresultlist-auth.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist-auth.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- searchresultlist-auth.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 60,64 ****
    Code Barres" size="40">
    Date de retourUsager Tlphone Titre
    Date de retourEmprunteur Tlphone Titre ! "> ! ">
    ! ajouter un livre par code barre dans : --- 32,36 ----
    ! Ajouter un livre par code barre dans : Index: thesaurus_popup.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/thesaurus_popup.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** thesaurus_popup.tmpl 24 Nov 2004 16:22:26 -0000 1.5 --- thesaurus_popup.tmpl 5 Jan 2005 14:33:21 -0000 1.6 *************** *** 33,37 **** "> ! Ajouter une nouvelle autorit --- 33,37 ---- "> ! Ajouter une nouvelle autorit: From tipaul at users.sourceforge.net Wed Jan 5 15:34:36 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:34:36 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/maint - New directory Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27952/koha-tmpl/intranet-tmpl/default/fr/maint Log Message: Directory /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint added to the repository From tipaul at users.sourceforge.net Wed Jan 5 15:35:23 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:23 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/maint catmaintain.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/maint Added Files: catmaintain.tmpl Log Message: french version for 2.2.0 --- NEW FILE --- "" onclick="messenger('/cgi-bin/koha/maint/catmaintain.pl?type=modsub&sub=');window1.focus()">"
    Sujet:" name="sub" size="40">
    ">

    Cela changera la vedette-sujet dans toutes les notices o ce sujet est utilis. Modification russie est maintenant
    TitreAuteurReprendre
    ">Reprendre
    Annulation de suppression russie

    Retour la Maintenance du Catalogue

    "> Type de document : ">
    Mise jour russie

    Retour la Maintenance du Catalogue Maintenance des Sujets

    Voir tous les sujets commenant par

    Maintenance des groupes

    Voir tous les Titres commenant par
    Numro de l'exemplaire

    Reprendre Notice

    Voir tous les Titres commenant par
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/user userpage.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/user Modified Files: userpage.tmpl Log Message: french version for 2.2.0 Index: userpage.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/user/userpage.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** userpage.tmpl 24 Nov 2004 16:21:16 -0000 1.3 --- userpage.tmpl 5 Jan 2005 14:35:22 -0000 1.4 *************** *** 19,23 ****

    ! Vous avez reserv les ouvrages en prt suivants :

    • The Amazing Apple Book by Paulette Bourgeois --- 19,23 ----

    ! Vous avez rserv les documents suivants :

    • The Amazing Apple Book by Paulette Bourgeois *************** *** 56,60 **** Prvenez moi de retards par messagerie (e-mail)
      Garder un enregistrement des livres que j'ai lu
      ! Autoriser l'quipe de la bibliothque consulter la liste de mes emprunts
    --- 56,60 ---- Prvenez moi de retards par messagerie (e-mail)
    Garder un enregistrement des livres que j'ai lu
    ! Autoriser l'quipe de la bibliothque consulter la liste de mes emprunts
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/search.marc result.tmpl,1.5,1.6 search.tmpl,1.6,1.7 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/search.marc Modified Files: result.tmpl search.tmpl Log Message: french version for 2.2.0 Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc/result.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** result.tmpl 24 Nov 2004 16:19:00 -0000 1.5 --- result.tmpl 5 Jan 2005 14:35:22 -0000 1.6 *************** *** 7,39 ****

    Rsultats de recherche

    ! --- 7,17 ----

    Rsultats de recherche

    Abrg Nombre d'exemplaires Localisation
    ! *************** *** 42,54 **** ! ! class="hilighted"> ! "> ! ">

    - *************** *** 88,106 ****

    --- 62,67 ---- Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc/search.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** search.tmpl 24 Nov 2004 16:19:00 -0000 1.6 --- search.tmpl 5 Jan 2005 14:35:22 -0000 1.7 *************** *** 8,100 ****

    Recherche Catalogue

    !
    "> !

    Rechercher sur

    ! ! " /> ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! !

    ! ! ! ! !

    !

    Autres options

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    --- 8,100 ----

    Recherche Catalogue

    ! "> !

    Rechercher sur

    ! ! "> ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! !

    ! ! ! ! !

    !

    Autres options

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    *************** *** 125,139 ****

    ! ! Warning : the "contains" statement does NOT work if you enter 2 or less letters !

    !

    !

    ! !
    !

    Rsultats par page : ! ! Attention : l'option "contient" NE FONCTIONNE PAS si vous n'indiquez pas au moins 3 caractres.

    !
    !

    Rsultats par page : ! ! Suggestions

    --- 147,151 ----

    ! Suggestions

    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/suggestion acceptorreject.tmpl,1.1,1.2 mail_suggestion_ACCEPTED.tmpl,1.1,1.2 mail_suggestion_AVAILABLE.tmpl,1.1,1.2 mail_suggestion_ORDERED.tmpl,1.1,1.2 mail_suggestion_REJECTED.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/suggestion Modified Files: acceptorreject.tmpl mail_suggestion_ACCEPTED.tmpl mail_suggestion_AVAILABLE.tmpl mail_suggestion_ORDERED.tmpl mail_suggestion_REJECTED.tmpl Log Message: french version for 2.2.0 Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/acceptorreject.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acceptorreject.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- acceptorreject.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 24,28 ****

    -

    ! Anne de copyright volume : ISBN : --- 24,28 ----

    -

    ! Anne de copyright volume : ISBN : Index: mail_suggestion_ACCEPTED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_ACCEPTED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_ACCEPTED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_ACCEPTED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . reviewed your suggestion today, and found it interesting. The item will be ordered as soon as possible. You will be notified by mail when the order is completed, and again when the book arrives at the library. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par a examin votre suggestion aujourd'hui, et l'a trouve intressante. Le document sera achet ds que possible. Vous serez alert par messagerie lorsque l'acquisition sera ralise, puis avertis par messagerie nouveau lorsque le document sera la bibliothque. Pour toute question, adressez- vous . Merci, \ No newline at end of file Index: mail_suggestion_AVAILABLE.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_AVAILABLE.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_AVAILABLE.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_AVAILABLE.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . We are pleased to inform you that the item is now part of the collection of the Nelsonville Public Library. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . Nous sommes heureux de vous annoncer que le *** est maintenant dans la la bibliothque. Si vous avez une question, n'hsitez pas nous crire . Merci \ No newline at end of file Index: mail_suggestion_ORDERED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_ORDERED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_ORDERED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_ORDERED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . We are pleased to inform you that the book has now been ordered. It should arrive soon, at which time it will be processed for addition to the collection. You will be notified again when the book is available. If you have any questions, please email us at Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par Nous avons le plaisir de vous informer que le livre a t command.Il devrait arriver bientt la bibliothque.Nous vous enverrons un autre mail quand le livre sera disponible. Pour toute question, envoyez nous un message lectronique . Merci \ No newline at end of file Index: mail_suggestion_REJECTED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_REJECTED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_REJECTED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_REJECTED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . reviewed your request today, and has decided not to accept the suggestion at this time. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . a trait votre demande aujourd'hui et a dcid de ne pas accepter votre suggestion. Si vous une question, n'hsitez pas nous crire . Merci \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/reports inventory.tmpl,1.2,1.3 issues_by_borrower_category.tmpl,1.1,1.2 itemtypes.tmpl,1.1,1.2 reports-home.tmpl,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/reports Modified Files: inventory.tmpl issues_by_borrower_category.tmpl itemtypes.tmpl reports-home.tmpl Log Message: french version for 2.2.0 Index: inventory.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/inventory.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** inventory.tmpl 24 Nov 2004 16:19:00 -0000 1.2 --- inventory.tmpl 5 Jan 2005 14:35:22 -0000 1.3 *************** *** 5,14 ****

    Slectionnez les exemplaires que vous souhaitez vrifier

    ! Localisation de l'exemplaire (items.itemcallnumber) entre "> et ">

    ">

    !

    " maxlength="5" size="5"> exemplaires commenant au " size="5" maxlength="5">

    --- 5,14 ----

    Slectionnez les exemplaires que vous souhaitez vrifier

    ! Cote de l'exemplaire ((items.itemcallnumber) entre "> et ">

    ">

    !

    " maxlength="5" size="5"> exemplaires commenant au " size="5" maxlength="5">

    *************** *** 29,33 ****
    ! --- 29,33 ---- ! Index: issues_by_borrower_category.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/issues_by_borrower_category.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** issues_by_borrower_category.tmpl 24 Nov 2004 16:19:00 -0000 1.1 --- issues_by_borrower_category.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 40,44 ****

    Prts par catgories de lecteurs

    !

    Select a borrower category (or don't if you want to see global status)

    Slectionnez une annexe :

    --- 40,44 ----

    Prts par catgories de lecteurs

    !

    Slectionner une catgorie de lecteur (ou rien si vous souhaitez visualiser l'tat global)

    Slectionnez une annexe :

    Index: itemtypes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/itemtypes.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** itemtypes.tmpl 24 Nov 2004 16:19:00 -0000 1.1 --- itemtypes.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 23,27 ****

    Voir le catalogue par type de document

    ! Slectionner une annexe (ou rien si vous souhaitez le rapport pour toutes les annexes) "> --- 23,27 ----

    Voir le catalogue par type de document

    ! Slectionner une annexe (ou rien si vous souhaitez le rapport pour toutes les annexes) "> Index: reports-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/reports-home.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** reports-home.tmpl 24 Nov 2004 16:19:00 -0000 1.5 --- reports-home.tmpl 5 Jan 2005 14:35:22 -0000 1.6 *************** *** 2,10 ****
    !

    Rapports

    • Cas rgls: Rapport quotidien (hier)
    • Cas rgls: Rapport quotidien (aujourd'hui)
    • !
    • Ouvrages en retard
    • Inventaire/rcolement
    • Recherche par Type de document
    • --- 2,10 ----
      !

      Bilans

      • Cas rgls: Rapport quotidien (hier)
      • Cas rgls: Rapport quotidien (aujourd'hui)
      • !
      • Documents en retard
      • Inventaire/rcolement
      • Recherche par Type de document
      • From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/value_builder unimarc_field_225a.tmpl,1.3,1.4 unimarc_field_60X.tmpl,1.4,1.5 unimarc_field_700-4.tmpl,1.3,1.4 unimarc_field_700_701_702.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/value_builder Modified Files: unimarc_field_225a.tmpl unimarc_field_60X.tmpl unimarc_field_700-4.tmpl unimarc_field_700_701_702.tmpl Log Message: french version for 2.2.0 Index: unimarc_field_225a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_225a.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_225a.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_225a.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 1,16 **** ! ! ! Constructeur de champ UNIMARC 225a ! !
    Rsum Nombre d'exemplaires Localisation
    class="hilighted"> !

    !

    ! "> ! "> ! !

    - --- 20,28 ----

    VuCode Barre Cote Titre
    VuCode Barres Cote Titre
    ! ! ! ! ! !
    Selectionnez une collection
    ! ! ! --- 17,19 ---- } ! Index: unimarc_field_60X.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_60X.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** unimarc_field_60X.tmpl 24 Nov 2004 16:21:17 -0000 1.4 --- unimarc_field_60X.tmpl 5 Jan 2005 14:35:23 -0000 1.5 *************** *** 1,5 **** ! Recherche Thsaurus --- 1,5 ---- ! Thesaurus search *************** *** 38,42 ****
    !

    Rponses

    --- 38,42 ---- ! --- 32,36 ---- ! From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/barcodes barcodes-bottom.inc,1.1,1.2 barcodes-top.inc,1.1,1.2 barcodes.tmpl,1.1,1.2 printerConfig.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/barcodes Modified Files: barcodes-bottom.inc barcodes-top.inc barcodes.tmpl printerConfig.tmpl Log Message: french version for 2.2.0 Index: barcodes-bottom.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes-bottom.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes-bottom.inc 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes-bottom.inc 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 8,12 **** Acquisitions || Prt || ! Rapports || Paramtres || A propos || --- 8,12 ---- Acquisitions || Prt || ! Bilans || Paramtres || A propos || Index: barcodes-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes-top.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes-top.inc 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes-top.inc 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 204,212 **** --- 204,212 ---- Index: barcodes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes.tmpl 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 41,56 ****
    !

    Gnrateur de code-barres

    !

    Results

    *************** *** 57,61 ****
    !

    Dpendances

    --- 57,61 ----
    !

    Dependancies

    *************** *** 73,82 ****
    !

    Ajout en cours

    "> "> ! Crer une nouvelle autorit/entre au thsaurus : ">
    --- 73,82 ----
    !

    Adding

    "> "> ! Create a new authority/thesaurus entry : ">
    Index: unimarc_field_700-4.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_700-4.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_700-4.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_700-4.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 11,15 **** ! --- 11,15 ---- ! Index: unimarc_field_700_701_702.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_700_701_702.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_700_701_702.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_700_701_702.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 1,5 **** ! Constructeur d'autorit nom de personne --- 1,5 ---- ! Personal Authorities builder *************** *** 14,18 **** "> "> ! --- 14,18 ---- "> "> ! *************** *** 30,34 **** "> ! Ajouter une nouvelle autorit --- 30,34 ---- "> ! Ajouter une nouvelle autorit: "> From tipaul at users.sourceforge.net Wed Jan 5 15:35:53 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:53 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/circ branchtransfers.tmpl,1.6,1.7 circulation.tmpl,1.10,1.11 returns.tmpl,1.6,1.7 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/circ Modified Files: branchtransfers.tmpl circulation.tmpl returns.tmpl Log Message: french version for 2.2.0 Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/branchtransfers.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** branchtransfers.tmpl 24 Nov 2004 16:14:37 -0000 1.6 --- branchtransfers.tmpl 5 Jan 2005 14:35:19 -0000 1.7 *************** *** 6,10 ****

    Prt : Transferts

    ! Site: Imprimante: Changer Paramtres "> "> --- 6,10 ----

    Prt : Transferts

    ! Site: Imprimante: Changer Rglages "> "> *************** *** 84,88 **** ! Pas d'exemplaire avec code barre : --- 84,88 ---- ! Pas d'exemplaire avec code barres : *************** *** 106,110 ****

    !

    Entrez le Code Barre du document : Code Barre du document: > --- 106,110 ----

    !

    Entrez le Code Barres du document : Code Barres du document: > *************** *** 120,124 **** !
    Exemplaires transfrs
    Code BarreTitreAuteurTypeDe
    "> --- 120,124 ---- ! ! --- 231,235 ---- ! *************** *** 253,257 **** ! --- 260,264 ---- ! Index: returns.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/returns.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** returns.tmpl 24 Nov 2004 16:14:38 -0000 1.6 --- returns.tmpl 5 Jan 2005 14:35:19 -0000 1.7 *************** *** 4,8 ****

    Prt: Retours

    ! Site: , Imprimante: Changer Paramtres

    --- 4,8 ----

    Prt: Retours

    ! Site: , Imprimante: Changer Rglages

    *************** *** 11,15 ****

    Exemplaire marqu 'En attente' :

    !

    Le document () est not en attente pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).
    --- 11,15 ----

    Exemplaire marqu 'En attente' :

    !

    Le document () est not en attente pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">). *************** *** 25,29 ****

    Exemplaire marqu 'En attente' :

    ! Item: () needs to be transfered to to be picked up by (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).

    --- 25,29 ----

    Exemplaire marqu 'En attente' :

    ! L'exemplaire: () doit tre transfr pour tre retir par (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).

    *************** *** 43,47 ****

    Rservation trouve

    !

    Item: () &type=intra" onclick="openWindow('/cgi-bin/koha/detail.pl?bib=&type=intra', 'Item'); return false;"> for (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false">) to be collected at .

    --- 43,47 ----

    Rservation trouve

    !

    Exemplaire : () &type=intra" onclick="openWindow('/cgi-bin/koha/detail.pl?bib=&type=intra', 'Item'); return false;"> pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false">) peut tre retir .

    *************** *** 84,89 ****

    !

    Entrez le code barre du livre

    !
    Exemplaires transfrs
    Code BarresTitreAuteurTypeDe
    "> Index: circulation.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/circulation.tmpl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** circulation.tmpl 24 Nov 2004 16:14:38 -0000 1.10 --- circulation.tmpl 5 Jan 2005 14:35:19 -0000 1.11 *************** *** 1,5 ****
    !

    Circulation : prts

    !

    Prt : Sorties

    , Imprimante: Changer Paramtres

    --- 11,15 ----

    Paramtres

    ! Site: , Imprimante: Changer Rglages

    *************** *** 41,45 ****

    Catgorie :

    !

    Prts, En retard

    --- 41,45 ----

    Catgorie :

    !

    Sorties, En retard

    *************** *** 65,70 ****
    !

    Entrez le code barre du livre

    !

    Code Barre de l'exemplaire :

    Annuler rservation

    + + +

    Annuler rservation

    + "> "> *************** *** 203,206 **** --- 209,213 ---- "> + " class="button circulation">Ne pas prter
    *************** *** 224,228 ****
    Date de retourCode Barre Titre Auteur
    Date de retourCode Barres Titre Auteur
    Date de retourCode Barre Titre Auteur
    Date de retourCode Barres Titre Auteur
    --- 84,89 ----
    !

    Entrez le code barres du livre

    !
    *************** *** 100,104 **** ! Pas d'exemplaire avec code barre : --- 100,104 ---- ! Pas d'exemplaire avec code barres : *************** *** 119,123 ****

    !

    Information sur l'ouvrage rendu

    Titre :

    Information lecteur

    --- 119,123 ----
    !

    Information sur le document rendu

    Titre :

    Information lecteur

    *************** *** 162,174 ****
    !

    Ouvrages rendus

    ! ! --- 162,174 ----
    !

    Documents rendus

    Date de retourCode Barre Titre Auteur TypeLecteur
    ! ! From tipaul at users.sourceforge.net Wed Jan 5 15:35:53 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:53 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help bull-home.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help Modified Files: bull-home.tmpl Log Message: french version for 2.2.0 Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 24 Nov 2004 16:15:50 -0000 1.1 --- bull-home.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 2,11 ****

    Aide de Abonnement Priodiques

      !
    • Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York
    • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement
    • Lorsque vous avez trouv l'abonnement que vous cherchez, vous pouvez:
      • Voir les dtails de l'abonnement
      • !
      • Recieve any item and/or manage what appears in subscription summary (in OPAC & librarian interface)
      \ No newline at end of file --- 2,11 ----

      Aide de Abonnement Priodiques

        !
      • Chercher un abonnement en utilisant le bouton (avec un ISSN ou un titre)Si vous saisissez un titre, vous pouvez utiliser le joker % : %Monde% renverra tous les abonnement contenant Monde dans le titre
      • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement
      • Lorsque vous avez trouv l'abonnement que vous cherchez, vous pouvez:
        • Voir les dtails de l'abonnement
        • !
        • Recevoir chaque numro et/ou gr ce qui s'affiche dans le rsum de l'abonnement ( l'OPAC et dans l'interface bibliothcaire)
        \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves addbookbybiblionumber.tmpl,1.2,1.3 shelves.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/bookshelves Modified Files: addbookbybiblionumber.tmpl shelves.tmpl Log Message: french version for 2.2.0 Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** addbookbybiblionumber.tmpl 24 Nov 2004 16:13:32 -0000 1.2 --- addbookbybiblionumber.tmpl 5 Jan 2005 14:35:18 -0000 1.3 *************** *** 6,11 ****

        !

        ! --- 6,19 ----

        !

        !

        ou ajouter une nouvlle tagre virtuelle

        !

        ! !

        ! Index: shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves/shelves.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** shelves.tmpl 24 Nov 2004 16:13:33 -0000 1.2 --- shelves.tmpl 5 Jan 2005 14:35:18 -0000 1.3 *************** *** 4,63 ****
        !
    Date de retourCode Barres Titre Auteur TypeEmprunteur
    ! ! ! ! ! ! ! ! ! ! !
    ! Contenus de !
    ">">">">">
    !
    ! Liste des tagres ! "> ! ! "> ! ! ! !
    ! "> ! ! "> ! ! ! ! ! !
    ! ajouter un livre par code barre dans : ! ! ! ! "> ! !
    !
    !

    !

    -

    Etagres

    Slectionner les Etagres Supprimer

    --- 4,64 ----
    !

    ! !
    !

    Contenu des Etagres

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    supprimerCode BarresTitreAuteur
    ">">">">">">
    ! "> ! ! "> ! ! ! !
    !
    !
    !

    Ajouter un livre par code barre

    ! "> ! ! "> ! ! ! "> ! !
    !
    + +

    Etagres

    !

    !

    Slectionner les Etagres Supprimer

    *************** *** 70,74 **** "> ! ( livres)

    --- 71,75 ---- "> ! "> ( document(s))

    *************** *** 92,98 ****

    !

  • une tagre prive est gre par vous et peut tre vue uniquement par vous- mme.
  • !
  • Une tagre publique peut-tre vue par tout le monde, mais gre uniquement par vous-mme
  • !
  • Une tagre libre peut-tre gre par tous les usagers
  • --- 93,99 ----

    !

  • une tagre prive est gre par vous et peut tre vue uniquement par vous- mme.
  • !
  • Une tagre publique peut-tre vue par tout le monde, mais gre uniquement par vous-mme
  • !
  • Une tagre libre peut-tre gre par tous les utilisateurs.
  • *************** *** 104,128 ****

    ! ! ! ! ! ! ! ! ! !
    ! Liste des Etagres !
    "> ! "> ! ( livres) ! !
    !

    Ajouter ou supprimer des tagres virtuelles !

    --- 105,191 ----
    !
    !

    Liste des tagres

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Nom de l'tagreCatgorieContenuModifier
    "> ! "> ! ! ! "> ! ! Priv ! ! ! Publique ! ! ! Libre ! ! "> ! documents ! "> ! " class="button catalogue">Modifier !
    !
    ! + + +
    +
    + +

    Modifier l'tagre

    + "> +

    ">

    +

    ">

    +

    + +

    +

  • une tagre prive est gre par vous et peut tre vue uniquement par vous- mme.
  • +
  • Une tagre publique peut-tre vue par tout le monde, mais gre uniquement par vous-mme
  • +
  • Une tagre libre peut-tre gre par tous les utilisateurs.
  • +

    +

    + +

    + +
    +
    +
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/circ circulation.tmpl,1.1,1.2 returns.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/circ Modified Files: circulation.tmpl returns.tmpl Log Message: french version for 2.2.0 Index: circulation.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ/circulation.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** circulation.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- circulation.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,11 **** !

    Circulation : prts

    !

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations from a workstation, after which a browser cookie will remember the correct settings. If you do circulations under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb) and the statistical reports will credit all circulations to the wrong branch.

    !

    Now start by scanning the borrower's barcode or type in their name to find their account. Once Koha has found the borrower, you will see a new form for scanning or typing the item's identifying number (usually a barcode).

    !

    If you wish to have this item and all subsequent items in this transaction to have a date due other than the default date due defined for the item type, use the "Sticky Due Date" to set the date due before scanning the first item.

    !

    If the issuing has nothing specific, it will be done immediatly and shown (with other borrower issues) at bottom.

    !

    If the issuing is problematic, then another box will appear (in RED) and ask for confirmation if possible. If the issuing is really impossible (for example, the barcode does not exist), then you can't confirm the issue. If it is possible but has something that needs confirmation (like item being issued to another borrower, or borrower having issued too many items), then you must confirm the issuing. If the confirmation means another operation (if item is issued to another borrower, then issuing also means make the return), then it's also done

    --- 1,11 ---- !

    Prt/Aide des sorties

    !

    Avant de commencer, il est trs important que vous verifiez le site et l'imprimante choisis et que vous les changiez si ncessaire.Cela devra tre fait seulement la premire fois que vous ferez du prt (ou des retours) partir d'un poste de travail, ensuite un cookie du navigateur mmorisera le rglage correct.

    !

    Maintenant commencez par scanner le code barres du lecteur ou tapez son nom pour trouver leur compte.Lorsque Koha a trouv un lecteur, vous verrez un nouveau pav pour scanner ou taper le numro identifiant le document (en gnral un code barres).

    !

    Si vous souhaitez que ce document et les documents suivants de cette transaction aient une date de retour autre que la date par dfaut dfinie pour ce type de document utilisez la "date de retour manuelle" pour choisir la date de retour avant de scanner le premier document.

    !

    Si le prt n'a rien de spcial, il sera fait immdiatement et affich (avec les autres emprunts du lecteur)en bas de la page.

    !

    Si le prt pose problme, alors un autre pav apparatra (en ROUGE) et vous demandera de confirmer que le prt est possible.Si le prt est vraiment impossible (par exemple le code barres n'existe pas), alors vous ne pouvez pas le confirmer.Si le prt est possible mais ncessite confirmation (comme pour un document prt un autre lecteur, ou un lecteur ayant emprunt trop de docuements), vous pourrz alors confirmer le prt.Si la confirmation implique une autre opration (si le document est prt un autre lecteur, le prt implique que le retour soir fait), alors elle sera aussi effectue.

    Index: returns.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ/returns.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** returns.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- returns.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,9 **** !

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations (or returns) from a workstation, after which a browser cookie will remember the correct settings. If you do returns under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb).

    !

    Now simply scan or type the returned item's identifying number (usually a barcode) in the box provided.

    !

    The return is done and if there is something specific for the item or the borrower (like borrower having debts), a red box will warn you

    !

    If the item has been requested by someone else, you also are asked to validate the request. If you confirm it, item is changed to a "waiting" status and you should warn the borrower that the item is available

    !

    If the item is requested by someone in anothe branch, then you must validate the transfer too

    --- 1,9 ---- !

    Avant de commencer, il est trs important que vous verifiez le site et l'imprimante choisis et que vous les changiez si ncessaire. Cela devra tre fait seulement la premire fois que vous ferez du prt (ou des retours) partir d'un poste de travail, ensuite un cookie du navigateur mmorisera le rglage correct.

    !

    Maintenant scannez simplement ou tapez le numro identifiant du document (habituellement un code barres)dans le pav propos.

    !

    Le retour est fait et s'il y a quelque chose de particulier sur le document ou l'emprunteur (comme un emprunteur ayant des dettes), un pav rouge vous en avertira

    !

    Si le document a t rserv par quelqu'un d'autre, on vous demandera aussi de valider la rservation.Si vous la confirmez, le document est mis l'tat "en attente" et vous devrez avertir le lecteur que le docuement est disponible.

    !

    Si le document est rserv par quelqu'un d'un autre site, vous devez aussi valider le transfert

    From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/import breeding.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/import In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/import Modified Files: breeding.tmpl Log Message: french version for 2.2.0 Index: breeding.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/import/breeding.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** breeding.tmpl 24 Nov 2004 16:16:53 -0000 1.4 --- breeding.tmpl 5 Jan 2005 14:35:20 -0000 1.5 *************** *** 6,12 ****

      enregistrements imports

      !

      non import parce que dj dans la base de donne

      non import,parce que dj dans le rservoir

      !

      not imported because they seems not to be MARC format (or ISBN/ISSN missing) !

      enregistrements traits

      Retour --- 6,12 ----

        enregistrements imports

        !

        non import parce que dj dans la base de donnes

        non import,parce que dj dans le rservoir

        !

        non import parce qu'ils ne semblent pas tre au format MARC (ou n ISBN/ ISSN manquant) !

        enregistrements traits

        Retour *************** *** 14,21 ****

          !
        • Select a file to import into the breeding farm. It will be parsed, and for each ISBN found, a new baby will be created in the breeding farm.
        • !
        • If an ISBN already exists in the breeding farm, you can choose whether to ignore the new one or overwrite the old one.
        • !
        • You can enter a name for this import. It may be useful, when creating a biblio, to remember where the suggested MARC data comes from!
        • !
        • Of course, if the ISBN already exists in the active DB, the biblio will be ignored.
        " enctype="multipart/form-data"> --- 14,21 ----
          !
        • Slectionner un fichier importer dans le rservoir.Il sera analys, et pour chaque ISBN trouv, une nouvelle copie sera cr dans le rservoir.
        • !
        • Si un ISBN existe dj dans le rservoir, vous pouvez choisir soit d'ignorer le nouveau soit d'craser l'ancien.
        • !
        • Vous pouvez donner un nom cette importation. Cela peut tre utile, lors de la cration d'une notice, pour vous souvenir d'o vient l'enregistrement MARC propos!
        • !
        • Bien sr, si l'ISBN existe dj dans la base de donnes, la notice sera ignore.
        " enctype="multipart/form-data"> From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc search.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/search.marc Modified Files: search.tmpl Log Message: french version for 2.2.0 Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- search.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 3,27 ****

        La recherche est divise en deux parties diffrentes :

        Champs usuels

        !

        Les champs usuels sont dans la partie haute de l'cran. Ils contiennent :

          !
        • Mot cl : Recherche sur l'ensemble
        • Titre
        • Auteur
        • !
        • Code Barre : le code barre de la biblothque pour le livre
        • Illustrateur
        • Dewey
        • !
        • Item type : select here an item type. If none is selected, the search is done on every item type
        • !
        • Branch : select here a specific branch. If none selected, the search is done on every branch

        Mthode de Recherche

          !
        • If you enter values in more than 1 field, the search is "and-ed" (biblios that contains title AND author)
        • !
        • Une notice est slectionne si son champ contientle terme que vous avez saisi
        • !
        • If you enter a * (or a %) at the end of a term, Koha search for words starting with your term (entering infrieur* signifie : trouver les notices qui ont un titre contient un mot commenant par lower

        Recherche MARC

        !

        In the lower part of the search screen, the More fields box let you enter whatever you want : and, or, exclusions (not), search on any MARC field/subfield

        !

        REMARQUE IMPORTANTE : for performance reasons, the * is valid only if you enter a word more than 3 letters long. for words of 3 letters or less, the * is ignor


        \ No newline at end of file --- 3,27 ----

        La recherche est divise en deux parties diffrentes :

        Champs usuels

        !

        Les champs usuels sont dans la partie haute de l'cran. Ils contiennent :

          !
        • Tous les mots : recherche sur l'ensemble de la notice
        • Titre
        • Auteur
        • !
        • Code Barres : le code barres de la biblothque pour le livre
        • Illustrateur
        • Dewey
        • !
        • Type de document : slectionnez ici un type de document. Si aucun n'est slectionn, la recherche est lance sur tous les types
        • !
        • Site : Slectionnez un site prcis.Si vous n'en slectionnez aucun, la recherche se fera sur tous les sites

        Mthode de Recherche

          !
        • Si vous renseignez plus d'un champ, votre recherche sera de type "et" (les notices contenant titre ET auteur)
        • !
        • Une notice est slectionne si son champ contientle terme que vous avez saisi
        • !
        • Si vous saisissez un * (ou un %) la fin d'un terme, Koha recherche les mots qui commencent par le terme saisi infrieur* signifie : trouver les notices qui ont un titre contient un mot commenant par lower

        Recherche MARC

        !

        Dans la partie infrieure de l'cran de recherche, le pav Plus de champs, vous permet de saisir ce que vous voulez : et, ou, non (exclusions), recherche sur tous les champs/sous-champs MARC

        !

        REMARQUE IMPORTANTE : Pour des raisons d'efficacit l'* est active uniquement si vous entrez un mot d'au moins 3 lettres.pour les mots de 3 lettres ou moins, l'* est ignore ignor


        \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/import breeding.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/import In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/import Modified Files: breeding.tmpl Log Message: french version for 2.2.0 Index: breeding.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/import/breeding.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** breeding.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- breeding.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 2,13 ****

        Importer cette notice

        This is one of the screens you will see frequently if you are starting from scratch.

        !

        It is useful to import a bunch of iso2709 biblios that can be used later for a quick cataloguing

        !

        First, you need to browse your computer to find the MARC record that you grabbed for your item. Click on

        !

        Choose File to browse.

        !

        If you aren't sure if you've already imported a record, keep the radio button set to

        Ignorer celui-ci, garder l'existant

        You can "name" the import to help you when you need to choose between more than 1 imported biblio (or just want to keep trace on where the biblios comes from)

        Codage des caractres (MARC21 ou UNIMARC)

        You don't need to actually name every import, so you don't need to fill in this box if you don't want to. It is useful for telling imports apart if you've more than one of the same record.

        !

        IMPORTANT : This tool is NOT intended to import iso2709 in your ACTIVE DB. If you need to migrate datas from another ILS, then you must consider $kohaInstall/scripts/misc/bulkmarcimport.pl

        --- 2,13 ----

        Importer cette notice

        This is one of the screens you will see frequently if you are starting from scratch.

        !

        C'est utile d'importer un paquet de notices iso2709 qui pourront tre utilises plus tard pour un catalogage rapide

        !

        Au pralable, vous devez parcourir votre ordinateur pour trouver l'enregistrement MARC que vous avez slectionn pour votre document.Cliquez

        !

        Choisir le dossier rechercher.

        !

        Si vous n'tes pas sr d'avoir dj import un enregistrement laissez le button rgl sur

        Ignorer celui-ci, garder l'existant

        You can "name" the import to help you when you need to choose between more than 1 imported biblio (or just want to keep trace on where the biblios comes from)

        Codage des caractres (MARC21 ou UNIMARC)

        You don't need to actually name every import, so you don't need to fill in this box if you don't want to. It is useful for telling imports apart if you've more than one of the same record.

        !

        IMPORTANT : Cet outil n'est PAS prvu pour importer de l' iso2709 dans votre Base de Donnes ACTIVE.Si vous avez besoin de migrer des donnes partir d'un autre SIGB, alors vous devez utiliser $kohaInstall/scripts/misc/bulkmarcimport.pl

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/export marc.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/export In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/export Modified Files: marc.tmpl Log Message: french version for 2.2.0 Index: marc.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/export/marc.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** marc.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- marc.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,8 **** !

        iso 2709 export

        This is a tool to export your bibliographic records in standard MARC communications format (ISO2709). It exports only the basic bibliographic information with no holdings information other than any holdings information originally loaded into Koha using the bulkmarcimport tool.

        You are asked to provide a starting biblio record number and an ending number for the export. If you want to export all of your records, leave the start and end numbers blank.

        !

        Records are downloaded to the workstation that requests the export and are saved in a file called "marc.pl."

        --- 1,8 ---- !

        export iso2709

        This is a tool to export your bibliographic records in standard MARC communications format (ISO2709). It exports only the basic bibliographic information with no holdings information other than any holdings information originally loaded into Koha using the bulkmarcimport tool.

        You are asked to provide a starting biblio record number and an ending number for the export. If you want to export all of your records, leave the start and end numbers blank.

        !

        Les enregistrements sont chargs sur le poste de travail qui a demand l'exportation et sont sauvs dans un fichier nomm "marc.pl."

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/marcimport AcceptBiblioitem.tmpl,1.3,1.4 AcceptItemCopy.tmpl,1.3,1.4 marcimportdetail.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/marcimport Modified Files: AcceptBiblioitem.tmpl AcceptItemCopy.tmpl marcimportdetail.tmpl Log Message: french version for 2.2.0 Index: AcceptBiblioitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/AcceptBiblioitem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AcceptBiblioitem.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- AcceptBiblioitem.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 8,17 **** ! --- 8,17 ----
        Enregistrement dj dans la Base de Donne
        ! is already in the database with biblionumber and biblioitemnumber
        ! *************** *** 26,30 ****
        Enregistrement dj dans la base de donnes
        ! est dj dans la base de donnes avec le numro de notice /
        ! has been entered into the database with biblionumber and biblioitemnumber
        --- 26,30 ----
    ! a t saisi dans la base de donnes avec le numro de notice /
    *************** *** 41,45 **** "> ! --- 41,45 ---- ">
    CODE BARRE"> Site d'affectation:
    ! Index: AcceptItemCopy.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/AcceptItemCopy.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AcceptItemCopy.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- AcceptItemCopy.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 2,6 ****
    ! Le Code Barre a dj t attribu

    --- 2,6 ----

    ! Le Code Barres a dj t attribu

    *************** *** 10,14 ****

    CODE A BARRES"> Site d'affectation:
    ! Exemplaire ajout avec code barre
    --- 10,14 ----
    ! Exemplaire ajout avec code barres
    Index: marcimportdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/marcimportdetail.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** marcimportdetail.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- marcimportdetail.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 32,36 ****
    Anne de Publication" size="5" maxlength="10">
    Editeur" size="40" maxlength="255">
    Localisation" size="40" maxlength="255">
    Pages" size="5" maxlength="10">
    Taille" size="40" maxlength="40">
    Anne de Publication" size="5" maxlength="10">
    Editeur" size="40" maxlength="255">
    Emplacement" size="40" maxlength="255">
    Pages" size="5" maxlength="10">
    Taille" size="40" maxlength="40">
    !
    Gnrer le code barre partir du numro d'inventaire
      !
    • Select a range of inventary codes. You can select wether a continuous range or individual inventary codes
    • !
    • Slectionner le de code-barres gnrer
    • Dfinissez la taille de la page pour le PDF
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page.
    --- 41,55 ----
    !

    Gnrateur de code barres

    !
    Gnrer le code barres partir du numro d'inventaire
      !
    • Slectionnez une plage pour les numros d'inventaire. Vous pouvez slectionner une srie continue ou une liste de codes disjoints
    • !
    • Slectionner le style de modle pour gnrer des codes barres
    • Dfinissez la taille de la page pour le PDF
    • !
    • Koha va afficher la disposition , qui varie suivant la taille de la page, de tous les codes barres.Vous pouvez dfinir quel endroit l'impression commence.
    *************** *** 117,121 **** ! --- 116,120 ----
    Code catgorie
    ! Index: printerConfig.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/printerConfig.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** printerConfig.tmpl 24 Nov 2004 16:13:31 -0000 1.1 --- printerConfig.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 4,8 ****
    Code Pays
    !
    Slectionner la configuration d'imprimante correspondant votre environnement
    --- 4,8 ---- !
    Slectionner la configuration d'imprimante correspondant votre environnement
    *************** *** 12,17 ****
  • Entrez le type de page
  • Entres le nombre de colonnes et de lignes dans votre page
  • !
  • Set margin left and margin bottom of the page that you are going to use. This parameters will ! help to center the barcodes into the labels.

  • --- 12,16 ----
  • Entrez le type de page
  • Entres le nombre de colonnes et de lignes dans votre page
  • !
  • Dfinissez les marges gauches et basses pour la page que vous souhaitez utiliser. Ces paramtres aideront centrer les codes barres sur les tiquettes.

  • *************** *** 96,100 ****
    !
    !
    ! --- 60,64 ----
    Abrg Utilis Le choisir
    ! Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- searchresultlist.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 35,39 ****
    Rsum Utilis Le choisir
    ! --- 35,39 ----
    Abrg Utilis Voir
    ! *************** *** 46,50 **** From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/errors 400.tmpl,1.1,1.2 401.tmpl,1.1,1.2 402.tmpl,1.1,1.2 403.tmpl,1.1,1.2 404.tmpl,1.1,1.2 405.tmpl,1.1,1.2 500.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/errors Modified Files: 400.tmpl 401.tmpl 402.tmpl 403.tmpl 404.tmpl 405.tmpl 500.tmpl Log Message: french version for 2.2.0 Index: 400.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/400.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 400.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 400.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 401.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/401.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 401.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 401.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • Cette erreur signifie que vous n'tes pas autoris visualiser cette page
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que vous n'tes pas autoris visualiser cette page
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 402.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/402.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 402.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 402.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 403.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/403.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 403.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 403.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 404.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/404.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 404.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 404.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 405.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/405.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 405.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 405.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 500.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/500.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 500.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 500.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,19 ****
    !
  • In koha this typically mean that the koha-team is working on a new options
  • Attendez une meilleure version ou envoyez un mail la maintenance
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,19 ----
    !
  • Dans Koha, ceci signifie normalement, que l'quipe de Koha travaille de nouvelles options
  • Attendez une meilleure version ou envoyez un mail la maintenance
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/bull bull-home.tmpl,1.1,1.2 statecollection.tmpl,1.1,1.2 subscription-add.tmpl,1.1,1.2 subscription-detail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/bull Modified Files: bull-home.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl Log Message: french version for 2.2.0 Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- bull-home.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 1,5 ****

    Aide de Abonnement Priodiques

    !
  • Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York
  • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement \ No newline at end of file --- 1,5 ----

    Aide de Abonnement Priodiques

    !
  • Chercher un abonnement en utilisant le bouton (avec un ISSN ou un titre)Si vous saisissez un titre, vous pouvez utiliser le joker % : %Monde% renverra tous les abonnement contenant Monde dans le titre
  • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement \ No newline at end of file Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/statecollection.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** statecollection.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- statecollection.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 3,26 ****

    Cet cran est divis en 2 parties

    La partie droite

    !

    The right part deals with issues. When you create a new subscription, the 1st issue is automatically calculated. When you want/need, you can define issues that have a new status:

      !
    • Arrived : when an book arrives, you can set it's status to "arrived". Then, the issue disappear from this list, and the number of the issue is added to the "arrived list" (on the left box)
    • !
    • Late : means that the book is late and should be arrived. A books changed to "late" status stays on the issue list, and the next waited number is generated
    • !
    • Missing : means the book will never arrive. The issue disappear from the list, and the number of the issue is added to the "missing list" (on the left box)

    La partie gauche

    !

    the left part contains 6 differents informations, that are automatically calculated for some of them, but that you can change

      !
    • Subscription beginning date : the date of the beginning of the 1st subscription. Should not be modified and is not modified automatically by subscriptions renewals
    • !
    • Subscription enddate : must be entered manually when the subscription is definetly closed
    • !
    • Arrived numbers : the list of issues you have in your library. Automatically filled when a new number is marked "arrived". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • !
    • Missing numbers : the list of issues you don't have in your library, and that will never arrive (or have been lost). Automatically filled when a new number is marked "missing". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • !
    • opac note : the field that appears in the OPAC (with some other subscription information like beginning date & end date. This field must be filled manually. Nothing is put here automatically
    • !
    • opac note : the field that appears in the librarian interface (with some other subscription information like beginning date & end date. This field must be filled manually. Nothing is put here automatically.

    Renouvellement d'abonnement

    !

    Koha calculates automatically the end of the subscription (based on the start date and the number of issues recieved). when a subscription has ended, you can't change the status of the last "waited number" (as it's not waited in fact). To be able to "recieve" this number, you must renew your subscription.

    !

    Renewing a subscription means that you define some informations for the renewal. When those informations have been filled, a suggestion is automatically created in Koha. This suggestion can be managed by the librarian that orders books, as any other order (= budget & bookseller are defined here).

    !

    Note that the subscription renewal done by the "serials librarian" is supposed to be immediate. We have decided to keep Koha as simple as possible. In fact, the subscription renewal won't be immediate, but we didn't wanted to add too much complexity.

    \ No newline at end of file --- 3,26 ----

    Cet cran est divis en 2 parties

    La partie droite

    !

    La partie droite concerne les parutions.Quand vous crer un nouvel abonnement, le 1er numro est calcule automatiquement.Lorsque vous voulez/ avez besoin,vous pouvez dfinir les numeros qui ont un nouveau statut :

      !
    • Arriv : lorqu'un bulletin arrive, vous pouvez le mettre en tat"arriv". Le bulletin disparait de la liste et le numro est ajout dans la liste des bulletins arrivs ( gauche)
    • !
    • En retard : signifie que le document est en retard et devrait tre arriv.Un numro, qui not l'tat en retard reste dans la liste des bulletins attendus et le bulletin suivant attendu est gnr
    • !
    • Manquant : signifie que la livraison n'aura jamais lieu.Le numro disparat de la liste et est ajout la liste "Liste des lacunes" (sur la partie gauche)

    La partie gauche

    !

    Il y a 6 informations diffrentes dans la partie gauche, qui sont calcules automatiquement pour la plupart, mais vous pouvez les changer

      !
    • Date de dbut d'abonnement : la date de dbut du premier abonnement.Ne devrait tre modifie et n'est pas modifi automatiquement lors du renouvellement des abonnements
    • !
    • date de fin d'abonnement : doit tre entr manuellement lorsque l'abonnement est dfinitivement clos
    • !
    • Numros arrivs : la liste des numros que vous avez dans votre bibliothque. Automatiquement rempli quand un bulletin est marqu arriv. Vous pouvez modifier ce champ manuellement, par exemple pour changer une longue liste (1,2,3,4,...,51) en une plus courte(1-50)
    • !
    • Numros manquants : la liste des numros que vous n'avez pas dans votre bibliothque, et qui n'arriveront jamais (ou qui ont t perdus).
    • !
    • note de l'OPAC : le champ qui apparat l'OPAC (avec quelques autres informations sur l'abonnement comme la date de dbut et de fin).Ce champ doit tre rempli manuellement.Rien n'est mis ici automatiquement
    • !
    • Note de l'OPAC : le champ qui apparat dans l'interface bibliothcaire (avec quelques autres informations sur l'abonnement comme la date de dbut et de fin).Ce champ doit tre rempli manuellement.Rien n'est mis ici automatiquement

    Renouvellement d'abonnement

    !

    Koha calcule automatiquement la fin de l'abonnement ( partir de la date de dbut et du nombre d'exemplaires reus). Lorsqu'un abonnement a pris fin, vous ne pouvez plus changer l'tat du dernier "exemplaire en attente" (car il n'est plus attendu en fait). Pour pouvoir "recevoir" ce numro, vous devez renouveler votre abonnement.

    !

    Renouveller un abonnement signifie que vous devez complter quelques informations pour le renouvellement.Lorsque ces informations sont saisies, une suggestion est automatiquement cre dans Koha.Cette suggestion peut- tre gre par la/le bibliothcaire qui commande les livres, comme n'importe quelle autre commande (= budget et fournisseur sont dfinis ici).

    !

    Noter que le renouvellement de l'abonnement fait par le bibliothcaire responsable des priodiques est cens tre immdiat.Nous avons choisi de rendre Koha aussi simple que possible.En fait, le renouvellement de l'abonnement ne peut pas tre immdiat, mais nous n'avons pas voulu ajouter trop de complications.

    \ No newline at end of file Index: subscription-add.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/subscription-add.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-add.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- subscription-add.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 3,19 ****

      Bloc d'information d'abonnement

      !

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Bloc d'information sur le calendrier

      Contient des informations diverses pour calculer les dates d'arrive

      !

      Dur d'abonnement

      !

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Calcul de la numrotation

      !

      The numbering of issues recieved can be a complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Ajouter: ce nombre est ajout XYZ
      • !
      • once every : the number before can be added on every issue or less often
      • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
      • !
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • !
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Echantillon

      --- 3,19 ----

        Bloc d'information d'abonnement

        !

        Comporte le nom du bibliothcaire qui a cr l'abonnement, le nom du fournisseur qui procure l'abonnement, le prix et le budget affect.Comporte aussi le titre de la notice concerne par l'abonnement

        Bloc d'information sur le calendrier

        Contient des informations diverses pour calculer les dates d'arrive

        !

        Dure d'abonnement

        !

        Un champ de ce bloc doit tre rempli : la dure de l'abonnement peut tre calcule en semaines, mois ou nombre de numros recevoir

        Calcul de la numrotation

        !

        Le numro des bulletins reus peut tre une formule complexe. La formule peut contenir n'importe quel texte et/ou chiffre. {X} {Y} et {Z} sont particuliers. Vous pouvez les utiliser pour dfinir une formule de calcul. les valeurs de XYZ sont calcules de la manire suivante :

        • Ajouter: ce nombre est ajout XYZ
        • !
        • toutes les : le nombre avant peut tre ajouter chaque parution ou moins souvent
        • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
        • !
        • Retourner : si la condition prcdente est valide, le numro calcul est fix celui-ci la place
        • !
        • Dernire valeur/commence avec : la dernire valeur calcule ou la 1re (quand on ajoute un abonnement)

        Echantillon

        *************** *** 24,30 ****
      Donnera les numros de parution suivants !

      N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N2005/4, N2006/1

      ! Note: when you add a subscription, Koha consider you already have done the order, or that you will do it soon. So, NO information is sent to the acquisition module. This is not the case when the subscription expires. In this case, a subscription renewal creates a "suggestion" that is sent to the acquisition module.

      \ No newline at end of file --- 24,30 ----
    Donnera les numros de parution suivants !

    N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N 2005/4, N2006/1

    ! Note:lorsque vous ajoutez un abonnement, Koha considre que vous avez dj pass la commande o que vous allez le faire bientt.Aussi, AUCUNE information n'est envoye vers le module acquisition.Ca n'est pas le cas quand l'abonnement arive expiration.Dans ce cas,un renouvellement de l'abonnement cre une

    \ No newline at end of file Index: subscription-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/subscription-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-detail.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- subscription-detail.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 1,20 ****

    Aide de Abonnement Priodiques dtail

    ! In this screen, you can see subscription detail, and modify it if you need.

      Bloc d'information d'abonnement

      !

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Bloc d'information sur le calendrier

      Contient des informations diverses pour calculer les dates d'arrive

      !

      Dur d'abonnement

      !

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Calcul de la numrotation

      !

      The numbering of items recieved can contain complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Ajouter: ce nombre est ajout XYZ
      • !
      • once every : the number before can be added on every issue or less often
      • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
      • !
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • !
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Echantillon

      --- 1,20 ----

      Aide de Abonnement Priodiques dtail

      ! Sur cet cran, vous pouvez voir le dtail de l'abonnement, et le modifier si ncessaire.

        Bloc d'information d'abonnement

        !

        Comporte le nom du bibliothcaire qui a cr l'abonnement, le nom du fournisseur qui procure l'abonnement, le prix et le budget affect.Comporte aussi le titre de la notice concerne par l'abonnement

        Bloc d'information sur le calendrier

        Contient des informations diverses pour calculer les dates d'arrive

        !

        Dure d'abonnement

        !

        Un champ de ce bloc doit tre rempli : la dure de l'abonnement peut tre calcule en semaines, mois ou nombre de numros recevoir

        Calcul de la numrotation

        !

        La numrotation des exemplaires reus peut comprendre une formule complexe. La "Formule de numrotation" peut tre remplie avec n'importe quel texte et/ ou nombre.{X} {Y} et {Z} peuvent tre utilises pour dfinir la formule de calcul.Les valeurs de XYZ sont calcules selon la manire suivante

        • Ajouter: ce nombre est ajout XYZ
        • !
        • toutes les : le nombre avant peut tre ajouter chaque parution ou moins souvent
        • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
        • !
        • Retourner : si la condition prcdente est valide, le numro calcul est fix celui-ci la place
        • !
        • Dernire valeur/commence avec : la dernire valeur calcule ou la 1re (quand on ajoute un abonnement)

        Echantillon

        *************** *** 23,27 ****
      • Y ajouter 1 toutes les 1 fois.Quand suprieur 4 Retourner 4. Commence par 1
      • Donnera les numros de parution suivants ! N2004/1,N2004/2,N2004/3,N2004/4,N2005/1,N2005/2,N2005/3,N2005/4,N2006/1

        --- 23,27 ----
      • Y ajouter 1 toutes les 1 fois.Quand suprieur 4 Retourner 4. Commence par 1
      • Donnera les numros de parution suivants ! N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N 2005/4, N2006/1

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple addbiblio.tmpl,1.12,1.13 addbooks.tmpl,1.5,1.6 additem-nomarc.tmpl,1.3,1.4 additem.tmpl,1.8,1.9 isbnsearch.tmpl,1.4,1.5 marcimport.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/acqui.simple Modified Files: addbiblio.tmpl addbooks.tmpl additem-nomarc.tmpl additem.tmpl isbnsearch.tmpl marcimport.tmpl Log Message: french version for 2.2.0 Index: addbiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/addbiblio.tmpl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** addbiblio.tmpl 24 Nov 2004 16:11:16 -0000 1.12 --- addbiblio.tmpl 5 Jan 2005 14:35:18 -0000 1.13 *************** *** 57,61 ****

        Vous devez soit :

        --- 57,61 ----

        Vous devez soit :

        *************** *** 455,460 **** alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(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 { --- 455,460 ---- alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_missing_mandatory_tags +_("Champ(s) obligatoire(s) non renseign(s)"); ! alertString2 += "\n- "+ total_missing_mandatory_subfields +_("champs obligatoires non renseigns (voir les champs en caractre gras)"); alert(alertString2); } else { Index: addbooks.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/addbooks.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** addbooks.tmpl 24 Nov 2004 16:11:16 -0000 1.5 --- addbooks.tmpl 5 Jan 2005 14:35:18 -0000 1.6 *************** *** 1,5 **** !
        !

        Gestion des notices MARC

        Pas d'exemplaire(s) trouv(s) --- 1,5 ---- !
        !

        Gestion des notices MARC

        Pas d'exemplaire(s) trouv(s) *************** *** 11,21 ****
        !

        Pour ajouter une nouvelle notice/exemplaire, scannez ou entrez le code ISBN/ ISSN

        !

        !

        Crer une nouvelle notice

        --- 11,21 ----

        !

        Pour ajouter une nouvelle notice/exemplaire, scannez ou entrez le code ISBN/ ISSN

        !

        !

        Crer une nouvelle notice

        *************** *** 27,40 **** ! !

        !

        Optimisation

        !

        If the ISBN or title is found in the biblio table, it will be retrieved and can be modified.
        ! If the ISBN or title is found in the breeding farm, it will be retrieved and a biblio will be added.
        ! Sinon, une notice peut-tre ajout partir de zro.

        ! --- 27,41 ---- ! ! !

        !

        Optimisation

        !

        Si l'ISBN ou le titre est trouv dans la table il peut tre rcupr puis modifi
        ! Si l'ISBN ou le titre est trouv dans le rservoir, il sera rcupr et une notice sera rajoute
        ! Sinon, une notice peut-tre ajoute en partant de zro.

        ! Index: additem-nomarc.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem-nomarc.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** additem-nomarc.tmpl 24 Nov 2004 16:11:16 -0000 1.3 --- additem-nomarc.tmpl 5 Jan 2005 14:35:18 -0000 1.4 *************** *** 5,9 ****

        !

        Vous devez attribuer un code barre l'exemplaire

        --- 5,9 ----

        !

        Vous devez attribuer un code barres l'exemplaire

        *************** *** 11,15 **** !

        Dsol, ce code barre est dj utilis

        NOTICE

        --- 11,15 ---- !

        Dsol, ce code barres est dj utilis

        NOTICE

        *************** *** 29,33 ****

        !

        --- 29,33 ----

        !

        *************** *** 44,48 ****

        AJOUTER UN NOUVEL EXEMPLAIRE

        Pour un site Web ajouter seulement le groupe

        !

        --- 44,48 ----

        AJOUTER UN NOUVEL EXEMPLAIRE

        Pour un site Web ajouter seulement le groupe

        !

        Index: additem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem.tmpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** additem.tmpl 24 Nov 2004 16:11:16 -0000 1.8 --- additem.tmpl 5 Jan 2005 14:35:18 -0000 1.9 *************** *** 46,53 **** "> !

        ERREUR : Code barre dj utilis!
        ! "> --- 46,53 ---- "> !
        ERREUR : Code barres dj utilis!
        ! "> *************** *** 95,99 **** alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_errors+_(" mandatory fields empty (see bold subfields)"); alert(alertString2); } --- 95,99 ---- alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_errors+_("champs obligatoires non renseigns (voir les champs en caractre gras)"); alert(alertString2); } *************** *** 104,108 **** } function confirm_deletion(bibid,itemnum) { ! var is_confirmed = confirm(_('Confirmez-vous la suppression de l'ouvrage ?')); if (is_confirmed) { window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum; --- 104,108 ---- } function confirm_deletion(bibid,itemnum) { ! var is_confirmed = confirm(_('Confirmez-vous la suppression de l exemplaire ?')); if (is_confirmed) { window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum; Index: isbnsearch.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/isbnsearch.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** isbnsearch.tmpl 24 Nov 2004 16:11:16 -0000 1.4 --- isbnsearch.tmpl 5 Jan 2005 14:35:18 -0000 1.5 *************** *** 1,7 **** !
        !

        Rsultats de la recherche de notice

        !

        Vous recherchiez ISBN titre

        rponses

        --- 1,7 ---- !
        !

        Rsultats de la recherche de notice

        !

        Vous recherchiez ISBN titre

        rponses

        *************** *** 10,20 ****
        !

        Notices dans Koha

  • Rsum Utilis Voir "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt="Autorit numro "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt='Autorit numro ' title='autorit numro '>
    ! ! ! ! --- 10,20 ----
    !

    Notices dans Koha

    TitreAuteur&copier; 
    ! ! ! ! *************** *** 25,31 **** ! ! --- 25,31 ---- ! ! *************** *** 61,65 ****

    !

    Notices dans le rservoir

    TitreAuteur&copier; 
    " class="button acquisition">Ajouter des ouvrages " class="button acquisition">Ouvrir
    " class="button catalogue">Ajouter des documents " class="button catalogue">Ouvrir
    --- 61,65 ----

    !

    Notices dans le rservoir

    *************** *** 91,97 ****

    ! " class="button acquisition">Ajouter une nouvelle notice ! " class="button acquisition">Ajouter une nouvelle notice

    --- 91,103 ----

    ! " class="button catalogue">Ajouter une nouvelle notice ! ! " class="button catalogue">Ajouter une nouvelle notice

    *************** *** 99,101 **** ! --- 105,107 ---- ! Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/marcimport.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** marcimport.tmpl 24 Nov 2004 16:11:16 -0000 1.4 --- marcimport.tmpl 5 Jan 2005 14:35:18 -0000 1.5 *************** *** 12,18 ****

      enregistrements imports

      !

      non import parce que dj dans la base de donne

      non import,parce que dj dans le rservoir

      !

      not imported because they seems not to be MARC format (or ISBN/ISSN missing) !

      enregistrements traits

      Retour aux acquisitions --- 12,18 ----

        enregistrements imports

        !

        non import parce que dj dans la base de donnes

        non import,parce que dj dans le rservoir

        !

        non import parce qu'ils ne semblent pas tre au format MARC (ou n ISBN/ ISSN manquant) !

        enregistrements traits

        Retour aux acquisitions *************** *** 20,27 ****

          !
        • Select a file to import into the breeding farm. It will be parsed, and for each ISBN found, a new baby will be created in the breeding farm.
        • !
        • If an ISBN already exists in the breeding farm, you can choose whether to ignore the new one or overwrite the old one.
        • !
        • You can enter a name for this import. It may be useful, when creating a biblio, to remember where the suggested MARC data comes from!
        • !
        • Of course, if the ISBN already exists in the active DB, the biblio will be ignored.
        " enctype="multipart/form-data"> --- 20,27 ----
          !
        • Slectionner un fichier importer dans le rservoir.Il sera analys, et pour chaque ISBN trouv, une nouvelle copie sera cr dans le rservoir.
        • !
        • Si un ISBN existe dj dans le rservoir, vous pouvez choisir soit d'ignorer le nouveau soit d'craser l'ancien.
        • !
        • Vous pouvez donner un nom cette importation. Cela peut tre utile, lors de la cration d'une notice, pour vous souvenir d'o vient l'enregistrement MARC propos!
        • !
        • Bien sr, si l'ISBN existe dj dans la base de donnes, la notice sera ignore.
        " enctype="multipart/form-data"> From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/bull receipt-search-result.tmpl,1.1,1.2 result.tmpl,1.1,1.2 search.tmpl,1.1,1.2 searchresultlist.tmpl,1.1,1.2 serial-issues.tmpl,1.1,1.2 statecollection.tmpl,1.1,1.2 subscription-add.tmpl,1.1,1.2 subscription-detail.tmpl,1.1,1.2 subscription-renew.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/bull Modified Files: receipt-search-result.tmpl result.tmpl search.tmpl searchresultlist.tmpl serial-issues.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl subscription-renew.tmpl Log Message: french version for 2.2.0 Index: receipt-search-result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/receipt-search-result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** receipt-search-result.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- receipt-search-result.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 36,40 ****
    --- 36,40 ---- Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** result.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- result.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 31,35 ****
    ! --- 31,35 ----
    Abrg  
    ! *************** *** 48,56 **** --- 48,52 ---- Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- search.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 11,15 ****

    Rechercher sur

    ! --- 11,15 ----

    Rechercher sur

    ! Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- searchresultlist.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 31,35 ****

    Rsum  
    class="hilighted"> - ','') ">Le choisir - - Non Rservable -
    ! --- 31,35 ----
    Abrg Utilis Voir
    ! *************** *** 42,46 **** Index: serial-issues.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/serial-issues.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** serial-issues.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- serial-issues.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 68,72 ****

    Abonnement pour ! prts semaines mois --- 68,72 ----

    Abonnement pour ! sorties semaines mois Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/statecollection.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** statecollection.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- statecollection.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 3,32 ****

    !

    Abonnement pour

    " class="button bull">Abonnement
    -

    Rsum d'abonnement

    - - - "> - "> - "> -

    -

    ">

    -

    ">

    -

    N Arrivs

    -

     

    -

    Numros enregistrs

    -

     

    -

    Remarque de l'OPAC

    -

     

    -

    Note interne

    -

     

    - - -
    - -

    Numros attendus ou en retard

    --- 3,10 ----
    !

    Abonnement pour

    " class="button bull">Abonnement

    Numros attendus ou en retard

    *************** *** 83,92 **** !

    Subscription has expired. Waited last issue status can't be changed. Renew your subscription

    !
    Rsum Utilis Voir "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt="Autorit numro "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt='Autorit numro ' title='Autorit numro '>
    From oleonard at users.sourceforge.net Wed Jan 5 16:46:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 05 Jan 2005 07:46:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes countryCodes.dat,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10266/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes Added Files: countryCodes.dat Log Message: Required for barcode generator --- NEW FILE --- 00 = USA I 93 = Australia 94 = New Zealand 779 = Argentina 773 = Uruguay 30 = France I 84 = Spain 45 = Japan 777 = Bolivia 80 = Italy I 73 = Sweden 40 = Germany 31 = France II 254 = Ucrania From oleonard at users.sourceforge.net Wed Jan 5 16:46:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 05 Jan 2005 07:46:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig itemsLabelConfig.conf,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10266/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig Added Files: itemsLabelConfig.conf Log Message: Required for barcode generator --- NEW FILE --- marginBottom = 25 pageType = A4 columns = 5 systemDpi = 96 labelHeigth = 21 rows = 13 marginLeft = 2 labelWidth = 41 From tipaul at users.sourceforge.net Thu Jan 6 15:32:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Thu, 06 Jan 2005 06:32:20 -0800 Subject: [Koha-cvs] CVS: koha/C4 Biblio.pm,1.114,1.115 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15653/C4 Modified Files: Biblio.pm Log Message: improvement of speed for bulkmarcimport. A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas. this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10. Index: Biblio.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v retrieving revision 1.114 retrieving revision 1.115 diff -C2 -r1.114 -r1.115 *** Biblio.pm 3 Jan 2005 10:48:33 -0000 1.114 --- Biblio.pm 6 Jan 2005 14:32:17 -0000 1.115 *************** *** 1135,1140 **** my $tagfield; my $subfield; ! $sth->execute($frameworkcode, $kohatable . "." . $kohafield ); ! ( $tagfield, $subfield ) = $sth->fetchrow; foreach my $field ( $record->field($tagfield) ) { if ( $field->subfield($subfield) ) { --- 1135,1139 ---- my $tagfield; my $subfield; ! ( $tagfield, $subfield ) = MARCfind_marc_from_kohafield("",$kohatable.".".$kohafield,$frameworkcode); foreach my $field ( $record->field($tagfield) ) { if ( $field->subfield($subfield) ) { *************** *** 2635,2638 **** --- 2634,2642 ---- # $Id$ # $Log$ + # Revision 1.115 2005/01/06 14:32:17 tipaul + # improvement of speed for bulkmarcimport. + # A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas. + # this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10. + # # Revision 1.114 2005/01/03 10:48:33 tipaul # * bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) From tipaul at users.sourceforge.net Thu Jan 6 16:25:38 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Thu, 06 Jan 2005 07:25:38 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr migrer_ses_donnees.xml,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha-doc/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27117/fr Added Files: migrer_ses_donnees.xml Log Message: document explaining how to migrate data & set up a highly tuned Koha catalogue (in French, sorry for frenchphobes or french-ignorants) --- NEW FILE --- Paramtrer et migrer ses donnes vers Koha 2.2 Introduction 2002-01-06 Paul POULAIN Consultant indpendant en logiciels libres, Koha "Release Manager" pour la version 2.0 puis 2.2, membre du comit de pilotage internationalpaul AT koha-fr.org 2.2.0 2005-01-06 pp Version initiale [...1138 lines suppressed...] ); newField = MARC::Field->new( '200','','', 'a' => $resul{TIT}, 'b' => $resul{TYP}, 'e' => $resul{STI}, 'f' => $resul{AUT}, 'g' => $resul{NOT}, ); $newRecord->insert_fields_ordered($newField); my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); Notez que le code qui prcde ne traite pas des notices d'exemplaire (l, c'est vraiment trop spcifique) From shedges at users.sourceforge.net Mon Jan 10 12:59:20 2005 From: shedges at users.sourceforge.net (skemotah) Date: Mon, 10 Jan 2005 03:59:20 -0800 Subject: [Koha-cvs] CVS: koha-doc/en/sysadmin/installation Installing_Koha_on_Fedora.xml,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha-doc/en/sysadmin/installation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv749 Modified Files: Installing_Koha_on_Fedora.xml Log Message: Add info on Apache and selinux Index: Installing_Koha_on_Fedora.xml =================================================================== RCS file: /cvsroot/koha/koha-doc/en/sysadmin/installation/Installing_Koha_on_Fedora.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Installing_Koha_on_Fedora.xml 2 Jan 2005 14:12:40 -0000 1.1 --- Installing_Koha_on_Fedora.xml 10 Jan 2005 11:59:17 -0000 1.2 *************** *** 6,10 **** ! 2005-01-03 --- 6,10 ---- ! 2005-01-09 *************** *** 24,27 **** --- 24,39 ---- + + + 2.2.0p1 + + 2005-01-08 + + jmf + + + Add information on SELinux to Apache section + + *************** *** 457,461 **** Note that If MySQL fails to start you ! may need to adjust selinux. To do that type the following:[root at koha ~]# setenforce 0 [root at koha ~]# mysql_install_db --- 469,473 ---- Note that If MySQL fails to start you ! may need to adjust SELinux. To do that type the following:[root at koha ~]# setenforce 0 [root at koha ~]# mysql_install_db *************** *** 522,525 **** --- 534,561 ---- Apache's log files are in /var/log/httpd. + + As with MySQL, there is an issue with + SELinux on Fedora Core 3 and the + Apache web server that prevents execution of + the CGI scripts. Instead of disabling SELinux for httpd, just change the + context for the Koha directories. The utility + for doing this is called 'chcon.' Here's a brief + description of how to use it: + + First, check the context for the directories that you know work + for httpd:[root at koha]# ls -Z /var/www/ + drwxr-xr-x root root system_u:object_r:httpd_sys_script_exec_t cgi-bin + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t error + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t html + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t icons + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t manual + drwxr-xr-x webalize root system_u:object_r:httpd_sys_content_t usage + + Then, use the chcon utility to label the Koha + subdirectories as for their counterparts in + /var/www. Here's the syntax:chcon <context> /usr/local/koha/<subdirectory> + + For more info on SELinux check out the Fedora Core 3 FAQ: http://fedora.redhat.com/docs/selinux-faq-fc3/ From oleonard at users.sourceforge.net Mon Jan 10 17:46:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 08:46:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4,1.4.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28801/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member.tmpl Log Message: Removing accidentally-hardcoded member number Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** member.tmpl 27 Oct 2004 15:35:03 -0000 1.4 --- member.tmpl 10 Jan 2005 16:46:54 -0000 1.4.2.1 *************** *** 31,35 ****
    Edit
    " -->&modify=edit">Edit
    Edit
    &modify=edit">Edit
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    FieldLib for librarians / for opacRepeatMandKoha fieldTabAuthorised value or
    ! Thesaurus category
    - " size="40" maxlength="80" />
    ! " size="40" maxlength="80" />

    ! or
    ! or
    '; return false;" /> !

    Note : in the last column, you can choose :

    !
    • An "authorised value" : it refers to a list of authorised value for this subfield. See the corresponding admin table
    • !
    • A "thesaurus category" : it refers to a thesaurus category. See the corresponding admin table
    • !
    • A "value builder" : values builders are perl program that helps you select the value of the field. They are MARC-flavor dependant and sometimes fills an other subfield automaticaly
    ! ! ! !
    ! ! ! - -
    Confirm Deletion of Subfield
    Subfield
     
    -
    " method="post">" /> - " /> - " />
    " method="post">" />
    ! ! Data deleted !
    method="post">" /> !
    ! ! !

    MARC subfield structure admin for

    !

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on "edit".

    !

    The column koha field shows that the subfield is linked with a "koha field". Koha can manage a marc interface, or a koha interface. This link ! ensure that both DB are synchronized, thus you can change from MARC to KOHA interface easily.

    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    SubfieldLibKoha Field ?Rep ?Mand ?Tab ?Auth value ?Thesaurus ?Val build ? Delete
       YesNo YesNo     ">Delete
    !
    //images/1leftarrow.png" title="previous" alt="previous" border="0" /> ! !
    " />
    ! !
    " name="searchfield" />
    //images/1rightarrow.png" title="next" alt="next" border="0" />
    !
    - --- 4,171 ---- Data Deleted MARC Subfield Structure for '' ! !
    ! ! !

    Edit MARC subfields constraints !

    !
    " name="Aform" method="post"> ! " /> ! ! ! ! ! "> ! ! "> ! ! "> ! ! "> ! ! ! "> ! ! ! "> ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! !

    Tag , Subfield

    MARC constraints

    " size="20" />(example for 200a : '200c','200d','200e'...)

    Editor constaints

    " size="40" maxlength="80" />
    " size="40" maxlength="80" />
    (ignore means that the subfield is NOT managed by Koha)
    (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)
    (if checked, it means that the subfield is an URL and can be clicked
    " size="10" maxlength="5"> (exemple :200b)

    ! ! !

    Note: in the last column, you can choose:

    !
    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • !
    • A "thesaurus category": it refers to a thesaurus category. See the corresponding admin table.
    • !
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! Data deleted ! " method="post">"> ! ! ! !

    MARC subfield structure admin for (framework )

    !

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    !

    The column Koha field shows that the subfield is linked with a Koha field. Koha can manage a MARC interface, or a Koha interface. This link ensures that both DB are synchronized, thus you can change from a MARC to a Koha interface easily.

    !
    /images/background-mem.gif">Subfield/images/background-mem.gif">
     
    CONFIRM DELETION
    !
    " method="post"> ! ! "> ! "> ! "> ! "> ! !
    !
    !
    " method="post"> ! "> ! "> ! "> ! "> ! !
    !
    ! ! ! ! "> ! ! ! ! !
    SubfieldTextConstraints Delete
    ! ! ! ! ! ! ! ! subfield ignored ! ! Tab :, ! Koha field : , ! Repeatable, Not repeatable, ! Mandatory, Not mandatory, ! see also : , ! hidden, ! is an url, ! Auth value :, ! Authority :, ! Plugin :, ! Link:, ! ! ">Delete
    " method="get">" name="tagfield" />" name="frameworkcode" />
    !
    " name="searchfield" />" name="frameworkcode" />
    ! ! ! ! ! ! ! !
    From oleonard at users.sourceforge.net Mon Jan 10 18:02:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 09:02:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull lateissues.tmpl,NONE,1.1 bull-home.tmpl,1.1,1.2 order.tmpl,1.1,1.2 result.tmpl,1.1,1.2 search-supply.tmpl,1.1,1.2 search.tmpl,1.1,1.2 statecollection.tmpl,1.2,1.3 subscription-add.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32715/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: bull-home.tmpl order.tmpl result.tmpl search-supply.tmpl search.tmpl statecollection.tmpl subscription-add.tmpl Added Files: lateissues.tmpl Log Message: Adding NPL versions of these templates --- NEW FILE --- Koha -- Serials Subscriptions

    Late issues

    Supplier Title Issue number Late since  
    ">Details">Receive
    Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- bull-home.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,3 **** ! Koha -- Serials Subscriptions --- 1,3 ---- ! Koha -- Serials Subscriptions *************** *** 13,17 ****
     
    --- 13,16 ---- *************** *** 21,28 **** "> !
    !
    ! ">Detail ! ">Recieve !
    There are no subscriptions.
    ! Add subscription

    --- 34,45 ---- ! ">Detail">Receive ! Enter search terms above to display subscriptions !

    Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/order.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** order.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- order.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,3 **** !

    Supplier Search Results

    --- 1,3 ---- ! Supplier Search Results

    Supplier Search Results

    Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** result.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- result.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 7,12 **** ! ! =&resultsperpage=&type=intranet&op=do_search"> --- 7,12 ---- ! ! =&resultsperpage=&type=intranet&op=do_search"> *************** *** 40,46 ****

    ! !
    ',''); return false;" />
    Not Reservable ! --- 40,44 ----

    !
    ',''); return false;" />
    Index: search-supply.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search-supply.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search-supply.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- search-supply.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,4 **** ! !

    Search supplier for serial subscription

    --- 1,3 ---- ! Search supplier for serial subscription

    Search supplier for serial subscription

    Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- search.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 13,17 **** ! ! (" onclick="PopupSuggestion(); return false;">Suggestions) !

    ! Suggestions

    --- 27,31 ---- !

    Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/statecollection.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** statecollection.tmpl 2 Nov 2004 21:38:41 -0000 1.2 --- statecollection.tmpl 10 Jan 2005 17:02:54 -0000 1.3 *************** *** 19,26 **** " /> " /> ! ! !

    --- 19,26 ---- " /> " /> ! ! ! -->

    Index: subscription-add.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-add.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** subscription-add.tmpl 2 Nov 2004 21:38:41 -0000 1.2 --- subscription-add.tmpl 10 Jan 2005 17:02:54 -0000 1.3 *************** *** 1,6 **** ! Koha -- Modify a SubscriptionAdd a New Subscription !
    --- 1,6 ---- ! Koha -- Modify a SubscriptionAdd a New Subscription !
    *************** *** 8,25 ****

    Modify subscription

    ! ! ">

    Add a subscription

    !
    ! ! !
    Subscription information for
    ! "> Librarian:
    " size="4"> (" disabled readonly>)
    " size="4"> (" disabled readonly>)
    --- 8,25 ----

    Modify subscription

    ! ! " />

    Add a subscription

    !
    ! ! !
    Subscription information for
    ! " /> Librarian:
    " size="4" /> (" disabled="disabled" readonly="readonly" />)
    " size="4" /> (" disabled="disabled" readonly="readonly" />)
    *************** *** 33,92 **** ! From tipaul at users.sourceforge.net Wed Jan 19 18:17:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:17:32 -0800 Subject: [Koha-cvs] CVS: koha/admin auth_subfields_structure.pl,1.3,1.3.2.1 marc_subfields_structure.pl,1.32,1.32.2.1 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24771/admin Modified Files: Tag: rel_2_2 auth_subfields_structure.pl marc_subfields_structure.pl Log Message: fix for #902 (it's impossible to set the subfield 400$0) Index: auth_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/auth_subfields_structure.pl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** auth_subfields_structure.pl 10 Jun 2004 08:58:34 -0000 1.3 --- auth_subfields_structure.pl 19 Jan 2005 17:17:08 -0000 1.3.2.1 *************** *** 200,204 **** my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; --- 200,204 ---- my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield ne ''; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32 retrieving revision 1.32.2.1 diff -C2 -r1.32 -r1.32.2.1 *** marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 --- marc_subfields_structure.pl 19 Jan 2005 17:17:10 -0000 1.32.2.1 *************** *** 282,286 **** my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; --- 282,286 ---- my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield ne ''; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; From tipaul at users.sourceforge.net Wed Jan 19 18:24:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:24:20 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22,1.22.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26371/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: removing 2 useless columns Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22 retrieving revision 1.22.2.1 diff -C2 -r1.22 -r1.22.2.1 *** categorie.tmpl 3 Dec 2004 21:44:04 -0000 1.22 --- categorie.tmpl 19 Jan 2005 17:24:11 -0000 1.22.2.1 *************** *** 255,261 **** - - --- 255,259 ---- *************** *** 270,274 **** - - --- 274,277 ---- From tipaul at users.sourceforge.net Wed Jan 19 18:32:47 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:32:47 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters auth_tag_structure.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27964/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 auth_tag_structure.tmpl Log Message: in authority structure, trying to delete a tag in an authority type, deleted the tag in the default authority type. Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** auth_tag_structure.tmpl 19 Jul 2004 19:19:54 -0000 1.2 --- auth_tag_structure.tmpl 19 Jan 2005 17:32:31 -0000 1.2.2.1 *************** *** 89,92 **** --- 89,93 ----
    " method="post"> + "> ">
    From oleonard at users.sourceforge.net Wed Jan 19 18:40:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 09:40:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29449/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member.tmpl Log Message: Fixing typo: nested TMPL_VAR tag that would cause internal server error Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** member.tmpl 10 Jan 2005 16:46:54 -0000 1.4.2.1 --- member.tmpl 19 Jan 2005 17:40:33 -0000 1.4.2.2 *************** *** 31,35 **** --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Wed Jan 19 18:44:02 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 09:44:02 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-user.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30092/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-user.tmpl Log Message: Removing non-functional renew link Index: opac-user.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-user.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-user.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-user.tmpl 19 Jan 2005 17:43:58 -0000 1.1.2.1 *************** *** 86,90 **** - --- 86,89 ---- *************** *** 97,107 **** YesNo --> - --- 96,99 ---- From oleonard at users.sourceforge.net Wed Jan 19 22:18:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:18:10 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-user.pl,1.14,1.15 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6934/opac Modified Files: opac-user.pl Log Message: Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should not be shown as waiting. Index: opac-user.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-user.pl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-user.pl 4 May 2004 15:46:58 -0000 1.14 --- opac-user.pl 19 Jan 2005 21:18:06 -0000 1.15 *************** *** 124,128 **** --- 124,133 ---- foreach my $res (@$reserves) { if ($res->{'itemnumber'}) { + my $item = getiteminformation('',$res->{'itemnumber'},''); + $res->{'holdingbranch'} = $branches->{$item->{'holdingbranch'}}->{'branchname'}; $res->{'branch'} = $branches->{$res->{'branchcode'}}->{'branchname'}; + if($res->{'holdingbranch'} eq $res->{'branch'}){ + $res->{'atdestination'} = 1; + } push @waiting, $res; $wcount++; From oleonard at users.sourceforge.net Wed Jan 19 22:22:01 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:22:01 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-user.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8040/koha-tmpl/opac-tmpl/npl/en Modified Files: opac-user.tmpl Log Message: Updated to show items as waiting only if destination branch matches holding branch. Reserves table is also updated to show 'waiting' if item is at its destination branch, or 'in-transit' if item has been allocated but hasn't arrived yet. Index: opac-user.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-user.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-user.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-user.tmpl 19 Jan 2005 21:21:59 -0000 1.2 *************** *** 41,55 **** ! ! ! !
    Planning
    " size="13" maxlength="10">
    ! ! ! ! ! !
    Planning
    " size="13" maxlength="10" />
    ! ! !
    Subscription Length (choose one)
    ">
    ">
    ">

    Numbering calculation

    -

    " />

    --- 138,148 ----
    ! ! !
    Subscription Length (choose one)
    " />
    " />
    " />

    Numbering calculation

    " />

    *************** *** 167,193 **** ! ! ! ! ! ! ! ! ! ! ! ! --- 166,192 ---- ! ! ! ! ! ! ! ! ! ! ! ! *************** *** 199,217 **** ! ! !
    ">">">
    ">">">
    ">">">
    ">">">
    " />" />" />
    " />" />" />
    " />" />" />
    " />" />" />
    ">">">
    ! ! - - Index: opac-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -C2 -r1.8 -r1.8.2.1 *** opac-top.inc 3 Jan 2005 10:58:46 -0000 1.8 --- opac-top.inc 13 Jan 2005 06:01:47 -0000 1.8.2.1 *************** *** 10,13 **** --- 10,14 ---- <!--TMPL_VAR name="LibraryName"--> + --- 5,9 ---- OPAC Basket ! /includes/opac.css"> Index: opac-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc,v retrieving revision 1.8.2.1 retrieving revision 1.8.2.2 diff -C2 -r1.8.2.1 -r1.8.2.2 *** opac-top.inc 13 Jan 2005 06:01:47 -0000 1.8.2.1 --- opac-top.inc 13 Jan 2005 07:40:24 -0000 1.8.2.2 *************** *** 10,14 **** <!--TMPL_VAR name="LibraryName"--> ! From oleonard at users.sourceforge.net Thu Jan 13 23:41:06 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 13 Jan 2005 14:41:06 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en request.tmpl,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22173/koha-tmpl/intranet-tmpl/default/en Modified Files: request.tmpl Log Message: Adding quick search link. This opens a pop-up to allow for searching for member card number. Choosing a member from the search results list closes the window and populates the card number field in request.pl template. Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/request.tmpl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** request.tmpl 26 Nov 2004 20:47:06 -0000 1.16 --- request.tmpl 13 Jan 2005 22:41:03 -0000 1.17 *************** *** 1,5 ****
    !
    "> --- 1,5 ----
    ! "> *************** *** 22,26 ****

    !

    --- 22,26 ----

    !

    (Quick Search)

    *************** *** 149,151 **** --- 149,162 ----
    + From oleonard at users.sourceforge.net Thu Jan 13 23:41:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 13 Jan 2005 14:41:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/members member-quicksearch-results.tmpl,NONE,1.1 member-quicksearch.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22310/koha-tmpl/intranet-tmpl/default/en/members Added Files: member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: templates for member quicksearch (to allow quick member searching in popup from request page) --- NEW FILE ---

    Member Search

      Card Surname Firstname Address
    ','request','member'); return false;" /> ">
    --- NEW FILE ---

    Member Quick Search

    From shedges at users.sourceforge.net Fri Jan 14 00:56:51 2005 From: shedges at users.sourceforge.net (skemotah) Date: Thu, 13 Jan 2005 15:56:51 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr/sysadmin/migration migrer_ses_donnees.xml,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha-doc/fr/sysadmin/migration In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6557 Added Files: migrer_ses_donnees.xml Log Message: validate xml and move to migration directory --- NEW FILE ---
    Paramétrer et migrer ses données vers Koha 2.2 2005-01-06 Paul POULAIN Consultant indépendant en logiciels libres, Koha "Release Manager" pour la version 2.0 puis 2.2, membre du comité de pilotage international [...1229 lines suppressed...] '011','','', 'a' => $resul{ISSN}, ); newField = MARC::Field->new( '200','','', 'a' => $resul{TIT}, 'b' => $resul{TYP}, 'e' => $resul{STI}, 'f' => $resul{AUT}, 'g' => $resul{NOT}, ); $newRecord->insert_fields_ordered($newField); my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); Notez que le code qui précède ne traite pas des notices d'exemplaire (là, c'est vraiment trop spécifique)
    From shedges at users.sourceforge.net Fri Jan 14 01:00:09 2005 From: shedges at users.sourceforge.net (skemotah) Date: Thu, 13 Jan 2005 16:00:09 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr migrer_ses_donnees.xml,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha-doc/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7189 Modified Files: migrer_ses_donnees.xml Log Message: validate xml (moved to migration subdirectory) Index: migrer_ses_donnees.xml =================================================================== RCS file: /cvsroot/koha/koha-doc/fr/migrer_ses_donnees.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** migrer_ses_donnees.xml 6 Jan 2005 15:25:36 -0000 1.1 --- migrer_ses_donnees.xml 13 Jan 2005 23:59:54 -0000 1.2 *************** *** 1,89 **** ! ! ! ! Paramtrer et migrer ses donnes vers Koha 2.2 ! Introduction ! 2002-01-06 [...2041 lines suppressed...] ! Notez que le code qui prcde ne traite pas des notices ! d'exemplaire (l, c'est vraiment trop spcifique) ! ! \ No newline at end of file --- 1259,1268 ---- ); $newRecord->insert_fields_ordered($newField); ! my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); ! Notez que le code qui précède ne traite pas des notices ! d'exemplaire (là, c'est vraiment trop spécifique) ! ! \ No newline at end of file From oleonard at users.sourceforge.net Fri Jan 14 16:41:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:41:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help bull-home.tmpl,NONE,1.1.2.1 nohelp.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31882/koha-tmpl/intranet-tmpl/npl/en/help Added Files: Tag: rel_2_2 bull-home.tmpl nohelp.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Serials Subscriptions

    Serials subscription help

    Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York

    If you want to create a new subscription, click the "Add subscription" button.

    Once you have found the subscription you need, you can:

    • View subscription details
    • Recieve any item and/or manage what appears in subscription summary (in OPAC and librarian interface)
    --- NEW FILE --- Online Help: No help for this topic!

    Online Help

    Sorry, there is no help available for this topic

    From oleonard at users.sourceforge.net Fri Jan 14 16:42:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/search.marc search.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/search.marc Added Files: Tag: rel_2_2 search.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Search

    Search

    The search id divided in 2 differents parts :

    Usual fields

    The usual fields are in the top part of the screen. They contains :

    • Keyword : search on anything
    • Title
    • Author
    • Barcode : the library barcode of the book
    • Illustrator
    • Dewey
    • Item type : select here an item type. If none is selected, the search is done on every item type
    • Branch : select here a specific branch. If none selected, the search is done on every branch

    Search method

    • If you enter values in more than 1 field, the search is "and-ed" (biblios that contains title AND author)
    • A biblio is selected if it's field contains the term you entered
    • If you enter a * (or a %) at the end of a term, Koha search for words starting with your term (entering lower* means : find biblio that have a title containing a word starting by lower

    Complete MARC search

    In the lower part of the search screen, the More fields box let you enter whatever you want : and, or, exclusions (not), search on any MARC field/subfield

    IMPORTANT NOTE : for performance reasons, the * is valid only if you enter a word more than 3 letters long. for words of 3 letters or less, the * is ignored


    From oleonard at users.sourceforge.net Fri Jan 14 16:42:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/bull bull-home.tmpl,NONE,1.1.2.1 statecollection.tmpl,NONE,1.1.2.1 subscription-add.tmpl,NONE,1.1.2.1 subscription-detail.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/bull Added Files: Tag: rel_2_2 bull-home.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Serials Subscriptions

    Serials subscription help

    Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York

    If you want to create a new subscription, click on "Add subscription"

    --- NEW FILE --- Online Help: Serials -- Issues and Summary

    Serials issues and summary

    This screen is divided in 2 parts

    The right part

    The right part deals with issues. When you create a new subscription, the 1st issue is automatically calculated. When you want/need, you can define issues that have a new status:

    • Arrived : when an book arrives, you can set it's status to "arrived". Then, the issue disappear from this list, and the number of the issue is added to the "arrived list" (on the left box)
    • Late : means that the book is late and should be arrived. A books changed to "late" status stays on the issue list, and the next waited number is generated
    • Missing : means the book will never arrive. The issue disappear from the list, and the number of the issue is added to the "missing list" (on the left box)

    The left part

    the left part contains 6 differents informations, that are automatically calculated for some of them, but that you can change

    • Subscription beginning date : the date of the beginning of the 1st subscription. Should not be modified and is not modified automatically by subscriptions renewals
    • Subscription enddate : must be entered manually when the subscription is definetly closed
    • Arrived numbers : the list of issues you have in your library. Automatically filled when a new number is marked "arrived". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • Missing numbers : the list of issues you don't have in your library, and that will never arrive (or have been lost). Automatically filled when a new number is marked "missing". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • opac note : the field that appears in the OPAC (with some other subscription information like beginning date and end date. This field must be filled manually. Nothing is put here automatically
    • opac note : the field that appears in the librarian interface (with some other subscription information like beginning date and end date. This field must be filled manually. Nothing is put here automatically.

    Subscription renewals

    Koha calculates automatically the end of the subscription (based on the start date and the number of issues recieved). when a subscription has ended, you can't change the status of the last "waited number" (as it's not waited in fact). To be able to "recieve" this number, you must renew your subscription.

    Renewing a subscription means that you define some informations for the renewal. When those informations have been filled, a suggestion is automatically created in Koha. This suggestion can be managed by the librarian that orders books, as any other order (= budget and bookseller are defined here).

    Note that the subscription renewal done by the "serials librarian" is supposed to be immediate. We have decided to keep Koha as simple as possible. In fact, the subscription renewal won't be immediate, but we didn't wanted to add too much complexity.

    --- NEW FILE --- Online Help: Serials -- Adding Subscriptions

    Serials subscription add and modify help

      Subscription information bloc

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Planning information bloc

      it contains various information to calculate arrival dates.

      Subscription length

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Numbering calculation

      The numbering of issues recieved can be a complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Add : the number here is added to XYZ
      • once every : the number before can be added on every issue or less often
      • When more than : if the calculated number is more than the value here
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Sample

      Consider the formula N{X}/{Y}. The following XYZ settings :
      • X add 1 once every 4 times. When more than 9999999 set back to empty. Begins with 2004
      • Y add 1 once every 1 times. When more than 4 set back to 4. Begins with 1
      will result in the following issues numbers :

      N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N2005/4, N2006/1

      Note: when you add a subscription, Koha consider you already have done the order, or that you will do it soon. So, NO information is sent to the acquisition module. This is not the case when the subscription expires. In this case, a subscription renewal creates a "suggestion" that is sent to the acquisition module.

      --- NEW FILE --- Online Help: Serials Subscription Detail

      Serials subscription detail help

      In this screen, you can see subscription detail, and modify it if you need.

        Subscription information bloc

        it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

        Planning information bloc

        it contains various information to calculate arrival dates.

        Subscription length

        one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

        Numbering calculation

        The numbering of items recieved can contain complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

        • Add : the number here is added to XYZ
        • once every : the number before can be added on every issue or less often
        • When more than : if the calculated number is more than the value here
        • Set back to : if the previous condition is valid, the calculated number is set to this one instead
        • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

        Sample

        Consider the formula N{X}/{Y}. The following XYZ settings :
      • X add 1 once every 4 times. When more than 9999999 set back to empty. Begins with 2004
      • Y add 1 once every 1 times. When more than 4 set back to 4. Begins with 1
      • will result in the following issues numbers : N2004/1,N2004/2,N2004/3,N2004/4,N2005/1,N2005/2,N2005/3,N2005/4,N2006/1

        From oleonard at users.sourceforge.net Fri Jan 14 16:42:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/admin aqbookfund.tmpl,NONE,1.1.2.1 authorised_values.tmpl,NONE,1.1.2.1 authtypes.tmpl,NONE,1.1.2.1 biblio_framework.tmpl,NONE,1.1.2.1 branches.tmpl,NONE,1.1.2.1 categorie.tmpl,NONE,1.1.2.1 checkmarc.tmpl,NONE,1.1.2.1 currency.tmpl,NONE,1.1.2.1 issuingrules.tmpl,NONE,1.1.2.1 itemtypes.tmpl,NONE,1.1.2.1 koha2marclinks.tmpl,NONE,1.1.2.1 marc_subfields_structure.tmpl,NONE,1.1.2.1 marctagstructure.tmpl,NONE,1.1.2.1 printers.tmpl,NONE,1.1.2.1 stopwords.tmpl,NONE,1.1.2.1 systempreferences.tmpl,NONE,1.1.2.1 z3950servers.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/admin Added Files: Tag: rel_2_2 aqbookfund.tmpl authorised_values.tmpl authtypes.tmpl biblio_framework.tmpl branches.tmpl categorie.tmpl checkmarc.tmpl currency.tmpl issuingrules.tmpl itemtypes.tmpl koha2marclinks.tmpl marc_subfields_structure.tmpl marctagstructure.tmpl printers.tmpl stopwords.tmpl systempreferences.tmpl z3950servers.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: System Preferences -- Book Fund Administration

        Book Fund Administration

        The first time you access this page, you will be asked to add your first book fund -- thereafter you will also have the option of editing and deleting book funds.

        Book Funds may be ignored if you are setting your System Preferences to "simple" acquisitions: the funds are only useful when using "normal" acquisitions.

        "Book Funds" are accounts that you establish to keep track of your expenditures for library materials. They may be used for any kind of material, not just books, and should match the lines in your materials budget. For instance, if your library establishes a budget line for books, another for audiovisual materials, a third line for magazines, and a fourth budget line for electronic databases, then you would have four Book Funds.

        Each Book Fund has a unique fund code, limited to no more than five characters, that identifies it. You should decide on your fund codes (e.g. something like BOOKS, AV, MAGS, DATA for the four book funds described above) and enter the code in the "Book fund" box, then a full name in the "Name" box.

        Once you have set up a fund, you will see a link to a page for setting up the fund budget. Here you will enter the beginning and ending dates of your budget year and the amount of money in that particular budget line. Do not use any kind of currency notation (like "$") or commas when entering the number. (Commas will be converted to decimal points.) NOTE: Your dates will not saved correctly unless you have set your date format in the System Preferences section of the Parameters page -- DO THIS BEFORE setting budgets.)

        --- NEW FILE --- Online Help: System Preferences -- Authorised values management

        Authorised values management

        Koha allows you to restrict the values that catalogers can place in some MARC subfields to certain pre-defined "authorised" values. These authorised values are defined here.

        For example, if your Koha installation is used by several libraries, and you use MARC21, you might want to restrict the 850a MARC subfield to the instition codes for just those libraries. In that case, you could define a new authorised values category (perhaps called "INST") and enter the institution codes as the authorised values for that category. Once the 850a subfield is linked to the INST authorised values category in your MARC tag structure, catalogers must choose a value from the list you define here, and may not type in any other value.

        • HINT : if a subfield is non mandatory, Koha automatically adds an empty value to the authorised value list, that is selected by default. If the subfield is mandatory, no empty value is added (and you should NOT add it in the list, as it's an illegal value !)
        • HINT2 : in the MARC editor, the list is ordered by Text, NOT by value. So you can define a default value by putting a space before the value you want to see first. For example, if your list is related to language, you can set "ENG" as authorised value and " English" as text. The space will order "ENG" as first default value, and the space won't be shown (because HTML automatically discard useless spaces). Super hint : you can put a value 1st with N spaces, then another one 2nd with N-1 space,..., a value in Nth position with 1 space. Don't abuse of this feature, it's easier to find a value in an alphabetical order. It should be used only to have a default value

        Koha automatically sets up authorised value categories for your item types and branch codes, and you can link these authorised values to MARC subfields when you set up your MARC tag structure.

        --- NEW FILE --- Online Help: System Preferences -- Authority types

        Authority types

        You can define as many Authority types as you want.

        • with the MARC structure button, you can define the MARC structure of a given authority type
        • The tag reported must contain a MARC tag number. Every subfield in the selected tag will be copied to the "destination tag" in the biblio. for example, in UNIMARC, the tag 200 ot personal authority will be reported to 600, 700, 701, depending on what is cliqued in the biblio MARC editor.
        • The summary contains an "ISBD" like description to explain how the entry must be shown in the result list. The syntax is :
          • [xxxFFFSyyy] where xxx are up to 3 digits BEFORE the field, FFF the field number, S the subfield code, yyy up to 3 digits AFTER the field.
          • things outside [] are kept as is (including HTML)
          • repeatable fields are manages.

            IMPORTANT

            In the biblio framework, the reported tag MUST contain a $9 subfield, activated in the tab where the tag is, and hidden (hidden maybe omitted, but the field has no reason to appear anywhere). The $9 subfield in the biblio will contain the Authority number (the internal Koha number)

            --- NEW FILE --- Online Help: System Preferences -- Biblio framework

            Biblio framework

            biblio frameworks are used to catalogue your biblios.

            Unlike Koha 2.0, in this version you can have more than 1 framework to catalogate differently various materials. You can, for example, define 1 framework for monographies, 1 framework for serials, 1 framework for URL...

            Once a framework type is created, you can clic on "MARC structure" to define the exact MARC structure. The first time, Koha will ask you to select an existing framework to copy into the new one. Thus, you don't have to define all the MARC structure

            --- NEW FILE --- Online Help: System Preferences -- Branches

            Help: Library Branches

            Fill in information about your library service outlets on this page.

            Begin by defining your branch categories. If, for example, you have one main library and several branch libraries, you might set up an "M" (Main) category and a "B" (Branch) category, with descriptions "Main Library" and "Branch Library."

            Now add the names and addresses, phone numbers, etc of your libraries in the "Branches" section. (All of your libraries should be described here, not just the branch libraries.) Give each library a unique and easily-remembered code (maximum of four characters). This code will be used in Koha's database to identify each library. When libraries are listed in Koha, they will be listed in alphabetical order by code. (Note that until you set your branch the first time you use a computer to circulate items in Koha, the branch will default to the first library in the alphabetical code list -- be careful to set the branch the first time you use Koha or whenever you add a new computer!)

            --- NEW FILE --- Online Help: System Preferences -- Borrower Categories

            Borrower Categories

            Here is where you define the types of users of your library and how they will be handled.

            Category Code and Description

            Start by assigning a Category Code and a Description to each borrower type. The code is limited on no more than two characters and may be anything you choose. Four codes, however, have special meaning for Koha :

            • "I" can be used for institutional members, like other libraries that borrow from you, in which case Koha expects slightly different information about the institution;
            • "A" (Adult) and "W" can be linked as "guarantors" to other borrowers who are their dependents.
            • "C" (Children) is a borrower category that has a "guarantor"

            Enrollment Period

            Enrollment period is a number indicating how many years a user's enrollment is valid. If you consider enrollments to expire after four years for example (as in a school, perhaps), then set this number to 4. If enrollments never expire, set this to an impossibly high number (99).

            Upper Age Limit and Age Required

            Upper Age Limit and Age Required set the age parameters for this type of user. If you issue children's cards to users between the ages of 2 and 18, for example, then Age Required would be "2" and Upper Age Limit would be "18." If there is no upper age limit, set this value to 99 (the highest allowed).

            Enrollment Fee and Reserve Fee

            Enrollment Fee and Reserve Fee (if any) should be entered either as whole numbers or with six decimal places, with no currency notation (e.g. "1.250000" instead of "$1.25").

            Overdue Notice Required

            Overdue Notice Required lets you bypass generating overdue notices for this user type.

            --- NEW FILE --- Online Help: System Preferences -- MARC Check

            MARC Check

            Once you have completed the process of setting up your MARC tag structure (MarcTagstruct) and checked your MARC to Koha mapping (Koha2MarcLinks), click on this link to activate a small program that checks for major errors in your MARC setup.

            This MARC check does not guarantee that you will like the first results of your efforts to set up your MARC displays, etc. -- it simply checks for major errors. You will probably revise your MARC setup several times before you are completely pleased with it. Be sure to run checkmarc after every revision.

            --- NEW FILE --- Online Help: System Preferences -- Currencies administration

            Currencies administration

            Define the currencies you deal with here.

            You should at least define your local currency here, giving it a name (like US DOLLAR or EURO) and setting the "rate" at 1. If you do business with vendors who charge in a different currency, enter a name for that currency (e.g. PESO) and set the approximate exchange rate compared to your currency. (Note: names are limited to 10 characters or less.) The exchange rate is used to calculate the remain balances in your materials budgets when you purchase materials using "normal" acquisitions.

            --- NEW FILE --- Online Help: System Preferences -- Issuing rules

            Issuing rules

            Issuing rules deals with 2 topics :

            • Issuing length and quantity : they say how many items and how long a borrower category can issue for an itemtype
            • Overdue charges : they are based on the item type and borrower type. These charges are defined on this page.

            Itemtypes and borrower categories must be defined before issuing rules are defined. Your defined items types and borrower categories are then displayed in a grid on this page.

            Issuing length and quantity

            Each box in the grid contains 2 numbers, separated by commas, defining how many days a given borrower type can issue how many material. For example : 21,5 means the borrower can issue up to 5 books for up to 21 days

            The * have a specific meaning. They mean "any". If you set 21,5 for itemtype=*, borrower category=student, branch=main, then a student can't issue more than 5 items of ANY item type. This "any" box is cumulative with other boxes. It means that 21,5 as itemtype=book, 14,2 as itemtype=CD and 30,6 as itemtype=* (with category=student) means a student can issue up to 5 books, up to 2 CD but a maximum of 6 items (books or CD). In this case the "30 days" in itemtype=* is discarded and the issuing length is calculated on the exact itemtype

            Overdue charges

            Each box in the grid contains three numbers separated by commas, defining the fine, how many days overdue the item must be before the fine is assessed and a first notice prepared (the "grace period"), and how many days after that the fine is assessed again and a second notice sent. For example, if you charge adults 1 dollar (or euro, or whatever currency) for overdue videos after three days and add another dollar charge after another five days, put "1,3,5" in the box in the grid that aligns with "Adult" and "Video." If you charge adults 25 cents for overdue fiction books after a grace period of seven days and repeat the charge seven days later, then the entry in the corresponding box in the grid would be ".25,7,7". After the first and second notice are given, Koha prepares a "final notice" after the number of days set by the final number in the grid and sets the charge to the maximum, which is 5.

            (Note : fines are calculated by the fines2.pl script, located in misc directory. Ask your system administrator to put this script in crontab, after midnight, to have fines calculated every night.)

            --- NEW FILE --- Online Help: System Preferences -- Item types management

            Item types management

            You can define as many itemtypes as you want.

            The item types are the "categories" into which your library items fall. For instance, you probably want to have videocassettes in a different category from non-fiction books, and mysteries in a different category from children's picture books. If you already are using a commercial ILS, you almost certainly already have all of your materials divided up into such categories. Now you need to tell Koha what your categories are.

            The itemtype code is limited to four characters. This code is rarely displayed by Koha; instead the description of the type will be what users see.

            "Rental charge" is any amount you might charge to users for borrowing items of a certain type (like videos).

            "Renewals allowed" says how many times an items of this type may be renewed.

            Item types are useful for many things, and very important in controlling how Koha works :

            • Borrowers can search on itemtypes
            • Issuing rules are set for item types (and for borrower types / branches)

            Setting up item types is one of the first things you should do after installing the Koha software.

            --- NEW FILE --- Online Help: System Preferences -- Koha 2 MARC links

            Koha 2 MARC links

            This page provides a simplified way to map your MARC tags and subfields to the non-MARC Koha database tables for default biblio framework. This can also be done while setting the MARC tag structure, but it is easier to see the relationship between the MARC database and the Koha database here.

            The pull-down menu lists all the Koha tables that can receive values from the MARC records. The columns from each table are listed below the pull-down menu.

            Do not expect to have every Koha table.column mapped to a MARC subfield. Some (such as biblionumber, biblioitemnumber, and itemnumber) are values generated by Koha and will probably be automatically mapped. Others are flags which are set in the course of normal circulation activities and will contain information that is not part of your MARC record.

            This is a one-to-one mapping. In other words, a MARC tag/subfield can be mapped to one, and only one, Koha table.column.

            MARC data that is not mapped to a Koha table does not disappear -- it is simply not available for display on circulation screens and on some search results screens.

            --- NEW FILE --- Online Help: System Preferences -- MARC tag structure administration

            MARC tag structure administration

            Koha allows you to specify which MARC tags you want to use and which you want to ignore. When you downloaded and installed Koha, you also got the entire list of MARC21 tags and subfields in current use. Now you need to use the administration page to edit this list and tell Koha which tags you want to use and how you want to use them.

            You can define as the marc tag structure for each biblio framework you have defined

            If you are CERTAIN that you will never use a MARC tag, then you can delete it, but since this will not result in any appreciable improvement in performance, it is probably better to leave it. There will be tags you want to add, however. If you are using older MARC tags that are not in the list of tags supplied with Koha, then use the MARC tag structure administration page to add them. Similarly, you will probably need to add the holdings tag you currently use, or at least check the subfield structure of the 852 tag if you use it for holdings.

            Editing the SubFields from the MARC tag structure page is very time-consuming, but also very important; be sure to click the subfield link for each tag in your MARC tag structure.

            For each subfield you can set :

            • repeatable : wether it can be repeated or not. If it can be repeated, separate the values by a | in the MARC editor when you want to have the subfield twice
            • Mandatory : wether the field is mandatory or not. If mandatory, the cataloger can't validate the biblio if the subfield is empty.
            • Search also : a list of field that Koha will also search on when the user do a search on the subfield
            • Koha link : very important. Koha is multi-MARC compliant. So, it does not know what the 245$a means, neither what 200$f (those 2 fields being both the title in MARC21 and UNIMARC !). So, in this list you can "map" a MARC subfield to it's meaning. Koha constantly maintains consistency between a subfield and it's meaning. When the user want to search on "title", this link is used to find what is searched (245 if you're MARC21, 200 if you're UNIMARC).
            • Text for librarian : what appears before the subfield in the librarian interface
            • Text for OPAC : what appears before the field in the OPAC. If empty, the text for librarian is used instead
            • Managed in tab : deals with the tab where the subfield is shown. Ignore means that the subfield is not managed. All subfields of a given field must be in the same tab or ignored : 1st it's more logic, 2nd, Koha would be confused to repeat repeatable fields otherwise !!!
            • hidden : means that the field is managed, but NOT shown in opac. It's usually for internal fields
            • URL : if checked, the subfield is an URL, and can be clicked
            • Auth value : means the value is not free, but in the authorised value list of the selected type
            • thesaurus : means that the value is not free, but can be searched in authority/thesaurus of the selected category
            • plugin : means the value is calculated or managed by a plugin. Plugins can do almost anything. For example, in UNIMARC there are plugins for every 1xx fields that are coded fields. The plugin is a huge help for cataloger ! There are also two plugins (unimarc_plugin_210c and unimarc_plugin_225a that can "magically" find the editor from an ISBN, and the collection list for the editor)
            • link : useless for instance
            --- NEW FILE --- Online Help: System Preferences -- MARC tag structure administration

            MARC tag structure administration

            Koha allows you to specify which MARC tags you want to use and which you want to ignore. When you downloaded and installed Koha, you also got the entire list of MARC21 tags and subfields in current use. Now you need to use the administration page to edit this list and tell Koha which tags you want to use and how you want to use them.

            You can define as the marc tag structure for each biblio framework you have defined

            If you are CERTAIN that you will never use a MARC tag, then you can delete it, but since this will not result in any appreciable improvement in performance, it is probably better to leave it. There will be tags you want to add, however. If you are using older MARC tags that are not in the list of tags supplied with Koha, then use the MARC tag structure administration page to add them. Similarly, you will probably need to add the holdings tag you currently use, or at least check the subfield structure of the 852 tag if you use it for holdings.

            Editing the SubFields from the MARC tag structure page is very time-consuming, but also very important; be sure to click the subfield link for each tag in your MARC tag structure.

            For each subfield you can set :

            • repeatable : wether it can be repeated or not. If it can be repeated, separate the values by a | in the MARC editor when you want to have the subfield twice
            • Mandatory : wether the field is mandatory or not. If mandatory, the cataloger can't validate the biblio if the subfield is empty.
            • Search also : a list of field that Koha will also search on when the user do a search on the subfield
            • Koha link : very important. Koha is multi-MARC compliant. So, it does not know what the 245$a means, neither what 200$f (those 2 fields being both the title in MARC21 and UNIMARC !). So, in this list you can "map" a MARC subfield to it's meaning. Koha constantly maintains consistency between a subfield and it's meaning. When the user want to search on "title", this link is used to find what is searched (245 if you're MARC21, 200 if you're UNIMARC).
            • Text for librarian : what appears before the subfield in the librarian interface
            • Text for OPAC : what appears before the field in the OPAC. If empty, the text for librarian is used instead
            • Managed in tab : deals with the tab where the subfield is shown. Ignore means that the subfield is not managed. All subfields of a given field must be in the same tab or ignored : 1st it's more logic, 2nd, Koha would be confused to repeat repeatable fields otherwise !!!
            • hidden : means that the field is managed, but NOT shown in opac. It's usually for internal fields
            • URL : if checked, the subfield is an URL, and can be clicked
            • Auth value : means the value is not free, but in the authorised value list of the selected type
            • thesaurus : means that the value is not free, but can be searched in authority/thesaurus of the selected category
            • plugin : means the value is calculated or managed by a plugin. Plugins can do almost anything. For example, in UNIMARC there are plugins for every 1xx fields that are coded fields. The plugin is a huge help for cataloger ! There are also two plugins (unimarc_plugin_210c and unimarc_plugin_225a that can "magically" find the editor from an ISBN, and the collection list for the editor)
            • link : useless for instance
            --- NEW FILE --- Online Help: System Preferences -- Printer Administration

            Printer Administration

            If you are going to be using a printer (or several printers) that are attached to your Koha server for producing statistical and operations reports, then you need to give each printer a name and tell Koha how to access it. You do this by telling Koha which print queue to use.

            (In linux, each printer configuration in your printcap file defines a print queue. The default print queue is "lp," but if you use more than one printer you will have other queues, probably with names like "text" or "postscript." Tell Koha which printer queue(s) you want to use for printing reports directly from the server.)

            Note that you can always print Koha screens directly to a printer attached to your workstation just by using your web browser's Print function.

            --- NEW FILE --- Online Help: System Preferences -- Stop word administration page

            Stop word administration page

            Here you should list all of the words you wish Koha to ignore when performing catalog searches or building the keyword index.

            Normally, you will not want Koha to save keyword references to articles like "The" and "A" and other very common words. Saving keyword references to these words does not help to limit a search and will make the keyword index very large and "cluttered" with words that are not really useful. The "stopwords" list defines these unnecessary words for your installation.

            (Hint: If you are proficient at MySQL, it is often faster and easier to find an existing stopwords list, edit it, put it in the correct format, and use the MySQL "Load Data Infile" command to import the list into the stopwords table. Many academic libraries publish their stopwords list on the Internet, or you can ask other Koha libraries if they would share their stopword list.)

            --- NEW FILE --- Online Help: System Preferences -- System preferences administration

            System preferences administration

            This page allows you to set the system preferences that control much of the basic behavior of Koha. These parameters should be set before any other parameters.

            • acquisitions -- The choices are either "normal" or "simple." "Normal" sets the system to track orders and update budgeting and vendor information as you add materials to your collection. "Simple" tells Koha that you are going to add materials to the collection without tracking orders.
            • authoritysep -- The separator used in authority/thesaurus. Usually " -- ". Deprecated and useless in Koha 2.2
            • autoBarcode -- The barcode number to be assigned to items is automatically assigned (sequentially) by Koha if this is set to "yes" ("1" = "yes").
            • autoMemberNum -- The membership number (patron card number) to be assigned to new library users is automatically assigned by Koha if this is set to "yes" ("1" = "yes").
            • checkdigit -- Validity checks on membership number (patron card number): none or "Katipo" style checks. In most cases, you will choose "none" because you will be using pre-printed barcodes.
            • dateformat -- Choose "metric," "us," or "iso" date format (us = mm/dd/yyyy, metric = dd/mm/yyy, ISO = yyyy/mm/dd). This controls how dates are displayed, not how they are stored in the database.
            • gist -- "gist" is "GST" (Good and Sales Tax) rate. If your local tax laws require you to pay taxes on purchases from your suppliers, enter the tax rate here. Set to "0" if you are not required to pay tax.
            • insecure -- The best choice is "no." If you choose "yes," users do not have to login and all information is open to anyone. Be careful if you set this to "yes!"
            • ISBD -- Koha can display records in International Standard Bibliographic Description format. the syntax of this field is quite complex :

              it's divided into blocks, that can contain a text before, X fields, each having -or not- a string before, a string after, and a text after :

              #995|<br>Items :|{\n995b}{ - 995j}{/995k}|

              means the "block" 995 has <br>Items : BEFORE, then fields 995b, 995j and 995k, repeated for each item (995 is an UNIMARC standard), then nothing after the block.

              The # means "beginning of a block", the | is the separator of each part, the {} being used for each subfield. A subfield can have up to 3 digits BEFORE and up to 3 digits AFTER each subfield

              The UNIMARC (partial) definition for ISBD is

              #700||{700a}{701a}{702a}| ; #200||{200a}{ [200b] }{. 200c}{ : 200e}{. 200h}{. 200i}{ / 200f}{ ; 200g}|
              #230||{ ; 230a}|
              #205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|
              #210|<br/><label>Editeur</label>|{ ; 210a}{ (210b) }{ : 210c}{, 210d}|
              #210|(|{210e}{(210f)}{ : 210g}{, 210h}|)
              #215|<br/><label> </label>|{ ; 215a}{ : 215c}{ ; 215d}{ + 215e}|
              #225|<br/><label>Description</label>|{ (225a}{ = 225d}{ : 225e}{. 225h}{. 225i}{ / 225f}{, I225x}{ ; 225v}|)
              #606|<br/><label>Sujets</label>|{ 606a - }|<br/><br/>
              #995|<br>Exemplaires :|{\n995b}{ - 995j}{/995k}|

            • KohaAdminEmailAddress -- The email address that will receive requests from borrowers for modification of their records.
            • ldapserver and ldapinfos -- Koha 2.0 can use Perl LDAP (Lightweight Directory Access Protocol, see http://search.cpan.org/~gbarr/perl-ldap-0.3202/lib/Net/LDAP.pod) to manage user access and privileges. To avoid a useless Perl package for libraries without ldap, all what is related to LDAP has been moved to KohaInstall/modules/C4/Auth_with_ldap.pm. Ask your system administrator to set up LDAP with Auth_with_ldap.pm (perldoc Auth_with_ldap.pm for help). Those 2 parameters are useless in 2.2 and have should not appear on a new install.
            • LibraryName -- The library name or message that will be shown on the main OPAC page. You may use HTML tags to format the name. Example: Welcome to Koha
              Free Software ILS
            • marc -- Turn on MARC support. Set to "no" if you do not intend to use MARC records.
            • marcflavour -- Your MARC flavor (MARC21 or UNIMARC). This choice tells Koha how to interpret your MARC records.
            • maxoutstanding -- The maximum amount of outstanding charges a borrower may have before he/she is barred from making reserve requests. The number represents units of your local currency (e.g. "5" means $5.00, if the dollar is your local currency.)
            • maxreserves -- The maximum number of reserves a member can make.
            • noissuescharge -- The maximum amount of outstanding charges a borrower may have before he/she is barred from checking out items. The number represents units of your local currency (e.g. "5" means $5.00, if the dollar is your local currency.)
            • opaclanguages -- Set your language preference. (Despite the name, this choice controls the language used for all Koha screens, not just the OPAC). The top language in your list will be tried first.
            • opacthemes -- Set the preferred order for themes. The top theme will be tried first.
            • printcirculationslips -- if set to 1, circulation "slips" are printed on your receipt printer. If set to 0, no slips are printed.
            • suggestion -- If set to 1, the Suggestions feature is activated in the OPAC. This feature allows OPAC users to suggest book purchases. When a suggestion is made in the OPAC, it is assigned the status "ASKED." A librarian then manages the suggestion and can set the status to "REJECTED" or "ORDERED." When a book is ordered and has arrived in the library, the status becomes "AVAILABLE." Suggestions that are not yet "AVAILABLE" are visible to all users of the OPAC.
            • template -- Preference order for screen templates. Koha comes with several different options for templates that control the look and feel of your Koha screens, and you can also write your own templates.
            • timeout -- Inactivity timeout period (in seconds). If a workstation is idle for longer than this period, the user will have to login again.
            • virtualshelves -- Set virtual shelves management on or off ("1" or "0"). Users can set up and manage their own "virtual bookshelves" of favorite library items if this feature is turned on.
            --- NEW FILE --- Online Help: System Preferences -- Z39.50 servers administration

            Z39.50 servers administration

            Defines the Z39.50 servers you want Koha to search.

            Koha comes with one Z39.50 server site defined (the U.S. Library of Congress) for finding catalog records to import directly into your catalog. In this area, you can define other servers for searching.

            To add servers, you will need to know the domain name or IP address of the server, the port number to use, and the name of the database to access. This information is available for many servers worldwide by acessing the Index Data website at http://www.indexdata.dk/targettest/. All of the servers listed there accept anonymous connections. (Be sure to choose servers which deliver records in the proper MARC format for your Koha installation.)

            If you have a login name and password for other Z39.50 servers, Koha will save your user ID and password in addition to the other information it needs to make a connection. (For anonymous servers, leave the userid and password fields blank.) The other fields on the form control whether or not the server is automatically searched when you request a Z39.50 search (put a "1" in the "Checked" field) and the order in which it is checked.

            It is a good idea to be selective in choosing servers. Defining more than five or six checked servers may slow down your Z39.50 search results, even if they are queried all together.

            IMPORTANT NOTE : the z3950search will NOT work until your system administrator has not activated the z3950 client daemon on your server. The daemon is in KohaDirectory/script/z3950daemon. It should be added to rc.d to be launched during server boot.

            From oleonard at users.sourceforge.net Fri Jan 14 16:42:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/members memberentry.tmpl,NONE,1.1.2.1 members-home.tmpl,NONE,1.1.2.1 moremember.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/members Added Files: Tag: rel_2_2 memberentry.tmpl members-home.tmpl moremember.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Adding a New Patron

            Add member help

            Add Member, person

            This is the form for adding a new single member to the database. There is also a form for organisations, such as other libraries and non profit organisations you might lend to. You should use the Add Organisation tab at the top of the Member page for that.

            Every field with an asterisk must be filled out, or you will get an error, and the record will not be added to the database.

            If you accidentally have two members with the same card number, the second duplicate will show up as just commas after you confirm the record.

            When you are done with the record, click the Save button at the bottom.

            The clear all Fields button will reset the page to a blank form in case you made a mistake.

            Add Member, Institutional

            This is the form for adding a group of members. Suppose you had a YMCA group, or lend books to other Libraries. This would be the form to use for that purpose.

            Every field with an asterisk must be filled out, or you will get an error, and the record will not be added to the database.

            If you accidentally have two members with the same card number, the second duplicate will show up as just commas after you confirm the record.

            When you are done with the record, click the Save button at the bottom.

            The clear all Fields button will reset the page to a blank form in case you made a mistake.

            You can always come back and edit what you enter in the Add Member screen by searching for the borrower by using their last name or card number, selecting a user by clicking on the entry in the search list, and then clicking the Modify button on the member information screen.

            --- NEW FILE --- Online Help: Members

            Members help

            This is the Members portion of Koha.

            The Members portion stores the information you add about your patrons.

            To add a patron, type their name into the search box on the left, and click the OK button.

            If there is already a borrower matching the name you searched, it will show after you click OK. This can be particularly useful when people have lost their cards or when children forget their cards. That way, you can avoid having multiple numbers for the same patron.

            Alternatively, you can browse a section of borrowers by selecting the first letter of the Patron's last name from the list on the right.

            --- NEW FILE --- Online Help: Member Information

            Member Information Screen

            This screen shows the information associated with a given patron.

            On the top left is their address and card number.

            A patron's annual membership fee payment status also shows on this screen.

            Any fines a patron has will show up in the top middle of this screen.

            Any materials a patron has requested will show up on the top right of this screen.

            You can get information on what a patron has read in the past by clicking on the Reading Record button.

            Any items a patron currently has out will show up under "Items currently on issue".

            If you would like to edit a patron's information, click the modify button on the lower left.

            If you would like to PERMANENTLY delete a user, click the delete button on the lower left. A confirmation box will appear, so don't worry about accidentally deleting a record. Just be absolutely sure before you delete!

            The change password button allows a user to either set a new password or change their current password. This is useful to patrons that wish to place reserves online from home. You cannot see a password again once you change it, but you can reset a password.

            Modify user flags allows an administrator to set which clerks, librarians, patrons, technical support people or trustees have access to certain parts of the database. Right now, one can either have permission to access everything on the Intranet side, or just have access to the OPAC.

            From oleonard at users.sourceforge.net Fri Jan 14 16:42:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/authorities authorities.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/authorities Added Files: Tag: rel_2_2 authorities.tmpl Log Message: Synching with default template --- NEW FILE --- authority help From oleonard at users.sourceforge.net Fri Jan 14 22:08:20 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:08:20 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-flags.tmpl,1.2,1.3 newimember.tmpl,1.1,1.2 newjmember.tmpl,1.1,1.2 newmember.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7721/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: member-flags.tmpl newimember.tmpl newjmember.tmpl newmember.tmpl Log Message: Change to allow page-specific title in title tag Index: member-flags.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member-flags.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** member-flags.tmpl 13 Apr 2004 16:59:43 -0000 1.2 --- member-flags.tmpl 14 Jan 2005 21:08:16 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Set Privileges for , Index: newimember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newimember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newimember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newimember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm New Borrower Index: newjmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newjmember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newjmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newjmember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Details Index: newmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newmember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newmember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Record From oleonard at users.sourceforge.net Fri Jan 14 22:08:48 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:08:48 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui acqui-home.tmpl,1.3,1.4 acquire.tmpl,1.1,1.2 basket.tmpl,1.2,1.3 newbasket2.tmpl,1.1,1.2 order.tmpl,1.2,1.3 recieve.tmpl,1.1,1.2 recieveorder.tmpl,1.1,1.2 supplier.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7842/koha-tmpl/intranet-tmpl/npl/en/acqui Modified Files: acqui-home.tmpl acquire.tmpl basket.tmpl newbasket2.tmpl order.tmpl recieve.tmpl recieveorder.tmpl supplier.tmpl Log Message: Change to allow page-specific title in title tag Index: acqui-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acqui-home.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** acqui-home.tmpl 28 Oct 2004 17:12:26 -0000 1.3 --- acqui-home.tmpl 14 Jan 2005 21:08:45 -0000 1.4 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Acquisitions Index: acquire.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acquire.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acquire.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- acquire.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : Invoice, Index: basket.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/basket.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** basket.tmpl 28 Oct 2004 17:12:26 -0000 1.2 --- basket.tmpl 14 Jan 2005 21:08:45 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- New Shopping Basket () for Index: newbasket2.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/newbasket2.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newbasket2.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- newbasket2.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Shopping Basket For: Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/order.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** order.tmpl 28 Oct 2004 17:12:27 -0000 1.2 --- order.tmpl 14 Jan 2005 21:08:45 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Supplier Search Results Index: recieve.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieve.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** recieve.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieve.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : , Invoice Index: recieveorder.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieveorder.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** recieveorder.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieveorder.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receive Orders From Supplier Index: supplier.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/supplier.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** supplier.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- supplier.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update: Add supplier From oleonard at users.sourceforge.net Fri Jan 14 22:09:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:09:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple marcimport.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8006/koha-tmpl/intranet-tmpl/npl/en/acqui.simple Modified Files: marcimport.tmpl Log Message: Change to allow page-specific title in title tag Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple/marcimport.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** marcimport.tmpl 13 Apr 2004 16:51:08 -0000 1.2 --- marcimport.tmpl 14 Jan 2005 21:09:09 -0000 1.3 *************** *** 1,4 **** Koha -- Cataloging: MARC Import ! --- 1,4 ---- Koha -- Cataloging: MARC Import ! From oleonard at users.sourceforge.net Fri Jan 14 22:10:08 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:10:08 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves addbookbybiblionumber.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8376/koha-tmpl/intranet-tmpl/npl/en/bookshelves Modified Files: addbookbybiblionumber.tmpl Log Message: Change to allow page-specific title in title tag Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** addbookbybiblionumber.tmpl 11 Jan 2005 16:44:09 -0000 1.1 --- addbookbybiblionumber.tmpl 14 Jan 2005 21:10:04 -0000 1.2 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Add to Virtual Shelf
            From oleonard at users.sourceforge.net Fri Jan 14 22:16:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:16:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull result.tmpl,1.3,1.4 search.tmpl,1.2,1.3 searchresultlist.tmpl,1.1,1.2 subscription-bib-search.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9754/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: result.tmpl search.tmpl searchresultlist.tmpl subscription-bib-search.tmpl Log Message: Change to allow page-specific title in title tag Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** result.tmpl 11 Jan 2005 16:54:14 -0000 1.3 --- result.tmpl 14 Jan 2005 21:16:14 -0000 1.4 *************** *** 1,3 **** !

            Search results

            --- 1,3 ---- ! Koha -- Search Results

            Search results

            Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** search.tmpl 10 Jan 2005 17:02:54 -0000 1.2 --- search.tmpl 14 Jan 2005 21:16:14 -0000 1.3 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Catalog Search
            Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- searchresultlist.tmpl 14 Jan 2005 21:16:14 -0000 1.2 *************** *** 1,3 **** !

            Authority search results

            --- 1,3 ---- ! Koha -- Authority search results

            Authority search results

            Index: subscription-bib-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-bib-search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-bib-search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- subscription-bib-search.tmpl 14 Jan 2005 21:16:14 -0000 1.2 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Bib Search
            From oleonard at users.sourceforge.net Fri Jan 14 22:17:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:17:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/circ branchtransfers.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9984/koha-tmpl/intranet-tmpl/npl/en/circ Modified Files: branchtransfers.tmpl Log Message: Converting popup links to normal links Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/branchtransfers.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** branchtransfers.tmpl 13 Apr 2004 16:53:45 -0000 1.2 --- branchtransfers.tmpl 14 Jan 2005 21:17:33 -0000 1.3 *************** *** 12,18 ****
            ! ! ! ! !
            Reserve found for (" onclick="openWindow(this,'Member', 480, 640)">). ! Item is marked waiting at for (" onclick="openWindow(this,'Member', 480, 640)">).
            Set reserve to waiting and transfer book to : --- 12,18 ----
            ! --- 125,129 ---- From oleonard at users.sourceforge.net Fri Jan 14 22:19:19 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:19:19 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes doc-head-circ-close.inc,1.2,1.3 doc-head-close-addbiblio.inc,1.1,1.2 doc-head-close.inc,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10440/koha-tmpl/intranet-tmpl/npl/en/includes Modified Files: doc-head-circ-close.inc doc-head-close-addbiblio.inc doc-head-close.inc Log Message: Enabling popup function in javascript (previously disabled to prevent popups) Index: doc-head-circ-close.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/doc-head-circ-close.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** doc-head-circ-close.inc 13 Apr 2004 16:57:24 -0000 1.2 --- doc-head-circ-close.inc 14 Jan 2005 21:19:15 -0000 1.3 *************** *** 8,14 **** --- 1,3 ---- ! Koha -- Modify categoryAdd category From oleonard at users.sourceforge.net Fri Jan 14 22:34:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:34:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en bookcount.tmpl,1.1,1.2 modbib.tmpl,1.1,1.2 modbibitem.tmpl,1.1,1.2 updatebiblio.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13394/koha-tmpl/intranet-tmpl/npl/en Modified Files: bookcount.tmpl modbib.tmpl modbibitem.tmpl updatebiblio.tmpl Log Message: Change to allow page-specific title in title tag Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookcount.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bookcount.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- bookcount.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Circulation Statistics for Index: modbib.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbib.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** modbib.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbib.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Record for Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** modbibitem.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbibitem.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Biblioitem for Index: updatebiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/updatebiblio.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** updatebiblio.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- updatebiblio.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update Biblio From acli at users.sourceforge.net Sat Jan 15 06:51:37 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Fri, 14 Jan 2005 21:51:37 -0800 Subject: [Koha-cvs] CVS: koha/misc buildrelease,1.23,1.23.2.1 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9389 Modified Files: Tag: rel_2_2 buildrelease Log Message: Taught buildrelease what the misc directory and release 2.2 is, and also that version numbers might only have 1 dot. This should fix bugs 889, 890. A --verbose or -v option has been added in the process of doing the above. It now chdir to .. if it discovers that it is being run inside misc, since running it inside misc screws up various things, and I never remember whether it should be run inside misc or not. A confirmation message about whether to tag or not is now displayed after the user answers the question about tagging. I have never felt safe not having the release builder confirm with me that I really am not tagging anything. Index: buildrelease =================================================================== RCS file: /cvsroot/koha/koha/misc/buildrelease,v retrieving revision 1.23 retrieving revision 1.23.2.1 diff -C2 -r1.23 -r1.23.2.1 *** buildrelease 5 Jan 2005 14:31:06 -0000 1.23 --- buildrelease 15 Jan 2005 05:51:35 -0000 1.23.2.1 *************** *** 1,4 **** --- 1,60 ---- #!/usr/bin/perl + # This script uses standard 8-space tabs with 4-space indents + # vi users can :set sw=4 ai sm + use Getopt::Long; + use vars qw( $verbose_p ); + + GetOptions( + 'verbose|v' => \$verbose_p, + ) || exit(1); + + print <) { *************** *** 30,37 **** print qq | - *************************************** - * Welcome to the Koha Release Builder * - *************************************** - This script will automatically build a release tarball. --- 87,90 ---- *************** *** 39,45 **** out for the release that you want to build, although it will update the modules before building. - |; ! print "\nWhere is the 'koha' cvs module located [$kohadir]: "; chomp($input = ); if ($input) { --- 92,97 ---- out for the release that you want to build, although it will update the modules before building. |; ! print "\nWhere is the 'koha' cvs module located? [$kohadir]: "; chomp($input = ); if ($input) { *************** *** 62,72 **** #kohahtmldir=$kohahtmldir |; #---------------------------------------------------------- # which VERSION are we building ? #---------------------------------------------------------- ! print "\n\nGuessing at next release version. You may need to enter your SourceForge password...\n"; chdir $kohadir; ! open (CVSLOG, "cvs log misc/buildrelease|"); my $symbolicnamessection=0; my $symbolicnames; --- 114,128 ---- #kohahtmldir=$kohahtmldir |; + print STDERR "$roothomedir/.kohaautobuild.conf written\n" if $verbose_p; #---------------------------------------------------------- # which VERSION are we building ? #---------------------------------------------------------- ! print <{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=$rc; } if (versioncompare($version, $highestversion)) { --- 135,156 ---- if (/^symbolic names:/) { $symbolicnamessection=1; + print STDERR "Scanning symbolic names from cvs output\n" if $verbose_p; } if ($symbolicnamessection && (/^\s+([^:]*):/)) { my $tag=$1; ! if ($tag=~/(?:R|rel)_(.*)/) { my $version=''; my $rc=0; my $id=$1; ! $id =~ s/[-_]/\./g; ! print STDERR "Found a tag for release $id\n" if $verbose_p; if ($id =~/(.*)RC(.*)/) { $version=$1; $rc=$2; ! $version =~ /^(\d+\.\d+)(?:\.|[RC]|$)/; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=$rc; + print STDERR "Setting major version for $1 to $version $rc\n" if $verbose_p; } if (versioncompare($version, $highestversion)) { *************** *** 99,109 **** $released=0; $highestrc=$rc; } } else { $version=$id; ! $version=~m#(\d+\.\d+)\.#; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=0; } if (versioncompare($version, $highestversion)) { --- 158,170 ---- $released=0; $highestrc=$rc; + print STDERR "Setting highest version to $highestversion $highestrc\n" if $verbose_p; } } else { $version=$id; ! $version =~ /^(\d+\.\d+)(?:\.|[RC]|$)/; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=0; + print STDERR "Setting major version for $1 to $version $rc\n" if $verbose_p; } if (versioncompare($version, $highestversion)) { *************** *** 111,117 **** --- 172,180 ---- $released=1; $highestrc=0; + print STDERR "Setting highest version to $highestversion $highestrc\n" if $verbose_p; } } $symbolicnames->{$version}->{$rc}=1; + print STDERR "Setting symbolic name mapping for version $version $rc to 1\n" if $verbose_p; } } *************** *** 121,143 **** my $currentversion=''; ! my $branchdata=`grep buildrelease CVS/Entries`; chomp $branchdata; my $branch=(split(m#/#, $branchdata))[5]; ! ! if ($branch eq 'Trel-1-2') { ! $highestversion=$majorversion->{'1.2'}; ! $highestrc=$majorversionrc->{'1.2'}; ($highestrc) ? ($released=0) : ($released=1); } if ($released) { my @components=split(/\./, $highestversion); ! $components[$#components]++; ! $nexthighestversion=join '.', @components; ! my $minornumber=(split(/\./, $highestversion))[1]; ! if ($minornumber/2 == int($minornumber/2)) { ! $releaseversion=$nexthighestversion."RC1"; } else { ! $releaseversion=$nexthighestversion; } $currentversion=$highestversion; --- 184,219 ---- my $currentversion=''; ! my $cvs_entries_path = $self_path; ! $cvs_entries_path =~ s/[^\/]+$/CVS\/Entries/; ! print STDERR "Assuming CVS/Entries is $cvs_entries_path\n" if $verbose_p; ! ! my $branchdata=`grep buildrelease $cvs_entries_path`; chomp $branchdata; my $branch=(split(m#/#, $branchdata))[5]; ! $branch =~ s/^T//; ! $branch =~ s/^(?:R|rel)_//; ! $branch =~ s/[-_]/./g; ! print STDERR "Detected branch $branch\n" if $verbose_p; ! ! if ($branch =~ /\S/ && defined $majorversion->{$branch}) { ! $highestversion=$majorversion->{$branch}; ! $highestrc=$majorversionrc->{$branch}; ($highestrc) ? ($released=0) : ($released=1); + print STDERR "Using highest version for branch $branch\n" if $verbose_p; } if ($released) { my @components=split(/\./, $highestversion); ! if (@components < 3) { # if it's something like just 2.2 or 2.4 ! $releaseversion = $highestversion.".1RC1"; } else { ! $components[$#components]++; ! $nexthighestversion=join '.', @components; ! my $minornumber=(split(/\./, $highestversion))[1]; ! if ($minornumber/2 == int($minornumber/2)) { ! $releaseversion=$nexthighestversion."RC1"; ! } else { ! $releaseversion=$nexthighestversion; ! } } $currentversion=$highestversion; *************** *** 155,159 **** print "\nWould you like to rebuild the $currentversion tarball? Y/[N]: "; chomp($input = ); - print STDERR "releaseversion=($releaseversion), currentversion=($currentversion)\n";#XXXZZZ if ($input =~ /^y/i) { $releaseversion=$currentversion; --- 231,234 ---- *************** *** 178,185 **** chomp ($input=); my $cvstag=0; - # FIXME: This means anything other than n will tag; too dangerous? if ($input=~/^y/i) { $cvstag=1; } --- 253,260 ---- chomp ($input=); my $cvstag=0; if ($input=~/^y/i) { $cvstag=1; } + print "The CVS repository ",($cvstag?"WILL BE TAGGED\n":"will not be tagged\n"); *************** *** 329,332 **** --- 404,408 ---- + # Given two version numbers (v1, v2), returns 0 if v1 <= v2, or 1 if v1 > v2 sub versioncompare { my $v1=shift; From oleonard at users.sourceforge.net Tue Jan 18 18:35:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 09:35:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-auth.tmpl,1.1,1.1.2.1 opac-main.tmpl,1.3,1.3.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28083/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-auth.tmpl opac-main.tmpl Log Message: Removing NPL-specific javascript function which was trying to validate library card numbers Index: opac-auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-auth.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-auth.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-auth.tmpl 18 Jan 2005 17:35:51 -0000 1.1.2.1 *************** *** 35,39 ****
            Reserve found for (">). ! Item is marked waiting at for (">).
            Set reserve to waiting and transfer book to : *************** *** 94,99 **** ! Item was on loan to " ! onClick="openWindow(this,'Member', 480, 640)"> and has been returned. --- 94,98 ---- ! Item was on loan to "> and has been returned. *************** *** 126,130 ****
            ! &type=intra" onclick="openWindow(this, 'Item', 480, 640)">
            ! &type=intra">
            !
            --- 35,39 ----
            !
            Index: opac-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-main.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** opac-main.tmpl 8 Dec 2004 16:12:17 -0000 1.3 --- opac-main.tmpl 18 Jan 2005 17:35:55 -0000 1.3.2.1 *************** *** 12,16 ****

            Log in to Check Your Account

            !

            --- 12,16 ----

            Log in to Check Your Account

            !

            From oleonard at users.sourceforge.net Tue Jan 18 21:09:49 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 12:09:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en request.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29568/koha-tmpl/intranet-tmpl/npl/en Modified Files: request.tmpl Log Message: Converting popup links to normal links Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/request.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** request.tmpl 13 Jan 2005 21:53:03 -0000 1.4 --- request.tmpl 18 Jan 2005 20:09:28 -0000 1.5 *************** *** 130,134 ****
            ! &type=intra" onClick="openWindow(this, 'Item', 480, 640)"> --- 130,134 ---- ! &type=intra"> From oleonard at users.sourceforge.net Tue Jan 18 22:10:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:10:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes doc-head-circ-close.inc,1.2,1.2.2.1 doc-head-close-addbiblio.inc,1.1,1.1.2.1 doc-head-close.inc,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9555/koha-tmpl/intranet-tmpl/npl/en/includes Modified Files: Tag: rel_2_2 doc-head-circ-close.inc doc-head-close-addbiblio.inc doc-head-close.inc Log Message: Enabling popup function in javascript (previously disabled to prevent popups) Index: doc-head-circ-close.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/doc-head-circ-close.inc,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** doc-head-circ-close.inc 13 Apr 2004 16:57:24 -0000 1.2 --- doc-head-circ-close.inc 18 Jan 2005 21:10:15 -0000 1.2.2.1 *************** *** 8,14 ****
            Notes
            Date
            Pickup
            RequestNext Available, (or choose from list below)
            Card Number (Quick Search)
            --- 24,32 ----
    Next Available, (or choose from list below)
    (Quick Search)
    *************** *** 130,134 ****
    ! &type=intra" onClick="openWindow(this, 'Item', 480, 640)"> --- 130,134 ---- ! &type=intra"> From oleonard at users.sourceforge.net Tue Jan 18 22:22:07 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:22:07 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en bookcount.tmpl,1.1,1.1.2.1 modbib.tmpl,1.1,1.1.2.1 modbibitem.tmpl,1.1,1.1.2.1 updatebiblio.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11617/koha-tmpl/intranet-tmpl/npl/en Modified Files: Tag: rel_2_2 bookcount.tmpl modbib.tmpl modbibitem.tmpl updatebiblio.tmpl Log Message: Change to allow page-specific title in title tag Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookcount.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** bookcount.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- bookcount.tmpl 18 Jan 2005 21:21:23 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Circulation Statistics for Index: modbib.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbib.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** modbib.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbib.tmpl 18 Jan 2005 21:21:23 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Record for Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** modbibitem.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbibitem.tmpl 18 Jan 2005 21:21:28 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Biblioitem for Index: updatebiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/updatebiblio.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** updatebiblio.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- updatebiblio.tmpl 18 Jan 2005 21:21:28 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update Biblio From oleonard at users.sourceforge.net Tue Jan 18 22:38:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:38:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull result.tmpl,1.1.2.2,1.1.2.3 search.tmpl,1.1.2.1,1.1.2.2 searchresultlist.tmpl,1.1,1.1.2.1 subscription-bib-search.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14728/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: Tag: rel_2_2 result.tmpl search.tmpl searchresultlist.tmpl subscription-bib-search.tmpl Log Message: Change to allow page-specific title in title tag Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -r1.1.2.2 -r1.1.2.3 *** result.tmpl 11 Jan 2005 16:53:39 -0000 1.1.2.2 --- result.tmpl 18 Jan 2005 21:38:04 -0000 1.1.2.3 *************** *** 1,3 **** !

    Search results

    --- 1,3 ---- ! Koha -- Search Results

    Search results

    Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** search.tmpl 10 Jan 2005 17:05:03 -0000 1.1.2.1 --- search.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.2 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Catalog Search
    Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** searchresultlist.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- searchresultlist.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.1 *************** *** 1,3 **** !

    Authority search results

    --- 1,3 ---- ! Koha -- Authority search results

    Authority search results

    Index: subscription-bib-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-bib-search.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** subscription-bib-search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- subscription-bib-search.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.1 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Bib Search
    From oleonard at users.sourceforge.net Tue Jan 18 22:55:24 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:55:24 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-quicksearch-results.tmpl,NONE,1.1.2.1 member-quicksearch.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18387/koha-tmpl/intranet-tmpl/npl/en/members Added Files: Tag: rel_2_2 member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: Adding member quick search (already in HEAD) to rel_2_2 --- NEW FILE --- Koha -- Patron Quick Search
      Card Name (Cat.) Address
    ','mainform','member'); return false;" /> ">, ()
    No results found
    --- NEW FILE --- Koha -- Patron Quick Search
    From oleonard at users.sourceforge.net Tue Jan 18 22:57:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:57:10 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/members member-quicksearch-results.tmpl,NONE,1.1.2.1 member-quicksearch.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18688/koha-tmpl/intranet-tmpl/default/en/members Added Files: Tag: rel_2_2 member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: Adding member quick search (already in HEAD) to rel_2_2 --- NEW FILE ---

    Member Search

      Card Surname Firstname Address
    ','request','member'); return false;" />
    ">
    --- NEW FILE ---

    Member Quick Search

    From oleonard at users.sourceforge.net Tue Jan 18 22:59:16 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:59:16 -0800 Subject: [Koha-cvs] CVS: koha/members members-home.pl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19123/members Modified Files: Tag: rel_2_2 members-home.pl Log Message: Adding member quick search (already in HEAD) to rel_2_2 Index: members-home.pl =================================================================== RCS file: /cvsroot/koha/koha/members/members-home.pl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** members-home.pl 10 Mar 2004 15:13:45 -0000 1.1 --- members-home.pl 18 Jan 2005 21:59:09 -0000 1.1.2.1 *************** *** 10,14 **** my $query = new CGI; ! my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/members-home.tmpl", query => $query, --- 10,28 ---- my $query = new CGI; ! my $quicksearch = $query->param('quicksearch'); ! my ($template, $loggedinuser, $cookie); ! my $template_name; ! ! if($quicksearch){ ! ($template, $loggedinuser, $cookie) ! = get_template_and_user({template_name => "members/member-quicksearch.tmpl", ! query => $query, ! type => "intranet", ! authnotrequired => 0, ! flagsrequired => {borrowers => 1}, ! debug => 1, ! }); ! } else { ! ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/members-home.tmpl", query => $query, *************** *** 18,21 **** --- 32,37 ---- debug => 1, }); + } + output_html_with_http_headers $query, $cookie, $template->output; From oleonard at users.sourceforge.net Tue Jan 18 23:07:47 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:07:47 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes quicksearch-top.inc,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20451/koha-tmpl/intranet-tmpl/default/en/includes Added Files: Tag: rel_2_2 quicksearch-top.inc Log Message: Header include for member-quicksearch-results.tmpl (includes javascript for communicating with parent window) --- NEW FILE --- popup /includes/common-style.css"> From oleonard at users.sourceforge.net Tue Jan 18 23:11:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:11:59 -0800 Subject: [Koha-cvs] CVS: koha/members member.pl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21337/members Modified Files: Tag: rel_2_2 member.pl Log Message: Adding option to output using quicksearch template if the quicksearch parameter is present (uses member-quicksearch.tmpl and member-quicksearch-results.tmpl) Index: member.pl =================================================================== RCS file: /cvsroot/koha/koha/members/member.pl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** member.pl 5 Sep 2004 22:34:05 -0000 1.2 --- member.pl 18 Jan 2005 22:11:43 -0000 1.2.2.1 *************** *** 33,45 **** my $input = new CGI; ! ! my $theme = $input->param('theme') || "default"; ! # only used if allowthemeoverride is set ! #my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' ); ! # FIXME - Error-checking ! #my $template = HTML::Template->new( filename => $tmpldata{'path'}, ! # die_on_bad_params => 0, ! # loop_context_vars => 1 ); ! my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/member.tmpl", query => $input, --- 33,49 ---- my $input = new CGI; ! my $quicksearch = $input->param('quicksearch'); ! my ($template, $loggedinuser, $cookie); ! if($quicksearch){ ! ($template, $loggedinuser, $cookie) ! = get_template_and_user({template_name => "members/member-quicksearch-results.tmpl", ! query => $input, ! type => "intranet", ! authnotrequired => 0, ! flagsrequired => {borrowers => 1}, ! debug => 1, ! }); ! } else { ! ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/member.tmpl", query => $input, *************** *** 49,52 **** --- 53,65 ---- debug => 1, }); + } + my $theme = $input->param('theme') || "default"; + # only used if allowthemeoverride is set + #my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' ); + # FIXME - Error-checking + #my $template = HTML::Template->new( filename => $tmpldata{'path'}, + # die_on_bad_params => 0, + # loop_context_vars => 1 ); + my $member=$input->param('member'); From oleonard at users.sourceforge.net Tue Jan 18 23:53:08 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:53:08 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_subfields_structure.tmpl,NONE,1.1 auth_tag_structure.tmpl,NONE,1.1 authtypes.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29639/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: auth_subfields_structure.tmpl auth_tag_structure.tmpl authtypes.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration

    Edit subfields

    " name="Aform" method="post"> " /> ">

    Tag , Subfield

    MARC constraints

    repeatable mandatory

    " size="20" /> (example for 200a : '200c','200d','200e')

    Editor constaints

    " size="40" maxlength="80" />

    " size="40" maxlength="80" />

    hidden (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)

    URL (if checked, it means that the subfield is an URL and can be clicked

    or thesaurus: or plugin:

    Note: in the last column, you can choose:

    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.

    Subfield

    " method="post"> " /> " /> " /> " />

    CONFIRM DELETION

    " method="post"> " />

    Authority MARC subfield structure admin for tag (framework )(default framework)

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    ">
    Subfield Text Constraints Delete
    subfield ignored Managed, Repeatable, Not repeatable, Mandatory, Not mandatory, see also : , hidden, is an url, Auth value :, Plugin :, ">Delete
    Edit &authtypecode="> //images/2uparrow.png" width="32" hspace="0" vspace="0" border="0"> << Previous Next >>
    --- NEW FILE --- Koha -- System Administration

    Authority MARC framework for default framework

    Modify tag Add tag

    " name="Aform" method="post"> " />

    " size="80" maxlength="100" />

    " size="80" maxlength="100" />

    (if you select a value here, the indicators will be limited to the authorised value list)

    " method="post"> " /> Data deleted " method="post"> " method="post"> " /> Create authority framework for using

    Select an authority framework

    " method="post"> " />
    tag
     
    CONFIRM DELETION
    " method="post">
    ">
    Tag Lib Repeatable Mandatory Authorised
    value
    Subfields Edit Delete
    YesNo YesNo " class="button">subfields ">Edit ">Delete
    " method="post"> " /> ?offset=&searchfield=">Previous Page ?offset=&searchfield=">Next Page
    --- NEW FILE --- Koha -- System Administration
    " name="Aform" method="post">
    Modify authority type Add authority type
    " />
    " />
    " />Enter here the number of the tag that will be reported in the biblio (subfield by subfield). For example, in UNIMARC, enter 200 to report every 200 subfield in the 70x biblio

    Authority structure definition for ()

    This record is used times

    CONFIRM DELETION

    " method="post"> " />
    " method="post">

    Auth type Admin

    Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins

    Code Description summary Tag reported   Edit Delete
      Default framework     MARC structure    
    " class="button parameters" >MARC structure ?op=add_form&authtypecode=">Edit ?op=delete_confirm&authtypecode=">Delete
    " method="post">
    "><< Previous ">Next >> /images/background-mem.gif">Upper Age Limit /images/background-mem.gif">Age Required/images/background-mem.gif">Fine /images/background-mem.gif">Overdue/images/background-mem.gif">Issue limit /images/background-mem.gif">Reserve /images/background-mem.gif"> Yes --- 268,271 ---- *************** *** 277,281 **** ?op=add_form&categorycode=">//images/fileopen.png" width="32" hspace="0" vspace="0" border="0">
    CONFIRM DELETION
    " -->&modify=edit">Edit
    &modify=edit">Edit
    Due Status
    - - &bornum=" class="padded">Renew - - Not renewable - -
    Reserved Items Waiting
    TitleAuthor Reserve date Pick Up Branch
    ! ">  !
    --- 41,59 ---- Reserved Items Waiting ! Title Reserve date Pick Up Branch ! ! /images/.gif" alt="" title="" /> ! "> ! ! Waiting at ! ! In transit from to ! ! *************** *** 69,75 **** ! /images/.gif" alt="" /> "> ! () --> --- 73,79 ---- ! /images/.gif" alt="" title="" /> "> ! --> *************** *** 86,90 **** Due ! Status --- 90,94 ---- Due ! *************** *** 92,101 **** ! /images/.gif" alt="" /> "> ! () YesNo --> ! &bornum=" class="padded">Renew --- 96,105 ---- ! /images/.gif" alt="" title="" /> "> ! YesNo --> ! &bornum=" class="padded">Renew *************** *** 103,107 **** Not renewable ! --- 107,111 ---- Not renewable ! --> *************** *** 121,136 **** ! Title Placed On Pick Up Location "> ! () ! !
    --- 125,144 ---- ! Title Placed On Pick Up Location + Status + /images/.gif" alt="" title="" /> "> ! ! ! ! Waiting at In transit from to   !
    From oleonard at users.sourceforge.net Wed Jan 19 22:39:28 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:39:28 -0800 Subject: [Koha-cvs] CVS: koha request.pl,1.28,1.29 Message-ID: Update of /cvsroot/koha/koha In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13177 Modified Files: request.pl Log Message: Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should display that information. Index: request.pl =================================================================== RCS file: /cvsroot/koha/koha/request.pl,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** request.pl 13 Jul 2004 12:55:01 -0000 1.28 --- request.pl 19 Jan 2005 21:39:25 -0000 1.29 *************** *** 134,141 **** --- 134,145 ---- my $item = $res->{'itemnumber'}; $item = getiteminformation(\%env,$item); + $reserve{'holdingbranch'}=$item->{'holdingbranch'}; $reserve{'barcode'}=$item->{'barcode'}; $reserve{'biblionumber'}=$item->{'biblionumber'}; $reserve{'wbrcode'} = $res->{'branchcode'}; $reserve{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'}; + if($reserve{'holdingbranch'} eq $reserve{'wbrcode'}){ + $reserve{'atdestination'} = 1; + } } $reserve{'date'} = format_date($res->{'reservedate'}); From oleonard at users.sourceforge.net Wed Jan 19 22:45:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:45:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en request.tmpl,1.17,1.18 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15288/koha-tmpl/intranet-tmpl/default/en Modified Files: request.tmpl Log Message: Updated to show items as waiting only if destination branch matches holding branch. Otherwise waiting items will be shown as "in transit" between holding branch and destination branch. Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/request.tmpl,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** request.tmpl 13 Jan 2005 22:41:03 -0000 1.17 --- request.tmpl 19 Jan 2005 21:45:56 -0000 1.18 *************** *** 109,113 **** ! Item waiting at > > " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> --- 46,50 ---- ! class="hilighted"> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> From oleonard at users.sourceforge.net Thu Jan 20 18:37:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:37:58 -0800 Subject: [Koha-cvs] CVS: koha/admin issuingrules.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9072/admin Modified Files: issuingrules.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: issuingrules.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/issuingrules.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** issuingrules.pl 18 Aug 2004 16:05:14 -0000 1.3 --- issuingrules.pl 20 Jan 2005 17:37:56 -0000 1.4 *************** *** 132,136 **** $sth->execute; # $i=0; ! my $toggle="white"; my @row_loop; my @itemtypes; --- 132,136 ---- $sth->execute; # $i=0; ! my $toggle= 1; my @row_loop; my @itemtypes; *************** *** 146,153 **** my @trow2; my @cell_loop; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } for (my $i=0;$i<=$#trow3;$i++){ --- 146,153 ---- my @trow2; my @cell_loop; ! if ( $toggle eq 1 ) { ! $toggle = 0; } else { ! $toggle = 1; } for (my $i=0;$i<=$#trow3;$i++){ From oleonard at users.sourceforge.net Thu Jan 20 18:38:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:38:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters issuingrules.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9222/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: issuingrules.tmpl Log Message: Altering table cell color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: issuingrules.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** issuingrules.tmpl 19 Jul 2004 19:20:29 -0000 1.3 --- issuingrules.tmpl 20 Jan 2005 17:38:16 -0000 1.4 *************** *** 46,50 **** ! "> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> --- 46,50 ---- ! class="hilighted"> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> From oleonard at users.sourceforge.net Thu Jan 20 18:39:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:39:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters biblio_framework.tmpl,NONE,1.1 issuingrules.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9613/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: biblio_framework.tmpl issuingrules.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration: Modify framework textAdd frameworkDelete Framework for ()?Biblio Framework
    " name="Aform" method="post">
    Modify framework textAdd framework
    " />
    " />

    Delete ramework for ()?

    This framework is used times

    " method="post">" />
    " method="post">

    Biblio framework

    Framework name, then go to MARC biblio to set MARC editor parameters

    Code Description   Edit Delete
      Default framework ">MARC structure    
    " >MARC structure ?op=add_form&frameworkcode=">Edit ?op=delete_confirm&frameworkcode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Issuing Rules

    Defining issuing rules for default issuing rules

    HINT for issues

    Each box needs to be filled in with issuelength,maxissues

    eq 21,5 enables 5 issues for 21 days

    HINT for fines

    Each box needs to be filled in with fine,time to start charging,charging cycle

    eg 1,7,7 = 1 [USD,EUR,etc] fine after 7 days, every 7 days

    Fines are calculated by the fines2.pl script, located in misc directory. Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night

    Default values

    If a cell is not filled, the 1st of the following value is searched :

    • same branch and same borrower category, itemtype *
    • same branch and same itemtype, borrower category *
    • same itemtype and borrower category, branch *
    • everywhere
    • If nothing is set, default is 21,5 (hardcoded)
    class="highlight"> " value="" size="6" maxlength="10" /> / " value="" size="6" maxlength="10" />
    Defining issuing rules for
     
    Issue / fine
    From oleonard at users.sourceforge.net Thu Jan 20 18:41:09 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:41:09 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_subfields_structure.tmpl,NONE,1.1.2.1 auth_tag_structure.tmpl,NONE,1.1.2.1 authtypes.tmpl,NONE,1.1.2.1 biblio_framework.tmpl,NONE,1.1.2.1 issuingrules.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9964/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: Tag: rel_2_2 auth_subfields_structure.tmpl auth_tag_structure.tmpl authtypes.tmpl biblio_framework.tmpl issuingrules.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration

    Edit subfields

    " name="Aform" method="post"> " /> ">

    Tag , Subfield

    MARC constraints

    repeatable mandatory

    " size="20" /> (example for 200a : '200c','200d','200e')

    Editor constaints

    " size="40" maxlength="80" />

    " size="40" maxlength="80" />

    hidden (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)

    URL (if checked, it means that the subfield is an URL and can be clicked

    or thesaurus: or plugin:

    Note: in the last column, you can choose:

    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.

    Subfield

    " method="post"> " /> " /> " /> " />

    CONFIRM DELETION

    " method="post"> " />

    Authority MARC subfield structure admin for tag (framework )(default framework)

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    ">
    Subfield Text Constraints Delete
    subfield ignored Managed, Repeatable, Not repeatable, Mandatory, Not mandatory, see also : , hidden, is an url, Auth value :, Plugin :, ">Delete
    Edit &authtypecode="> //images/2uparrow.png" width="32" hspace="0" vspace="0" border="0"> << Previous Next >>
    --- NEW FILE --- Koha -- System Administration

    Authority MARC framework for default framework

    Modify tag Add tag

    " name="Aform" method="post"> " />

    " size="80" maxlength="100" />

    " size="80" maxlength="100" />

    (if you select a value here, the indicators will be limited to the authorised value list)

    " method="post"> " /> Data deleted " method="post"> " method="post"> " /> Create authority framework for using

    Select an authority framework

    " method="post"> " />
    tag
     
    CONFIRM DELETION
    " method="post">
    ">
    Tag Lib Repeatable Mandatory Authorised
    value
    Subfields Edit Delete
    YesNo YesNo " class="button">subfields ">Edit ">Delete
    " method="post"> " /> ?offset=&searchfield=">Previous Page ?offset=&searchfield=">Next Page
    --- NEW FILE --- Koha -- System Administration
    " name="Aform" method="post">
    Modify authority type Add authority type
    " />
    " />
    " />Enter here the number of the tag that will be reported in the biblio (subfield by subfield). For example, in UNIMARC, enter 200 to report every 200 subfield in the 70x biblio

    Authority structure definition for ()

    This record is used times

    CONFIRM DELETION

    " method="post"> " />
    " method="post">

    Auth type Admin

    Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins

    Code Description summary Tag reported   Edit Delete
      Default framework     MARC structure    
    " class="button parameters" >MARC structure ?op=add_form&authtypecode=">Edit ?op=delete_confirm&authtypecode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Modify framework textAdd frameworkDelete Framework for ()?Biblio Framework
    " name="Aform" method="post">
    Modify framework textAdd framework
    " />
    " />

    Delete ramework for ()?

    This framework is used times

    " method="post">" />
    " method="post">

    Biblio framework

    Framework name, then go to MARC biblio to set MARC editor parameters

    Code Description   Edit Delete
      Default framework ">MARC structure    
    " >MARC structure ?op=add_form&frameworkcode=">Edit ?op=delete_confirm&frameworkcode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Issuing Rules

    Defining issuing rules for default issuing rules

    HINT for issues

    Each box needs to be filled in with issuelength,maxissues

    eq 21,5 enables 5 issues for 21 days

    HINT for fines

    Each box needs to be filled in with fine,time to start charging,charging cycle

    eg 1,7,7 = 1 [USD,EUR,etc] fine after 7 days, every 7 days

    Fines are calculated by the fines2.pl script, located in misc directory. Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night

    Default values

    If a cell is not filled, the 1st of the following value is searched :

    • same branch and same borrower category, itemtype *
    • same branch and same itemtype, borrower category *
    • same itemtype and borrower category, branch *
    • everywhere
    • If nothing is set, default is 21,5 (hardcoded)
    class="highlight"> " value="" size="6" maxlength="10" /> / " value="" size="6" maxlength="10" />
    Defining issuing rules for
     
    Issue / fine
    From oleonard at users.sourceforge.net Thu Jan 20 19:03:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:03:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes common-style.css,1.34,1.35 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15346/koha-tmpl/intranet-tmpl/default/en/includes Modified Files: common-style.css Log Message: Adding declaration for tr.hilighted to match td.hilighted (for alternating row colors) Index: common-style.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/common-style.css,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** common-style.css 9 Dec 2004 19:44:09 -0000 1.34 --- common-style.css 20 Jan 2005 18:03:33 -0000 1.35 *************** *** 105,109 **** } /* hilighted cell */ ! td.hilighted { border-left:0px; background-color:#ffffcc; --- 105,109 ---- } /* hilighted cell */ ! td.hilighted, tr.hilighted { border-left:0px; background-color:#ffffcc; From oleonard at users.sourceforge.net Thu Jan 20 19:04:51 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:04:51 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes common-style.css,1.34,1.34.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15729/koha-tmpl/intranet-tmpl/default/en/includes Modified Files: Tag: rel_2_2 common-style.css Log Message: Adding declaration for tr.hilighted to match td.hilighted (for alternating row colors) Index: common-style.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/common-style.css,v retrieving revision 1.34 retrieving revision 1.34.2.1 diff -C2 -r1.34 -r1.34.2.1 *** common-style.css 9 Dec 2004 19:44:09 -0000 1.34 --- common-style.css 20 Jan 2005 18:04:49 -0000 1.34.2.1 *************** *** 105,109 **** } /* hilighted cell */ ! td.hilighted { border-left:0px; background-color:#ffffcc; --- 105,109 ---- } /* hilighted cell */ ! td.hilighted, tr.hilighted { border-left:0px; background-color:#ffffcc; From oleonard at users.sourceforge.net Thu Jan 20 19:42:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:42:37 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.32.2.1,1.32.2.2 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24947/admin Modified Files: Tag: rel_2_2 marc_subfields_structure.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32.2.1 retrieving revision 1.32.2.2 diff -C2 -r1.32.2.1 -r1.32.2.2 *** marc_subfields_structure.pl 19 Jan 2005 17:17:10 -0000 1.32.2.1 --- marc_subfields_structure.pl 20 Jan 2005 18:42:29 -0000 1.32.2.2 *************** *** 154,165 **** $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle="white"; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', --- 154,165 ---- $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle=1; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', *************** *** 358,368 **** my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle="white"; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } my %row_data; # get a fresh hash for the row data --- 358,368 ---- my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle=1; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } my %row_data; # get a fresh hash for the row data *************** *** 382,386 **** $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{bgcolor} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; --- 382,386 ---- $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{toggle} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; From oleonard at users.sourceforge.net Thu Jan 20 19:44:13 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:44:13 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters marc_subfields_structure.tmpl,1.38,1.38.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25334/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 marc_subfields_structure.tmpl Log Message: Altering table row color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.38 retrieving revision 1.38.2.1 diff -C2 -r1.38 -r1.38.2.1 *** marc_subfields_structure.tmpl 3 Jan 2005 10:48:39 -0000 1.38 --- marc_subfields_structure.tmpl 20 Jan 2005 18:44:05 -0000 1.38.2.1 *************** *** 114,118 **** Delete ! "> --- 114,118 ---- Delete ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 19:45:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:45:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters marc_subfields_structure.tmpl,1.38,1.39 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25747/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: marc_subfields_structure.tmpl Log Message: Altering table row color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -r1.38 -r1.39 *** marc_subfields_structure.tmpl 3 Jan 2005 10:48:39 -0000 1.38 --- marc_subfields_structure.tmpl 20 Jan 2005 18:45:29 -0000 1.39 *************** *** 114,118 **** Delete ! "> --- 114,118 ---- Delete ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 19:48:17 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:48:17 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.32,1.33 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26578/admin Modified Files: marc_subfields_structure.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 --- marc_subfields_structure.pl 20 Jan 2005 18:48:12 -0000 1.33 *************** *** 154,165 **** $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle="white"; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', --- 154,165 ---- $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle=1; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', *************** *** 358,368 **** my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle="white"; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } my %row_data; # get a fresh hash for the row data --- 358,368 ---- my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle=1; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } my %row_data; # get a fresh hash for the row data *************** *** 382,386 **** $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{bgcolor} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; --- 382,386 ---- $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{toggle} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; From oleonard at users.sourceforge.net Thu Jan 20 20:32:04 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:32:04 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui acqui-home.tmpl,1.3,1.3.2.1 acquire.tmpl,1.1,1.1.2.1 basket.tmpl,1.2,1.2.2.1 newbasket2.tmpl,1.1,1.1.2.1 order.tmpl,1.2,1.2.2.1 recieve.tmpl,1.1,1.1.2.1 recieveorder.tmpl,1.1,1.1.2.1 supplier.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3765/koha-tmpl/intranet-tmpl/npl/en/acqui Modified Files: Tag: rel_2_2 acqui-home.tmpl acquire.tmpl basket.tmpl newbasket2.tmpl order.tmpl recieve.tmpl recieveorder.tmpl supplier.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: acqui-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acqui-home.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** acqui-home.tmpl 28 Oct 2004 17:12:26 -0000 1.3 --- acqui-home.tmpl 20 Jan 2005 19:31:57 -0000 1.3.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Acquisitions Index: acquire.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acquire.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** acquire.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- acquire.tmpl 20 Jan 2005 19:31:57 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : Invoice, Index: basket.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/basket.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** basket.tmpl 28 Oct 2004 17:12:26 -0000 1.2 --- basket.tmpl 20 Jan 2005 19:31:58 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- New Shopping Basket () for Index: newbasket2.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/newbasket2.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newbasket2.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- newbasket2.tmpl 20 Jan 2005 19:31:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Shopping Basket For: Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/order.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** order.tmpl 28 Oct 2004 17:12:27 -0000 1.2 --- order.tmpl 20 Jan 2005 19:31:58 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Supplier Search Results Index: recieve.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieve.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** recieve.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieve.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : , Invoice Index: recieveorder.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieveorder.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** recieveorder.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieveorder.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receive Orders From Supplier Index: supplier.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/supplier.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** supplier.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- supplier.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update: Add supplier From oleonard at users.sourceforge.net Thu Jan 20 20:32:40 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:32:40 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple marcimport.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4009/koha-tmpl/intranet-tmpl/npl/en/acqui.simple Modified Files: Tag: rel_2_2 marcimport.tmpl Log Message: Correction to header includes Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple/marcimport.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** marcimport.tmpl 13 Apr 2004 16:51:08 -0000 1.2 --- marcimport.tmpl 20 Jan 2005 19:32:37 -0000 1.2.2.1 *************** *** 1,4 **** Koha -- Cataloging: MARC Import ! --- 1,4 ---- Koha -- Cataloging: MARC Import ! From oleonard at users.sourceforge.net Thu Jan 20 20:34:01 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:34:01 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves addbookbybiblionumber.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4275/koha-tmpl/intranet-tmpl/npl/en/bookshelves Modified Files: Tag: rel_2_2 addbookbybiblionumber.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** addbookbybiblionumber.tmpl 11 Jan 2005 16:46:27 -0000 1.1.2.1 --- addbookbybiblionumber.tmpl 20 Jan 2005 19:33:57 -0000 1.1.2.2 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Add to Virtual Shelf
    From oleonard at users.sourceforge.net Thu Jan 20 20:35:49 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:35:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/circ branchtransfers.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4677/koha-tmpl/intranet-tmpl/npl/en/circ Modified Files: Tag: rel_2_2 branchtransfers.tmpl Log Message: Converting pop-up links to normal links Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/branchtransfers.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** branchtransfers.tmpl 13 Apr 2004 16:53:45 -0000 1.2 --- branchtransfers.tmpl 20 Jan 2005 19:35:46 -0000 1.2.2.1 *************** *** 12,18 ****
    ! ! ! ! !
    Reserve found for (" onclick="openWindow(this,'Member', 480, 640)">). ! Item is marked waiting at for (" onclick="openWindow(this,'Member', 480, 640)">).
    Set reserve to waiting and transfer book to : --- 12,18 ----
    ! --- 125,129 ---- From oleonard at users.sourceforge.net Thu Jan 20 20:37:02 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:37:02 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-flags.tmpl,1.2,1.2.2.1 newimember.tmpl,1.1,1.1.2.1 newjmember.tmpl,1.1,1.1.2.1 newmember.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4947/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member-flags.tmpl newimember.tmpl newjmember.tmpl newmember.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: member-flags.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member-flags.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** member-flags.tmpl 13 Apr 2004 16:59:43 -0000 1.2 --- member-flags.tmpl 20 Jan 2005 19:36:57 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Set Privileges for , Index: newimember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newimember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newimember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newimember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm New Borrower Index: newjmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newjmember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newjmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newjmember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Details Index: newmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newmember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newmember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Record From oleonard at users.sourceforge.net Thu Jan 20 21:19:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:19:10 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22.2.1,1.22.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17861/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: Altering table row color declaration to match changes in categorie.pl (moving color declaration out of script and into template) Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22.2.1 retrieving revision 1.22.2.2 diff -C2 -r1.22.2.1 -r1.22.2.2 *** categorie.tmpl 19 Jan 2005 17:24:11 -0000 1.22.2.1 --- categorie.tmpl 20 Jan 2005 20:19:05 -0000 1.22.2.2 *************** *** 261,265 **** ! "> --- 261,265 ---- ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 21:20:04 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:20:04 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22,1.23 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18170/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: categorie.tmpl Log Message: Altering table row color declaration to match changes in categorie.pl (moving color declaration out of script and into template) Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** categorie.tmpl 3 Dec 2004 21:44:04 -0000 1.22 --- categorie.tmpl 20 Jan 2005 20:20:01 -0000 1.23 *************** *** 263,267 **** ! "> --- 263,267 ---- ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 21:20:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:20:18 -0800 Subject: [Koha-cvs] CVS: koha/admin categorie.pl,1.16,1.16.2.1 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18302/admin Modified Files: Tag: rel_2_2 categorie.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: categorie.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categorie.pl,v retrieving revision 1.16 retrieving revision 1.16.2.1 diff -C2 -r1.16 -r1.16.2.1 *** categorie.pl 18 Aug 2004 16:05:14 -0000 1.16 --- categorie.pl 20 Jan 2005 20:20:15 -0000 1.16.2.1 *************** *** 163,167 **** my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 'white'; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, --- 163,167 ---- my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 0; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, *************** *** 176,186 **** toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } } --- 176,186 ---- toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 0 ) { ! $toggle = 1; } else { ! $toggle = 0; } } From oleonard at users.sourceforge.net Thu Jan 20 21:21:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:21:11 -0800 Subject: [Koha-cvs] CVS: koha/admin categorie.pl,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18443/admin Modified Files: categorie.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: categorie.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categorie.pl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** categorie.pl 18 Aug 2004 16:05:14 -0000 1.16 --- categorie.pl 20 Jan 2005 20:20:57 -0000 1.17 *************** *** 163,167 **** my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 'white'; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, --- 163,167 ---- my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 0; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, *************** *** 176,186 **** toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } } --- 176,186 ---- toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 0 ) { ! $toggle = 1; } else { ! $toggle = 0; } } From oleonard at users.sourceforge.net Thu Jan 20 21:22:43 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:22:43 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categoryitem.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18847/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 categoryitem.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: categoryitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categoryitem.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** categoryitem.tmpl 19 Feb 2004 19:14:35 -0000 1.1 --- categoryitem.tmpl 20 Jan 2005 20:22:40 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Modify categoryAdd category From oleonard at users.sourceforge.net Thu Jan 20 21:23:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:23:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categorie.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18976/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: Synching with default tempalte Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categorie.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** categorie.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- categorie.tmpl 20 Jan 2005 20:23:15 -0000 1.2.2.1 *************** *** 4,8 **** Category Deleted Patron Categories ! --- 4,8 ---- Category Deleted Patron Categories ! *************** *** 88,99 **** ! ! ! ! ! ! !
    Reserve found for (">). ! Item is marked waiting at for (">).
    Set reserve to waiting and transfer book to : *************** *** 94,99 **** ! Item was on loan to " ! onClick="openWindow(this,'Member', 480, 640)"> and has been returned. --- 94,98 ---- ! Item was on loan to "> and has been returned. *************** *** 126,130 ****
    ! &type=intra" onclick="openWindow(this, 'Item', 480, 640)">
    ! &type=intra">
    Description
    Enrolment period years
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrollment fee
    Overdue notice required" />
    Issue limit" />
    Reserve fee" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    --- 88,96 ----
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrollment fee$
    Overdue notice required" />
    Reserve fee$" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    *************** *** 113,138 **** !

    Confirm Deletion of Category

    !

    This category is used times. Deletion not possible

    !
    ! ! ! ! ! ! ! ! !
    Category code
    Description
    Enrolment period
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrolment fee
    Overdue notice required
    Issue limit
    Reserve fee
    !

    This category is used times. Deletion not possible

    !
    " method="post"> ! ! " />
    " method="post"> ! !
    " method="post"> --- 110,127 ---- !

    Cagegory is in use. Deletion not possible!

    Confirm Deletion of Category

    !
    This category is used times. Deletion not possible
    !
    ! ! ! ! ! !
    Category code
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrolment fee$
    Overdue notice requiredYesNo
    Reserve fee$
    ! " method="post">
    " method="post"> *************** *** 159,190 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! --> ! --> --- 148,177 ---- !
    CategoryDescriptionEnrollmentUpper Age LimitAge RequiredBulkOverdueIssue Limit 
    ?op=add_form&categorycode=">Edit ">Delete
    ! ! ! ! ! ! ! ! ! ! ! ! class="highlight"> ! ! ! ! ! ! From oleonard at users.sourceforge.net Thu Jan 20 21:24:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:24:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categorie.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19188/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: categorie.tmpl Log Message: Synching with default tempalte Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categorie.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** categorie.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- categorie.tmpl 20 Jan 2005 20:24:08 -0000 1.3 *************** *** 4,8 **** Category Deleted Patron Categories ! --- 4,8 ---- Category Deleted Patron Categories ! *************** *** 88,99 **** ! ! ! ! ! ! !
    CategoryDescriptionEnrollment PeriodUpper Age LimitAge RequiredFineEnrollment FeeOverdueIssue LimitReservation Fee 
    years years years ?op=add_form&categorycode=">Edit ">Delete
    Description
    Enrolment period years
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrollment fee
    Overdue notice required" />
    Issue limit" />
    Reserve fee" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    --- 88,96 ---- Description Enrolment period years ! Upperage limit years ! Age Required years ! Enrollment fee$ Overdue notice required" /> ! Reserve fee$" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    *************** *** 113,138 **** !

    Confirm Deletion of Category

    !

    This category is used times. Deletion not possible

    !
    ! ! ! ! ! ! ! ! !
    Category code
    Description
    Enrolment period
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrolment fee
    Overdue notice required
    Issue limit
    Reserve fee
    !

    This category is used times. Deletion not possible

    !
    " method="post"> ! ! " />
    " method="post"> ! !
    " method="post"> --- 110,127 ---- !

    Cagegory is in use. Deletion not possible!

    Confirm Deletion of Category

    !
    This category is used times. Deletion not possible
    !
    ! ! ! ! ! !
    Category code
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrolment fee$
    Overdue notice requiredYesNo
    Reserve fee$
    ! " method="post">
    " method="post"> *************** *** 159,190 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! --> ! --> --- 148,177 ---- !
    CategoryDescriptionEnrollmentUpper Age LimitAge RequiredBulkOverdueIssue Limit 
    ?op=add_form&categorycode=">Edit ">Delete
    ! ! ! ! ! ! ! ! ! ! ! ! class="highlight"> ! ! ! ! ! ! From oleonard at users.sourceforge.net Thu Jan 20 22:27:54 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:27:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/suggestion acceptorreject.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3838/koha-tmpl/intranet-tmpl/npl/en/suggestion Modified Files: Tag: rel_2_2 acceptorreject.tmpl Log Message: Moving submit button inside form tag where it might do some good. Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion/acceptorreject.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** acceptorreject.tmpl 13 Jan 2005 20:56:56 -0000 1.1.2.1 --- acceptorreject.tmpl 20 Jan 2005 21:27:52 -0000 1.1.2.2 *************** *** 35,41 **** !
    CategoryDescriptionEnrollment PeriodUpper Age LimitAge RequiredFineEnrollment FeeOverdueIssue LimitReservation Fee 
    years years years ?op=add_form&categorycode=">Edit ">Delete

    ! --- 35,41 ---- !

    ! From oleonard at users.sourceforge.net Thu Jan 20 22:30:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:30:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/suggestion acceptorreject.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4357/koha-tmpl/intranet-tmpl/npl/en/suggestion Modified Files: acceptorreject.tmpl Log Message: Moving submit button inside form tag where it might do some good. Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion/acceptorreject.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acceptorreject.tmpl 13 Jan 2005 20:48:31 -0000 1.1 --- acceptorreject.tmpl 20 Jan 2005 21:30:20 -0000 1.2 *************** *** 35,41 **** !

    ! --- 35,41 ---- !

    ! From oleonard at users.sourceforge.net Thu Jan 20 22:31:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:31:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui histsearch.tmpl,NONE,1.1.2.1 suggestion-select.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4647/koha-tmpl/intranet-tmpl/npl/en/acqui Added Files: Tag: rel_2_2 histsearch.tmpl suggestion-select.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- Acquisitions: Order Search

    Order search

      Title Author Supplier Placed on Recieved on Quantity ordered  
    Filter By: " /> " /> " />      
      ">  
    --- NEW FILE --- Koha -- Acquisitions: Suggestions
    Filter Suggestion Results
    " />
    " />
    " />

    class="highlight">
    Suggestions
    Suggestion Suggested by Accepted by  

    -

    copy. year: volume: ISBN :
    published by: in at

    ()

    , , &basketno=&suggestionid=&biblio=">Order &basketno=&amp;suggestionid=">Order
    From oleonard at users.sourceforge.net Thu Jan 20 22:32:09 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:32:09 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui histsearch.tmpl,1.1,1.2 suggestion-select.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4840/koha-tmpl/intranet-tmpl/npl/en/acqui Added Files: histsearch.tmpl suggestion-select.tmpl Log Message: Synching with default tempalte From oleonard at users.sourceforge.net Thu Jan 20 22:44:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:44:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en about.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8035/koha-tmpl/intranet-tmpl/npl/en Modified Files: Tag: rel_2_2 about.tmpl Log Message: Synching with default tempalte Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/about.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** about.tmpl 13 Apr 2004 16:50:26 -0000 1.2 --- about.tmpl 20 Jan 2005 21:44:56 -0000 1.2.2.1 *************** *** 1,4 **** Koha -- About Koha ! --- 1,4 ---- Koha -- About Koha ! *************** *** 8,12 ****

    Data about the current version of Koha for bug reports (or general interest).

    !
    --- 8,12 ----

    Data about the current version of Koha for bug reports (or general interest).

    !
    Koha version:
    *************** *** 33,56 ****
    Koha version:
    --- 33,57 ----
    Credits
    Core Team
      !
    • Pat Eyler, Kaitiaki
    • !
    • Paul Poulain, 2.0 release manager (MARC developper)
    • !
    • Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    • !
    • Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    • !
    • Nicholas Rosasco, (Documentation Compiler)
    • !
    • Mike Hansen
    • !
    • MJ Ray and Turo Technology LLP, England (quality control, installer & updater)
    • !
    • Nicolas Morin, French Translation
    • !
    • Horowhenua Library Trust ! Rosalie Blake, Head of Libraries ! Jo Ransom
    • !
    • Katipo Communications ! Rachel Hamilton-Williams, General Manager (Webmistress) ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    + + *************** *** 59,92 ****
    Credits
    Special thanks to the following funders
    • Horowhenua Library Trust and Rosalie Blake, Head of Libraries, (Koha 1.0)
    • +
    • The Nelsonville Public Library (MARC support)
    • +
    • EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)
    • +
    • ENSMP (Ecole Nationale Suprieure des Mines de Paris) (biblio frameworks, MARC authorities, OPAC basket, Serials support)
    Core Team
      !
    • Rachel Hamilton-Williams, Kaitiaki
    • !
    • Paul Poulain, 2.2 release manager (MARC developper)
    • !
    • Stephen Hedges and the Nelsonville Public Library (MARC features funders)
    • !
    • Nicholas Rosasco, (Documentation Compiler)
    • !
    • Mike Hansen
    • !
    • MJ Ray and Turo Technology LLP, (quality control, installer and updater, 2.0 release maintainer)
    • !
    • Katipo Communications
    • !
        !
      • Rachel Hamilton-Williams, General Manager (Webmistress)
      • !
      • Chris Cormack, 1.2 release manager
      • !
      • and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
      • !
      !
    • Adam Thick
    • !
    • Andrew Hooper
    • !
    • Al Banks
    • !
    • Ambrose Li
    • !
    • Andrew Arensburger
    • !
    • Benedykt P. Barszcz (Polish for 2.0)
    • !
    • Brig C. McCoy
    • !
    • Daniel Holth
    • !
    • David Strainchamps
    • !
    • Dorian Meid
    • !
    • Ed Summers
    • !
    • Florian Bischof
    • !
    • Francisco M. Marzoa Alonso
    • !
    • Glen Stewart
    • !
    • Henri-Damien Laurent
    • !
    • Jrome Vizcaino (Esiee School)
    • !
    • Kip DeGraaf
    • !
    • Marco Gaiarin
    • !
    • Md. Aftabuddin
    • !
    • Michaes Herman
    • !
    • Michel Lerenard (Esiee School)
    • !
    • Mike Johnson
    • !
    • Mike Mylonas
    • !
    • Pierre Cauchois (Esiee School)
    • !
    • Pawel Skuza (Polish for 1.2)
    • !
    • Regula Sebastiao
    • !
    • Roger Buck
    • !
    • Ron Wickersham
    • !
    • Sebastiaan Durand
    • !
    --- 60,94 ----
      !
    • Adam Thick
    • !
    • Andrew Hooper
    • !
    • Al Banks
    • !
    • Ambrose Li (chinese translation and translation tool)
    • !
    • Andrew Arensburger (the small and great C4::Context module)
    • !
    • Benedykt P. Barszcz (Polish for 2.0)
    • !
    • Brig C. McCoy
    • !
    • Daniel Holth
    • !
    • David Strainchamps
    • !
    • Dorian Meid (German translation)
    • !
    • doXulting (Matthieu Branlat) OPAC basket
    • !
    • Ed Summers (Some code and Perl packages like MARC::Record)
    • !
    • Esiee School (Jrome Vizcaino, Michel Lerenard, Pierre Cauchois)
    • !
    • Florian Bischof
    • !
    • Francisco M. Marzoa Alonso
    • !
    • Glen Stewart
    • !
    • Henri-Damien Laurent
    • !
    • Jo Ransom
    • !
    • Kip DeGraaf
    • !
    • Marco Gaiarin
    • !
    • Md. Aftabuddin
    • !
    • Michaes Herman
    • !
    • Mike Johnson
    • !
    • Mike Mylonas
    • !
    • Nicolas Morin (French Translation in 2.0)
    • !
    • Pawel Skuza (Polish for 1.2)
    • !
    • Regula Sebastiao
    • !
    • Roger Buck
    • !
    • Ron Wickersham
    • !
    • Sebastiaan Durand
    • !
    • Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    From oleonard at users.sourceforge.net Thu Jan 20 22:58:28 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:58:28 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_tag_structure.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11078/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 auth_tag_structure.tmpl Log Message: Synching with default tempalte Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** auth_tag_structure.tmpl 20 Jan 2005 17:41:00 -0000 1.1.2.1 --- auth_tag_structure.tmpl 20 Jan 2005 21:58:25 -0000 1.1.2.2 *************** *** 91,94 **** --- 91,95 ----
    " method="post"> + "> " /> CONFIRM DELETION From oleonard at users.sourceforge.net Thu Jan 20 22:59:17 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:59:17 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_tag_structure.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11254/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: auth_tag_structure.tmpl Log Message: Synching with default tempalte Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** auth_tag_structure.tmpl 18 Jan 2005 22:53:04 -0000 1.1 --- auth_tag_structure.tmpl 20 Jan 2005 21:59:15 -0000 1.2 *************** *** 91,94 **** --- 91,95 ---- " method="post"> + "> " /> CONFIRM DELETION From oleonard at users.sourceforge.net Thu Jan 20 23:40:43 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:40:43 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/authorities authorities-home.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21546/koha-tmpl/intranet-tmpl/npl/en/authorities Modified Files: authorities-home.tmpl Log Message: Synching with default tempalte Index: authorities-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities/authorities-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** authorities-home.tmpl 28 Oct 2004 17:23:35 -0000 1.1 --- authorities-home.tmpl 20 Jan 2005 22:40:40 -0000 1.2 *************** *** 1,16 **** ! !
    !

    Authority search

    ! ! ! ! "> !
    !

    Search on

    !

    ! ! ! ! " /> ! ! ! ! !
    Authority search
    !

    !

    ! ! "> ! ! ! ! !

    !

    ! !

    ! ! --- 18,31 ---- !
    " /> ! ! ! !
    !

    ! From oleonard at users.sourceforge.net Thu Jan 20 23:41:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:41:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/authorities authorities-home.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21736/koha-tmpl/intranet-tmpl/npl/en/authorities Modified Files: Tag: rel_2_2 authorities-home.tmpl Log Message: Synching with default tempalte Index: authorities-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities/authorities-home.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** authorities-home.tmpl 28 Oct 2004 17:23:35 -0000 1.1 --- authorities-home.tmpl 20 Jan 2005 22:41:08 -0000 1.1.2.1 *************** *** 1,16 **** ! !
    !

    Authority search

    !
    ! ! ! "> !
    !

    Search on

    !

    ! ! ! ! " /> ! ! ! ! !
    Authority search
    !

    !

    ! ! "> ! ! ! ! !

    !

    ! !

    ! ! --- 18,31 ---- !
    " /> ! ! ! !
    !

    ! From oleonard at users.sourceforge.net Thu Jan 20 23:48:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:48:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/catalogue ISBDdetail.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/catalogue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23551/koha-tmpl/intranet-tmpl/npl/en/catalogue Added Files: Tag: rel_2_2 ISBDdetail.tmpl Log Message: Synching with default template. Still needs proper styling for ISBD block --- NEW FILE --- Koha -- Catalog: ISBD View
    " />
    " />" />" />" />
    " />'); return false;" />
    " name="bib" />
    " />

    From oleonard at users.sourceforge.net Thu Jan 20 23:51:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:51:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/catalogue ISBDdetail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/catalogue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24577/koha-tmpl/intranet-tmpl/npl/en/catalogue Added Files: ISBDdetail.tmpl Log Message: Synching with default template. Still needs proper styling for ISBD block From acli at users.sourceforge.net Sun Jan 23 05:31:24 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 20:31:24 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator translator_doc.html,1.2,1.2.2.1 translator_doc.txt,1.6,1.6.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27739 Modified Files: Tag: rel_2_2 translator_doc.html translator_doc.txt Log Message: Minor updates Index: translator_doc.html =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.html,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** translator_doc.html 30 Dec 2004 06:58:19 -0000 1.2 --- translator_doc.html 23 Jan 2005 04:31:07 -0000 1.2.2.1 *************** *** 4,8 ****

    This transation tool should greatly help Koha translators. ! It's composed of 2 scripts:

      --- 4,9 ----

      This transation tool should greatly help Koha translators. ! It's composed of 2 scripts ! (with a number of associated perl module files):

        *************** *** 28,32 **** (assuming your current directory is this directory, i.e., misc/translator):
        ! ./tmpl_process.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r

        (In the above example, --- 29,33 ---- (assuming your current directory is this directory, i.e., misc/translator):

        ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r

        (In the above example, *************** *** 41,45 ****

      • Create your translated templates:
        ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r

        --- 42,46 ----

      • Create your translated templates:
        ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r

        *************** *** 55,65 ****

      • Update your translation file:
        ! ./tmpl_process.pl update -i /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r
        !
      • Translate your new css_opac_fr_FR.po file. Look for strings marked as "fuzzy" and strings that are not translated.
      • Create your translated templates:
        ! ./tmpl_process.pl install -i /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r
      • Copy new images/css files in your new directory if needed --- 56,66 ----
      • Update your translation file:
        ! ./tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r
        !
      • Translate your newly updated css_opac_fr_FR.po file. Look for strings marked as "fuzzy" and strings that are not translated.
      • Create your translated templates:
        ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r
      • Copy new images/css files in your new directory if needed Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -r1.6 -r1.6.2.1 *** translator_doc.txt 3 Jan 2005 16:30:13 -0000 1.6 --- translator_doc.txt 23 Jan 2005 04:31:07 -0000 1.6.2.1 *************** *** 3,7 **** This transation tool should greatly help Koha translators. It's composed of ! 2 scripts: * xgettext.pl, that extracts the texts in a template, and which is called by --- 3,7 ---- This transation tool should greatly help Koha translators. It's composed of ! 2 scripts (with a number of associated perl module files): * xgettext.pl, that extracts the texts in a template, and which is called by *************** *** 22,26 **** directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the --- 22,27 ---- directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! po/css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the *************** *** 33,37 **** 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default --- 34,40 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ! /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/ ! css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default *************** *** 44,48 **** 1. Update your translation file: ! ./tmpl_process3.pl update -i ../../opac-tmpl/default/en -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as --- 47,52 ---- 1. Update your translation file: ! ./tmpl_process3.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as *************** *** 50,62 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed - - REBUILD ALL - =========== - The rebuild_lang.sh script can be used to rebuild all languages officially supported in 2.2 release, when needed. - Useful for developpers, probably useless for all end-users. - WEAKNESSES --- 54,62 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed WEAKNESSES *************** *** 71,73 **** * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) \ No newline at end of file --- 71,74 ---- * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) ! From acli at users.sourceforge.net Sun Jan 23 05:58:41 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 20:58:41 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator Makefile,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1353 Modified Files: Tag: rel_2_2 Makefile Log Message: Forgot to take out this debugging code Index: Makefile =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/Makefile,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** Makefile 23 Jan 2005 04:57:51 -0000 1.1.2.1 --- Makefile 23 Jan 2005 04:58:39 -0000 1.1.2.2 *************** *** 2,6 **** %.txt: %.html ! set -x; sed -e 's/
        /&
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|tee foo|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
          
          clean:
        --- 2,6 ----
          
          %.txt: %.html
        ! 	set -x; sed -e 's/
        /& ! ! ! -->
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
          
          clean:
        
        
        
        
        From acli at users.sourceforge.net  Sun Jan 23 05:57:54 2005
        From: acli at users.sourceforge.net (Ambrose C. LI)
        Date: Sat, 22 Jan 2005 20:57:54 -0800
        Subject: [Koha-cvs] CVS: koha/misc/translator Makefile,1.1,1.1.2.1 translator_doc.html,1.2.2.1,1.2.2.2 translator_doc.txt,1.6.2.1,1.6.2.2
        Message-ID: 
        
        Update of /cvsroot/koha/koha/misc/translator
        In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv985
        
        Modified Files:
              Tag: rel_2_2
        	Makefile translator_doc.html translator_doc.txt 
        Log Message:
        Minor corrections & clarifications, and make the command line examples
        not break in the middle (like in the original version)
        
        
        Index: Makefile
        ===================================================================
        RCS file: /cvsroot/koha/koha/misc/translator/Makefile,v
        retrieving revision 1.1
        retrieving revision 1.1.2.1
        diff -C2 -r1.1 -r1.1.2.1
        *** Makefile	30 Dec 2004 06:48:19 -0000	1.1
        --- Makefile	23 Jan 2005 04:57:51 -0000	1.1.2.1
        ***************
        *** 2,4 ****
          
          %.txt: %.html
        ! 	LANG=C w3m $< > $@
        --- 2,7 ----
          
          %.txt: %.html
        ! 	set -x; sed -e 's/
        /& ! ! ! ! ! -->
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|tee foo|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
        ! 
        ! clean:
        ! 	rm translator_doc.txt
        
        Index: translator_doc.html
        ===================================================================
        RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.html,v
        retrieving revision 1.2.2.1
        retrieving revision 1.2.2.2
        diff -C2 -r1.2.2.1 -r1.2.2.2
        *** translator_doc.html	23 Jan 2005 04:31:07 -0000	1.2.2.1
        --- translator_doc.html	23 Jan 2005 04:57:51 -0000	1.2.2.2
        ***************
        *** 7,18 ****
          (with a number of associated perl module files):
          
        ! 
        • xgettext.pl, that extracts the texts in a template, ! and which is called by the script
        • tmpl_process3.tmpl, which can do 3 things: !
            !
          • create a file with all the "translatable strings" in all files in a directory (& its subdirectories) !
          • update an existing translation file. !
          • rebuild translated templates from english & translation file.
        --- 7,18 ---- (with a number of associated perl module files): !
        1. xgettext.pl, that extracts the texts in a template, ! and which is called by the script; and
        2. tmpl_process3.tmpl, which can do 3 things: !
            !
          1. create a file with all the "translatable strings" in all files in a directory (& its subdirectories), !
          2. update an existing translation file, and !
          3. rebuild translated templates from English & translation file. *************** *** 35,41 **** contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. ! The use of relative paths for the English templates is recommended ! but is not necessary; ! it makes the resulting PO files somewhat easier to read.)
          4. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. --- 35,43 ---- contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. ! The use of relative paths for the English templates is recommended; ! it makes the resulting PO files slightly shorter ! and more usable in a team environment. ! Absolute paths are certainly fine, ! and might be better if there is only one translator for your language.)
          5. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. *************** *** 52,56 ****

            ! If something changes in English version:

            1. Update your translation file: --- 54,58 ----

              ! If something changes in the English version:

              1. Update your translation file: Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -r1.6.2.1 -r1.6.2.2 *** translator_doc.txt 23 Jan 2005 04:31:07 -0000 1.6.2.1 --- translator_doc.txt 23 Jan 2005 04:57:51 -0000 1.6.2.2 *************** *** 5,15 **** 2 scripts (with a number of associated perl module files): ! * xgettext.pl, that extracts the texts in a template, and which is called by ! the script ! * tmpl_process3.tmpl, which can do 3 things: ! + create a file with all the "translatable strings" in all files in a ! directory (& its subdirectories) ! + update an existing translation file. ! + rebuild translated templates from english & translation file. Call tmpl_process3.pl --help to get a more detailed explanation. Some --- 5,15 ---- 2 scripts (with a number of associated perl module files): ! 1. xgettext.pl, that extracts the texts in a template, and which is called by ! the script; and ! 2. tmpl_process3.tmpl, which can do 3 things: ! a. create a file with all the "translatable strings" in all files in a ! directory (& its subdirectories), ! b. update an existing translation file, and ! c. rebuild translated templates from English & translation file. Call tmpl_process3.pl --help to get a more detailed explanation. Some *************** *** 21,41 **** 1. Create your translation file (assuming your current directory is this directory, i.e., misc/translator): ! ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! po/css_opac_fr_FR.po -r ! (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. The use of relative paths for the ! English templates is recommended but is not necessary; it makes the ! resulting PO files somewhat easier to read.) 2. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ! /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/ ! css_opac_fr_FR.po -r ! (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default /fr2/ is where you want your translated templates to be saved.) --- 21,40 ---- 1. Create your translation file (assuming your current directory is this directory, i.e., misc/translator): ! ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. The use of relative paths for the ! English templates is recommended; it makes the resulting PO files slightly ! shorter and more usable in a team environment. Absolute paths are certainly ! fine, and might be better if there is only one translator for your ! language.) 2. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r ! (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default /fr2/ is where you want your translated templates to be saved.) *************** *** 43,61 **** tmpl_process3.pl install). ! If something changes in English version: 1. Update your translation file: ! ! ./tmpl_process3.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! ! 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as ! "fuzzy" and strings that are not translated. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r ! 4. Copy new images/css files in your new directory if needed --- 42,57 ---- tmpl_process3.pl install). ! If something changes in the English version: 1. Update your translation file: ! ! ./tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! ! 2. Translate your newly updated css_opac_fr_FR.po file. Look for strings ! marked as "fuzzy" and strings that are not translated. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r ! 4. Copy new images/css files in your new directory if needed From acli at users.sourceforge.net Sun Jan 23 06:16:18 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 21:16:18 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.3,1.1.2.4 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4100 Modified Files: Tag: rel_2_2 update.pl Log Message: Added a --pot option to generate the POT (PO template) file. The POT files are currently named like css_opac_en_EN.po, which are not what they would usually be named. Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -r1.1.2.3 -r1.1.2.4 *** update.pl 11 Jan 2005 09:50:58 -0000 1.1.2.3 --- update.pl 23 Jan 2005 05:16:15 -0000 1.1.2.4 *************** *** 6,12 **** use strict; use integer; my $lang = $ARGV[0]; ! die "Usage: $0 LANG\n" unless $lang =~ /^[a-z]{2}(?:_[A-Z]{2})?$/; # Remember whether we see the "po" directory; this is used later to guess --- 6,22 ---- use strict; use integer; + use Getopt::Long; + + use vars qw( $pot_p ); + + GetOptions( + '--pot' => \$pot_p, + ) || exit(1); my $lang = $ARGV[0]; ! die < Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17798 Modified Files: Tag: rel_2_2 css_opac_fr_FR.po Log Message: Minor syntactical corrections Index: css_opac_fr_FR.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_fr_FR.po,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -r1.6 -r1.6.2.1 *** css_opac_fr_FR.po 5 Jan 2005 14:41:49 -0000 1.6 --- css_opac_fr_FR.po 23 Jan 2005 06:15:24 -0000 1.6.2.1 *************** *** 1,17 **** ! # Penbwrdd yn Gymraeg. ! # Copyright (C) 2003 Free Software Foundation, Inc. ! # www.kyfieithu.co.uk, www.gyfieithu.co.uk, 2003. # # msgid "" msgstr "" ! "Project-Id-Version: PACKAGE VERSION\n" "PO-Revision-Date: 2004-12-07 11:28+0200\n" ! "Last-Translator: www.kyfieithu.co.uk , www.gyfieithu.co.uk\n" ! "Language-Team: Cymraeg \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" - "X-Generator: Kartouche 0.2 - 28 October 2003\n" "\n" --- 1,17 ---- ! # Koha OPAC module, French translation ! # Copyright (C) 2000-2005 Katipo Communications ! # This file is distributed under the same license as the Koha package. ! # Copyright 2004-2005 French translation team # # msgid "" msgstr "" ! "Project-Id-Version: koha-opac 2.2\n" "PO-Revision-Date: 2004-12-07 11:28+0200\n" ! "Last-Translator: Paul POULAIN \n" ! "Language-Team: French \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" "\n" *************** *** 284,289 **** #, c-format msgid "Additional authors:%s" ! msgstr "Auteurs secondaires:%s ! " #. For the first occurrence, --- 284,288 ---- #, c-format msgid "Additional authors:%s" ! msgstr "Auteurs secondaires:%s" #. For the first occurrence, *************** *** 1966,1970 **** #~ msgid "ISBD : %s" #~ msgstr "ISBD : %s" - msgid "" - msgstr "" - --- 1965,1966 ---- From acli at users.sourceforge.net Sun Jan 23 07:17:07 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:17:07 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18025 Added Files: Tag: rel_2_2 stats.pl Log Message: Translation progress statistics script borrowed from gaim --- NEW FILE --- #!/usr/bin/perl # Copyright 2003-2004 Nathan Walp # Adapted for Koha by Ambrose Li # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 50 Temple Place, Suite 330, Boston, MA 02111-1307 USA # my $PACKAGE="koha"; use Locale::Language; $lang{en_AU} = "English (Australian)"; $lang{en_CA} = "English (Canadian)"; $lang{en_GB} = "English (British)"; $lang{es_AR} = "Spanish (Argentinian)"; $lang{fr_FR} = "French"; # FIXME: should be just "fr" $lang{my_MM} = "Burmese (Myanmar)"; $lang{pl_PL} = "Polish"; # FIXME: should be just "pl" $lang{pt_BR} = "Portuguese (Brazilian)"; $lang{'sr at Latn'} = "Serbian (Latin)"; $lang{zh_CN} = "Chinese (Simplified)"; $lang{zh_TW} = "Chinese (Traditional)"; $ENV{LANG} = $ENV{LC_ALL} = 'C'; opendir(DIR, ".") || die "can't open directory: $!"; @pos = grep { /\.po$/ && -f } readdir(DIR); foreach (@pos) { s/\.po$//; }; closedir DIR; @pos = sort @pos; $now = `date`; #system("./update.pl --pot > /dev/null"); print "\n"; print "$PACKAGE i18n statistics\n"; print "\n"; opendir(DIR, ".") || die "can't open directory: $!"; @templates = grep { /\.pot$/ && -f } readdir(DIR); foreach (@templates) { s/\.pot$//; }; closedir DIR; for my $PACKAGE (sort { my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; $module1 cmp $module2 && $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; my @pos = grep { /^${PACKAGE}_/ } @pos_orig; my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1 |tee zz`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); $total = $1; print "

                Module $module, theme $theme

                \n"; print "
                \n"; print"\n"; foreach $index (0 .. $#pos) { $trans = $fuzz = $untrans = 0; $po = $pos[$index]; next if $po =~ /_en_EN/; # Koha-specific print STDERR "$po..." if($ARGV[0] eq '-v'); system("msgmerge $po.po $PACKAGE.pot -o $po.new 2>/dev/null"); $_ = `msgfmt --statistics $po.new -o /dev/null 2>&1`; chomp; if(/(\d+) translated message/) { $trans = $1; } if(/(\d+) fuzzy translation/) { $fuzz = $1; } if(/(\d+) untranslated message/) { $untrans = $1; } $transp = 100 * $trans / $total; $fuzzp = 100 * $fuzz / $total; $untransp = 100 * $untrans / $total; if($index % 2) { $color = " bgcolor='#e0e0e0'"; } else { $color = " bgcolor='#d0e0ff'"; } my $lang = $1 if $po =~ /^${PACKAGE}_(.*)$/; # Koha-specific $name = ""; $name = $lang{$lang}; # NOTE $name = code2language($lang) unless $name ne ""; # NOTE $name = "???" unless $name ne ""; printf "\n"; unlink("$po.new"); print STDERR "done ($untrans untranslated strings).\n" if($ARGV[0] eq '-v'); } print "
                languagetrans%fuzzy%untrans% 
                %s(%s.po)%d%0.2f%d%0.2f%d%0.2f", $name, $po, $trans, $transp, $fuzz, $fuzzp, $untrans, $untransp; printf "", $transp*2 unless $transp*2 < 0.5; printf "", $fuzzp*2 unless $fuzzp*2 < 0.5; printf "", $untransp*2 unless $untransp*2 < 0.5; print "
                \n"; print "Latest $PACKAGE.pot generated $now: $PACKAGE.pot
                \n"; } print "\n"; print "\n"; From acli at users.sourceforge.net Sun Jan 23 07:17:54 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:17:54 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18197 Modified Files: Tag: rel_2_2 stats.pl Log Message: Forgot to re-enable update.pl Index: stats.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/stats.pl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** stats.pl 23 Jan 2005 06:17:05 -0000 1.1.2.1 --- stats.pl 23 Jan 2005 06:17:52 -0000 1.1.2.2 *************** *** 48,52 **** $now = `date`; ! #system("./update.pl --pot > /dev/null"); print "\n"; --- 48,52 ---- $now = `date`; ! system("./update.pl --pot > /dev/null"); print "\n"; From acli at users.sourceforge.net Sun Jan 23 07:22:29 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:22:29 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.4,1.1.2.5 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18923 Modified Files: Tag: rel_2_2 update.pl Log Message: create fails if the pot file already exists Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -r1.1.2.4 -r1.1.2.5 *** update.pl 23 Jan 2005 05:16:15 -0000 1.1.2.4 --- update.pl 23 Jan 2005 06:22:26 -0000 1.1.2.5 *************** *** 48,51 **** --- 48,52 ---- # my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "$lang.po"); + rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), '-i', "../../koha-tmpl/$module-tmpl/$theme/en/", From acli at users.sourceforge.net Sun Jan 23 07:49:11 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:49:11 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator xgettext.pl,1.13,1.13.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24427 Modified Files: Tag: rel_2_2 xgettext.pl Log Message: I think I know where the spurious leading spaces are from now But there is no fix yet Index: xgettext.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/xgettext.pl,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -C2 -r1.13 -r1.13.2.1 *** xgettext.pl 30 Dec 2004 06:48:20 -0000 1.13 --- xgettext.pl 23 Jan 2005 06:49:08 -0000 1.13.2.1 *************** *** 462,468 **** when tmpl_process3.pl calls msgmerge(1) to update the PO file. ! It sometimes generates strings with spurious leading spaces, leading to failure to match the strings when actually generating ! translated files. The cause of this is not yet known. =cut --- 462,469 ---- when tmpl_process3.pl calls msgmerge(1) to update the PO file. ! If a Javascript string has leading spaces, it will ! generate strings with spurious leading spaces, leading to failure to match the strings when actually generating ! translated files. =cut From acli at users.sourceforge.net Sun Jan 23 08:05:51 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 23:05:51 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator TmplTokenizer.pm,1.35,1.35.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27541 Modified Files: Tag: rel_2_2 TmplTokenizer.pm Log Message: This should fix bug 913 Index: TmplTokenizer.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/TmplTokenizer.pm,v retrieving revision 1.35 retrieving revision 1.35.2.1 diff -C2 -r1.35 -r1.35.2.1 *** TmplTokenizer.pm 30 Dec 2004 06:53:13 -0000 1.35 --- TmplTokenizer.pm 23 Jan 2005 07:05:43 -0000 1.35.2.1 *************** *** 342,346 **** $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { --- 342,346 ---- $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])\s*(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { *************** *** 349,353 **** } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! $output[$j] = [1, $output[$j]->[1], $q, $s]; } $state = 0; --- 349,354 ---- } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! my $candidate = $output[$j]->[1]; ! $output[$j] = [1, $candidate, $q, $s]; } $state = 0; From acli at users.sourceforge.net Sun Jan 23 09:16:59 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:16:59 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.5,1.1.2.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7900 Modified Files: Tag: rel_2_2 update.pl Log Message: Forgot a _ in the po file filename Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -C2 -r1.1.2.5 -r1.1.2.6 *** update.pl 23 Jan 2005 06:22:26 -0000 1.1.2.5 --- update.pl 23 Jan 2005 08:16:57 -0000 1.1.2.6 *************** *** 47,51 **** # but this is not Koha's convention. # ! my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "$lang.po"); rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), --- 47,51 ---- # but this is not Koha's convention. # ! my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "_$lang.po"); rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), From acli at users.sourceforge.net Sun Jan 23 09:17:29 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:17:29 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4,1.4.2.1 default_intranet_zh_TW.po,1.4,1.4.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7991 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: Partial updates Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** css_opac_zh_TW.po 30 Dec 2004 09:37:19 -0000 1.4 --- css_opac_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2004-12-30 02:06-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" [...2271 lines suppressed...] + #~ msgstr "%s (%s本書)" + #~ msgid "%s acquired in the last %S days" #~ msgstr "最近%2$S日內新到的%1$s" + #~ msgid "%s(%s books)" + #~ msgstr "%s(%s本書)" + #~ msgid "ISBN:%s" #~ msgstr "國際標準書號:%s" *************** *** 2089,2095 **** #~ msgstr "青年小說類" - #~ msgid "text/html; charset=iso-8859-1" - #~ msgstr "text/html; charset=UTF-8" - #~ msgid "to Koha" #~ msgstr "Koha" --- 2209,2212 ---- Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** default_intranet_zh_TW.po 30 Dec 2004 10:29:28 -0000 1.4 --- default_intranet_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2004-12-30 04:23-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" [...5497 lines suppressed...] *************** *** 21830,21833 **** --- 21960,21966 ---- #~ msgstr "電話:%s,傳真:%s" + #~ msgid "Pierre Cauchois (Esiee School)" + #~ msgstr "Pierre Cauchois (ESIEE學院)" + #~ msgid "Previous" #~ msgstr "上一頁" *************** *** 21843,21849 **** #~ msgstr "還書日期" - #~ msgid "Rachel Hamilton-Williams, General Manager (Webmistress)" - #~ msgstr "Rachel Hamilton-Williams (總經理兼網站管理人)" - # NOTE 譯文更動 by Arthur # NOTE 譯文更動 by Ambrose --- 21976,21979 ---- From acli at users.sourceforge.net Sun Jan 23 09:59:41 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:59:41 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,1.1.2.2,1.1.2.3 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15497 Modified Files: Tag: rel_2_2 stats.pl Log Message: Forgot to remove some other debugging code Fixed the sorting order Index: stats.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/stats.pl,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -r1.1.2.2 -r1.1.2.3 *** stats.pl 23 Jan 2005 06:17:52 -0000 1.1.2.2 --- stats.pl 23 Jan 2005 08:59:39 -0000 1.1.2.3 *************** *** 61,65 **** my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; ! $module1 cmp $module2 && $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; --- 61,65 ---- my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; ! return $module1 cmp $module2 || $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; *************** *** 67,71 **** my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; ! $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1 |tee zz`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); --- 67,71 ---- my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; ! $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); From acli at users.sourceforge.net Sun Jan 23 11:51:21 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 02:51:21 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator tmpl_process3.pl,1.20,1.20.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6839 Modified Files: Tag: rel_2_2 tmpl_process3.pl Log Message: Make the generated pot file (i.e., result of "create") look more "real", but using msgmerge to reformat the output Index: tmpl_process3.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/tmpl_process3.pl,v retrieving revision 1.20 retrieving revision 1.20.2.1 diff -C2 -r1.20 -r1.20.2.1 *** tmpl_process3.pl 10 Mar 2004 07:00:28 -0000 1.20 --- tmpl_process3.pl 23 Jan 2005 10:51:16 -0000 1.20.2.1 *************** *** 263,276 **** } die "$str_file: Output file already exists\n" if -f $str_file; ! my($tmph, $tmpfile) = tmpnam(); # Generate the temporary file that acts as /POTFILES.in for my $input (@in_files) { ! print $tmph "$input\n"; } ! close $tmph; # Generate the specified po file ($str_file) ! $st = system ($xgettext, '-s', '-f', $tmpfile, '-o', $str_file); ! warn_normal "Text extraction failed: $xgettext: $!\n", undef if $st != 0; ! # unlink $tmpfile || warn_normal "$tmpfile: unlink failed: $!\n", undef; } elsif ($action eq 'update') { --- 263,301 ---- } die "$str_file: Output file already exists\n" if -f $str_file; ! my($tmph1, $tmpfile1) = tmpnam(); ! my($tmph2, $tmpfile2) = tmpnam(); ! close $tmph2; # We just want a name # Generate the temporary file that acts as /POTFILES.in for my $input (@in_files) { ! print $tmph1 "$input\n"; } ! close $tmph1; # Generate the specified po file ($str_file) ! $st = system ($xgettext, '-s', '-f', $tmpfile1, '-o', $tmpfile2); ! # Run msgmerge so that the pot file looks like a real pot file ! # We need to help msgmerge a bit by pre-creating a dummy po file that has ! # the headers and the "" msgid & msgstr. It will fill in the rest. ! if ($st == 0) { ! # Merge the temporary "pot file" with the specified po file ($str_file) ! # FIXME: msgmerge(1) is a Unix dependency ! # FIXME: need to check the return value ! unless (-f $str_file) { ! local(*INPUT, *OUTPUT); ! open(INPUT, "<$tmpfile2"); ! open(OUTPUT, ">$str_file"); ! while () { ! print OUTPUT; ! last if /^\n/s; ! } ! close INPUT; ! close OUTPUT; ! } ! $st = system('msgmerge', '-U', '-s', $str_file, $tmpfile2); ! } else { ! error_normal "Text extraction failed: $xgettext: $!\n", undef; ! error_additional "Will not run msgmerge\n", undef; ! } ! # unlink $tmpfile1 || warn_normal "$tmpfile1: unlink failed: $!\n", undef; ! # unlink $tmpfile2 || warn_normal "$tmpfile2: unlink failed: $!\n", undef; } elsif ($action eq 'update') { From acli at users.sourceforge.net Mon Jan 24 03:47:49 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 18:47:49 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29279 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po Log Message: Partial update. This should be reasonably "finished". Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** css_opac_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 --- css_opac_zh_TW.po 24 Jan 2005 02:47:44 -0000 1.4.2.2 *************** *** 223,227 **** #, c-format msgid " %s home Log Out " ! msgstr "【%s之個人主頁】【登出】" #. %1$s: TMPL_VAR name=dateaccessioned --- 223,227 ---- #, c-format msgid " %s home Log Out " ! msgstr "%s 之個人主頁 登出" #. %1$s: TMPL_VAR name=dateaccessioned *************** *** 239,244 **** " Print " msgstr "" ! " 簡要 詳盡 ISBD 新增至虛擬書架 " ! " 列印 " #. %1$s: TMPL_VAR name=shelfname --- 239,244 ---- " Print " msgstr "" ! "簡要 詳盡 ISBD 新增至虛擬書架 " ! "列印" #. %1$s: TMPL_VAR name=shelfname *************** *** 614,624 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:179 msgid "A free can be managed by any user." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:93 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:178 msgid "A public can be seen by everybody, but managed only by you." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:147 msgid "" --- 614,625 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:179 msgid "A free can be managed by any user." ! msgstr "任何人都有權管理公家書架。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:93 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:178 msgid "A public can be seen by everybody, but managed only by you." ! msgstr "任何人都可以看見公開的私人書架,但只有您有權管理" + # FIXME grammatical mistake in original ("every words") #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:147 msgid "" *************** *** 628,631 **** --- 629,633 ---- "will be discarded." msgstr "" + "查詢時會用您所輸入的所有字詞作出搜尋,但某些不重要的字會被忽略。例如,如果您在題名欄輸入「the two towers」,查詢結果將會包括所有題名有「two」及「tower」二字的圖書資料,而「the」字則會被忽略。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 *************** *** 649,656 **** msgstr "採購日期" #. INPUT type=submit #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:41 msgid "Add Checked Items to Biblio Basket" ! msgstr "" #. INPUT type=submit --- 651,659 ---- msgstr "採購日期" + # NOTE「Items」這裡可以算是「圖書資料」,也可以算(畫面顯示的)「項目」 #. INPUT type=submit #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:41 msgid "Add Checked Items to Biblio Basket" ! msgstr "把點選的項目放至書籃" #. INPUT type=submit *************** *** 679,683 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:30 msgid "Add to basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:8 --- 682,686 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:30 msgid "Add to basket" ! msgstr "新增至書籃" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:8 *************** *** 716,722 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:13 - #, fuzzy msgid "Any word" ! msgstr "關鍵詞" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:86 --- 719,724 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:13 msgid "Any word" ! msgstr "任何字詞" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:86 *************** *** 783,803 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Basket is empty" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio added to the basket" ! msgstr "" #. A #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:44 msgid "Biblio basket" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - #, fuzzy msgid "Biblio(s) added" ! msgstr "沒有新增書目記錄" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 --- 785,805 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Basket is empty" ! msgstr "書籃是空的" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio added to the basket" ! msgstr "書目已放在書籃內" #. A #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:44 msgid "Biblio basket" ! msgstr "書籃" + # TODO #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio(s) added" ! msgstr "成功新增書目" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 *************** *** 881,887 **** msgstr "館藏:%s" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:110 msgid "Content size" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:30 --- 883,890 ---- msgstr "館藏:%s" + # NOTE 虛擬書架內含多少本書 (shelfbookcount) #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:110 msgid "Content size" ! msgstr "書目數量" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:30 *************** *** 931,940 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to empty the basket ?" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to remove selected biblios ?" ! msgstr "" # NOTE 譯文更動 by Arthur --- 934,943 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to empty the basket ?" ! msgstr "要清空書籃嗎?" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to remove selected biblios ?" ! msgstr "要移除點選的書目嗎?" # NOTE 譯文更動 by Arthur *************** *** 968,974 **** "將會收到電郵通知。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:39 msgid "Filter on" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-account.tmpl:9 --- 971,978 ---- "將會收到電郵通知。" + # NOTE #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:39 msgid "Filter on" ! msgstr "過濾條件:" #: ../../koha-tmpl/opac-tmpl/css/en/opac-account.tmpl:9 *************** *** 986,990 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:17 msgid "Free" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl:61 --- 990,994 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:17 msgid "Free" ! msgstr "公家書架" #: ../../koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl:61 *************** *** 996,1000 **** #, c-format msgid "Hi, Here is the biblio basket sent by %s" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:138 --- 1000,1004 ---- #, c-format msgid "Hi, Here is the biblio basket sent by %s" ! msgstr "您好!這是 %s 送來的書籃" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:138 *************** *** 1034,1037 **** --- 1038,1042 ---- "towers\", \"a tower and two cities\"" msgstr "" + "假如您只想輸入字詞的部分,在字詞後鍵入「*」號或「%」號即可。例如,「two tower*」會找到「the two towers」、「two white towers」及「a tower and two cities」" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 *************** *** 1195,1199 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "No biblio selected" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:6 --- 1200,1204 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "No biblio selected" ! msgstr "未有點選書目" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:6 *************** *** 1244,1248 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:6 msgid "OPAC Basket" ! msgstr "" # NOTE 譯文更動 by Arthur --- 1249,1253 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:6 msgid "OPAC Basket" ! msgstr "線上目錄書籃" # NOTE 譯文更動 by Arthur *************** *** 1273,1285 **** msgstr "其他選項" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:84 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:157 msgid "Owner" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:146 - #, fuzzy msgid "Partial search" ! msgstr "館藏查詢" #: ../../koha-tmpl/opac-tmpl/css/en/opac-auth.tmpl:29 --- 1278,1290 ---- msgstr "其他選項" + # NOTE 暫譯 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:84 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:157 msgid "Owner" ! msgstr "架主" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:146 msgid "Partial search" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-auth.tmpl:29 *************** *** 1329,1337 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:15 msgid "Private" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:9 msgid "Problem sending the basket..." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:88 --- 1334,1342 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:15 msgid "Private" ! msgstr "私家書架" #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:9 msgid "Problem sending the basket..." ! msgstr "送出書籃途中出現問題……" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:88 *************** *** 1341,1345 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:16 msgid "Public" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:131 --- 1346,1350 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:16 msgid "Public" ! msgstr "公開的私人書架" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:131 *************** *** 1514,1519 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:4 msgid "Sending the basket" ! msgstr "" #. A #: ../../koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl:25 --- 1519,1525 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:4 msgid "Sending the basket" ! msgstr "送出書籃中" + # FIXME 這個,看了原始碼也不明白是什麼 #. A #: ../../koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl:25 *************** *** 1521,1525 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:26 msgid "Serial issues" ! msgstr "" #. %1$s: TMPL_VAR name=serial --- 1527,1531 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:26 msgid "Serial issues" ! msgstr "期刊期數" #. %1$s: TMPL_VAR name=serial *************** *** 1536,1540 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:93 msgid "Set Filter" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:8 --- 1542,1546 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:93 msgid "Set Filter" ! msgstr "設定過濾條件" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:8 *************** *** 1651,1655 **** #, c-format msgid "The basket was sent to: %s" ! msgstr "" #. %1$s: TMPL_VAR name=reservecount --- 1657,1661 ---- #, c-format msgid "The basket was sent to: %s" ! msgstr "書籃已送給:%s" #. %1$s: TMPL_VAR name=reservecount *************** *** 1671,1675 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "This biblio is already in the basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:13 --- 1677,1681 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "This biblio is already in the basket" ! msgstr "這個書目已在書籃內" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:13 *************** *** 1867,1871 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:2 msgid "Your biblio basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl:6 --- 1873,1877 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:2 msgid "Your biblio basket" ! msgstr "您的書籃" #: ../../koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl:6 *************** *** 1876,1890 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:177 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "" - # NOTE This refers to new books acquired in the last so-and-so days - # NOTE This is essentially the same string as the next, but different - # NOTE due to technical difficulties (in creating an msgid from the HTML) - # FIXME This string as it is is nearly untranslatable. The scanner need to be fixed. #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - #, fuzzy msgid "already in the basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:98 --- 1882,1891 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:177 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "私家書籃由您自己管理,也只有您才看見。" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "already in the basket" ! msgstr "已在書籃內" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:98 *************** *** 1925,1931 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:52 #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:21 - #, fuzzy msgid "in" ! msgstr "讀者登記" #. IMG --- 1926,1931 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:52 #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:21 msgid "in" ! msgstr "在" #. IMG *************** *** 2055,2061 **** #~ msgstr "國際標準書號:%s" - #~ msgid "%s (%s)" - #~ msgstr "%s (%s)" - #~ msgid "AMOUNT" #~ msgstr "金額" --- 2055,2058 ---- *************** *** 2064,2073 **** #~ msgstr "紀錄正確嗎?" - #~ msgid "Apr" - #~ msgstr "四月" - - #~ msgid "Aug" - #~ msgstr "八月" - #~ msgid "Compact Disc" #~ msgstr "光碟" --- 2061,2064 ---- *************** *** 2077,2086 **** #~ msgstr "目前狀態" - #~ msgid "Day" - #~ msgstr "日" - - #~ msgid "Dec" - #~ msgstr "十二月" - #~ msgid "Easy / Picture Books" #~ msgstr "淺易/圖畫書" --- 2068,2071 ---- *************** *** 2100,2118 **** #~ msgstr "罰款及費用" - #~ msgid "Feb" - #~ msgstr "二月" - #~ msgid "Illustrator" #~ msgstr "繪圖" - #~ msgid "Jan" - #~ msgstr "一月" - - #~ msgid "Jul" - #~ msgstr "七月" - - #~ msgid "Jun" - #~ msgstr "六月" - # NOTE 譯文更動 by Arthur #~ msgid "Junior Fiction" --- 2085,2091 ---- *************** *** 2123,2138 **** #~ msgstr "學童/初級非小說" - #~ msgid "KOHA" - #~ msgstr "KOHA" - #~ msgid "KOHA: OPAC Catalogue Search" #~ msgstr "KOHA:查詢館藏" - #~ msgid "Log In to Koha" - #~ msgstr "登入Koha" - - #~ msgid "Mar" - #~ msgstr "三月" - #~ msgid "Next Page" #~ msgstr "下一頁" --- 2096,2102 ---- *************** *** 2155,2161 **** #~ "鍵字。" - #~ msgid "Nov" - #~ msgstr "十一月" - #~ msgid "OR :" #~ msgstr "或:" --- 2119,2122 ---- *************** *** 2164,2170 **** #~ msgstr "或下列最少一項:" - #~ msgid "Oct" - #~ msgstr "十月" - #~ msgid "Previous Page" #~ msgstr "上一頁" --- 2125,2128 ---- *************** *** 2186,2192 **** #~ msgstr "稱號" - #~ msgid "Sep" - #~ msgstr "九月" - # NOTE 譯文更動 by Arthur #~ msgid "Something new ?" --- 2144,2147 ---- *************** *** 2208,2212 **** #~ msgid "Young Adult Fiction" #~ msgstr "青年小說類" - - #~ msgid "to Koha" - #~ msgstr "Koha" --- 2163,2164 ---- From acli at users.sourceforge.net Mon Jan 24 05:43:23 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 20:43:23 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_126a.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25795 Modified Files: Tag: rel_2_2 unimarc_field_126a.tmpl Log Message: Spelling corrections Index: unimarc_field_126a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** unimarc_field_126a.tmpl 7 Jun 2004 10:04:00 -0000 1.1 --- unimarc_field_126a.tmpl 24 Jan 2005 04:43:20 -0000 1.1.2.1 *************** *** 498,502 **** ! --- 498,502 ---- ! *************** *** 584,588 **** ! --- 584,588 ---- ! *************** *** 670,674 **** ! --- 670,674 ---- ! *************** *** 756,760 **** ! --- 756,760 ---- ! *************** *** 842,846 **** ! --- 842,846 ---- ! *************** *** 928,932 **** ! --- 928,932 ---- ! From acli at users.sourceforge.net Mon Jan 24 05:45:27 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 20:45:27 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26187 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial updates, mostly Unimarc stuff (CMARC seems to be mostly identical to French Unimarc) Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** default_intranet_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 --- default_intranet_zh_TW.po 24 Jan 2005 04:45:21 -0000 1.4.2.2 *************** *** 141,145 **** #, c-format msgid "%S (example for 200a : '200c','200d','200e'...)" ! msgstr "" #. For the first occurrence, --- 141,145 ---- #, c-format msgid "%S (example for 200a : '200c','200d','200e'...)" ! msgstr "%S (以 200a 而言,例如:「200c」、「200d」、「200e」……)" [...961 lines suppressed...] --- 3685,3690 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_141.tmpl:369 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_141.tmpl:371 msgid "Autre" ! msgstr "其他" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:218 *************** *** 3863,3867 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:932 msgid "Autres renseignements historiques" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:500 --- 3868,3872 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:932 msgid "Autres renseignements historiques" ! msgstr "其他史料" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:500 From acli at users.sourceforge.net Mon Jan 24 06:43:12 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 21:43:12 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_126a.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8182 Modified Files: Tag: rel_2_2 unimarc_field_126a.tmpl Log Message: Spelling correction Index: unimarc_field_126a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** unimarc_field_126a.tmpl 24 Jan 2005 04:43:20 -0000 1.1.2.1 --- unimarc_field_126a.tmpl 24 Jan 2005 05:43:10 -0000 1.1.2.2 *************** *** 490,494 **** ! --- 490,494 ---- ! *************** *** 576,580 **** ! --- 576,580 ---- ! *************** *** 662,666 **** ! --- 662,666 ---- ! *************** *** 748,752 **** ! --- 748,752 ---- ! *************** *** 834,838 **** ! --- 834,838 ---- ! *************** *** 920,924 **** ! --- 920,924 ---- ! From acli at users.sourceforge.net Mon Jan 24 06:53:14 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 21:53:14 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.2,1.4.2.3 default_intranet_zh_TW.po,1.4.2.2,1.4.2.3 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10176 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: 126a mostly done Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -r1.4.2.2 -r1.4.2.3 *** css_opac_zh_TW.po 24 Jan 2005 02:47:44 -0000 1.4.2.2 --- css_opac_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 23:45-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 239,244 **** " Print " msgstr "" ! "簡要 詳盡 ISBD 新增至虛擬書架 " ! "列印" #. %1$s: TMPL_VAR name=shelfname --- 239,244 ---- " Print " msgstr "" ! "簡要 詳盡 ISBD 新增至虛擬書架 列印" #. %1$s: TMPL_VAR name=shelfname *************** *** 629,633 **** "will be discarded." msgstr "" ! "查詢時會用您所輸入的所有字詞作出搜尋,但某些不重要的字會被忽略。例如,如果您在題名欄輸入「the two towers」,查詢結果將會包括所有題名有「two」及「tower」二字的圖書資料,而「the」字則會被忽略。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 --- 629,635 ---- "will be discarded." msgstr "" ! "查詢時會用您所輸入的所有字詞作出搜尋,但某些不重要的字會被忽略。例如,如果您" ! "在題名欄輸入「the two towers」,查詢結果將會包括所有題名有「two」及「tower」" ! "二字的圖書資料,而「the」字則會被忽略。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 *************** *** 1038,1042 **** "towers\", \"a tower and two cities\"" msgstr "" ! "假如您只想輸入字詞的部分,在字詞後鍵入「*」號或「%」號即可。例如,「two tower*」會找到「the two towers」、「two white towers」及「a tower and two cities」" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 --- 1040,1046 ---- "towers\", \"a tower and two cities\"" msgstr "" ! "假如您只想輸入字詞的部分,在字詞後鍵入「*」號或「%」號即可。例如,「two " ! "tower*」會找到「the two towers」、「two white towers」及「a tower and two " ! "cities」" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 *************** *** 1411,1416 **** "company, group, collective author (CNRS, Library of Congress)" msgstr "" ! "請注意,圖書資料的題名可能是關於一個著者(例如 Victor Hugo)、一間公司、一個機構、" ! "或者一個組織(例如 CNRS、美國國會圖書館)等" # NOTE「Items」這裡可以算是「圖書資料」,也可以算(畫面顯示的)「項目」 --- 1415,1420 ---- "company, group, collective author (CNRS, Library of Congress)" msgstr "" ! "請注意,圖書資料的題名可能是關於一個著者(例如 Victor Hugo)、一間公司、一個" ! "機構、或者一個組織(例如 CNRS、美國國會圖書館)等" # NOTE「Items」這裡可以算是「圖書資料」,也可以算(畫面顯示的)「項目」 *************** *** 1501,1505 **** "branch. By default the search is done on every branches of the library" msgstr "" ! "假如您只想查詢某一間分館的館藏,請先選擇分館;否則查詢結果會包括所有分館的館藏。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:6 --- 1505,1510 ---- "branch. By default the search is done on every branches of the library" msgstr "" ! "假如您只想查詢某一間分館的館藏,請先選擇分館;否則查詢結果會包括所有分館的館" ! "藏。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:6 *************** *** 1815,1819 **** "illustrator...)" msgstr "" ! "您可以輸入著者的姓或名。附加著者及其他有關的欄位(譯者、繪圖等等)也會列入搜尋範圍之內。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:9 --- 1820,1825 ---- "illustrator...)" msgstr "" ! "您可以輸入著者的姓或名。附加著者及其他有關的欄位(譯者、繪圖等等)也會列入搜" ! "尋範圍之內。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:9 Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -r1.4.2.2 -r1.4.2.3 *** default_intranet_zh_TW.po 24 Jan 2005 04:45:21 -0000 1.4.2.2 --- default_intranet_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 23:46-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" [...1012 lines suppressed...] #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:406 --- 18929,18933 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:171 msgid "Type de son:" ! msgstr "聲道類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:406 *************** *** 19568,19572 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:65 msgid "Vitesse:" ! msgstr "速度:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:338 --- 19547,19551 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:65 msgid "Vitesse:" ! msgstr "錄音速度:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:338 From acli at users.sourceforge.net Mon Jan 24 07:32:26 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 22:32:26 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.3,1.4.2.4 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18639 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: 126b done (i.e., translations that can be copied from CMARC have been copied) Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -r1.4.2.3 -r1.4.2.4 *** default_intranet_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 --- default_intranet_zh_TW.po 24 Jan 2005 06:32:21 -0000 1.4.2.4 *************** *** 1077,1081 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:294 msgid "10 cm x 6.3 cm ou 3 pouces 7/8 x 2 pouces 1/2" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:125 --- 1077,1081 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:294 msgid "10 cm x 6.3 cm ou 3 pouces 7/8 x 2 pouces 1/2" ! msgstr "3 7/8 × 2 1/2 吋(卡式錄音帶)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:125 *************** *** 1156,1164 **** msgstr "2 個月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:353 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:355 - #, fuzzy msgid "2 pouces" ! msgstr "-> 資源" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:36 --- 1156,1164 ---- msgstr "2 個月" + # TODO CMARC 寫 f6e 為「1 吋」,但「1 吋」為 f6c,CMARC 文件有錯 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:353 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:355 msgid "2 pouces" ! msgstr "2 吋" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:36 *************** *** 3993,3997 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:30 msgid "Bande \"Master\"" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:33 --- 3993,3997 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:30 msgid "Bande \"Master\"" ! msgstr "母帶 (master tape)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:33 *************** *** 4075,4083 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:33 msgid "Bande reproduite a partir du \"master\"" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:35 msgid "Bande reproduite a partir du master" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:189 --- 4075,4083 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:33 msgid "Bande reproduite a partir du \"master\"" ! msgstr "複製母帶 (tape duplication master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:35 msgid "Bande reproduite a partir du master" ! msgstr "複製母帶 (tape duplication master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:189 *************** *** 5685,5689 **** #, fuzzy msgid "Codage CX" ! msgstr "編碼" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/authtypes.tmpl:117 --- 5685,5689 ---- #, fuzzy msgid "Codage CX" ! msgstr "CX 編碼" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/authtypes.tmpl:117 *************** *** 6372,6376 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:45 msgid "Cylindre" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:697 --- 6372,6376 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:45 msgid "Cylindre" ! msgstr "圓形錄音筒" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:697 *************** *** 7016,7020 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:40 msgid "Disque \"pere\" (negatif)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:171 --- 7016,7020 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:40 msgid "Disque \"pere\" (negatif)" ! msgstr "唱片母模板 (disc master, negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:171 *************** *** 7133,7137 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:131 msgid "Dos papier" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/memberentry.tmpl:76 --- 7133,7137 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:131 msgid "Dos papier" ! msgstr "紙背 (paper backed)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/memberentry.tmpl:76 *************** *** 8632,8646 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:20 msgid "Gravure directe" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:170 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:172 msgid "Gravure inconnue" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:160 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:162 msgid "Gravure laterale ou combinee" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1038 --- 8632,8646 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:20 msgid "Gravure directe" ! msgstr "現場錄音者(定點錄音)(instantaneous)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:170 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:172 msgid "Gravure inconnue" ! msgstr "不詳" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:160 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:162 msgid "Gravure laterale ou combinee" ! msgstr "側面切割式" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1038 *************** *** 8683,8693 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:167 msgid "Gravure verticale" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:607 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:609 - #, fuzzy msgid "Grec" ! msgstr "法文" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:786 --- 8683,8692 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:167 msgid "Gravure verticale" ! msgstr "高低式起伏" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:607 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:609 msgid "Grec" ! msgstr "希臘文" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:786 *************** *** 8696,8700 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:1063 msgid "Greenwich (G.B.)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:78 --- 8695,8699 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:1063 msgid "Greenwich (G.B.)" ! msgstr "格林尼治(英國)" #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:78 *************** *** 8718,8721 **** --- 8717,8721 ---- "Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine" msgstr "" + "Gynn Lomax、Richard Anderson、Jeremy Blake、Rebecca Holden、Olive T. Canine" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/recieve.tmpl:66 *************** *** 8724,8730 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:74 - #, fuzzy msgid "HELP Ordering" ! msgstr "採購說明:" # NOTE 譯文更動 by Arthur --- 8724,8729 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:74 msgid "HELP Ordering" ! msgstr "訂購說明" # NOTE 譯文更動 by Arthur *************** *** 8744,8753 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:8 msgid "HINT for fines" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:5 - #, fuzzy msgid "HINT for issues" ! msgstr "借出次數" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/authorised_values.tmpl:8 --- 8743,8751 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:8 msgid "HINT for fines" ! msgstr "罰款提示" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:5 msgid "HINT for issues" ! msgstr "借出說明" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/authorised_values.tmpl:8 *************** *** 10632,10638 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:106 - #, fuzzy msgid "Laque" ! msgstr "語言" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:216 --- 10630,10635 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:106 msgid "Laque" ! msgstr "lacquered(如,醋酸鹽等)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:216 *************** *** 11496,11500 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:50 msgid "Matrice (negatif)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1417 --- 11493,11497 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:50 msgid "Matrice (negatif)" ! msgstr "壓模版 (stamper, negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1417 *************** *** 11504,11510 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:112 - #, fuzzy msgid "May" ! msgstr "繳交" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:208 --- 11501,11506 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:112 msgid "May" ! msgstr "五月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:208 *************** *** 11720,11726 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:109 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:111 - #, fuzzy msgid "Metal" ! msgstr "男" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:329 --- 11716,11721 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:109 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:111 msgid "Metal" ! msgstr "金屬(如,鋁等)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:329 *************** *** 11736,11740 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:126 msgid "Metal et plastique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1219 --- 11731,11735 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:126 msgid "Metal et plastique" ! msgstr "金屬及塑膠(雷射唱片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1219 *************** *** 13197,13203 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:30 - #, fuzzy msgid "Nord" ! msgstr "字詞" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:176 --- 13192,13197 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:30 msgid "Nord" ! msgstr "北" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:176 *************** *** 13220,13233 **** msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1012 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1014 msgid "Norme CCIR/IEC" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:407 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:410 msgid "Norme ISO pour la translitteration" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1007 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1009 --- 13214,13229 ---- msgstr "" + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1012 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1014 msgid "Norme CCIR/IEC" ! msgstr "CCIR/IEC 標準" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:407 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:410 msgid "Norme ISO pour la translitteration" ! msgstr "ISO " + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1007 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1009 *************** *** 13463,13466 **** --- 13459,13463 ---- msgstr "" + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:981 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:983 *************** *** 13468,13475 **** msgstr "數碼" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1022 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1024 msgid "Numerique (disque compact)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:26 --- 13465,13473 ---- msgstr "數碼" + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1022 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1024 msgid "Numerique (disque compact)" ! msgstr "數碼(雷射唱片)" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:26 *************** *** 14089,14093 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:141 msgid "P.V.C." ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/jmemberentry.tmpl:25 --- 14087,14091 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:141 msgid "P.V.C." ! msgstr "塑膠 (PVC)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/jmemberentry.tmpl:25 *************** *** 14105,14116 **** #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:134 - #, fuzzy msgid "Page Size" ! msgstr "大小" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/printerConfig.tmpl:32 - #, fuzzy msgid "Page Type" ! msgstr "圖書資料類別" #: ../../koha-tmpl/intranet-tmpl/default/en/marcimport/marcimportdetail.tmpl:36 --- 14103,14112 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:134 msgid "Page Size" ! msgstr "頁面大小" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/printerConfig.tmpl:32 msgid "Page Type" ! msgstr "紙張類型" #: ../../koha-tmpl/intranet-tmpl/default/en/marcimport/marcimportdetail.tmpl:36 *************** *** 14778,14781 **** --- 14774,14778 ---- msgstr "" + # NOTE CMARC 126b 無 2h #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:365 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:367 *************** *** 14787,14791 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:101 msgid "Plastique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:662 --- 14784,14788 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:101 msgid "Plastique" ! msgstr "塑膠" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:662 *************** *** 14961,14965 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:146 msgid "Polyester" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:743 --- 14958,14962 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:146 msgid "Polyester" ! msgstr "多元脂 (polyester)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:743 *************** *** 15132,15139 **** msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:9 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 --- 15129,15137 ---- msgstr "" + # FIXME Clash between 126a and 130!! #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:9 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "唱片、錄音帶或圓型錄音筒類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 *************** *** 15150,15164 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:55 msgid "Pressage de test" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:114 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:116 msgid "Pressage laque" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:119 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:121 msgid "Pressage plastique" ! msgstr "" # FIXME This may be wrong. check context. --- 15148,15162 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:55 msgid "Pressage de test" ! msgstr "試壓片 (test pressing)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:114 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:116 msgid "Pressage laque" ! msgstr "假漆版唱片(大量製造者)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:119 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:121 msgid "Pressage plastique" ! msgstr "塑膠版唱片(大量製造者)" # FIXME This may be wrong. check context. *************** *** 15242,15246 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:25 msgid "Production industrielle" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_124b.tmpl:43 --- 15240,15244 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:25 msgid "Production industrielle" ! msgstr "大量製造者(商業性發行唱片多屬此)(mass produced)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_124b.tmpl:43 *************** *** 18891,18895 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:9 msgid "Type de disque, cylindre ou bande magnetique:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:9 --- 18889,18893 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:9 msgid "Type de disque, cylindre ou bande magnetique:" ! msgstr "唱片、錄音帶或圓形錄音筒類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:9 *************** *** 18899,18903 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:70 msgid "Type de document:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_135a.tmpl:9 --- 18897,18901 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:70 msgid "Type de document:" ! msgstr "質料種類:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_135a.tmpl:9 *************** *** 18911,18915 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:151 msgid "Type de gravure:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_125a.tmpl:9 --- 18909,18913 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:151 msgid "Type de gravure:" ! msgstr "錄音槽切割形式:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_125a.tmpl:9 From acli at users.sourceforge.net Mon Jan 24 07:53:56 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 22:53:56 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.4,1.4.2.5 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23504 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.4 retrieving revision 1.4.2.5 diff -C2 -r1.4.2.4 -r1.4.2.5 *** default_intranet_zh_TW.po 24 Jan 2005 06:32:21 -0000 1.4.2.4 --- default_intranet_zh_TW.po 24 Jan 2005 06:53:51 -0000 1.4.2.5 *************** *** 19653,19659 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/statecollection.tmpl:39 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:161 - #, fuzzy msgid "Waited" ! msgstr "相關" #. INPUT type=submit --- 19653,19658 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/statecollection.tmpl:39 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:161 msgid "Waited" ! msgstr "等待" #. INPUT type=submit *************** *** 19786,19794 **** msgstr "是" - # FIXME Bug in English template #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:122 - #, fuzzy msgid "Year" ! msgstr "年%0.0s" #: ../../koha-tmpl/intranet-tmpl/default/en/members/moremember.tmpl:136 --- 19785,19791 ---- msgstr "是" #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:122 msgid "Year" ! msgstr "年份" #: ../../koha-tmpl/intranet-tmpl/default/en/members/moremember.tmpl:136 *************** *** 20023,20030 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:95 #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:180 - #, fuzzy msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "「私人」的虛擬書架只有您看得見,並且只有您才有權修改。" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:23 --- 20020,20027 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:95 #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:180 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "私家書架只有您看得見,並且只有您才有權修改。" + # FIXME bug in tokenizer/scanner #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:23 *************** *** 20053,20056 **** --- 20050,20054 ---- "Thompson," msgstr "" + "及 Simon Blake、運作經理 Amanda Atkins、Olwen Williams、Finlay Thompson、" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:90 *************** *** 20088,20094 **** msgstr "截至此日 (%s)" - # XXX 暫譯,要問人核對 #: ../../koha-tmpl/intranet-tmpl/default/en/help/authorities/authorities.tmpl:1 - #, fuzzy msgid "authority help" msgstr "權威說明" --- 20086,20090 ---- *************** *** 20101,20107 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:414 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:416 - #, fuzzy msgid "autre" ! msgstr "著者" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:454 --- 20097,20102 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:414 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:416 msgid "autre" ! msgstr "其他" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:454 *************** *** 20127,20131 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:110 msgid "be in tab -1" ! msgstr "在第「-1」格 (即不顯示)" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:109 --- 20122,20126 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:110 msgid "be in tab -1" ! msgstr "在第「-1」格(即不顯示)" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:109 *************** *** 20216,20222 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acquire.tmpl:12 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:81 - #, fuzzy msgid "catalogue details" ! msgstr "館藏查詢" #. For the first occurrence, --- 20211,20216 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acquire.tmpl:12 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:81 msgid "catalogue details" ! msgstr "目錄詳情" #. For the first occurrence, *************** *** 20229,20235 **** #. INPUT type=submit #: ../../koha-tmpl/intranet-tmpl/default/en/suggestion/acceptorreject.tmpl:42 - #, fuzzy msgid "change status" ! msgstr "匯率" #. SCRIPT --- 20223,20228 ---- #. INPUT type=submit #: ../../koha-tmpl/intranet-tmpl/default/en/suggestion/acceptorreject.tmpl:42 msgid "change status" ! msgstr "修改狀態" #. SCRIPT *************** *** 20240,20246 **** #. %1$s: TMPL_VAR name=closedate #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/order.tmpl:46 ! #, fuzzy, c-format msgid "closed on %s View" ! msgstr "%S - %s +" #. INPUT type=reset name=reset --- 20233,20239 ---- #. %1$s: TMPL_VAR name=closedate #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/order.tmpl:46 ! #, c-format msgid "closed on %s View" ! msgstr "" #. INPUT type=reset name=reset *************** *** 20276,20282 **** #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:9 - #, fuzzy msgid "count" ! msgstr "折扣" #. SCRIPT --- 20269,20274 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:9 msgid "count" ! msgstr "數量" #. SCRIPT *************** *** 20286,20292 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:12 - #, fuzzy msgid "day" ! msgstr "繳交" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marctagstructure.tmpl:4 --- 20278,20283 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:12 msgid "day" ! msgstr "日" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marctagstructure.tmpl:4 *************** *** 20376,20380 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:21 msgid "everywhere" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:18 --- 20367,20371 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:21 msgid "everywhere" ! msgstr "任何地方" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:18 *************** *** 20401,20407 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:20 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:22 - #, fuzzy msgid "filter" ! msgstr "印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:11 --- 20392,20397 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:20 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:22 msgid "filter" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:11 *************** *** 20412,20418 **** #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, fuzzy, c-format msgid "for branch = %s" ! msgstr "登記之館別:%s" #. %1$s: TMPL_VAR name=borrower_category --- 20402,20408 ---- #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, , c-format msgid "for branch = %s" ! msgstr "" #. %1$s: TMPL_VAR name=borrower_category *************** *** 20510,20514 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/search.marc/search.tmpl:25 - #, fuzzy msgid "ignored" msgstr "忽略" --- 20500,20503 ---- *************** *** 20669,20673 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - #, fuzzy msgid "mandatory tags empty" msgstr "個必備欄沒有填寫" --- 20658,20661 ---- *************** *** 20727,20733 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:24 - #, fuzzy msgid "month" ! msgstr "金額" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:310 --- 20715,20720 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:24 msgid "month" ! msgstr "月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:310 *************** *** 20848,20852 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/addbookbybiblionumber.tmpl:9 msgid "or add to a new bookshelf" ! msgstr "" #. %1$s: TMPL_VAR name=name --- 20835,20839 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/addbookbybiblionumber.tmpl:9 msgid "or add to a new bookshelf" ! msgstr "或新增至新的虛擬書架" #. %1$s: TMPL_VAR name=name *************** *** 20881,20887 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:331 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:333 - #, fuzzy msgid "plans" ! msgstr "Al Banks" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl:22 --- 20868,20873 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:331 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:333 msgid "plans" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl:22 *************** *** 20899,20903 **** #: ../../koha-tmpl/intranet-tmpl/default/en/includes/quicksearch-top.inc:5 msgid "popup" ! msgstr "" #. SCRIPT --- 20885,20889 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/includes/quicksearch-top.inc:5 msgid "popup" ! msgstr "彈出通知" #. SCRIPT *************** *** 20952,20958 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:33 - #, fuzzy msgid "quarter" ! msgstr "更新" #. SCRIPT --- 20938,20943 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:33 msgid "quarter" ! msgstr "季" #. SCRIPT *************** *** 21045,21051 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:108 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:133 ! #, fuzzy, c-format msgid "see also : %s," ! msgstr "參見" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 --- 21030,21036 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:108 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:133 ! #, c-format msgid "see also : %s," ! msgstr "參見:%s、" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 *************** *** 21059,21065 **** #. %2$s: TMPL_VAR name=name #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:4 ! #, fuzzy, c-format msgid "shopping Basket %s for %s" ! msgstr "%2$s 的購物籃 %1$s" # FIXME Strictly speaking untranslatable. Arguably a template bug, but difficult to fix --- 21044,21050 ---- #. %2$s: TMPL_VAR name=name #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:4 ! #, c-format msgid "shopping Basket %s for %s" ! msgstr "%2$s 的購物籃 %1$s" # FIXME Strictly speaking untranslatable. Arguably a template bug, but difficult to fix *************** *** 21090,21096 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:127 - #, fuzzy msgid "subfield ignored" ! msgstr "分欄" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl:155 --- 21075,21080 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:127 msgid "subfield ignored" ! msgstr "分欄已被忽略" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl:155 *************** *** 21159,21163 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:53 msgid "the biblioitems.itemtype field MUST :" ! msgstr "biblioitems.itemtype欄必須:" # NOTE 譯文更動 by Arthur --- 21143,21147 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:53 msgid "the biblioitems.itemtype field MUST :" ! msgstr "biblioitems.itemtype 欄必須:" # NOTE 譯文更動 by Arthur *************** *** 21185,21193 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:93 msgid "the items.holdingbranch field MUST :" ! msgstr "items.holdingbranch欄必須:" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:79 msgid "the items.homebranch field MUST :" ! msgstr "items.homebranch欄必須" # NOTE 譯文更動 by Arthur --- 21169,21177 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:93 msgid "the items.holdingbranch field MUST :" ! msgstr "items.holdingbranch 欄必須:" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:79 msgid "the items.homebranch field MUST :" ! msgstr "items.homebranch 欄必須" # NOTE 譯文更動 by Arthur *************** *** 21289,21293 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:15 msgid "week" ! msgstr "週刊" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:25 --- 21273,21277 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:15 msgid "week" ! msgstr "週" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:25 *************** *** 21309,21313 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:39 msgid "year" ! msgstr "年刊" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:16 --- 21293,21297 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:39 msgid "year" ! msgstr "年" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:16 From acli at users.sourceforge.net Mon Jan 24 08:13:57 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 23:13:57 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator TmplTokenizer.pm,1.35.2.1,1.35.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28051 Modified Files: Tag: rel_2_2 TmplTokenizer.pm Log Message: Reverting the patch Index: TmplTokenizer.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/TmplTokenizer.pm,v retrieving revision 1.35.2.1 retrieving revision 1.35.2.2 diff -C2 -r1.35.2.1 -r1.35.2.2 *** TmplTokenizer.pm 23 Jan 2005 07:05:43 -0000 1.35.2.1 --- TmplTokenizer.pm 24 Jan 2005 07:13:54 -0000 1.35.2.2 *************** *** 342,346 **** $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])\s*(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { --- 342,346 ---- $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { *************** *** 349,354 **** } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! my $candidate = $output[$j]->[1]; ! $output[$j] = [1, $candidate, $q, $s]; } $state = 0; --- 349,353 ---- } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! $output[$j] = [1, $output[$j]->[1], $q, $s]; } $state = 0; From acli at users.sourceforge.net Mon Jan 24 08:57:40 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 23:57:40 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.3,1.4.2.4 default_intranet_zh_TW.po,1.4.2.5,1.4.2.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5164 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: Unimarc tag 130 done Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -r1.4.2.3 -r1.4.2.4 *** css_opac_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 --- css_opac_zh_TW.po 24 Jan 2005 07:57:29 -0000 1.4.2.4 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 23:45-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 18,21 **** --- 18,28 ---- "Content-Transfer-Encoding: 8bit\n" + # TODO + #. SCRIPT + #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 + #, fuzzy + msgid " Biblio(s) added" + msgstr "成功新增書目" + #. %1$S: type=text name=value #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:111 *************** *** 799,808 **** msgstr "書籃" - # TODO - #. SCRIPT - #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - msgid "Biblio(s) added" - msgstr "成功新增書目" - #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 msgid "Bookshelves" --- 806,809 ---- Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.5 retrieving revision 1.4.2.6 diff -C2 -r1.4.2.5 -r1.4.2.6 *** default_intranet_zh_TW.po 24 Jan 2005 06:53:51 -0000 1.4.2.5 --- default_intranet_zh_TW.po 24 Jan 2005 07:57:34 -0000 1.4.2.6 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 23:46-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 34,37 **** --- 34,52 ---- "Content-Transfer-Encoding: 8bit\n" + #. For the first occurrence, + #. SCRIPT + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl:111 + #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 + msgid " mandatory fields empty (see bold subfields)" + msgstr "個必備欄位沒有填寫(見粗體的分欄)" + + #. For the first occurrence, + #. SCRIPT + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 + #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 + msgid " mandatory tags empty" + msgstr "個必備欄沒有填寫" + #. %1$s: TMPL_VAR name=subject #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:6 *************** *** 81,85 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:31 msgid "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:32 --- 96,100 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:31 msgid "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" ! msgstr "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:32 *************** *** 91,95 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:33 msgid "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:34 --- 106,110 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:33 msgid "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" ! msgstr "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:34 *************** *** 107,111 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:30 msgid "#230||{ ; 230a}|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:36 --- 122,126 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:30 msgid "#230||{ ; 230a}|" ! msgstr "#230||{ ; 230a}|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:36 *************** *** 117,121 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:28 msgid "#700|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:37 --- 132,136 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:28 msgid "#700|" ! msgstr "#700|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:37 *************** *** 135,139 **** #, c-format msgid "%S (example for 200a : '200c','200d','200e')" ! msgstr "" #. %1$S: type=text name=seealso --- 150,154 ---- #, c-format msgid "%S (example for 200a : '200c','200d','200e')" ! msgstr "%S (以 200a 而言,例如:「200c」、「200d」、「200e」)" #. %1$S: type=text name=seealso *************** *** 736,740 **** #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist-auth.tmpl:55 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_210c.tmpl:56 - #, fuzzy msgid " No results found." msgstr " 找不到您需用的資料。" --- 751,754 ---- *************** *** 784,788 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:17 - #, fuzzy msgid "" "(Note : fines are calculated by the fines2.pl script, located in misc " --- 798,801 ---- *************** *** 818,824 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:123 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:125 ! #, fuzzy, c-format msgid "(is %s)" ! msgstr "(%s, %s)" #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:13 --- 831,837 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:123 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:125 ! #, c-format msgid "(is %s)" ! msgstr "(為 %s)" #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:13 *************** *** 971,982 **** # FIXME looks like a BUG in the English template #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:41 - #, fuzzy msgid "1/2 Monthes" ! msgstr "個月%0.0s" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:59 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:61 msgid "1/2 months" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:338 --- 984,994 ---- # FIXME looks like a BUG in the English template #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:41 msgid "1/2 Monthes" ! msgstr "半個月" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:59 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:61 msgid "1/2 months" ! msgstr "半個月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:338 *************** *** 989,993 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:50 msgid "1/2 quarters" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:44 --- 1001,1005 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:50 msgid "1/2 quarters" ! msgstr "半季" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:44 *************** *** 995,999 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:32 msgid "1/2 weeks" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:84 --- 1007,1011 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:32 msgid "1/2 weeks" ! msgstr "半週" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:84 *************** *** 1001,1005 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:56 msgid "1/2 years" ! msgstr "1/2 年" # FIXME looks like a BUG in the English template --- 1013,1017 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:56 msgid "1/2 years" ! msgstr "半年" # FIXME looks like a BUG in the English template *************** *** 1082,1086 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:127 msgid "105 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1296 --- 1094,1098 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:127 msgid "105 mm (microfilm)" ! msgstr "105 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1296 *************** *** 1134,1138 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:112 msgid "16 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:414 --- 1146,1150 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:112 msgid "16 mm (microfilm)" ! msgstr "16 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:414 *************** *** 1211,1215 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:132 msgid "3 x 5 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:112 --- 1223,1227 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:132 msgid "3 x 5 pouces" ! msgstr "3 × 5 吋(8 × 13 公分)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:112 *************** *** 1236,1240 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:117 msgid "35 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:282 --- 1248,1252 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:117 msgid "35 mm (microfilm)" ! msgstr "35 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:282 *************** *** 1251,1255 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:137 msgid "4 x 6 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:164 --- 1263,1267 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:137 msgid "4 x 6 pouces" ! msgstr "4 × 6 吋(11 × 15 公分)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:164 *************** *** 1296,1300 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:142 msgid "6 x 9 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:127 --- 1308,1312 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:142 msgid "6 x 9 pouces" ! msgstr "6 × 9 吋(16 × 23 公分)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:127 *************** *** 1331,1335 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:122 msgid "70 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:104 --- 1343,1347 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:122 msgid "70 mm (microfilm)" ! msgstr "70 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:104 *************** *** 1341,1345 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:107 msgid "8 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:404 --- 1353,1357 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:107 msgid "8 mm (microfilm)" ! msgstr "8 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:404 *************** *** 1358,1365 **** msgstr "8/10 吋/秒" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:145 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:147 msgid "9 x 19 cm" ! msgstr "" #. For the first occurrence, --- 1370,1378 ---- msgstr "8/10 吋/秒" + # NOTE CMARC 亂寫 :-( #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:145 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:147 msgid "9 x 19 cm" ! msgstr "3 1/4 × 7 3/8 吋(9 × 19 公分)(孔卡)" #. For the first occurrence, *************** *** 4066,4070 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:55 msgid "Bande microfilm" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:198 --- 4079,4083 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:55 msgid "Bande microfilm" ! msgstr "長條微縮片 (microfilm slip)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:198 *************** *** 5019,5023 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:20 msgid "Carte a fenetre" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1535 --- 5032,5036 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:20 msgid "Carte a fenetre" ! msgstr "孔卡 (aperture card)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1535 *************** *** 6070,6074 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:313 msgid "Copie de service" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/request.tmpl:38 --- 6083,6087 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:313 msgid "Copie de service" ! msgstr "發行片 (service copy)" #: ../../koha-tmpl/intranet-tmpl/default/en/request.tmpl:38 *************** *** 6156,6167 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:229 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:231 - #, fuzzy msgid "Couleur" ! msgstr "重設" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:215 - #, fuzzy msgid "Couleur:" ! msgstr "重設" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:119 --- 6169,6178 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:229 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:231 msgid "Couleur" ! msgstr "彩色 (color)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:215 msgid "Couleur:" ! msgstr "色彩:" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:119 *************** *** 6919,6923 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:262 msgid "Diazoique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:423 --- 6930,6934 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:262 msgid "Diazoique" ! msgstr "重氮 (diazo)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:423 *************** *** 6957,6961 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:96 msgid "Dimensions:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:168 --- 6968,6972 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:96 msgid "Dimensions:" ! msgstr "大小尺寸:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:168 *************** *** 7027,7033 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:239 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:241 - #, fuzzy msgid "Divers" ! msgstr "-> 交貨" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:123 --- 7038,7043 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:239 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:241 msgid "Divers" ! msgstr "不詳" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:123 *************** *** 7405,7409 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:183 msgid "Elevee (31x - 60x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/imemberentry.tmpl:78 --- 7415,7419 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:183 msgid "Elevee (31x - 60x)" ! msgstr "高縮率(31–60倍)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/imemberentry.tmpl:78 *************** *** 7424,7433 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:246 msgid "Emulsion:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:275 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:277 msgid "Emulsions diverses" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:611 --- 7434,7443 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:246 msgid "Emulsion:" ! msgstr "軟片感光乳劑性質:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:275 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:277 msgid "Emulsions diverses" ! msgstr "不詳" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:611 *************** *** 7910,7916 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:171 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:173 - #, fuzzy msgid "Faible reduction" ! msgstr "複製品" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:368 --- 7920,7925 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:171 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:173 msgid "Faible reduction" ! msgstr "低縮率" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:368 *************** *** 8489,8500 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:292 - #, fuzzy msgid "Generation (copies):" ! msgstr "一般備註:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:321 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:323 msgid "Generations diverses" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:99 --- 8498,8508 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:292 msgid "Generation (copies):" ! msgstr "軟片版類別 (generation):" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:321 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:323 msgid "Generations diverses" ! msgstr "混合" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:99 *************** *** 9227,9231 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:344 msgid "Il ne s'agit pas d'un support de securite" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:1087 --- 9235,9239 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:344 msgid "Il ne s'agit pas d'un support de securite" ! msgstr "非安全軟片基底" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:1087 *************** *** 11783,11787 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:50 msgid "Micro opaque" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_106.tmpl:44 --- 11791,11795 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:50 msgid "Micro opaque" ! msgstr "不透明微縮片 (micro opaque)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_106.tmpl:44 *************** *** 11793,11817 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:40 msgid "Microfiche" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:43 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:45 msgid "Microfiche en cassette" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:33 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:35 msgid "Microfilm en bobine" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:23 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:25 msgid "Microfilm en cartouche" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:30 msgid "Microfilm en cassette" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:250 --- 11801,11825 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:40 msgid "Microfiche" ! msgstr "微縮單片 (microfiche)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:43 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:45 msgid "Microfiche en cassette" ! msgstr "卡式微縮單片 (microfiche cassette)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:33 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:35 msgid "Microfilm en bobine" ! msgstr "盤式微縮捲片 (microform reel)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:23 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:25 msgid "Microfilm en cartouche" ! msgstr "匣式微縮捲片 (microform cartridge)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:30 msgid "Microfilm en cassette" ! msgstr "卡式微縮捲片 (microform cassette)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:250 *************** *** 12076,12082 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:224 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:226 - #, fuzzy msgid "Monochrome" ! msgstr "電話 (住宅)" # NOTE Cf http://dimes.lins.fju.edu.tw/pub/bulletin-lac-60/dc-cmark.htm --- 12084,12089 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:224 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:226 msgid "Monochrome" ! msgstr "單色 (monochrome)" # NOTE Cf http://dimes.lins.fju.edu.tw/pub/bulletin-lac-60/dc-cmark.htm *************** *** 12368,12372 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:81 msgid "Negatif" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:40 --- 12375,12379 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:81 msgid "Negatif" ! msgstr "負片 (negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:40 *************** *** 13198,13202 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:178 msgid "Normale (16x - 30x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_110.tmpl:209 --- 13205,13209 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:178 msgid "Normale (16x - 30x)" ! msgstr "正常縮率(16–30倍)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_110.tmpl:209 *************** *** 13280,13284 **** "directory." msgstr "注意:罰款係由位於 misc 目錄內的 fines2.pl 計算。" ! #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:14 msgid "Note : the items are NOT exported by this tool" --- 13287,13291 ---- "directory." msgstr "注意:罰款係由位於 misc 目錄內的 fines2.pl 計算。" ! #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:14 msgid "Note : the items are NOT exported by this tool" *************** *** 14868,14872 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:91 msgid "Plusieurs polarites" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:318 --- 14875,14879 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:91 msgid "Plusieurs polarites" ! msgstr "含正負兩極 (mixed polarity)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:318 *************** *** 14923,14929 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:65 - #, fuzzy msgid "Polarite:" ! msgstr "印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:42 --- 14930,14935 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:65 msgid "Polarite:" ! msgstr "極性:" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:42 *************** *** 15027,15033 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:74 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:76 - #, fuzzy msgid "Positif" ! msgstr "職位" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:195 --- 15033,15038 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:74 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:76 msgid "Positif" ! msgstr "正片 (positive)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:195 *************** *** 15121,15125 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:303 msgid "Premiere generation (master)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:425 --- 15126,15130 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:303 msgid "Premiere generation (master)" ! msgstr "母片" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:425 *************** *** 15133,15137 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "唱片、錄音帶或圓型錄音筒類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 --- 15138,15142 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "唱片、錄音帶或圓型錄音筒類型 / 資料特殊類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 *************** *** 15424,15433 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:208 msgid "Rapport de reduction specifique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:162 - #, fuzzy msgid "Rapport de reduction:" ! msgstr "複製品" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:495 --- 15429,15437 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:208 msgid "Rapport de reduction specifique" ! msgstr "閱讀放大倍率" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:162 msgid "Rapport de reduction:" ! msgstr "縮率:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:495 *************** *** 15684,15696 **** msgstr "" - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:492 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:578 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:664 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:750 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:836 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:922 - msgid "Renseignement techniques sur la musique" - msgstr "音樂作品之技術資料" - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:505 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:507 --- 15688,15691 ---- *************** *** 15739,15747 **** --- 15734,15748 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:490 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:492 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:576 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:578 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:662 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:664 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:748 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:750 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:834 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:836 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:920 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:922 msgid "Renseignements techniques sur la musique" msgstr "音樂作品之技術資料" *************** *** 16484,16488 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:257 msgid "Sel d'argent" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/order.tmpl:9 --- 16485,16489 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:257 msgid "Sel d'argent" ! msgstr "銀鹽 (silver halide)" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/order.tmpl:9 *************** *** 17461,17465 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:328 msgid "Support de film:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1124 --- 17462,17466 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:328 msgid "Support de film:" ! msgstr "軟片基底:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1124 *************** *** 17470,17474 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:339 msgid "Support de securite" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1141 --- 17471,17475 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:339 msgid "Support de securite" ! msgstr "安全軟片基底" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1141 *************** *** 18394,18400 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:306 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:308 - #, fuzzy msgid "Tirage" ! msgstr "欄" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:34 --- 18395,18400 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:306 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:308 msgid "Tirage" ! msgstr "複製用母片 (printing master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:34 *************** *** 18743,18747 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:188 msgid "Tres elevee (61x - 90x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:23 --- 18743,18747 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:188 msgid "Tres elevee (61x - 90x)" ! msgstr "極高縮率(61–90 倍)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:23 *************** *** 19127,19131 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:193 msgid "Ultra elevee (91x -)" ! msgstr "" # NOTE 譯文更動 by Arthur --- 19127,19131 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:193 msgid "Ultra elevee (91x -)" ! msgstr "超高縮率(91倍–)" # NOTE 譯文更動 by Arthur *************** *** 19426,19430 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:267 msgid "Vesiculaire" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:132 --- 19426,19430 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:267 msgid "Vesiculaire" ! msgstr "重泡 (vesicular)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:132 *************** *** 20402,20406 **** #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, , c-format msgid "for branch = %s" msgstr "" --- 20402,20406 ---- #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, c-format msgid "for branch = %s" msgstr "" *************** *** 20645,20664 **** msgstr "下限*" - #. For the first occurrence, - #. SCRIPT - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl:111 - #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - #, fuzzy - msgid "mandatory fields empty (see bold subfields)" - msgstr "個必備欄位沒有填寫(見粗體的分欄)" - - #. For the first occurrence, - #. SCRIPT - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 - #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - msgid "mandatory tags empty" - msgstr "個必備欄沒有填寫" - #: ../../koha-tmpl/intranet-tmpl/default/en/help/search.marc/search.tmpl:20 msgid "means : find biblio that have a" --- 20645,20648 ---- *************** *** 21950,21953 **** --- 21934,21940 ---- #~ msgstr "關係*" + #~ msgid "Renseignement techniques sur la musique" + #~ msgstr "音樂作品之技術資料" + #~ msgid "Rep" #~ msgstr "可重覆" From acli at users.sourceforge.net Mon Jan 24 09:12:49 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 00:12:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_116.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9345 Modified Files: Tag: rel_2_2 unimarc_field_116.tmpl Log Message: Disambiguation for CMARC Index: unimarc_field_116.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** unimarc_field_116.tmpl 7 Jun 2004 09:50:40 -0000 1.1 --- unimarc_field_116.tmpl 24 Jan 2005 08:12:31 -0000 1.1.2.1 *************** *** 219,223 ****
        Couleur
        Couleur: Subtitle: ! Author:
        Additional Author:
        Published by : --- 47,51 ----
        Subtitle: ! Author:
        Additional Author:
        Published by : *************** *** 53,67 **** , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: --- 53,67 ---- , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: From oleonard at users.sourceforge.net Mon Jan 24 23:12:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:12:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-detail.tmpl,1.15,1.16 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25326/koha-tmpl/opac-tmpl/css/en Modified Files: opac-detail.tmpl Log Message: Moving position of relative to
        to prevent unwanted whitespace for empty elements. Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-detail.tmpl 3 Jan 2005 11:09:33 -0000 1.15 --- opac-detail.tmpl 24 Jan 2005 22:11:54 -0000 1.16 *************** *** 46,51 ****
        ! Subtitle: ! Author:
        Additional Author:
        Published by : --- 46,51 ----
        ! Subtitle:
        ! Author:
        Additional Author:
        Published by : *************** *** 53,67 **** , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: --- 53,67 ---- , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: From oleonard at users.sourceforge.net Mon Jan 24 23:52:34 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:52:34 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-addbookbybiblionumber.tmpl,NONE,1.1 opac-serial-issues.tmpl,NONE,1.1 opac-ISBDdetail.tmpl,1.1,1.2 opac-MARCdetail.tmpl,1.1,1.2 opac-detail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2852/koha-tmpl/opac-tmpl/npl/en Modified Files: opac-ISBDdetail.tmpl opac-MARCdetail.tmpl opac-detail.tmpl Added Files: opac-addbookbybiblionumber.tmpl opac-serial-issues.tmpl Log Message: Synching with default tempalte, other cosmetic changes --- NEW FILE ---

        Add book to bookshelf

        Select bookshelf

        or add to a new bookshelf

        ">

        --- NEW FILE --- Catalog -- Subscription Details

        Subscription Details

        Details:

        It began on and is issued every day week 2 weeks 3 weeks month 2 months 3 months quarter 2 quarters year 2 years on Monday Tuesday Wednesday Thursday Friday Saturday Sunday for issues weeks months since

        Notes:
        Issues summary
        " />

        Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-ISBDdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-ISBDdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-ISBDdetail.tmpl 24 Jan 2005 22:51:51 -0000 1.2 *************** *** 3,26 **** ! /includes/marc-editor.css"> ! !
        !

        ISBD :

        --- 3,28 ---- ! !
        !

        ISBD

        !

        ! !
        ! ! " /> !
        ! ! !
        " />
        ! !
        " />
        !
        " />'); return false;"/>
        ! !
        " />'); return false;" />
        ! !
        '); return false;" value="Add to Book Bag" />
        !
        Index: opac-MARCdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-MARCdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-MARCdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-MARCdetail.tmpl 24 Jan 2005 22:51:52 -0000 1.2 *************** *** 6,22 ****

        MARC View

        !
        ! " />
        !
        " /> --> !
        " />
        ! " />'); return false;"/> --> !
        '); return false;" value="Add to Book Bag" />
        --- 6,22 ----

        MARC View

        !
        ! " /> ! " /> --> !
        " /> !
        " /> !
        '); return false;" value="Add to Book Bag" />
        *************** *** 120,124 ****
        ! --- 120,124 ----
        Copies
        ! *************** *** 135,139 **** --- 135,143 ---- +
        Copies
        + +
        No copies available.
        +
        Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-detail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-detail.tmpl 24 Jan 2005 22:51:52 -0000 1.2 *************** *** 35,43 ****
        Notes:
        Subject(s): ! : "> !
        --- 35,41 ----
        Notes:
        Subject(s):">
        *************** *** 72,86 ****
        !
        ! " />
        !
        ! " /> --> ! " /> --> ! " />'); return false;"/> -->
        '); return false;" value="Add to Book Bag" />
        --- 70,87 ---- !
        ! " />
        ! !
        " />
        !
        " />
        ! !
        " />'); return false;"/>
        ! !
        " />'); return false;" />
        '); return false;" value="Add to Book Bag" />
        *************** *** 112,115 **** --- 113,119 ----
        No copies available.
        + +

        This is a serial subscription (There are subscriptions associated with this title). You can see which " title="Serial issues">Issues we have and don't have

        +
    From oleonard at users.sourceforge.net Mon Jan 24 23:54:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:54:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en/includes opac.css,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3261/koha-tmpl/opac-tmpl/npl/en/includes Modified Files: opac.css Log Message: Adding styles for more input buttons Index: opac.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/includes/opac.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac.css 20 Oct 2004 19:15:06 -0000 1.1 --- opac.css 24 Jan 2005 22:54:02 -0000 1.2 *************** *** 518,521 **** --- 518,533 ---- } + input.isbd { + background-image: url(../images/isbd.gif); + } + + input.shelf { + background-image: url(../images/addtoshelf.gif); + } + + input.reserve { + background-image: url(../images/placereserve.gif); + } + .title { font-style : italic; From oleonard at users.sourceforge.net Mon Jan 24 23:55:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:55:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en/images addtoshelf.gif,NONE,1.1 isbd.gif,NONE,1.1 placereserve.gif,NONE,1.1 addtobasket.gif,1.1,1.2 basket.gif,1.1,1.2 clearbasket.gif,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3485/koha-tmpl/opac-tmpl/npl/en/images Modified Files: addtobasket.gif basket.gif clearbasket.gif Added Files: addtoshelf.gif isbd.gif placereserve.gif Log Message: Adding and updating input button images --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a Index: addtobasket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/addtobasket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsVA8MFf and /tmp/cvsuQkGMD differ Index: basket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/basket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsYU6vAC and /tmp/cvsuauCKd differ Index: clearbasket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/clearbasket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvs4fJPY7 and /tmp/cvsOQuiCM differ From acli at users.sourceforge.net Tue Jan 25 04:47:04 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 19:47:04 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.8,1.4.2.9 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25498 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.8 retrieving revision 1.4.2.9 diff -C2 -r1.4.2.8 -r1.4.2.9 *** default_intranet_zh_TW.po 24 Jan 2005 09:31:17 -0000 1.4.2.8 --- default_intranet_zh_TW.po 25 Jan 2005 03:46:58 -0000 1.4.2.9 *************** *** 25,29 **** msgid "" msgstr "" ! "Project-Id-Version: Koha INTRANET 2.1cvs\n" "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" --- 25,29 ---- msgid "" msgstr "" ! "Project-Id-Version: Koha INTRANET 2.2.1cvs\n" "POT-Creation-Date: 2005-01-24 02:10-0500\n" [...1111 lines suppressed...] - #, fuzzy msgid "Overdue charges" ! msgstr "過期圖書資料" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:6 --- 13865,13870 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:14 msgid "Overdue charges" ! msgstr "過期罰款" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:6 *************** *** 13956,13960 **** # NOTE 字義係由Simon Blake在#koha提供 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/recieve.tmpl:37 - #, fuzzy msgid "P&P" msgstr "運費" --- 13895,13898 ---- From acli at users.sourceforge.net Tue Jan 25 05:54:36 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 20:54:36 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_100.tmpl,1.3,1.3.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6781 Modified Files: Tag: rel_2_2 unimarc_field_100.tmpl Log Message: Spelling correction Index: unimarc_field_100.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** unimarc_field_100.tmpl 7 Jun 2004 09:46:36 -0000 1.3 --- unimarc_field_100.tmpl 25 Jan 2005 04:54:33 -0000 1.3.2.1 *************** *** 304,308 **** SELECTED>local(municipal, etc.) ! --- 304,308 ---- SELECTED>local(municipal, etc.) ! From acli at users.sourceforge.net Tue Jan 25 05:57:34 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 20:57:34 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.9,1.4.2.10 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7379 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update, mostly unimarc tag 100 related Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.9 retrieving revision 1.4.2.10 diff -C2 -r1.4.2.9 -r1.4.2.10 *** default_intranet_zh_TW.po 25 Jan 2005 03:46:58 -0000 1.4.2.9 --- default_intranet_zh_TW.po 25 Jan 2005 04:57:26 -0000 1.4.2.10 *************** *** 2971,2977 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1382 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1384 - #, fuzzy msgid "Allegorie" ! msgstr "類別" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:58 --- 2971,2976 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1382 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1384 [...980 lines suppressed...] #. INPUT type=submit --- 20732,20736 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:50 msgid "reproduction" ! msgstr "重印本、影印本、影鈔本、翻印本" #. INPUT type=submit *************** *** 20799,20803 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:249 msgid "scolaire" ! msgstr "" # NOTE「See」中文譯「見」,「See also」中文譯「參見」,請勿改動 --- 20783,20787 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:249 msgid "scolaire" ! msgstr "學齡兒童,5-10 歲" # NOTE「See」中文譯「見」,「See also」中文譯「參見」,請勿改動 From acli at users.sourceforge.net Tue Jan 25 06:31:59 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 21:31:59 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.10,1.4.2.11 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14192 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.10 retrieving revision 1.4.2.11 diff -C2 -r1.4.2.10 -r1.4.2.11 *** default_intranet_zh_TW.po 25 Jan 2005 04:57:26 -0000 1.4.2.10 --- default_intranet_zh_TW.po 25 Jan 2005 05:31:53 -0000 1.4.2.11 *************** *** 551,555 **** #, c-format msgid "%s or thesaurus: %s or plugin: %s" ! msgstr "" #. %1$s: TMPL_VAR name=authorised_value --- 551,555 ---- #, c-format msgid "%s or thesaurus: %s or plugin: %s" ! msgstr "%s 或同義字典:%s 或模組:%s" #. %1$s: TMPL_VAR name=authorised_value *************** *** 814,818 **** #, c-format msgid "(defined from suggestion #%s)" ! msgstr "" #. %1$s: TMPL_VAR name=authtypecode --- 814,818 ---- #, c-format msgid "(defined from suggestion #%s)" ! msgstr "(定義由第 %s 號新書建議取得)" #. %1$s: TMPL_VAR name=authtypecode *************** *** 1430,1433 **** --- 1430,1435 ---- " ISBD Add to shelf Print " msgstr "" + " 修改書目 修改圖書資料 移除 一般 " + " ISBD 新增至虛擬書架 列印 " #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:4 *************** *** 1439,1449 **** #, c-format msgid " Normal MARC Add to shelf Print " ! msgstr "" #. %1$s: TMPL_VAR name=count #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl:11 ! #, fuzzy, c-format msgid " Print %s biblios" ! msgstr "查看帳戶 繳交罰款" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl:29 --- 1441,1451 ---- #, c-format msgid " Normal MARC Add to shelf Print " ! msgstr " 一般 MARC 新增至虛擬書架 列印 " #. %1$s: TMPL_VAR name=count #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl:11 ! #, c-format msgid " Print %s biblios" ! msgstr " 列印 %s 個書目" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl:29 *************** *** 1460,1466 **** #. %2$s: TMPL_VAR name=shelfbookcount #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:73 ! #, fuzzy, c-format msgid "%s (%s item(s))" ! msgstr "%s %s (%s)" # FIXME Looks like a SCANNER BUG --- 1462,1468 ---- #. %2$s: TMPL_VAR name=shelfbookcount #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:73 ! #, c-format msgid "%s (%s item(s))" ! msgstr "%s (%s 個書目)" # FIXME Looks like a SCANNER BUG *************** *** 1482,1486 **** #: ../../koha-tmpl/intranet-tmpl/default/en/includes/parameters-top.inc:36 #: ../../koha-tmpl/intranet-tmpl/default/en/includes/reports-top.inc:35 ! #, fuzzy, c-format msgid "" "Acquisitions Catalogue Circulation Members " --- 1484,1488 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/includes/parameters-top.inc:36 #: ../../koha-tmpl/intranet-tmpl/default/en/includes/reports-top.inc:35 ! #, c-format msgid "" "Acquisitions Catalogue Circulation Members " *************** *** 1488,1493 **** "Help" msgstr "" ! "主頁 目錄 讀者 採購 流通 報表 設定 關於" # XXX 暫譯,譯文有待改進 --- 1490,1496 ---- "Help" msgstr "" ! "採購 目錄 流通 讀者 " ! "權威 報表 設定 關於 " ! "說明" # XXX 暫譯,譯文有待改進 *************** *** 1497,1500 **** --- 1500,1504 ---- msgstr "人手建立發票  人手記入讀者貸方" + # FIXME spelling mistake in original #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:32 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:41 *************** *** 1511,1515 **** #, c-format msgid "Funds Auth value Currencies Printers" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:219 --- 1515,1519 ---- #, c-format msgid "Funds Auth value Currencies Printers" ! msgstr "書籍採購資金 容許值 貨幣 印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:219 *************** *** 1519,1525 **** "Printers" msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:206 ! #, fuzzy, c-format msgid "" "Home Catalogue Members Acquisitions " --- 1523,1531 ---- "Printers" msgstr "" + "書籍採購資金 容許值 同義字典 貨幣 " + "印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:206 ! #, c-format msgid "" "Home Catalogue Members Acquisitions " *************** *** 1527,1537 **** "About Help" msgstr "" ! "主頁 目錄 讀者 採購 流通 報表 設定 關於" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/circulation-top.inc:62 ! #, fuzzy, c-format msgid "Issues Returns Branch transfers" ! msgstr "借出 移交" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/about-top.inc:49 --- 1533,1544 ---- "About Help" msgstr "" ! "主頁 目錄 讀者 採購 " ! "流通 權威 報表 設定 " ! "有關 說明" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/circulation-top.inc:62 ! #, c-format msgid "Issues Returns Branch transfers" ! msgstr "借出 還書 移交" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/about-top.inc:49 *************** *** 1556,1577 **** #, c-format msgid "MARC ISBD Add to shelf Print" ! msgstr "" #. %1$s: TMPL_VAR name=surname #. %2$s: TMPL_VAR name=firstname #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:139 ! #, fuzzy, c-format msgid "Modify %s%s" ! msgstr "%s %s (%s)" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/subject.tmpl:21 ! #, fuzzy, c-format msgid "Previous Records Next Records" ! msgstr "下個讀者 還書" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:137 ! #, fuzzy, c-format msgid "Previous Next" ! msgstr "下個讀者 還書" #: ../../koha-tmpl/intranet-tmpl/default/en/members/pay.tmpl:41 --- 1563,1584 ---- #, c-format msgid "MARC ISBD Add to shelf Print" ! msgstr "MARC ISBD 新增至虛擬書架 列印" #. %1$s: TMPL_VAR name=surname #. %2$s: TMPL_VAR name=firstname #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:139 ! #, c-format msgid "Modify %s%s" ! msgstr "修改 %s%s" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/subject.tmpl:21 ! #, c-format msgid "Previous Records Next Records" ! msgstr "上一筆 下一筆" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:137 ! #, c-format msgid "Previous Next" ! msgstr "上一筆 下一筆" #: ../../koha-tmpl/intranet-tmpl/default/en/members/pay.tmpl:41 *************** *** 1589,1593 **** #, c-format msgid "Search Add member Add organisation" ! msgstr "" # NOTE 譯文更動 by Arthur --- 1596,1600 ---- #, c-format msgid "Search Add member Add organisation" ! msgstr "搜尋 新增讀者 新增機構對帳表:每日報告(昨天)" ! # NOTE 譯文更動 by Arthur #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:70 ! #, fuzzy, c-format msgid "View Basket

    " ! msgstr "查看購物籃

    %s - 訂單詳情

    " #: ../../koha-tmpl/intranet-tmpl/default/en/includes/cat-top.inc:51 --- 1618,1626 ---- msgstr "對帳表:每日報告(昨天)" ! # FIXME please fix the scanner :-( #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:70 ! #, c-format msgid "View Basket

    " ! msgstr "查看購物籃

    " #: ../../koha-tmpl/intranet-tmpl/default/en/includes/cat-top.inc:51 *************** *** 1622,1641 **** msgid "" "search Add biblio Serial Virtual shelves" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/error-top.inc:56 ! #, fuzzy, c-format msgid "" "search Virtual shelves Add biblio Cat " "maintenance" msgstr "" ! "快速查詢 機讀格式查詢 虛擬書架 新增書目 " ! "目錄維護" #. %1$s: TMPL_VAR name=dateaccessioned #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:61 ! #, fuzzy, c-format msgid " Accession Date: %s" ! msgstr "登錄日期:%s" # NOTE 譯文更動 by Arthur --- 1629,1647 ---- msgid "" "search Add biblio Serial Virtual shelves" ! msgstr "查詢 新增書目 期刊 虛擬書架" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/error-top.inc:56 ! #, c-format msgid "" "search Virtual shelves Add biblio Cat " "maintenance" msgstr "" ! "查詢 虛擬書架 新增書目 目錄維護" #. %1$s: TMPL_VAR name=dateaccessioned #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:61 ! #, c-format msgid " Accession Date: %s" ! msgstr "登錄日期:%s" # NOTE 譯文更動 by Arthur *************** *** 1693,1699 **** #. %2$s: TMPL_VAR name=genprname #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:11 ! #, fuzzy, c-format msgid "Branch: %s   Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" #. For the first occurrence, --- 1699,1705 ---- #. %2$s: TMPL_VAR name=genprname #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:11 ! #, c-format msgid "Branch: %s   Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" #. For the first occurrence, *************** *** 1702,1715 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:13 #: ../../koha-tmpl/intranet-tmpl/default/en/circ/returns.tmpl:6 ! #, fuzzy, c-format msgid "Branch: %s, Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" # FIXME BUG in English template #. %1$s: TMPL_VAR name=wthdrawn #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:64 ! #, fuzzy, c-format msgid "Cancelled: %s" ! msgstr "已註銷:%s" #. For the first occurrence, --- 1708,1721 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:13 #: ../../koha-tmpl/intranet-tmpl/default/en/circ/returns.tmpl:6 ! #, c-format msgid "Branch: %s, Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" # FIXME BUG in English template #. %1$s: TMPL_VAR name=wthdrawn #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:64 ! #, c-format msgid "Cancelled: %s" ! msgstr "已註銷:%s" #. For the first occurrence, *************** *** 1759,1765 **** #. %1$s: TMPL_VAR name=date_due #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:53 ! #, fuzzy, c-format msgid "Date Due: %s" ! msgstr "日期:%s" # XXX inconsistency? --- 1765,1771 ---- #. %1$s: TMPL_VAR name=date_due #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:53 ! #, c-format msgid "Date Due: %s" ! msgstr "應歸還日期:%s" # XXX inconsistency? *************** *** 1794,1797 **** --- 1800,1804 ---- "improved ldap support)" msgstr "" + "EMN (Ecole des Mines de Nantes)(新書建議、統計模組及改良後的 LDAP 支援)" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:19 *************** *** 1803,1811 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:114 msgid "Enter Item Barcode: Item Barcode:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:51 msgid "Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)" ! msgstr "" #. %1$s: TMPL_VAR name=biblioitemnumber --- 1810,1818 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:114 msgid "Enter Item Barcode: Item Barcode:" ! msgstr "請輸入圖書資料之條碼:圖書資料之條碼:" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:51 msgid "Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)" ! msgstr "Esiee 學院 (Jérome Vizcaino、Michel Lerenard、Pierre Cauchois)" #. %1$s: TMPL_VAR name=biblioitemnumber From joshferraro at users.sourceforge.net Tue Jan 25 17:53:31 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 08:53:31 -0800 Subject: [Koha-cvs] CVS: koha/C4 Amazon.pm,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2165 Added Files: Amazon.pm Log Message: The Amazon module allows libraries to deliver amazon content to the opac --- NEW FILE --- package C4::Amazon; # Copyright 2004-2005 Joshua Ferraro (jmf at kados dot org) # # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA # # This module dynamically pulls amazon content into Koha. It does not # store the data in Koha's database. You'll need to get a developer's key # as well as an associate's tag to use it. # FIXME: need to write up more docs. # use strict; require Exporter; use vars qw($VERSION @ISA @EXPORT); $VERSION = 0.01; @ISA = qw(Exporter); @EXPORT = qw( &get_amazon_details ); sub get_amazon_details { my ( $isbn ) = @_; # insert your dev key here my $dev_key=''; # insert your associates tag here my $af_tag=''; my $asin=$isbn; # old way from command line: shift @ARGV or die "Usage:perl amazon_http.ol \n"; #my $url = "http://xml.amazon.com/onca/xml3?t=" . $af_tag . # "&dev-t=" . $dev_key . # "&type=heavy&f=xml&" . # "AsinSearch=" . $asin; my $url = "http://xml.amazon.com/onca/xml3?t=$dev_key&dev-t=$af_tag&type=heavy&f=xml&AsinSearch=" . $asin; #Here's an example asin for the book "Cryptonomicon" #0596005423"; use XML::Simple; use LWP::Simple; my $content = get($url); die "could not regrieve $url" unless $content; my $xmlsimple = XML::Simple->new(); my $response = $xmlsimple->XMLin($content, forcearray => [ qw(Details Product AvgCustomerRating CustomerReview) ], ); return $response; #foreach my $result (@{$response->{Details}}){ # my $product_description = $result->{ProductDescription}; # my $image = $result->{ImageUrlMedium}; # my $price = $result->{ListPrice}; # my $reviews = $result->{ # return $result; #} } From joshferraro at users.sourceforge.net Tue Jan 25 17:58:20 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 08:58:20 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-detail.pl,1.14,1.15 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3544 Modified Files: opac-detail.pl Log Message: Adds amazon support to opac-detail.pl Index: opac-detail.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-detail.pl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-detail.pl 18 Aug 2004 16:44:37 -0000 1.14 --- opac-detail.pl 25 Jan 2005 16:58:18 -0000 1.15 *************** *** 10,14 **** use C4::Biblio; use C4::SearchMarc; ! my $query=new CGI; my ($template, $borrowernumber, $cookie) --- 10,14 ---- use C4::Biblio; use C4::SearchMarc; ! use C4::Amazon; my $query=new CGI; my ($template, $borrowernumber, $cookie) *************** *** 73,76 **** subscriptionid => $subscriptionid, ); ! output_html_with_http_headers $query, $cookie, $template->output; --- 73,103 ---- subscriptionid => $subscriptionid, ); ! ## get Amazon.com stuff ! my $isbn=$dat->{'isbn'}; ! my $amazon_details = &get_amazon_details($isbn); ! foreach my $result (@{$amazon_details->{Details}}){ ! $template->param(item_description => $result->{ProductDescription}); ! $template->param(image => $result->{ImageUrlMedium}); ! $template->param(list_price => $result->{ListPrice}); ! $template->param(amazon_url => $result->{url}); ! } ! ! my @products; ! my @reviews; ! for my $details( @{ $amazon_details->{ Details } } ) { ! next unless $details->{ SimilarProducts }; ! for my $product ( @{ $details->{ SimilarProducts }->{ Product } } ) { ! push @products, +{ Product => $product }; ! } ! next unless $details->{ Reviews }; ! for my $product ( @{ $details->{ Reviews }->{ AvgCustomerRating } } ) { ! $template->param(rating => $product); ! } ! for my $reviews ( @{ $details->{ Reviews }->{ CustomerReview } } ) { ! push @reviews, +{ Summary => $reviews->{ Summary }, Comment => $reviews->{ Comment }, }; ! } ! } ! $template->param( SIMILAR_PRODUCTS => \@products ); ! $template->param( REVIEWS => \@reviews ); ! ## End of Amazon Stuff output_html_with_http_headers $query, $cookie, $template->output; From joshferraro at users.sourceforge.net Tue Jan 25 18:13:27 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 09:13:27 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-detail.pl,1.15,1.16 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8329 Modified Files: opac-detail.pl Log Message: makes opac-detail.pl's amazon stuff just a comment Index: opac-detail.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-detail.pl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-detail.pl 25 Jan 2005 16:58:18 -0000 1.15 --- opac-detail.pl 25 Jan 2005 17:13:24 -0000 1.16 *************** *** 73,77 **** subscriptionid => $subscriptionid, ); ! ## get Amazon.com stuff my $isbn=$dat->{'isbn'}; my $amazon_details = &get_amazon_details($isbn); --- 73,78 ---- subscriptionid => $subscriptionid, ); ! ## Amazon.com stuff ! =head my $isbn=$dat->{'isbn'}; my $amazon_details = &get_amazon_details($isbn); *************** *** 101,103 **** --- 102,105 ---- $template->param( REVIEWS => \@reviews ); ## End of Amazon Stuff + =cut output_html_with_http_headers $query, $cookie, $template->output; From joshferraro at users.sourceforge.net Tue Jan 25 18:23:35 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 09:23:35 -0800 Subject: [Koha-cvs] CVS: koha/C4 Amazon.pm,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11210 Modified Files: Amazon.pm Log Message: Added some minimal docs to Amazon.pm Index: Amazon.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Amazon.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Amazon.pm 25 Jan 2005 16:53:28 -0000 1.1 --- Amazon.pm 25 Jan 2005 17:23:33 -0000 1.2 *************** *** 23,27 **** # FIXME: need to write up more docs. # ! use strict; require Exporter; --- 23,38 ---- # FIXME: need to write up more docs. # ! # To use this module you need to do three things: ! # 1. get a dev key and associate tag from Amazon ! # 2. uncomment the Amazon stuff in opac-detail.pl ! # 3. add the template variables to opac-detail.tmpl ! # here's what's available: ! # ProductDescription ! # ImageUrlMedium ! # ListPrice ! # url ! # loop SimilarProducts (Product) ! # loop Reviews (rating, Summary) ! # use strict; require Exporter; From oleonard at users.sourceforge.net Tue Jan 25 22:29:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 25 Jan 2005 13:29:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-addbookbybiblionumber.tmpl,NONE,1.1.2.1 opac-detailprint.tmpl,NONE,1.1.2.1 opac-serial-issues.tmpl,NONE,1.1.2.1 opac-ISBDdetail.tmpl,1.1,1.1.2.1 opac-detail.tmpl,1.1,1.1.2.1 opac-search.tmpl,1.1,1.1.2.1 opac-searchresults.tmpl,1.1,1.1.2.1 opac-user.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5141/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-ISBDdetail.tmpl opac-detail.tmpl opac-search.tmpl opac-searchresults.tmpl opac-user.tmpl Added Files: Tag: rel_2_2 opac-addbookbybiblionumber.tmpl opac-detailprint.tmpl opac-serial-issues.tmpl Log Message: Many updates, corrections, etc. to bring in line with default (css) template --- NEW FILE ---

    Add book to bookshelf

    Select bookshelf

    or add to a new bookshelf

    ">

    --- NEW FILE ---
    BIBLIO RECORD



    Published by : in , ,
    Collection:
    Subject:
    Year :
    Notes:
    Unititle:
    Dewey: ">
    Classification:
    LCCN:
    URL: ">
    ISBN:
    ,
    --- NEW FILE ---

    Issues for a subscription

    " class="button catalogue">Back to biblio

    Subscription information for

    It began on and is issued every day week 2 weeks 3 weeks month 2 months 3 months quarter 2 quarters year 2 years on Monday Tuesday Wednesday Thursday Friday Saturday Sunday for issues weeks months since

    Issues summary

    Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-ISBDdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-ISBDdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-ISBDdetail.tmpl 25 Jan 2005 21:28:57 -0000 1.1.2.1 *************** *** 3,26 **** ! /includes/marc-editor.css"> ! !
    !

    ISBD :

    --- 3,28 ---- ! !
    !

    ISBD

    !

    ! ! ! ! " /> ! ! ! !
    " />
    ! !
    " />
    !
    " />'); return false;"/>
    ! !
    " />'); return false;" />
    ! !
    '); return false;" value="Add to Book Bag" />
    !
    Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-detail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-detail.tmpl 25 Jan 2005 21:28:58 -0000 1.1.2.1 *************** *** 1,60 **** ! Catalog -- Details for: ! ! ! ! !
    ! !
    ! .jpg" alt="Book Cover Image" /> !
    ! /Display for NPL -->

    !

    By

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> !
    Subtitle:
    Format:
    Copyright:
    ISBN:
    LCCN:
    Publisher:
    Details:
    Notes:
    Subject(s): ! : "> !
    ! ! ! --- 1,90 ---- ! ! /includes/marc-editor.css"> ! !
    ! !

    ! !

    !

    !
    Detailed notes:
      ! -
    Related links:
    ! ! ! ! + + +
    ! (record ) !
    + Subtitle:
    + Author:
    + Additional Author:
    + Published by : + in + , + ,
    + ISBN:
    + Collection:
    + Subject(s): + + ">, +
    + Year :
    + Notes:
    + Unititle:
    + Dewey:
    + URL: ">
    + Item type :
    + Total Number of Items: +
    + + + + + + + ! *************** *** 62,118 **** ! -
    Detailed notes:
      !
    No Detailed Notes
    Related links:
    - - -
    - - " /> -
    -
    - " /> --> ! " /> --> ! ! " />'); return false;"/> --> ! !
    '); return false;" value="Add to Book Bag" />
    !
    ! ! !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! !
    Type/FormatCall NumberLocationDue DateLast Seen
    /images/.gif" align="left" title="" alt="" />
    ! !
    No copies available.
    ! !
    ! ! ! --- 92,143 ---- ! ! No Related Links !

    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Item
    LocationDate DueLast SeenBarcode
    ()
    WebsiteOnlineAvailable 
    ! !

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

    ! !
    ! Index: opac-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-search.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-search.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-search.tmpl 25 Jan 2005 21:28:59 -0000 1.1.2.1 *************** *** 11,15 ****
    !
    " /> --- 11,15 ----
    ! ! ! ! ! ! ! ! ! ! ! ! !
    " /> *************** *** 17,53 **** !
    !
    !
    --- 17,50 ---- !
    !
    !
    ! ! !
    ! !
    *************** *** 55,59 ****
    !

    Results per page :

    ! ! ! ! ! ! ! ! !
    Other options:
    ! ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !

    Results per page : - -

    - - --- 4,12 ---- ! ! " /> ! ! /includes/opac.css" /> ! <!--TMPL_VAR name="LibraryName"--> *************** *** 20,24 **** var MSG_NO_RECORD_ADDED = _("No biblio added"); function Dopop(link) { ! newin=window.open(link,'width=500,height=400,toolbar=false,scrollbars=yes'); } --- 24,28 ---- var MSG_NO_RECORD_ADDED = _("No biblio added"); function Dopop(link) { ! newin=window.open(link,'popup','width=500,height=400,toolbar=false,scrollbars=yes'); } From tipaul at users.sourceforge.net Mon Jan 3 12:08:38 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:08:38 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en/includes opac.css,1.16,1.17 marc-editor.css,1.3,NONE Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23824/koha-tmpl/opac-tmpl/css/en/includes Modified Files: opac.css Removed Files: marc-editor.css Log Message: merging opac.css and marc-editor.css, that is used in MARC view. Index: opac.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac.css,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** opac.css 15 Dec 2004 16:03:55 -0000 1.16 --- opac.css 3 Jan 2005 11:08:36 -0000 1.17 *************** *** 355,357 **** padding-left:8pt; float:left; ! } \ No newline at end of file --- 355,403 ---- padding-left:8pt; float:left; ! } ! ! /* for MARC view */ ! 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; ! } --- marc-editor.css DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 12:09:36 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:09:36 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-shelves.pl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23967/opac Modified Files: opac-shelves.pl Log Message: synch'ing virtual shelves management in opac with the librarian one, that has more features Index: opac-shelves.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-shelves.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** opac-shelves.pl 12 Nov 2004 16:27:33 -0000 1.2 --- opac-shelves.pl 3 Jan 2005 11:09:34 -0000 1.3 *************** *** 34,42 **** my $env; my $query = new CGI; my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "opac-shelves.tmpl", query => $query, type => "opac", ! authnotrequired => 1, }); --- 34,47 ---- my $env; my $query = new CGI; + my $headerbackgroundcolor='#663266'; + my $circbackgroundcolor='#555555'; + my $circbackgroundcolor='#550000'; + my $linecolor1='#bbbbbb'; + my $linecolor2='#dddddd'; my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "opac-shelves.tmpl", query => $query, type => "opac", ! authnotrequired => 0, }); *************** *** 58,80 **** $template->param({ loggedinuser => $loggedinuser, ! LibraryName => C4::Context->preference("LibraryName"), ! }); SWITCH: { ! if ($query->param('viewshelf')) { viewshelf($query->param('viewshelf')); last SWITCH;} ! if ($query->param('shelves')) { shelves(); last SWITCH;} } ($shelflist) = GetShelfList($loggedinuser,2); # rebuild shelflist in case a shelf has been added ! my $color=1; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! $line{'color'}= 1 if ($color eq 1); ! $color = -$color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'}; $line{'shelfbookcount'}=$shelflist->{$element}->{'count'}; $line{'canmanage'} = ShelfPossibleAction($loggedinuser,$element,'manage'); ; push (@shelvesloop, \%line); --- 63,108 ---- $template->param({ loggedinuser => $loggedinuser, ! headerbackgroundcolor => $headerbackgroundcolor, ! circbackgroundcolor => $circbackgroundcolor }); SWITCH: { ! if ($query->param('op') eq 'modifsave') { ! ModifShelf($query->param('shelfnumber'),$query->param('shelfname'),$loggedinuser,$query->param('category')); ! last SWITCH; ! } ! if ($query->param('op') eq 'modif') { ! my ($shelfnumber,$shelfname,$owner,$category) = GetShelf($query->param('shelf')); ! $template->param(edit => 1, ! shelfnumber => $shelfnumber, ! shelfname => $shelfname, ! "category$category" => 1); ! # editshelf($query->param('shelf')); ! last SWITCH; ! } ! if ($query->param('viewshelf')) { ! viewshelf($query->param('viewshelf')); ! last SWITCH; ! } ! if ($query->param('shelves')) { ! shelves(); ! last SWITCH; ! } } ($shelflist) = GetShelfList($loggedinuser,2); # rebuild shelflist in case a shelf has been added ! my $color=''; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); ! $line{'color'}= $color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'}; + $line{"category".$shelflist->{$element}->{'category'}} = 1; + $line{'mine'} = 1 if $shelflist->{$element}->{'owner'} eq $loggedinuser; $line{'shelfbookcount'}=$shelflist->{$element}->{'count'}; $line{'canmanage'} = ShelfPossibleAction($loggedinuser,$element,'manage'); + $line{'firstname'}=$shelflist->{$element}->{'firstname'} unless $shelflist->{$element}->{'owner'} eq $loggedinuser; + $line{'surname'}=$shelflist->{$element}->{'surname'} unless $shelflist->{$element}->{'owner'} eq $loggedinuser; ; push (@shelvesloop, \%line); *************** *** 84,87 **** --- 112,123 ---- output_html_with_http_headers $query, $cookie, $template->output; + # sub editshelf { + # my ($shelfnumber) = @_; + # my ($shelfnumber,$shelfname,$owner,$category) = GetShelf($shelfnumber); + # $template->param(edit => 1, + # shelfnumber => $shelfnumber, + # shelfname => $shelfname, + # "category$category" => 1); + # } sub shelves { if (my $newshelf=$query->param('addshelf')) { *************** *** 107,116 **** $template->param(paramsloop => \@paramsloop); my ($shelflist) = GetShelfList($loggedinuser,2); ! my $color=1; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! $line{'color'}=1 if ($color eq 1); ! $color = -$color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'} ; --- 143,152 ---- $template->param(paramsloop => \@paramsloop); my ($shelflist) = GetShelfList($loggedinuser,2); ! my $color=''; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); ! $line{'color'}=$color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'} ; *************** *** 129,143 **** my ($itemlist) = GetShelfContents($env, $shelfnumber); my $item=''; ! my $color=1; my @itemsloop; foreach $item (sort {$a->{'barcode'} cmp $b->{'barcode'}} @$itemlist) { my %line; ! $line{'color'}=1 if ($color eq 1); ! $color = -$color; $line{'itemnumber'}=$item->{'itemnumber'}; $line{'barcode'}=$item->{'barcode'}; $line{'title'}=$item->{'title'}; $line{'author'}=$item->{'author'}; ! $line{'biblionumber'} = $item->{'biblionumber'}; push(@itemsloop, \%line); } --- 165,179 ---- my ($itemlist) = GetShelfContents($env, $shelfnumber); my $item=''; ! my $color=''; my @itemsloop; foreach $item (sort {$a->{'barcode'} cmp $b->{'barcode'}} @$itemlist) { my %line; ! ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); ! $line{'color'}=$color; $line{'itemnumber'}=$item->{'itemnumber'}; $line{'barcode'}=$item->{'barcode'}; $line{'title'}=$item->{'title'}; $line{'author'}=$item->{'author'}; ! $line{biblionumber} = $item->{biblionumber}; push(@itemsloop, \%line); } *************** *** 152,160 **** # # $Log$ ! # Revision 1.2 2004/11/12 16:27:33 tipaul ! # fixes for printing a biblio # ! # Revision 1.1 2004/03/15 15:02:19 tipaul ! # adding virtual shelves to opac # # Revision 1.1.2.1 2004/03/10 15:08:18 tipaul --- 188,209 ---- # # $Log$ ! # Revision 1.3 2005/01/03 11:09:34 tipaul ! # synch'ing virtual shelves management in opac with the librarian one, that has more features ! # ! # Revision 1.5 2004/12/16 11:30:57 tipaul ! # adding bookshelf features : ! # * create bookshelf on the fly ! # * modify a bookshelf name & status ! # ! # Revision 1.4 2004/12/15 17:28:23 tipaul ! # adding bookshelf features : ! # * create bookshelf on the fly ! # * modify a bookshelf (this being not finished, will commit the rest soon) ! # ! # Revision 1.3 2004/12/02 16:38:50 tipaul ! # improvement in book shelves # ! # Revision 1.2 2004/11/19 16:31:30 tipaul ! # bugfix for bookshelves not in official CVS # # Revision 1.1.2.1 2004/03/10 15:08:18 tipaul From tipaul at users.sourceforge.net Mon Jan 3 12:09:37 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:09:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-addbookbybiblionumber.tmpl,NONE,1.1 opac-detail.tmpl,1.14,1.15 opac-ISBDdetail.tmpl,1.3,1.4 opac-main.tmpl,1.15,1.16 opac-MARCdetail.tmpl,1.4,1.5 opac-shelves.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23967/koha-tmpl/opac-tmpl/css/en Modified Files: opac-detail.tmpl opac-ISBDdetail.tmpl opac-main.tmpl opac-MARCdetail.tmpl opac-shelves.tmpl Added Files: opac-addbookbybiblionumber.tmpl Log Message: synch'ing virtual shelves management in opac with the librarian one, that has more features --- NEW FILE ---

    Add book to bookshelf

    Select bookshelf

    or add to a new bookshelf

    ">

    Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-detail.tmpl 22 Nov 2004 16:18:11 -0000 1.14 --- opac-detail.tmpl 3 Jan 2005 11:09:33 -0000 1.15 *************** *** 3,11 ****
    " class="button catalogue"> ISBD ! " class="button"> ! MARC ')" class="button catalogue"> --- 3,17 ----
    + " class="button catalogue"> + Simple + + " class="button"> + Complete + " class="button catalogue"> ISBD ! ')" class="button catalogue"> ! Add to shelf ')" class="button catalogue"> Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** opac-ISBDdetail.tmpl 28 Nov 2004 08:58:04 -0000 1.3 --- opac-ISBDdetail.tmpl 3 Jan 2005 11:09:33 -0000 1.4 *************** *** 3,10 ****
    " class="button catalogue"> ! Normal " class="button"> ! MARC ')" class="button catalogue"> --- 3,16 ---- Index: opac-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-main.tmpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-main.tmpl 8 Dec 2004 10:26:32 -0000 1.15 --- opac-main.tmpl 3 Jan 2005 11:09:33 -0000 1.16 *************** *** 4,14 **** ! /includes/opac.css" /> <!--TMPL_VAR name="LibraryName"--> - --- 4,13 ---- ! ! " /> ! ! /includes/opac.css" /> ! <!--TMPL_VAR name="LibraryName"--> Index: opac-MARCdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-MARCdetail.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** opac-MARCdetail.tmpl 12 Nov 2004 16:28:10 -0000 1.4 --- opac-MARCdetail.tmpl 3 Jan 2005 11:09:33 -0000 1.5 *************** *** 1,20 **** - /includes/marc-editor.css"> --- 1,30 ---- Index: opac-shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-shelves.tmpl 15 Mar 2004 15:01:49 -0000 1.1 --- opac-shelves.tmpl 3 Jan 2005 11:09:33 -0000 1.2 *************** *** 2,160 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Contents of !
    ">">">">
    !
    ! Shelf list ! "> ! ! "> ! -
    - -
    - "> - - "> - - - - - -
    - Add a book by barcode in : - - - - "> - -
    -
    - !

    !

    !

    !

    Bookshelves

    ! ! ! ! - ! !
    !
    !

    ! Shelf list !

    !
    !
    !
    ! ! ! ! ! ! ! ! -
    Select Shelves to Delete !
    "> ! "> ! ( books) !

    !

    -
    -
    - - - - - - - - -
    - Add Shelf -
    -

    Name :

    -

    Owner : ">

    -

    Category : -

    -

  • a private bookshelf is managed by you & can be seen only by you.
  • -
  • A public can be seen by everybody, but managed only by you.
  • -
  • A free can be managed by any user.
  • -

    -
    -

    !
    !
    ! ! ! ! ! ! ! ! ! ! !
    ! Shelf List !
    ! ! ! ! "> ! ( books) ! !
    !

    Add or Remove Book Shelves !

    --- 2,189 ----
    !
    !

    ! !
    !

    Shelf content

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    deletebarcodetitleAuthor
    ">">">">">">
    ! "> ! ! "> ! ! ! ! Shelf list !
    !
    ! !
    !
    !

    Add a book by barcode

    ! "> ! ! "> ! ! ! "> ! !
    !
    +

    Bookshelves

    !

    !

    !

    !

    Select Shelves to Delete

    !
    ! !

    ! ! "> ( item(s)) !

    !

    !
    !
    !
    ! !

    Add Shelf

    !

    !

    ">

    !

    ! !

    !
    • a private bookshelf is managed by you & can be seen only by you.
    • !
    • A public can be seen by everybody, but managed only by you.
    • !
    • A free can be managed by any user.
    • !
    !

    ! ! back to shelf list !

    +
    +
    !
    !

    Shelf list

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Shelf nameCategoryContent sizeModify
    "> ! "> ! ! ! "> ! ! Private ! ! ! Public ! ! ! Free ! ! "> ! item(s) ! "> ! " class="button">Modify ! !
    !
    ! + + +
    +
    + +

    Modify shelf

    + "> +

    ">

    +

    ">

    +

    + +

    +

  • a private bookshelf is managed by you & can be seen only by you.
  • +
  • A public can be seen by everybody, but managed only by you.
  • +
  • A free can be managed by any user.
  • +

    +

    + +

    + +
    +
    +
    From tipaul at users.sourceforge.net Mon Jan 3 12:10:01 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:10:01 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-addbookbybiblionumber.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24046/opac Added Files: opac-addbookbybiblionumber.pl Log Message: --- NEW FILE --- #!/usr/bin/perl #script to provide bookshelf management # WARNING: This file uses 4-character tabs! # # $Header: /cvsroot/koha/koha/opac/opac-addbookbybiblionumber.pl,v 1.1 2005/01/03 11:09:59 tipaul Exp $ # # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA use strict; use C4::Search; use C4::Biblio; use CGI; use C4::Output; use C4::BookShelves; use C4::Circulation::Circ2; use C4::Auth; use C4::Interface::CGI::Output; use HTML::Template; my $env; my $query = new CGI; my $biblionumber = $query->param('biblionumber'); my $shelfnumber = $query->param('shelfnumber'); my $newbookshelf = $query->param('newbookshelf'); my $category = $query->param('category'); my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "opac-addbookbybiblionumber.tmpl", query => $query, type => "opac", authnotrequired => 0, }); my $x; # for trash ($x,$x,$shelfnumber) = AddShelf('',$newbookshelf,$loggedinuser,$category) if $newbookshelf; if ($shelfnumber) { &AddToShelfFromBiblio($env, $biblionumber, $shelfnumber); print "Content-Type: text/html\n\n"; exit; } else { my ( $bibliocount, @biblios ) = getbiblio($biblionumber); my ($shelflist) = GetShelfList($loggedinuser,3); my @shelvesloop; my %shelvesloop; foreach my $element (sort keys %$shelflist) { push (@shelvesloop, $element); $shelvesloop{$element} = $shelflist->{$element}->{'shelfname'}; } my $CGIbookshelves=CGI::scrolling_list( -name => 'shelfnumber', -values => \@shelvesloop, -labels => \%shelvesloop, -size => 1, -multiple => 0 ); $template->param(biblionumber => $biblionumber, title => $biblios[0]->{'title'}, author => $biblios[0]->{'author'}, CGIbookshelves => $CGIbookshelves, ); output_html_with_http_headers $query, $cookie, $template->output; } # $Log: opac-addbookbybiblionumber.pl,v $ # Revision 1.1 2005/01/03 11:09:59 tipaul # *** empty log message *** # # Local Variables: # tab-width: 4 # End: From tipaul at users.sourceforge.net Mon Jan 3 12:11:13 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:11:13 -0800 Subject: [Koha-cvs] CVS: koha/misc Install.pm,1.86,1.87 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24344/misc Modified Files: Install.pm Log Message: * rolling back lock_tables_privs = 'Y' during install stage (too many problems) The option is shown in bulkmacimport instead. Index: Install.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/Install.pm,v retrieving revision 1.86 retrieving revision 1.87 diff -C2 -r1.86 -r1.87 *** Install.pm 15 Dec 2004 14:39:21 -0000 1.86 --- Install.pm 3 Jan 2005 11:11:10 -0000 1.87 *************** *** 1772,1776 **** startsysout(); print system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into user (Host,User,Password) values ('$hostname','$user',password('$pass'))\"\;");#" ! system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv, index_priv, alter_priv,lock_tables_priv) values ('%','$database','$user','Y','Y','Y','Y','Y','Y','Y','Y','Y')\""); system("$mysqldir/bin/mysqladmin -u$mysqluser reload"); # Change to admin user login --- 1772,1776 ---- startsysout(); print system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into user (Host,User,Password) values ('$hostname','$user',password('$pass'))\"\;");#" ! system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv, index_priv, alter_priv) values ('%','$database','$user','Y','Y','Y','Y','Y','Y','Y','Y')\""); system("$mysqldir/bin/mysqladmin -u$mysqluser reload"); # Change to admin user login From tipaul at users.sourceforge.net Mon Jan 3 13:55:40 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:55:40 -0800 Subject: [Koha-cvs] CVS: koha/misc koha.mysql,1.9,1.10 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9571/misc Modified Files: koha.mysql Log Message: adding an index Index: koha.mysql =================================================================== RCS file: /cvsroot/koha/koha/misc/koha.mysql,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** koha.mysql 12 Nov 2004 16:39:48 -0000 1.9 --- koha.mysql 3 Jan 2005 12:55:22 -0000 1.10 *************** *** 925,929 **** # Structure de la table `marc_subfield_structure` # - CREATE TABLE marc_subfield_structure ( tagfield char(3) NOT NULL default '', --- 925,928 ---- *************** *** 945,949 **** PRIMARY KEY (frameworkcode,tagfield,tagsubfield), KEY tab (frameworkcode,tab), ! KEY kohafield (frameworkcode,kohafield) ) TYPE=MyISAM; # -------------------------------------------------------- --- 944,949 ---- PRIMARY KEY (frameworkcode,tagfield,tagsubfield), KEY tab (frameworkcode,tab), ! KEY kohafield (frameworkcode,kohafield), ! KEY kohafield_2 (kohafield) ) TYPE=MyISAM; # -------------------------------------------------------- From tipaul at users.sourceforge.net Mon Jan 3 13:56:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:56:32 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.31,1.32 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9753/admin Modified Files: marc_subfields_structure.pl Log Message: * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** marc_subfields_structure.pl 8 Dec 2004 10:41:38 -0000 1.31 --- marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 *************** *** 380,383 **** --- 380,384 ---- $row_data{hidden} = $results->[$i]{'hidden'}; $row_data{isurl} = $results->[$i]{'isurl'}; + $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; $row_data{bgcolor} = $toggle; From tipaul at users.sourceforge.net Mon Jan 3 13:57:24 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:57:24 -0800 Subject: [Koha-cvs] CVS: koha MARCdetail.pl,1.24,1.25 Message-ID: Update of /cvsroot/koha/koha In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9893 Modified Files: MARCdetail.pl Log Message: * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: MARCdetail.pl =================================================================== RCS file: /cvsroot/koha/koha/MARCdetail.pl,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** MARCdetail.pl 22 Dec 2004 10:14:43 -0000 1.24 --- MARCdetail.pl 3 Jan 2005 12:57:21 -0000 1.25 *************** *** 74,78 **** my $record =MARCgetbiblio($dbh,$bibid); - warn "=>".$record->as_formatted; # open template my ($template, $loggedinuser, $cookie) --- 74,77 ---- *************** *** 96,100 **** my @subfields_data; for (my $x_i=0;$x_i<=$#fields;$x_i++) { ! warn "$tabloop => $x_i"; # if tag <10, there's no subfield, use the "@" trick if ($fields[$x_i]->tag()<10) { --- 95,99 ---- my @subfields_data; for (my $x_i=0;$x_i<=$#fields;$x_i++) { ! # warn "$tabloop => $x_i"; # if tag <10, there's no subfield, use the "@" trick if ($fields[$x_i]->tag()<10) { *************** *** 116,119 **** --- 115,119 ---- my %subfield_data; $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{lib}; + $subfield_data{link}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{link}; if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{isurl}) { $subfield_data{marc_value}="$subf[$i][1]"; From tipaul at users.sourceforge.net Mon Jan 3 13:58:01 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:58:01 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools - New directory Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9933/misc/migration_tools Log Message: Directory /cvsroot/koha/koha/misc/migration_tools added to the repository From tipaul at users.sourceforge.net Mon Jan 3 13:59:51 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:59:51 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools buildLANG.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10247/misc/migration_tools Added Files: buildLANG.pl Log Message: Auto-build LANG authorized values --- NEW FILE --- #!/usr/bin/perl # script that rebuild thesaurus from biblio table. # delete FROM `marc_subfield_table` WHERE tag = "606" AND subfieldcode = 9; use strict; # Koha modules used # use MARC::File::USMARC; # use MARC::Record; # use MARC::Batch; use C4::Context; use C4::Biblio; use C4::AuthoritiesMarc; use Time::HiRes qw(gettimeofday); use Getopt::Long; my ( $fields, $number,$language) = ('',0); my ($version, $verbose, $test_parameter, $field,$delete,$subfields); GetOptions( 'h' => \$version, 'd' => \$delete, 't' => \$test_parameter, 's:s' => \$fields, 'v' => \$verbose, 'l:s' => \$language, ); if ($version or !$fields) { print < 'english', 'fre' => 'french' ); %codesiso = ( 'mis' => 'diverses', 'und' => 'inconnue', 'mul' => 'multilingue', 'ger' => 'allemand', 'eng' => 'anglais', 'ara' => 'arabe', 'arm' => 'armnien', 'baq' => 'basque', 'ber' => 'berbere', 'bre' => 'breton', 'bul' => 'bulgare', 'cat' => 'catalan', 'chi' => 'chinois', 'cro' => 'croate', 'dan' => 'danois', 'spa' => 'espagnol', 'esp' => 'espranto', 'fin' => 'finnois', 'fra' => 'franais ancien', 'fre' => 'franais', 'wel' => 'gallois', 'grc' => 'grec classique', 'gre' => 'grec moderne', 'heb' => 'hbreu', 'hun' => 'hongrois', 'ita' => 'italien', 'jap' => 'japonais', 'lat' => 'latin', 'dut' => 'nerlandais', 'nor' => 'norvgien', 'pol' => 'polonais', 'por' => 'portugais', 'rum' => 'roumain', 'rus' => 'russe', 'ser' => 'serbe', 'swe' => 'suedois', 'cze' => 'tchque', 'tur' => 'turc', 'ukr' => 'ukraine', 'slo' => 'slovne', 'scr' => 'serbo-croate', ) if $language eq 'fr'; my $dbh = C4::Context->dbh; if ($delete) { print "deleting lang list\n"; $dbh->do("delete from authorised_values where category='LANG'"); } if ($test_parameter) { print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; } my $starttime = gettimeofday; my $sth = $dbh->prepare("SELECT DISTINCT subfieldvalue FROM marc_subfield_table WHERE tag + subfieldcode IN $fields order by subfieldvalue"); $sth->execute; my $i=1; print "=========================\n"; my $sth2 = $dbh->prepare("insert into authorised_values (category, authorised_value, lib) values (?,?,?)"); while (my ($langue) = $sth->fetchrow) { $sth2->execute('LANG',$langue,$langue?$codesiso{$langue}:$langue); print "lang : $langue is unknown is iso list\n" unless $codesiso{$langue}; } print "=========================\n"; From tipaul at users.sourceforge.net Mon Jan 3 16:25:52 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 07:25:52 -0800 Subject: [Koha-cvs] CVS: koha/misc bulkmarcimport.pl,1.9,NONE Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7798/misc Removed Files: bulkmarcimport.pl Log Message: moving bulkmarcimport script to migration_tools directory --- bulkmarcimport.pl DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 16:25:52 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 07:25:52 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools bulkmarcimport.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7798/misc/migration_tools Added Files: bulkmarcimport.pl Log Message: moving bulkmarcimport script to migration_tools directory --- NEW FILE --- #!/usr/bin/perl # small script that import an iso2709 file into koha 2.0 use strict; # Koha modules used use MARC::File::USMARC; use MARC::Record; use MARC::Batch; use C4::Context; use C4::Biblio; use Time::HiRes qw(gettimeofday); use Getopt::Long; my ( $input_marc_file, $number) = ('',0); my ($version, $delete, $test_parameter,$char_encoding, $verbose); GetOptions( 'file:s' => \$input_marc_file, 'n' => \$number, 'h' => \$version, 'd' => \$delete, 't' => \$test_parameter, 'c:s' => \$char_encoding, 'v:s' => \$verbose, ); if ($version || ($input_marc_file eq '')) { print <dbh; if ($delete) { print "deleting biblios\n"; $dbh->do("delete from biblio"); $dbh->do("delete from biblioitems"); $dbh->do("delete from items"); $dbh->do("delete from bibliosubject"); $dbh->do("delete from additionalauthors"); $dbh->do("delete from bibliosubtitle"); $dbh->do("delete from marc_biblio"); $dbh->do("delete from marc_subfield_table"); $dbh->do("delete from marc_word"); $dbh->do("delete from marc_blob_subfield"); } if ($test_parameter) { print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; } $char_encoding = 'MARC21' unless ($char_encoding); print "CHAR : $char_encoding\n" if $verbose; my $starttime = gettimeofday; my $batch = MARC::Batch->new( 'USMARC', $input_marc_file ); $batch->warnings_off(); $batch->strict_off(); my $i=0; #1st of all, find item MARC tag. my ($tagfield,$tagsubfield) = &MARCfind_marc_from_kohafield($dbh,"items.itemnumber",''); # $dbh->do("lock tables biblio write, biblioitems write, items write, marc_biblio write, marc_subfield_table write, marc_blob_subfield write, marc_word write, marc_subfield_structure write, stopwords write"); while ( my $record = $batch->next() ) { $i++; #now, parse the record, extract the item fields, and store them in somewhere else. ## create an empty record object to populate my $newRecord = MARC::Record->new(); # go through each field in the existing record foreach my $oldField ( $record->fields() ) { # just reproduce tags < 010 in our new record if ( $oldField->tag() < 10 ) { $newRecord->append_fields( $oldField ); next(); } # store our new subfield data in this list my @newSubfields = (); # go through each subfield code/data pair foreach my $pair ( $oldField->subfields() ) { $pair->[1] =~ s/\[1] =~ s/\>//g; push( @newSubfields, $pair->[0], char_decode($pair->[1],$char_encoding) ); } # add the new field to our new record my $newField = MARC::Field->new( $oldField->tag(), $oldField->indicator(1), $oldField->indicator(2), @newSubfields ); $newRecord->append_fields( $newField ); } warn "$i ==>".$newRecord->as_formatted() if $verbose eq 2; my @fields = $newRecord->field($tagfield); my @items; my $nbitems=0; foreach my $field (@fields) { my $item = MARC::Record->new(); $item->append_fields($field); push @items,$item; $newRecord->delete_field($field); $nbitems++; } print "$i : $nbitems items found\n" if $verbose; # now, create biblio and items with NEWnewXX call. unless ($test_parameter) { my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,''); warn "ADDED biblio NB $bibid in DB\n" if $verbose; for (my $i=0;$i<=$#items;$i++) { NEWnewitem($dbh,$items[$i],$bibid); } } } # $dbh->do("unlock tables"); my $timeneeded = gettimeofday - $starttime; print "$i MARC record done in $timeneeded seconds"; From tipaul at users.sourceforge.net Mon Jan 3 17:12:31 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 08:12:31 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator default_intranet_pl_PL.po,1.13,NONE default_opac_pl_PL.po,1.9,NONE Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18406 Removed Files: default_intranet_pl_PL.po default_opac_pl_PL.po Log Message: removing .po in the wrong place (is in po/ now) --- default_intranet_pl_PL.po DELETED --- --- default_opac_pl_PL.po DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 17:30:16 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 08:30:16 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator rebuild_lang.sh,NONE,1.1 translator_doc.txt,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23202 Modified Files: translator_doc.txt Added Files: rebuild_lang.sh Log Message: updating doc & adding a script to rebuild officially supported languages --- NEW FILE --- #!/bin/sh ./tmpl_process3.pl install -r -s po/css_opac_fr_FR.po -i ../../koha-tmpl/opac-tmpl/css/en -o ../../koha-tmpl/opac-tmpl/css/fr ./tmpl_process3.pl install -r -s po/default_intranet_fr_FR.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/fr ./tmpl_process3.pl install -r -s po/css_opac_zh_TW.po -i ../../koha-tmpl/opac-tmpl/css/zh_TW -o ../../koha-tmpl/opac-tmpl/css/zh_TW ./tmpl_process3.pl install -r -s po/default_intranet_zh_TW.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/zh_TW ./tmpl_process3.pl install -r -s po/css_opac_es_AR.po -i ../../koha-tmpl/opac-tmpl/css/zh_TW -o ../../koha-tmpl/opac-tmpl/css/es_AR ./tmpl_process3.pl install -r -s po/default_intranet_es_AR.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/es_AR Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** translator_doc.txt 30 Dec 2004 06:58:19 -0000 1.5 --- translator_doc.txt 3 Jan 2005 16:30:13 -0000 1.6 *************** *** 22,27 **** directory, i.e., misc/translator): ! ./tmpl_process.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the --- 22,26 ---- directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the *************** *** 34,40 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o / ! home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s ! css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default --- 33,37 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default *************** *** 47,52 **** 1. Update your translation file: ! ./tmpl_process.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as --- 44,48 ---- 1. Update your translation file: ! ./tmpl_process3.pl update -i ../../opac-tmpl/default/en -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as *************** *** 54,62 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed WEAKNESSES --- 50,62 ---- 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed + + REBUILD ALL + =========== + The rebuild_lang.sh script can be used to rebuild all languages officially supported in 2.2 release, when needed. + Useful for developpers, probably useless for all end-users. + WEAKNESSES *************** *** 71,74 **** * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) ! --- 71,73 ---- * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) \ No newline at end of file From oleonard at users.sourceforge.net Tue Jan 4 21:21:00 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 04 Jan 2005 12:21:00 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/barcodes barcodes.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9686/koha-tmpl/intranet-tmpl/default/en/barcodes Modified Files: barcodes.tmpl Log Message: Corrections to English and minor corrections to HTML Index: barcodes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** barcodes.tmpl 19 Oct 2004 11:50:18 -0000 1.3 --- barcodes.tmpl 4 Jan 2005 20:20:52 -0000 1.4 *************** *** 1,186 **** ! ! ! ! ! ! !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Add a new Country Code !
    ! Country Name  ! ! Country Code  !
    ! ! ! !
    !
    !
    ! ! ! ! ! !
    !

    Barcodes Generator

    ! ! ! ! !
    Generate barcodes from inventary codes
    !
      !
    • Select a range of inventary codes. You can select wether a continuous range or individual inventary codes
    • !
    • Select the standard type to generate barcodes.
    • !
    • Define the page size for output the PDF.
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page. !
    • !
    !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    !

    Can't find inventary codes on that range. Please try again.

    !
    ! ! ! ! ! ! ! !
    Type of Interval
    !
    !
    ! ! ! ! ! ! ! ! ! !
    From:
    To:
    !
    ! !
    ! ! ! ! ! ! ! !
    Country Code
    !
    ! /images/more.gif" hspace="0" vspace="0" border="0" ! style="vertical-align:bottom;cursor:pointer" ! onclick="javascript: addCountryCode()"> ! !
    !
    !
    ! ! ! ! ! ! ! !
    Page Size
    ! " ! size="10"> ! [Go to Printer Configuration] !
    !
    Text under label ! "> If this field is empty, author and title will be put instead !
    ! ! ! ! ! ! ! ! ! ! ! !
    ">Label number to start printing
    ! " ! name="label" > ! Label !
    !
    ! ! ! !
    !
    !
    ! --- 1,180 ---- ! ! ! ! ! ! !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Add a new Country Code !
    ! Country Name   ! ! Country Code   !
    ! ! ! !
    !
    !
    ! ! ! ! ! !
    !

    Barcodes Generator

    ! ! ! ! !
    Generate barcodes from inventory codes
    !
      !
    • Select a range of inventary codes. You can choose a continuous range or individual inventory codes
    • !
    • Select the standard type to generate barcodes.
    • !
    • Define the page size for output the PDF.
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page. !
    • !
    !
    !
    " name="form1" onsubmit="return checkFields(this);" target="_blank"> ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    !

    Can't find inventory codes in that range. Please try again.

    !
    ! ! ! ! ! ! ! !
    Type of Interval
    !
    !
    ! ! ! ! ! ! ! ! ! !
    From:
    To:
    !
    ! !
    ! ! ! ! ! ! ! !
    Country Code
    !
    ! /images/more.gif" hspace="0" vspace="0" border="0" style="vertical-align:bottom;cursor:pointer" onclick="addCountryCode();"> ! !
    !
    !
    ! ! ! ! ! ! ! !
    Page Size
    ! " ! size="10"> ! [Go to Printer Configuration] !
    !
    Text under label ! "> If this field is empty, author and title will be used instead !
    ! ! ! ! ! ! ! ! ! ! ! !
    ">Label number to start printing
    ! " name="label" > Label
    !
    ! ! ! !
    !
    !
    ! From oleonard at users.sourceforge.net Tue Jan 4 23:32:29 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 04 Jan 2005 14:32:29 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/barcodes barcodes.tmpl,NONE,1.1 printerConfig.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4015/koha-tmpl/intranet-tmpl/npl/en/barcodes Added Files: barcodes.tmpl printerConfig.tmpl Log Message: Adding NPL versions of these templates --- NEW FILE --- Koha -- Catalog: Advanced Search

    Barcodes Generator

    • Select a range of inventary codes. You can choose a continuous range or individual inventory codes
    • Select the standard type to generate barcodes.
    • Define the page size for output the PDF.
    • Depending on page size, Koha will show you how the page is arranged for each barcode. You can define wich point to start printing the page.
    " name="form1" onsubmit="return checkFields(this);" target="_blank">
    Generate barcodes from inventory codes

    Can't find inventory codes in that range. Please try again.

    From:
    To:
    +
    Add a new Country Code
    " size="10"> [Go to Printer Configuration]
    ">

    If this field is empty, author and title will be used instead

    ">Label number to start printing
    " name="label" > Label

    --- NEW FILE --- Koha -- Barcode Generator Printer Configuration

    Printer Configuration

    Set the printer configuration corresponding to your environment

    • Set width and height of the label that you are going to work with.
    • Set your system's default DPI.
    • Set the page size.
    • Select how many columns and rows are in your page size.
    • Set the left margin bottom margin the page that you are going to use. This parameters will help to center the barcodes into the labels.
    " name="form1">
    Label width (in mm) Label height (in mm) System DPI Page Size Columns Rows Margin Bottom (mm) Margin Left (Expressed in mm)
    "> "> "> "> "> "> ">

    From tipaul at users.sourceforge.net Wed Jan 5 15:31:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:31:20 -0800 Subject: [Koha-cvs] CVS: koha/misc buildrelease,1.22,1.23 Install.pm,1.87,1.88 koha.upgrade,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27147/misc Modified Files: buildrelease Install.pm koha.upgrade Log Message: minor update just before releasing official 2.2.0 Index: buildrelease =================================================================== RCS file: /cvsroot/koha/koha/misc/buildrelease,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** buildrelease 16 Nov 2004 13:04:18 -0000 1.22 --- buildrelease 5 Jan 2005 14:31:06 -0000 1.23 *************** *** 219,223 **** |; chdir($kohadir) || die "$kohadir: $!\n"; ! system("cvs update -P"); if ($cvstag) { print qq| --- 219,223 ---- |; chdir($kohadir) || die "$kohadir: $!\n"; ! # system("cvs update -P"); if ($cvstag) { print qq| Index: Install.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/Install.pm,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -r1.87 -r1.88 *** Install.pm 3 Jan 2005 11:11:10 -0000 1.87 --- Install.pm 5 Jan 2005 14:31:17 -0000 1.88 *************** *** 149,153 **** $messages->{'WelcomeToUpgrader'}->{en} = heading('Welcome to the Koha Upgrader') . qq| ! You are attempting to upgrade from Koha %s to %s. We recommend that you do a complete backup of all your files before upgrading. --- 149,153 ---- $messages->{'WelcomeToUpgrader'}->{en} = heading('Welcome to the Koha Upgrader') . qq| ! You are attempting to upgrade to Koha %s. We recommend that you do a complete backup of all your files before upgrading. *************** *** 1819,1823 **** such as DANMARC. We would like to hear from you if you do. ! UPGRADE : If you UPGRADE your version from a previous 2.x.x, the right choice here is N (None) to preserve your local MARC setup. Choose MARC definition [1]: |; --- 1819,1824 ---- such as DANMARC. We would like to hear from you if you do. ! *** UPGRADE *** ! If you UPGRADE your version from a previous 2.x.x, the right choice here is N (None) to preserve your local MARC setup. Choose MARC definition [1]: |; *************** *** 1827,1833 **** en : default language, all pages available ! fr : complete translation (except pictures) ! es : partial librarian site translation (including pictures) ! pl : complete OPAC and partial librarian translation zh_TW : partial translation --- 1828,1833 ---- en : default language, all pages available ! fr : complete translation ! es : partial librarian site translation zh_TW : partial translation Index: koha.upgrade =================================================================== RCS file: /cvsroot/koha/koha/misc/koha.upgrade,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** koha.upgrade 23 Nov 2004 16:02:33 -0000 1.16 --- koha.upgrade 5 Jan 2005 14:31:17 -0000 1.17 *************** *** 15,34 **** loadconfigfile(); ! my $kohaversion=`cat koha.version`; ! chomp $kohaversion; ! Install::setkohaversion $kohaversion; ! if ($kohaversion =~ /RC/) { releasecandidatewarning(); } ! my $answer = showmessage(getmessage('WelcomeToUpgrader',[$kohaversion,$::newversion]),'yn'); ! ! unless ($answer =~/y/i) { showmessage(getmessage('AbortingInstall'),'none'); exit; - } else { - print "Great! continuing upgrade... \n"; }; --- 15,33 ---- loadconfigfile(); ! $::newversion=`cat koha.version`; ! chomp $::newversion; ! Install::setkohaversion $::newversion; ! if ($::newversion =~ /RC/) { releasecandidatewarning(); } ! my $answer = showmessage(getmessage('WelcomeToUpgrader',[$::newversion]),'yn','n'); ! if ($answer eq "Y" || $answer eq "y") { ! print "Great! continuing upgrade... \n"; ! } else { showmessage(getmessage('AbortingInstall'),'none'); exit; }; From tipaul at users.sourceforge.net Wed Jan 5 15:32:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:32:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/authorities searchresultlist.tmpl,1.7,1.8 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27401/koha-tmpl/intranet-tmpl/default/en/authorities Modified Files: searchresultlist.tmpl Log Message: Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist.tmpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** searchresultlist.tmpl 2 Dec 2004 16:41:07 -0000 1.7 --- searchresultlist.tmpl 5 Jan 2005 14:32:30 -0000 1.8 *************** *** 43,47 **** ! '&operator==&value=&and_or=and&excluding=" class="button authority"> biblio(s) "> --- 43,47 ---- ! &operator==&value=&and_or=and&excluding=" class="button authority"> biblio(s) "> From tipaul at users.sourceforge.net Wed Jan 5 15:32:59 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:32:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en about.tmpl,1.11,1.12 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27471/koha-tmpl/intranet-tmpl/default/en Modified Files: about.tmpl Log Message: updated credits for 2.2 release Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/about.tmpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** about.tmpl 19 Jul 2004 21:41:29 -0000 1.11 --- about.tmpl 5 Jan 2005 14:32:56 -0000 1.12 *************** *** 3,98 ****
    -

    Data about the current version of Koha for bug reports (or general interest).

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Koha version:
    OS version (from 'uname -a'):
    Perl version:
    MySQL version:
    Apache version:
    Credits !

    Core team

    ! ! ! ! ! !
    ! Pat Eyler, Kaitiaki
    ! Paul Poulain, 2.2 release manager (MARC developper)
    ! Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    ! Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    ! Nicholas Rosasco, (Documentation Compiler)
    ! Mike Hansen
    ! MJ Ray and Turo Technology LLP, England (quality control, installer & updater, 2.0 release maintainer)
    ! Nicolas Morin, French Translation
    !
    ! Horowhenua Library Trust : Rosalie Blake, Head of Libraries
    ! Jo Ransom
    ! Katipo Communications : Rachel Hamilton-Williams, General Manager (Webmistress), ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    !
    !

    Thanks to

    ! ! ! ! ! ! !
    ! Adam Thick
    ! Andrew Hooper
    ! Al Banks
    ! Ambrose Li
    ! Andrew Arensburger
    ! Benedykt P. Barszcz (Polish for 2.0)
    ! Brig C. McCoy
    ! Daniel Holth
    ! David Strainchamps
    ! Dorian Meid
    !
    ! Ed Summers
    ! Florian Bischof
    ! Francisco M. Marzoa Alonso
    ! Glen Stewart
    ! Henri-Damien Laurent
    ! Jrome Vizcaino (Esiee School)
    ! Kip DeGraaf
    ! Marco Gaiarin
    ! Md. Aftabuddin
    ! Michaes Herman
    !
    ! Michel Lerenard (Esiee School)
    ! Mike Johnson
    ! Mike Mylonas
    ! Pierre Cauchois (Esiee School)
    ! Pawel Skuza (Polish for 1.2)
    ! Regula Sebastiao
    ! Roger Buck
    ! Ron Wickersham
    ! Sebastiaan Durand
    !
    !
    --- 3,72 ----

    Data about the current version of Koha for bug reports (or general interest).

    !
    !

    Server information

    !

    !

    !

    !

    !

    !
    !
    !

    Special thanks to the following funders

    !

    Horowhenua Library Trust and Rosalie Blake, Head of Libraries, (Koha 1.0)

    !

    The Nelsonville Public Library (MARC support)

    !

    EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)

    !

    ENSMP (Ecole Nationale Suprieure des Mines de Paris) (biblio frameworks, MARC authorities, OPAC basket, Serials support)

    !
    !
    !

    Core team for 2.2

    !

    Rachel Hamilton-Williams, Kaitiaki

    !

    Paul Poulain, 2.2 release manager (MARC developper)

    !

    Stephen Hedges & the Nelsonville Public Library (MARC features funders)

    !

    Nicholas Rosasco, (Documentation Compiler)

    !

    Mike Hansen

    !

    MJ Ray and Turo Technology LLP, (quality control, installer & updater, 2.0 release maintainer)

    !

    Katipo Communications

    !
      !

      Rachel Hamilton-Williams, General Manager (Webmistress)

      !

      Chris Cormack, 1.2 release manager

      !

      and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson,

      !

      Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine

      !
    !
    !
    !

    Thanks to

    !

    Adam Thick

    !

    Andrew Hooper

    !

    Al Banks

    !

    Ambrose Li (chinese & translation tool)

    !

    Andrew Arensburger (the small & great C4::Context module)

    !

    Benedykt P. Barszcz (Polish for 2.0)

    !

    Brig C. McCoy

    !

    Daniel Holth

    !

    David Strainchamps

    !

    Dorian Meid (German translation)

    !

    doXulting (Matthieu Branlat) OPAC basket

    !

    Ed Summers (Some code and Perl packages like MARC::Record)

    !

    Esiee School (Jrome Vizcaino, Michel Lerenard, Pierre Cauchois)

    !

    Florian Bischof

    !

    Francisco M. Marzoa Alonso

    !

    Glen Stewart

    !

    Henri-Damien Laurent

    !

    Jo Ransom

    !

    Kip DeGraaf

    !

    Marco Gaiarin

    !

    Md. Aftabuddin

    !

    Michaes Herman

    !

    Mike Johnson

    !

    Mike Mylonas

    !

    Nicolas Morin (French Translation in 2.0)

    !

    Pawel Skuza (Polish for 1.2)

    !

    Regula Sebastiao

    !

    Roger Buck

    !

    Ron Wickersham

    !

    Sebastiaan Durand

    !

    Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)

    !
    From tipaul at users.sourceforge.net Wed Jan 5 15:33:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:33:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr about.tmpl,1.3,1.4 auth.tmpl,1.3,1.4 bookcount.tmpl,1.3,1.4 boraccount.tmpl,1.6,1.7 charges.tmpl,1.3,1.4 intranet-main.tmpl,1.8,1.9 modbibitem.tmpl,1.3,1.4 moditem.tmpl,1.3,1.4 overdue.tmpl,1.3,1.4 reports.tmpl,1.3,1.4 request.tmpl,1.7,1.8 shelves.tmpl,1.3,1.4 thesaurus_popup.tmpl,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27604/koha-tmpl/intranet-tmpl/default/fr Modified Files: about.tmpl auth.tmpl bookcount.tmpl boraccount.tmpl charges.tmpl intranet-main.tmpl modbibitem.tmpl moditem.tmpl overdue.tmpl reports.tmpl request.tmpl shelves.tmpl thesaurus_popup.tmpl Log Message: french version for 2.2.0 Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/about.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** about.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- about.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 2,96 ****
    !

    Data about the current version of Koha for bug reports (or general interest).

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Version Koha
    Version de l'OS (depuis 'uname -a) :
    version PERL :
    Version MySQL
    Version Apache :
    Crdits !

    Contributeurs principaux

    ! ! ! ! ! !
    ! Pat Eyler,Kaitiaki
    ! Paul Poulain, responsable de la version 2.2 (dveloppeur MARC)
    ! Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    ! Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    ! Nicholas Rosasco,(rdacteur de la documentation)
    ! Mike Hansen
    ! MJ Ray and Turo Technology LLP, England (quality control, installer & updater, 2.0 release maintainer)
    ! Nicolas Morin, traduction franaise
    !
    ! Groupement de bibliothques de Horowhenua : Rosalie Blake, directrice des bibliothques
    ! Jo Ransom
    ! Katipo Communications : Rachel Hamilton-Williams, General Manager (Webmistress), ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    !
    !

    Merci

    ! ! ! ! ! ! !
    ! Adam Thick
    ! Andrew Hooper
    ! Al Banks
    ! Ambrose Li
    ! Andrew Arensburger
    ! Benedykt P. Barszcz (Polonais pour version 2.0)
    ! Brig C. McCoy
    ! Daniel Holth
    ! David Strainchamps
    ! Dorian Meid
    !
    ! Ed Summers
    ! Florian Bischof
    ! Francisco M. Marzoa Alonso
    ! Glen Stewart
    ! Henri Damien Laurent
    ! Jrome Vizcaino (Esiee Paris)
    ! Kip DeGraaf
    ! Marco Gaiarin
    ! Md. Aftabuddin
    ! Michaes Herman
    !
    ! Michel Lerenard (Esiee)
    ! Mike Johnson
    ! Mike Mylonas
    ! Pierre Cauchois (Ecole Esiee)
    ! Pawel Skuza (Polonais pour la version 1.2)
    ! Regula Sebastiao
    ! Roger Buck
    ! Ron Wickersham
    ! Sebastiaan Durand
    !
    !
    --- 2,71 ----
    !

    Informations sur la version actuelle de Koha pour le rapport de bogues (ou d'intrt gnral).

    \t !
    !

    Information serveur

    !

    !

    !

    !

    !

    !
    !
    !

    Un merci particulier aux financeurs suivants

    !

    Groupement de bibliothques de Horowhenua : Rosalie Blake, directrice des bibliothques (Koha 1.0)

    !

    La Bibliothque Publique de Nelsonville (support MARC)

    !

    EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)

    !

    EMN (Ecole des Mines de Nantes) (modules suggestion et stats, support ldap amlior)

    !
    !
    !

    Contributeurs principaux pour la version 2.2

    !

    Rachel Hamilton-Williams, Kaitiaki

    !

    Paul Poulain, responsable de la version 2.2 (dveloppeur MARC)

    !

    Stephen Hedges et La Bibliothque Publique de Nelsonville (Financement du codage MARC)

    !

    Nicholas Rosasco,(rdacteur de la documentation)

    !

    Mike Hansen

    !

    MJ Ray et Turo Technology LLP, (contrle qualit, installation et mise jour, maintenance de la version 2.0)

    !

    Katipo Communications

    !
      !

      Rachel Hamilton-Williams, General Manager (Webmistress)

      !

      Chris Cormack, 1.2 release manager

      !

      et Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson,

      !

      Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine

      !
    !
    !
    !

    Merci

    !

    Adam Thick

    !

    Andrew Hooper

    !

    Al Banks

    !

    Ambrose Li (chinese & translation tool)

    !

    Andrew Arensburger (the small & great C4::Context module)

    !

    Benedykt P. Barszcz (Polonais pour version 2.0)

    !

    Brig C. McCoy

    !

    Daniel Holth

    !

    David Strainchamps

    !

    Dorian Meid (German translation)

    !

    doXulting (Matthieu Branlat) panier OPAC

    !

    Ed Summers (Some code and Perl packages like MARC::Record)

    !

    Esiee (Jrome Vizcaino, Michel Lerenard, Pierre Cauchois)

    !

    Florian Bischof

    !

    Francisco M. Marzoa Alonso

    !

    Glen Stewart

    !

    Henri Damien Laurent

    !

    Jo Ransom

    !

    Kip DeGraaf

    !

    Marco Gaiarin

    !

    Md. Aftabuddin

    !

    Michaes Herman

    !

    Mike Johnson

    !

    Mike Mylonas

    !

    Nicolas Morin, (traduction franaise 2.0)

    !

    Pawel Skuza (Polonais pour la version 1.2)

    !

    Regula Sebastiao

    !

    Roger Buck

    !

    Ron Wickersham

    !

    Sebastiaan Durand

    !

    Steve Tonnesen (prparation MARC, conception des Etagres virtuelles, KohaCD)

    !
    Index: auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/auth.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** auth.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- auth.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 18,22 **** !

    Vous avez saisi un nom d'utilisateur ou un mot de passe invalide. Merci de ressayer.

    --- 18,22 ---- !

    Vous avez saisi un nom d'utilisateur ou un mot de passe invalide. Merci de ressayer.

    Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookcount.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** bookcount.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- bookcount.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 5,9 **** ! CODE BARRE --- 5,9 ---- ! CODE A BARRES *************** *** 11,15 **** ! '>Site d'origine:
    Site Actuel:
    Date d'arrive au site actuel:
    --- 11,15 ---- ! Site d'origine:
    Site Actuel:
    Date d'arrive au site actuel:
    Index: boraccount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/boraccount.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** boraccount.tmpl 24 Nov 2004 16:22:25 -0000 1.6 --- boraccount.tmpl 5 Jan 2005 14:33:21 -0000 1.7 *************** *** 3,7 **** !

    Compte pour

    ">Crer une facture manuelle

    --- 3,7 ---- !

    Compte pour ">

    ">Crer une facture manuelle

    Index: charges.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/charges.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** charges.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- charges.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 4,9 ****

    ! Each box needs to be filled in with fine,time to start charging,charging cycle
    ! par exemple 1,7,7 signifie 1EUR d'amende, aprs 7 jours, tous les 7 jours.

    --- 4,9 ----

    ! Chaque cellule doit tre remplie avec l'amende, l'chance et la dure des charges
    ! par exemple 1,7,7 signifie 1EUR d'amende, aprs 7 jours, tous les 7 jours.

    Index: intranet-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/intranet-main.tmpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** intranet-main.tmpl 24 Nov 2004 16:22:25 -0000 1.8 --- intranet-main.tmpl 5 Jan 2005 14:33:21 -0000 1.9 *************** *** 74,78 ****

    Catalogue

    Recherche catalogue !

    Search a biblio. When this biblio is found, you can check its status, reserve it, or see where it is

    Ajouter une notice

    Ajouter directement une notice au catalogue de la bibliothque

    --- 74,78 ----

    Catalogue

    Recherche catalogue !

    Rechercher une notice.Quand ce document est trouv, vous pouvez vrifier son tat, faire une rservation, ou bien voir o il se trouve

    Ajouter une notice

    Ajouter directement une notice au catalogue de la bibliothque

    *************** *** 80,86 ****

    Gestion des abonnements et des priodiques

    Etagres Virtuelles !

    Virtual shelves can be used by librarian or patrons to build virtual libraries inside the "real" one. ! The virtual shelf can be used by a teacher to help his/her students searching information on a specific topic. ! It can be used by a library to define "most valuable books for <some category of patron>"

    --- 80,84 ----

    Gestion des abonnements et des priodiques

    Etagres Virtuelles !

    Les tagres virtuelles peuvent tre utilises par des bibliothcaires ou des usagers pour constituer des bibliothques virtuelles au sein de la vraie. L'tagre virtuelle peut tre utilis par un enseignant pour aider ses lves dans la recherche d'information sur un sujet particulier.On peut l'utiliser dans une bibliothque pour indiquer des listes de documents (les plus emprunts, les plus reprsentatifs...).

    *************** *** 107,122 ****

    Aller la page principale des lecteurs

    Ajouter une inscription !

    Add a member in the library. The member can be attached to any branch of the library. He or she can also have children.

    Ajouter une collectivit !

    Add an organisation in the library. This member doesn't have some information a "physical" member has.

    Acquisitions

    ! Lignes de Commande, recevoir des commandes, tablir des budgets...
    !

    Rapports

    ! Tous les rapports systme
    --- 105,120 ----

    Aller la page principale des lecteurs

    Ajouter une inscription !

    Ajouter un lecteur la bibliothque.Le lecteur peut-tre rattach n'importe quel site de la bibliothque.Il ou elle peut aussi avoir des enfants

    Ajouter une collectivit !

    Ajouter une collectivit la bibliothque.Cette inscription ne peut contenir les mmes informations que pour une personne physique.

    Acquisitions

    ! Commander des documents, recevoir des commandes, tablir des budgets...
    !

    Bilans

    ! Tous les bilans du systme
    *************** *** 126,136 ****

    Prt

    ! Work at the front desk on Issues and returns using only a barcode reader and a mouse
    --- 124,134 ----

    Prt

    ! A la banque de prt, effectuez les prts et les retours, en utilisant uniquement un lecteur de code barre et une souris
    *************** *** 145,149 **** Autorits
    ! Rapports
    Paramtres
    --- 143,147 ---- Autorits
    ! Bilans
    Paramtres
    Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/modbibitem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** modbibitem.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- modbibitem.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 36,40 ****
    ! --- 36,40 ---- ! *************** *** 68,78 **** ! ! --- 68,78 ---- ! ! *************** *** 99,104 **** ! HELP: You must click on the appropriate radio button (in the green boxes), and choose to either re-assign the item/s to a record already in the system, or modify this record. IF your changes only apply to some ! items, tick the appropriate ones and a new group record will be created automatically for them.

     

    --- 99,103 ---- ! AIDE:Vousdevezcliquer sur le bouton adquat (dans les pavs verts), et choisir soit de dplacer le(s) exemplaire(s)vers un enregistrement dj existant dans la base, soit de modifier cet enregistrement. Si vos modifications ne concernent que quelques exemplaires, pointer ceux qui sont concerns et une nouvelle notice sera cre automatiquement pour eux.

     

    Index: moditem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/moditem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** moditem.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- moditem.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 5,9 **** - ! ! --- 20,27 ---- "> ! ! *************** *** 35,48 **** !
    Editeur" size="20">
    Localisation" size="20">
    Editeur" size="20">
    Emplacement" size="20">
    LES MODIFICATIONS VONT AFFECTER CES CODES BARRES
    ! Tick ALL barcodes that changes are to apply too. Those left un-ticked will keep the original group record.
     Code Barre Localisation Date de retour
    LES MODIFICATIONS VONT AFFECTER CES CODES A BARRES
    ! Pointez TOUS les codes-barres auquels les changements s'appliquent.
     Code Barres Localisation Date de retour
    ! "> "> --- 5,9 ---- --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Mon Jan 10 17:49:19 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 08:49:19 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29393/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: member.tmpl Log Message: Removing accidentally-hardcoded member number Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** member.tmpl 27 Oct 2004 15:35:03 -0000 1.4 --- member.tmpl 10 Jan 2005 16:49:17 -0000 1.5 *************** *** 31,35 **** --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Mon Jan 10 18:00:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 09:00:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters marc_subfields_structure.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32072/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: marc_subfields_structure.tmpl Log Message: Synching with default tempalte Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** marc_subfields_structure.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- marc_subfields_structure.tmpl 10 Jan 2005 17:00:30 -0000 1.3 *************** *** 4,120 **** Data Deleted MARC Subfield Structure for '' ! !
    ! ! ! !
    " name="Aform" method="post"> !

    !
    Code Barre" size="40">
    ! "> "> Index: overdue.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/overdue.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** overdue.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- overdue.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 6,10 **** ! --- 6,10 ---- ! Index: reports.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** reports.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- reports.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 1,5 **** !

    rapports

    --- 1,5 ---- !

    bilans

    Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/request.tmpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** request.tmpl 24 Nov 2004 16:22:26 -0000 1.7 --- request.tmpl 5 Jan 2005 14:33:21 -0000 1.8 *************** *** 103,107 **** --- 103,107 ---- Index: shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/shelves.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** shelves.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- shelves.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 32,36 **** --- 95,99 ---- From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/authorities authorities.tmpl,1.1,1.2 searchresultlist-auth.tmpl,1.1,1.2 searchresultlist.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/authorities Modified Files: authorities.tmpl searchresultlist-auth.tmpl searchresultlist.tmpl Log Message: french version for 2.2.0 Index: authorities.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/authorities.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** authorities.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- authorities.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 15,19 **** -

    --- 15,18 ---- *************** *** 134,139 **** alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(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 { --- 133,138 ---- alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_missing_mandatory_tags +_("Champ(s) obligatoire(s) non renseign(s)"); ! alertString2 += "\n- "+ total_missing_mandatory_subfields +_("champs obligatoires non renseigns (voir les champs en caractre gras)"); alert(alertString2); } else { Index: searchresultlist-auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/searchresultlist-auth.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist-auth.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- searchresultlist-auth.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 60,64 ****
    Code Barres" size="40">
    Date de retourUsager Tlphone Titre
    Date de retourEmprunteur Tlphone Titre ! "> ! ">
    ! ajouter un livre par code barre dans : --- 32,36 ----
    ! Ajouter un livre par code barre dans : Index: thesaurus_popup.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/thesaurus_popup.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** thesaurus_popup.tmpl 24 Nov 2004 16:22:26 -0000 1.5 --- thesaurus_popup.tmpl 5 Jan 2005 14:33:21 -0000 1.6 *************** *** 33,37 **** "> ! Ajouter une nouvelle autorit --- 33,37 ---- "> ! Ajouter une nouvelle autorit: From tipaul at users.sourceforge.net Wed Jan 5 15:34:36 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:34:36 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/maint - New directory Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27952/koha-tmpl/intranet-tmpl/default/fr/maint Log Message: Directory /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint added to the repository From tipaul at users.sourceforge.net Wed Jan 5 15:35:23 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:23 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/maint catmaintain.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/maint Added Files: catmaintain.tmpl Log Message: french version for 2.2.0 --- NEW FILE --- "" onclick="messenger('/cgi-bin/koha/maint/catmaintain.pl?type=modsub&sub=');window1.focus()">"
    Sujet:" name="sub" size="40">
    ">

    Cela changera la vedette-sujet dans toutes les notices o ce sujet est utilis. Modification russie est maintenant
    TitreAuteurReprendre
    ">Reprendre
    Annulation de suppression russie

    Retour la Maintenance du Catalogue

    "> Type de document : ">
    Mise jour russie

    Retour la Maintenance du Catalogue Maintenance des Sujets

    Voir tous les sujets commenant par

    Maintenance des groupes

    Voir tous les Titres commenant par
    Numro de l'exemplaire

    Reprendre Notice

    Voir tous les Titres commenant par
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/user userpage.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/user Modified Files: userpage.tmpl Log Message: french version for 2.2.0 Index: userpage.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/user/userpage.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** userpage.tmpl 24 Nov 2004 16:21:16 -0000 1.3 --- userpage.tmpl 5 Jan 2005 14:35:22 -0000 1.4 *************** *** 19,23 ****

    ! Vous avez reserv les ouvrages en prt suivants :

    • The Amazing Apple Book by Paulette Bourgeois --- 19,23 ----

    ! Vous avez rserv les documents suivants :

    • The Amazing Apple Book by Paulette Bourgeois *************** *** 56,60 **** Prvenez moi de retards par messagerie (e-mail)
      Garder un enregistrement des livres que j'ai lu
      ! Autoriser l'quipe de la bibliothque consulter la liste de mes emprunts
    --- 56,60 ---- Prvenez moi de retards par messagerie (e-mail)
    Garder un enregistrement des livres que j'ai lu
    ! Autoriser l'quipe de la bibliothque consulter la liste de mes emprunts
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/search.marc result.tmpl,1.5,1.6 search.tmpl,1.6,1.7 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/search.marc Modified Files: result.tmpl search.tmpl Log Message: french version for 2.2.0 Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc/result.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** result.tmpl 24 Nov 2004 16:19:00 -0000 1.5 --- result.tmpl 5 Jan 2005 14:35:22 -0000 1.6 *************** *** 7,39 ****

    Rsultats de recherche

    ! --- 7,17 ----

    Rsultats de recherche

    Abrg Nombre d'exemplaires Localisation
    ! *************** *** 42,54 **** ! ! class="hilighted"> ! "> ! ">

    - *************** *** 88,106 ****

    --- 62,67 ---- Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc/search.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** search.tmpl 24 Nov 2004 16:19:00 -0000 1.6 --- search.tmpl 5 Jan 2005 14:35:22 -0000 1.7 *************** *** 8,100 ****

    Recherche Catalogue

    !
    "> !

    Rechercher sur

    ! ! " /> ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! !

    ! ! ! ! !

    !

    Autres options

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    --- 8,100 ----

    Recherche Catalogue

    ! "> !

    Rechercher sur

    ! ! "> ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! !

    ! ! ! ! !

    !

    Autres options

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    *************** *** 125,139 ****

    ! ! Warning : the "contains" statement does NOT work if you enter 2 or less letters !

    !

    !

    ! !
    !

    Rsultats par page : ! ! Attention : l'option "contient" NE FONCTIONNE PAS si vous n'indiquez pas au moins 3 caractres.

    !
    !

    Rsultats par page : ! ! Suggestions

    --- 147,151 ----

    ! Suggestions

    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/suggestion acceptorreject.tmpl,1.1,1.2 mail_suggestion_ACCEPTED.tmpl,1.1,1.2 mail_suggestion_AVAILABLE.tmpl,1.1,1.2 mail_suggestion_ORDERED.tmpl,1.1,1.2 mail_suggestion_REJECTED.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/suggestion Modified Files: acceptorreject.tmpl mail_suggestion_ACCEPTED.tmpl mail_suggestion_AVAILABLE.tmpl mail_suggestion_ORDERED.tmpl mail_suggestion_REJECTED.tmpl Log Message: french version for 2.2.0 Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/acceptorreject.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acceptorreject.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- acceptorreject.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 24,28 ****

    -

    ! Anne de copyright volume : ISBN : --- 24,28 ----

    -

    ! Anne de copyright volume : ISBN : Index: mail_suggestion_ACCEPTED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_ACCEPTED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_ACCEPTED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_ACCEPTED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . reviewed your suggestion today, and found it interesting. The item will be ordered as soon as possible. You will be notified by mail when the order is completed, and again when the book arrives at the library. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par a examin votre suggestion aujourd'hui, et l'a trouve intressante. Le document sera achet ds que possible. Vous serez alert par messagerie lorsque l'acquisition sera ralise, puis avertis par messagerie nouveau lorsque le document sera la bibliothque. Pour toute question, adressez- vous . Merci, \ No newline at end of file Index: mail_suggestion_AVAILABLE.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_AVAILABLE.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_AVAILABLE.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_AVAILABLE.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . We are pleased to inform you that the item is now part of the collection of the Nelsonville Public Library. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . Nous sommes heureux de vous annoncer que le *** est maintenant dans la la bibliothque. Si vous avez une question, n'hsitez pas nous crire . Merci \ No newline at end of file Index: mail_suggestion_ORDERED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_ORDERED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_ORDERED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_ORDERED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . We are pleased to inform you that the book has now been ordered. It should arrive soon, at which time it will be processed for addition to the collection. You will be notified again when the book is available. If you have any questions, please email us at Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par Nous avons le plaisir de vous informer que le livre a t command.Il devrait arriver bientt la bibliothque.Nous vous enverrons un autre mail quand le livre sera disponible. Pour toute question, envoyez nous un message lectronique . Merci \ No newline at end of file Index: mail_suggestion_REJECTED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_REJECTED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_REJECTED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_REJECTED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . reviewed your request today, and has decided not to accept the suggestion at this time. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait la bibliothque la suggestion d'achat de par . a trait votre demande aujourd'hui et a dcid de ne pas accepter votre suggestion. Si vous une question, n'hsitez pas nous crire . Merci \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/reports inventory.tmpl,1.2,1.3 issues_by_borrower_category.tmpl,1.1,1.2 itemtypes.tmpl,1.1,1.2 reports-home.tmpl,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/reports Modified Files: inventory.tmpl issues_by_borrower_category.tmpl itemtypes.tmpl reports-home.tmpl Log Message: french version for 2.2.0 Index: inventory.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/inventory.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** inventory.tmpl 24 Nov 2004 16:19:00 -0000 1.2 --- inventory.tmpl 5 Jan 2005 14:35:22 -0000 1.3 *************** *** 5,14 ****

    Slectionnez les exemplaires que vous souhaitez vrifier

    ! Localisation de l'exemplaire (items.itemcallnumber) entre "> et ">

    ">

    !

    " maxlength="5" size="5"> exemplaires commenant au " size="5" maxlength="5">

    --- 5,14 ----

    Slectionnez les exemplaires que vous souhaitez vrifier

    ! Cote de l'exemplaire ((items.itemcallnumber) entre "> et ">

    ">

    !

    " maxlength="5" size="5"> exemplaires commenant au " size="5" maxlength="5">

    *************** *** 29,33 ****
    ! --- 29,33 ---- ! Index: issues_by_borrower_category.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/issues_by_borrower_category.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** issues_by_borrower_category.tmpl 24 Nov 2004 16:19:00 -0000 1.1 --- issues_by_borrower_category.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 40,44 ****

    Prts par catgories de lecteurs

    !

    Select a borrower category (or don't if you want to see global status)

    Slectionnez une annexe :

    --- 40,44 ----

    Prts par catgories de lecteurs

    !

    Slectionner une catgorie de lecteur (ou rien si vous souhaitez visualiser l'tat global)

    Slectionnez une annexe :

    Index: itemtypes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/itemtypes.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** itemtypes.tmpl 24 Nov 2004 16:19:00 -0000 1.1 --- itemtypes.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 23,27 ****

    Voir le catalogue par type de document

    ! Slectionner une annexe (ou rien si vous souhaitez le rapport pour toutes les annexes) "> --- 23,27 ----

    Voir le catalogue par type de document

    ! Slectionner une annexe (ou rien si vous souhaitez le rapport pour toutes les annexes) "> Index: reports-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/reports-home.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** reports-home.tmpl 24 Nov 2004 16:19:00 -0000 1.5 --- reports-home.tmpl 5 Jan 2005 14:35:22 -0000 1.6 *************** *** 2,10 ****
    !

    Rapports

    • Cas rgls: Rapport quotidien (hier)
    • Cas rgls: Rapport quotidien (aujourd'hui)
    • !
    • Ouvrages en retard
    • Inventaire/rcolement
    • Recherche par Type de document
    • --- 2,10 ----
      !

      Bilans

      • Cas rgls: Rapport quotidien (hier)
      • Cas rgls: Rapport quotidien (aujourd'hui)
      • !
      • Documents en retard
      • Inventaire/rcolement
      • Recherche par Type de document
      • From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/value_builder unimarc_field_225a.tmpl,1.3,1.4 unimarc_field_60X.tmpl,1.4,1.5 unimarc_field_700-4.tmpl,1.3,1.4 unimarc_field_700_701_702.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/value_builder Modified Files: unimarc_field_225a.tmpl unimarc_field_60X.tmpl unimarc_field_700-4.tmpl unimarc_field_700_701_702.tmpl Log Message: french version for 2.2.0 Index: unimarc_field_225a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_225a.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_225a.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_225a.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 1,16 **** ! ! ! Constructeur de champ UNIMARC 225a ! !
    Rsum Nombre d'exemplaires Localisation
    class="hilighted"> !

    !

    ! "> ! "> ! !

    - --- 20,28 ----

    VuCode Barre Cote Titre
    VuCode Barres Cote Titre
    ! ! ! ! ! !
    Selectionnez une collection
    ! ! ! --- 17,19 ---- } ! Index: unimarc_field_60X.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_60X.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** unimarc_field_60X.tmpl 24 Nov 2004 16:21:17 -0000 1.4 --- unimarc_field_60X.tmpl 5 Jan 2005 14:35:23 -0000 1.5 *************** *** 1,5 **** ! Recherche Thsaurus --- 1,5 ---- ! Thesaurus search *************** *** 38,42 ****
    !

    Rponses

    --- 38,42 ---- ! --- 32,36 ---- ! From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/barcodes barcodes-bottom.inc,1.1,1.2 barcodes-top.inc,1.1,1.2 barcodes.tmpl,1.1,1.2 printerConfig.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/barcodes Modified Files: barcodes-bottom.inc barcodes-top.inc barcodes.tmpl printerConfig.tmpl Log Message: french version for 2.2.0 Index: barcodes-bottom.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes-bottom.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes-bottom.inc 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes-bottom.inc 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 8,12 **** Acquisitions || Prt || ! Rapports || Paramtres || A propos || --- 8,12 ---- Acquisitions || Prt || ! Bilans || Paramtres || A propos || Index: barcodes-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes-top.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes-top.inc 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes-top.inc 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 204,212 **** --- 204,212 ---- Index: barcodes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes.tmpl 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 41,56 ****
    !

    Gnrateur de code-barres

    !

    Results

    *************** *** 57,61 ****
    !

    Dpendances

    --- 57,61 ----
    !

    Dependancies

    *************** *** 73,82 ****
    !

    Ajout en cours

    "> "> ! Crer une nouvelle autorit/entre au thsaurus : ">
    --- 73,82 ----
    !

    Adding

    "> "> ! Create a new authority/thesaurus entry : ">
    Index: unimarc_field_700-4.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_700-4.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_700-4.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_700-4.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 11,15 **** ! --- 11,15 ---- ! Index: unimarc_field_700_701_702.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_700_701_702.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_700_701_702.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_700_701_702.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 1,5 **** ! Constructeur d'autorit nom de personne --- 1,5 ---- ! Personal Authorities builder *************** *** 14,18 **** "> "> ! --- 14,18 ---- "> "> ! *************** *** 30,34 **** "> ! Ajouter une nouvelle autorit --- 30,34 ---- "> ! Ajouter une nouvelle autorit: "> From tipaul at users.sourceforge.net Wed Jan 5 15:35:53 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:53 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/circ branchtransfers.tmpl,1.6,1.7 circulation.tmpl,1.10,1.11 returns.tmpl,1.6,1.7 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/circ Modified Files: branchtransfers.tmpl circulation.tmpl returns.tmpl Log Message: french version for 2.2.0 Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/branchtransfers.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** branchtransfers.tmpl 24 Nov 2004 16:14:37 -0000 1.6 --- branchtransfers.tmpl 5 Jan 2005 14:35:19 -0000 1.7 *************** *** 6,10 ****

    Prt : Transferts

    ! Site: Imprimante: Changer Paramtres "> "> --- 6,10 ----

    Prt : Transferts

    ! Site: Imprimante: Changer Rglages "> "> *************** *** 84,88 **** ! Pas d'exemplaire avec code barre : --- 84,88 ---- ! Pas d'exemplaire avec code barres : *************** *** 106,110 ****

    !

    Entrez le Code Barre du document : Code Barre du document: > --- 106,110 ----

    !

    Entrez le Code Barres du document : Code Barres du document: > *************** *** 120,124 **** !
    Exemplaires transfrs
    Code BarreTitreAuteurTypeDe
    "> --- 120,124 ---- ! ! --- 231,235 ---- ! *************** *** 253,257 **** ! --- 260,264 ---- ! Index: returns.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/returns.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** returns.tmpl 24 Nov 2004 16:14:38 -0000 1.6 --- returns.tmpl 5 Jan 2005 14:35:19 -0000 1.7 *************** *** 4,8 ****

    Prt: Retours

    ! Site: , Imprimante: Changer Paramtres

    --- 4,8 ----

    Prt: Retours

    ! Site: , Imprimante: Changer Rglages

    *************** *** 11,15 ****

    Exemplaire marqu 'En attente' :

    !

    Le document () est not en attente pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).
    --- 11,15 ----

    Exemplaire marqu 'En attente' :

    !

    Le document () est not en attente pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">). *************** *** 25,29 ****

    Exemplaire marqu 'En attente' :

    ! Item: () needs to be transfered to to be picked up by (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).

    --- 25,29 ----

    Exemplaire marqu 'En attente' :

    ! L'exemplaire: () doit tre transfr pour tre retir par (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).

    *************** *** 43,47 ****

    Rservation trouve

    !

    Item: () &type=intra" onclick="openWindow('/cgi-bin/koha/detail.pl?bib=&type=intra', 'Item'); return false;"> for (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false">) to be collected at .

    --- 43,47 ----

    Rservation trouve

    !

    Exemplaire : () &type=intra" onclick="openWindow('/cgi-bin/koha/detail.pl?bib=&type=intra', 'Item'); return false;"> pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false">) peut tre retir .

    *************** *** 84,89 ****

    !

    Entrez le code barre du livre

    !
    Exemplaires transfrs
    Code BarresTitreAuteurTypeDe
    "> Index: circulation.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/circulation.tmpl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** circulation.tmpl 24 Nov 2004 16:14:38 -0000 1.10 --- circulation.tmpl 5 Jan 2005 14:35:19 -0000 1.11 *************** *** 1,5 ****
    !

    Circulation : prts

    !

    Prt : Sorties

    , Imprimante: Changer Paramtres

    --- 11,15 ----

    Paramtres

    ! Site: , Imprimante: Changer Rglages

    *************** *** 41,45 ****

    Catgorie :

    !

    Prts, En retard

    --- 41,45 ----

    Catgorie :

    !

    Sorties, En retard

    *************** *** 65,70 ****
    !

    Entrez le code barre du livre

    !

    Code Barre de l'exemplaire :

    Annuler rservation

    + + +

    Annuler rservation

    + "> "> *************** *** 203,206 **** --- 209,213 ---- "> + " class="button circulation">Ne pas prter
    *************** *** 224,228 ****
    Date de retourCode Barre Titre Auteur
    Date de retourCode Barres Titre Auteur
    Date de retourCode Barre Titre Auteur
    Date de retourCode Barres Titre Auteur
    --- 84,89 ----
    !

    Entrez le code barres du livre

    !
    *************** *** 100,104 **** ! Pas d'exemplaire avec code barre : --- 100,104 ---- ! Pas d'exemplaire avec code barres : *************** *** 119,123 ****

    !

    Information sur l'ouvrage rendu

    Titre :

    Information lecteur

    --- 119,123 ----
    !

    Information sur le document rendu

    Titre :

    Information lecteur

    *************** *** 162,174 ****
    !

    Ouvrages rendus

    ! ! --- 162,174 ----
    !

    Documents rendus

    Date de retourCode Barre Titre Auteur TypeLecteur
    ! ! From tipaul at users.sourceforge.net Wed Jan 5 15:35:53 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:53 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help bull-home.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help Modified Files: bull-home.tmpl Log Message: french version for 2.2.0 Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 24 Nov 2004 16:15:50 -0000 1.1 --- bull-home.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 2,11 ****

    Aide de Abonnement Priodiques

      !
    • Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York
    • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement
    • Lorsque vous avez trouv l'abonnement que vous cherchez, vous pouvez:
      • Voir les dtails de l'abonnement
      • !
      • Recieve any item and/or manage what appears in subscription summary (in OPAC & librarian interface)
      \ No newline at end of file --- 2,11 ----

      Aide de Abonnement Priodiques

        !
      • Chercher un abonnement en utilisant le bouton (avec un ISSN ou un titre)Si vous saisissez un titre, vous pouvez utiliser le joker % : %Monde% renverra tous les abonnement contenant Monde dans le titre
      • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement
      • Lorsque vous avez trouv l'abonnement que vous cherchez, vous pouvez:
        • Voir les dtails de l'abonnement
        • !
        • Recevoir chaque numro et/ou gr ce qui s'affiche dans le rsum de l'abonnement ( l'OPAC et dans l'interface bibliothcaire)
        \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves addbookbybiblionumber.tmpl,1.2,1.3 shelves.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/bookshelves Modified Files: addbookbybiblionumber.tmpl shelves.tmpl Log Message: french version for 2.2.0 Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** addbookbybiblionumber.tmpl 24 Nov 2004 16:13:32 -0000 1.2 --- addbookbybiblionumber.tmpl 5 Jan 2005 14:35:18 -0000 1.3 *************** *** 6,11 ****

        !

        ! --- 6,19 ----

        !

        !

        ou ajouter une nouvlle tagre virtuelle

        !

        ! !

        ! Index: shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves/shelves.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** shelves.tmpl 24 Nov 2004 16:13:33 -0000 1.2 --- shelves.tmpl 5 Jan 2005 14:35:18 -0000 1.3 *************** *** 4,63 ****
        !
    Date de retourCode Barres Titre Auteur TypeEmprunteur
    ! ! ! ! ! ! ! ! ! ! !
    ! Contenus de !
    ">">">">">
    !
    ! Liste des tagres ! "> ! ! "> ! ! ! !
    ! "> ! ! "> ! ! ! ! ! !
    ! ajouter un livre par code barre dans : ! ! ! ! "> ! !
    !
    !

    !

    -

    Etagres

    Slectionner les Etagres Supprimer

    --- 4,64 ----
    !

    ! !
    !

    Contenu des Etagres

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    supprimerCode BarresTitreAuteur
    ">">">">">">
    ! "> ! ! "> ! ! ! !
    !
    !
    !

    Ajouter un livre par code barre

    ! "> ! ! "> ! ! ! "> ! !
    !
    + +

    Etagres

    !

    !

    Slectionner les Etagres Supprimer

    *************** *** 70,74 **** "> ! ( livres)

    --- 71,75 ---- "> ! "> ( document(s))

    *************** *** 92,98 ****

    !

  • une tagre prive est gre par vous et peut tre vue uniquement par vous- mme.
  • !
  • Une tagre publique peut-tre vue par tout le monde, mais gre uniquement par vous-mme
  • !
  • Une tagre libre peut-tre gre par tous les usagers
  • --- 93,99 ----

    !

  • une tagre prive est gre par vous et peut tre vue uniquement par vous- mme.
  • !
  • Une tagre publique peut-tre vue par tout le monde, mais gre uniquement par vous-mme
  • !
  • Une tagre libre peut-tre gre par tous les utilisateurs.
  • *************** *** 104,128 ****

    ! ! ! ! ! ! ! ! ! !
    ! Liste des Etagres !
    "> ! "> ! ( livres) ! !
    !

    Ajouter ou supprimer des tagres virtuelles !

    --- 105,191 ----
    !
    !

    Liste des tagres

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Nom de l'tagreCatgorieContenuModifier
    "> ! "> ! ! ! "> ! ! Priv ! ! ! Publique ! ! ! Libre ! ! "> ! documents ! "> ! " class="button catalogue">Modifier !
    !
    ! + + +
    +
    + +

    Modifier l'tagre

    + "> +

    ">

    +

    ">

    +

    + +

    +

  • une tagre prive est gre par vous et peut tre vue uniquement par vous- mme.
  • +
  • Une tagre publique peut-tre vue par tout le monde, mais gre uniquement par vous-mme
  • +
  • Une tagre libre peut-tre gre par tous les utilisateurs.
  • +

    +

    + +

    + +
    +
    +
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/circ circulation.tmpl,1.1,1.2 returns.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/circ Modified Files: circulation.tmpl returns.tmpl Log Message: french version for 2.2.0 Index: circulation.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ/circulation.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** circulation.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- circulation.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,11 **** !

    Circulation : prts

    !

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations from a workstation, after which a browser cookie will remember the correct settings. If you do circulations under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb) and the statistical reports will credit all circulations to the wrong branch.

    !

    Now start by scanning the borrower's barcode or type in their name to find their account. Once Koha has found the borrower, you will see a new form for scanning or typing the item's identifying number (usually a barcode).

    !

    If you wish to have this item and all subsequent items in this transaction to have a date due other than the default date due defined for the item type, use the "Sticky Due Date" to set the date due before scanning the first item.

    !

    If the issuing has nothing specific, it will be done immediatly and shown (with other borrower issues) at bottom.

    !

    If the issuing is problematic, then another box will appear (in RED) and ask for confirmation if possible. If the issuing is really impossible (for example, the barcode does not exist), then you can't confirm the issue. If it is possible but has something that needs confirmation (like item being issued to another borrower, or borrower having issued too many items), then you must confirm the issuing. If the confirmation means another operation (if item is issued to another borrower, then issuing also means make the return), then it's also done

    --- 1,11 ---- !

    Prt/Aide des sorties

    !

    Avant de commencer, il est trs important que vous verifiez le site et l'imprimante choisis et que vous les changiez si ncessaire.Cela devra tre fait seulement la premire fois que vous ferez du prt (ou des retours) partir d'un poste de travail, ensuite un cookie du navigateur mmorisera le rglage correct.

    !

    Maintenant commencez par scanner le code barres du lecteur ou tapez son nom pour trouver leur compte.Lorsque Koha a trouv un lecteur, vous verrez un nouveau pav pour scanner ou taper le numro identifiant le document (en gnral un code barres).

    !

    Si vous souhaitez que ce document et les documents suivants de cette transaction aient une date de retour autre que la date par dfaut dfinie pour ce type de document utilisez la "date de retour manuelle" pour choisir la date de retour avant de scanner le premier document.

    !

    Si le prt n'a rien de spcial, il sera fait immdiatement et affich (avec les autres emprunts du lecteur)en bas de la page.

    !

    Si le prt pose problme, alors un autre pav apparatra (en ROUGE) et vous demandera de confirmer que le prt est possible.Si le prt est vraiment impossible (par exemple le code barres n'existe pas), alors vous ne pouvez pas le confirmer.Si le prt est possible mais ncessite confirmation (comme pour un document prt un autre lecteur, ou un lecteur ayant emprunt trop de docuements), vous pourrz alors confirmer le prt.Si la confirmation implique une autre opration (si le document est prt un autre lecteur, le prt implique que le retour soir fait), alors elle sera aussi effectue.

    Index: returns.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ/returns.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** returns.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- returns.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,9 **** !

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations (or returns) from a workstation, after which a browser cookie will remember the correct settings. If you do returns under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb).

    !

    Now simply scan or type the returned item's identifying number (usually a barcode) in the box provided.

    !

    The return is done and if there is something specific for the item or the borrower (like borrower having debts), a red box will warn you

    !

    If the item has been requested by someone else, you also are asked to validate the request. If you confirm it, item is changed to a "waiting" status and you should warn the borrower that the item is available

    !

    If the item is requested by someone in anothe branch, then you must validate the transfer too

    --- 1,9 ---- !

    Avant de commencer, il est trs important que vous verifiez le site et l'imprimante choisis et que vous les changiez si ncessaire. Cela devra tre fait seulement la premire fois que vous ferez du prt (ou des retours) partir d'un poste de travail, ensuite un cookie du navigateur mmorisera le rglage correct.

    !

    Maintenant scannez simplement ou tapez le numro identifiant du document (habituellement un code barres)dans le pav propos.

    !

    Le retour est fait et s'il y a quelque chose de particulier sur le document ou l'emprunteur (comme un emprunteur ayant des dettes), un pav rouge vous en avertira

    !

    Si le document a t rserv par quelqu'un d'autre, on vous demandera aussi de valider la rservation.Si vous la confirmez, le document est mis l'tat "en attente" et vous devrez avertir le lecteur que le docuement est disponible.

    !

    Si le document est rserv par quelqu'un d'un autre site, vous devez aussi valider le transfert

    From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/import breeding.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/import In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/import Modified Files: breeding.tmpl Log Message: french version for 2.2.0 Index: breeding.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/import/breeding.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** breeding.tmpl 24 Nov 2004 16:16:53 -0000 1.4 --- breeding.tmpl 5 Jan 2005 14:35:20 -0000 1.5 *************** *** 6,12 ****

      enregistrements imports

      !

      non import parce que dj dans la base de donne

      non import,parce que dj dans le rservoir

      !

      not imported because they seems not to be MARC format (or ISBN/ISSN missing) !

      enregistrements traits

      Retour --- 6,12 ----

        enregistrements imports

        !

        non import parce que dj dans la base de donnes

        non import,parce que dj dans le rservoir

        !

        non import parce qu'ils ne semblent pas tre au format MARC (ou n ISBN/ ISSN manquant) !

        enregistrements traits

        Retour *************** *** 14,21 ****

          !
        • Select a file to import into the breeding farm. It will be parsed, and for each ISBN found, a new baby will be created in the breeding farm.
        • !
        • If an ISBN already exists in the breeding farm, you can choose whether to ignore the new one or overwrite the old one.
        • !
        • You can enter a name for this import. It may be useful, when creating a biblio, to remember where the suggested MARC data comes from!
        • !
        • Of course, if the ISBN already exists in the active DB, the biblio will be ignored.
        " enctype="multipart/form-data"> --- 14,21 ----
          !
        • Slectionner un fichier importer dans le rservoir.Il sera analys, et pour chaque ISBN trouv, une nouvelle copie sera cr dans le rservoir.
        • !
        • Si un ISBN existe dj dans le rservoir, vous pouvez choisir soit d'ignorer le nouveau soit d'craser l'ancien.
        • !
        • Vous pouvez donner un nom cette importation. Cela peut tre utile, lors de la cration d'une notice, pour vous souvenir d'o vient l'enregistrement MARC propos!
        • !
        • Bien sr, si l'ISBN existe dj dans la base de donnes, la notice sera ignore.
        " enctype="multipart/form-data"> From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc search.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/search.marc Modified Files: search.tmpl Log Message: french version for 2.2.0 Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- search.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 3,27 ****

        La recherche est divise en deux parties diffrentes :

        Champs usuels

        !

        Les champs usuels sont dans la partie haute de l'cran. Ils contiennent :

          !
        • Mot cl : Recherche sur l'ensemble
        • Titre
        • Auteur
        • !
        • Code Barre : le code barre de la biblothque pour le livre
        • Illustrateur
        • Dewey
        • !
        • Item type : select here an item type. If none is selected, the search is done on every item type
        • !
        • Branch : select here a specific branch. If none selected, the search is done on every branch

        Mthode de Recherche

          !
        • If you enter values in more than 1 field, the search is "and-ed" (biblios that contains title AND author)
        • !
        • Une notice est slectionne si son champ contientle terme que vous avez saisi
        • !
        • If you enter a * (or a %) at the end of a term, Koha search for words starting with your term (entering infrieur* signifie : trouver les notices qui ont un titre contient un mot commenant par lower

        Recherche MARC

        !

        In the lower part of the search screen, the More fields box let you enter whatever you want : and, or, exclusions (not), search on any MARC field/subfield

        !

        REMARQUE IMPORTANTE : for performance reasons, the * is valid only if you enter a word more than 3 letters long. for words of 3 letters or less, the * is ignor


        \ No newline at end of file --- 3,27 ----

        La recherche est divise en deux parties diffrentes :

        Champs usuels

        !

        Les champs usuels sont dans la partie haute de l'cran. Ils contiennent :

          !
        • Tous les mots : recherche sur l'ensemble de la notice
        • Titre
        • Auteur
        • !
        • Code Barres : le code barres de la biblothque pour le livre
        • Illustrateur
        • Dewey
        • !
        • Type de document : slectionnez ici un type de document. Si aucun n'est slectionn, la recherche est lance sur tous les types
        • !
        • Site : Slectionnez un site prcis.Si vous n'en slectionnez aucun, la recherche se fera sur tous les sites

        Mthode de Recherche

          !
        • Si vous renseignez plus d'un champ, votre recherche sera de type "et" (les notices contenant titre ET auteur)
        • !
        • Une notice est slectionne si son champ contientle terme que vous avez saisi
        • !
        • Si vous saisissez un * (ou un %) la fin d'un terme, Koha recherche les mots qui commencent par le terme saisi infrieur* signifie : trouver les notices qui ont un titre contient un mot commenant par lower

        Recherche MARC

        !

        Dans la partie infrieure de l'cran de recherche, le pav Plus de champs, vous permet de saisir ce que vous voulez : et, ou, non (exclusions), recherche sur tous les champs/sous-champs MARC

        !

        REMARQUE IMPORTANTE : Pour des raisons d'efficacit l'* est active uniquement si vous entrez un mot d'au moins 3 lettres.pour les mots de 3 lettres ou moins, l'* est ignore ignor


        \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/import breeding.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/import In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/import Modified Files: breeding.tmpl Log Message: french version for 2.2.0 Index: breeding.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/import/breeding.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** breeding.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- breeding.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 2,13 ****

        Importer cette notice

        This is one of the screens you will see frequently if you are starting from scratch.

        !

        It is useful to import a bunch of iso2709 biblios that can be used later for a quick cataloguing

        !

        First, you need to browse your computer to find the MARC record that you grabbed for your item. Click on

        !

        Choose File to browse.

        !

        If you aren't sure if you've already imported a record, keep the radio button set to

        Ignorer celui-ci, garder l'existant

        You can "name" the import to help you when you need to choose between more than 1 imported biblio (or just want to keep trace on where the biblios comes from)

        Codage des caractres (MARC21 ou UNIMARC)

        You don't need to actually name every import, so you don't need to fill in this box if you don't want to. It is useful for telling imports apart if you've more than one of the same record.

        !

        IMPORTANT : This tool is NOT intended to import iso2709 in your ACTIVE DB. If you need to migrate datas from another ILS, then you must consider $kohaInstall/scripts/misc/bulkmarcimport.pl

        --- 2,13 ----

        Importer cette notice

        This is one of the screens you will see frequently if you are starting from scratch.

        !

        C'est utile d'importer un paquet de notices iso2709 qui pourront tre utilises plus tard pour un catalogage rapide

        !

        Au pralable, vous devez parcourir votre ordinateur pour trouver l'enregistrement MARC que vous avez slectionn pour votre document.Cliquez

        !

        Choisir le dossier rechercher.

        !

        Si vous n'tes pas sr d'avoir dj import un enregistrement laissez le button rgl sur

        Ignorer celui-ci, garder l'existant

        You can "name" the import to help you when you need to choose between more than 1 imported biblio (or just want to keep trace on where the biblios comes from)

        Codage des caractres (MARC21 ou UNIMARC)

        You don't need to actually name every import, so you don't need to fill in this box if you don't want to. It is useful for telling imports apart if you've more than one of the same record.

        !

        IMPORTANT : Cet outil n'est PAS prvu pour importer de l' iso2709 dans votre Base de Donnes ACTIVE.Si vous avez besoin de migrer des donnes partir d'un autre SIGB, alors vous devez utiliser $kohaInstall/scripts/misc/bulkmarcimport.pl

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/export marc.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/export In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/export Modified Files: marc.tmpl Log Message: french version for 2.2.0 Index: marc.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/export/marc.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** marc.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- marc.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,8 **** !

        iso 2709 export

        This is a tool to export your bibliographic records in standard MARC communications format (ISO2709). It exports only the basic bibliographic information with no holdings information other than any holdings information originally loaded into Koha using the bulkmarcimport tool.

        You are asked to provide a starting biblio record number and an ending number for the export. If you want to export all of your records, leave the start and end numbers blank.

        !

        Records are downloaded to the workstation that requests the export and are saved in a file called "marc.pl."

        --- 1,8 ---- !

        export iso2709

        This is a tool to export your bibliographic records in standard MARC communications format (ISO2709). It exports only the basic bibliographic information with no holdings information other than any holdings information originally loaded into Koha using the bulkmarcimport tool.

        You are asked to provide a starting biblio record number and an ending number for the export. If you want to export all of your records, leave the start and end numbers blank.

        !

        Les enregistrements sont chargs sur le poste de travail qui a demand l'exportation et sont sauvs dans un fichier nomm "marc.pl."

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/marcimport AcceptBiblioitem.tmpl,1.3,1.4 AcceptItemCopy.tmpl,1.3,1.4 marcimportdetail.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/marcimport Modified Files: AcceptBiblioitem.tmpl AcceptItemCopy.tmpl marcimportdetail.tmpl Log Message: french version for 2.2.0 Index: AcceptBiblioitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/AcceptBiblioitem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AcceptBiblioitem.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- AcceptBiblioitem.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 8,17 **** ! --- 8,17 ----
        Enregistrement dj dans la Base de Donne
        ! is already in the database with biblionumber and biblioitemnumber
        ! *************** *** 26,30 ****
        Enregistrement dj dans la base de donnes
        ! est dj dans la base de donnes avec le numro de notice /
        ! has been entered into the database with biblionumber and biblioitemnumber
        --- 26,30 ----
    ! a t saisi dans la base de donnes avec le numro de notice /
    *************** *** 41,45 **** "> ! --- 41,45 ---- ">
    CODE BARRE"> Site d'affectation:
    ! Index: AcceptItemCopy.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/AcceptItemCopy.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AcceptItemCopy.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- AcceptItemCopy.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 2,6 ****
    ! Le Code Barre a dj t attribu

    --- 2,6 ----

    ! Le Code Barres a dj t attribu

    *************** *** 10,14 ****

    CODE A BARRES"> Site d'affectation:
    ! Exemplaire ajout avec code barre
    --- 10,14 ----
    ! Exemplaire ajout avec code barres
    Index: marcimportdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/marcimportdetail.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** marcimportdetail.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- marcimportdetail.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 32,36 ****
    Anne de Publication" size="5" maxlength="10">
    Editeur" size="40" maxlength="255">
    Localisation" size="40" maxlength="255">
    Pages" size="5" maxlength="10">
    Taille" size="40" maxlength="40">
    Anne de Publication" size="5" maxlength="10">
    Editeur" size="40" maxlength="255">
    Emplacement" size="40" maxlength="255">
    Pages" size="5" maxlength="10">
    Taille" size="40" maxlength="40">
    !
    Gnrer le code barre partir du numro d'inventaire
      !
    • Select a range of inventary codes. You can select wether a continuous range or individual inventary codes
    • !
    • Slectionner le de code-barres gnrer
    • Dfinissez la taille de la page pour le PDF
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page.
    --- 41,55 ----
    !

    Gnrateur de code barres

    !
    Gnrer le code barres partir du numro d'inventaire
      !
    • Slectionnez une plage pour les numros d'inventaire. Vous pouvez slectionner une srie continue ou une liste de codes disjoints
    • !
    • Slectionner le style de modle pour gnrer des codes barres
    • Dfinissez la taille de la page pour le PDF
    • !
    • Koha va afficher la disposition , qui varie suivant la taille de la page, de tous les codes barres.Vous pouvez dfinir quel endroit l'impression commence.
    *************** *** 117,121 **** ! --- 116,120 ----
    Code catgorie
    ! Index: printerConfig.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/printerConfig.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** printerConfig.tmpl 24 Nov 2004 16:13:31 -0000 1.1 --- printerConfig.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 4,8 ****
    Code Pays
    !
    Slectionner la configuration d'imprimante correspondant votre environnement
    --- 4,8 ---- !
    Slectionner la configuration d'imprimante correspondant votre environnement
    *************** *** 12,17 ****
  • Entrez le type de page
  • Entres le nombre de colonnes et de lignes dans votre page
  • !
  • Set margin left and margin bottom of the page that you are going to use. This parameters will ! help to center the barcodes into the labels.

  • --- 12,16 ----
  • Entrez le type de page
  • Entres le nombre de colonnes et de lignes dans votre page
  • !
  • Dfinissez les marges gauches et basses pour la page que vous souhaitez utiliser. Ces paramtres aideront centrer les codes barres sur les tiquettes.

  • *************** *** 96,100 ****
    !
    !
    ! --- 60,64 ----
    Abrg Utilis Le choisir
    ! Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- searchresultlist.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 35,39 ****
    Rsum Utilis Le choisir
    ! --- 35,39 ----
    Abrg Utilis Voir
    ! *************** *** 46,50 **** From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/errors 400.tmpl,1.1,1.2 401.tmpl,1.1,1.2 402.tmpl,1.1,1.2 403.tmpl,1.1,1.2 404.tmpl,1.1,1.2 405.tmpl,1.1,1.2 500.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/errors Modified Files: 400.tmpl 401.tmpl 402.tmpl 403.tmpl 404.tmpl 405.tmpl 500.tmpl Log Message: french version for 2.2.0 Index: 400.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/400.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 400.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 400.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 401.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/401.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 401.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 401.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • Cette erreur signifie que vous n'tes pas autoris visualiser cette page
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que vous n'tes pas autoris visualiser cette page
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 402.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/402.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 402.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 402.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 403.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/403.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 403.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 403.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 404.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/404.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 404.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 404.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 405.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/405.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 405.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 405.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a t rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • Index: 500.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/500.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 500.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 500.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,19 ****
    !
  • In koha this typically mean that the koha-team is working on a new options
  • Attendez une meilleure version ou envoyez un mail la maintenance
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • --- 13,19 ----
    !
  • Dans Koha, ceci signifie normalement, que l'quipe de Koha travaille de nouvelles options
  • Attendez une meilleure version ou envoyez un mail la maintenance
  • !
  • Utilisez la barre de menu principale pour naviguer nouveau dans Koha.
  • From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/bull bull-home.tmpl,1.1,1.2 statecollection.tmpl,1.1,1.2 subscription-add.tmpl,1.1,1.2 subscription-detail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/bull Modified Files: bull-home.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl Log Message: french version for 2.2.0 Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- bull-home.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 1,5 ****

    Aide de Abonnement Priodiques

    !
  • Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York
  • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement \ No newline at end of file --- 1,5 ----

    Aide de Abonnement Priodiques

    !
  • Chercher un abonnement en utilisant le bouton (avec un ISSN ou un titre)Si vous saisissez un titre, vous pouvez utiliser le joker % : %Monde% renverra tous les abonnement contenant Monde dans le titre
  • Si vous voulez crer un nouvel abonnement, cliquez sur Ajouter un abonnement \ No newline at end of file Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/statecollection.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** statecollection.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- statecollection.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 3,26 ****

    Cet cran est divis en 2 parties

    La partie droite

    !

    The right part deals with issues. When you create a new subscription, the 1st issue is automatically calculated. When you want/need, you can define issues that have a new status:

      !
    • Arrived : when an book arrives, you can set it's status to "arrived". Then, the issue disappear from this list, and the number of the issue is added to the "arrived list" (on the left box)
    • !
    • Late : means that the book is late and should be arrived. A books changed to "late" status stays on the issue list, and the next waited number is generated
    • !
    • Missing : means the book will never arrive. The issue disappear from the list, and the number of the issue is added to the "missing list" (on the left box)

    La partie gauche

    !

    the left part contains 6 differents informations, that are automatically calculated for some of them, but that you can change

      !
    • Subscription beginning date : the date of the beginning of the 1st subscription. Should not be modified and is not modified automatically by subscriptions renewals
    • !
    • Subscription enddate : must be entered manually when the subscription is definetly closed
    • !
    • Arrived numbers : the list of issues you have in your library. Automatically filled when a new number is marked "arrived". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • !
    • Missing numbers : the list of issues you don't have in your library, and that will never arrive (or have been lost). Automatically filled when a new number is marked "missing". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • !
    • opac note : the field that appears in the OPAC (with some other subscription information like beginning date & end date. This field must be filled manually. Nothing is put here automatically
    • !
    • opac note : the field that appears in the librarian interface (with some other subscription information like beginning date & end date. This field must be filled manually. Nothing is put here automatically.

    Renouvellement d'abonnement

    !

    Koha calculates automatically the end of the subscription (based on the start date and the number of issues recieved). when a subscription has ended, you can't change the status of the last "waited number" (as it's not waited in fact). To be able to "recieve" this number, you must renew your subscription.

    !

    Renewing a subscription means that you define some informations for the renewal. When those informations have been filled, a suggestion is automatically created in Koha. This suggestion can be managed by the librarian that orders books, as any other order (= budget & bookseller are defined here).

    !

    Note that the subscription renewal done by the "serials librarian" is supposed to be immediate. We have decided to keep Koha as simple as possible. In fact, the subscription renewal won't be immediate, but we didn't wanted to add too much complexity.

    \ No newline at end of file --- 3,26 ----

    Cet cran est divis en 2 parties

    La partie droite

    !

    La partie droite concerne les parutions.Quand vous crer un nouvel abonnement, le 1er numro est calcule automatiquement.Lorsque vous voulez/ avez besoin,vous pouvez dfinir les numeros qui ont un nouveau statut :

      !
    • Arriv : lorqu'un bulletin arrive, vous pouvez le mettre en tat"arriv". Le bulletin disparait de la liste et le numro est ajout dans la liste des bulletins arrivs ( gauche)
    • !
    • En retard : signifie que le document est en retard et devrait tre arriv.Un numro, qui not l'tat en retard reste dans la liste des bulletins attendus et le bulletin suivant attendu est gnr
    • !
    • Manquant : signifie que la livraison n'aura jamais lieu.Le numro disparat de la liste et est ajout la liste "Liste des lacunes" (sur la partie gauche)

    La partie gauche

    !

    Il y a 6 informations diffrentes dans la partie gauche, qui sont calcules automatiquement pour la plupart, mais vous pouvez les changer

      !
    • Date de dbut d'abonnement : la date de dbut du premier abonnement.Ne devrait tre modifie et n'est pas modifi automatiquement lors du renouvellement des abonnements
    • !
    • date de fin d'abonnement : doit tre entr manuellement lorsque l'abonnement est dfinitivement clos
    • !
    • Numros arrivs : la liste des numros que vous avez dans votre bibliothque. Automatiquement rempli quand un bulletin est marqu arriv. Vous pouvez modifier ce champ manuellement, par exemple pour changer une longue liste (1,2,3,4,...,51) en une plus courte(1-50)
    • !
    • Numros manquants : la liste des numros que vous n'avez pas dans votre bibliothque, et qui n'arriveront jamais (ou qui ont t perdus).
    • !
    • note de l'OPAC : le champ qui apparat l'OPAC (avec quelques autres informations sur l'abonnement comme la date de dbut et de fin).Ce champ doit tre rempli manuellement.Rien n'est mis ici automatiquement
    • !
    • Note de l'OPAC : le champ qui apparat dans l'interface bibliothcaire (avec quelques autres informations sur l'abonnement comme la date de dbut et de fin).Ce champ doit tre rempli manuellement.Rien n'est mis ici automatiquement

    Renouvellement d'abonnement

    !

    Koha calcule automatiquement la fin de l'abonnement ( partir de la date de dbut et du nombre d'exemplaires reus). Lorsqu'un abonnement a pris fin, vous ne pouvez plus changer l'tat du dernier "exemplaire en attente" (car il n'est plus attendu en fait). Pour pouvoir "recevoir" ce numro, vous devez renouveler votre abonnement.

    !

    Renouveller un abonnement signifie que vous devez complter quelques informations pour le renouvellement.Lorsque ces informations sont saisies, une suggestion est automatiquement cre dans Koha.Cette suggestion peut- tre gre par la/le bibliothcaire qui commande les livres, comme n'importe quelle autre commande (= budget et fournisseur sont dfinis ici).

    !

    Noter que le renouvellement de l'abonnement fait par le bibliothcaire responsable des priodiques est cens tre immdiat.Nous avons choisi de rendre Koha aussi simple que possible.En fait, le renouvellement de l'abonnement ne peut pas tre immdiat, mais nous n'avons pas voulu ajouter trop de complications.

    \ No newline at end of file Index: subscription-add.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/subscription-add.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-add.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- subscription-add.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 3,19 ****

      Bloc d'information d'abonnement

      !

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Bloc d'information sur le calendrier

      Contient des informations diverses pour calculer les dates d'arrive

      !

      Dur d'abonnement

      !

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Calcul de la numrotation

      !

      The numbering of issues recieved can be a complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Ajouter: ce nombre est ajout XYZ
      • !
      • once every : the number before can be added on every issue or less often
      • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
      • !
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • !
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Echantillon

      --- 3,19 ----

        Bloc d'information d'abonnement

        !

        Comporte le nom du bibliothcaire qui a cr l'abonnement, le nom du fournisseur qui procure l'abonnement, le prix et le budget affect.Comporte aussi le titre de la notice concerne par l'abonnement

        Bloc d'information sur le calendrier

        Contient des informations diverses pour calculer les dates d'arrive

        !

        Dure d'abonnement

        !

        Un champ de ce bloc doit tre rempli : la dure de l'abonnement peut tre calcule en semaines, mois ou nombre de numros recevoir

        Calcul de la numrotation

        !

        Le numro des bulletins reus peut tre une formule complexe. La formule peut contenir n'importe quel texte et/ou chiffre. {X} {Y} et {Z} sont particuliers. Vous pouvez les utiliser pour dfinir une formule de calcul. les valeurs de XYZ sont calcules de la manire suivante :

        • Ajouter: ce nombre est ajout XYZ
        • !
        • toutes les : le nombre avant peut tre ajouter chaque parution ou moins souvent
        • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
        • !
        • Retourner : si la condition prcdente est valide, le numro calcul est fix celui-ci la place
        • !
        • Dernire valeur/commence avec : la dernire valeur calcule ou la 1re (quand on ajoute un abonnement)

        Echantillon

        *************** *** 24,30 ****
      Donnera les numros de parution suivants !

      N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N2005/4, N2006/1

      ! Note: when you add a subscription, Koha consider you already have done the order, or that you will do it soon. So, NO information is sent to the acquisition module. This is not the case when the subscription expires. In this case, a subscription renewal creates a "suggestion" that is sent to the acquisition module.

      \ No newline at end of file --- 24,30 ----
    Donnera les numros de parution suivants !

    N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N 2005/4, N2006/1

    ! Note:lorsque vous ajoutez un abonnement, Koha considre que vous avez dj pass la commande o que vous allez le faire bientt.Aussi, AUCUNE information n'est envoye vers le module acquisition.Ca n'est pas le cas quand l'abonnement arive expiration.Dans ce cas,un renouvellement de l'abonnement cre une

    \ No newline at end of file Index: subscription-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/subscription-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-detail.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- subscription-detail.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 1,20 ****

    Aide de Abonnement Priodiques dtail

    ! In this screen, you can see subscription detail, and modify it if you need.

      Bloc d'information d'abonnement

      !

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Bloc d'information sur le calendrier

      Contient des informations diverses pour calculer les dates d'arrive

      !

      Dur d'abonnement

      !

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Calcul de la numrotation

      !

      The numbering of items recieved can contain complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Ajouter: ce nombre est ajout XYZ
      • !
      • once every : the number before can be added on every issue or less often
      • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
      • !
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • !
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Echantillon

      --- 1,20 ----

      Aide de Abonnement Priodiques dtail

      ! Sur cet cran, vous pouvez voir le dtail de l'abonnement, et le modifier si ncessaire.

        Bloc d'information d'abonnement

        !

        Comporte le nom du bibliothcaire qui a cr l'abonnement, le nom du fournisseur qui procure l'abonnement, le prix et le budget affect.Comporte aussi le titre de la notice concerne par l'abonnement

        Bloc d'information sur le calendrier

        Contient des informations diverses pour calculer les dates d'arrive

        !

        Dure d'abonnement

        !

        Un champ de ce bloc doit tre rempli : la dure de l'abonnement peut tre calcule en semaines, mois ou nombre de numros recevoir

        Calcul de la numrotation

        !

        La numrotation des exemplaires reus peut comprendre une formule complexe. La "Formule de numrotation" peut tre remplie avec n'importe quel texte et/ ou nombre.{X} {Y} et {Z} peuvent tre utilises pour dfinir la formule de calcul.Les valeurs de XYZ sont calcules selon la manire suivante

        • Ajouter: ce nombre est ajout XYZ
        • !
        • toutes les : le nombre avant peut tre ajouter chaque parution ou moins souvent
        • Quand suprieur : si le chiffre calcul est suprieur la valeur ci
        • !
        • Retourner : si la condition prcdente est valide, le numro calcul est fix celui-ci la place
        • !
        • Dernire valeur/commence avec : la dernire valeur calcule ou la 1re (quand on ajoute un abonnement)

        Echantillon

        *************** *** 23,27 ****
      • Y ajouter 1 toutes les 1 fois.Quand suprieur 4 Retourner 4. Commence par 1
      • Donnera les numros de parution suivants ! N2004/1,N2004/2,N2004/3,N2004/4,N2005/1,N2005/2,N2005/3,N2005/4,N2006/1

        --- 23,27 ----
      • Y ajouter 1 toutes les 1 fois.Quand suprieur 4 Retourner 4. Commence par 1
      • Donnera les numros de parution suivants ! N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N 2005/4, N2006/1

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple addbiblio.tmpl,1.12,1.13 addbooks.tmpl,1.5,1.6 additem-nomarc.tmpl,1.3,1.4 additem.tmpl,1.8,1.9 isbnsearch.tmpl,1.4,1.5 marcimport.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/acqui.simple Modified Files: addbiblio.tmpl addbooks.tmpl additem-nomarc.tmpl additem.tmpl isbnsearch.tmpl marcimport.tmpl Log Message: french version for 2.2.0 Index: addbiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/addbiblio.tmpl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** addbiblio.tmpl 24 Nov 2004 16:11:16 -0000 1.12 --- addbiblio.tmpl 5 Jan 2005 14:35:18 -0000 1.13 *************** *** 57,61 ****

        Vous devez soit :

        --- 57,61 ----

        Vous devez soit :

        *************** *** 455,460 **** alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(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 { --- 455,460 ---- alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_missing_mandatory_tags +_("Champ(s) obligatoire(s) non renseign(s)"); ! alertString2 += "\n- "+ total_missing_mandatory_subfields +_("champs obligatoires non renseigns (voir les champs en caractre gras)"); alert(alertString2); } else { Index: addbooks.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/addbooks.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** addbooks.tmpl 24 Nov 2004 16:11:16 -0000 1.5 --- addbooks.tmpl 5 Jan 2005 14:35:18 -0000 1.6 *************** *** 1,5 **** !
        !

        Gestion des notices MARC

        Pas d'exemplaire(s) trouv(s) --- 1,5 ---- !
        !

        Gestion des notices MARC

        Pas d'exemplaire(s) trouv(s) *************** *** 11,21 ****
        !

        Pour ajouter une nouvelle notice/exemplaire, scannez ou entrez le code ISBN/ ISSN

        !

        !

        Crer une nouvelle notice

        --- 11,21 ----

        !

        Pour ajouter une nouvelle notice/exemplaire, scannez ou entrez le code ISBN/ ISSN

        !

        !

        Crer une nouvelle notice

        *************** *** 27,40 **** ! !

        !

        Optimisation

        !

        If the ISBN or title is found in the biblio table, it will be retrieved and can be modified.
        ! If the ISBN or title is found in the breeding farm, it will be retrieved and a biblio will be added.
        ! Sinon, une notice peut-tre ajout partir de zro.

        ! --- 27,41 ---- ! ! !

        !

        Optimisation

        !

        Si l'ISBN ou le titre est trouv dans la table il peut tre rcupr puis modifi
        ! Si l'ISBN ou le titre est trouv dans le rservoir, il sera rcupr et une notice sera rajoute
        ! Sinon, une notice peut-tre ajoute en partant de zro.

        ! Index: additem-nomarc.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem-nomarc.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** additem-nomarc.tmpl 24 Nov 2004 16:11:16 -0000 1.3 --- additem-nomarc.tmpl 5 Jan 2005 14:35:18 -0000 1.4 *************** *** 5,9 ****

        !

        Vous devez attribuer un code barre l'exemplaire

        --- 5,9 ----

        !

        Vous devez attribuer un code barres l'exemplaire

        *************** *** 11,15 **** !

        Dsol, ce code barre est dj utilis

        NOTICE

        --- 11,15 ---- !

        Dsol, ce code barres est dj utilis

        NOTICE

        *************** *** 29,33 ****

        !

        --- 29,33 ----

        !

        *************** *** 44,48 ****

        AJOUTER UN NOUVEL EXEMPLAIRE

        Pour un site Web ajouter seulement le groupe

        !

        --- 44,48 ----

        AJOUTER UN NOUVEL EXEMPLAIRE

        Pour un site Web ajouter seulement le groupe

        !

        Index: additem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem.tmpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** additem.tmpl 24 Nov 2004 16:11:16 -0000 1.8 --- additem.tmpl 5 Jan 2005 14:35:18 -0000 1.9 *************** *** 46,53 **** "> !

        ERREUR : Code barre dj utilis!
        ! "> --- 46,53 ---- "> !
        ERREUR : Code barres dj utilis!
        ! "> *************** *** 95,99 **** alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_errors+_(" mandatory fields empty (see bold subfields)"); alert(alertString2); } --- 95,99 ---- alertString2 = _("Formulaire non soumis cause du (des) problme(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_errors+_("champs obligatoires non renseigns (voir les champs en caractre gras)"); alert(alertString2); } *************** *** 104,108 **** } function confirm_deletion(bibid,itemnum) { ! var is_confirmed = confirm(_('Confirmez-vous la suppression de l'ouvrage ?')); if (is_confirmed) { window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum; --- 104,108 ---- } function confirm_deletion(bibid,itemnum) { ! var is_confirmed = confirm(_('Confirmez-vous la suppression de l exemplaire ?')); if (is_confirmed) { window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum; Index: isbnsearch.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/isbnsearch.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** isbnsearch.tmpl 24 Nov 2004 16:11:16 -0000 1.4 --- isbnsearch.tmpl 5 Jan 2005 14:35:18 -0000 1.5 *************** *** 1,7 **** !
        !

        Rsultats de la recherche de notice

        !

        Vous recherchiez ISBN titre

        rponses

        --- 1,7 ---- !
        !

        Rsultats de la recherche de notice

        !

        Vous recherchiez ISBN titre

        rponses

        *************** *** 10,20 ****
        !

        Notices dans Koha

  • Rsum Utilis Voir "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt="Autorit numro "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt='Autorit numro ' title='autorit numro '>
    ! ! ! ! --- 10,20 ----
    !

    Notices dans Koha

    TitreAuteur&copier; 
    ! ! ! ! *************** *** 25,31 **** ! ! --- 25,31 ---- ! ! *************** *** 61,65 ****

    !

    Notices dans le rservoir

    TitreAuteur&copier; 
    " class="button acquisition">Ajouter des ouvrages " class="button acquisition">Ouvrir
    " class="button catalogue">Ajouter des documents " class="button catalogue">Ouvrir
    --- 61,65 ----

    !

    Notices dans le rservoir

    *************** *** 91,97 ****

    ! " class="button acquisition">Ajouter une nouvelle notice ! " class="button acquisition">Ajouter une nouvelle notice

    --- 91,103 ----

    ! " class="button catalogue">Ajouter une nouvelle notice ! ! " class="button catalogue">Ajouter une nouvelle notice

    *************** *** 99,101 **** ! --- 105,107 ---- ! Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/marcimport.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** marcimport.tmpl 24 Nov 2004 16:11:16 -0000 1.4 --- marcimport.tmpl 5 Jan 2005 14:35:18 -0000 1.5 *************** *** 12,18 ****

      enregistrements imports

      !

      non import parce que dj dans la base de donne

      non import,parce que dj dans le rservoir

      !

      not imported because they seems not to be MARC format (or ISBN/ISSN missing) !

      enregistrements traits

      Retour aux acquisitions --- 12,18 ----

        enregistrements imports

        !

        non import parce que dj dans la base de donnes

        non import,parce que dj dans le rservoir

        !

        non import parce qu'ils ne semblent pas tre au format MARC (ou n ISBN/ ISSN manquant) !

        enregistrements traits

        Retour aux acquisitions *************** *** 20,27 ****

          !
        • Select a file to import into the breeding farm. It will be parsed, and for each ISBN found, a new baby will be created in the breeding farm.
        • !
        • If an ISBN already exists in the breeding farm, you can choose whether to ignore the new one or overwrite the old one.
        • !
        • You can enter a name for this import. It may be useful, when creating a biblio, to remember where the suggested MARC data comes from!
        • !
        • Of course, if the ISBN already exists in the active DB, the biblio will be ignored.
        " enctype="multipart/form-data"> --- 20,27 ----
          !
        • Slectionner un fichier importer dans le rservoir.Il sera analys, et pour chaque ISBN trouv, une nouvelle copie sera cr dans le rservoir.
        • !
        • Si un ISBN existe dj dans le rservoir, vous pouvez choisir soit d'ignorer le nouveau soit d'craser l'ancien.
        • !
        • Vous pouvez donner un nom cette importation. Cela peut tre utile, lors de la cration d'une notice, pour vous souvenir d'o vient l'enregistrement MARC propos!
        • !
        • Bien sr, si l'ISBN existe dj dans la base de donnes, la notice sera ignore.
        " enctype="multipart/form-data"> From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/bull receipt-search-result.tmpl,1.1,1.2 result.tmpl,1.1,1.2 search.tmpl,1.1,1.2 searchresultlist.tmpl,1.1,1.2 serial-issues.tmpl,1.1,1.2 statecollection.tmpl,1.1,1.2 subscription-add.tmpl,1.1,1.2 subscription-detail.tmpl,1.1,1.2 subscription-renew.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/bull Modified Files: receipt-search-result.tmpl result.tmpl search.tmpl searchresultlist.tmpl serial-issues.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl subscription-renew.tmpl Log Message: french version for 2.2.0 Index: receipt-search-result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/receipt-search-result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** receipt-search-result.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- receipt-search-result.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 36,40 ****
    --- 36,40 ---- Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** result.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- result.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 31,35 ****
    ! --- 31,35 ----
    Abrg  
    ! *************** *** 48,56 **** --- 48,52 ---- Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- search.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 11,15 ****

    Rechercher sur

    ! --- 11,15 ----

    Rechercher sur

    ! Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- searchresultlist.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 31,35 ****

    Rsum  
    class="hilighted"> - ','') ">Le choisir - - Non Rservable -
    ! --- 31,35 ----
    Abrg Utilis Voir
    ! *************** *** 42,46 **** Index: serial-issues.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/serial-issues.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** serial-issues.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- serial-issues.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 68,72 ****

    Abonnement pour ! prts semaines mois --- 68,72 ----

    Abonnement pour ! sorties semaines mois Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/statecollection.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** statecollection.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- statecollection.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 3,32 ****

    !

    Abonnement pour

    " class="button bull">Abonnement
    -

    Rsum d'abonnement

    - - - "> - "> - "> -

    -

    ">

    -

    ">

    -

    N Arrivs

    -

     

    -

    Numros enregistrs

    -

     

    -

    Remarque de l'OPAC

    -

     

    -

    Note interne

    -

     

    - - -
    - -

    Numros attendus ou en retard

    --- 3,10 ----
    !

    Abonnement pour

    " class="button bull">Abonnement

    Numros attendus ou en retard

    *************** *** 83,92 **** !

    Subscription has expired. Waited last issue status can't be changed. Renew your subscription

    !
    Rsum Utilis Voir "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt="Autorit numro "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt='Autorit numro ' title='Autorit numro '>
    From oleonard at users.sourceforge.net Wed Jan 5 16:46:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 05 Jan 2005 07:46:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes countryCodes.dat,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10266/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes Added Files: countryCodes.dat Log Message: Required for barcode generator --- NEW FILE --- 00 = USA I 93 = Australia 94 = New Zealand 779 = Argentina 773 = Uruguay 30 = France I 84 = Spain 45 = Japan 777 = Bolivia 80 = Italy I 73 = Sweden 40 = Germany 31 = France II 254 = Ucrania From oleonard at users.sourceforge.net Wed Jan 5 16:46:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 05 Jan 2005 07:46:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig itemsLabelConfig.conf,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10266/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig Added Files: itemsLabelConfig.conf Log Message: Required for barcode generator --- NEW FILE --- marginBottom = 25 pageType = A4 columns = 5 systemDpi = 96 labelHeigth = 21 rows = 13 marginLeft = 2 labelWidth = 41 From tipaul at users.sourceforge.net Thu Jan 6 15:32:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Thu, 06 Jan 2005 06:32:20 -0800 Subject: [Koha-cvs] CVS: koha/C4 Biblio.pm,1.114,1.115 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15653/C4 Modified Files: Biblio.pm Log Message: improvement of speed for bulkmarcimport. A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas. this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10. Index: Biblio.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v retrieving revision 1.114 retrieving revision 1.115 diff -C2 -r1.114 -r1.115 *** Biblio.pm 3 Jan 2005 10:48:33 -0000 1.114 --- Biblio.pm 6 Jan 2005 14:32:17 -0000 1.115 *************** *** 1135,1140 **** my $tagfield; my $subfield; ! $sth->execute($frameworkcode, $kohatable . "." . $kohafield ); ! ( $tagfield, $subfield ) = $sth->fetchrow; foreach my $field ( $record->field($tagfield) ) { if ( $field->subfield($subfield) ) { --- 1135,1139 ---- my $tagfield; my $subfield; ! ( $tagfield, $subfield ) = MARCfind_marc_from_kohafield("",$kohatable.".".$kohafield,$frameworkcode); foreach my $field ( $record->field($tagfield) ) { if ( $field->subfield($subfield) ) { *************** *** 2635,2638 **** --- 2634,2642 ---- # $Id$ # $Log$ + # Revision 1.115 2005/01/06 14:32:17 tipaul + # improvement of speed for bulkmarcimport. + # A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas. + # this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10. + # # Revision 1.114 2005/01/03 10:48:33 tipaul # * bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) From tipaul at users.sourceforge.net Thu Jan 6 16:25:38 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Thu, 06 Jan 2005 07:25:38 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr migrer_ses_donnees.xml,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha-doc/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27117/fr Added Files: migrer_ses_donnees.xml Log Message: document explaining how to migrate data & set up a highly tuned Koha catalogue (in French, sorry for frenchphobes or french-ignorants) --- NEW FILE --- Paramtrer et migrer ses donnes vers Koha 2.2 Introduction 2002-01-06 Paul POULAIN Consultant indpendant en logiciels libres, Koha "Release Manager" pour la version 2.0 puis 2.2, membre du comit de pilotage internationalpaul AT koha-fr.org 2.2.0 2005-01-06 pp Version initiale [...1138 lines suppressed...] ); newField = MARC::Field->new( '200','','', 'a' => $resul{TIT}, 'b' => $resul{TYP}, 'e' => $resul{STI}, 'f' => $resul{AUT}, 'g' => $resul{NOT}, ); $newRecord->insert_fields_ordered($newField); my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); Notez que le code qui prcde ne traite pas des notices d'exemplaire (l, c'est vraiment trop spcifique) From shedges at users.sourceforge.net Mon Jan 10 12:59:20 2005 From: shedges at users.sourceforge.net (skemotah) Date: Mon, 10 Jan 2005 03:59:20 -0800 Subject: [Koha-cvs] CVS: koha-doc/en/sysadmin/installation Installing_Koha_on_Fedora.xml,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha-doc/en/sysadmin/installation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv749 Modified Files: Installing_Koha_on_Fedora.xml Log Message: Add info on Apache and selinux Index: Installing_Koha_on_Fedora.xml =================================================================== RCS file: /cvsroot/koha/koha-doc/en/sysadmin/installation/Installing_Koha_on_Fedora.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Installing_Koha_on_Fedora.xml 2 Jan 2005 14:12:40 -0000 1.1 --- Installing_Koha_on_Fedora.xml 10 Jan 2005 11:59:17 -0000 1.2 *************** *** 6,10 **** ! 2005-01-03 --- 6,10 ---- ! 2005-01-09 *************** *** 24,27 **** --- 24,39 ---- + + + 2.2.0p1 + + 2005-01-08 + + jmf + + + Add information on SELinux to Apache section + + *************** *** 457,461 **** Note that If MySQL fails to start you ! may need to adjust selinux. To do that type the following:[root at koha ~]# setenforce 0 [root at koha ~]# mysql_install_db --- 469,473 ---- Note that If MySQL fails to start you ! may need to adjust SELinux. To do that type the following:[root at koha ~]# setenforce 0 [root at koha ~]# mysql_install_db *************** *** 522,525 **** --- 534,561 ---- Apache's log files are in /var/log/httpd. + + As with MySQL, there is an issue with + SELinux on Fedora Core 3 and the + Apache web server that prevents execution of + the CGI scripts. Instead of disabling SELinux for httpd, just change the + context for the Koha directories. The utility + for doing this is called 'chcon.' Here's a brief + description of how to use it: + + First, check the context for the directories that you know work + for httpd:[root at koha]# ls -Z /var/www/ + drwxr-xr-x root root system_u:object_r:httpd_sys_script_exec_t cgi-bin + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t error + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t html + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t icons + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t manual + drwxr-xr-x webalize root system_u:object_r:httpd_sys_content_t usage + + Then, use the chcon utility to label the Koha + subdirectories as for their counterparts in + /var/www. Here's the syntax:chcon <context> /usr/local/koha/<subdirectory> + + For more info on SELinux check out the Fedora Core 3 FAQ: http://fedora.redhat.com/docs/selinux-faq-fc3/ From oleonard at users.sourceforge.net Mon Jan 10 17:46:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 08:46:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4,1.4.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28801/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member.tmpl Log Message: Removing accidentally-hardcoded member number Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** member.tmpl 27 Oct 2004 15:35:03 -0000 1.4 --- member.tmpl 10 Jan 2005 16:46:54 -0000 1.4.2.1 *************** *** 31,35 ****
    Edit
    " -->&modify=edit">Edit
    Edit
    &modify=edit">Edit
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    FieldLib for librarians / for opacRepeatMandKoha fieldTabAuthorised value or
    ! Thesaurus category
    - " size="40" maxlength="80" />
    ! " size="40" maxlength="80" />

    ! or
    ! or
    '; return false;" /> !

    Note : in the last column, you can choose :

    !
    • An "authorised value" : it refers to a list of authorised value for this subfield. See the corresponding admin table
    • !
    • A "thesaurus category" : it refers to a thesaurus category. See the corresponding admin table
    • !
    • A "value builder" : values builders are perl program that helps you select the value of the field. They are MARC-flavor dependant and sometimes fills an other subfield automaticaly
    ! ! ! !
    ! ! ! - -
    Confirm Deletion of Subfield
    Subfield
     
    -
    " method="post">" /> - " /> - " />
    " method="post">" />
    ! ! Data deleted !
    method="post">" /> !
    ! ! !

    MARC subfield structure admin for

    !

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on "edit".

    !

    The column koha field shows that the subfield is linked with a "koha field". Koha can manage a marc interface, or a koha interface. This link ! ensure that both DB are synchronized, thus you can change from MARC to KOHA interface easily.

    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    SubfieldLibKoha Field ?Rep ?Mand ?Tab ?Auth value ?Thesaurus ?Val build ? Delete
       YesNo YesNo     ">Delete
    !
    //images/1leftarrow.png" title="previous" alt="previous" border="0" /> ! !
    " />
    ! !
    " name="searchfield" />
    //images/1rightarrow.png" title="next" alt="next" border="0" />
    !
    - --- 4,171 ---- Data Deleted MARC Subfield Structure for '' ! !
    ! ! !

    Edit MARC subfields constraints !

    !
    " name="Aform" method="post"> ! " /> ! ! ! ! ! "> ! ! "> ! ! "> ! ! "> ! ! ! "> ! ! ! "> ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! !

    Tag , Subfield

    MARC constraints

    " size="20" />(example for 200a : '200c','200d','200e'...)

    Editor constaints

    " size="40" maxlength="80" />
    " size="40" maxlength="80" />
    (ignore means that the subfield is NOT managed by Koha)
    (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)
    (if checked, it means that the subfield is an URL and can be clicked
    " size="10" maxlength="5"> (exemple :200b)

    ! ! !

    Note: in the last column, you can choose:

    !
    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • !
    • A "thesaurus category": it refers to a thesaurus category. See the corresponding admin table.
    • !
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! Data deleted ! " method="post">"> ! ! ! !

    MARC subfield structure admin for (framework )

    !

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    !

    The column Koha field shows that the subfield is linked with a Koha field. Koha can manage a MARC interface, or a Koha interface. This link ensures that both DB are synchronized, thus you can change from a MARC to a Koha interface easily.

    !
    /images/background-mem.gif">Subfield/images/background-mem.gif">
     
    CONFIRM DELETION
    !
    " method="post"> ! ! "> ! "> ! "> ! "> ! !
    !
    !
    " method="post"> ! "> ! "> ! "> ! "> ! !
    !
    ! ! ! ! "> ! ! ! ! !
    SubfieldTextConstraints Delete
    ! ! ! ! ! ! ! ! subfield ignored ! ! Tab :, ! Koha field : , ! Repeatable, Not repeatable, ! Mandatory, Not mandatory, ! see also : , ! hidden, ! is an url, ! Auth value :, ! Authority :, ! Plugin :, ! Link:, ! ! ">Delete
    " method="get">" name="tagfield" />" name="frameworkcode" />
    !
    " name="searchfield" />" name="frameworkcode" />
    ! ! ! ! ! ! ! !
    From oleonard at users.sourceforge.net Mon Jan 10 18:02:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 09:02:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull lateissues.tmpl,NONE,1.1 bull-home.tmpl,1.1,1.2 order.tmpl,1.1,1.2 result.tmpl,1.1,1.2 search-supply.tmpl,1.1,1.2 search.tmpl,1.1,1.2 statecollection.tmpl,1.2,1.3 subscription-add.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32715/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: bull-home.tmpl order.tmpl result.tmpl search-supply.tmpl search.tmpl statecollection.tmpl subscription-add.tmpl Added Files: lateissues.tmpl Log Message: Adding NPL versions of these templates --- NEW FILE --- Koha -- Serials Subscriptions

    Late issues

    Supplier Title Issue number Late since  
    ">Details">Receive
    Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- bull-home.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,3 **** ! Koha -- Serials Subscriptions --- 1,3 ---- ! Koha -- Serials Subscriptions *************** *** 13,17 ****
     
    --- 13,16 ---- *************** *** 21,28 **** "> !
    !
    ! ">Detail ! ">Recieve !
    There are no subscriptions.
    ! Add subscription

    --- 34,45 ---- ! ">Detail">Receive ! Enter search terms above to display subscriptions !

    Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/order.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** order.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- order.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,3 **** !

    Supplier Search Results

    --- 1,3 ---- ! Supplier Search Results

    Supplier Search Results

    Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** result.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- result.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 7,12 **** ! ! =&resultsperpage=&type=intranet&op=do_search"> --- 7,12 ---- ! ! =&resultsperpage=&type=intranet&op=do_search"> *************** *** 40,46 ****

    ! !
    ',''); return false;" />
    Not Reservable ! --- 40,44 ----

    !
    ',''); return false;" />
    Index: search-supply.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search-supply.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search-supply.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- search-supply.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,4 **** ! !

    Search supplier for serial subscription

    --- 1,3 ---- ! Search supplier for serial subscription

    Search supplier for serial subscription

    Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- search.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 13,17 **** ! ! (" onclick="PopupSuggestion(); return false;">Suggestions) !

    ! Suggestions

    --- 27,31 ---- !

    Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/statecollection.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** statecollection.tmpl 2 Nov 2004 21:38:41 -0000 1.2 --- statecollection.tmpl 10 Jan 2005 17:02:54 -0000 1.3 *************** *** 19,26 **** " /> " /> ! ! !

    --- 19,26 ---- " /> " /> ! ! ! -->

    Index: subscription-add.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-add.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** subscription-add.tmpl 2 Nov 2004 21:38:41 -0000 1.2 --- subscription-add.tmpl 10 Jan 2005 17:02:54 -0000 1.3 *************** *** 1,6 **** ! Koha -- Modify a SubscriptionAdd a New Subscription !
    --- 1,6 ---- ! Koha -- Modify a SubscriptionAdd a New Subscription !
    *************** *** 8,25 ****

    Modify subscription

    ! ! ">

    Add a subscription

    !
    ! ! !
    Subscription information for
    ! "> Librarian:
    " size="4"> (" disabled readonly>)
    " size="4"> (" disabled readonly>)
    --- 8,25 ----

    Modify subscription

    ! ! " />

    Add a subscription

    !
    ! ! !
    Subscription information for
    ! " /> Librarian:
    " size="4" /> (" disabled="disabled" readonly="readonly" />)
    " size="4" /> (" disabled="disabled" readonly="readonly" />)
    *************** *** 33,92 **** ! From tipaul at users.sourceforge.net Wed Jan 19 18:17:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:17:32 -0800 Subject: [Koha-cvs] CVS: koha/admin auth_subfields_structure.pl,1.3,1.3.2.1 marc_subfields_structure.pl,1.32,1.32.2.1 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24771/admin Modified Files: Tag: rel_2_2 auth_subfields_structure.pl marc_subfields_structure.pl Log Message: fix for #902 (it's impossible to set the subfield 400$0) Index: auth_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/auth_subfields_structure.pl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** auth_subfields_structure.pl 10 Jun 2004 08:58:34 -0000 1.3 --- auth_subfields_structure.pl 19 Jan 2005 17:17:08 -0000 1.3.2.1 *************** *** 200,204 **** my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; --- 200,204 ---- my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield ne ''; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32 retrieving revision 1.32.2.1 diff -C2 -r1.32 -r1.32.2.1 *** marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 --- marc_subfields_structure.pl 19 Jan 2005 17:17:10 -0000 1.32.2.1 *************** *** 282,286 **** my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; --- 282,286 ---- my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield ne ''; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; From tipaul at users.sourceforge.net Wed Jan 19 18:24:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:24:20 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22,1.22.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26371/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: removing 2 useless columns Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22 retrieving revision 1.22.2.1 diff -C2 -r1.22 -r1.22.2.1 *** categorie.tmpl 3 Dec 2004 21:44:04 -0000 1.22 --- categorie.tmpl 19 Jan 2005 17:24:11 -0000 1.22.2.1 *************** *** 255,261 **** - - --- 255,259 ---- *************** *** 270,274 **** - - --- 274,277 ---- From tipaul at users.sourceforge.net Wed Jan 19 18:32:47 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:32:47 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters auth_tag_structure.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27964/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 auth_tag_structure.tmpl Log Message: in authority structure, trying to delete a tag in an authority type, deleted the tag in the default authority type. Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** auth_tag_structure.tmpl 19 Jul 2004 19:19:54 -0000 1.2 --- auth_tag_structure.tmpl 19 Jan 2005 17:32:31 -0000 1.2.2.1 *************** *** 89,92 **** --- 89,93 ----
    " method="post"> + "> ">
    From oleonard at users.sourceforge.net Wed Jan 19 18:40:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 09:40:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29449/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member.tmpl Log Message: Fixing typo: nested TMPL_VAR tag that would cause internal server error Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** member.tmpl 10 Jan 2005 16:46:54 -0000 1.4.2.1 --- member.tmpl 19 Jan 2005 17:40:33 -0000 1.4.2.2 *************** *** 31,35 **** --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Wed Jan 19 18:44:02 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 09:44:02 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-user.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30092/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-user.tmpl Log Message: Removing non-functional renew link Index: opac-user.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-user.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-user.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-user.tmpl 19 Jan 2005 17:43:58 -0000 1.1.2.1 *************** *** 86,90 **** - --- 86,89 ---- *************** *** 97,107 **** YesNo --> - --- 96,99 ---- From oleonard at users.sourceforge.net Wed Jan 19 22:18:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:18:10 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-user.pl,1.14,1.15 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6934/opac Modified Files: opac-user.pl Log Message: Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should not be shown as waiting. Index: opac-user.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-user.pl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-user.pl 4 May 2004 15:46:58 -0000 1.14 --- opac-user.pl 19 Jan 2005 21:18:06 -0000 1.15 *************** *** 124,128 **** --- 124,133 ---- foreach my $res (@$reserves) { if ($res->{'itemnumber'}) { + my $item = getiteminformation('',$res->{'itemnumber'},''); + $res->{'holdingbranch'} = $branches->{$item->{'holdingbranch'}}->{'branchname'}; $res->{'branch'} = $branches->{$res->{'branchcode'}}->{'branchname'}; + if($res->{'holdingbranch'} eq $res->{'branch'}){ + $res->{'atdestination'} = 1; + } push @waiting, $res; $wcount++; From oleonard at users.sourceforge.net Wed Jan 19 22:22:01 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:22:01 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-user.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8040/koha-tmpl/opac-tmpl/npl/en Modified Files: opac-user.tmpl Log Message: Updated to show items as waiting only if destination branch matches holding branch. Reserves table is also updated to show 'waiting' if item is at its destination branch, or 'in-transit' if item has been allocated but hasn't arrived yet. Index: opac-user.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-user.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-user.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-user.tmpl 19 Jan 2005 21:21:59 -0000 1.2 *************** *** 41,55 **** ! ! ! !
    Planning
    " size="13" maxlength="10">
    ! ! ! ! ! !
    Planning
    " size="13" maxlength="10" />
    ! ! !
    Subscription Length (choose one)
    ">
    ">
    ">

    Numbering calculation

    -

    " />

    --- 138,148 ----
    ! ! !
    Subscription Length (choose one)
    " />
    " />
    " />

    Numbering calculation

    " />

    *************** *** 167,193 **** ! ! ! ! ! ! ! ! ! ! ! ! --- 166,192 ---- ! ! ! ! ! ! ! ! ! ! ! ! *************** *** 199,217 **** ! ! !
    ">">">
    ">">">
    ">">">
    ">">">
    " />" />" />
    " />" />" />
    " />" />" />
    " />" />" />
    ">">">
    ! ! - - Index: opac-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -C2 -r1.8 -r1.8.2.1 *** opac-top.inc 3 Jan 2005 10:58:46 -0000 1.8 --- opac-top.inc 13 Jan 2005 06:01:47 -0000 1.8.2.1 *************** *** 10,13 **** --- 10,14 ---- <!--TMPL_VAR name="LibraryName"--> + --- 5,9 ---- OPAC Basket ! /includes/opac.css"> Index: opac-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc,v retrieving revision 1.8.2.1 retrieving revision 1.8.2.2 diff -C2 -r1.8.2.1 -r1.8.2.2 *** opac-top.inc 13 Jan 2005 06:01:47 -0000 1.8.2.1 --- opac-top.inc 13 Jan 2005 07:40:24 -0000 1.8.2.2 *************** *** 10,14 **** <!--TMPL_VAR name="LibraryName"--> ! From oleonard at users.sourceforge.net Thu Jan 13 23:41:06 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 13 Jan 2005 14:41:06 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en request.tmpl,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22173/koha-tmpl/intranet-tmpl/default/en Modified Files: request.tmpl Log Message: Adding quick search link. This opens a pop-up to allow for searching for member card number. Choosing a member from the search results list closes the window and populates the card number field in request.pl template. Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/request.tmpl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** request.tmpl 26 Nov 2004 20:47:06 -0000 1.16 --- request.tmpl 13 Jan 2005 22:41:03 -0000 1.17 *************** *** 1,5 ****
    !
    "> --- 1,5 ----
    ! "> *************** *** 22,26 ****

    !

    --- 22,26 ----

    !

    (Quick Search)

    *************** *** 149,151 **** --- 149,162 ----
    + From oleonard at users.sourceforge.net Thu Jan 13 23:41:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 13 Jan 2005 14:41:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/members member-quicksearch-results.tmpl,NONE,1.1 member-quicksearch.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22310/koha-tmpl/intranet-tmpl/default/en/members Added Files: member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: templates for member quicksearch (to allow quick member searching in popup from request page) --- NEW FILE ---

    Member Search

      Card Surname Firstname Address
    ','request','member'); return false;" /> ">
    --- NEW FILE ---

    Member Quick Search

    From shedges at users.sourceforge.net Fri Jan 14 00:56:51 2005 From: shedges at users.sourceforge.net (skemotah) Date: Thu, 13 Jan 2005 15:56:51 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr/sysadmin/migration migrer_ses_donnees.xml,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha-doc/fr/sysadmin/migration In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6557 Added Files: migrer_ses_donnees.xml Log Message: validate xml and move to migration directory --- NEW FILE ---
    Paramétrer et migrer ses données vers Koha 2.2 2005-01-06 Paul POULAIN Consultant indépendant en logiciels libres, Koha "Release Manager" pour la version 2.0 puis 2.2, membre du comité de pilotage international [...1229 lines suppressed...] '011','','', 'a' => $resul{ISSN}, ); newField = MARC::Field->new( '200','','', 'a' => $resul{TIT}, 'b' => $resul{TYP}, 'e' => $resul{STI}, 'f' => $resul{AUT}, 'g' => $resul{NOT}, ); $newRecord->insert_fields_ordered($newField); my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); Notez que le code qui précède ne traite pas des notices d'exemplaire (là, c'est vraiment trop spécifique)
    From shedges at users.sourceforge.net Fri Jan 14 01:00:09 2005 From: shedges at users.sourceforge.net (skemotah) Date: Thu, 13 Jan 2005 16:00:09 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr migrer_ses_donnees.xml,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha-doc/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7189 Modified Files: migrer_ses_donnees.xml Log Message: validate xml (moved to migration subdirectory) Index: migrer_ses_donnees.xml =================================================================== RCS file: /cvsroot/koha/koha-doc/fr/migrer_ses_donnees.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** migrer_ses_donnees.xml 6 Jan 2005 15:25:36 -0000 1.1 --- migrer_ses_donnees.xml 13 Jan 2005 23:59:54 -0000 1.2 *************** *** 1,89 **** ! ! ! ! Paramtrer et migrer ses donnes vers Koha 2.2 ! Introduction ! 2002-01-06 [...2041 lines suppressed...] ! Notez que le code qui prcde ne traite pas des notices ! d'exemplaire (l, c'est vraiment trop spcifique) ! ! \ No newline at end of file --- 1259,1268 ---- ); $newRecord->insert_fields_ordered($newField); ! my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); ! Notez que le code qui précède ne traite pas des notices ! d'exemplaire (là, c'est vraiment trop spécifique) ! ! \ No newline at end of file From oleonard at users.sourceforge.net Fri Jan 14 16:41:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:41:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help bull-home.tmpl,NONE,1.1.2.1 nohelp.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31882/koha-tmpl/intranet-tmpl/npl/en/help Added Files: Tag: rel_2_2 bull-home.tmpl nohelp.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Serials Subscriptions

    Serials subscription help

    Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York

    If you want to create a new subscription, click the "Add subscription" button.

    Once you have found the subscription you need, you can:

    • View subscription details
    • Recieve any item and/or manage what appears in subscription summary (in OPAC and librarian interface)
    --- NEW FILE --- Online Help: No help for this topic!

    Online Help

    Sorry, there is no help available for this topic

    From oleonard at users.sourceforge.net Fri Jan 14 16:42:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/search.marc search.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/search.marc Added Files: Tag: rel_2_2 search.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Search

    Search

    The search id divided in 2 differents parts :

    Usual fields

    The usual fields are in the top part of the screen. They contains :

    • Keyword : search on anything
    • Title
    • Author
    • Barcode : the library barcode of the book
    • Illustrator
    • Dewey
    • Item type : select here an item type. If none is selected, the search is done on every item type
    • Branch : select here a specific branch. If none selected, the search is done on every branch

    Search method

    • If you enter values in more than 1 field, the search is "and-ed" (biblios that contains title AND author)
    • A biblio is selected if it's field contains the term you entered
    • If you enter a * (or a %) at the end of a term, Koha search for words starting with your term (entering lower* means : find biblio that have a title containing a word starting by lower

    Complete MARC search

    In the lower part of the search screen, the More fields box let you enter whatever you want : and, or, exclusions (not), search on any MARC field/subfield

    IMPORTANT NOTE : for performance reasons, the * is valid only if you enter a word more than 3 letters long. for words of 3 letters or less, the * is ignored


    From oleonard at users.sourceforge.net Fri Jan 14 16:42:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/bull bull-home.tmpl,NONE,1.1.2.1 statecollection.tmpl,NONE,1.1.2.1 subscription-add.tmpl,NONE,1.1.2.1 subscription-detail.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/bull Added Files: Tag: rel_2_2 bull-home.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Serials Subscriptions

    Serials subscription help

    Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York

    If you want to create a new subscription, click on "Add subscription"

    --- NEW FILE --- Online Help: Serials -- Issues and Summary

    Serials issues and summary

    This screen is divided in 2 parts

    The right part

    The right part deals with issues. When you create a new subscription, the 1st issue is automatically calculated. When you want/need, you can define issues that have a new status:

    • Arrived : when an book arrives, you can set it's status to "arrived". Then, the issue disappear from this list, and the number of the issue is added to the "arrived list" (on the left box)
    • Late : means that the book is late and should be arrived. A books changed to "late" status stays on the issue list, and the next waited number is generated
    • Missing : means the book will never arrive. The issue disappear from the list, and the number of the issue is added to the "missing list" (on the left box)

    The left part

    the left part contains 6 differents informations, that are automatically calculated for some of them, but that you can change

    • Subscription beginning date : the date of the beginning of the 1st subscription. Should not be modified and is not modified automatically by subscriptions renewals
    • Subscription enddate : must be entered manually when the subscription is definetly closed
    • Arrived numbers : the list of issues you have in your library. Automatically filled when a new number is marked "arrived". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • Missing numbers : the list of issues you don't have in your library, and that will never arrive (or have been lost). Automatically filled when a new number is marked "missing". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • opac note : the field that appears in the OPAC (with some other subscription information like beginning date and end date. This field must be filled manually. Nothing is put here automatically
    • opac note : the field that appears in the librarian interface (with some other subscription information like beginning date and end date. This field must be filled manually. Nothing is put here automatically.

    Subscription renewals

    Koha calculates automatically the end of the subscription (based on the start date and the number of issues recieved). when a subscription has ended, you can't change the status of the last "waited number" (as it's not waited in fact). To be able to "recieve" this number, you must renew your subscription.

    Renewing a subscription means that you define some informations for the renewal. When those informations have been filled, a suggestion is automatically created in Koha. This suggestion can be managed by the librarian that orders books, as any other order (= budget and bookseller are defined here).

    Note that the subscription renewal done by the "serials librarian" is supposed to be immediate. We have decided to keep Koha as simple as possible. In fact, the subscription renewal won't be immediate, but we didn't wanted to add too much complexity.

    --- NEW FILE --- Online Help: Serials -- Adding Subscriptions

    Serials subscription add and modify help

      Subscription information bloc

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Planning information bloc

      it contains various information to calculate arrival dates.

      Subscription length

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Numbering calculation

      The numbering of issues recieved can be a complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Add : the number here is added to XYZ
      • once every : the number before can be added on every issue or less often
      • When more than : if the calculated number is more than the value here
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Sample

      Consider the formula N{X}/{Y}. The following XYZ settings :
      • X add 1 once every 4 times. When more than 9999999 set back to empty. Begins with 2004
      • Y add 1 once every 1 times. When more than 4 set back to 4. Begins with 1
      will result in the following issues numbers :

      N2004/1, N2004/2, N2004/3, N2004/4, N2005/1, N2005/2, N2005/3, N2005/4, N2006/1

      Note: when you add a subscription, Koha consider you already have done the order, or that you will do it soon. So, NO information is sent to the acquisition module. This is not the case when the subscription expires. In this case, a subscription renewal creates a "suggestion" that is sent to the acquisition module.

      --- NEW FILE --- Online Help: Serials Subscription Detail

      Serials subscription detail help

      In this screen, you can see subscription detail, and modify it if you need.

        Subscription information bloc

        it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

        Planning information bloc

        it contains various information to calculate arrival dates.

        Subscription length

        one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

        Numbering calculation

        The numbering of items recieved can contain complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

        • Add : the number here is added to XYZ
        • once every : the number before can be added on every issue or less often
        • When more than : if the calculated number is more than the value here
        • Set back to : if the previous condition is valid, the calculated number is set to this one instead
        • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

        Sample

        Consider the formula N{X}/{Y}. The following XYZ settings :
      • X add 1 once every 4 times. When more than 9999999 set back to empty. Begins with 2004
      • Y add 1 once every 1 times. When more than 4 set back to 4. Begins with 1
      • will result in the following issues numbers : N2004/1,N2004/2,N2004/3,N2004/4,N2005/1,N2005/2,N2005/3,N2005/4,N2006/1

        From oleonard at users.sourceforge.net Fri Jan 14 16:42:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/admin aqbookfund.tmpl,NONE,1.1.2.1 authorised_values.tmpl,NONE,1.1.2.1 authtypes.tmpl,NONE,1.1.2.1 biblio_framework.tmpl,NONE,1.1.2.1 branches.tmpl,NONE,1.1.2.1 categorie.tmpl,NONE,1.1.2.1 checkmarc.tmpl,NONE,1.1.2.1 currency.tmpl,NONE,1.1.2.1 issuingrules.tmpl,NONE,1.1.2.1 itemtypes.tmpl,NONE,1.1.2.1 koha2marclinks.tmpl,NONE,1.1.2.1 marc_subfields_structure.tmpl,NONE,1.1.2.1 marctagstructure.tmpl,NONE,1.1.2.1 printers.tmpl,NONE,1.1.2.1 stopwords.tmpl,NONE,1.1.2.1 systempreferences.tmpl,NONE,1.1.2.1 z3950servers.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/admin Added Files: Tag: rel_2_2 aqbookfund.tmpl authorised_values.tmpl authtypes.tmpl biblio_framework.tmpl branches.tmpl categorie.tmpl checkmarc.tmpl currency.tmpl issuingrules.tmpl itemtypes.tmpl koha2marclinks.tmpl marc_subfields_structure.tmpl marctagstructure.tmpl printers.tmpl stopwords.tmpl systempreferences.tmpl z3950servers.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: System Preferences -- Book Fund Administration

        Book Fund Administration

        The first time you access this page, you will be asked to add your first book fund -- thereafter you will also have the option of editing and deleting book funds.

        Book Funds may be ignored if you are setting your System Preferences to "simple" acquisitions: the funds are only useful when using "normal" acquisitions.

        "Book Funds" are accounts that you establish to keep track of your expenditures for library materials. They may be used for any kind of material, not just books, and should match the lines in your materials budget. For instance, if your library establishes a budget line for books, another for audiovisual materials, a third line for magazines, and a fourth budget line for electronic databases, then you would have four Book Funds.

        Each Book Fund has a unique fund code, limited to no more than five characters, that identifies it. You should decide on your fund codes (e.g. something like BOOKS, AV, MAGS, DATA for the four book funds described above) and enter the code in the "Book fund" box, then a full name in the "Name" box.

        Once you have set up a fund, you will see a link to a page for setting up the fund budget. Here you will enter the beginning and ending dates of your budget year and the amount of money in that particular budget line. Do not use any kind of currency notation (like "$") or commas when entering the number. (Commas will be converted to decimal points.) NOTE: Your dates will not saved correctly unless you have set your date format in the System Preferences section of the Parameters page -- DO THIS BEFORE setting budgets.)

        --- NEW FILE --- Online Help: System Preferences -- Authorised values management

        Authorised values management

        Koha allows you to restrict the values that catalogers can place in some MARC subfields to certain pre-defined "authorised" values. These authorised values are defined here.

        For example, if your Koha installation is used by several libraries, and you use MARC21, you might want to restrict the 850a MARC subfield to the instition codes for just those libraries. In that case, you could define a new authorised values category (perhaps called "INST") and enter the institution codes as the authorised values for that category. Once the 850a subfield is linked to the INST authorised values category in your MARC tag structure, catalogers must choose a value from the list you define here, and may not type in any other value.

        • HINT : if a subfield is non mandatory, Koha automatically adds an empty value to the authorised value list, that is selected by default. If the subfield is mandatory, no empty value is added (and you should NOT add it in the list, as it's an illegal value !)
        • HINT2 : in the MARC editor, the list is ordered by Text, NOT by value. So you can define a default value by putting a space before the value you want to see first. For example, if your list is related to language, you can set "ENG" as authorised value and " English" as text. The space will order "ENG" as first default value, and the space won't be shown (because HTML automatically discard useless spaces). Super hint : you can put a value 1st with N spaces, then another one 2nd with N-1 space,..., a value in Nth position with 1 space. Don't abuse of this feature, it's easier to find a value in an alphabetical order. It should be used only to have a default value

        Koha automatically sets up authorised value categories for your item types and branch codes, and you can link these authorised values to MARC subfields when you set up your MARC tag structure.

        --- NEW FILE --- Online Help: System Preferences -- Authority types

        Authority types

        You can define as many Authority types as you want.

        • with the MARC structure button, you can define the MARC structure of a given authority type
        • The tag reported must contain a MARC tag number. Every subfield in the selected tag will be copied to the "destination tag" in the biblio. for example, in UNIMARC, the tag 200 ot personal authority will be reported to 600, 700, 701, depending on what is cliqued in the biblio MARC editor.
        • The summary contains an "ISBD" like description to explain how the entry must be shown in the result list. The syntax is :
          • [xxxFFFSyyy] where xxx are up to 3 digits BEFORE the field, FFF the field number, S the subfield code, yyy up to 3 digits AFTER the field.
          • things outside [] are kept as is (including HTML)
          • repeatable fields are manages.

            IMPORTANT

            In the biblio framework, the reported tag MUST contain a $9 subfield, activated in the tab where the tag is, and hidden (hidden maybe omitted, but the field has no reason to appear anywhere). The $9 subfield in the biblio will contain the Authority number (the internal Koha number)

            --- NEW FILE --- Online Help: System Preferences -- Biblio framework

            Biblio framework

            biblio frameworks are used to catalogue your biblios.

            Unlike Koha 2.0, in this version you can have more than 1 framework to catalogate differently various materials. You can, for example, define 1 framework for monographies, 1 framework for serials, 1 framework for URL...

            Once a framework type is created, you can clic on "MARC structure" to define the exact MARC structure. The first time, Koha will ask you to select an existing framework to copy into the new one. Thus, you don't have to define all the MARC structure

            --- NEW FILE --- Online Help: System Preferences -- Branches

            Help: Library Branches

            Fill in information about your library service outlets on this page.

            Begin by defining your branch categories. If, for example, you have one main library and several branch libraries, you might set up an "M" (Main) category and a "B" (Branch) category, with descriptions "Main Library" and "Branch Library."

            Now add the names and addresses, phone numbers, etc of your libraries in the "Branches" section. (All of your libraries should be described here, not just the branch libraries.) Give each library a unique and easily-remembered code (maximum of four characters). This code will be used in Koha's database to identify each library. When libraries are listed in Koha, they will be listed in alphabetical order by code. (Note that until you set your branch the first time you use a computer to circulate items in Koha, the branch will default to the first library in the alphabetical code list -- be careful to set the branch the first time you use Koha or whenever you add a new computer!)

            --- NEW FILE --- Online Help: System Preferences -- Borrower Categories

            Borrower Categories

            Here is where you define the types of users of your library and how they will be handled.

            Category Code and Description

            Start by assigning a Category Code and a Description to each borrower type. The code is limited on no more than two characters and may be anything you choose. Four codes, however, have special meaning for Koha :

            • "I" can be used for institutional members, like other libraries that borrow from you, in which case Koha expects slightly different information about the institution;
            • "A" (Adult) and "W" can be linked as "guarantors" to other borrowers who are their dependents.
            • "C" (Children) is a borrower category that has a "guarantor"

            Enrollment Period

            Enrollment period is a number indicating how many years a user's enrollment is valid. If you consider enrollments to expire after four years for example (as in a school, perhaps), then set this number to 4. If enrollments never expire, set this to an impossibly high number (99).

            Upper Age Limit and Age Required

            Upper Age Limit and Age Required set the age parameters for this type of user. If you issue children's cards to users between the ages of 2 and 18, for example, then Age Required would be "2" and Upper Age Limit would be "18." If there is no upper age limit, set this value to 99 (the highest allowed).

            Enrollment Fee and Reserve Fee

            Enrollment Fee and Reserve Fee (if any) should be entered either as whole numbers or with six decimal places, with no currency notation (e.g. "1.250000" instead of "$1.25").

            Overdue Notice Required

            Overdue Notice Required lets you bypass generating overdue notices for this user type.

            --- NEW FILE --- Online Help: System Preferences -- MARC Check

            MARC Check

            Once you have completed the process of setting up your MARC tag structure (MarcTagstruct) and checked your MARC to Koha mapping (Koha2MarcLinks), click on this link to activate a small program that checks for major errors in your MARC setup.

            This MARC check does not guarantee that you will like the first results of your efforts to set up your MARC displays, etc. -- it simply checks for major errors. You will probably revise your MARC setup several times before you are completely pleased with it. Be sure to run checkmarc after every revision.

            --- NEW FILE --- Online Help: System Preferences -- Currencies administration

            Currencies administration

            Define the currencies you deal with here.

            You should at least define your local currency here, giving it a name (like US DOLLAR or EURO) and setting the "rate" at 1. If you do business with vendors who charge in a different currency, enter a name for that currency (e.g. PESO) and set the approximate exchange rate compared to your currency. (Note: names are limited to 10 characters or less.) The exchange rate is used to calculate the remain balances in your materials budgets when you purchase materials using "normal" acquisitions.

            --- NEW FILE --- Online Help: System Preferences -- Issuing rules

            Issuing rules

            Issuing rules deals with 2 topics :

            • Issuing length and quantity : they say how many items and how long a borrower category can issue for an itemtype
            • Overdue charges : they are based on the item type and borrower type. These charges are defined on this page.

            Itemtypes and borrower categories must be defined before issuing rules are defined. Your defined items types and borrower categories are then displayed in a grid on this page.

            Issuing length and quantity

            Each box in the grid contains 2 numbers, separated by commas, defining how many days a given borrower type can issue how many material. For example : 21,5 means the borrower can issue up to 5 books for up to 21 days

            The * have a specific meaning. They mean "any". If you set 21,5 for itemtype=*, borrower category=student, branch=main, then a student can't issue more than 5 items of ANY item type. This "any" box is cumulative with other boxes. It means that 21,5 as itemtype=book, 14,2 as itemtype=CD and 30,6 as itemtype=* (with category=student) means a student can issue up to 5 books, up to 2 CD but a maximum of 6 items (books or CD). In this case the "30 days" in itemtype=* is discarded and the issuing length is calculated on the exact itemtype

            Overdue charges

            Each box in the grid contains three numbers separated by commas, defining the fine, how many days overdue the item must be before the fine is assessed and a first notice prepared (the "grace period"), and how many days after that the fine is assessed again and a second notice sent. For example, if you charge adults 1 dollar (or euro, or whatever currency) for overdue videos after three days and add another dollar charge after another five days, put "1,3,5" in the box in the grid that aligns with "Adult" and "Video." If you charge adults 25 cents for overdue fiction books after a grace period of seven days and repeat the charge seven days later, then the entry in the corresponding box in the grid would be ".25,7,7". After the first and second notice are given, Koha prepares a "final notice" after the number of days set by the final number in the grid and sets the charge to the maximum, which is 5.

            (Note : fines are calculated by the fines2.pl script, located in misc directory. Ask your system administrator to put this script in crontab, after midnight, to have fines calculated every night.)

            --- NEW FILE --- Online Help: System Preferences -- Item types management

            Item types management

            You can define as many itemtypes as you want.

            The item types are the "categories" into which your library items fall. For instance, you probably want to have videocassettes in a different category from non-fiction books, and mysteries in a different category from children's picture books. If you already are using a commercial ILS, you almost certainly already have all of your materials divided up into such categories. Now you need to tell Koha what your categories are.

            The itemtype code is limited to four characters. This code is rarely displayed by Koha; instead the description of the type will be what users see.

            "Rental charge" is any amount you might charge to users for borrowing items of a certain type (like videos).

            "Renewals allowed" says how many times an items of this type may be renewed.

            Item types are useful for many things, and very important in controlling how Koha works :

            • Borrowers can search on itemtypes
            • Issuing rules are set for item types (and for borrower types / branches)

            Setting up item types is one of the first things you should do after installing the Koha software.

            --- NEW FILE --- Online Help: System Preferences -- Koha 2 MARC links

            Koha 2 MARC links

            This page provides a simplified way to map your MARC tags and subfields to the non-MARC Koha database tables for default biblio framework. This can also be done while setting the MARC tag structure, but it is easier to see the relationship between the MARC database and the Koha database here.

            The pull-down menu lists all the Koha tables that can receive values from the MARC records. The columns from each table are listed below the pull-down menu.

            Do not expect to have every Koha table.column mapped to a MARC subfield. Some (such as biblionumber, biblioitemnumber, and itemnumber) are values generated by Koha and will probably be automatically mapped. Others are flags which are set in the course of normal circulation activities and will contain information that is not part of your MARC record.

            This is a one-to-one mapping. In other words, a MARC tag/subfield can be mapped to one, and only one, Koha table.column.

            MARC data that is not mapped to a Koha table does not disappear -- it is simply not available for display on circulation screens and on some search results screens.

            --- NEW FILE --- Online Help: System Preferences -- MARC tag structure administration

            MARC tag structure administration

            Koha allows you to specify which MARC tags you want to use and which you want to ignore. When you downloaded and installed Koha, you also got the entire list of MARC21 tags and subfields in current use. Now you need to use the administration page to edit this list and tell Koha which tags you want to use and how you want to use them.

            You can define as the marc tag structure for each biblio framework you have defined

            If you are CERTAIN that you will never use a MARC tag, then you can delete it, but since this will not result in any appreciable improvement in performance, it is probably better to leave it. There will be tags you want to add, however. If you are using older MARC tags that are not in the list of tags supplied with Koha, then use the MARC tag structure administration page to add them. Similarly, you will probably need to add the holdings tag you currently use, or at least check the subfield structure of the 852 tag if you use it for holdings.

            Editing the SubFields from the MARC tag structure page is very time-consuming, but also very important; be sure to click the subfield link for each tag in your MARC tag structure.

            For each subfield you can set :

            • repeatable : wether it can be repeated or not. If it can be repeated, separate the values by a | in the MARC editor when you want to have the subfield twice
            • Mandatory : wether the field is mandatory or not. If mandatory, the cataloger can't validate the biblio if the subfield is empty.
            • Search also : a list of field that Koha will also search on when the user do a search on the subfield
            • Koha link : very important. Koha is multi-MARC compliant. So, it does not know what the 245$a means, neither what 200$f (those 2 fields being both the title in MARC21 and UNIMARC !). So, in this list you can "map" a MARC subfield to it's meaning. Koha constantly maintains consistency between a subfield and it's meaning. When the user want to search on "title", this link is used to find what is searched (245 if you're MARC21, 200 if you're UNIMARC).
            • Text for librarian : what appears before the subfield in the librarian interface
            • Text for OPAC : what appears before the field in the OPAC. If empty, the text for librarian is used instead
            • Managed in tab : deals with the tab where the subfield is shown. Ignore means that the subfield is not managed. All subfields of a given field must be in the same tab or ignored : 1st it's more logic, 2nd, Koha would be confused to repeat repeatable fields otherwise !!!
            • hidden : means that the field is managed, but NOT shown in opac. It's usually for internal fields
            • URL : if checked, the subfield is an URL, and can be clicked
            • Auth value : means the value is not free, but in the authorised value list of the selected type
            • thesaurus : means that the value is not free, but can be searched in authority/thesaurus of the selected category
            • plugin : means the value is calculated or managed by a plugin. Plugins can do almost anything. For example, in UNIMARC there are plugins for every 1xx fields that are coded fields. The plugin is a huge help for cataloger ! There are also two plugins (unimarc_plugin_210c and unimarc_plugin_225a that can "magically" find the editor from an ISBN, and the collection list for the editor)
            • link : useless for instance
            --- NEW FILE --- Online Help: System Preferences -- MARC tag structure administration

            MARC tag structure administration

            Koha allows you to specify which MARC tags you want to use and which you want to ignore. When you downloaded and installed Koha, you also got the entire list of MARC21 tags and subfields in current use. Now you need to use the administration page to edit this list and tell Koha which tags you want to use and how you want to use them.

            You can define as the marc tag structure for each biblio framework you have defined

            If you are CERTAIN that you will never use a MARC tag, then you can delete it, but since this will not result in any appreciable improvement in performance, it is probably better to leave it. There will be tags you want to add, however. If you are using older MARC tags that are not in the list of tags supplied with Koha, then use the MARC tag structure administration page to add them. Similarly, you will probably need to add the holdings tag you currently use, or at least check the subfield structure of the 852 tag if you use it for holdings.

            Editing the SubFields from the MARC tag structure page is very time-consuming, but also very important; be sure to click the subfield link for each tag in your MARC tag structure.

            For each subfield you can set :

            • repeatable : wether it can be repeated or not. If it can be repeated, separate the values by a | in the MARC editor when you want to have the subfield twice
            • Mandatory : wether the field is mandatory or not. If mandatory, the cataloger can't validate the biblio if the subfield is empty.
            • Search also : a list of field that Koha will also search on when the user do a search on the subfield
            • Koha link : very important. Koha is multi-MARC compliant. So, it does not know what the 245$a means, neither what 200$f (those 2 fields being both the title in MARC21 and UNIMARC !). So, in this list you can "map" a MARC subfield to it's meaning. Koha constantly maintains consistency between a subfield and it's meaning. When the user want to search on "title", this link is used to find what is searched (245 if you're MARC21, 200 if you're UNIMARC).
            • Text for librarian : what appears before the subfield in the librarian interface
            • Text for OPAC : what appears before the field in the OPAC. If empty, the text for librarian is used instead
            • Managed in tab : deals with the tab where the subfield is shown. Ignore means that the subfield is not managed. All subfields of a given field must be in the same tab or ignored : 1st it's more logic, 2nd, Koha would be confused to repeat repeatable fields otherwise !!!
            • hidden : means that the field is managed, but NOT shown in opac. It's usually for internal fields
            • URL : if checked, the subfield is an URL, and can be clicked
            • Auth value : means the value is not free, but in the authorised value list of the selected type
            • thesaurus : means that the value is not free, but can be searched in authority/thesaurus of the selected category
            • plugin : means the value is calculated or managed by a plugin. Plugins can do almost anything. For example, in UNIMARC there are plugins for every 1xx fields that are coded fields. The plugin is a huge help for cataloger ! There are also two plugins (unimarc_plugin_210c and unimarc_plugin_225a that can "magically" find the editor from an ISBN, and the collection list for the editor)
            • link : useless for instance
            --- NEW FILE --- Online Help: System Preferences -- Printer Administration

            Printer Administration

            If you are going to be using a printer (or several printers) that are attached to your Koha server for producing statistical and operations reports, then you need to give each printer a name and tell Koha how to access it. You do this by telling Koha which print queue to use.

            (In linux, each printer configuration in your printcap file defines a print queue. The default print queue is "lp," but if you use more than one printer you will have other queues, probably with names like "text" or "postscript." Tell Koha which printer queue(s) you want to use for printing reports directly from the server.)

            Note that you can always print Koha screens directly to a printer attached to your workstation just by using your web browser's Print function.

            --- NEW FILE --- Online Help: System Preferences -- Stop word administration page

            Stop word administration page

            Here you should list all of the words you wish Koha to ignore when performing catalog searches or building the keyword index.

            Normally, you will not want Koha to save keyword references to articles like "The" and "A" and other very common words. Saving keyword references to these words does not help to limit a search and will make the keyword index very large and "cluttered" with words that are not really useful. The "stopwords" list defines these unnecessary words for your installation.

            (Hint: If you are proficient at MySQL, it is often faster and easier to find an existing stopwords list, edit it, put it in the correct format, and use the MySQL "Load Data Infile" command to import the list into the stopwords table. Many academic libraries publish their stopwords list on the Internet, or you can ask other Koha libraries if they would share their stopword list.)

            --- NEW FILE --- Online Help: System Preferences -- System preferences administration

            System preferences administration

            This page allows you to set the system preferences that control much of the basic behavior of Koha. These parameters should be set before any other parameters.

            • acquisitions -- The choices are either "normal" or "simple." "Normal" sets the system to track orders and update budgeting and vendor information as you add materials to your collection. "Simple" tells Koha that you are going to add materials to the collection without tracking orders.
            • authoritysep -- The separator used in authority/thesaurus. Usually " -- ". Deprecated and useless in Koha 2.2
            • autoBarcode -- The barcode number to be assigned to items is automatically assigned (sequentially) by Koha if this is set to "yes" ("1" = "yes").
            • autoMemberNum -- The membership number (patron card number) to be assigned to new library users is automatically assigned by Koha if this is set to "yes" ("1" = "yes").
            • checkdigit -- Validity checks on membership number (patron card number): none or "Katipo" style checks. In most cases, you will choose "none" because you will be using pre-printed barcodes.
            • dateformat -- Choose "metric," "us," or "iso" date format (us = mm/dd/yyyy, metric = dd/mm/yyy, ISO = yyyy/mm/dd). This controls how dates are displayed, not how they are stored in the database.
            • gist -- "gist" is "GST" (Good and Sales Tax) rate. If your local tax laws require you to pay taxes on purchases from your suppliers, enter the tax rate here. Set to "0" if you are not required to pay tax.
            • insecure -- The best choice is "no." If you choose "yes," users do not have to login and all information is open to anyone. Be careful if you set this to "yes!"
            • ISBD -- Koha can display records in International Standard Bibliographic Description format. the syntax of this field is quite complex :

              it's divided into blocks, that can contain a text before, X fields, each having -or not- a string before, a string after, and a text after :

              #995|<br>Items :|{\n995b}{ - 995j}{/995k}|

              means the "block" 995 has <br>Items : BEFORE, then fields 995b, 995j and 995k, repeated for each item (995 is an UNIMARC standard), then nothing after the block.

              The # means "beginning of a block", the | is the separator of each part, the {} being used for each subfield. A subfield can have up to 3 digits BEFORE and up to 3 digits AFTER each subfield

              The UNIMARC (partial) definition for ISBD is

              #700||{700a}{701a}{702a}| ; #200||{200a}{ [200b] }{. 200c}{ : 200e}{. 200h}{. 200i}{ / 200f}{ ; 200g}|
              #230||{ ; 230a}|
              #205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|
              #210|<br/><label>Editeur</label>|{ ; 210a}{ (210b) }{ : 210c}{, 210d}|
              #210|(|{210e}{(210f)}{ : 210g}{, 210h}|)
              #215|<br/><label> </label>|{ ; 215a}{ : 215c}{ ; 215d}{ + 215e}|
              #225|<br/><label>Description</label>|{ (225a}{ = 225d}{ : 225e}{. 225h}{. 225i}{ / 225f}{, I225x}{ ; 225v}|)
              #606|<br/><label>Sujets</label>|{ 606a - }|<br/><br/>
              #995|<br>Exemplaires :|{\n995b}{ - 995j}{/995k}|

            • KohaAdminEmailAddress -- The email address that will receive requests from borrowers for modification of their records.
            • ldapserver and ldapinfos -- Koha 2.0 can use Perl LDAP (Lightweight Directory Access Protocol, see http://search.cpan.org/~gbarr/perl-ldap-0.3202/lib/Net/LDAP.pod) to manage user access and privileges. To avoid a useless Perl package for libraries without ldap, all what is related to LDAP has been moved to KohaInstall/modules/C4/Auth_with_ldap.pm. Ask your system administrator to set up LDAP with Auth_with_ldap.pm (perldoc Auth_with_ldap.pm for help). Those 2 parameters are useless in 2.2 and have should not appear on a new install.
            • LibraryName -- The library name or message that will be shown on the main OPAC page. You may use HTML tags to format the name. Example: Welcome to Koha
              Free Software ILS
            • marc -- Turn on MARC support. Set to "no" if you do not intend to use MARC records.
            • marcflavour -- Your MARC flavor (MARC21 or UNIMARC). This choice tells Koha how to interpret your MARC records.
            • maxoutstanding -- The maximum amount of outstanding charges a borrower may have before he/she is barred from making reserve requests. The number represents units of your local currency (e.g. "5" means $5.00, if the dollar is your local currency.)
            • maxreserves -- The maximum number of reserves a member can make.
            • noissuescharge -- The maximum amount of outstanding charges a borrower may have before he/she is barred from checking out items. The number represents units of your local currency (e.g. "5" means $5.00, if the dollar is your local currency.)
            • opaclanguages -- Set your language preference. (Despite the name, this choice controls the language used for all Koha screens, not just the OPAC). The top language in your list will be tried first.
            • opacthemes -- Set the preferred order for themes. The top theme will be tried first.
            • printcirculationslips -- if set to 1, circulation "slips" are printed on your receipt printer. If set to 0, no slips are printed.
            • suggestion -- If set to 1, the Suggestions feature is activated in the OPAC. This feature allows OPAC users to suggest book purchases. When a suggestion is made in the OPAC, it is assigned the status "ASKED." A librarian then manages the suggestion and can set the status to "REJECTED" or "ORDERED." When a book is ordered and has arrived in the library, the status becomes "AVAILABLE." Suggestions that are not yet "AVAILABLE" are visible to all users of the OPAC.
            • template -- Preference order for screen templates. Koha comes with several different options for templates that control the look and feel of your Koha screens, and you can also write your own templates.
            • timeout -- Inactivity timeout period (in seconds). If a workstation is idle for longer than this period, the user will have to login again.
            • virtualshelves -- Set virtual shelves management on or off ("1" or "0"). Users can set up and manage their own "virtual bookshelves" of favorite library items if this feature is turned on.
            --- NEW FILE --- Online Help: System Preferences -- Z39.50 servers administration

            Z39.50 servers administration

            Defines the Z39.50 servers you want Koha to search.

            Koha comes with one Z39.50 server site defined (the U.S. Library of Congress) for finding catalog records to import directly into your catalog. In this area, you can define other servers for searching.

            To add servers, you will need to know the domain name or IP address of the server, the port number to use, and the name of the database to access. This information is available for many servers worldwide by acessing the Index Data website at http://www.indexdata.dk/targettest/. All of the servers listed there accept anonymous connections. (Be sure to choose servers which deliver records in the proper MARC format for your Koha installation.)

            If you have a login name and password for other Z39.50 servers, Koha will save your user ID and password in addition to the other information it needs to make a connection. (For anonymous servers, leave the userid and password fields blank.) The other fields on the form control whether or not the server is automatically searched when you request a Z39.50 search (put a "1" in the "Checked" field) and the order in which it is checked.

            It is a good idea to be selective in choosing servers. Defining more than five or six checked servers may slow down your Z39.50 search results, even if they are queried all together.

            IMPORTANT NOTE : the z3950search will NOT work until your system administrator has not activated the z3950 client daemon on your server. The daemon is in KohaDirectory/script/z3950daemon. It should be added to rc.d to be launched during server boot.

            From oleonard at users.sourceforge.net Fri Jan 14 16:42:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/members memberentry.tmpl,NONE,1.1.2.1 members-home.tmpl,NONE,1.1.2.1 moremember.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/members Added Files: Tag: rel_2_2 memberentry.tmpl members-home.tmpl moremember.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Adding a New Patron

            Add member help

            Add Member, person

            This is the form for adding a new single member to the database. There is also a form for organisations, such as other libraries and non profit organisations you might lend to. You should use the Add Organisation tab at the top of the Member page for that.

            Every field with an asterisk must be filled out, or you will get an error, and the record will not be added to the database.

            If you accidentally have two members with the same card number, the second duplicate will show up as just commas after you confirm the record.

            When you are done with the record, click the Save button at the bottom.

            The clear all Fields button will reset the page to a blank form in case you made a mistake.

            Add Member, Institutional

            This is the form for adding a group of members. Suppose you had a YMCA group, or lend books to other Libraries. This would be the form to use for that purpose.

            Every field with an asterisk must be filled out, or you will get an error, and the record will not be added to the database.

            If you accidentally have two members with the same card number, the second duplicate will show up as just commas after you confirm the record.

            When you are done with the record, click the Save button at the bottom.

            The clear all Fields button will reset the page to a blank form in case you made a mistake.

            You can always come back and edit what you enter in the Add Member screen by searching for the borrower by using their last name or card number, selecting a user by clicking on the entry in the search list, and then clicking the Modify button on the member information screen.

            --- NEW FILE --- Online Help: Members

            Members help

            This is the Members portion of Koha.

            The Members portion stores the information you add about your patrons.

            To add a patron, type their name into the search box on the left, and click the OK button.

            If there is already a borrower matching the name you searched, it will show after you click OK. This can be particularly useful when people have lost their cards or when children forget their cards. That way, you can avoid having multiple numbers for the same patron.

            Alternatively, you can browse a section of borrowers by selecting the first letter of the Patron's last name from the list on the right.

            --- NEW FILE --- Online Help: Member Information

            Member Information Screen

            This screen shows the information associated with a given patron.

            On the top left is their address and card number.

            A patron's annual membership fee payment status also shows on this screen.

            Any fines a patron has will show up in the top middle of this screen.

            Any materials a patron has requested will show up on the top right of this screen.

            You can get information on what a patron has read in the past by clicking on the Reading Record button.

            Any items a patron currently has out will show up under "Items currently on issue".

            If you would like to edit a patron's information, click the modify button on the lower left.

            If you would like to PERMANENTLY delete a user, click the delete button on the lower left. A confirmation box will appear, so don't worry about accidentally deleting a record. Just be absolutely sure before you delete!

            The change password button allows a user to either set a new password or change their current password. This is useful to patrons that wish to place reserves online from home. You cannot see a password again once you change it, but you can reset a password.

            Modify user flags allows an administrator to set which clerks, librarians, patrons, technical support people or trustees have access to certain parts of the database. Right now, one can either have permission to access everything on the Intranet side, or just have access to the OPAC.

            From oleonard at users.sourceforge.net Fri Jan 14 16:42:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/authorities authorities.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/authorities Added Files: Tag: rel_2_2 authorities.tmpl Log Message: Synching with default template --- NEW FILE --- authority help From oleonard at users.sourceforge.net Fri Jan 14 22:08:20 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:08:20 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-flags.tmpl,1.2,1.3 newimember.tmpl,1.1,1.2 newjmember.tmpl,1.1,1.2 newmember.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7721/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: member-flags.tmpl newimember.tmpl newjmember.tmpl newmember.tmpl Log Message: Change to allow page-specific title in title tag Index: member-flags.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member-flags.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** member-flags.tmpl 13 Apr 2004 16:59:43 -0000 1.2 --- member-flags.tmpl 14 Jan 2005 21:08:16 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Set Privileges for , Index: newimember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newimember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newimember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newimember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm New Borrower Index: newjmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newjmember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newjmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newjmember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Details Index: newmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newmember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newmember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Record From oleonard at users.sourceforge.net Fri Jan 14 22:08:48 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:08:48 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui acqui-home.tmpl,1.3,1.4 acquire.tmpl,1.1,1.2 basket.tmpl,1.2,1.3 newbasket2.tmpl,1.1,1.2 order.tmpl,1.2,1.3 recieve.tmpl,1.1,1.2 recieveorder.tmpl,1.1,1.2 supplier.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7842/koha-tmpl/intranet-tmpl/npl/en/acqui Modified Files: acqui-home.tmpl acquire.tmpl basket.tmpl newbasket2.tmpl order.tmpl recieve.tmpl recieveorder.tmpl supplier.tmpl Log Message: Change to allow page-specific title in title tag Index: acqui-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acqui-home.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** acqui-home.tmpl 28 Oct 2004 17:12:26 -0000 1.3 --- acqui-home.tmpl 14 Jan 2005 21:08:45 -0000 1.4 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Acquisitions Index: acquire.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acquire.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acquire.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- acquire.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : Invoice, Index: basket.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/basket.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** basket.tmpl 28 Oct 2004 17:12:26 -0000 1.2 --- basket.tmpl 14 Jan 2005 21:08:45 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- New Shopping Basket () for Index: newbasket2.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/newbasket2.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newbasket2.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- newbasket2.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Shopping Basket For: Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/order.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** order.tmpl 28 Oct 2004 17:12:27 -0000 1.2 --- order.tmpl 14 Jan 2005 21:08:45 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Supplier Search Results Index: recieve.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieve.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** recieve.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieve.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : , Invoice Index: recieveorder.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieveorder.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** recieveorder.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieveorder.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receive Orders From Supplier Index: supplier.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/supplier.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** supplier.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- supplier.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update: Add supplier From oleonard at users.sourceforge.net Fri Jan 14 22:09:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:09:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple marcimport.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8006/koha-tmpl/intranet-tmpl/npl/en/acqui.simple Modified Files: marcimport.tmpl Log Message: Change to allow page-specific title in title tag Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple/marcimport.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** marcimport.tmpl 13 Apr 2004 16:51:08 -0000 1.2 --- marcimport.tmpl 14 Jan 2005 21:09:09 -0000 1.3 *************** *** 1,4 **** Koha -- Cataloging: MARC Import ! --- 1,4 ---- Koha -- Cataloging: MARC Import ! From oleonard at users.sourceforge.net Fri Jan 14 22:10:08 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:10:08 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves addbookbybiblionumber.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8376/koha-tmpl/intranet-tmpl/npl/en/bookshelves Modified Files: addbookbybiblionumber.tmpl Log Message: Change to allow page-specific title in title tag Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** addbookbybiblionumber.tmpl 11 Jan 2005 16:44:09 -0000 1.1 --- addbookbybiblionumber.tmpl 14 Jan 2005 21:10:04 -0000 1.2 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Add to Virtual Shelf
            From oleonard at users.sourceforge.net Fri Jan 14 22:16:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:16:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull result.tmpl,1.3,1.4 search.tmpl,1.2,1.3 searchresultlist.tmpl,1.1,1.2 subscription-bib-search.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9754/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: result.tmpl search.tmpl searchresultlist.tmpl subscription-bib-search.tmpl Log Message: Change to allow page-specific title in title tag Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** result.tmpl 11 Jan 2005 16:54:14 -0000 1.3 --- result.tmpl 14 Jan 2005 21:16:14 -0000 1.4 *************** *** 1,3 **** !

            Search results

            --- 1,3 ---- ! Koha -- Search Results

            Search results

            Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** search.tmpl 10 Jan 2005 17:02:54 -0000 1.2 --- search.tmpl 14 Jan 2005 21:16:14 -0000 1.3 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Catalog Search
            Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- searchresultlist.tmpl 14 Jan 2005 21:16:14 -0000 1.2 *************** *** 1,3 **** !

            Authority search results

            --- 1,3 ---- ! Koha -- Authority search results

            Authority search results

            Index: subscription-bib-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-bib-search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-bib-search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- subscription-bib-search.tmpl 14 Jan 2005 21:16:14 -0000 1.2 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Bib Search
            From oleonard at users.sourceforge.net Fri Jan 14 22:17:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:17:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/circ branchtransfers.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9984/koha-tmpl/intranet-tmpl/npl/en/circ Modified Files: branchtransfers.tmpl Log Message: Converting popup links to normal links Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/branchtransfers.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** branchtransfers.tmpl 13 Apr 2004 16:53:45 -0000 1.2 --- branchtransfers.tmpl 14 Jan 2005 21:17:33 -0000 1.3 *************** *** 12,18 ****
            ! ! ! ! !
            Reserve found for (" onclick="openWindow(this,'Member', 480, 640)">). ! Item is marked waiting at for (" onclick="openWindow(this,'Member', 480, 640)">).
            Set reserve to waiting and transfer book to : --- 12,18 ----
            ! --- 125,129 ---- From oleonard at users.sourceforge.net Fri Jan 14 22:19:19 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:19:19 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes doc-head-circ-close.inc,1.2,1.3 doc-head-close-addbiblio.inc,1.1,1.2 doc-head-close.inc,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10440/koha-tmpl/intranet-tmpl/npl/en/includes Modified Files: doc-head-circ-close.inc doc-head-close-addbiblio.inc doc-head-close.inc Log Message: Enabling popup function in javascript (previously disabled to prevent popups) Index: doc-head-circ-close.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/doc-head-circ-close.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** doc-head-circ-close.inc 13 Apr 2004 16:57:24 -0000 1.2 --- doc-head-circ-close.inc 14 Jan 2005 21:19:15 -0000 1.3 *************** *** 8,14 **** --- 1,3 ---- ! Koha -- Modify categoryAdd category From oleonard at users.sourceforge.net Fri Jan 14 22:34:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:34:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en bookcount.tmpl,1.1,1.2 modbib.tmpl,1.1,1.2 modbibitem.tmpl,1.1,1.2 updatebiblio.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13394/koha-tmpl/intranet-tmpl/npl/en Modified Files: bookcount.tmpl modbib.tmpl modbibitem.tmpl updatebiblio.tmpl Log Message: Change to allow page-specific title in title tag Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookcount.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bookcount.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- bookcount.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Circulation Statistics for Index: modbib.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbib.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** modbib.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbib.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Record for Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** modbibitem.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbibitem.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Biblioitem for Index: updatebiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/updatebiblio.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** updatebiblio.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- updatebiblio.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update Biblio From acli at users.sourceforge.net Sat Jan 15 06:51:37 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Fri, 14 Jan 2005 21:51:37 -0800 Subject: [Koha-cvs] CVS: koha/misc buildrelease,1.23,1.23.2.1 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9389 Modified Files: Tag: rel_2_2 buildrelease Log Message: Taught buildrelease what the misc directory and release 2.2 is, and also that version numbers might only have 1 dot. This should fix bugs 889, 890. A --verbose or -v option has been added in the process of doing the above. It now chdir to .. if it discovers that it is being run inside misc, since running it inside misc screws up various things, and I never remember whether it should be run inside misc or not. A confirmation message about whether to tag or not is now displayed after the user answers the question about tagging. I have never felt safe not having the release builder confirm with me that I really am not tagging anything. Index: buildrelease =================================================================== RCS file: /cvsroot/koha/koha/misc/buildrelease,v retrieving revision 1.23 retrieving revision 1.23.2.1 diff -C2 -r1.23 -r1.23.2.1 *** buildrelease 5 Jan 2005 14:31:06 -0000 1.23 --- buildrelease 15 Jan 2005 05:51:35 -0000 1.23.2.1 *************** *** 1,4 **** --- 1,60 ---- #!/usr/bin/perl + # This script uses standard 8-space tabs with 4-space indents + # vi users can :set sw=4 ai sm + use Getopt::Long; + use vars qw( $verbose_p ); + + GetOptions( + 'verbose|v' => \$verbose_p, + ) || exit(1); + + print <) { *************** *** 30,37 **** print qq | - *************************************** - * Welcome to the Koha Release Builder * - *************************************** - This script will automatically build a release tarball. --- 87,90 ---- *************** *** 39,45 **** out for the release that you want to build, although it will update the modules before building. - |; ! print "\nWhere is the 'koha' cvs module located [$kohadir]: "; chomp($input = ); if ($input) { --- 92,97 ---- out for the release that you want to build, although it will update the modules before building. |; ! print "\nWhere is the 'koha' cvs module located? [$kohadir]: "; chomp($input = ); if ($input) { *************** *** 62,72 **** #kohahtmldir=$kohahtmldir |; #---------------------------------------------------------- # which VERSION are we building ? #---------------------------------------------------------- ! print "\n\nGuessing at next release version. You may need to enter your SourceForge password...\n"; chdir $kohadir; ! open (CVSLOG, "cvs log misc/buildrelease|"); my $symbolicnamessection=0; my $symbolicnames; --- 114,128 ---- #kohahtmldir=$kohahtmldir |; + print STDERR "$roothomedir/.kohaautobuild.conf written\n" if $verbose_p; #---------------------------------------------------------- # which VERSION are we building ? #---------------------------------------------------------- ! print <{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=$rc; } if (versioncompare($version, $highestversion)) { --- 135,156 ---- if (/^symbolic names:/) { $symbolicnamessection=1; + print STDERR "Scanning symbolic names from cvs output\n" if $verbose_p; } if ($symbolicnamessection && (/^\s+([^:]*):/)) { my $tag=$1; ! if ($tag=~/(?:R|rel)_(.*)/) { my $version=''; my $rc=0; my $id=$1; ! $id =~ s/[-_]/\./g; ! print STDERR "Found a tag for release $id\n" if $verbose_p; if ($id =~/(.*)RC(.*)/) { $version=$1; $rc=$2; ! $version =~ /^(\d+\.\d+)(?:\.|[RC]|$)/; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=$rc; + print STDERR "Setting major version for $1 to $version $rc\n" if $verbose_p; } if (versioncompare($version, $highestversion)) { *************** *** 99,109 **** $released=0; $highestrc=$rc; } } else { $version=$id; ! $version=~m#(\d+\.\d+)\.#; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=0; } if (versioncompare($version, $highestversion)) { --- 158,170 ---- $released=0; $highestrc=$rc; + print STDERR "Setting highest version to $highestversion $highestrc\n" if $verbose_p; } } else { $version=$id; ! $version =~ /^(\d+\.\d+)(?:\.|[RC]|$)/; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=0; + print STDERR "Setting major version for $1 to $version $rc\n" if $verbose_p; } if (versioncompare($version, $highestversion)) { *************** *** 111,117 **** --- 172,180 ---- $released=1; $highestrc=0; + print STDERR "Setting highest version to $highestversion $highestrc\n" if $verbose_p; } } $symbolicnames->{$version}->{$rc}=1; + print STDERR "Setting symbolic name mapping for version $version $rc to 1\n" if $verbose_p; } } *************** *** 121,143 **** my $currentversion=''; ! my $branchdata=`grep buildrelease CVS/Entries`; chomp $branchdata; my $branch=(split(m#/#, $branchdata))[5]; ! ! if ($branch eq 'Trel-1-2') { ! $highestversion=$majorversion->{'1.2'}; ! $highestrc=$majorversionrc->{'1.2'}; ($highestrc) ? ($released=0) : ($released=1); } if ($released) { my @components=split(/\./, $highestversion); ! $components[$#components]++; ! $nexthighestversion=join '.', @components; ! my $minornumber=(split(/\./, $highestversion))[1]; ! if ($minornumber/2 == int($minornumber/2)) { ! $releaseversion=$nexthighestversion."RC1"; } else { ! $releaseversion=$nexthighestversion; } $currentversion=$highestversion; --- 184,219 ---- my $currentversion=''; ! my $cvs_entries_path = $self_path; ! $cvs_entries_path =~ s/[^\/]+$/CVS\/Entries/; ! print STDERR "Assuming CVS/Entries is $cvs_entries_path\n" if $verbose_p; ! ! my $branchdata=`grep buildrelease $cvs_entries_path`; chomp $branchdata; my $branch=(split(m#/#, $branchdata))[5]; ! $branch =~ s/^T//; ! $branch =~ s/^(?:R|rel)_//; ! $branch =~ s/[-_]/./g; ! print STDERR "Detected branch $branch\n" if $verbose_p; ! ! if ($branch =~ /\S/ && defined $majorversion->{$branch}) { ! $highestversion=$majorversion->{$branch}; ! $highestrc=$majorversionrc->{$branch}; ($highestrc) ? ($released=0) : ($released=1); + print STDERR "Using highest version for branch $branch\n" if $verbose_p; } if ($released) { my @components=split(/\./, $highestversion); ! if (@components < 3) { # if it's something like just 2.2 or 2.4 ! $releaseversion = $highestversion.".1RC1"; } else { ! $components[$#components]++; ! $nexthighestversion=join '.', @components; ! my $minornumber=(split(/\./, $highestversion))[1]; ! if ($minornumber/2 == int($minornumber/2)) { ! $releaseversion=$nexthighestversion."RC1"; ! } else { ! $releaseversion=$nexthighestversion; ! } } $currentversion=$highestversion; *************** *** 155,159 **** print "\nWould you like to rebuild the $currentversion tarball? Y/[N]: "; chomp($input = ); - print STDERR "releaseversion=($releaseversion), currentversion=($currentversion)\n";#XXXZZZ if ($input =~ /^y/i) { $releaseversion=$currentversion; --- 231,234 ---- *************** *** 178,185 **** chomp ($input=); my $cvstag=0; - # FIXME: This means anything other than n will tag; too dangerous? if ($input=~/^y/i) { $cvstag=1; } --- 253,260 ---- chomp ($input=); my $cvstag=0; if ($input=~/^y/i) { $cvstag=1; } + print "The CVS repository ",($cvstag?"WILL BE TAGGED\n":"will not be tagged\n"); *************** *** 329,332 **** --- 404,408 ---- + # Given two version numbers (v1, v2), returns 0 if v1 <= v2, or 1 if v1 > v2 sub versioncompare { my $v1=shift; From oleonard at users.sourceforge.net Tue Jan 18 18:35:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 09:35:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-auth.tmpl,1.1,1.1.2.1 opac-main.tmpl,1.3,1.3.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28083/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-auth.tmpl opac-main.tmpl Log Message: Removing NPL-specific javascript function which was trying to validate library card numbers Index: opac-auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-auth.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-auth.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-auth.tmpl 18 Jan 2005 17:35:51 -0000 1.1.2.1 *************** *** 35,39 ****
            Reserve found for (">). ! Item is marked waiting at for (">).
            Set reserve to waiting and transfer book to : *************** *** 94,99 **** ! Item was on loan to " ! onClick="openWindow(this,'Member', 480, 640)"> and has been returned. --- 94,98 ---- ! Item was on loan to "> and has been returned. *************** *** 126,130 ****
            ! &type=intra" onclick="openWindow(this, 'Item', 480, 640)">
            ! &type=intra">
            !
            --- 35,39 ----
            !
            Index: opac-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-main.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** opac-main.tmpl 8 Dec 2004 16:12:17 -0000 1.3 --- opac-main.tmpl 18 Jan 2005 17:35:55 -0000 1.3.2.1 *************** *** 12,16 ****

            Log in to Check Your Account

            !

            --- 12,16 ----

            Log in to Check Your Account

            !

            From oleonard at users.sourceforge.net Tue Jan 18 21:09:49 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 12:09:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en request.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29568/koha-tmpl/intranet-tmpl/npl/en Modified Files: request.tmpl Log Message: Converting popup links to normal links Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/request.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** request.tmpl 13 Jan 2005 21:53:03 -0000 1.4 --- request.tmpl 18 Jan 2005 20:09:28 -0000 1.5 *************** *** 130,134 ****
            ! &type=intra" onClick="openWindow(this, 'Item', 480, 640)"> --- 130,134 ---- ! &type=intra"> From oleonard at users.sourceforge.net Tue Jan 18 22:10:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:10:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes doc-head-circ-close.inc,1.2,1.2.2.1 doc-head-close-addbiblio.inc,1.1,1.1.2.1 doc-head-close.inc,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9555/koha-tmpl/intranet-tmpl/npl/en/includes Modified Files: Tag: rel_2_2 doc-head-circ-close.inc doc-head-close-addbiblio.inc doc-head-close.inc Log Message: Enabling popup function in javascript (previously disabled to prevent popups) Index: doc-head-circ-close.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/doc-head-circ-close.inc,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** doc-head-circ-close.inc 13 Apr 2004 16:57:24 -0000 1.2 --- doc-head-circ-close.inc 18 Jan 2005 21:10:15 -0000 1.2.2.1 *************** *** 8,14 ****
            Notes
            Date
            Pickup
            RequestNext Available, (or choose from list below)
            Card Number (Quick Search)
            --- 24,32 ----
    Next Available, (or choose from list below)
    (Quick Search)
    *************** *** 130,134 ****
    ! &type=intra" onClick="openWindow(this, 'Item', 480, 640)"> --- 130,134 ---- ! &type=intra"> From oleonard at users.sourceforge.net Tue Jan 18 22:22:07 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:22:07 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en bookcount.tmpl,1.1,1.1.2.1 modbib.tmpl,1.1,1.1.2.1 modbibitem.tmpl,1.1,1.1.2.1 updatebiblio.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11617/koha-tmpl/intranet-tmpl/npl/en Modified Files: Tag: rel_2_2 bookcount.tmpl modbib.tmpl modbibitem.tmpl updatebiblio.tmpl Log Message: Change to allow page-specific title in title tag Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookcount.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** bookcount.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- bookcount.tmpl 18 Jan 2005 21:21:23 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Circulation Statistics for Index: modbib.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbib.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** modbib.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbib.tmpl 18 Jan 2005 21:21:23 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Record for Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** modbibitem.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbibitem.tmpl 18 Jan 2005 21:21:28 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Biblioitem for Index: updatebiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/updatebiblio.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** updatebiblio.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- updatebiblio.tmpl 18 Jan 2005 21:21:28 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update Biblio From oleonard at users.sourceforge.net Tue Jan 18 22:38:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:38:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull result.tmpl,1.1.2.2,1.1.2.3 search.tmpl,1.1.2.1,1.1.2.2 searchresultlist.tmpl,1.1,1.1.2.1 subscription-bib-search.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14728/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: Tag: rel_2_2 result.tmpl search.tmpl searchresultlist.tmpl subscription-bib-search.tmpl Log Message: Change to allow page-specific title in title tag Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -r1.1.2.2 -r1.1.2.3 *** result.tmpl 11 Jan 2005 16:53:39 -0000 1.1.2.2 --- result.tmpl 18 Jan 2005 21:38:04 -0000 1.1.2.3 *************** *** 1,3 **** !

    Search results

    --- 1,3 ---- ! Koha -- Search Results

    Search results

    Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** search.tmpl 10 Jan 2005 17:05:03 -0000 1.1.2.1 --- search.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.2 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Catalog Search
    Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** searchresultlist.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- searchresultlist.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.1 *************** *** 1,3 **** !

    Authority search results

    --- 1,3 ---- ! Koha -- Authority search results

    Authority search results

    Index: subscription-bib-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-bib-search.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** subscription-bib-search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- subscription-bib-search.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.1 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Bib Search
    From oleonard at users.sourceforge.net Tue Jan 18 22:55:24 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:55:24 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-quicksearch-results.tmpl,NONE,1.1.2.1 member-quicksearch.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18387/koha-tmpl/intranet-tmpl/npl/en/members Added Files: Tag: rel_2_2 member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: Adding member quick search (already in HEAD) to rel_2_2 --- NEW FILE --- Koha -- Patron Quick Search
      Card Name (Cat.) Address
    ','mainform','member'); return false;" /> ">, ()
    No results found
    --- NEW FILE --- Koha -- Patron Quick Search
    From oleonard at users.sourceforge.net Tue Jan 18 22:57:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:57:10 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/members member-quicksearch-results.tmpl,NONE,1.1.2.1 member-quicksearch.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18688/koha-tmpl/intranet-tmpl/default/en/members Added Files: Tag: rel_2_2 member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: Adding member quick search (already in HEAD) to rel_2_2 --- NEW FILE ---

    Member Search

      Card Surname Firstname Address
    ','request','member'); return false;" />
    ">
    --- NEW FILE ---

    Member Quick Search

    From oleonard at users.sourceforge.net Tue Jan 18 22:59:16 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:59:16 -0800 Subject: [Koha-cvs] CVS: koha/members members-home.pl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19123/members Modified Files: Tag: rel_2_2 members-home.pl Log Message: Adding member quick search (already in HEAD) to rel_2_2 Index: members-home.pl =================================================================== RCS file: /cvsroot/koha/koha/members/members-home.pl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** members-home.pl 10 Mar 2004 15:13:45 -0000 1.1 --- members-home.pl 18 Jan 2005 21:59:09 -0000 1.1.2.1 *************** *** 10,14 **** my $query = new CGI; ! my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/members-home.tmpl", query => $query, --- 10,28 ---- my $query = new CGI; ! my $quicksearch = $query->param('quicksearch'); ! my ($template, $loggedinuser, $cookie); ! my $template_name; ! ! if($quicksearch){ ! ($template, $loggedinuser, $cookie) ! = get_template_and_user({template_name => "members/member-quicksearch.tmpl", ! query => $query, ! type => "intranet", ! authnotrequired => 0, ! flagsrequired => {borrowers => 1}, ! debug => 1, ! }); ! } else { ! ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/members-home.tmpl", query => $query, *************** *** 18,21 **** --- 32,37 ---- debug => 1, }); + } + output_html_with_http_headers $query, $cookie, $template->output; From oleonard at users.sourceforge.net Tue Jan 18 23:07:47 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:07:47 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes quicksearch-top.inc,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20451/koha-tmpl/intranet-tmpl/default/en/includes Added Files: Tag: rel_2_2 quicksearch-top.inc Log Message: Header include for member-quicksearch-results.tmpl (includes javascript for communicating with parent window) --- NEW FILE --- popup /includes/common-style.css"> From oleonard at users.sourceforge.net Tue Jan 18 23:11:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:11:59 -0800 Subject: [Koha-cvs] CVS: koha/members member.pl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21337/members Modified Files: Tag: rel_2_2 member.pl Log Message: Adding option to output using quicksearch template if the quicksearch parameter is present (uses member-quicksearch.tmpl and member-quicksearch-results.tmpl) Index: member.pl =================================================================== RCS file: /cvsroot/koha/koha/members/member.pl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** member.pl 5 Sep 2004 22:34:05 -0000 1.2 --- member.pl 18 Jan 2005 22:11:43 -0000 1.2.2.1 *************** *** 33,45 **** my $input = new CGI; ! ! my $theme = $input->param('theme') || "default"; ! # only used if allowthemeoverride is set ! #my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' ); ! # FIXME - Error-checking ! #my $template = HTML::Template->new( filename => $tmpldata{'path'}, ! # die_on_bad_params => 0, ! # loop_context_vars => 1 ); ! my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/member.tmpl", query => $input, --- 33,49 ---- my $input = new CGI; ! my $quicksearch = $input->param('quicksearch'); ! my ($template, $loggedinuser, $cookie); ! if($quicksearch){ ! ($template, $loggedinuser, $cookie) ! = get_template_and_user({template_name => "members/member-quicksearch-results.tmpl", ! query => $input, ! type => "intranet", ! authnotrequired => 0, ! flagsrequired => {borrowers => 1}, ! debug => 1, ! }); ! } else { ! ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/member.tmpl", query => $input, *************** *** 49,52 **** --- 53,65 ---- debug => 1, }); + } + my $theme = $input->param('theme') || "default"; + # only used if allowthemeoverride is set + #my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' ); + # FIXME - Error-checking + #my $template = HTML::Template->new( filename => $tmpldata{'path'}, + # die_on_bad_params => 0, + # loop_context_vars => 1 ); + my $member=$input->param('member'); From oleonard at users.sourceforge.net Tue Jan 18 23:53:08 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:53:08 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_subfields_structure.tmpl,NONE,1.1 auth_tag_structure.tmpl,NONE,1.1 authtypes.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29639/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: auth_subfields_structure.tmpl auth_tag_structure.tmpl authtypes.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration

    Edit subfields

    " name="Aform" method="post"> " /> ">

    Tag , Subfield

    MARC constraints

    repeatable mandatory

    " size="20" /> (example for 200a : '200c','200d','200e')

    Editor constaints

    " size="40" maxlength="80" />

    " size="40" maxlength="80" />

    hidden (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)

    URL (if checked, it means that the subfield is an URL and can be clicked

    or thesaurus: or plugin:

    Note: in the last column, you can choose:

    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.

    Subfield

    " method="post"> " /> " /> " /> " />

    CONFIRM DELETION

    " method="post"> " />

    Authority MARC subfield structure admin for tag (framework )(default framework)

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    ">
    Subfield Text Constraints Delete
    subfield ignored Managed, Repeatable, Not repeatable, Mandatory, Not mandatory, see also : , hidden, is an url, Auth value :, Plugin :, ">Delete
    Edit &authtypecode="> //images/2uparrow.png" width="32" hspace="0" vspace="0" border="0"> << Previous Next >>
    --- NEW FILE --- Koha -- System Administration

    Authority MARC framework for default framework

    Modify tag Add tag

    " name="Aform" method="post"> " />

    " size="80" maxlength="100" />

    " size="80" maxlength="100" />

    (if you select a value here, the indicators will be limited to the authorised value list)

    " method="post"> " /> Data deleted " method="post"> " method="post"> " /> Create authority framework for using

    Select an authority framework

    " method="post"> " />
    tag
     
    CONFIRM DELETION
    " method="post">
    ">
    Tag Lib Repeatable Mandatory Authorised
    value
    Subfields Edit Delete
    YesNo YesNo " class="button">subfields ">Edit ">Delete
    " method="post"> " /> ?offset=&searchfield=">Previous Page ?offset=&searchfield=">Next Page
    --- NEW FILE --- Koha -- System Administration
    " name="Aform" method="post">
    Modify authority type Add authority type
    " />
    " />
    " />Enter here the number of the tag that will be reported in the biblio (subfield by subfield). For example, in UNIMARC, enter 200 to report every 200 subfield in the 70x biblio

    Authority structure definition for ()

    This record is used times

    CONFIRM DELETION

    " method="post"> " />
    " method="post">

    Auth type Admin

    Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins

    Code Description summary Tag reported   Edit Delete
      Default framework     MARC structure    
    " class="button parameters" >MARC structure ?op=add_form&authtypecode=">Edit ?op=delete_confirm&authtypecode=">Delete
    " method="post">
    "><< Previous ">Next >> /images/background-mem.gif">Upper Age Limit /images/background-mem.gif">Age Required/images/background-mem.gif">Fine /images/background-mem.gif">Overdue/images/background-mem.gif">Issue limit /images/background-mem.gif">Reserve /images/background-mem.gif"> Yes --- 268,271 ---- *************** *** 277,281 **** ?op=add_form&categorycode=">//images/fileopen.png" width="32" hspace="0" vspace="0" border="0">
    CONFIRM DELETION
    " -->&modify=edit">Edit
    &modify=edit">Edit
    Due Status
    - - &bornum=" class="padded">Renew - - Not renewable - -
    Reserved Items Waiting
    TitleAuthor Reserve date Pick Up Branch
    ! ">  !
    --- 41,59 ---- Reserved Items Waiting ! Title Reserve date Pick Up Branch ! ! /images/.gif" alt="" title="" /> ! "> ! ! Waiting at ! ! In transit from to ! ! *************** *** 69,75 **** ! /images/.gif" alt="" /> "> ! () --> --- 73,79 ---- ! /images/.gif" alt="" title="" /> "> ! --> *************** *** 86,90 **** Due ! Status --- 90,94 ---- Due ! *************** *** 92,101 **** ! /images/.gif" alt="" /> "> ! () YesNo --> ! &bornum=" class="padded">Renew --- 96,105 ---- ! /images/.gif" alt="" title="" /> "> ! YesNo --> ! &bornum=" class="padded">Renew *************** *** 103,107 **** Not renewable ! --- 107,111 ---- Not renewable ! --> *************** *** 121,136 **** ! Title Placed On Pick Up Location "> ! () ! !
    --- 125,144 ---- ! Title Placed On Pick Up Location + Status + /images/.gif" alt="" title="" /> "> ! ! ! ! Waiting at In transit from to   !
    From oleonard at users.sourceforge.net Wed Jan 19 22:39:28 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:39:28 -0800 Subject: [Koha-cvs] CVS: koha request.pl,1.28,1.29 Message-ID: Update of /cvsroot/koha/koha In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13177 Modified Files: request.pl Log Message: Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should display that information. Index: request.pl =================================================================== RCS file: /cvsroot/koha/koha/request.pl,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** request.pl 13 Jul 2004 12:55:01 -0000 1.28 --- request.pl 19 Jan 2005 21:39:25 -0000 1.29 *************** *** 134,141 **** --- 134,145 ---- my $item = $res->{'itemnumber'}; $item = getiteminformation(\%env,$item); + $reserve{'holdingbranch'}=$item->{'holdingbranch'}; $reserve{'barcode'}=$item->{'barcode'}; $reserve{'biblionumber'}=$item->{'biblionumber'}; $reserve{'wbrcode'} = $res->{'branchcode'}; $reserve{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'}; + if($reserve{'holdingbranch'} eq $reserve{'wbrcode'}){ + $reserve{'atdestination'} = 1; + } } $reserve{'date'} = format_date($res->{'reservedate'}); From oleonard at users.sourceforge.net Wed Jan 19 22:45:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:45:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en request.tmpl,1.17,1.18 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15288/koha-tmpl/intranet-tmpl/default/en Modified Files: request.tmpl Log Message: Updated to show items as waiting only if destination branch matches holding branch. Otherwise waiting items will be shown as "in transit" between holding branch and destination branch. Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/request.tmpl,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** request.tmpl 13 Jan 2005 22:41:03 -0000 1.17 --- request.tmpl 19 Jan 2005 21:45:56 -0000 1.18 *************** *** 109,113 **** ! Item waiting at > > " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> --- 46,50 ---- ! class="hilighted"> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> From oleonard at users.sourceforge.net Thu Jan 20 18:37:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:37:58 -0800 Subject: [Koha-cvs] CVS: koha/admin issuingrules.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9072/admin Modified Files: issuingrules.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: issuingrules.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/issuingrules.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** issuingrules.pl 18 Aug 2004 16:05:14 -0000 1.3 --- issuingrules.pl 20 Jan 2005 17:37:56 -0000 1.4 *************** *** 132,136 **** $sth->execute; # $i=0; ! my $toggle="white"; my @row_loop; my @itemtypes; --- 132,136 ---- $sth->execute; # $i=0; ! my $toggle= 1; my @row_loop; my @itemtypes; *************** *** 146,153 **** my @trow2; my @cell_loop; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } for (my $i=0;$i<=$#trow3;$i++){ --- 146,153 ---- my @trow2; my @cell_loop; ! if ( $toggle eq 1 ) { ! $toggle = 0; } else { ! $toggle = 1; } for (my $i=0;$i<=$#trow3;$i++){ From oleonard at users.sourceforge.net Thu Jan 20 18:38:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:38:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters issuingrules.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9222/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: issuingrules.tmpl Log Message: Altering table cell color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: issuingrules.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** issuingrules.tmpl 19 Jul 2004 19:20:29 -0000 1.3 --- issuingrules.tmpl 20 Jan 2005 17:38:16 -0000 1.4 *************** *** 46,50 **** ! "> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> --- 46,50 ---- ! class="hilighted"> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> From oleonard at users.sourceforge.net Thu Jan 20 18:39:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:39:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters biblio_framework.tmpl,NONE,1.1 issuingrules.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9613/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: biblio_framework.tmpl issuingrules.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration: Modify framework textAdd frameworkDelete Framework for ()?Biblio Framework
    " name="Aform" method="post">
    Modify framework textAdd framework
    " />
    " />

    Delete ramework for ()?

    This framework is used times

    " method="post">" />
    " method="post">

    Biblio framework

    Framework name, then go to MARC biblio to set MARC editor parameters

    Code Description   Edit Delete
      Default framework ">MARC structure    
    " >MARC structure ?op=add_form&frameworkcode=">Edit ?op=delete_confirm&frameworkcode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Issuing Rules

    Defining issuing rules for default issuing rules

    HINT for issues

    Each box needs to be filled in with issuelength,maxissues

    eq 21,5 enables 5 issues for 21 days

    HINT for fines

    Each box needs to be filled in with fine,time to start charging,charging cycle

    eg 1,7,7 = 1 [USD,EUR,etc] fine after 7 days, every 7 days

    Fines are calculated by the fines2.pl script, located in misc directory. Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night

    Default values

    If a cell is not filled, the 1st of the following value is searched :

    • same branch and same borrower category, itemtype *
    • same branch and same itemtype, borrower category *
    • same itemtype and borrower category, branch *
    • everywhere
    • If nothing is set, default is 21,5 (hardcoded)
    class="highlight"> " value="" size="6" maxlength="10" /> / " value="" size="6" maxlength="10" />
    Defining issuing rules for
     
    Issue / fine
    From oleonard at users.sourceforge.net Thu Jan 20 18:41:09 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:41:09 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_subfields_structure.tmpl,NONE,1.1.2.1 auth_tag_structure.tmpl,NONE,1.1.2.1 authtypes.tmpl,NONE,1.1.2.1 biblio_framework.tmpl,NONE,1.1.2.1 issuingrules.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9964/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: Tag: rel_2_2 auth_subfields_structure.tmpl auth_tag_structure.tmpl authtypes.tmpl biblio_framework.tmpl issuingrules.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration

    Edit subfields

    " name="Aform" method="post"> " /> ">

    Tag , Subfield

    MARC constraints

    repeatable mandatory

    " size="20" /> (example for 200a : '200c','200d','200e')

    Editor constaints

    " size="40" maxlength="80" />

    " size="40" maxlength="80" />

    hidden (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)

    URL (if checked, it means that the subfield is an URL and can be clicked

    or thesaurus: or plugin:

    Note: in the last column, you can choose:

    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.

    Subfield

    " method="post"> " /> " /> " /> " />

    CONFIRM DELETION

    " method="post"> " />

    Authority MARC subfield structure admin for tag (framework )(default framework)

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    ">
    Subfield Text Constraints Delete
    subfield ignored Managed, Repeatable, Not repeatable, Mandatory, Not mandatory, see also : , hidden, is an url, Auth value :, Plugin :, ">Delete
    Edit &authtypecode="> //images/2uparrow.png" width="32" hspace="0" vspace="0" border="0"> << Previous Next >>
    --- NEW FILE --- Koha -- System Administration

    Authority MARC framework for default framework

    Modify tag Add tag

    " name="Aform" method="post"> " />

    " size="80" maxlength="100" />

    " size="80" maxlength="100" />

    (if you select a value here, the indicators will be limited to the authorised value list)

    " method="post"> " /> Data deleted " method="post"> " method="post"> " /> Create authority framework for using

    Select an authority framework

    " method="post"> " />
    tag
     
    CONFIRM DELETION
    " method="post">
    ">
    Tag Lib Repeatable Mandatory Authorised
    value
    Subfields Edit Delete
    YesNo YesNo " class="button">subfields ">Edit ">Delete
    " method="post"> " /> ?offset=&searchfield=">Previous Page ?offset=&searchfield=">Next Page
    --- NEW FILE --- Koha -- System Administration
    " name="Aform" method="post">
    Modify authority type Add authority type
    " />
    " />
    " />Enter here the number of the tag that will be reported in the biblio (subfield by subfield). For example, in UNIMARC, enter 200 to report every 200 subfield in the 70x biblio

    Authority structure definition for ()

    This record is used times

    CONFIRM DELETION

    " method="post"> " />
    " method="post">

    Auth type Admin

    Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins

    Code Description summary Tag reported   Edit Delete
      Default framework     MARC structure    
    " class="button parameters" >MARC structure ?op=add_form&authtypecode=">Edit ?op=delete_confirm&authtypecode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Modify framework textAdd frameworkDelete Framework for ()?Biblio Framework
    " name="Aform" method="post">
    Modify framework textAdd framework
    " />
    " />

    Delete ramework for ()?

    This framework is used times

    " method="post">" />
    " method="post">

    Biblio framework

    Framework name, then go to MARC biblio to set MARC editor parameters

    Code Description   Edit Delete
      Default framework ">MARC structure    
    " >MARC structure ?op=add_form&frameworkcode=">Edit ?op=delete_confirm&frameworkcode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Issuing Rules

    Defining issuing rules for default issuing rules

    HINT for issues

    Each box needs to be filled in with issuelength,maxissues

    eq 21,5 enables 5 issues for 21 days

    HINT for fines

    Each box needs to be filled in with fine,time to start charging,charging cycle

    eg 1,7,7 = 1 [USD,EUR,etc] fine after 7 days, every 7 days

    Fines are calculated by the fines2.pl script, located in misc directory. Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night

    Default values

    If a cell is not filled, the 1st of the following value is searched :

    • same branch and same borrower category, itemtype *
    • same branch and same itemtype, borrower category *
    • same itemtype and borrower category, branch *
    • everywhere
    • If nothing is set, default is 21,5 (hardcoded)
    class="highlight"> " value="" size="6" maxlength="10" /> / " value="" size="6" maxlength="10" />
    Defining issuing rules for
     
    Issue / fine
    From oleonard at users.sourceforge.net Thu Jan 20 19:03:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:03:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes common-style.css,1.34,1.35 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15346/koha-tmpl/intranet-tmpl/default/en/includes Modified Files: common-style.css Log Message: Adding declaration for tr.hilighted to match td.hilighted (for alternating row colors) Index: common-style.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/common-style.css,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** common-style.css 9 Dec 2004 19:44:09 -0000 1.34 --- common-style.css 20 Jan 2005 18:03:33 -0000 1.35 *************** *** 105,109 **** } /* hilighted cell */ ! td.hilighted { border-left:0px; background-color:#ffffcc; --- 105,109 ---- } /* hilighted cell */ ! td.hilighted, tr.hilighted { border-left:0px; background-color:#ffffcc; From oleonard at users.sourceforge.net Thu Jan 20 19:04:51 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:04:51 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes common-style.css,1.34,1.34.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15729/koha-tmpl/intranet-tmpl/default/en/includes Modified Files: Tag: rel_2_2 common-style.css Log Message: Adding declaration for tr.hilighted to match td.hilighted (for alternating row colors) Index: common-style.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/common-style.css,v retrieving revision 1.34 retrieving revision 1.34.2.1 diff -C2 -r1.34 -r1.34.2.1 *** common-style.css 9 Dec 2004 19:44:09 -0000 1.34 --- common-style.css 20 Jan 2005 18:04:49 -0000 1.34.2.1 *************** *** 105,109 **** } /* hilighted cell */ ! td.hilighted { border-left:0px; background-color:#ffffcc; --- 105,109 ---- } /* hilighted cell */ ! td.hilighted, tr.hilighted { border-left:0px; background-color:#ffffcc; From oleonard at users.sourceforge.net Thu Jan 20 19:42:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:42:37 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.32.2.1,1.32.2.2 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24947/admin Modified Files: Tag: rel_2_2 marc_subfields_structure.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32.2.1 retrieving revision 1.32.2.2 diff -C2 -r1.32.2.1 -r1.32.2.2 *** marc_subfields_structure.pl 19 Jan 2005 17:17:10 -0000 1.32.2.1 --- marc_subfields_structure.pl 20 Jan 2005 18:42:29 -0000 1.32.2.2 *************** *** 154,165 **** $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle="white"; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', --- 154,165 ---- $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle=1; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', *************** *** 358,368 **** my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle="white"; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } my %row_data; # get a fresh hash for the row data --- 358,368 ---- my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle=1; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } my %row_data; # get a fresh hash for the row data *************** *** 382,386 **** $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{bgcolor} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; --- 382,386 ---- $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{toggle} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; From oleonard at users.sourceforge.net Thu Jan 20 19:44:13 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:44:13 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters marc_subfields_structure.tmpl,1.38,1.38.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25334/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 marc_subfields_structure.tmpl Log Message: Altering table row color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.38 retrieving revision 1.38.2.1 diff -C2 -r1.38 -r1.38.2.1 *** marc_subfields_structure.tmpl 3 Jan 2005 10:48:39 -0000 1.38 --- marc_subfields_structure.tmpl 20 Jan 2005 18:44:05 -0000 1.38.2.1 *************** *** 114,118 **** Delete ! "> --- 114,118 ---- Delete ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 19:45:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:45:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters marc_subfields_structure.tmpl,1.38,1.39 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25747/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: marc_subfields_structure.tmpl Log Message: Altering table row color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -r1.38 -r1.39 *** marc_subfields_structure.tmpl 3 Jan 2005 10:48:39 -0000 1.38 --- marc_subfields_structure.tmpl 20 Jan 2005 18:45:29 -0000 1.39 *************** *** 114,118 **** Delete ! "> --- 114,118 ---- Delete ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 19:48:17 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:48:17 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.32,1.33 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26578/admin Modified Files: marc_subfields_structure.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 --- marc_subfields_structure.pl 20 Jan 2005 18:48:12 -0000 1.33 *************** *** 154,165 **** $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle="white"; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', --- 154,165 ---- $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle=1; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', *************** *** 358,368 **** my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle="white"; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } my %row_data; # get a fresh hash for the row data --- 358,368 ---- my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle=1; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } my %row_data; # get a fresh hash for the row data *************** *** 382,386 **** $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{bgcolor} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; --- 382,386 ---- $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{toggle} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; From oleonard at users.sourceforge.net Thu Jan 20 20:32:04 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:32:04 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui acqui-home.tmpl,1.3,1.3.2.1 acquire.tmpl,1.1,1.1.2.1 basket.tmpl,1.2,1.2.2.1 newbasket2.tmpl,1.1,1.1.2.1 order.tmpl,1.2,1.2.2.1 recieve.tmpl,1.1,1.1.2.1 recieveorder.tmpl,1.1,1.1.2.1 supplier.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3765/koha-tmpl/intranet-tmpl/npl/en/acqui Modified Files: Tag: rel_2_2 acqui-home.tmpl acquire.tmpl basket.tmpl newbasket2.tmpl order.tmpl recieve.tmpl recieveorder.tmpl supplier.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: acqui-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acqui-home.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** acqui-home.tmpl 28 Oct 2004 17:12:26 -0000 1.3 --- acqui-home.tmpl 20 Jan 2005 19:31:57 -0000 1.3.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Acquisitions Index: acquire.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acquire.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** acquire.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- acquire.tmpl 20 Jan 2005 19:31:57 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : Invoice, Index: basket.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/basket.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** basket.tmpl 28 Oct 2004 17:12:26 -0000 1.2 --- basket.tmpl 20 Jan 2005 19:31:58 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- New Shopping Basket () for Index: newbasket2.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/newbasket2.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newbasket2.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- newbasket2.tmpl 20 Jan 2005 19:31:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Shopping Basket For: Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/order.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** order.tmpl 28 Oct 2004 17:12:27 -0000 1.2 --- order.tmpl 20 Jan 2005 19:31:58 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Supplier Search Results Index: recieve.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieve.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** recieve.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieve.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : , Invoice Index: recieveorder.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieveorder.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** recieveorder.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieveorder.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receive Orders From Supplier Index: supplier.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/supplier.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** supplier.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- supplier.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update: Add supplier From oleonard at users.sourceforge.net Thu Jan 20 20:32:40 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:32:40 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple marcimport.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4009/koha-tmpl/intranet-tmpl/npl/en/acqui.simple Modified Files: Tag: rel_2_2 marcimport.tmpl Log Message: Correction to header includes Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple/marcimport.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** marcimport.tmpl 13 Apr 2004 16:51:08 -0000 1.2 --- marcimport.tmpl 20 Jan 2005 19:32:37 -0000 1.2.2.1 *************** *** 1,4 **** Koha -- Cataloging: MARC Import ! --- 1,4 ---- Koha -- Cataloging: MARC Import ! From oleonard at users.sourceforge.net Thu Jan 20 20:34:01 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:34:01 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves addbookbybiblionumber.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4275/koha-tmpl/intranet-tmpl/npl/en/bookshelves Modified Files: Tag: rel_2_2 addbookbybiblionumber.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** addbookbybiblionumber.tmpl 11 Jan 2005 16:46:27 -0000 1.1.2.1 --- addbookbybiblionumber.tmpl 20 Jan 2005 19:33:57 -0000 1.1.2.2 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Add to Virtual Shelf
    From oleonard at users.sourceforge.net Thu Jan 20 20:35:49 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:35:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/circ branchtransfers.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4677/koha-tmpl/intranet-tmpl/npl/en/circ Modified Files: Tag: rel_2_2 branchtransfers.tmpl Log Message: Converting pop-up links to normal links Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/branchtransfers.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** branchtransfers.tmpl 13 Apr 2004 16:53:45 -0000 1.2 --- branchtransfers.tmpl 20 Jan 2005 19:35:46 -0000 1.2.2.1 *************** *** 12,18 ****
    ! ! ! ! !
    Reserve found for (" onclick="openWindow(this,'Member', 480, 640)">). ! Item is marked waiting at for (" onclick="openWindow(this,'Member', 480, 640)">).
    Set reserve to waiting and transfer book to : --- 12,18 ----
    ! --- 125,129 ---- From oleonard at users.sourceforge.net Thu Jan 20 20:37:02 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:37:02 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-flags.tmpl,1.2,1.2.2.1 newimember.tmpl,1.1,1.1.2.1 newjmember.tmpl,1.1,1.1.2.1 newmember.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4947/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member-flags.tmpl newimember.tmpl newjmember.tmpl newmember.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: member-flags.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member-flags.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** member-flags.tmpl 13 Apr 2004 16:59:43 -0000 1.2 --- member-flags.tmpl 20 Jan 2005 19:36:57 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Set Privileges for , Index: newimember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newimember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newimember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newimember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm New Borrower Index: newjmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newjmember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newjmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newjmember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Details Index: newmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newmember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newmember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Record From oleonard at users.sourceforge.net Thu Jan 20 21:19:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:19:10 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22.2.1,1.22.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17861/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: Altering table row color declaration to match changes in categorie.pl (moving color declaration out of script and into template) Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22.2.1 retrieving revision 1.22.2.2 diff -C2 -r1.22.2.1 -r1.22.2.2 *** categorie.tmpl 19 Jan 2005 17:24:11 -0000 1.22.2.1 --- categorie.tmpl 20 Jan 2005 20:19:05 -0000 1.22.2.2 *************** *** 261,265 **** ! "> --- 261,265 ---- ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 21:20:04 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:20:04 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22,1.23 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18170/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: categorie.tmpl Log Message: Altering table row color declaration to match changes in categorie.pl (moving color declaration out of script and into template) Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** categorie.tmpl 3 Dec 2004 21:44:04 -0000 1.22 --- categorie.tmpl 20 Jan 2005 20:20:01 -0000 1.23 *************** *** 263,267 **** ! "> --- 263,267 ---- ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 21:20:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:20:18 -0800 Subject: [Koha-cvs] CVS: koha/admin categorie.pl,1.16,1.16.2.1 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18302/admin Modified Files: Tag: rel_2_2 categorie.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: categorie.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categorie.pl,v retrieving revision 1.16 retrieving revision 1.16.2.1 diff -C2 -r1.16 -r1.16.2.1 *** categorie.pl 18 Aug 2004 16:05:14 -0000 1.16 --- categorie.pl 20 Jan 2005 20:20:15 -0000 1.16.2.1 *************** *** 163,167 **** my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 'white'; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, --- 163,167 ---- my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 0; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, *************** *** 176,186 **** toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } } --- 176,186 ---- toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 0 ) { ! $toggle = 1; } else { ! $toggle = 0; } } From oleonard at users.sourceforge.net Thu Jan 20 21:21:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:21:11 -0800 Subject: [Koha-cvs] CVS: koha/admin categorie.pl,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18443/admin Modified Files: categorie.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: categorie.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categorie.pl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** categorie.pl 18 Aug 2004 16:05:14 -0000 1.16 --- categorie.pl 20 Jan 2005 20:20:57 -0000 1.17 *************** *** 163,167 **** my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 'white'; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, --- 163,167 ---- my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 0; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, *************** *** 176,186 **** toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } } --- 176,186 ---- toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 0 ) { ! $toggle = 1; } else { ! $toggle = 0; } } From oleonard at users.sourceforge.net Thu Jan 20 21:22:43 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:22:43 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categoryitem.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18847/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 categoryitem.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: categoryitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categoryitem.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** categoryitem.tmpl 19 Feb 2004 19:14:35 -0000 1.1 --- categoryitem.tmpl 20 Jan 2005 20:22:40 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Modify categoryAdd category From oleonard at users.sourceforge.net Thu Jan 20 21:23:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:23:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categorie.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18976/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: Synching with default tempalte Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categorie.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** categorie.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- categorie.tmpl 20 Jan 2005 20:23:15 -0000 1.2.2.1 *************** *** 4,8 **** Category Deleted Patron Categories ! --- 4,8 ---- Category Deleted Patron Categories ! *************** *** 88,99 **** ! ! ! ! ! ! !
    Reserve found for (">). ! Item is marked waiting at for (">).
    Set reserve to waiting and transfer book to : *************** *** 94,99 **** ! Item was on loan to " ! onClick="openWindow(this,'Member', 480, 640)"> and has been returned. --- 94,98 ---- ! Item was on loan to "> and has been returned. *************** *** 126,130 ****
    ! &type=intra" onclick="openWindow(this, 'Item', 480, 640)">
    ! &type=intra">
    Description
    Enrolment period years
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrollment fee
    Overdue notice required" />
    Issue limit" />
    Reserve fee" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    --- 88,96 ----
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrollment fee$
    Overdue notice required" />
    Reserve fee$" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    *************** *** 113,138 **** !

    Confirm Deletion of Category

    !

    This category is used times. Deletion not possible

    !
    ! ! ! ! ! ! ! ! !
    Category code
    Description
    Enrolment period
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrolment fee
    Overdue notice required
    Issue limit
    Reserve fee
    !

    This category is used times. Deletion not possible

    !
    " method="post"> ! ! " />
    " method="post"> ! !
    " method="post"> --- 110,127 ---- !

    Cagegory is in use. Deletion not possible!

    Confirm Deletion of Category

    !
    This category is used times. Deletion not possible
    !
    ! ! ! ! ! !
    Category code
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrolment fee$
    Overdue notice requiredYesNo
    Reserve fee$
    ! " method="post">
    " method="post"> *************** *** 159,190 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! --> ! --> --- 148,177 ---- !
    CategoryDescriptionEnrollmentUpper Age LimitAge RequiredBulkOverdueIssue Limit 
    ?op=add_form&categorycode=">Edit ">Delete
    ! ! ! ! ! ! ! ! ! ! ! ! class="highlight"> ! ! ! ! ! ! From oleonard at users.sourceforge.net Thu Jan 20 21:24:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:24:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categorie.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19188/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: categorie.tmpl Log Message: Synching with default tempalte Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categorie.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** categorie.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- categorie.tmpl 20 Jan 2005 20:24:08 -0000 1.3 *************** *** 4,8 **** Category Deleted Patron Categories ! --- 4,8 ---- Category Deleted Patron Categories ! *************** *** 88,99 **** ! ! ! ! ! ! !
    CategoryDescriptionEnrollment PeriodUpper Age LimitAge RequiredFineEnrollment FeeOverdueIssue LimitReservation Fee 
    years years years ?op=add_form&categorycode=">Edit ">Delete
    Description
    Enrolment period years
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrollment fee
    Overdue notice required" />
    Issue limit" />
    Reserve fee" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    --- 88,96 ---- Description Enrolment period years ! Upperage limit years ! Age Required years ! Enrollment fee$ Overdue notice required" /> ! Reserve fee$" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    *************** *** 113,138 **** !

    Confirm Deletion of Category

    !

    This category is used times. Deletion not possible

    !
    ! ! ! ! ! ! ! ! !
    Category code
    Description
    Enrolment period
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrolment fee
    Overdue notice required
    Issue limit
    Reserve fee
    !

    This category is used times. Deletion not possible

    !
    " method="post"> ! ! " />
    " method="post"> ! !
    " method="post"> --- 110,127 ---- !

    Cagegory is in use. Deletion not possible!

    Confirm Deletion of Category

    !
    This category is used times. Deletion not possible
    !
    ! ! ! ! ! !
    Category code
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrolment fee$
    Overdue notice requiredYesNo
    Reserve fee$
    ! " method="post">
    " method="post"> *************** *** 159,190 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! --> ! --> --- 148,177 ---- !
    CategoryDescriptionEnrollmentUpper Age LimitAge RequiredBulkOverdueIssue Limit 
    ?op=add_form&categorycode=">Edit ">Delete
    ! ! ! ! ! ! ! ! ! ! ! ! class="highlight"> ! ! ! ! ! ! From oleonard at users.sourceforge.net Thu Jan 20 22:27:54 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:27:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/suggestion acceptorreject.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3838/koha-tmpl/intranet-tmpl/npl/en/suggestion Modified Files: Tag: rel_2_2 acceptorreject.tmpl Log Message: Moving submit button inside form tag where it might do some good. Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion/acceptorreject.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** acceptorreject.tmpl 13 Jan 2005 20:56:56 -0000 1.1.2.1 --- acceptorreject.tmpl 20 Jan 2005 21:27:52 -0000 1.1.2.2 *************** *** 35,41 **** !
    CategoryDescriptionEnrollment PeriodUpper Age LimitAge RequiredFineEnrollment FeeOverdueIssue LimitReservation Fee 
    years years years ?op=add_form&categorycode=">Edit ">Delete

    ! --- 35,41 ---- !

    ! From oleonard at users.sourceforge.net Thu Jan 20 22:30:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:30:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/suggestion acceptorreject.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4357/koha-tmpl/intranet-tmpl/npl/en/suggestion Modified Files: acceptorreject.tmpl Log Message: Moving submit button inside form tag where it might do some good. Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion/acceptorreject.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acceptorreject.tmpl 13 Jan 2005 20:48:31 -0000 1.1 --- acceptorreject.tmpl 20 Jan 2005 21:30:20 -0000 1.2 *************** *** 35,41 **** !

    ! --- 35,41 ---- !

    ! From oleonard at users.sourceforge.net Thu Jan 20 22:31:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:31:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui histsearch.tmpl,NONE,1.1.2.1 suggestion-select.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4647/koha-tmpl/intranet-tmpl/npl/en/acqui Added Files: Tag: rel_2_2 histsearch.tmpl suggestion-select.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- Acquisitions: Order Search

    Order search

      Title Author Supplier Placed on Recieved on Quantity ordered  
    Filter By: " /> " /> " />      
      ">  
    --- NEW FILE --- Koha -- Acquisitions: Suggestions
    Filter Suggestion Results
    " />
    " />
    " />

    class="highlight">
    Suggestions
    Suggestion Suggested by Accepted by  

    -

    copy. year: volume: ISBN :
    published by: in at

    ()

    , , &basketno=&suggestionid=&biblio=">Order &basketno=&amp;suggestionid=">Order
    From oleonard at users.sourceforge.net Thu Jan 20 22:32:09 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:32:09 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui histsearch.tmpl,1.1,1.2 suggestion-select.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4840/koha-tmpl/intranet-tmpl/npl/en/acqui Added Files: histsearch.tmpl suggestion-select.tmpl Log Message: Synching with default tempalte From oleonard at users.sourceforge.net Thu Jan 20 22:44:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:44:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en about.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8035/koha-tmpl/intranet-tmpl/npl/en Modified Files: Tag: rel_2_2 about.tmpl Log Message: Synching with default tempalte Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/about.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** about.tmpl 13 Apr 2004 16:50:26 -0000 1.2 --- about.tmpl 20 Jan 2005 21:44:56 -0000 1.2.2.1 *************** *** 1,4 **** Koha -- About Koha ! --- 1,4 ---- Koha -- About Koha ! *************** *** 8,12 ****

    Data about the current version of Koha for bug reports (or general interest).

    !
    --- 8,12 ----

    Data about the current version of Koha for bug reports (or general interest).

    !
    Koha version:
    *************** *** 33,56 ****
    Koha version:
    --- 33,57 ----
    Credits
    Core Team
      !
    • Pat Eyler, Kaitiaki
    • !
    • Paul Poulain, 2.0 release manager (MARC developper)
    • !
    • Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    • !
    • Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    • !
    • Nicholas Rosasco, (Documentation Compiler)
    • !
    • Mike Hansen
    • !
    • MJ Ray and Turo Technology LLP, England (quality control, installer & updater)
    • !
    • Nicolas Morin, French Translation
    • !
    • Horowhenua Library Trust ! Rosalie Blake, Head of Libraries ! Jo Ransom
    • !
    • Katipo Communications ! Rachel Hamilton-Williams, General Manager (Webmistress) ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    + + *************** *** 59,92 ****
    Credits
    Special thanks to the following funders
    • Horowhenua Library Trust and Rosalie Blake, Head of Libraries, (Koha 1.0)
    • +
    • The Nelsonville Public Library (MARC support)
    • +
    • EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)
    • +
    • ENSMP (Ecole Nationale Suprieure des Mines de Paris) (biblio frameworks, MARC authorities, OPAC basket, Serials support)
    Core Team
      !
    • Rachel Hamilton-Williams, Kaitiaki
    • !
    • Paul Poulain, 2.2 release manager (MARC developper)
    • !
    • Stephen Hedges and the Nelsonville Public Library (MARC features funders)
    • !
    • Nicholas Rosasco, (Documentation Compiler)
    • !
    • Mike Hansen
    • !
    • MJ Ray and Turo Technology LLP, (quality control, installer and updater, 2.0 release maintainer)
    • !
    • Katipo Communications
    • !
        !
      • Rachel Hamilton-Williams, General Manager (Webmistress)
      • !
      • Chris Cormack, 1.2 release manager
      • !
      • and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
      • !
      !
    • Adam Thick
    • !
    • Andrew Hooper
    • !
    • Al Banks
    • !
    • Ambrose Li
    • !
    • Andrew Arensburger
    • !
    • Benedykt P. Barszcz (Polish for 2.0)
    • !
    • Brig C. McCoy
    • !
    • Daniel Holth
    • !
    • David Strainchamps
    • !
    • Dorian Meid
    • !
    • Ed Summers
    • !
    • Florian Bischof
    • !
    • Francisco M. Marzoa Alonso
    • !
    • Glen Stewart
    • !
    • Henri-Damien Laurent
    • !
    • Jrome Vizcaino (Esiee School)
    • !
    • Kip DeGraaf
    • !
    • Marco Gaiarin
    • !
    • Md. Aftabuddin
    • !
    • Michaes Herman
    • !
    • Michel Lerenard (Esiee School)
    • !
    • Mike Johnson
    • !
    • Mike Mylonas
    • !
    • Pierre Cauchois (Esiee School)
    • !
    • Pawel Skuza (Polish for 1.2)
    • !
    • Regula Sebastiao
    • !
    • Roger Buck
    • !
    • Ron Wickersham
    • !
    • Sebastiaan Durand
    • !
    --- 60,94 ----
      !
    • Adam Thick
    • !
    • Andrew Hooper
    • !
    • Al Banks
    • !
    • Ambrose Li (chinese translation and translation tool)
    • !
    • Andrew Arensburger (the small and great C4::Context module)
    • !
    • Benedykt P. Barszcz (Polish for 2.0)
    • !
    • Brig C. McCoy
    • !
    • Daniel Holth
    • !
    • David Strainchamps
    • !
    • Dorian Meid (German translation)
    • !
    • doXulting (Matthieu Branlat) OPAC basket
    • !
    • Ed Summers (Some code and Perl packages like MARC::Record)
    • !
    • Esiee School (Jrome Vizcaino, Michel Lerenard, Pierre Cauchois)
    • !
    • Florian Bischof
    • !
    • Francisco M. Marzoa Alonso
    • !
    • Glen Stewart
    • !
    • Henri-Damien Laurent
    • !
    • Jo Ransom
    • !
    • Kip DeGraaf
    • !
    • Marco Gaiarin
    • !
    • Md. Aftabuddin
    • !
    • Michaes Herman
    • !
    • Mike Johnson
    • !
    • Mike Mylonas
    • !
    • Nicolas Morin (French Translation in 2.0)
    • !
    • Pawel Skuza (Polish for 1.2)
    • !
    • Regula Sebastiao
    • !
    • Roger Buck
    • !
    • Ron Wickersham
    • !
    • Sebastiaan Durand
    • !
    • Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    From oleonard at users.sourceforge.net Thu Jan 20 22:58:28 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:58:28 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_tag_structure.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11078/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 auth_tag_structure.tmpl Log Message: Synching with default tempalte Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** auth_tag_structure.tmpl 20 Jan 2005 17:41:00 -0000 1.1.2.1 --- auth_tag_structure.tmpl 20 Jan 2005 21:58:25 -0000 1.1.2.2 *************** *** 91,94 **** --- 91,95 ----
    " method="post"> + "> " /> CONFIRM DELETION From oleonard at users.sourceforge.net Thu Jan 20 22:59:17 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:59:17 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_tag_structure.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11254/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: auth_tag_structure.tmpl Log Message: Synching with default tempalte Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** auth_tag_structure.tmpl 18 Jan 2005 22:53:04 -0000 1.1 --- auth_tag_structure.tmpl 20 Jan 2005 21:59:15 -0000 1.2 *************** *** 91,94 **** --- 91,95 ---- " method="post"> + "> " /> CONFIRM DELETION From oleonard at users.sourceforge.net Thu Jan 20 23:40:43 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:40:43 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/authorities authorities-home.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21546/koha-tmpl/intranet-tmpl/npl/en/authorities Modified Files: authorities-home.tmpl Log Message: Synching with default tempalte Index: authorities-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities/authorities-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** authorities-home.tmpl 28 Oct 2004 17:23:35 -0000 1.1 --- authorities-home.tmpl 20 Jan 2005 22:40:40 -0000 1.2 *************** *** 1,16 **** ! !
    !

    Authority search

    ! ! ! ! "> !
    !

    Search on

    !

    ! ! ! ! " /> ! ! ! ! !
    Authority search
    !

    !

    ! ! "> ! ! ! ! !

    !

    ! !

    ! ! --- 18,31 ---- !
    " /> ! ! ! !
    !

    ! From oleonard at users.sourceforge.net Thu Jan 20 23:41:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:41:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/authorities authorities-home.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21736/koha-tmpl/intranet-tmpl/npl/en/authorities Modified Files: Tag: rel_2_2 authorities-home.tmpl Log Message: Synching with default tempalte Index: authorities-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities/authorities-home.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** authorities-home.tmpl 28 Oct 2004 17:23:35 -0000 1.1 --- authorities-home.tmpl 20 Jan 2005 22:41:08 -0000 1.1.2.1 *************** *** 1,16 **** ! !
    !

    Authority search

    !
    ! ! ! "> !
    !

    Search on

    !

    ! ! ! ! " /> ! ! ! ! !
    Authority search
    !

    !

    ! ! "> ! ! ! ! !

    !

    ! !

    ! ! --- 18,31 ---- !
    " /> ! ! ! !
    !

    ! From oleonard at users.sourceforge.net Thu Jan 20 23:48:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:48:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/catalogue ISBDdetail.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/catalogue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23551/koha-tmpl/intranet-tmpl/npl/en/catalogue Added Files: Tag: rel_2_2 ISBDdetail.tmpl Log Message: Synching with default template. Still needs proper styling for ISBD block --- NEW FILE --- Koha -- Catalog: ISBD View
    " />
    " />" />" />" />
    " />'); return false;" />
    " name="bib" />
    " />

    From oleonard at users.sourceforge.net Thu Jan 20 23:51:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:51:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/catalogue ISBDdetail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/catalogue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24577/koha-tmpl/intranet-tmpl/npl/en/catalogue Added Files: ISBDdetail.tmpl Log Message: Synching with default template. Still needs proper styling for ISBD block From acli at users.sourceforge.net Sun Jan 23 05:31:24 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 20:31:24 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator translator_doc.html,1.2,1.2.2.1 translator_doc.txt,1.6,1.6.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27739 Modified Files: Tag: rel_2_2 translator_doc.html translator_doc.txt Log Message: Minor updates Index: translator_doc.html =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.html,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** translator_doc.html 30 Dec 2004 06:58:19 -0000 1.2 --- translator_doc.html 23 Jan 2005 04:31:07 -0000 1.2.2.1 *************** *** 4,8 ****

    This transation tool should greatly help Koha translators. ! It's composed of 2 scripts:

      --- 4,9 ----

      This transation tool should greatly help Koha translators. ! It's composed of 2 scripts ! (with a number of associated perl module files):

        *************** *** 28,32 **** (assuming your current directory is this directory, i.e., misc/translator):
        ! ./tmpl_process.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r

        (In the above example, --- 29,33 ---- (assuming your current directory is this directory, i.e., misc/translator):

        ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r

        (In the above example, *************** *** 41,45 ****

      • Create your translated templates:
        ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r

        --- 42,46 ----

      • Create your translated templates:
        ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r

        *************** *** 55,65 ****

      • Update your translation file:
        ! ./tmpl_process.pl update -i /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r
        !
      • Translate your new css_opac_fr_FR.po file. Look for strings marked as "fuzzy" and strings that are not translated.
      • Create your translated templates:
        ! ./tmpl_process.pl install -i /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r
      • Copy new images/css files in your new directory if needed --- 56,66 ----
      • Update your translation file:
        ! ./tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r
        !
      • Translate your newly updated css_opac_fr_FR.po file. Look for strings marked as "fuzzy" and strings that are not translated.
      • Create your translated templates:
        ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r
      • Copy new images/css files in your new directory if needed Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -r1.6 -r1.6.2.1 *** translator_doc.txt 3 Jan 2005 16:30:13 -0000 1.6 --- translator_doc.txt 23 Jan 2005 04:31:07 -0000 1.6.2.1 *************** *** 3,7 **** This transation tool should greatly help Koha translators. It's composed of ! 2 scripts: * xgettext.pl, that extracts the texts in a template, and which is called by --- 3,7 ---- This transation tool should greatly help Koha translators. It's composed of ! 2 scripts (with a number of associated perl module files): * xgettext.pl, that extracts the texts in a template, and which is called by *************** *** 22,26 **** directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the --- 22,27 ---- directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! po/css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the *************** *** 33,37 **** 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default --- 34,40 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ! /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/ ! css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default *************** *** 44,48 **** 1. Update your translation file: ! ./tmpl_process3.pl update -i ../../opac-tmpl/default/en -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as --- 47,52 ---- 1. Update your translation file: ! ./tmpl_process3.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as *************** *** 50,62 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed - - REBUILD ALL - =========== - The rebuild_lang.sh script can be used to rebuild all languages officially supported in 2.2 release, when needed. - Useful for developpers, probably useless for all end-users. - WEAKNESSES --- 54,62 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed WEAKNESSES *************** *** 71,73 **** * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) \ No newline at end of file --- 71,74 ---- * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) ! From acli at users.sourceforge.net Sun Jan 23 05:58:41 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 20:58:41 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator Makefile,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1353 Modified Files: Tag: rel_2_2 Makefile Log Message: Forgot to take out this debugging code Index: Makefile =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/Makefile,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** Makefile 23 Jan 2005 04:57:51 -0000 1.1.2.1 --- Makefile 23 Jan 2005 04:58:39 -0000 1.1.2.2 *************** *** 2,6 **** %.txt: %.html ! set -x; sed -e 's/
        /&
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|tee foo|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
          
          clean:
        --- 2,6 ----
          
          %.txt: %.html
        ! 	set -x; sed -e 's/
        /& ! ! ! -->
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
          
          clean:
        
        
        
        
        From acli at users.sourceforge.net  Sun Jan 23 05:57:54 2005
        From: acli at users.sourceforge.net (Ambrose C. LI)
        Date: Sat, 22 Jan 2005 20:57:54 -0800
        Subject: [Koha-cvs] CVS: koha/misc/translator Makefile,1.1,1.1.2.1 translator_doc.html,1.2.2.1,1.2.2.2 translator_doc.txt,1.6.2.1,1.6.2.2
        Message-ID: 
        
        Update of /cvsroot/koha/koha/misc/translator
        In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv985
        
        Modified Files:
              Tag: rel_2_2
        	Makefile translator_doc.html translator_doc.txt 
        Log Message:
        Minor corrections & clarifications, and make the command line examples
        not break in the middle (like in the original version)
        
        
        Index: Makefile
        ===================================================================
        RCS file: /cvsroot/koha/koha/misc/translator/Makefile,v
        retrieving revision 1.1
        retrieving revision 1.1.2.1
        diff -C2 -r1.1 -r1.1.2.1
        *** Makefile	30 Dec 2004 06:48:19 -0000	1.1
        --- Makefile	23 Jan 2005 04:57:51 -0000	1.1.2.1
        ***************
        *** 2,4 ****
          
          %.txt: %.html
        ! 	LANG=C w3m $< > $@
        --- 2,7 ----
          
          %.txt: %.html
        ! 	set -x; sed -e 's/
        /& ! ! ! ! ! -->
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|tee foo|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
        ! 
        ! clean:
        ! 	rm translator_doc.txt
        
        Index: translator_doc.html
        ===================================================================
        RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.html,v
        retrieving revision 1.2.2.1
        retrieving revision 1.2.2.2
        diff -C2 -r1.2.2.1 -r1.2.2.2
        *** translator_doc.html	23 Jan 2005 04:31:07 -0000	1.2.2.1
        --- translator_doc.html	23 Jan 2005 04:57:51 -0000	1.2.2.2
        ***************
        *** 7,18 ****
          (with a number of associated perl module files):
          
        ! 
        • xgettext.pl, that extracts the texts in a template, ! and which is called by the script
        • tmpl_process3.tmpl, which can do 3 things: !
            !
          • create a file with all the "translatable strings" in all files in a directory (& its subdirectories) !
          • update an existing translation file. !
          • rebuild translated templates from english & translation file.
        --- 7,18 ---- (with a number of associated perl module files): !
        1. xgettext.pl, that extracts the texts in a template, ! and which is called by the script; and
        2. tmpl_process3.tmpl, which can do 3 things: !
            !
          1. create a file with all the "translatable strings" in all files in a directory (& its subdirectories), !
          2. update an existing translation file, and !
          3. rebuild translated templates from English & translation file. *************** *** 35,41 **** contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. ! The use of relative paths for the English templates is recommended ! but is not necessary; ! it makes the resulting PO files somewhat easier to read.)
          4. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. --- 35,43 ---- contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. ! The use of relative paths for the English templates is recommended; ! it makes the resulting PO files slightly shorter ! and more usable in a team environment. ! Absolute paths are certainly fine, ! and might be better if there is only one translator for your language.)
          5. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. *************** *** 52,56 ****

            ! If something changes in English version:

            1. Update your translation file: --- 54,58 ----

              ! If something changes in the English version:

              1. Update your translation file: Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -r1.6.2.1 -r1.6.2.2 *** translator_doc.txt 23 Jan 2005 04:31:07 -0000 1.6.2.1 --- translator_doc.txt 23 Jan 2005 04:57:51 -0000 1.6.2.2 *************** *** 5,15 **** 2 scripts (with a number of associated perl module files): ! * xgettext.pl, that extracts the texts in a template, and which is called by ! the script ! * tmpl_process3.tmpl, which can do 3 things: ! + create a file with all the "translatable strings" in all files in a ! directory (& its subdirectories) ! + update an existing translation file. ! + rebuild translated templates from english & translation file. Call tmpl_process3.pl --help to get a more detailed explanation. Some --- 5,15 ---- 2 scripts (with a number of associated perl module files): ! 1. xgettext.pl, that extracts the texts in a template, and which is called by ! the script; and ! 2. tmpl_process3.tmpl, which can do 3 things: ! a. create a file with all the "translatable strings" in all files in a ! directory (& its subdirectories), ! b. update an existing translation file, and ! c. rebuild translated templates from English & translation file. Call tmpl_process3.pl --help to get a more detailed explanation. Some *************** *** 21,41 **** 1. Create your translation file (assuming your current directory is this directory, i.e., misc/translator): ! ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! po/css_opac_fr_FR.po -r ! (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. The use of relative paths for the ! English templates is recommended but is not necessary; it makes the ! resulting PO files somewhat easier to read.) 2. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ! /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/ ! css_opac_fr_FR.po -r ! (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default /fr2/ is where you want your translated templates to be saved.) --- 21,40 ---- 1. Create your translation file (assuming your current directory is this directory, i.e., misc/translator): ! ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. The use of relative paths for the ! English templates is recommended; it makes the resulting PO files slightly ! shorter and more usable in a team environment. Absolute paths are certainly ! fine, and might be better if there is only one translator for your ! language.) 2. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r ! (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default /fr2/ is where you want your translated templates to be saved.) *************** *** 43,61 **** tmpl_process3.pl install). ! If something changes in English version: 1. Update your translation file: ! ! ./tmpl_process3.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! ! 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as ! "fuzzy" and strings that are not translated. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r ! 4. Copy new images/css files in your new directory if needed --- 42,57 ---- tmpl_process3.pl install). ! If something changes in the English version: 1. Update your translation file: ! ! ./tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! ! 2. Translate your newly updated css_opac_fr_FR.po file. Look for strings ! marked as "fuzzy" and strings that are not translated. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r ! 4. Copy new images/css files in your new directory if needed From acli at users.sourceforge.net Sun Jan 23 06:16:18 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 21:16:18 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.3,1.1.2.4 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4100 Modified Files: Tag: rel_2_2 update.pl Log Message: Added a --pot option to generate the POT (PO template) file. The POT files are currently named like css_opac_en_EN.po, which are not what they would usually be named. Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -r1.1.2.3 -r1.1.2.4 *** update.pl 11 Jan 2005 09:50:58 -0000 1.1.2.3 --- update.pl 23 Jan 2005 05:16:15 -0000 1.1.2.4 *************** *** 6,12 **** use strict; use integer; my $lang = $ARGV[0]; ! die "Usage: $0 LANG\n" unless $lang =~ /^[a-z]{2}(?:_[A-Z]{2})?$/; # Remember whether we see the "po" directory; this is used later to guess --- 6,22 ---- use strict; use integer; + use Getopt::Long; + + use vars qw( $pot_p ); + + GetOptions( + '--pot' => \$pot_p, + ) || exit(1); my $lang = $ARGV[0]; ! die < Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17798 Modified Files: Tag: rel_2_2 css_opac_fr_FR.po Log Message: Minor syntactical corrections Index: css_opac_fr_FR.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_fr_FR.po,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -r1.6 -r1.6.2.1 *** css_opac_fr_FR.po 5 Jan 2005 14:41:49 -0000 1.6 --- css_opac_fr_FR.po 23 Jan 2005 06:15:24 -0000 1.6.2.1 *************** *** 1,17 **** ! # Penbwrdd yn Gymraeg. ! # Copyright (C) 2003 Free Software Foundation, Inc. ! # www.kyfieithu.co.uk, www.gyfieithu.co.uk, 2003. # # msgid "" msgstr "" ! "Project-Id-Version: PACKAGE VERSION\n" "PO-Revision-Date: 2004-12-07 11:28+0200\n" ! "Last-Translator: www.kyfieithu.co.uk , www.gyfieithu.co.uk\n" ! "Language-Team: Cymraeg \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" - "X-Generator: Kartouche 0.2 - 28 October 2003\n" "\n" --- 1,17 ---- ! # Koha OPAC module, French translation ! # Copyright (C) 2000-2005 Katipo Communications ! # This file is distributed under the same license as the Koha package. ! # Copyright 2004-2005 French translation team # # msgid "" msgstr "" ! "Project-Id-Version: koha-opac 2.2\n" "PO-Revision-Date: 2004-12-07 11:28+0200\n" ! "Last-Translator: Paul POULAIN \n" ! "Language-Team: French \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" "\n" *************** *** 284,289 **** #, c-format msgid "Additional authors:%s" ! msgstr "Auteurs secondaires:%s ! " #. For the first occurrence, --- 284,288 ---- #, c-format msgid "Additional authors:%s" ! msgstr "Auteurs secondaires:%s" #. For the first occurrence, *************** *** 1966,1970 **** #~ msgid "ISBD : %s" #~ msgstr "ISBD : %s" - msgid "" - msgstr "" - --- 1965,1966 ---- From acli at users.sourceforge.net Sun Jan 23 07:17:07 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:17:07 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18025 Added Files: Tag: rel_2_2 stats.pl Log Message: Translation progress statistics script borrowed from gaim --- NEW FILE --- #!/usr/bin/perl # Copyright 2003-2004 Nathan Walp # Adapted for Koha by Ambrose Li # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 50 Temple Place, Suite 330, Boston, MA 02111-1307 USA # my $PACKAGE="koha"; use Locale::Language; $lang{en_AU} = "English (Australian)"; $lang{en_CA} = "English (Canadian)"; $lang{en_GB} = "English (British)"; $lang{es_AR} = "Spanish (Argentinian)"; $lang{fr_FR} = "French"; # FIXME: should be just "fr" $lang{my_MM} = "Burmese (Myanmar)"; $lang{pl_PL} = "Polish"; # FIXME: should be just "pl" $lang{pt_BR} = "Portuguese (Brazilian)"; $lang{'sr at Latn'} = "Serbian (Latin)"; $lang{zh_CN} = "Chinese (Simplified)"; $lang{zh_TW} = "Chinese (Traditional)"; $ENV{LANG} = $ENV{LC_ALL} = 'C'; opendir(DIR, ".") || die "can't open directory: $!"; @pos = grep { /\.po$/ && -f } readdir(DIR); foreach (@pos) { s/\.po$//; }; closedir DIR; @pos = sort @pos; $now = `date`; #system("./update.pl --pot > /dev/null"); print "\n"; print "$PACKAGE i18n statistics\n"; print "\n"; opendir(DIR, ".") || die "can't open directory: $!"; @templates = grep { /\.pot$/ && -f } readdir(DIR); foreach (@templates) { s/\.pot$//; }; closedir DIR; for my $PACKAGE (sort { my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; $module1 cmp $module2 && $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; my @pos = grep { /^${PACKAGE}_/ } @pos_orig; my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1 |tee zz`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); $total = $1; print "

                Module $module, theme $theme

                \n"; print "
                \n"; print"\n"; foreach $index (0 .. $#pos) { $trans = $fuzz = $untrans = 0; $po = $pos[$index]; next if $po =~ /_en_EN/; # Koha-specific print STDERR "$po..." if($ARGV[0] eq '-v'); system("msgmerge $po.po $PACKAGE.pot -o $po.new 2>/dev/null"); $_ = `msgfmt --statistics $po.new -o /dev/null 2>&1`; chomp; if(/(\d+) translated message/) { $trans = $1; } if(/(\d+) fuzzy translation/) { $fuzz = $1; } if(/(\d+) untranslated message/) { $untrans = $1; } $transp = 100 * $trans / $total; $fuzzp = 100 * $fuzz / $total; $untransp = 100 * $untrans / $total; if($index % 2) { $color = " bgcolor='#e0e0e0'"; } else { $color = " bgcolor='#d0e0ff'"; } my $lang = $1 if $po =~ /^${PACKAGE}_(.*)$/; # Koha-specific $name = ""; $name = $lang{$lang}; # NOTE $name = code2language($lang) unless $name ne ""; # NOTE $name = "???" unless $name ne ""; printf "\n"; unlink("$po.new"); print STDERR "done ($untrans untranslated strings).\n" if($ARGV[0] eq '-v'); } print "
                languagetrans%fuzzy%untrans% 
                %s(%s.po)%d%0.2f%d%0.2f%d%0.2f", $name, $po, $trans, $transp, $fuzz, $fuzzp, $untrans, $untransp; printf "", $transp*2 unless $transp*2 < 0.5; printf "", $fuzzp*2 unless $fuzzp*2 < 0.5; printf "", $untransp*2 unless $untransp*2 < 0.5; print "
                \n"; print "Latest $PACKAGE.pot generated $now: $PACKAGE.pot
                \n"; } print "\n"; print "\n"; From acli at users.sourceforge.net Sun Jan 23 07:17:54 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:17:54 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18197 Modified Files: Tag: rel_2_2 stats.pl Log Message: Forgot to re-enable update.pl Index: stats.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/stats.pl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** stats.pl 23 Jan 2005 06:17:05 -0000 1.1.2.1 --- stats.pl 23 Jan 2005 06:17:52 -0000 1.1.2.2 *************** *** 48,52 **** $now = `date`; ! #system("./update.pl --pot > /dev/null"); print "\n"; --- 48,52 ---- $now = `date`; ! system("./update.pl --pot > /dev/null"); print "\n"; From acli at users.sourceforge.net Sun Jan 23 07:22:29 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:22:29 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.4,1.1.2.5 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18923 Modified Files: Tag: rel_2_2 update.pl Log Message: create fails if the pot file already exists Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -r1.1.2.4 -r1.1.2.5 *** update.pl 23 Jan 2005 05:16:15 -0000 1.1.2.4 --- update.pl 23 Jan 2005 06:22:26 -0000 1.1.2.5 *************** *** 48,51 **** --- 48,52 ---- # my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "$lang.po"); + rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), '-i', "../../koha-tmpl/$module-tmpl/$theme/en/", From acli at users.sourceforge.net Sun Jan 23 07:49:11 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:49:11 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator xgettext.pl,1.13,1.13.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24427 Modified Files: Tag: rel_2_2 xgettext.pl Log Message: I think I know where the spurious leading spaces are from now But there is no fix yet Index: xgettext.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/xgettext.pl,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -C2 -r1.13 -r1.13.2.1 *** xgettext.pl 30 Dec 2004 06:48:20 -0000 1.13 --- xgettext.pl 23 Jan 2005 06:49:08 -0000 1.13.2.1 *************** *** 462,468 **** when tmpl_process3.pl calls msgmerge(1) to update the PO file. ! It sometimes generates strings with spurious leading spaces, leading to failure to match the strings when actually generating ! translated files. The cause of this is not yet known. =cut --- 462,469 ---- when tmpl_process3.pl calls msgmerge(1) to update the PO file. ! If a Javascript string has leading spaces, it will ! generate strings with spurious leading spaces, leading to failure to match the strings when actually generating ! translated files. =cut From acli at users.sourceforge.net Sun Jan 23 08:05:51 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 23:05:51 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator TmplTokenizer.pm,1.35,1.35.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27541 Modified Files: Tag: rel_2_2 TmplTokenizer.pm Log Message: This should fix bug 913 Index: TmplTokenizer.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/TmplTokenizer.pm,v retrieving revision 1.35 retrieving revision 1.35.2.1 diff -C2 -r1.35 -r1.35.2.1 *** TmplTokenizer.pm 30 Dec 2004 06:53:13 -0000 1.35 --- TmplTokenizer.pm 23 Jan 2005 07:05:43 -0000 1.35.2.1 *************** *** 342,346 **** $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { --- 342,346 ---- $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])\s*(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { *************** *** 349,353 **** } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! $output[$j] = [1, $output[$j]->[1], $q, $s]; } $state = 0; --- 349,354 ---- } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! my $candidate = $output[$j]->[1]; ! $output[$j] = [1, $candidate, $q, $s]; } $state = 0; From acli at users.sourceforge.net Sun Jan 23 09:16:59 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:16:59 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.5,1.1.2.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7900 Modified Files: Tag: rel_2_2 update.pl Log Message: Forgot a _ in the po file filename Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -C2 -r1.1.2.5 -r1.1.2.6 *** update.pl 23 Jan 2005 06:22:26 -0000 1.1.2.5 --- update.pl 23 Jan 2005 08:16:57 -0000 1.1.2.6 *************** *** 47,51 **** # but this is not Koha's convention. # ! my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "$lang.po"); rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), --- 47,51 ---- # but this is not Koha's convention. # ! my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "_$lang.po"); rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), From acli at users.sourceforge.net Sun Jan 23 09:17:29 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:17:29 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4,1.4.2.1 default_intranet_zh_TW.po,1.4,1.4.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7991 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: Partial updates Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** css_opac_zh_TW.po 30 Dec 2004 09:37:19 -0000 1.4 --- css_opac_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2004-12-30 02:06-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" [...2271 lines suppressed...] + #~ msgstr "%s (%s本書)" + #~ msgid "%s acquired in the last %S days" #~ msgstr "最近%2$S日內新到的%1$s" + #~ msgid "%s(%s books)" + #~ msgstr "%s(%s本書)" + #~ msgid "ISBN:%s" #~ msgstr "國際標準書號:%s" *************** *** 2089,2095 **** #~ msgstr "青年小說類" - #~ msgid "text/html; charset=iso-8859-1" - #~ msgstr "text/html; charset=UTF-8" - #~ msgid "to Koha" #~ msgstr "Koha" --- 2209,2212 ---- Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** default_intranet_zh_TW.po 30 Dec 2004 10:29:28 -0000 1.4 --- default_intranet_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2004-12-30 04:23-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" [...5497 lines suppressed...] *************** *** 21830,21833 **** --- 21960,21966 ---- #~ msgstr "電話:%s,傳真:%s" + #~ msgid "Pierre Cauchois (Esiee School)" + #~ msgstr "Pierre Cauchois (ESIEE學院)" + #~ msgid "Previous" #~ msgstr "上一頁" *************** *** 21843,21849 **** #~ msgstr "還書日期" - #~ msgid "Rachel Hamilton-Williams, General Manager (Webmistress)" - #~ msgstr "Rachel Hamilton-Williams (總經理兼網站管理人)" - # NOTE 譯文更動 by Arthur # NOTE 譯文更動 by Ambrose --- 21976,21979 ---- From acli at users.sourceforge.net Sun Jan 23 09:59:41 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:59:41 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,1.1.2.2,1.1.2.3 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15497 Modified Files: Tag: rel_2_2 stats.pl Log Message: Forgot to remove some other debugging code Fixed the sorting order Index: stats.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/stats.pl,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -r1.1.2.2 -r1.1.2.3 *** stats.pl 23 Jan 2005 06:17:52 -0000 1.1.2.2 --- stats.pl 23 Jan 2005 08:59:39 -0000 1.1.2.3 *************** *** 61,65 **** my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; ! $module1 cmp $module2 && $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; --- 61,65 ---- my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; ! return $module1 cmp $module2 || $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; *************** *** 67,71 **** my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; ! $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1 |tee zz`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); --- 67,71 ---- my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; ! $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); From acli at users.sourceforge.net Sun Jan 23 11:51:21 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 02:51:21 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator tmpl_process3.pl,1.20,1.20.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6839 Modified Files: Tag: rel_2_2 tmpl_process3.pl Log Message: Make the generated pot file (i.e., result of "create") look more "real", but using msgmerge to reformat the output Index: tmpl_process3.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/tmpl_process3.pl,v retrieving revision 1.20 retrieving revision 1.20.2.1 diff -C2 -r1.20 -r1.20.2.1 *** tmpl_process3.pl 10 Mar 2004 07:00:28 -0000 1.20 --- tmpl_process3.pl 23 Jan 2005 10:51:16 -0000 1.20.2.1 *************** *** 263,276 **** } die "$str_file: Output file already exists\n" if -f $str_file; ! my($tmph, $tmpfile) = tmpnam(); # Generate the temporary file that acts as /POTFILES.in for my $input (@in_files) { ! print $tmph "$input\n"; } ! close $tmph; # Generate the specified po file ($str_file) ! $st = system ($xgettext, '-s', '-f', $tmpfile, '-o', $str_file); ! warn_normal "Text extraction failed: $xgettext: $!\n", undef if $st != 0; ! # unlink $tmpfile || warn_normal "$tmpfile: unlink failed: $!\n", undef; } elsif ($action eq 'update') { --- 263,301 ---- } die "$str_file: Output file already exists\n" if -f $str_file; ! my($tmph1, $tmpfile1) = tmpnam(); ! my($tmph2, $tmpfile2) = tmpnam(); ! close $tmph2; # We just want a name # Generate the temporary file that acts as /POTFILES.in for my $input (@in_files) { ! print $tmph1 "$input\n"; } ! close $tmph1; # Generate the specified po file ($str_file) ! $st = system ($xgettext, '-s', '-f', $tmpfile1, '-o', $tmpfile2); ! # Run msgmerge so that the pot file looks like a real pot file ! # We need to help msgmerge a bit by pre-creating a dummy po file that has ! # the headers and the "" msgid & msgstr. It will fill in the rest. ! if ($st == 0) { ! # Merge the temporary "pot file" with the specified po file ($str_file) ! # FIXME: msgmerge(1) is a Unix dependency ! # FIXME: need to check the return value ! unless (-f $str_file) { ! local(*INPUT, *OUTPUT); ! open(INPUT, "<$tmpfile2"); ! open(OUTPUT, ">$str_file"); ! while () { ! print OUTPUT; ! last if /^\n/s; ! } ! close INPUT; ! close OUTPUT; ! } ! $st = system('msgmerge', '-U', '-s', $str_file, $tmpfile2); ! } else { ! error_normal "Text extraction failed: $xgettext: $!\n", undef; ! error_additional "Will not run msgmerge\n", undef; ! } ! # unlink $tmpfile1 || warn_normal "$tmpfile1: unlink failed: $!\n", undef; ! # unlink $tmpfile2 || warn_normal "$tmpfile2: unlink failed: $!\n", undef; } elsif ($action eq 'update') { From acli at users.sourceforge.net Mon Jan 24 03:47:49 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 18:47:49 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29279 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po Log Message: Partial update. This should be reasonably "finished". Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** css_opac_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 --- css_opac_zh_TW.po 24 Jan 2005 02:47:44 -0000 1.4.2.2 *************** *** 223,227 **** #, c-format msgid " %s home Log Out " ! msgstr "【%s之個人主頁】【登出】" #. %1$s: TMPL_VAR name=dateaccessioned --- 223,227 ---- #, c-format msgid " %s home Log Out " ! msgstr "%s 之個人主頁 登出" #. %1$s: TMPL_VAR name=dateaccessioned *************** *** 239,244 **** " Print " msgstr "" ! " 簡要 詳盡 ISBD 新增至虛擬書架 " ! " 列印 " #. %1$s: TMPL_VAR name=shelfname --- 239,244 ---- " Print " msgstr "" ! "簡要 詳盡 ISBD 新增至虛擬書架 " ! "列印" #. %1$s: TMPL_VAR name=shelfname *************** *** 614,624 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:179 msgid "A free can be managed by any user." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:93 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:178 msgid "A public can be seen by everybody, but managed only by you." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:147 msgid "" --- 614,625 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:179 msgid "A free can be managed by any user." ! msgstr "任何人都有權管理公家書架。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:93 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:178 msgid "A public can be seen by everybody, but managed only by you." ! msgstr "任何人都可以看見公開的私人書架,但只有您有權管理" + # FIXME grammatical mistake in original ("every words") #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:147 msgid "" *************** *** 628,631 **** --- 629,633 ---- "will be discarded." msgstr "" + "查詢時會用您所輸入的所有字詞作出搜尋,但某些不重要的字會被忽略。例如,如果您在題名欄輸入「the two towers」,查詢結果將會包括所有題名有「two」及「tower」二字的圖書資料,而「the」字則會被忽略。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 *************** *** 649,656 **** msgstr "採購日期" #. INPUT type=submit #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:41 msgid "Add Checked Items to Biblio Basket" ! msgstr "" #. INPUT type=submit --- 651,659 ---- msgstr "採購日期" + # NOTE「Items」這裡可以算是「圖書資料」,也可以算(畫面顯示的)「項目」 #. INPUT type=submit #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:41 msgid "Add Checked Items to Biblio Basket" ! msgstr "把點選的項目放至書籃" #. INPUT type=submit *************** *** 679,683 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:30 msgid "Add to basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:8 --- 682,686 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:30 msgid "Add to basket" ! msgstr "新增至書籃" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:8 *************** *** 716,722 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:13 - #, fuzzy msgid "Any word" ! msgstr "關鍵詞" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:86 --- 719,724 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:13 msgid "Any word" ! msgstr "任何字詞" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:86 *************** *** 783,803 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Basket is empty" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio added to the basket" ! msgstr "" #. A #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:44 msgid "Biblio basket" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - #, fuzzy msgid "Biblio(s) added" ! msgstr "沒有新增書目記錄" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 --- 785,805 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Basket is empty" ! msgstr "書籃是空的" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio added to the basket" ! msgstr "書目已放在書籃內" #. A #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:44 msgid "Biblio basket" ! msgstr "書籃" + # TODO #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio(s) added" ! msgstr "成功新增書目" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 *************** *** 881,887 **** msgstr "館藏:%s" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:110 msgid "Content size" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:30 --- 883,890 ---- msgstr "館藏:%s" + # NOTE 虛擬書架內含多少本書 (shelfbookcount) #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:110 msgid "Content size" ! msgstr "書目數量" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:30 *************** *** 931,940 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to empty the basket ?" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to remove selected biblios ?" ! msgstr "" # NOTE 譯文更動 by Arthur --- 934,943 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to empty the basket ?" ! msgstr "要清空書籃嗎?" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to remove selected biblios ?" ! msgstr "要移除點選的書目嗎?" # NOTE 譯文更動 by Arthur *************** *** 968,974 **** "將會收到電郵通知。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:39 msgid "Filter on" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-account.tmpl:9 --- 971,978 ---- "將會收到電郵通知。" + # NOTE #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:39 msgid "Filter on" ! msgstr "過濾條件:" #: ../../koha-tmpl/opac-tmpl/css/en/opac-account.tmpl:9 *************** *** 986,990 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:17 msgid "Free" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl:61 --- 990,994 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:17 msgid "Free" ! msgstr "公家書架" #: ../../koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl:61 *************** *** 996,1000 **** #, c-format msgid "Hi, Here is the biblio basket sent by %s" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:138 --- 1000,1004 ---- #, c-format msgid "Hi, Here is the biblio basket sent by %s" ! msgstr "您好!這是 %s 送來的書籃" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:138 *************** *** 1034,1037 **** --- 1038,1042 ---- "towers\", \"a tower and two cities\"" msgstr "" + "假如您只想輸入字詞的部分,在字詞後鍵入「*」號或「%」號即可。例如,「two tower*」會找到「the two towers」、「two white towers」及「a tower and two cities」" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 *************** *** 1195,1199 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "No biblio selected" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:6 --- 1200,1204 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "No biblio selected" ! msgstr "未有點選書目" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:6 *************** *** 1244,1248 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:6 msgid "OPAC Basket" ! msgstr "" # NOTE 譯文更動 by Arthur --- 1249,1253 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:6 msgid "OPAC Basket" ! msgstr "線上目錄書籃" # NOTE 譯文更動 by Arthur *************** *** 1273,1285 **** msgstr "其他選項" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:84 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:157 msgid "Owner" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:146 - #, fuzzy msgid "Partial search" ! msgstr "館藏查詢" #: ../../koha-tmpl/opac-tmpl/css/en/opac-auth.tmpl:29 --- 1278,1290 ---- msgstr "其他選項" + # NOTE 暫譯 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:84 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:157 msgid "Owner" ! msgstr "架主" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:146 msgid "Partial search" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-auth.tmpl:29 *************** *** 1329,1337 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:15 msgid "Private" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:9 msgid "Problem sending the basket..." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:88 --- 1334,1342 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:15 msgid "Private" ! msgstr "私家書架" #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:9 msgid "Problem sending the basket..." ! msgstr "送出書籃途中出現問題……" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:88 *************** *** 1341,1345 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:16 msgid "Public" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:131 --- 1346,1350 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:16 msgid "Public" ! msgstr "公開的私人書架" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:131 *************** *** 1514,1519 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:4 msgid "Sending the basket" ! msgstr "" #. A #: ../../koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl:25 --- 1519,1525 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:4 msgid "Sending the basket" ! msgstr "送出書籃中" + # FIXME 這個,看了原始碼也不明白是什麼 #. A #: ../../koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl:25 *************** *** 1521,1525 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:26 msgid "Serial issues" ! msgstr "" #. %1$s: TMPL_VAR name=serial --- 1527,1531 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:26 msgid "Serial issues" ! msgstr "期刊期數" #. %1$s: TMPL_VAR name=serial *************** *** 1536,1540 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:93 msgid "Set Filter" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:8 --- 1542,1546 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:93 msgid "Set Filter" ! msgstr "設定過濾條件" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:8 *************** *** 1651,1655 **** #, c-format msgid "The basket was sent to: %s" ! msgstr "" #. %1$s: TMPL_VAR name=reservecount --- 1657,1661 ---- #, c-format msgid "The basket was sent to: %s" ! msgstr "書籃已送給:%s" #. %1$s: TMPL_VAR name=reservecount *************** *** 1671,1675 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "This biblio is already in the basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:13 --- 1677,1681 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "This biblio is already in the basket" ! msgstr "這個書目已在書籃內" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:13 *************** *** 1867,1871 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:2 msgid "Your biblio basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl:6 --- 1873,1877 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:2 msgid "Your biblio basket" ! msgstr "您的書籃" #: ../../koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl:6 *************** *** 1876,1890 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:177 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "" - # NOTE This refers to new books acquired in the last so-and-so days - # NOTE This is essentially the same string as the next, but different - # NOTE due to technical difficulties (in creating an msgid from the HTML) - # FIXME This string as it is is nearly untranslatable. The scanner need to be fixed. #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - #, fuzzy msgid "already in the basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:98 --- 1882,1891 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:177 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "私家書籃由您自己管理,也只有您才看見。" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "already in the basket" ! msgstr "已在書籃內" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:98 *************** *** 1925,1931 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:52 #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:21 - #, fuzzy msgid "in" ! msgstr "讀者登記" #. IMG --- 1926,1931 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:52 #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:21 msgid "in" ! msgstr "在" #. IMG *************** *** 2055,2061 **** #~ msgstr "國際標準書號:%s" - #~ msgid "%s (%s)" - #~ msgstr "%s (%s)" - #~ msgid "AMOUNT" #~ msgstr "金額" --- 2055,2058 ---- *************** *** 2064,2073 **** #~ msgstr "紀錄正確嗎?" - #~ msgid "Apr" - #~ msgstr "四月" - - #~ msgid "Aug" - #~ msgstr "八月" - #~ msgid "Compact Disc" #~ msgstr "光碟" --- 2061,2064 ---- *************** *** 2077,2086 **** #~ msgstr "目前狀態" - #~ msgid "Day" - #~ msgstr "日" - - #~ msgid "Dec" - #~ msgstr "十二月" - #~ msgid "Easy / Picture Books" #~ msgstr "淺易/圖畫書" --- 2068,2071 ---- *************** *** 2100,2118 **** #~ msgstr "罰款及費用" - #~ msgid "Feb" - #~ msgstr "二月" - #~ msgid "Illustrator" #~ msgstr "繪圖" - #~ msgid "Jan" - #~ msgstr "一月" - - #~ msgid "Jul" - #~ msgstr "七月" - - #~ msgid "Jun" - #~ msgstr "六月" - # NOTE 譯文更動 by Arthur #~ msgid "Junior Fiction" --- 2085,2091 ---- *************** *** 2123,2138 **** #~ msgstr "學童/初級非小說" - #~ msgid "KOHA" - #~ msgstr "KOHA" - #~ msgid "KOHA: OPAC Catalogue Search" #~ msgstr "KOHA:查詢館藏" - #~ msgid "Log In to Koha" - #~ msgstr "登入Koha" - - #~ msgid "Mar" - #~ msgstr "三月" - #~ msgid "Next Page" #~ msgstr "下一頁" --- 2096,2102 ---- *************** *** 2155,2161 **** #~ "鍵字。" - #~ msgid "Nov" - #~ msgstr "十一月" - #~ msgid "OR :" #~ msgstr "或:" --- 2119,2122 ---- *************** *** 2164,2170 **** #~ msgstr "或下列最少一項:" - #~ msgid "Oct" - #~ msgstr "十月" - #~ msgid "Previous Page" #~ msgstr "上一頁" --- 2125,2128 ---- *************** *** 2186,2192 **** #~ msgstr "稱號" - #~ msgid "Sep" - #~ msgstr "九月" - # NOTE 譯文更動 by Arthur #~ msgid "Something new ?" --- 2144,2147 ---- *************** *** 2208,2212 **** #~ msgid "Young Adult Fiction" #~ msgstr "青年小說類" - - #~ msgid "to Koha" - #~ msgstr "Koha" --- 2163,2164 ---- From acli at users.sourceforge.net Mon Jan 24 05:43:23 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 20:43:23 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_126a.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25795 Modified Files: Tag: rel_2_2 unimarc_field_126a.tmpl Log Message: Spelling corrections Index: unimarc_field_126a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** unimarc_field_126a.tmpl 7 Jun 2004 10:04:00 -0000 1.1 --- unimarc_field_126a.tmpl 24 Jan 2005 04:43:20 -0000 1.1.2.1 *************** *** 498,502 **** ! --- 498,502 ---- ! *************** *** 584,588 **** ! --- 584,588 ---- ! *************** *** 670,674 **** ! --- 670,674 ---- ! *************** *** 756,760 **** ! --- 756,760 ---- ! *************** *** 842,846 **** ! --- 842,846 ---- ! *************** *** 928,932 **** ! --- 928,932 ---- ! From acli at users.sourceforge.net Mon Jan 24 05:45:27 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 20:45:27 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26187 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial updates, mostly Unimarc stuff (CMARC seems to be mostly identical to French Unimarc) Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** default_intranet_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 --- default_intranet_zh_TW.po 24 Jan 2005 04:45:21 -0000 1.4.2.2 *************** *** 141,145 **** #, c-format msgid "%S (example for 200a : '200c','200d','200e'...)" ! msgstr "" #. For the first occurrence, --- 141,145 ---- #, c-format msgid "%S (example for 200a : '200c','200d','200e'...)" ! msgstr "%S (以 200a 而言,例如:「200c」、「200d」、「200e」……)" [...961 lines suppressed...] --- 3685,3690 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_141.tmpl:369 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_141.tmpl:371 msgid "Autre" ! msgstr "其他" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:218 *************** *** 3863,3867 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:932 msgid "Autres renseignements historiques" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:500 --- 3868,3872 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:932 msgid "Autres renseignements historiques" ! msgstr "其他史料" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:500 From acli at users.sourceforge.net Mon Jan 24 06:43:12 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 21:43:12 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_126a.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8182 Modified Files: Tag: rel_2_2 unimarc_field_126a.tmpl Log Message: Spelling correction Index: unimarc_field_126a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** unimarc_field_126a.tmpl 24 Jan 2005 04:43:20 -0000 1.1.2.1 --- unimarc_field_126a.tmpl 24 Jan 2005 05:43:10 -0000 1.1.2.2 *************** *** 490,494 **** ! --- 490,494 ---- ! *************** *** 576,580 **** ! --- 576,580 ---- ! *************** *** 662,666 **** ! --- 662,666 ---- ! *************** *** 748,752 **** ! --- 748,752 ---- ! *************** *** 834,838 **** ! --- 834,838 ---- ! *************** *** 920,924 **** ! --- 920,924 ---- ! From acli at users.sourceforge.net Mon Jan 24 06:53:14 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 21:53:14 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.2,1.4.2.3 default_intranet_zh_TW.po,1.4.2.2,1.4.2.3 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10176 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: 126a mostly done Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -r1.4.2.2 -r1.4.2.3 *** css_opac_zh_TW.po 24 Jan 2005 02:47:44 -0000 1.4.2.2 --- css_opac_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 23:45-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 239,244 **** " Print " msgstr "" ! "簡要 詳盡 ISBD 新增至虛擬書架 " ! "列印" #. %1$s: TMPL_VAR name=shelfname --- 239,244 ---- " Print " msgstr "" ! "簡要 詳盡 ISBD 新增至虛擬書架 列印" #. %1$s: TMPL_VAR name=shelfname *************** *** 629,633 **** "will be discarded." msgstr "" ! "查詢時會用您所輸入的所有字詞作出搜尋,但某些不重要的字會被忽略。例如,如果您在題名欄輸入「the two towers」,查詢結果將會包括所有題名有「two」及「tower」二字的圖書資料,而「the」字則會被忽略。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 --- 629,635 ---- "will be discarded." msgstr "" ! "查詢時會用您所輸入的所有字詞作出搜尋,但某些不重要的字會被忽略。例如,如果您" ! "在題名欄輸入「the two towers」,查詢結果將會包括所有題名有「two」及「tower」" ! "二字的圖書資料,而「the」字則會被忽略。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 *************** *** 1038,1042 **** "towers\", \"a tower and two cities\"" msgstr "" ! "假如您只想輸入字詞的部分,在字詞後鍵入「*」號或「%」號即可。例如,「two tower*」會找到「the two towers」、「two white towers」及「a tower and two cities」" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 --- 1040,1046 ---- "towers\", \"a tower and two cities\"" msgstr "" ! "假如您只想輸入字詞的部分,在字詞後鍵入「*」號或「%」號即可。例如,「two " ! "tower*」會找到「the two towers」、「two white towers」及「a tower and two " ! "cities」" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 *************** *** 1411,1416 **** "company, group, collective author (CNRS, Library of Congress)" msgstr "" ! "請注意,圖書資料的題名可能是關於一個著者(例如 Victor Hugo)、一間公司、一個機構、" ! "或者一個組織(例如 CNRS、美國國會圖書館)等" # NOTE「Items」這裡可以算是「圖書資料」,也可以算(畫面顯示的)「項目」 --- 1415,1420 ---- "company, group, collective author (CNRS, Library of Congress)" msgstr "" ! "請注意,圖書資料的題名可能是關於一個著者(例如 Victor Hugo)、一間公司、一個" ! "機構、或者一個組織(例如 CNRS、美國國會圖書館)等" # NOTE「Items」這裡可以算是「圖書資料」,也可以算(畫面顯示的)「項目」 *************** *** 1501,1505 **** "branch. By default the search is done on every branches of the library" msgstr "" ! "假如您只想查詢某一間分館的館藏,請先選擇分館;否則查詢結果會包括所有分館的館藏。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:6 --- 1505,1510 ---- "branch. By default the search is done on every branches of the library" msgstr "" ! "假如您只想查詢某一間分館的館藏,請先選擇分館;否則查詢結果會包括所有分館的館" ! "藏。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:6 *************** *** 1815,1819 **** "illustrator...)" msgstr "" ! "您可以輸入著者的姓或名。附加著者及其他有關的欄位(譯者、繪圖等等)也會列入搜尋範圍之內。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:9 --- 1820,1825 ---- "illustrator...)" msgstr "" ! "您可以輸入著者的姓或名。附加著者及其他有關的欄位(譯者、繪圖等等)也會列入搜" ! "尋範圍之內。" #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:9 Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -r1.4.2.2 -r1.4.2.3 *** default_intranet_zh_TW.po 24 Jan 2005 04:45:21 -0000 1.4.2.2 --- default_intranet_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 23:46-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" [...1012 lines suppressed...] #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:406 --- 18929,18933 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:171 msgid "Type de son:" ! msgstr "聲道類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:406 *************** *** 19568,19572 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:65 msgid "Vitesse:" ! msgstr "速度:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:338 --- 19547,19551 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:65 msgid "Vitesse:" ! msgstr "錄音速度:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:338 From acli at users.sourceforge.net Mon Jan 24 07:32:26 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 22:32:26 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.3,1.4.2.4 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18639 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: 126b done (i.e., translations that can be copied from CMARC have been copied) Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -r1.4.2.3 -r1.4.2.4 *** default_intranet_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 --- default_intranet_zh_TW.po 24 Jan 2005 06:32:21 -0000 1.4.2.4 *************** *** 1077,1081 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:294 msgid "10 cm x 6.3 cm ou 3 pouces 7/8 x 2 pouces 1/2" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:125 --- 1077,1081 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:294 msgid "10 cm x 6.3 cm ou 3 pouces 7/8 x 2 pouces 1/2" ! msgstr "3 7/8 × 2 1/2 吋(卡式錄音帶)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:125 *************** *** 1156,1164 **** msgstr "2 個月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:353 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:355 - #, fuzzy msgid "2 pouces" ! msgstr "-> 資源" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:36 --- 1156,1164 ---- msgstr "2 個月" + # TODO CMARC 寫 f6e 為「1 吋」,但「1 吋」為 f6c,CMARC 文件有錯 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:353 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:355 msgid "2 pouces" ! msgstr "2 吋" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:36 *************** *** 3993,3997 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:30 msgid "Bande \"Master\"" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:33 --- 3993,3997 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:30 msgid "Bande \"Master\"" ! msgstr "母帶 (master tape)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:33 *************** *** 4075,4083 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:33 msgid "Bande reproduite a partir du \"master\"" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:35 msgid "Bande reproduite a partir du master" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:189 --- 4075,4083 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:33 msgid "Bande reproduite a partir du \"master\"" ! msgstr "複製母帶 (tape duplication master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:35 msgid "Bande reproduite a partir du master" ! msgstr "複製母帶 (tape duplication master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:189 *************** *** 5685,5689 **** #, fuzzy msgid "Codage CX" ! msgstr "編碼" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/authtypes.tmpl:117 --- 5685,5689 ---- #, fuzzy msgid "Codage CX" ! msgstr "CX 編碼" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/authtypes.tmpl:117 *************** *** 6372,6376 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:45 msgid "Cylindre" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:697 --- 6372,6376 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:45 msgid "Cylindre" ! msgstr "圓形錄音筒" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:697 *************** *** 7016,7020 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:40 msgid "Disque \"pere\" (negatif)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:171 --- 7016,7020 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:40 msgid "Disque \"pere\" (negatif)" ! msgstr "唱片母模板 (disc master, negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:171 *************** *** 7133,7137 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:131 msgid "Dos papier" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/memberentry.tmpl:76 --- 7133,7137 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:131 msgid "Dos papier" ! msgstr "紙背 (paper backed)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/memberentry.tmpl:76 *************** *** 8632,8646 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:20 msgid "Gravure directe" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:170 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:172 msgid "Gravure inconnue" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:160 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:162 msgid "Gravure laterale ou combinee" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1038 --- 8632,8646 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:20 msgid "Gravure directe" ! msgstr "現場錄音者(定點錄音)(instantaneous)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:170 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:172 msgid "Gravure inconnue" ! msgstr "不詳" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:160 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:162 msgid "Gravure laterale ou combinee" ! msgstr "側面切割式" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1038 *************** *** 8683,8693 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:167 msgid "Gravure verticale" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:607 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:609 - #, fuzzy msgid "Grec" ! msgstr "法文" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:786 --- 8683,8692 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:167 msgid "Gravure verticale" ! msgstr "高低式起伏" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:607 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:609 msgid "Grec" ! msgstr "希臘文" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:786 *************** *** 8696,8700 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:1063 msgid "Greenwich (G.B.)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:78 --- 8695,8699 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:1063 msgid "Greenwich (G.B.)" ! msgstr "格林尼治(英國)" #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:78 *************** *** 8718,8721 **** --- 8717,8721 ---- "Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine" msgstr "" + "Gynn Lomax、Richard Anderson、Jeremy Blake、Rebecca Holden、Olive T. Canine" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/recieve.tmpl:66 *************** *** 8724,8730 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:74 - #, fuzzy msgid "HELP Ordering" ! msgstr "採購說明:" # NOTE 譯文更動 by Arthur --- 8724,8729 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:74 msgid "HELP Ordering" ! msgstr "訂購說明" # NOTE 譯文更動 by Arthur *************** *** 8744,8753 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:8 msgid "HINT for fines" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:5 - #, fuzzy msgid "HINT for issues" ! msgstr "借出次數" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/authorised_values.tmpl:8 --- 8743,8751 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:8 msgid "HINT for fines" ! msgstr "罰款提示" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:5 msgid "HINT for issues" ! msgstr "借出說明" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/authorised_values.tmpl:8 *************** *** 10632,10638 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:106 - #, fuzzy msgid "Laque" ! msgstr "語言" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:216 --- 10630,10635 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:106 msgid "Laque" ! msgstr "lacquered(如,醋酸鹽等)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:216 *************** *** 11496,11500 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:50 msgid "Matrice (negatif)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1417 --- 11493,11497 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:50 msgid "Matrice (negatif)" ! msgstr "壓模版 (stamper, negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1417 *************** *** 11504,11510 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:112 - #, fuzzy msgid "May" ! msgstr "繳交" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:208 --- 11501,11506 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:112 msgid "May" ! msgstr "五月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:208 *************** *** 11720,11726 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:109 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:111 - #, fuzzy msgid "Metal" ! msgstr "男" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:329 --- 11716,11721 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:109 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:111 msgid "Metal" ! msgstr "金屬(如,鋁等)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:329 *************** *** 11736,11740 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:126 msgid "Metal et plastique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1219 --- 11731,11735 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:126 msgid "Metal et plastique" ! msgstr "金屬及塑膠(雷射唱片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1219 *************** *** 13197,13203 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:30 - #, fuzzy msgid "Nord" ! msgstr "字詞" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:176 --- 13192,13197 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:30 msgid "Nord" ! msgstr "北" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:176 *************** *** 13220,13233 **** msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1012 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1014 msgid "Norme CCIR/IEC" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:407 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:410 msgid "Norme ISO pour la translitteration" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1007 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1009 --- 13214,13229 ---- msgstr "" + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1012 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1014 msgid "Norme CCIR/IEC" ! msgstr "CCIR/IEC 標準" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:407 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:410 msgid "Norme ISO pour la translitteration" ! msgstr "ISO " + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1007 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1009 *************** *** 13463,13466 **** --- 13459,13463 ---- msgstr "" + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:981 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:983 *************** *** 13468,13475 **** msgstr "數碼" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1022 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1024 msgid "Numerique (disque compact)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:26 --- 13465,13473 ---- msgstr "數碼" + # NOTE 暫譯,CMARC 無此分欄 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1022 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1024 msgid "Numerique (disque compact)" ! msgstr "數碼(雷射唱片)" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:26 *************** *** 14089,14093 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:141 msgid "P.V.C." ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/jmemberentry.tmpl:25 --- 14087,14091 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:141 msgid "P.V.C." ! msgstr "塑膠 (PVC)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/jmemberentry.tmpl:25 *************** *** 14105,14116 **** #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:134 - #, fuzzy msgid "Page Size" ! msgstr "大小" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/printerConfig.tmpl:32 - #, fuzzy msgid "Page Type" ! msgstr "圖書資料類別" #: ../../koha-tmpl/intranet-tmpl/default/en/marcimport/marcimportdetail.tmpl:36 --- 14103,14112 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:134 msgid "Page Size" ! msgstr "頁面大小" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/printerConfig.tmpl:32 msgid "Page Type" ! msgstr "紙張類型" #: ../../koha-tmpl/intranet-tmpl/default/en/marcimport/marcimportdetail.tmpl:36 *************** *** 14778,14781 **** --- 14774,14778 ---- msgstr "" + # NOTE CMARC 126b 無 2h #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:365 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:367 *************** *** 14787,14791 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:101 msgid "Plastique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:662 --- 14784,14788 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:101 msgid "Plastique" ! msgstr "塑膠" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:662 *************** *** 14961,14965 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:146 msgid "Polyester" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:743 --- 14958,14962 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:146 msgid "Polyester" ! msgstr "多元脂 (polyester)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:743 *************** *** 15132,15139 **** msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:9 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 --- 15129,15137 ---- msgstr "" + # FIXME Clash between 126a and 130!! #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:9 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "唱片、錄音帶或圓型錄音筒類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 *************** *** 15150,15164 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:55 msgid "Pressage de test" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:114 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:116 msgid "Pressage laque" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:119 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:121 msgid "Pressage plastique" ! msgstr "" # FIXME This may be wrong. check context. --- 15148,15162 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:55 msgid "Pressage de test" ! msgstr "試壓片 (test pressing)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:114 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:116 msgid "Pressage laque" ! msgstr "假漆版唱片(大量製造者)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:119 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:121 msgid "Pressage plastique" ! msgstr "塑膠版唱片(大量製造者)" # FIXME This may be wrong. check context. *************** *** 15242,15246 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:25 msgid "Production industrielle" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_124b.tmpl:43 --- 15240,15244 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:25 msgid "Production industrielle" ! msgstr "大量製造者(商業性發行唱片多屬此)(mass produced)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_124b.tmpl:43 *************** *** 18891,18895 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:9 msgid "Type de disque, cylindre ou bande magnetique:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:9 --- 18889,18893 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:9 msgid "Type de disque, cylindre ou bande magnetique:" ! msgstr "唱片、錄音帶或圓形錄音筒類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:9 *************** *** 18899,18903 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:70 msgid "Type de document:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_135a.tmpl:9 --- 18897,18901 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:70 msgid "Type de document:" ! msgstr "質料種類:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_135a.tmpl:9 *************** *** 18911,18915 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:151 msgid "Type de gravure:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_125a.tmpl:9 --- 18909,18913 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:151 msgid "Type de gravure:" ! msgstr "錄音槽切割形式:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_125a.tmpl:9 From acli at users.sourceforge.net Mon Jan 24 07:53:56 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 22:53:56 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.4,1.4.2.5 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23504 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.4 retrieving revision 1.4.2.5 diff -C2 -r1.4.2.4 -r1.4.2.5 *** default_intranet_zh_TW.po 24 Jan 2005 06:32:21 -0000 1.4.2.4 --- default_intranet_zh_TW.po 24 Jan 2005 06:53:51 -0000 1.4.2.5 *************** *** 19653,19659 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/statecollection.tmpl:39 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:161 - #, fuzzy msgid "Waited" ! msgstr "相關" #. INPUT type=submit --- 19653,19658 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/statecollection.tmpl:39 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:161 msgid "Waited" ! msgstr "等待" #. INPUT type=submit *************** *** 19786,19794 **** msgstr "是" - # FIXME Bug in English template #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:122 - #, fuzzy msgid "Year" ! msgstr "年%0.0s" #: ../../koha-tmpl/intranet-tmpl/default/en/members/moremember.tmpl:136 --- 19785,19791 ---- msgstr "是" #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:122 msgid "Year" ! msgstr "年份" #: ../../koha-tmpl/intranet-tmpl/default/en/members/moremember.tmpl:136 *************** *** 20023,20030 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:95 #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:180 - #, fuzzy msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "「私人」的虛擬書架只有您看得見,並且只有您才有權修改。" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:23 --- 20020,20027 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:95 #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:180 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "私家書架只有您看得見,並且只有您才有權修改。" + # FIXME bug in tokenizer/scanner #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:23 *************** *** 20053,20056 **** --- 20050,20054 ---- "Thompson," msgstr "" + "及 Simon Blake、運作經理 Amanda Atkins、Olwen Williams、Finlay Thompson、" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:90 *************** *** 20088,20094 **** msgstr "截至此日 (%s)" - # XXX 暫譯,要問人核對 #: ../../koha-tmpl/intranet-tmpl/default/en/help/authorities/authorities.tmpl:1 - #, fuzzy msgid "authority help" msgstr "權威說明" --- 20086,20090 ---- *************** *** 20101,20107 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:414 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:416 - #, fuzzy msgid "autre" ! msgstr "著者" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:454 --- 20097,20102 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:414 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:416 msgid "autre" ! msgstr "其他" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:454 *************** *** 20127,20131 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:110 msgid "be in tab -1" ! msgstr "在第「-1」格 (即不顯示)" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:109 --- 20122,20126 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:110 msgid "be in tab -1" ! msgstr "在第「-1」格(即不顯示)" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:109 *************** *** 20216,20222 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acquire.tmpl:12 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:81 - #, fuzzy msgid "catalogue details" ! msgstr "館藏查詢" #. For the first occurrence, --- 20211,20216 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acquire.tmpl:12 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:81 msgid "catalogue details" ! msgstr "目錄詳情" #. For the first occurrence, *************** *** 20229,20235 **** #. INPUT type=submit #: ../../koha-tmpl/intranet-tmpl/default/en/suggestion/acceptorreject.tmpl:42 - #, fuzzy msgid "change status" ! msgstr "匯率" #. SCRIPT --- 20223,20228 ---- #. INPUT type=submit #: ../../koha-tmpl/intranet-tmpl/default/en/suggestion/acceptorreject.tmpl:42 msgid "change status" ! msgstr "修改狀態" #. SCRIPT *************** *** 20240,20246 **** #. %1$s: TMPL_VAR name=closedate #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/order.tmpl:46 ! #, fuzzy, c-format msgid "closed on %s View" ! msgstr "%S - %s +" #. INPUT type=reset name=reset --- 20233,20239 ---- #. %1$s: TMPL_VAR name=closedate #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/order.tmpl:46 ! #, c-format msgid "closed on %s View" ! msgstr "" #. INPUT type=reset name=reset *************** *** 20276,20282 **** #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:9 - #, fuzzy msgid "count" ! msgstr "折扣" #. SCRIPT --- 20269,20274 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:9 msgid "count" ! msgstr "數量" #. SCRIPT *************** *** 20286,20292 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:12 - #, fuzzy msgid "day" ! msgstr "繳交" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marctagstructure.tmpl:4 --- 20278,20283 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:12 msgid "day" ! msgstr "日" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marctagstructure.tmpl:4 *************** *** 20376,20380 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:21 msgid "everywhere" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:18 --- 20367,20371 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:21 msgid "everywhere" ! msgstr "任何地方" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:18 *************** *** 20401,20407 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:20 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:22 - #, fuzzy msgid "filter" ! msgstr "印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:11 --- 20392,20397 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:20 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:22 msgid "filter" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:11 *************** *** 20412,20418 **** #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, fuzzy, c-format msgid "for branch = %s" ! msgstr "登記之館別:%s" #. %1$s: TMPL_VAR name=borrower_category --- 20402,20408 ---- #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, , c-format msgid "for branch = %s" ! msgstr "" #. %1$s: TMPL_VAR name=borrower_category *************** *** 20510,20514 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/search.marc/search.tmpl:25 - #, fuzzy msgid "ignored" msgstr "忽略" --- 20500,20503 ---- *************** *** 20669,20673 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - #, fuzzy msgid "mandatory tags empty" msgstr "個必備欄沒有填寫" --- 20658,20661 ---- *************** *** 20727,20733 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:24 - #, fuzzy msgid "month" ! msgstr "金額" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:310 --- 20715,20720 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:24 msgid "month" ! msgstr "月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:310 *************** *** 20848,20852 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/addbookbybiblionumber.tmpl:9 msgid "or add to a new bookshelf" ! msgstr "" #. %1$s: TMPL_VAR name=name --- 20835,20839 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/addbookbybiblionumber.tmpl:9 msgid "or add to a new bookshelf" ! msgstr "或新增至新的虛擬書架" #. %1$s: TMPL_VAR name=name *************** *** 20881,20887 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:331 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:333 - #, fuzzy msgid "plans" ! msgstr "Al Banks" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl:22 --- 20868,20873 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:331 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:333 msgid "plans" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl:22 *************** *** 20899,20903 **** #: ../../koha-tmpl/intranet-tmpl/default/en/includes/quicksearch-top.inc:5 msgid "popup" ! msgstr "" #. SCRIPT --- 20885,20889 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/includes/quicksearch-top.inc:5 msgid "popup" ! msgstr "彈出通知" #. SCRIPT *************** *** 20952,20958 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:33 - #, fuzzy msgid "quarter" ! msgstr "更新" #. SCRIPT --- 20938,20943 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:33 msgid "quarter" ! msgstr "季" #. SCRIPT *************** *** 21045,21051 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:108 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:133 ! #, fuzzy, c-format msgid "see also : %s," ! msgstr "參見" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 --- 21030,21036 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:108 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:133 ! #, c-format msgid "see also : %s," ! msgstr "參見:%s、" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 *************** *** 21059,21065 **** #. %2$s: TMPL_VAR name=name #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:4 ! #, fuzzy, c-format msgid "shopping Basket %s for %s" ! msgstr "%2$s 的購物籃 %1$s" # FIXME Strictly speaking untranslatable. Arguably a template bug, but difficult to fix --- 21044,21050 ---- #. %2$s: TMPL_VAR name=name #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:4 ! #, c-format msgid "shopping Basket %s for %s" ! msgstr "%2$s 的購物籃 %1$s" # FIXME Strictly speaking untranslatable. Arguably a template bug, but difficult to fix *************** *** 21090,21096 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:127 - #, fuzzy msgid "subfield ignored" ! msgstr "分欄" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl:155 --- 21075,21080 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:127 msgid "subfield ignored" ! msgstr "分欄已被忽略" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl:155 *************** *** 21159,21163 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:53 msgid "the biblioitems.itemtype field MUST :" ! msgstr "biblioitems.itemtype欄必須:" # NOTE 譯文更動 by Arthur --- 21143,21147 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:53 msgid "the biblioitems.itemtype field MUST :" ! msgstr "biblioitems.itemtype 欄必須:" # NOTE 譯文更動 by Arthur *************** *** 21185,21193 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:93 msgid "the items.holdingbranch field MUST :" ! msgstr "items.holdingbranch欄必須:" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:79 msgid "the items.homebranch field MUST :" ! msgstr "items.homebranch欄必須" # NOTE 譯文更動 by Arthur --- 21169,21177 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:93 msgid "the items.holdingbranch field MUST :" ! msgstr "items.holdingbranch 欄必須:" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:79 msgid "the items.homebranch field MUST :" ! msgstr "items.homebranch 欄必須" # NOTE 譯文更動 by Arthur *************** *** 21289,21293 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:15 msgid "week" ! msgstr "週刊" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:25 --- 21273,21277 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:15 msgid "week" ! msgstr "週" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:25 *************** *** 21309,21313 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:39 msgid "year" ! msgstr "年刊" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:16 --- 21293,21297 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:39 msgid "year" ! msgstr "年" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:16 From acli at users.sourceforge.net Mon Jan 24 08:13:57 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 23:13:57 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator TmplTokenizer.pm,1.35.2.1,1.35.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28051 Modified Files: Tag: rel_2_2 TmplTokenizer.pm Log Message: Reverting the patch Index: TmplTokenizer.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/TmplTokenizer.pm,v retrieving revision 1.35.2.1 retrieving revision 1.35.2.2 diff -C2 -r1.35.2.1 -r1.35.2.2 *** TmplTokenizer.pm 23 Jan 2005 07:05:43 -0000 1.35.2.1 --- TmplTokenizer.pm 24 Jan 2005 07:13:54 -0000 1.35.2.2 *************** *** 342,346 **** $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])\s*(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { --- 342,346 ---- $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { *************** *** 349,354 **** } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! my $candidate = $output[$j]->[1]; ! $output[$j] = [1, $candidate, $q, $s]; } $state = 0; --- 349,353 ---- } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! $output[$j] = [1, $output[$j]->[1], $q, $s]; } $state = 0; From acli at users.sourceforge.net Mon Jan 24 08:57:40 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 23:57:40 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.3,1.4.2.4 default_intranet_zh_TW.po,1.4.2.5,1.4.2.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5164 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: Unimarc tag 130 done Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -r1.4.2.3 -r1.4.2.4 *** css_opac_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 --- css_opac_zh_TW.po 24 Jan 2005 07:57:29 -0000 1.4.2.4 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 23:45-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 18,21 **** --- 18,28 ---- "Content-Transfer-Encoding: 8bit\n" + # TODO + #. SCRIPT + #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 + #, fuzzy + msgid " Biblio(s) added" + msgstr "成功新增書目" + #. %1$S: type=text name=value #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:111 *************** *** 799,808 **** msgstr "書籃" - # TODO - #. SCRIPT - #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - msgid "Biblio(s) added" - msgstr "成功新增書目" - #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 msgid "Bookshelves" --- 806,809 ---- Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.5 retrieving revision 1.4.2.6 diff -C2 -r1.4.2.5 -r1.4.2.6 *** default_intranet_zh_TW.po 24 Jan 2005 06:53:51 -0000 1.4.2.5 --- default_intranet_zh_TW.po 24 Jan 2005 07:57:34 -0000 1.4.2.6 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 23:46-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 34,37 **** --- 34,52 ---- "Content-Transfer-Encoding: 8bit\n" + #. For the first occurrence, + #. SCRIPT + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl:111 + #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 + msgid " mandatory fields empty (see bold subfields)" + msgstr "個必備欄位沒有填寫(見粗體的分欄)" + + #. For the first occurrence, + #. SCRIPT + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 + #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 + msgid " mandatory tags empty" + msgstr "個必備欄沒有填寫" + #. %1$s: TMPL_VAR name=subject #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:6 *************** *** 81,85 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:31 msgid "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:32 --- 96,100 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:31 msgid "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" ! msgstr "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:32 *************** *** 91,95 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:33 msgid "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:34 --- 106,110 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:33 msgid "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" ! msgstr "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:34 *************** *** 107,111 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:30 msgid "#230||{ ; 230a}|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:36 --- 122,126 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:30 msgid "#230||{ ; 230a}|" ! msgstr "#230||{ ; 230a}|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:36 *************** *** 117,121 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:28 msgid "#700|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:37 --- 132,136 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:28 msgid "#700|" ! msgstr "#700|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:37 *************** *** 135,139 **** #, c-format msgid "%S (example for 200a : '200c','200d','200e')" ! msgstr "" #. %1$S: type=text name=seealso --- 150,154 ---- #, c-format msgid "%S (example for 200a : '200c','200d','200e')" ! msgstr "%S (以 200a 而言,例如:「200c」、「200d」、「200e」)" #. %1$S: type=text name=seealso *************** *** 736,740 **** #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist-auth.tmpl:55 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_210c.tmpl:56 - #, fuzzy msgid " No results found." msgstr " 找不到您需用的資料。" --- 751,754 ---- *************** *** 784,788 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:17 - #, fuzzy msgid "" "(Note : fines are calculated by the fines2.pl script, located in misc " --- 798,801 ---- *************** *** 818,824 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:123 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:125 ! #, fuzzy, c-format msgid "(is %s)" ! msgstr "(%s, %s)" #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:13 --- 831,837 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:123 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:125 ! #, c-format msgid "(is %s)" ! msgstr "(為 %s)" #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:13 *************** *** 971,982 **** # FIXME looks like a BUG in the English template #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:41 - #, fuzzy msgid "1/2 Monthes" ! msgstr "個月%0.0s" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:59 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:61 msgid "1/2 months" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:338 --- 984,994 ---- # FIXME looks like a BUG in the English template #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:41 msgid "1/2 Monthes" ! msgstr "半個月" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:59 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:61 msgid "1/2 months" ! msgstr "半個月" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:338 *************** *** 989,993 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:50 msgid "1/2 quarters" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:44 --- 1001,1005 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:50 msgid "1/2 quarters" ! msgstr "半季" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:44 *************** *** 995,999 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:32 msgid "1/2 weeks" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:84 --- 1007,1011 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:32 msgid "1/2 weeks" ! msgstr "半週" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:84 *************** *** 1001,1005 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:56 msgid "1/2 years" ! msgstr "1/2 年" # FIXME looks like a BUG in the English template --- 1013,1017 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:56 msgid "1/2 years" ! msgstr "半年" # FIXME looks like a BUG in the English template *************** *** 1082,1086 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:127 msgid "105 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1296 --- 1094,1098 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:127 msgid "105 mm (microfilm)" ! msgstr "105 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1296 *************** *** 1134,1138 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:112 msgid "16 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:414 --- 1146,1150 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:112 msgid "16 mm (microfilm)" ! msgstr "16 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:414 *************** *** 1211,1215 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:132 msgid "3 x 5 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:112 --- 1223,1227 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:132 msgid "3 x 5 pouces" ! msgstr "3 × 5 吋(8 × 13 公分)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:112 *************** *** 1236,1240 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:117 msgid "35 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:282 --- 1248,1252 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:117 msgid "35 mm (microfilm)" ! msgstr "35 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:282 *************** *** 1251,1255 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:137 msgid "4 x 6 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:164 --- 1263,1267 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:137 msgid "4 x 6 pouces" ! msgstr "4 × 6 吋(11 × 15 公分)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:164 *************** *** 1296,1300 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:142 msgid "6 x 9 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:127 --- 1308,1312 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:142 msgid "6 x 9 pouces" ! msgstr "6 × 9 吋(16 × 23 公分)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:127 *************** *** 1331,1335 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:122 msgid "70 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:104 --- 1343,1347 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:122 msgid "70 mm (microfilm)" ! msgstr "70 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:104 *************** *** 1341,1345 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:107 msgid "8 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:404 --- 1353,1357 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:107 msgid "8 mm (microfilm)" ! msgstr "8 米厘(微縮捲片)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:404 *************** *** 1358,1365 **** msgstr "8/10 吋/秒" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:145 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:147 msgid "9 x 19 cm" ! msgstr "" #. For the first occurrence, --- 1370,1378 ---- msgstr "8/10 吋/秒" + # NOTE CMARC 亂寫 :-( #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:145 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:147 msgid "9 x 19 cm" ! msgstr "3 1/4 × 7 3/8 吋(9 × 19 公分)(孔卡)" #. For the first occurrence, *************** *** 4066,4070 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:55 msgid "Bande microfilm" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:198 --- 4079,4083 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:55 msgid "Bande microfilm" ! msgstr "長條微縮片 (microfilm slip)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:198 *************** *** 5019,5023 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:20 msgid "Carte a fenetre" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1535 --- 5032,5036 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:20 msgid "Carte a fenetre" ! msgstr "孔卡 (aperture card)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1535 *************** *** 6070,6074 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:313 msgid "Copie de service" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/request.tmpl:38 --- 6083,6087 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:313 msgid "Copie de service" ! msgstr "發行片 (service copy)" #: ../../koha-tmpl/intranet-tmpl/default/en/request.tmpl:38 *************** *** 6156,6167 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:229 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:231 - #, fuzzy msgid "Couleur" ! msgstr "重設" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:215 - #, fuzzy msgid "Couleur:" ! msgstr "重設" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:119 --- 6169,6178 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:229 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:231 msgid "Couleur" ! msgstr "彩色 (color)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:215 msgid "Couleur:" ! msgstr "色彩:" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:119 *************** *** 6919,6923 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:262 msgid "Diazoique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:423 --- 6930,6934 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:262 msgid "Diazoique" ! msgstr "重氮 (diazo)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:423 *************** *** 6957,6961 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:96 msgid "Dimensions:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:168 --- 6968,6972 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:96 msgid "Dimensions:" ! msgstr "大小尺寸:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:168 *************** *** 7027,7033 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:239 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:241 - #, fuzzy msgid "Divers" ! msgstr "-> 交貨" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:123 --- 7038,7043 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:239 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:241 msgid "Divers" ! msgstr "不詳" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:123 *************** *** 7405,7409 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:183 msgid "Elevee (31x - 60x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/imemberentry.tmpl:78 --- 7415,7419 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:183 msgid "Elevee (31x - 60x)" ! msgstr "高縮率(31–60倍)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/imemberentry.tmpl:78 *************** *** 7424,7433 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:246 msgid "Emulsion:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:275 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:277 msgid "Emulsions diverses" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:611 --- 7434,7443 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:246 msgid "Emulsion:" ! msgstr "軟片感光乳劑性質:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:275 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:277 msgid "Emulsions diverses" ! msgstr "不詳" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:611 *************** *** 7910,7916 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:171 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:173 - #, fuzzy msgid "Faible reduction" ! msgstr "複製品" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:368 --- 7920,7925 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:171 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:173 msgid "Faible reduction" ! msgstr "低縮率" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:368 *************** *** 8489,8500 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:292 - #, fuzzy msgid "Generation (copies):" ! msgstr "一般備註:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:321 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:323 msgid "Generations diverses" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:99 --- 8498,8508 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:292 msgid "Generation (copies):" ! msgstr "軟片版類別 (generation):" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:321 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:323 msgid "Generations diverses" ! msgstr "混合" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:99 *************** *** 9227,9231 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:344 msgid "Il ne s'agit pas d'un support de securite" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:1087 --- 9235,9239 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:344 msgid "Il ne s'agit pas d'un support de securite" ! msgstr "非安全軟片基底" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:1087 *************** *** 11783,11787 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:50 msgid "Micro opaque" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_106.tmpl:44 --- 11791,11795 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:50 msgid "Micro opaque" ! msgstr "不透明微縮片 (micro opaque)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_106.tmpl:44 *************** *** 11793,11817 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:40 msgid "Microfiche" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:43 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:45 msgid "Microfiche en cassette" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:33 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:35 msgid "Microfilm en bobine" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:23 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:25 msgid "Microfilm en cartouche" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:30 msgid "Microfilm en cassette" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:250 --- 11801,11825 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:40 msgid "Microfiche" ! msgstr "微縮單片 (microfiche)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:43 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:45 msgid "Microfiche en cassette" ! msgstr "卡式微縮單片 (microfiche cassette)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:33 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:35 msgid "Microfilm en bobine" ! msgstr "盤式微縮捲片 (microform reel)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:23 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:25 msgid "Microfilm en cartouche" ! msgstr "匣式微縮捲片 (microform cartridge)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:30 msgid "Microfilm en cassette" ! msgstr "卡式微縮捲片 (microform cassette)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:250 *************** *** 12076,12082 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:224 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:226 - #, fuzzy msgid "Monochrome" ! msgstr "電話 (住宅)" # NOTE Cf http://dimes.lins.fju.edu.tw/pub/bulletin-lac-60/dc-cmark.htm --- 12084,12089 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:224 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:226 msgid "Monochrome" ! msgstr "單色 (monochrome)" # NOTE Cf http://dimes.lins.fju.edu.tw/pub/bulletin-lac-60/dc-cmark.htm *************** *** 12368,12372 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:81 msgid "Negatif" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:40 --- 12375,12379 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:81 msgid "Negatif" ! msgstr "負片 (negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:40 *************** *** 13198,13202 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:178 msgid "Normale (16x - 30x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_110.tmpl:209 --- 13205,13209 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:178 msgid "Normale (16x - 30x)" ! msgstr "正常縮率(16–30倍)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_110.tmpl:209 *************** *** 13280,13284 **** "directory." msgstr "注意:罰款係由位於 misc 目錄內的 fines2.pl 計算。" ! #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:14 msgid "Note : the items are NOT exported by this tool" --- 13287,13291 ---- "directory." msgstr "注意:罰款係由位於 misc 目錄內的 fines2.pl 計算。" ! #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:14 msgid "Note : the items are NOT exported by this tool" *************** *** 14868,14872 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:91 msgid "Plusieurs polarites" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:318 --- 14875,14879 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:91 msgid "Plusieurs polarites" ! msgstr "含正負兩極 (mixed polarity)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:318 *************** *** 14923,14929 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:65 - #, fuzzy msgid "Polarite:" ! msgstr "印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:42 --- 14930,14935 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:65 msgid "Polarite:" ! msgstr "極性:" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:42 *************** *** 15027,15033 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:74 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:76 - #, fuzzy msgid "Positif" ! msgstr "職位" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:195 --- 15033,15038 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:74 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:76 msgid "Positif" ! msgstr "正片 (positive)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:195 *************** *** 15121,15125 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:303 msgid "Premiere generation (master)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:425 --- 15126,15130 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:303 msgid "Premiere generation (master)" ! msgstr "母片" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:425 *************** *** 15133,15137 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "唱片、錄音帶或圓型錄音筒類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 --- 15138,15142 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "唱片、錄音帶或圓型錄音筒類型 / 資料特殊類型:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 *************** *** 15424,15433 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:208 msgid "Rapport de reduction specifique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:162 - #, fuzzy msgid "Rapport de reduction:" ! msgstr "複製品" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:495 --- 15429,15437 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:208 msgid "Rapport de reduction specifique" ! msgstr "閱讀放大倍率" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:162 msgid "Rapport de reduction:" ! msgstr "縮率:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:495 *************** *** 15684,15696 **** msgstr "" - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:492 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:578 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:664 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:750 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:836 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:922 - msgid "Renseignement techniques sur la musique" - msgstr "音樂作品之技術資料" - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:505 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:507 --- 15688,15691 ---- *************** *** 15739,15747 **** --- 15734,15748 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:490 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:492 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:576 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:578 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:662 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:664 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:748 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:750 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:834 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:836 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:920 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:922 msgid "Renseignements techniques sur la musique" msgstr "音樂作品之技術資料" *************** *** 16484,16488 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:257 msgid "Sel d'argent" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/order.tmpl:9 --- 16485,16489 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:257 msgid "Sel d'argent" ! msgstr "銀鹽 (silver halide)" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/order.tmpl:9 *************** *** 17461,17465 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:328 msgid "Support de film:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1124 --- 17462,17466 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:328 msgid "Support de film:" ! msgstr "軟片基底:" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1124 *************** *** 17470,17474 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:339 msgid "Support de securite" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1141 --- 17471,17475 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:339 msgid "Support de securite" ! msgstr "安全軟片基底" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1141 *************** *** 18394,18400 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:306 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:308 - #, fuzzy msgid "Tirage" ! msgstr "欄" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:34 --- 18395,18400 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:306 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:308 msgid "Tirage" ! msgstr "複製用母片 (printing master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:34 *************** *** 18743,18747 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:188 msgid "Tres elevee (61x - 90x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:23 --- 18743,18747 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:188 msgid "Tres elevee (61x - 90x)" ! msgstr "極高縮率(61–90 倍)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:23 *************** *** 19127,19131 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:193 msgid "Ultra elevee (91x -)" ! msgstr "" # NOTE 譯文更動 by Arthur --- 19127,19131 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:193 msgid "Ultra elevee (91x -)" ! msgstr "超高縮率(91倍–)" # NOTE 譯文更動 by Arthur *************** *** 19426,19430 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:267 msgid "Vesiculaire" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:132 --- 19426,19430 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:267 msgid "Vesiculaire" ! msgstr "重泡 (vesicular)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:132 *************** *** 20402,20406 **** #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, , c-format msgid "for branch = %s" msgstr "" --- 20402,20406 ---- #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, c-format msgid "for branch = %s" msgstr "" *************** *** 20645,20664 **** msgstr "下限*" - #. For the first occurrence, - #. SCRIPT - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl:111 - #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - #, fuzzy - msgid "mandatory fields empty (see bold subfields)" - msgstr "個必備欄位沒有填寫(見粗體的分欄)" - - #. For the first occurrence, - #. SCRIPT - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 - #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - msgid "mandatory tags empty" - msgstr "個必備欄沒有填寫" - #: ../../koha-tmpl/intranet-tmpl/default/en/help/search.marc/search.tmpl:20 msgid "means : find biblio that have a" --- 20645,20648 ---- *************** *** 21950,21953 **** --- 21934,21940 ---- #~ msgstr "關係*" + #~ msgid "Renseignement techniques sur la musique" + #~ msgstr "音樂作品之技術資料" + #~ msgid "Rep" #~ msgstr "可重覆" From acli at users.sourceforge.net Mon Jan 24 09:12:49 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 00:12:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_116.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9345 Modified Files: Tag: rel_2_2 unimarc_field_116.tmpl Log Message: Disambiguation for CMARC Index: unimarc_field_116.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** unimarc_field_116.tmpl 7 Jun 2004 09:50:40 -0000 1.1 --- unimarc_field_116.tmpl 24 Jan 2005 08:12:31 -0000 1.1.2.1 *************** *** 219,223 ****
        Couleur
        Couleur: Subtitle: ! Author:
        Additional Author:
        Published by : --- 47,51 ----
        Subtitle: ! Author:
        Additional Author:
        Published by : *************** *** 53,67 **** , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: --- 53,67 ---- , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: From oleonard at users.sourceforge.net Mon Jan 24 23:12:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:12:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-detail.tmpl,1.15,1.16 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25326/koha-tmpl/opac-tmpl/css/en Modified Files: opac-detail.tmpl Log Message: Moving position of relative to
        to prevent unwanted whitespace for empty elements. Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-detail.tmpl 3 Jan 2005 11:09:33 -0000 1.15 --- opac-detail.tmpl 24 Jan 2005 22:11:54 -0000 1.16 *************** *** 46,51 ****
        ! Subtitle: ! Author:
        Additional Author:
        Published by : --- 46,51 ----
        ! Subtitle:
        ! Author:
        Additional Author:
        Published by : *************** *** 53,67 **** , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: --- 53,67 ---- , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: From oleonard at users.sourceforge.net Mon Jan 24 23:52:34 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:52:34 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-addbookbybiblionumber.tmpl,NONE,1.1 opac-serial-issues.tmpl,NONE,1.1 opac-ISBDdetail.tmpl,1.1,1.2 opac-MARCdetail.tmpl,1.1,1.2 opac-detail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2852/koha-tmpl/opac-tmpl/npl/en Modified Files: opac-ISBDdetail.tmpl opac-MARCdetail.tmpl opac-detail.tmpl Added Files: opac-addbookbybiblionumber.tmpl opac-serial-issues.tmpl Log Message: Synching with default tempalte, other cosmetic changes --- NEW FILE ---

        Add book to bookshelf

        Select bookshelf

        or add to a new bookshelf

        ">

        --- NEW FILE --- Catalog -- Subscription Details

        Subscription Details

        Details:

        It began on and is issued every day week 2 weeks 3 weeks month 2 months 3 months quarter 2 quarters year 2 years on Monday Tuesday Wednesday Thursday Friday Saturday Sunday for issues weeks months since

        Notes:
        Issues summary
        " />

        Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-ISBDdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-ISBDdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-ISBDdetail.tmpl 24 Jan 2005 22:51:51 -0000 1.2 *************** *** 3,26 **** ! /includes/marc-editor.css"> ! !
        !

        ISBD :

        --- 3,28 ---- ! !
        !

        ISBD

        !

        ! !
        ! ! " /> !
        ! ! !
        " />
        ! !
        " />
        !
        " />'); return false;"/>
        ! !
        " />'); return false;" />
        ! !
        '); return false;" value="Add to Book Bag" />
        !
        Index: opac-MARCdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-MARCdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-MARCdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-MARCdetail.tmpl 24 Jan 2005 22:51:52 -0000 1.2 *************** *** 6,22 ****

        MARC View

        !
        ! " />
        !
        " /> --> !
        " />
        ! " />'); return false;"/> --> !
        '); return false;" value="Add to Book Bag" />
        --- 6,22 ----

        MARC View

        !
        ! " /> ! " /> --> !
        " /> !
        " /> !
        '); return false;" value="Add to Book Bag" />
        *************** *** 120,124 ****
        ! --- 120,124 ----
        Copies
        ! *************** *** 135,139 **** --- 135,143 ---- +
        Copies
        + +
        No copies available.
        +
        Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-detail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-detail.tmpl 24 Jan 2005 22:51:52 -0000 1.2 *************** *** 35,43 ****
        Notes:
        Subject(s): ! : "> !
        --- 35,41 ----
        Notes:
        Subject(s):">
        *************** *** 72,86 ****
        !
        ! " />
        !
        ! " /> --> ! " /> --> ! " />'); return false;"/> -->
        '); return false;" value="Add to Book Bag" />
        --- 70,87 ---- !
        ! " />
        ! !
        " />
        !
        " />
        ! !
        " />'); return false;"/>
        ! !
        " />'); return false;" />
        '); return false;" value="Add to Book Bag" />
        *************** *** 112,115 **** --- 113,119 ----
        No copies available.
        + +

        This is a serial subscription (There are subscriptions associated with this title). You can see which " title="Serial issues">Issues we have and don't have

        +
    From oleonard at users.sourceforge.net Mon Jan 24 23:54:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:54:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en/includes opac.css,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3261/koha-tmpl/opac-tmpl/npl/en/includes Modified Files: opac.css Log Message: Adding styles for more input buttons Index: opac.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/includes/opac.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac.css 20 Oct 2004 19:15:06 -0000 1.1 --- opac.css 24 Jan 2005 22:54:02 -0000 1.2 *************** *** 518,521 **** --- 518,533 ---- } + input.isbd { + background-image: url(../images/isbd.gif); + } + + input.shelf { + background-image: url(../images/addtoshelf.gif); + } + + input.reserve { + background-image: url(../images/placereserve.gif); + } + .title { font-style : italic; From oleonard at users.sourceforge.net Mon Jan 24 23:55:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:55:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en/images addtoshelf.gif,NONE,1.1 isbd.gif,NONE,1.1 placereserve.gif,NONE,1.1 addtobasket.gif,1.1,1.2 basket.gif,1.1,1.2 clearbasket.gif,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3485/koha-tmpl/opac-tmpl/npl/en/images Modified Files: addtobasket.gif basket.gif clearbasket.gif Added Files: addtoshelf.gif isbd.gif placereserve.gif Log Message: Adding and updating input button images --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a Index: addtobasket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/addtobasket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsVA8MFf and /tmp/cvsuQkGMD differ Index: basket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/basket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsYU6vAC and /tmp/cvsuauCKd differ Index: clearbasket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/clearbasket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvs4fJPY7 and /tmp/cvsOQuiCM differ From acli at users.sourceforge.net Tue Jan 25 04:47:04 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 19:47:04 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.8,1.4.2.9 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25498 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.8 retrieving revision 1.4.2.9 diff -C2 -r1.4.2.8 -r1.4.2.9 *** default_intranet_zh_TW.po 24 Jan 2005 09:31:17 -0000 1.4.2.8 --- default_intranet_zh_TW.po 25 Jan 2005 03:46:58 -0000 1.4.2.9 *************** *** 25,29 **** msgid "" msgstr "" ! "Project-Id-Version: Koha INTRANET 2.1cvs\n" "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" --- 25,29 ---- msgid "" msgstr "" ! "Project-Id-Version: Koha INTRANET 2.2.1cvs\n" "POT-Creation-Date: 2005-01-24 02:10-0500\n" [...1111 lines suppressed...] - #, fuzzy msgid "Overdue charges" ! msgstr "過期圖書資料" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:6 --- 13865,13870 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:14 msgid "Overdue charges" ! msgstr "過期罰款" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:6 *************** *** 13956,13960 **** # NOTE 字義係由Simon Blake在#koha提供 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/recieve.tmpl:37 - #, fuzzy msgid "P&P" msgstr "運費" --- 13895,13898 ---- From acli at users.sourceforge.net Tue Jan 25 05:54:36 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 20:54:36 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_100.tmpl,1.3,1.3.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6781 Modified Files: Tag: rel_2_2 unimarc_field_100.tmpl Log Message: Spelling correction Index: unimarc_field_100.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** unimarc_field_100.tmpl 7 Jun 2004 09:46:36 -0000 1.3 --- unimarc_field_100.tmpl 25 Jan 2005 04:54:33 -0000 1.3.2.1 *************** *** 304,308 **** SELECTED>local(municipal, etc.) ! --- 304,308 ---- SELECTED>local(municipal, etc.) ! From acli at users.sourceforge.net Tue Jan 25 05:57:34 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 20:57:34 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.9,1.4.2.10 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7379 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update, mostly unimarc tag 100 related Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.9 retrieving revision 1.4.2.10 diff -C2 -r1.4.2.9 -r1.4.2.10 *** default_intranet_zh_TW.po 25 Jan 2005 03:46:58 -0000 1.4.2.9 --- default_intranet_zh_TW.po 25 Jan 2005 04:57:26 -0000 1.4.2.10 *************** *** 2971,2977 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1382 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1384 - #, fuzzy msgid "Allegorie" ! msgstr "類別" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:58 --- 2971,2976 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1382 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1384 [...980 lines suppressed...] #. INPUT type=submit --- 20732,20736 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:50 msgid "reproduction" ! msgstr "重印本、影印本、影鈔本、翻印本" #. INPUT type=submit *************** *** 20799,20803 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:249 msgid "scolaire" ! msgstr "" # NOTE「See」中文譯「見」,「See also」中文譯「參見」,請勿改動 --- 20783,20787 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:249 msgid "scolaire" ! msgstr "學齡兒童,5-10 歲" # NOTE「See」中文譯「見」,「See also」中文譯「參見」,請勿改動 From acli at users.sourceforge.net Tue Jan 25 06:31:59 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 21:31:59 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.10,1.4.2.11 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14192 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.10 retrieving revision 1.4.2.11 diff -C2 -r1.4.2.10 -r1.4.2.11 *** default_intranet_zh_TW.po 25 Jan 2005 04:57:26 -0000 1.4.2.10 --- default_intranet_zh_TW.po 25 Jan 2005 05:31:53 -0000 1.4.2.11 *************** *** 551,555 **** #, c-format msgid "%s or thesaurus: %s or plugin: %s" ! msgstr "" #. %1$s: TMPL_VAR name=authorised_value --- 551,555 ---- #, c-format msgid "%s or thesaurus: %s or plugin: %s" ! msgstr "%s 或同義字典:%s 或模組:%s" #. %1$s: TMPL_VAR name=authorised_value *************** *** 814,818 **** #, c-format msgid "(defined from suggestion #%s)" ! msgstr "" #. %1$s: TMPL_VAR name=authtypecode --- 814,818 ---- #, c-format msgid "(defined from suggestion #%s)" ! msgstr "(定義由第 %s 號新書建議取得)" #. %1$s: TMPL_VAR name=authtypecode *************** *** 1430,1433 **** --- 1430,1435 ---- " ISBD Add to shelf Print " msgstr "" + " 修改書目 修改圖書資料 移除 一般 " + " ISBD 新增至虛擬書架 列印 " #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:4 *************** *** 1439,1449 **** #, c-format msgid " Normal MARC Add to shelf Print " ! msgstr "" #. %1$s: TMPL_VAR name=count #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl:11 ! #, fuzzy, c-format msgid " Print %s biblios" ! msgstr "查看帳戶 繳交罰款" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl:29 --- 1441,1451 ---- #, c-format msgid " Normal MARC Add to shelf Print " ! msgstr " 一般 MARC 新增至虛擬書架 列印 " #. %1$s: TMPL_VAR name=count #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl:11 ! #, c-format msgid " Print %s biblios" ! msgstr " 列印 %s 個書目" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl:29 *************** *** 1460,1466 **** #. %2$s: TMPL_VAR name=shelfbookcount #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:73 ! #, fuzzy, c-format msgid "%s (%s item(s))" ! msgstr "%s %s (%s)" # FIXME Looks like a SCANNER BUG --- 1462,1468 ---- #. %2$s: TMPL_VAR name=shelfbookcount #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:73 ! #, c-format msgid "%s (%s item(s))" ! msgstr "%s (%s 個書目)" # FIXME Looks like a SCANNER BUG *************** *** 1482,1486 **** #: ../../koha-tmpl/intranet-tmpl/default/en/includes/parameters-top.inc:36 #: ../../koha-tmpl/intranet-tmpl/default/en/includes/reports-top.inc:35 ! #, fuzzy, c-format msgid "" "Acquisitions Catalogue Circulation Members " --- 1484,1488 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/includes/parameters-top.inc:36 #: ../../koha-tmpl/intranet-tmpl/default/en/includes/reports-top.inc:35 ! #, c-format msgid "" "Acquisitions Catalogue Circulation Members " *************** *** 1488,1493 **** "Help" msgstr "" ! "主頁 目錄 讀者 採購 流通 報表 設定 關於" # XXX 暫譯,譯文有待改進 --- 1490,1496 ---- "Help" msgstr "" ! "採購 目錄 流通 讀者 " ! "權威 報表 設定 關於 " ! "說明" # XXX 暫譯,譯文有待改進 *************** *** 1497,1500 **** --- 1500,1504 ---- msgstr "人手建立發票  人手記入讀者貸方" + # FIXME spelling mistake in original #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:32 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:41 *************** *** 1511,1515 **** #, c-format msgid "Funds Auth value Currencies Printers" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:219 --- 1515,1519 ---- #, c-format msgid "Funds Auth value Currencies Printers" ! msgstr "書籍採購資金 容許值 貨幣 印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:219 *************** *** 1519,1525 **** "Printers" msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:206 ! #, fuzzy, c-format msgid "" "Home Catalogue Members Acquisitions " --- 1523,1531 ---- "Printers" msgstr "" + "書籍採購資金 容許值 同義字典 貨幣 " + "印表機" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:206 ! #, c-format msgid "" "Home Catalogue Members Acquisitions " *************** *** 1527,1537 **** "About Help" msgstr "" ! "主頁 目錄 讀者 採購 流通 報表 設定 關於" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/circulation-top.inc:62 ! #, fuzzy, c-format msgid "Issues Returns Branch transfers" ! msgstr "借出 移交" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/about-top.inc:49 --- 1533,1544 ---- "About Help" msgstr "" ! "主頁 目錄 讀者 採購 " ! "流通 權威 報表 設定 " ! "有關 說明" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/circulation-top.inc:62 ! #, c-format msgid "Issues Returns Branch transfers" ! msgstr "借出 還書 移交" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/about-top.inc:49 *************** *** 1556,1577 **** #, c-format msgid "MARC ISBD Add to shelf Print" ! msgstr "" #. %1$s: TMPL_VAR name=surname #. %2$s: TMPL_VAR name=firstname #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:139 ! #, fuzzy, c-format msgid "Modify %s%s" ! msgstr "%s %s (%s)" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/subject.tmpl:21 ! #, fuzzy, c-format msgid "Previous Records Next Records" ! msgstr "下個讀者 還書" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:137 ! #, fuzzy, c-format msgid "Previous Next" ! msgstr "下個讀者 還書" #: ../../koha-tmpl/intranet-tmpl/default/en/members/pay.tmpl:41 --- 1563,1584 ---- #, c-format msgid "MARC ISBD Add to shelf Print" ! msgstr "MARC ISBD 新增至虛擬書架 列印" #. %1$s: TMPL_VAR name=surname #. %2$s: TMPL_VAR name=firstname #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:139 ! #, c-format msgid "Modify %s%s" ! msgstr "修改 %s%s" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/subject.tmpl:21 ! #, c-format msgid "Previous Records Next Records" ! msgstr "上一筆 下一筆" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:137 ! #, c-format msgid "Previous Next" ! msgstr "上一筆 下一筆" #: ../../koha-tmpl/intranet-tmpl/default/en/members/pay.tmpl:41 *************** *** 1589,1593 **** #, c-format msgid "Search Add member Add organisation" ! msgstr "" # NOTE 譯文更動 by Arthur --- 1596,1600 ---- #, c-format msgid "Search Add member Add organisation" ! msgstr "搜尋 新增讀者 新增機構對帳表:每日報告(昨天)" ! # NOTE 譯文更動 by Arthur #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:70 ! #, fuzzy, c-format msgid "View Basket

    " ! msgstr "查看購物籃

    %s - 訂單詳情

    " #: ../../koha-tmpl/intranet-tmpl/default/en/includes/cat-top.inc:51 --- 1618,1626 ---- msgstr "對帳表:每日報告(昨天)" ! # FIXME please fix the scanner :-( #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:70 ! #, c-format msgid "View Basket

    " ! msgstr "查看購物籃

    " #: ../../koha-tmpl/intranet-tmpl/default/en/includes/cat-top.inc:51 *************** *** 1622,1641 **** msgid "" "search Add biblio Serial Virtual shelves" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/error-top.inc:56 ! #, fuzzy, c-format msgid "" "search Virtual shelves Add biblio Cat " "maintenance" msgstr "" ! "快速查詢 機讀格式查詢 虛擬書架 新增書目 " ! "目錄維護" #. %1$s: TMPL_VAR name=dateaccessioned #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:61 ! #, fuzzy, c-format msgid " Accession Date: %s" ! msgstr "登錄日期:%s" # NOTE 譯文更動 by Arthur --- 1629,1647 ---- msgid "" "search Add biblio Serial Virtual shelves" ! msgstr "查詢 新增書目 期刊 虛擬書架" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/error-top.inc:56 ! #, c-format msgid "" "search Virtual shelves Add biblio Cat " "maintenance" msgstr "" ! "查詢 虛擬書架 新增書目 目錄維護" #. %1$s: TMPL_VAR name=dateaccessioned #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:61 ! #, c-format msgid " Accession Date: %s" ! msgstr "登錄日期:%s" # NOTE 譯文更動 by Arthur *************** *** 1693,1699 **** #. %2$s: TMPL_VAR name=genprname #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:11 ! #, fuzzy, c-format msgid "Branch: %s   Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" #. For the first occurrence, --- 1699,1705 ---- #. %2$s: TMPL_VAR name=genprname #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:11 ! #, c-format msgid "Branch: %s   Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" #. For the first occurrence, *************** *** 1702,1715 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:13 #: ../../koha-tmpl/intranet-tmpl/default/en/circ/returns.tmpl:6 ! #, fuzzy, c-format msgid "Branch: %s, Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" # FIXME BUG in English template #. %1$s: TMPL_VAR name=wthdrawn #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:64 ! #, fuzzy, c-format msgid "Cancelled: %s" ! msgstr "已註銷:%s" #. For the first occurrence, --- 1708,1721 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:13 #: ../../koha-tmpl/intranet-tmpl/default/en/circ/returns.tmpl:6 ! #, c-format msgid "Branch: %s, Printer: %s Change Settings" ! msgstr "館別:%s 印表機:%s 修改設定" # FIXME BUG in English template #. %1$s: TMPL_VAR name=wthdrawn #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:64 ! #, c-format msgid "Cancelled: %s" ! msgstr "已註銷:%s" #. For the first occurrence, *************** *** 1759,1765 **** #. %1$s: TMPL_VAR name=date_due #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:53 ! #, fuzzy, c-format msgid "Date Due: %s" ! msgstr "日期:%s" # XXX inconsistency? --- 1765,1771 ---- #. %1$s: TMPL_VAR name=date_due #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:53 ! #, c-format msgid "Date Due: %s" ! msgstr "應歸還日期:%s" # XXX inconsistency? *************** *** 1794,1797 **** --- 1800,1804 ---- "improved ldap support)" msgstr "" + "EMN (Ecole des Mines de Nantes)(新書建議、統計模組及改良後的 LDAP 支援)" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:19 *************** *** 1803,1811 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:114 msgid "Enter Item Barcode: Item Barcode:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:51 msgid "Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)" ! msgstr "" #. %1$s: TMPL_VAR name=biblioitemnumber --- 1810,1818 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:114 msgid "Enter Item Barcode: Item Barcode:" ! msgstr "請輸入圖書資料之條碼:圖書資料之條碼:" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:51 msgid "Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)" ! msgstr "Esiee 學院 (Jérome Vizcaino、Michel Lerenard、Pierre Cauchois)" #. %1$s: TMPL_VAR name=biblioitemnumber From joshferraro at users.sourceforge.net Tue Jan 25 17:53:31 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 08:53:31 -0800 Subject: [Koha-cvs] CVS: koha/C4 Amazon.pm,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2165 Added Files: Amazon.pm Log Message: The Amazon module allows libraries to deliver amazon content to the opac --- NEW FILE --- package C4::Amazon; # Copyright 2004-2005 Joshua Ferraro (jmf at kados dot org) # # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA # # This module dynamically pulls amazon content into Koha. It does not # store the data in Koha's database. You'll need to get a developer's key # as well as an associate's tag to use it. # FIXME: need to write up more docs. # use strict; require Exporter; use vars qw($VERSION @ISA @EXPORT); $VERSION = 0.01; @ISA = qw(Exporter); @EXPORT = qw( &get_amazon_details ); sub get_amazon_details { my ( $isbn ) = @_; # insert your dev key here my $dev_key=''; # insert your associates tag here my $af_tag=''; my $asin=$isbn; # old way from command line: shift @ARGV or die "Usage:perl amazon_http.ol \n"; #my $url = "http://xml.amazon.com/onca/xml3?t=" . $af_tag . # "&dev-t=" . $dev_key . # "&type=heavy&f=xml&" . # "AsinSearch=" . $asin; my $url = "http://xml.amazon.com/onca/xml3?t=$dev_key&dev-t=$af_tag&type=heavy&f=xml&AsinSearch=" . $asin; #Here's an example asin for the book "Cryptonomicon" #0596005423"; use XML::Simple; use LWP::Simple; my $content = get($url); die "could not regrieve $url" unless $content; my $xmlsimple = XML::Simple->new(); my $response = $xmlsimple->XMLin($content, forcearray => [ qw(Details Product AvgCustomerRating CustomerReview) ], ); return $response; #foreach my $result (@{$response->{Details}}){ # my $product_description = $result->{ProductDescription}; # my $image = $result->{ImageUrlMedium}; # my $price = $result->{ListPrice}; # my $reviews = $result->{ # return $result; #} } From joshferraro at users.sourceforge.net Tue Jan 25 17:58:20 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 08:58:20 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-detail.pl,1.14,1.15 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3544 Modified Files: opac-detail.pl Log Message: Adds amazon support to opac-detail.pl Index: opac-detail.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-detail.pl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-detail.pl 18 Aug 2004 16:44:37 -0000 1.14 --- opac-detail.pl 25 Jan 2005 16:58:18 -0000 1.15 *************** *** 10,14 **** use C4::Biblio; use C4::SearchMarc; ! my $query=new CGI; my ($template, $borrowernumber, $cookie) --- 10,14 ---- use C4::Biblio; use C4::SearchMarc; ! use C4::Amazon; my $query=new CGI; my ($template, $borrowernumber, $cookie) *************** *** 73,76 **** subscriptionid => $subscriptionid, ); ! output_html_with_http_headers $query, $cookie, $template->output; --- 73,103 ---- subscriptionid => $subscriptionid, ); ! ## get Amazon.com stuff ! my $isbn=$dat->{'isbn'}; ! my $amazon_details = &get_amazon_details($isbn); ! foreach my $result (@{$amazon_details->{Details}}){ ! $template->param(item_description => $result->{ProductDescription}); ! $template->param(image => $result->{ImageUrlMedium}); ! $template->param(list_price => $result->{ListPrice}); ! $template->param(amazon_url => $result->{url}); ! } ! ! my @products; ! my @reviews; ! for my $details( @{ $amazon_details->{ Details } } ) { ! next unless $details->{ SimilarProducts }; ! for my $product ( @{ $details->{ SimilarProducts }->{ Product } } ) { ! push @products, +{ Product => $product }; ! } ! next unless $details->{ Reviews }; ! for my $product ( @{ $details->{ Reviews }->{ AvgCustomerRating } } ) { ! $template->param(rating => $product); ! } ! for my $reviews ( @{ $details->{ Reviews }->{ CustomerReview } } ) { ! push @reviews, +{ Summary => $reviews->{ Summary }, Comment => $reviews->{ Comment }, }; ! } ! } ! $template->param( SIMILAR_PRODUCTS => \@products ); ! $template->param( REVIEWS => \@reviews ); ! ## End of Amazon Stuff output_html_with_http_headers $query, $cookie, $template->output; From joshferraro at users.sourceforge.net Tue Jan 25 18:13:27 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 09:13:27 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-detail.pl,1.15,1.16 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8329 Modified Files: opac-detail.pl Log Message: makes opac-detail.pl's amazon stuff just a comment Index: opac-detail.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-detail.pl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-detail.pl 25 Jan 2005 16:58:18 -0000 1.15 --- opac-detail.pl 25 Jan 2005 17:13:24 -0000 1.16 *************** *** 73,77 **** subscriptionid => $subscriptionid, ); ! ## get Amazon.com stuff my $isbn=$dat->{'isbn'}; my $amazon_details = &get_amazon_details($isbn); --- 73,78 ---- subscriptionid => $subscriptionid, ); ! ## Amazon.com stuff ! =head my $isbn=$dat->{'isbn'}; my $amazon_details = &get_amazon_details($isbn); *************** *** 101,103 **** --- 102,105 ---- $template->param( REVIEWS => \@reviews ); ## End of Amazon Stuff + =cut output_html_with_http_headers $query, $cookie, $template->output; From joshferraro at users.sourceforge.net Tue Jan 25 18:23:35 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 09:23:35 -0800 Subject: [Koha-cvs] CVS: koha/C4 Amazon.pm,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11210 Modified Files: Amazon.pm Log Message: Added some minimal docs to Amazon.pm Index: Amazon.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Amazon.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Amazon.pm 25 Jan 2005 16:53:28 -0000 1.1 --- Amazon.pm 25 Jan 2005 17:23:33 -0000 1.2 *************** *** 23,27 **** # FIXME: need to write up more docs. # ! use strict; require Exporter; --- 23,38 ---- # FIXME: need to write up more docs. # ! # To use this module you need to do three things: ! # 1. get a dev key and associate tag from Amazon ! # 2. uncomment the Amazon stuff in opac-detail.pl ! # 3. add the template variables to opac-detail.tmpl ! # here's what's available: ! # ProductDescription ! # ImageUrlMedium ! # ListPrice ! # url ! # loop SimilarProducts (Product) ! # loop Reviews (rating, Summary) ! # use strict; require Exporter; From oleonard at users.sourceforge.net Tue Jan 25 22:29:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 25 Jan 2005 13:29:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-addbookbybiblionumber.tmpl,NONE,1.1.2.1 opac-detailprint.tmpl,NONE,1.1.2.1 opac-serial-issues.tmpl,NONE,1.1.2.1 opac-ISBDdetail.tmpl,1.1,1.1.2.1 opac-detail.tmpl,1.1,1.1.2.1 opac-search.tmpl,1.1,1.1.2.1 opac-searchresults.tmpl,1.1,1.1.2.1 opac-user.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5141/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-ISBDdetail.tmpl opac-detail.tmpl opac-search.tmpl opac-searchresults.tmpl opac-user.tmpl Added Files: Tag: rel_2_2 opac-addbookbybiblionumber.tmpl opac-detailprint.tmpl opac-serial-issues.tmpl Log Message: Many updates, corrections, etc. to bring in line with default (css) template --- NEW FILE ---

    Add book to bookshelf

    Select bookshelf

    or add to a new bookshelf

    ">

    --- NEW FILE ---
    BIBLIO RECORD



    Published by : in , ,
    Collection:
    Subject:
    Year :
    Notes:
    Unititle:
    Dewey: ">
    Classification:
    LCCN:
    URL: ">
    ISBN:
    ,
    --- NEW FILE ---

    Issues for a subscription

    " class="button catalogue">Back to biblio

    Subscription information for

    It began on and is issued every day week 2 weeks 3 weeks month 2 months 3 months quarter 2 quarters year 2 years on Monday Tuesday Wednesday Thursday Friday Saturday Sunday for issues weeks months since

    Issues summary

    Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-ISBDdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-ISBDdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-ISBDdetail.tmpl 25 Jan 2005 21:28:57 -0000 1.1.2.1 *************** *** 3,26 **** ! /includes/marc-editor.css"> ! !
    !

    ISBD :

    --- 3,28 ---- ! !
    !

    ISBD

    !

    ! ! ! ! " /> ! ! ! !
    " />
    ! !
    " />
    !
    " />'); return false;"/>
    ! !
    " />'); return false;" />
    ! !
    '); return false;" value="Add to Book Bag" />
    !
    Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-detail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-detail.tmpl 25 Jan 2005 21:28:58 -0000 1.1.2.1 *************** *** 1,60 **** ! Catalog -- Details for: ! ! ! ! !
    ! !
    ! .jpg" alt="Book Cover Image" /> !
    ! /Display for NPL -->

    !

    By

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> !
    Subtitle:
    Format:
    Copyright:
    ISBN:
    LCCN:
    Publisher:
    Details:
    Notes:
    Subject(s): ! : "> !
    ! ! ! --- 1,90 ---- ! ! /includes/marc-editor.css"> ! !
    ! !

    ! !

    !

    !
    Detailed notes:
      ! -
    Related links:
    ! ! ! ! + + +
    ! (record ) !
    + Subtitle:
    + Author:
    + Additional Author:
    + Published by : + in + , + ,
    + ISBN:
    + Collection:
    + Subject(s): + + ">, +
    + Year :
    + Notes:
    + Unititle:
    + Dewey:
    + URL: ">
    + Item type :
    + Total Number of Items: +
    + + + + + + + ! *************** *** 62,118 **** ! -
    Detailed notes:
      !
    No Detailed Notes
    Related links:
    - - -
    - - " /> -
    -
    - " /> --> ! " /> --> ! ! " />'); return false;"/> --> ! !
    '); return false;" value="Add to Book Bag" />
    !
    ! ! !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! !
    Type/FormatCall NumberLocationDue DateLast Seen
    /images/.gif" align="left" title="" alt="" />
    ! !
    No copies available.
    ! !
    ! ! ! --- 92,143 ---- ! ! No Related Links !

    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Item
    LocationDate DueLast SeenBarcode
    ()
    WebsiteOnlineAvailable 
    ! !

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

    ! !
    ! Index: opac-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-search.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-search.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-search.tmpl 25 Jan 2005 21:28:59 -0000 1.1.2.1 *************** *** 11,15 ****
    !
    " /> --- 11,15 ----
    ! ! ! ! ! ! ! ! ! ! ! ! !
    " /> *************** *** 17,53 **** !
    !
    !
    --- 17,50 ---- !
    !
    !
    ! ! !
    ! !
    *************** *** 55,59 ****
    !

    Results per page :

    ! ! ! ! ! ! ! ! !
    Other options:
    ! ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !

    Results per page : - -

    - - --- 4,12 ---- ! ! " /> ! ! /includes/opac.css" /> ! <!--TMPL_VAR name="LibraryName"--> *************** *** 20,24 **** var MSG_NO_RECORD_ADDED = _("No biblio added"); function Dopop(link) { ! newin=window.open(link,'width=500,height=400,toolbar=false,scrollbars=yes'); } --- 24,28 ---- var MSG_NO_RECORD_ADDED = _("No biblio added"); function Dopop(link) { ! newin=window.open(link,'popup','width=500,height=400,toolbar=false,scrollbars=yes'); } From tipaul at users.sourceforge.net Mon Jan 3 12:08:38 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:08:38 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en/includes opac.css,1.16,1.17 marc-editor.css,1.3,NONE Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23824/koha-tmpl/opac-tmpl/css/en/includes Modified Files: opac.css Removed Files: marc-editor.css Log Message: merging opac.css and marc-editor.css, that is used in MARC view. Index: opac.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac.css,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** opac.css 15 Dec 2004 16:03:55 -0000 1.16 --- opac.css 3 Jan 2005 11:08:36 -0000 1.17 *************** *** 355,357 **** padding-left:8pt; float:left; ! } \ No newline at end of file --- 355,403 ---- padding-left:8pt; float:left; ! } ! ! /* for MARC view */ ! 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; ! } --- marc-editor.css DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 12:09:36 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:09:36 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-shelves.pl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23967/opac Modified Files: opac-shelves.pl Log Message: synch'ing virtual shelves management in opac with the librarian one, that has more features Index: opac-shelves.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-shelves.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** opac-shelves.pl 12 Nov 2004 16:27:33 -0000 1.2 --- opac-shelves.pl 3 Jan 2005 11:09:34 -0000 1.3 *************** *** 34,42 **** my $env; my $query = new CGI; my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "opac-shelves.tmpl", query => $query, type => "opac", ! authnotrequired => 1, }); --- 34,47 ---- my $env; my $query = new CGI; + my $headerbackgroundcolor='#663266'; + my $circbackgroundcolor='#555555'; + my $circbackgroundcolor='#550000'; + my $linecolor1='#bbbbbb'; + my $linecolor2='#dddddd'; my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "opac-shelves.tmpl", query => $query, type => "opac", ! authnotrequired => 0, }); *************** *** 58,80 **** $template->param({ loggedinuser => $loggedinuser, ! LibraryName => C4::Context->preference("LibraryName"), ! }); SWITCH: { ! if ($query->param('viewshelf')) { viewshelf($query->param('viewshelf')); last SWITCH;} ! if ($query->param('shelves')) { shelves(); last SWITCH;} } ($shelflist) = GetShelfList($loggedinuser,2); # rebuild shelflist in case a shelf has been added ! my $color=1; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! $line{'color'}= 1 if ($color eq 1); ! $color = -$color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'}; $line{'shelfbookcount'}=$shelflist->{$element}->{'count'}; $line{'canmanage'} = ShelfPossibleAction($loggedinuser,$element,'manage'); ; push (@shelvesloop, \%line); --- 63,108 ---- $template->param({ loggedinuser => $loggedinuser, ! headerbackgroundcolor => $headerbackgroundcolor, ! circbackgroundcolor => $circbackgroundcolor }); SWITCH: { ! if ($query->param('op') eq 'modifsave') { ! ModifShelf($query->param('shelfnumber'),$query->param('shelfname'),$loggedinuser,$query->param('category')); ! last SWITCH; ! } ! if ($query->param('op') eq 'modif') { ! my ($shelfnumber,$shelfname,$owner,$category) = GetShelf($query->param('shelf')); ! $template->param(edit => 1, ! shelfnumber => $shelfnumber, ! shelfname => $shelfname, ! "category$category" => 1); ! # editshelf($query->param('shelf')); ! last SWITCH; ! } ! if ($query->param('viewshelf')) { ! viewshelf($query->param('viewshelf')); ! last SWITCH; ! } ! if ($query->param('shelves')) { ! shelves(); ! last SWITCH; ! } } ($shelflist) = GetShelfList($loggedinuser,2); # rebuild shelflist in case a shelf has been added ! my $color=''; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); ! $line{'color'}= $color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'}; + $line{"category".$shelflist->{$element}->{'category'}} = 1; + $line{'mine'} = 1 if $shelflist->{$element}->{'owner'} eq $loggedinuser; $line{'shelfbookcount'}=$shelflist->{$element}->{'count'}; $line{'canmanage'} = ShelfPossibleAction($loggedinuser,$element,'manage'); + $line{'firstname'}=$shelflist->{$element}->{'firstname'} unless $shelflist->{$element}->{'owner'} eq $loggedinuser; + $line{'surname'}=$shelflist->{$element}->{'surname'} unless $shelflist->{$element}->{'owner'} eq $loggedinuser; ; push (@shelvesloop, \%line); *************** *** 84,87 **** --- 112,123 ---- output_html_with_http_headers $query, $cookie, $template->output; + # sub editshelf { + # my ($shelfnumber) = @_; + # my ($shelfnumber,$shelfname,$owner,$category) = GetShelf($shelfnumber); + # $template->param(edit => 1, + # shelfnumber => $shelfnumber, + # shelfname => $shelfname, + # "category$category" => 1); + # } sub shelves { if (my $newshelf=$query->param('addshelf')) { *************** *** 107,116 **** $template->param(paramsloop => \@paramsloop); my ($shelflist) = GetShelfList($loggedinuser,2); ! my $color=1; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! $line{'color'}=1 if ($color eq 1); ! $color = -$color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'} ; --- 143,152 ---- $template->param(paramsloop => \@paramsloop); my ($shelflist) = GetShelfList($loggedinuser,2); ! my $color=''; my @shelvesloop; foreach my $element (sort keys %$shelflist) { my %line; ! ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); ! $line{'color'}=$color; $line{'shelf'}=$element; $line{'shelfname'}=$shelflist->{$element}->{'shelfname'} ; *************** *** 129,143 **** my ($itemlist) = GetShelfContents($env, $shelfnumber); my $item=''; ! my $color=1; my @itemsloop; foreach $item (sort {$a->{'barcode'} cmp $b->{'barcode'}} @$itemlist) { my %line; ! $line{'color'}=1 if ($color eq 1); ! $color = -$color; $line{'itemnumber'}=$item->{'itemnumber'}; $line{'barcode'}=$item->{'barcode'}; $line{'title'}=$item->{'title'}; $line{'author'}=$item->{'author'}; ! $line{'biblionumber'} = $item->{'biblionumber'}; push(@itemsloop, \%line); } --- 165,179 ---- my ($itemlist) = GetShelfContents($env, $shelfnumber); my $item=''; ! my $color=''; my @itemsloop; foreach $item (sort {$a->{'barcode'} cmp $b->{'barcode'}} @$itemlist) { my %line; ! ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); ! $line{'color'}=$color; $line{'itemnumber'}=$item->{'itemnumber'}; $line{'barcode'}=$item->{'barcode'}; $line{'title'}=$item->{'title'}; $line{'author'}=$item->{'author'}; ! $line{biblionumber} = $item->{biblionumber}; push(@itemsloop, \%line); } *************** *** 152,160 **** # # $Log$ ! # Revision 1.2 2004/11/12 16:27:33 tipaul ! # fixes for printing a biblio # ! # Revision 1.1 2004/03/15 15:02:19 tipaul ! # adding virtual shelves to opac # # Revision 1.1.2.1 2004/03/10 15:08:18 tipaul --- 188,209 ---- # # $Log$ ! # Revision 1.3 2005/01/03 11:09:34 tipaul ! # synch'ing virtual shelves management in opac with the librarian one, that has more features ! # ! # Revision 1.5 2004/12/16 11:30:57 tipaul ! # adding bookshelf features : ! # * create bookshelf on the fly ! # * modify a bookshelf name & status ! # ! # Revision 1.4 2004/12/15 17:28:23 tipaul ! # adding bookshelf features : ! # * create bookshelf on the fly ! # * modify a bookshelf (this being not finished, will commit the rest soon) ! # ! # Revision 1.3 2004/12/02 16:38:50 tipaul ! # improvement in book shelves # ! # Revision 1.2 2004/11/19 16:31:30 tipaul ! # bugfix for bookshelves not in official CVS # # Revision 1.1.2.1 2004/03/10 15:08:18 tipaul From tipaul at users.sourceforge.net Mon Jan 3 12:09:37 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:09:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-addbookbybiblionumber.tmpl,NONE,1.1 opac-detail.tmpl,1.14,1.15 opac-ISBDdetail.tmpl,1.3,1.4 opac-main.tmpl,1.15,1.16 opac-MARCdetail.tmpl,1.4,1.5 opac-shelves.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23967/koha-tmpl/opac-tmpl/css/en Modified Files: opac-detail.tmpl opac-ISBDdetail.tmpl opac-main.tmpl opac-MARCdetail.tmpl opac-shelves.tmpl Added Files: opac-addbookbybiblionumber.tmpl Log Message: synch'ing virtual shelves management in opac with the librarian one, that has more features --- NEW FILE ---

    Add book to bookshelf

    Select bookshelf

    or add to a new bookshelf

    ">

    Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-detail.tmpl 22 Nov 2004 16:18:11 -0000 1.14 --- opac-detail.tmpl 3 Jan 2005 11:09:33 -0000 1.15 *************** *** 3,11 ****
    " class="button catalogue"> ISBD ! " class="button"> ! MARC ')" class="button catalogue"> --- 3,17 ----
    + " class="button catalogue"> + Simple + + " class="button"> + Complete + " class="button catalogue"> ISBD ! ')" class="button catalogue"> ! Add to shelf ')" class="button catalogue"> Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** opac-ISBDdetail.tmpl 28 Nov 2004 08:58:04 -0000 1.3 --- opac-ISBDdetail.tmpl 3 Jan 2005 11:09:33 -0000 1.4 *************** *** 3,10 ****
    " class="button catalogue"> ! Normal " class="button"> ! MARC ')" class="button catalogue"> --- 3,16 ---- Index: opac-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-main.tmpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-main.tmpl 8 Dec 2004 10:26:32 -0000 1.15 --- opac-main.tmpl 3 Jan 2005 11:09:33 -0000 1.16 *************** *** 4,14 **** ! /includes/opac.css" /> <!--TMPL_VAR name="LibraryName"--> - --- 4,13 ---- ! ! " /> ! ! /includes/opac.css" /> ! <!--TMPL_VAR name="LibraryName"--> Index: opac-MARCdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-MARCdetail.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** opac-MARCdetail.tmpl 12 Nov 2004 16:28:10 -0000 1.4 --- opac-MARCdetail.tmpl 3 Jan 2005 11:09:33 -0000 1.5 *************** *** 1,20 **** - /includes/marc-editor.css"> --- 1,30 ---- Index: opac-shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-shelves.tmpl 15 Mar 2004 15:01:49 -0000 1.1 --- opac-shelves.tmpl 3 Jan 2005 11:09:33 -0000 1.2 *************** *** 2,160 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Contents of !
    ">">">">
    !
    ! Shelf list ! "> ! ! "> ! -
    - -
    - "> - - "> - - - - - -
    - Add a book by barcode in : - - - - "> - -
    -
    - !

    !

    !

    !

    Bookshelves

    ! ! ! ! - ! !
    !
    !

    ! Shelf list !

    !
    !
    !
    ! ! ! ! ! ! ! ! -
    Select Shelves to Delete !
    "> ! "> ! ( books) !

    !

    -
    -
    - - - - - - - - -
    - Add Shelf -
    -

    Name :

    -

    Owner : ">

    -

    Category : -

    -

  • a private bookshelf is managed by you & can be seen only by you.
  • -
  • A public can be seen by everybody, but managed only by you.
  • -
  • A free can be managed by any user.
  • -

    -
    -

    !
    !
    ! ! ! ! ! ! ! ! ! ! !
    ! Shelf List !
    ! ! ! ! "> ! ( books) ! !
    !

    Add or Remove Book Shelves !

    --- 2,189 ----
    !
    !

    ! !
    !

    Shelf content

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    deletebarcodetitleAuthor
    ">">">">">">
    ! "> ! ! "> ! ! ! ! Shelf list !
    !
    ! !
    !
    !

    Add a book by barcode

    ! "> ! ! "> ! ! ! "> ! !
    !
    +

    Bookshelves

    !

    !

    !

    !

    Select Shelves to Delete

    !
    ! !

    ! ! "> ( item(s)) !

    !

    !
    !
    !
    ! !

    Add Shelf

    !

    !

    ">

    !

    ! !

    !
    • a private bookshelf is managed by you & can be seen only by you.
    • !
    • A public can be seen by everybody, but managed only by you.
    • !
    • A free can be managed by any user.
    • !
    !

    ! ! back to shelf list !

    +
    +
    !
    !

    Shelf list

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Shelf nameCategoryContent sizeModify
    "> ! "> ! ! ! "> ! ! Private ! ! ! Public ! ! ! Free ! ! "> ! item(s) ! "> ! " class="button">Modify ! !
    !
    ! + + +
    +
    + +

    Modify shelf

    + "> +

    ">

    +

    ">

    +

    + +

    +

  • a private bookshelf is managed by you & can be seen only by you.
  • +
  • A public can be seen by everybody, but managed only by you.
  • +
  • A free can be managed by any user.
  • +

    +

    + +

    + +
    +
    +
    From tipaul at users.sourceforge.net Mon Jan 3 12:10:01 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:10:01 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-addbookbybiblionumber.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24046/opac Added Files: opac-addbookbybiblionumber.pl Log Message: --- NEW FILE --- #!/usr/bin/perl #script to provide bookshelf management # WARNING: This file uses 4-character tabs! # # $Header: /cvsroot/koha/koha/opac/opac-addbookbybiblionumber.pl,v 1.1 2005/01/03 11:09:59 tipaul Exp $ # # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA use strict; use C4::Search; use C4::Biblio; use CGI; use C4::Output; use C4::BookShelves; use C4::Circulation::Circ2; use C4::Auth; use C4::Interface::CGI::Output; use HTML::Template; my $env; my $query = new CGI; my $biblionumber = $query->param('biblionumber'); my $shelfnumber = $query->param('shelfnumber'); my $newbookshelf = $query->param('newbookshelf'); my $category = $query->param('category'); my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "opac-addbookbybiblionumber.tmpl", query => $query, type => "opac", authnotrequired => 0, }); my $x; # for trash ($x,$x,$shelfnumber) = AddShelf('',$newbookshelf,$loggedinuser,$category) if $newbookshelf; if ($shelfnumber) { &AddToShelfFromBiblio($env, $biblionumber, $shelfnumber); print "Content-Type: text/html\n\n"; exit; } else { my ( $bibliocount, @biblios ) = getbiblio($biblionumber); my ($shelflist) = GetShelfList($loggedinuser,3); my @shelvesloop; my %shelvesloop; foreach my $element (sort keys %$shelflist) { push (@shelvesloop, $element); $shelvesloop{$element} = $shelflist->{$element}->{'shelfname'}; } my $CGIbookshelves=CGI::scrolling_list( -name => 'shelfnumber', -values => \@shelvesloop, -labels => \%shelvesloop, -size => 1, -multiple => 0 ); $template->param(biblionumber => $biblionumber, title => $biblios[0]->{'title'}, author => $biblios[0]->{'author'}, CGIbookshelves => $CGIbookshelves, ); output_html_with_http_headers $query, $cookie, $template->output; } # $Log: opac-addbookbybiblionumber.pl,v $ # Revision 1.1 2005/01/03 11:09:59 tipaul # *** empty log message *** # # Local Variables: # tab-width: 4 # End: From tipaul at users.sourceforge.net Mon Jan 3 12:11:13 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 03:11:13 -0800 Subject: [Koha-cvs] CVS: koha/misc Install.pm,1.86,1.87 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24344/misc Modified Files: Install.pm Log Message: * rolling back lock_tables_privs = 'Y' during install stage (too many problems) The option is shown in bulkmacimport instead. Index: Install.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/Install.pm,v retrieving revision 1.86 retrieving revision 1.87 diff -C2 -r1.86 -r1.87 *** Install.pm 15 Dec 2004 14:39:21 -0000 1.86 --- Install.pm 3 Jan 2005 11:11:10 -0000 1.87 *************** *** 1772,1776 **** startsysout(); print system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into user (Host,User,Password) values ('$hostname','$user',password('$pass'))\"\;");#" ! system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv, index_priv, alter_priv,lock_tables_priv) values ('%','$database','$user','Y','Y','Y','Y','Y','Y','Y','Y','Y')\""); system("$mysqldir/bin/mysqladmin -u$mysqluser reload"); # Change to admin user login --- 1772,1776 ---- startsysout(); print system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into user (Host,User,Password) values ('$hostname','$user',password('$pass'))\"\;");#" ! system("$mysqldir/bin/mysql -u$mysqluser mysql -e \"insert into db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv, index_priv, alter_priv) values ('%','$database','$user','Y','Y','Y','Y','Y','Y','Y','Y')\""); system("$mysqldir/bin/mysqladmin -u$mysqluser reload"); # Change to admin user login From tipaul at users.sourceforge.net Mon Jan 3 13:55:40 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:55:40 -0800 Subject: [Koha-cvs] CVS: koha/misc koha.mysql,1.9,1.10 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9571/misc Modified Files: koha.mysql Log Message: adding an index Index: koha.mysql =================================================================== RCS file: /cvsroot/koha/koha/misc/koha.mysql,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** koha.mysql 12 Nov 2004 16:39:48 -0000 1.9 --- koha.mysql 3 Jan 2005 12:55:22 -0000 1.10 *************** *** 925,929 **** # Structure de la table `marc_subfield_structure` # - CREATE TABLE marc_subfield_structure ( tagfield char(3) NOT NULL default '', --- 925,928 ---- *************** *** 945,949 **** PRIMARY KEY (frameworkcode,tagfield,tagsubfield), KEY tab (frameworkcode,tab), ! KEY kohafield (frameworkcode,kohafield) ) TYPE=MyISAM; # -------------------------------------------------------- --- 944,949 ---- PRIMARY KEY (frameworkcode,tagfield,tagsubfield), KEY tab (frameworkcode,tab), ! KEY kohafield (frameworkcode,kohafield), ! KEY kohafield_2 (kohafield) ) TYPE=MyISAM; # -------------------------------------------------------- From tipaul at users.sourceforge.net Mon Jan 3 13:56:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:56:32 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.31,1.32 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9753/admin Modified Files: marc_subfields_structure.pl Log Message: * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** marc_subfields_structure.pl 8 Dec 2004 10:41:38 -0000 1.31 --- marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 *************** *** 380,383 **** --- 380,384 ---- $row_data{hidden} = $results->[$i]{'hidden'}; $row_data{isurl} = $results->[$i]{'isurl'}; + $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; $row_data{bgcolor} = $toggle; From tipaul at users.sourceforge.net Mon Jan 3 13:57:24 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:57:24 -0800 Subject: [Koha-cvs] CVS: koha MARCdetail.pl,1.24,1.25 Message-ID: Update of /cvsroot/koha/koha In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9893 Modified Files: MARCdetail.pl Log Message: * partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. Index: MARCdetail.pl =================================================================== RCS file: /cvsroot/koha/koha/MARCdetail.pl,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** MARCdetail.pl 22 Dec 2004 10:14:43 -0000 1.24 --- MARCdetail.pl 3 Jan 2005 12:57:21 -0000 1.25 *************** *** 74,78 **** my $record =MARCgetbiblio($dbh,$bibid); - warn "=>".$record->as_formatted; # open template my ($template, $loggedinuser, $cookie) --- 74,77 ---- *************** *** 96,100 **** my @subfields_data; for (my $x_i=0;$x_i<=$#fields;$x_i++) { ! warn "$tabloop => $x_i"; # if tag <10, there's no subfield, use the "@" trick if ($fields[$x_i]->tag()<10) { --- 95,99 ---- my @subfields_data; for (my $x_i=0;$x_i<=$#fields;$x_i++) { ! # warn "$tabloop => $x_i"; # if tag <10, there's no subfield, use the "@" trick if ($fields[$x_i]->tag()<10) { *************** *** 116,119 **** --- 115,119 ---- my %subfield_data; $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{lib}; + $subfield_data{link}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{link}; if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{isurl}) { $subfield_data{marc_value}="$subf[$i][1]"; From tipaul at users.sourceforge.net Mon Jan 3 13:58:01 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:58:01 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools - New directory Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9933/misc/migration_tools Log Message: Directory /cvsroot/koha/koha/misc/migration_tools added to the repository From tipaul at users.sourceforge.net Mon Jan 3 13:59:51 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 04:59:51 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools buildLANG.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10247/misc/migration_tools Added Files: buildLANG.pl Log Message: Auto-build LANG authorized values --- NEW FILE --- #!/usr/bin/perl # script that rebuild thesaurus from biblio table. # delete FROM `marc_subfield_table` WHERE tag = "606" AND subfieldcode = 9; use strict; # Koha modules used # use MARC::File::USMARC; # use MARC::Record; # use MARC::Batch; use C4::Context; use C4::Biblio; use C4::AuthoritiesMarc; use Time::HiRes qw(gettimeofday); use Getopt::Long; my ( $fields, $number,$language) = ('',0); my ($version, $verbose, $test_parameter, $field,$delete,$subfields); GetOptions( 'h' => \$version, 'd' => \$delete, 't' => \$test_parameter, 's:s' => \$fields, 'v' => \$verbose, 'l:s' => \$language, ); if ($version or !$fields) { print < 'english', 'fre' => 'french' ); %codesiso = ( 'mis' => 'diverses', 'und' => 'inconnue', 'mul' => 'multilingue', 'ger' => 'allemand', 'eng' => 'anglais', 'ara' => 'arabe', 'arm' => 'arm?nien', 'baq' => 'basque', 'ber' => 'berbere', 'bre' => 'breton', 'bul' => 'bulgare', 'cat' => 'catalan', 'chi' => 'chinois', 'cro' => 'croate', 'dan' => 'danois', 'spa' => 'espagnol', 'esp' => 'esp?ranto', 'fin' => 'finnois', 'fra' => 'fran?ais ancien', 'fre' => 'fran?ais', 'wel' => 'gallois', 'grc' => 'grec classique', 'gre' => 'grec moderne', 'heb' => 'h?breu', 'hun' => 'hongrois', 'ita' => 'italien', 'jap' => 'japonais', 'lat' => 'latin', 'dut' => 'n?erlandais', 'nor' => 'norv?gien', 'pol' => 'polonais', 'por' => 'portugais', 'rum' => 'roumain', 'rus' => 'russe', 'ser' => 'serbe', 'swe' => 'suedois', 'cze' => 'tch?que', 'tur' => 'turc', 'ukr' => 'ukraine', 'slo' => 'slov?ne', 'scr' => 'serbo-croate', ) if $language eq 'fr'; my $dbh = C4::Context->dbh; if ($delete) { print "deleting lang list\n"; $dbh->do("delete from authorised_values where category='LANG'"); } if ($test_parameter) { print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; } my $starttime = gettimeofday; my $sth = $dbh->prepare("SELECT DISTINCT subfieldvalue FROM marc_subfield_table WHERE tag + subfieldcode IN $fields order by subfieldvalue"); $sth->execute; my $i=1; print "=========================\n"; my $sth2 = $dbh->prepare("insert into authorised_values (category, authorised_value, lib) values (?,?,?)"); while (my ($langue) = $sth->fetchrow) { $sth2->execute('LANG',$langue,$langue?$codesiso{$langue}:$langue); print "lang : $langue is unknown is iso list\n" unless $codesiso{$langue}; } print "=========================\n"; From tipaul at users.sourceforge.net Mon Jan 3 16:25:52 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 07:25:52 -0800 Subject: [Koha-cvs] CVS: koha/misc bulkmarcimport.pl,1.9,NONE Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7798/misc Removed Files: bulkmarcimport.pl Log Message: moving bulkmarcimport script to migration_tools directory --- bulkmarcimport.pl DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 16:25:52 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 07:25:52 -0800 Subject: [Koha-cvs] CVS: koha/misc/migration_tools bulkmarcimport.pl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/misc/migration_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7798/misc/migration_tools Added Files: bulkmarcimport.pl Log Message: moving bulkmarcimport script to migration_tools directory --- NEW FILE --- #!/usr/bin/perl # small script that import an iso2709 file into koha 2.0 use strict; # Koha modules used use MARC::File::USMARC; use MARC::Record; use MARC::Batch; use C4::Context; use C4::Biblio; use Time::HiRes qw(gettimeofday); use Getopt::Long; my ( $input_marc_file, $number) = ('',0); my ($version, $delete, $test_parameter,$char_encoding, $verbose); GetOptions( 'file:s' => \$input_marc_file, 'n' => \$number, 'h' => \$version, 'd' => \$delete, 't' => \$test_parameter, 'c:s' => \$char_encoding, 'v:s' => \$verbose, ); if ($version || ($input_marc_file eq '')) { print <dbh; if ($delete) { print "deleting biblios\n"; $dbh->do("delete from biblio"); $dbh->do("delete from biblioitems"); $dbh->do("delete from items"); $dbh->do("delete from bibliosubject"); $dbh->do("delete from additionalauthors"); $dbh->do("delete from bibliosubtitle"); $dbh->do("delete from marc_biblio"); $dbh->do("delete from marc_subfield_table"); $dbh->do("delete from marc_word"); $dbh->do("delete from marc_blob_subfield"); } if ($test_parameter) { print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; } $char_encoding = 'MARC21' unless ($char_encoding); print "CHAR : $char_encoding\n" if $verbose; my $starttime = gettimeofday; my $batch = MARC::Batch->new( 'USMARC', $input_marc_file ); $batch->warnings_off(); $batch->strict_off(); my $i=0; #1st of all, find item MARC tag. my ($tagfield,$tagsubfield) = &MARCfind_marc_from_kohafield($dbh,"items.itemnumber",''); # $dbh->do("lock tables biblio write, biblioitems write, items write, marc_biblio write, marc_subfield_table write, marc_blob_subfield write, marc_word write, marc_subfield_structure write, stopwords write"); while ( my $record = $batch->next() ) { $i++; #now, parse the record, extract the item fields, and store them in somewhere else. ## create an empty record object to populate my $newRecord = MARC::Record->new(); # go through each field in the existing record foreach my $oldField ( $record->fields() ) { # just reproduce tags < 010 in our new record if ( $oldField->tag() < 10 ) { $newRecord->append_fields( $oldField ); next(); } # store our new subfield data in this list my @newSubfields = (); # go through each subfield code/data pair foreach my $pair ( $oldField->subfields() ) { $pair->[1] =~ s/\[1] =~ s/\>//g; push( @newSubfields, $pair->[0], char_decode($pair->[1],$char_encoding) ); } # add the new field to our new record my $newField = MARC::Field->new( $oldField->tag(), $oldField->indicator(1), $oldField->indicator(2), @newSubfields ); $newRecord->append_fields( $newField ); } warn "$i ==>".$newRecord->as_formatted() if $verbose eq 2; my @fields = $newRecord->field($tagfield); my @items; my $nbitems=0; foreach my $field (@fields) { my $item = MARC::Record->new(); $item->append_fields($field); push @items,$item; $newRecord->delete_field($field); $nbitems++; } print "$i : $nbitems items found\n" if $verbose; # now, create biblio and items with NEWnewXX call. unless ($test_parameter) { my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,''); warn "ADDED biblio NB $bibid in DB\n" if $verbose; for (my $i=0;$i<=$#items;$i++) { NEWnewitem($dbh,$items[$i],$bibid); } } } # $dbh->do("unlock tables"); my $timeneeded = gettimeofday - $starttime; print "$i MARC record done in $timeneeded seconds"; From tipaul at users.sourceforge.net Mon Jan 3 17:12:31 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 08:12:31 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator default_intranet_pl_PL.po,1.13,NONE default_opac_pl_PL.po,1.9,NONE Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18406 Removed Files: default_intranet_pl_PL.po default_opac_pl_PL.po Log Message: removing .po in the wrong place (is in po/ now) --- default_intranet_pl_PL.po DELETED --- --- default_opac_pl_PL.po DELETED --- From tipaul at users.sourceforge.net Mon Jan 3 17:30:16 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Mon, 03 Jan 2005 08:30:16 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator rebuild_lang.sh,NONE,1.1 translator_doc.txt,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23202 Modified Files: translator_doc.txt Added Files: rebuild_lang.sh Log Message: updating doc & adding a script to rebuild officially supported languages --- NEW FILE --- #!/bin/sh ./tmpl_process3.pl install -r -s po/css_opac_fr_FR.po -i ../../koha-tmpl/opac-tmpl/css/en -o ../../koha-tmpl/opac-tmpl/css/fr ./tmpl_process3.pl install -r -s po/default_intranet_fr_FR.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/fr ./tmpl_process3.pl install -r -s po/css_opac_zh_TW.po -i ../../koha-tmpl/opac-tmpl/css/zh_TW -o ../../koha-tmpl/opac-tmpl/css/zh_TW ./tmpl_process3.pl install -r -s po/default_intranet_zh_TW.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/zh_TW ./tmpl_process3.pl install -r -s po/css_opac_es_AR.po -i ../../koha-tmpl/opac-tmpl/css/zh_TW -o ../../koha-tmpl/opac-tmpl/css/es_AR ./tmpl_process3.pl install -r -s po/default_intranet_es_AR.po -i ../../koha-tmpl/intranet-tmpl/default/en -o ../../koha-tmpl/intranet-tmpl/default/es_AR Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** translator_doc.txt 30 Dec 2004 06:58:19 -0000 1.5 --- translator_doc.txt 3 Jan 2005 16:30:13 -0000 1.6 *************** *** 22,27 **** directory, i.e., misc/translator): ! ./tmpl_process.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the --- 22,26 ---- directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the *************** *** 34,40 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o / ! home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s ! css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default --- 33,37 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default *************** *** 47,52 **** 1. Update your translation file: ! ./tmpl_process.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as --- 44,48 ---- 1. Update your translation file: ! ./tmpl_process3.pl update -i ../../opac-tmpl/default/en -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as *************** *** 54,62 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed WEAKNESSES --- 50,62 ---- 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed + + REBUILD ALL + =========== + The rebuild_lang.sh script can be used to rebuild all languages officially supported in 2.2 release, when needed. + Useful for developpers, probably useless for all end-users. + WEAKNESSES *************** *** 71,74 **** * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) ! --- 71,73 ---- * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) \ No newline at end of file From oleonard at users.sourceforge.net Tue Jan 4 21:21:00 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 04 Jan 2005 12:21:00 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/barcodes barcodes.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9686/koha-tmpl/intranet-tmpl/default/en/barcodes Modified Files: barcodes.tmpl Log Message: Corrections to English and minor corrections to HTML Index: barcodes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** barcodes.tmpl 19 Oct 2004 11:50:18 -0000 1.3 --- barcodes.tmpl 4 Jan 2005 20:20:52 -0000 1.4 *************** *** 1,186 **** ! ! ! ! ! ! !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Add a new Country Code !
    ! Country Name  ! ! Country Code  !
    ! ! ! !
    !
    !
    ! ! ! ! ! !
    !

    Barcodes Generator

    ! ! ! ! !
    Generate barcodes from inventary codes
    !
      !
    • Select a range of inventary codes. You can select wether a continuous range or individual inventary codes
    • !
    • Select the standard type to generate barcodes.
    • !
    • Define the page size for output the PDF.
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page. !
    • !
    !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    !

    Can't find inventary codes on that range. Please try again.

    !
    ! ! ! ! ! ! ! !
    Type of Interval
    !
    !
    ! ! ! ! ! ! ! ! ! !
    From:
    To:
    !
    ! !
    ! ! ! ! ! ! ! !
    Country Code
    !
    ! /images/more.gif" hspace="0" vspace="0" border="0" ! style="vertical-align:bottom;cursor:pointer" ! onclick="javascript: addCountryCode()"> ! !
    !
    !
    ! ! ! ! ! ! ! !
    Page Size
    ! " ! size="10"> ! [Go to Printer Configuration] !
    !
    Text under label ! "> If this field is empty, author and title will be put instead !
    ! ! ! ! ! ! ! ! ! ! ! !
    ">Label number to start printing
    ! " ! name="label" > ! Label !
    !
    ! ! ! !
    !
    !
    ! --- 1,180 ---- ! ! ! ! ! ! !
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! !
    ! Add a new Country Code !
    ! Country Name   ! ! Country Code   !
    ! ! ! !
    !
    !
    ! ! ! ! ! !
    !

    Barcodes Generator

    ! ! ! ! !
    Generate barcodes from inventory codes
    !
      !
    • Select a range of inventary codes. You can choose a continuous range or individual inventory codes
    • !
    • Select the standard type to generate barcodes.
    • !
    • Define the page size for output the PDF.
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page. !
    • !
    !
    !
    " name="form1" onsubmit="return checkFields(this);" target="_blank"> ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    !

    Can't find inventory codes in that range. Please try again.

    !
    ! ! ! ! ! ! ! !
    Type of Interval
    !
    !
    ! ! ! ! ! ! ! ! ! !
    From:
    To:
    !
    ! !
    ! ! ! ! ! ! ! !
    Country Code
    !
    ! /images/more.gif" hspace="0" vspace="0" border="0" style="vertical-align:bottom;cursor:pointer" onclick="addCountryCode();"> ! !
    !
    !
    ! ! ! ! ! ! ! !
    Page Size
    ! " ! size="10"> ! [Go to Printer Configuration] !
    !
    Text under label ! "> If this field is empty, author and title will be used instead !
    ! ! ! ! ! ! ! ! ! ! ! !
    ">Label number to start printing
    ! " name="label" > Label
    !
    ! ! ! !
    !
    !
    ! From oleonard at users.sourceforge.net Tue Jan 4 23:32:29 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 04 Jan 2005 14:32:29 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/barcodes barcodes.tmpl,NONE,1.1 printerConfig.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4015/koha-tmpl/intranet-tmpl/npl/en/barcodes Added Files: barcodes.tmpl printerConfig.tmpl Log Message: Adding NPL versions of these templates --- NEW FILE --- Koha -- Catalog: Advanced Search

    Barcodes Generator

    • Select a range of inventary codes. You can choose a continuous range or individual inventory codes
    • Select the standard type to generate barcodes.
    • Define the page size for output the PDF.
    • Depending on page size, Koha will show you how the page is arranged for each barcode. You can define wich point to start printing the page.
    " name="form1" onsubmit="return checkFields(this);" target="_blank">
    Generate barcodes from inventory codes

    Can't find inventory codes in that range. Please try again.

    From:
    To:
    +
    Add a new Country Code
    " size="10"> [Go to Printer Configuration]
    ">

    If this field is empty, author and title will be used instead

    ">Label number to start printing
    " name="label" > Label

    --- NEW FILE --- Koha -- Barcode Generator Printer Configuration

    Printer Configuration

    Set the printer configuration corresponding to your environment

    • Set width and height of the label that you are going to work with.
    • Set your system's default DPI.
    • Set the page size.
    • Select how many columns and rows are in your page size.
    • Set the left margin bottom margin the page that you are going to use. This parameters will help to center the barcodes into the labels.
    " name="form1">
    Label width (in mm) Label height (in mm) System DPI Page Size Columns Rows Margin Bottom (mm) Margin Left (Expressed in mm)
    "> "> "> "> "> "> ">

    From tipaul at users.sourceforge.net Wed Jan 5 15:31:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:31:20 -0800 Subject: [Koha-cvs] CVS: koha/misc buildrelease,1.22,1.23 Install.pm,1.87,1.88 koha.upgrade,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27147/misc Modified Files: buildrelease Install.pm koha.upgrade Log Message: minor update just before releasing official 2.2.0 Index: buildrelease =================================================================== RCS file: /cvsroot/koha/koha/misc/buildrelease,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** buildrelease 16 Nov 2004 13:04:18 -0000 1.22 --- buildrelease 5 Jan 2005 14:31:06 -0000 1.23 *************** *** 219,223 **** |; chdir($kohadir) || die "$kohadir: $!\n"; ! system("cvs update -P"); if ($cvstag) { print qq| --- 219,223 ---- |; chdir($kohadir) || die "$kohadir: $!\n"; ! # system("cvs update -P"); if ($cvstag) { print qq| Index: Install.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/Install.pm,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -r1.87 -r1.88 *** Install.pm 3 Jan 2005 11:11:10 -0000 1.87 --- Install.pm 5 Jan 2005 14:31:17 -0000 1.88 *************** *** 149,153 **** $messages->{'WelcomeToUpgrader'}->{en} = heading('Welcome to the Koha Upgrader') . qq| ! You are attempting to upgrade from Koha %s to %s. We recommend that you do a complete backup of all your files before upgrading. --- 149,153 ---- $messages->{'WelcomeToUpgrader'}->{en} = heading('Welcome to the Koha Upgrader') . qq| ! You are attempting to upgrade to Koha %s. We recommend that you do a complete backup of all your files before upgrading. *************** *** 1819,1823 **** such as DANMARC. We would like to hear from you if you do. ! UPGRADE : If you UPGRADE your version from a previous 2.x.x, the right choice here is N (None) to preserve your local MARC setup. Choose MARC definition [1]: |; --- 1819,1824 ---- such as DANMARC. We would like to hear from you if you do. ! *** UPGRADE *** ! If you UPGRADE your version from a previous 2.x.x, the right choice here is N (None) to preserve your local MARC setup. Choose MARC definition [1]: |; *************** *** 1827,1833 **** en : default language, all pages available ! fr : complete translation (except pictures) ! es : partial librarian site translation (including pictures) ! pl : complete OPAC and partial librarian translation zh_TW : partial translation --- 1828,1833 ---- en : default language, all pages available ! fr : complete translation ! es : partial librarian site translation zh_TW : partial translation Index: koha.upgrade =================================================================== RCS file: /cvsroot/koha/koha/misc/koha.upgrade,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** koha.upgrade 23 Nov 2004 16:02:33 -0000 1.16 --- koha.upgrade 5 Jan 2005 14:31:17 -0000 1.17 *************** *** 15,34 **** loadconfigfile(); ! my $kohaversion=`cat koha.version`; ! chomp $kohaversion; ! Install::setkohaversion $kohaversion; ! if ($kohaversion =~ /RC/) { releasecandidatewarning(); } ! my $answer = showmessage(getmessage('WelcomeToUpgrader',[$kohaversion,$::newversion]),'yn'); ! ! unless ($answer =~/y/i) { showmessage(getmessage('AbortingInstall'),'none'); exit; - } else { - print "Great! continuing upgrade... \n"; }; --- 15,33 ---- loadconfigfile(); ! $::newversion=`cat koha.version`; ! chomp $::newversion; ! Install::setkohaversion $::newversion; ! if ($::newversion =~ /RC/) { releasecandidatewarning(); } ! my $answer = showmessage(getmessage('WelcomeToUpgrader',[$::newversion]),'yn','n'); ! if ($answer eq "Y" || $answer eq "y") { ! print "Great! continuing upgrade... \n"; ! } else { showmessage(getmessage('AbortingInstall'),'none'); exit; }; From tipaul at users.sourceforge.net Wed Jan 5 15:32:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:32:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/authorities searchresultlist.tmpl,1.7,1.8 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27401/koha-tmpl/intranet-tmpl/default/en/authorities Modified Files: searchresultlist.tmpl Log Message: Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist.tmpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** searchresultlist.tmpl 2 Dec 2004 16:41:07 -0000 1.7 --- searchresultlist.tmpl 5 Jan 2005 14:32:30 -0000 1.8 *************** *** 43,47 **** ! '&operator==&value=&and_or=and&excluding=" class="button authority"> biblio(s) "> --- 43,47 ---- ! &operator==&value=&and_or=and&excluding=" class="button authority"> biblio(s) "> From tipaul at users.sourceforge.net Wed Jan 5 15:32:59 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:32:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en about.tmpl,1.11,1.12 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27471/koha-tmpl/intranet-tmpl/default/en Modified Files: about.tmpl Log Message: updated credits for 2.2 release Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/about.tmpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** about.tmpl 19 Jul 2004 21:41:29 -0000 1.11 --- about.tmpl 5 Jan 2005 14:32:56 -0000 1.12 *************** *** 3,98 ****
    -

    Data about the current version of Koha for bug reports (or general interest).

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Koha version:
    OS version (from 'uname -a'):
    Perl version:
    MySQL version:
    Apache version:
    Credits !

    Core team

    ! ! ! ! ! !
    ! Pat Eyler, Kaitiaki
    ! Paul Poulain, 2.2 release manager (MARC developper)
    ! Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    ! Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    ! Nicholas Rosasco, (Documentation Compiler)
    ! Mike Hansen
    ! MJ Ray and Turo Technology LLP, England (quality control, installer & updater, 2.0 release maintainer)
    ! Nicolas Morin, French Translation
    !
    ! Horowhenua Library Trust : Rosalie Blake, Head of Libraries
    ! Jo Ransom
    ! Katipo Communications : Rachel Hamilton-Williams, General Manager (Webmistress), ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    !
    !

    Thanks to

    ! ! ! ! ! ! !
    ! Adam Thick
    ! Andrew Hooper
    ! Al Banks
    ! Ambrose Li
    ! Andrew Arensburger
    ! Benedykt P. Barszcz (Polish for 2.0)
    ! Brig C. McCoy
    ! Daniel Holth
    ! David Strainchamps
    ! Dorian Meid
    !
    ! Ed Summers
    ! Florian Bischof
    ! Francisco M. Marzoa Alonso
    ! Glen Stewart
    ! Henri-Damien Laurent
    ! J?rome Vizcaino (Esiee School)
    ! Kip DeGraaf
    ! Marco Gaiarin
    ! Md. Aftabuddin
    ! Michaes Herman
    !
    ! Michel Lerenard (Esiee School)
    ! Mike Johnson
    ! Mike Mylonas
    ! Pierre Cauchois (Esiee School)
    ! Pawel Skuza (Polish for 1.2)
    ! Regula Sebastiao
    ! Roger Buck
    ! Ron Wickersham
    ! Sebastiaan Durand
    !
    !
    --- 3,72 ----

    Data about the current version of Koha for bug reports (or general interest).

    !
    !

    Server information

    !

    !

    !

    !

    !

    !
    !
    !

    Special thanks to the following funders

    !

    Horowhenua Library Trust and Rosalie Blake, Head of Libraries, (Koha 1.0)

    !

    The Nelsonville Public Library (MARC support)

    !

    EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)

    !

    ENSMP (Ecole Nationale Sup?rieure des Mines de Paris) (biblio frameworks, MARC authorities, OPAC basket, Serials support)

    !
    !
    !

    Core team for 2.2

    !

    Rachel Hamilton-Williams, Kaitiaki

    !

    Paul Poulain, 2.2 release manager (MARC developper)

    !

    Stephen Hedges & the Nelsonville Public Library (MARC features funders)

    !

    Nicholas Rosasco, (Documentation Compiler)

    !

    Mike Hansen

    !

    MJ Ray and Turo Technology LLP, (quality control, installer & updater, 2.0 release maintainer)

    !

    Katipo Communications

    !
      !

      Rachel Hamilton-Williams, General Manager (Webmistress)

      !

      Chris Cormack, 1.2 release manager

      !

      and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson,

      !

      Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine

      !
    !
    !
    !

    Thanks to

    !

    Adam Thick

    !

    Andrew Hooper

    !

    Al Banks

    !

    Ambrose Li (chinese & translation tool)

    !

    Andrew Arensburger (the small & great C4::Context module)

    !

    Benedykt P. Barszcz (Polish for 2.0)

    !

    Brig C. McCoy

    !

    Daniel Holth

    !

    David Strainchamps

    !

    Dorian Meid (German translation)

    !

    doXulting (Matthieu Branlat) OPAC basket

    !

    Ed Summers (Some code and Perl packages like MARC::Record)

    !

    Esiee School (J?rome Vizcaino, Michel Lerenard, Pierre Cauchois)

    !

    Florian Bischof

    !

    Francisco M. Marzoa Alonso

    !

    Glen Stewart

    !

    Henri-Damien Laurent

    !

    Jo Ransom

    !

    Kip DeGraaf

    !

    Marco Gaiarin

    !

    Md. Aftabuddin

    !

    Michaes Herman

    !

    Mike Johnson

    !

    Mike Mylonas

    !

    Nicolas Morin (French Translation in 2.0)

    !

    Pawel Skuza (Polish for 1.2)

    !

    Regula Sebastiao

    !

    Roger Buck

    !

    Ron Wickersham

    !

    Sebastiaan Durand

    !

    Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)

    !
    From tipaul at users.sourceforge.net Wed Jan 5 15:33:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:33:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr about.tmpl,1.3,1.4 auth.tmpl,1.3,1.4 bookcount.tmpl,1.3,1.4 boraccount.tmpl,1.6,1.7 charges.tmpl,1.3,1.4 intranet-main.tmpl,1.8,1.9 modbibitem.tmpl,1.3,1.4 moditem.tmpl,1.3,1.4 overdue.tmpl,1.3,1.4 reports.tmpl,1.3,1.4 request.tmpl,1.7,1.8 shelves.tmpl,1.3,1.4 thesaurus_popup.tmpl,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27604/koha-tmpl/intranet-tmpl/default/fr Modified Files: about.tmpl auth.tmpl bookcount.tmpl boraccount.tmpl charges.tmpl intranet-main.tmpl modbibitem.tmpl moditem.tmpl overdue.tmpl reports.tmpl request.tmpl shelves.tmpl thesaurus_popup.tmpl Log Message: french version for 2.2.0 Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/about.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** about.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- about.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 2,96 ****
    !

    Data about the current version of Koha for bug reports (or general interest).

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Version Koha
    Version de l'OS (depuis 'uname -a) :
    version PERL :
    Version MySQL
    Version Apache :
    Cr?dits !

    Contributeurs principaux

    ! ! ! ! ! !
    ! Pat Eyler,Kaitiaki
    ! Paul Poulain, responsable de la version 2.2 (d?veloppeur MARC)
    ! Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    ! Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    ! Nicholas Rosasco,(r?dacteur de la documentation)
    ! Mike Hansen
    ! MJ Ray and Turo Technology LLP, England (quality control, installer & updater, 2.0 release maintainer)
    ! Nicolas Morin, traduction fran?aise
    !
    ! Groupement de biblioth?ques de Horowhenua : Rosalie Blake, directrice des biblioth?ques
    ! Jo Ransom
    ! Katipo Communications : Rachel Hamilton-Williams, General Manager (Webmistress), ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    !
    !

    Merci ?

    ! ! ! ! ! ! !
    ! Adam Thick
    ! Andrew Hooper
    ! Al Banks
    ! Ambrose Li
    ! Andrew Arensburger
    ! Benedykt P. Barszcz (Polonais pour version 2.0)
    ! Brig C. McCoy
    ! Daniel Holth
    ! David Strainchamps
    ! Dorian Meid
    !
    ! Ed Summers
    ! Florian Bischof
    ! Francisco M. Marzoa Alonso
    ! Glen Stewart
    ! Henri Damien Laurent
    ! J?rome Vizcaino (Esiee Paris)
    ! Kip DeGraaf
    ! Marco Gaiarin
    ! Md. Aftabuddin
    ! Michaes Herman
    !
    ! Michel Lerenard (Esiee)
    ! Mike Johnson
    ! Mike Mylonas
    ! Pierre Cauchois (Ecole Esiee)
    ! Pawel Skuza (Polonais pour la version 1.2)
    ! Regula Sebastiao
    ! Roger Buck
    ! Ron Wickersham
    ! Sebastiaan Durand
    !
    !
    --- 2,71 ----
    !

    Informations sur la version actuelle de Koha pour le rapport de bogues (ou d'int?r?t g?n?ral).

    \t !
    !

    Information serveur

    !

    !

    !

    !

    !

    !
    !
    !

    Un merci particulier aux financeurs suivants

    !

    Groupement de biblioth?ques de Horowhenua : Rosalie Blake, directrice des biblioth?ques (Koha 1.0)

    !

    La Biblioth?que Publique de Nelsonville (support MARC)

    !

    EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)

    !

    EMN (Ecole des Mines de Nantes) (modules suggestion et stats, support ldap am?lior?)

    !
    !
    !

    Contributeurs principaux pour la version 2.2

    !

    Rachel Hamilton-Williams, Kaitiaki

    !

    Paul Poulain, responsable de la version 2.2 (d?veloppeur MARC)

    !

    Stephen Hedges et La Biblioth?que Publique de Nelsonville (Financement du codage MARC)

    !

    Nicholas Rosasco,(r?dacteur de la documentation)

    !

    Mike Hansen

    !

    MJ Ray et Turo Technology LLP, (contr?le qualit?, installation et mise ? jour, maintenance de la version 2.0)

    !

    Katipo Communications

    !
      !

      Rachel Hamilton-Williams, General Manager (Webmistress)

      !

      Chris Cormack, 1.2 release manager

      !

      et Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson,

      !

      Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine

      !
    !
    !
    !

    Merci ?

    !

    Adam Thick

    !

    Andrew Hooper

    !

    Al Banks

    !

    Ambrose Li (chinese & translation tool)

    !

    Andrew Arensburger (the small & great C4::Context module)

    !

    Benedykt P. Barszcz (Polonais pour version 2.0)

    !

    Brig C. McCoy

    !

    Daniel Holth

    !

    David Strainchamps

    !

    Dorian Meid (German translation)

    !

    doXulting (Matthieu Branlat) panier OPAC

    !

    Ed Summers (Some code and Perl packages like MARC::Record)

    !

    Esiee (J?rome Vizcaino, Michel Lerenard, Pierre Cauchois)

    !

    Florian Bischof

    !

    Francisco M. Marzoa Alonso

    !

    Glen Stewart

    !

    Henri Damien Laurent

    !

    Jo Ransom

    !

    Kip DeGraaf

    !

    Marco Gaiarin

    !

    Md. Aftabuddin

    !

    Michaes Herman

    !

    Mike Johnson

    !

    Mike Mylonas

    !

    Nicolas Morin, (traduction fran?aise 2.0)

    !

    Pawel Skuza (Polonais pour la version 1.2)

    !

    Regula Sebastiao

    !

    Roger Buck

    !

    Ron Wickersham

    !

    Sebastiaan Durand

    !

    Steve Tonnesen (pr?paration MARC, conception des Etag?res virtuelles, KohaCD)

    !
    Index: auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/auth.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** auth.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- auth.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 18,22 **** !

    Vous avez saisi un nom d'utilisateur ou un mot de passe invalide. Merci de r?essayer.

    --- 18,22 ---- !

    Vous avez saisi un nom d'utilisateur ou un mot de passe invalide. Merci de r?essayer.

    Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookcount.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** bookcount.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- bookcount.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 5,9 **** ! CODE BARRE --- 5,9 ---- ! CODE A BARRES *************** *** 11,15 **** ! '>Site d'origine:
    Site Actuel:
    Date d'arriv?e au site actuel:
    --- 11,15 ---- ! Site d'origine:
    Site Actuel:
    Date d'arriv?e au site actuel:
    Index: boraccount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/boraccount.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** boraccount.tmpl 24 Nov 2004 16:22:25 -0000 1.6 --- boraccount.tmpl 5 Jan 2005 14:33:21 -0000 1.7 *************** *** 3,7 **** !

    Compte pour

    ">Cr?er une facture manuelle

    --- 3,7 ---- !

    Compte pour ">

    ">Cr?er une facture manuelle

    Index: charges.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/charges.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** charges.tmpl 24 Nov 2004 16:22:25 -0000 1.3 --- charges.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 4,9 ****

    ! Each box needs to be filled in with fine,time to start charging,charging cycle
    ! par exemple 1,7,7 signifie 1EUR d'amende, apr?s 7 jours, tous les 7 jours.

    --- 4,9 ----

    ! Chaque cellule doit ?tre remplie avec l'amende, l'?ch?ance et la dur?e des charges
    ! par exemple 1,7,7 signifie 1EUR d'amende, apr?s 7 jours, tous les 7 jours.

    Index: intranet-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/intranet-main.tmpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** intranet-main.tmpl 24 Nov 2004 16:22:25 -0000 1.8 --- intranet-main.tmpl 5 Jan 2005 14:33:21 -0000 1.9 *************** *** 74,78 ****

    Catalogue

    Recherche catalogue !

    Search a biblio. When this biblio is found, you can check its status, reserve it, or see where it is

    Ajouter une notice

    Ajouter directement une notice au catalogue de la biblioth?que

    --- 74,78 ----

    Catalogue

    Recherche catalogue !

    Rechercher une notice.Quand ce document est trouv?, vous pouvez v?rifier son ?tat, faire une r?servation, ou bien voir o? il se trouve

    Ajouter une notice

    Ajouter directement une notice au catalogue de la biblioth?que

    *************** *** 80,86 ****

    Gestion des abonnements et des p?riodiques

    Etag?res Virtuelles !

    Virtual shelves can be used by librarian or patrons to build virtual libraries inside the "real" one. ! The virtual shelf can be used by a teacher to help his/her students searching information on a specific topic. ! It can be used by a library to define "most valuable books for <some category of patron>"

    --- 80,84 ----

    Gestion des abonnements et des p?riodiques

    Etag?res Virtuelles !

    Les ?tag?res virtuelles peuvent ?tre utilis?es par des biblioth?caires ou des usagers pour constituer des biblioth?ques virtuelles au sein de la vraie. L'?tag?re virtuelle peut ?tre utilis? par un enseignant pour aider ses ?l?ves dans la recherche d'information sur un sujet particulier.On peut l'utiliser dans une biblioth?que pour indiquer des listes de documents (les plus emprunt?s, les plus repr?sentatifs...).

    *************** *** 107,122 ****

    Aller ? la page principale des lecteurs

    Ajouter une inscription !

    Add a member in the library. The member can be attached to any branch of the library. He or she can also have children.

    Ajouter une collectivit? !

    Add an organisation in the library. This member doesn't have some information a "physical" member has.

    Acquisitions

    ! Lignes de Commande, recevoir des commandes, ?tablir des budgets...
    !

    Rapports

    ! Tous les rapports syst?me
    --- 105,120 ----

    Aller ? la page principale des lecteurs

    Ajouter une inscription !

    Ajouter un lecteur ? la biblioth?que.Le lecteur peut-?tre rattach? ? n'importe quel site de la biblioth?que.Il ou elle peut aussi avoir des enfants

    Ajouter une collectivit? !

    Ajouter une collectivit? ? la biblioth?que.Cette inscription ne peut contenir les m?mes informations que pour une personne physique.

    Acquisitions

    ! Commander des documents, recevoir des commandes, ?tablir des budgets...
    !

    Bilans

    ! Tous les bilans du syst?me
    *************** *** 126,136 ****

    Pr?t

    ! Work at the front desk on Issues and returns using only a barcode reader and a mouse
    --- 124,134 ----

    Pr?t

    ! A la banque de pr?t, effectuez les pr?ts et les retours, en utilisant uniquement un lecteur de code barre et une souris
    *************** *** 145,149 **** Autorit?s
    ! Rapports
    Param?tres
    --- 143,147 ---- Autorit?s
    ! Bilans
    Param?tres
    Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/modbibitem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** modbibitem.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- modbibitem.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 36,40 ****
    ! --- 36,40 ---- ! *************** *** 68,78 **** ! ! --- 68,78 ---- ! ! *************** *** 99,104 **** ! HELP: You must click on the appropriate radio button (in the green boxes), and choose to either re-assign the item/s to a record already in the system, or modify this record. IF your changes only apply to some ! items, tick the appropriate ones and a new group record will be created automatically for them.

     

    --- 99,103 ---- ! AIDE:Vousdevezcliquer sur le bouton ad?quat (dans les pav?s verts), et choisir soit de d?placer le(s) exemplaire(s)vers un enregistrement d?j? existant dans la base, soit de modifier cet enregistrement. Si vos modifications ne concernent que quelques exemplaires, pointer ceux qui sont concern?s et une nouvelle notice sera cr??e automatiquement pour eux.

     

    Index: moditem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/moditem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** moditem.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- moditem.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 5,9 **** - ! ! --- 20,27 ---- "> ! ! *************** *** 35,48 **** !
    Editeur" size="20">
    Localisation" size="20">
    Editeur" size="20">
    Emplacement" size="20">
    LES MODIFICATIONS VONT AFFECTER CES CODES BARRES
    ! Tick ALL barcodes that changes are to apply too. Those left un-ticked will keep the original group record.
     Code Barre Localisation Date de retour
    LES MODIFICATIONS VONT AFFECTER CES CODES A BARRES
    ! Pointez TOUS les codes-barres auquels les changements s'appliquent.
     Code ? Barres Localisation Date de retour
    ! "> "> --- 5,9 ---- --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Mon Jan 10 17:49:19 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 08:49:19 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29393/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: member.tmpl Log Message: Removing accidentally-hardcoded member number Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** member.tmpl 27 Oct 2004 15:35:03 -0000 1.4 --- member.tmpl 10 Jan 2005 16:49:17 -0000 1.5 *************** *** 31,35 **** --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Mon Jan 10 18:00:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 09:00:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters marc_subfields_structure.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32072/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: marc_subfields_structure.tmpl Log Message: Synching with default tempalte Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** marc_subfields_structure.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- marc_subfields_structure.tmpl 10 Jan 2005 17:00:30 -0000 1.3 *************** *** 4,120 **** Data Deleted MARC Subfield Structure for '' ! !
    ! ! ! !
    " name="Aform" method="post"> !

    !
    Code Barre" size="40">
    ! "> "> Index: overdue.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/overdue.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** overdue.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- overdue.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 6,10 **** ! --- 6,10 ---- ! Index: reports.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** reports.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- reports.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 1,5 **** !

    rapports

    --- 1,5 ---- !

    bilans

    Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/request.tmpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** request.tmpl 24 Nov 2004 16:22:26 -0000 1.7 --- request.tmpl 5 Jan 2005 14:33:21 -0000 1.8 *************** *** 103,107 **** --- 103,107 ---- Index: shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/shelves.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** shelves.tmpl 24 Nov 2004 16:22:26 -0000 1.3 --- shelves.tmpl 5 Jan 2005 14:33:21 -0000 1.4 *************** *** 32,36 **** --- 95,99 ---- From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/authorities authorities.tmpl,1.1,1.2 searchresultlist-auth.tmpl,1.1,1.2 searchresultlist.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/authorities Modified Files: authorities.tmpl searchresultlist-auth.tmpl searchresultlist.tmpl Log Message: french version for 2.2.0 Index: authorities.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/authorities.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** authorities.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- authorities.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 15,19 **** -

    --- 15,18 ---- *************** *** 134,139 **** alertString2 = _("Formulaire non soumis ? cause du (des) probl?me(s) suivant(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 { --- 133,138 ---- alertString2 = _("Formulaire non soumis ? cause du (des) probl?me(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_missing_mandatory_tags +_("Champ(s) obligatoire(s) non renseign?(s)"); ! alertString2 += "\n- "+ total_missing_mandatory_subfields +_("champs obligatoires non renseign?s (voir les champs en caract?re gras)"); alert(alertString2); } else { Index: searchresultlist-auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/searchresultlist-auth.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist-auth.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- searchresultlist-auth.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 60,64 ****
    Code ? Barres" size="40">
    Date de retourUsager T?l?phone Titre
    Date de retourEmprunteur T?l?phone Titre ! "> ! ">
    ! ajouter un livre par code barre dans : --- 32,36 ----
    ! Ajouter un livre par code ? barre dans : Index: thesaurus_popup.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/thesaurus_popup.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** thesaurus_popup.tmpl 24 Nov 2004 16:22:26 -0000 1.5 --- thesaurus_popup.tmpl 5 Jan 2005 14:33:21 -0000 1.6 *************** *** 33,37 **** "> ! Ajouter une nouvelle autorit? --- 33,37 ---- "> ! Ajouter une nouvelle autorit?: From tipaul at users.sourceforge.net Wed Jan 5 15:34:36 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:34:36 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/maint - New directory Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27952/koha-tmpl/intranet-tmpl/default/fr/maint Log Message: Directory /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint added to the repository From tipaul at users.sourceforge.net Wed Jan 5 15:35:23 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:23 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/maint catmaintain.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/maint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/maint Added Files: catmaintain.tmpl Log Message: french version for 2.2.0 --- NEW FILE --- "" onclick="messenger('/cgi-bin/koha/maint/catmaintain.pl?type=modsub&sub=');window1.focus()">"
    Sujet:" name="sub" size="40">
    ">

    Cela changera la vedette-sujet dans toutes les notices o? ce sujet est utilis?. Modification r?ussie est maintenant
    TitreAuteurReprendre
    ">Reprendre
    Annulation de suppression r?ussie

    Retour ? la Maintenance du Catalogue

    "> Type de document : ">
    Mise ? jour r?ussie

    Retour ? la Maintenance du Catalogue Maintenance des Sujets

    Voir tous les sujets commen?ant par

    Maintenance des groupes

    Voir tous les Titres commen?ant par
    Num?ro de l'exemplaire

    Reprendre Notice

    Voir tous les Titres commen?ant par
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/user userpage.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/user Modified Files: userpage.tmpl Log Message: french version for 2.2.0 Index: userpage.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/user/userpage.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** userpage.tmpl 24 Nov 2004 16:21:16 -0000 1.3 --- userpage.tmpl 5 Jan 2005 14:35:22 -0000 1.4 *************** *** 19,23 ****

    ! Vous avez reserv? les ouvrages en pr?t suivants :

    • The Amazing Apple Book by Paulette Bourgeois --- 19,23 ----

    ! Vous avez r?serv? les documents suivants :

    • The Amazing Apple Book by Paulette Bourgeois *************** *** 56,60 **** Pr?venez moi de retards par messagerie (e-mail)
      Garder un enregistrement des livres que j'ai lu
      ! Autoriser l'?quipe de la biblioth?que ? consulter la liste de mes emprunts
    --- 56,60 ---- Pr?venez moi de retards par messagerie (e-mail)
    Garder un enregistrement des livres que j'ai lu
    ! Autoriser l'?quipe de la biblioth?que ? consulter la liste de mes emprunts
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/search.marc result.tmpl,1.5,1.6 search.tmpl,1.6,1.7 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/search.marc Modified Files: result.tmpl search.tmpl Log Message: french version for 2.2.0 Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc/result.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** result.tmpl 24 Nov 2004 16:19:00 -0000 1.5 --- result.tmpl 5 Jan 2005 14:35:22 -0000 1.6 *************** *** 7,39 ****

    R?sultats de recherche

    ! --- 7,17 ----

    R?sultats de recherche

    Abr?g? Nombre d'exemplaires Localisation
    ! *************** *** 42,54 **** ! ! class="hilighted"> ! "> ! ">

    - *************** *** 88,106 ****

    --- 62,67 ---- Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/search.marc/search.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** search.tmpl 24 Nov 2004 16:19:00 -0000 1.6 --- search.tmpl 5 Jan 2005 14:35:22 -0000 1.7 *************** *** 8,100 ****

    Recherche Catalogue

    !
    "> !

    Rechercher sur

    ! ! " /> ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! !

    ! ! ! ! !

    !

    Autres options

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    --- 8,100 ----

    Recherche Catalogue

    ! "> !

    Rechercher sur

    ! ! "> ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! !

    ! ! ! ! !

    !

    Autres options

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! ! !

    !

    ! ! ! ! ! !

    *************** *** 125,139 ****

    ! ! Warning : the "contains" statement does NOT work if you enter 2 or less letters !

    !

    !

    ! !
    !

    R?sultats par page : ! ! Attention : l'option "contient" NE FONCTIONNE PAS si vous n'indiquez pas au moins 3 caract?res.

    !
    !

    R?sultats par page : ! ! Suggestions

    --- 147,151 ----

    ! Suggestions

    From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/suggestion acceptorreject.tmpl,1.1,1.2 mail_suggestion_ACCEPTED.tmpl,1.1,1.2 mail_suggestion_AVAILABLE.tmpl,1.1,1.2 mail_suggestion_ORDERED.tmpl,1.1,1.2 mail_suggestion_REJECTED.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/suggestion Modified Files: acceptorreject.tmpl mail_suggestion_ACCEPTED.tmpl mail_suggestion_AVAILABLE.tmpl mail_suggestion_ORDERED.tmpl mail_suggestion_REJECTED.tmpl Log Message: french version for 2.2.0 Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/acceptorreject.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acceptorreject.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- acceptorreject.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 24,28 ****

    -

    ! Ann?e de copyright volume : ISBN : --- 24,28 ----

    -

    ! Ann?e de copyright volume : ISBN : Index: mail_suggestion_ACCEPTED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_ACCEPTED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_ACCEPTED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_ACCEPTED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par . reviewed your suggestion today, and found it interesting. The item will be ordered as soon as possible. You will be notified by mail when the order is completed, and again when the book arrives at the library. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par a examin? votre suggestion aujourd'hui, et l'a trouv?e int?ressante. Le document sera achet? d?s que possible. Vous serez alert? par messagerie lorsque l'acquisition sera r?alis?e, puis avertis par messagerie ? nouveau lorsque le document sera ? la biblioth?que. Pour toute question, adressez- vous ? . Merci, \ No newline at end of file Index: mail_suggestion_AVAILABLE.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_AVAILABLE.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_AVAILABLE.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_AVAILABLE.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par . We are pleased to inform you that the item is now part of the collection of the Nelsonville Public Library. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par . Nous sommes heureux de vous annoncer que le *** est maintenant dans la la biblioth?que. Si vous avez une question, n'h?sitez pas ? nous ?crire ? . Merci \ No newline at end of file Index: mail_suggestion_ORDERED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_ORDERED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_ORDERED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_ORDERED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par . We are pleased to inform you that the book has now been ordered. It should arrive soon, at which time it will be processed for addition to the collection. You will be notified again when the book is available. If you have any questions, please email us at Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par Nous avons le plaisir de vous informer que le livre a ?t? command?.Il devrait arriver bient?t ? la biblioth?que.Nous vous enverrons un autre mail quand le livre sera disponible. Pour toute question, envoyez nous un message ?lectronique ? . Merci \ No newline at end of file Index: mail_suggestion_REJECTED.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/suggestion/mail_suggestion_REJECTED.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** mail_suggestion_REJECTED.tmpl 24 Nov 2004 16:20:05 -0000 1.1 --- mail_suggestion_REJECTED.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 1 **** ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par . reviewed your request today, and has decided not to accept the suggestion at this time. If you have any questions, please email us at . Thank you, \ No newline at end of file --- 1 ---- ! Cher lecteur , vous avez fait ? la biblioth?que la suggestion d'achat de par . a trait? votre demande aujourd'hui et a d?cid? de ne pas accepter votre suggestion. Si vous une question, n'h?sitez pas ? nous ?crire ? . Merci \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/reports inventory.tmpl,1.2,1.3 issues_by_borrower_category.tmpl,1.1,1.2 itemtypes.tmpl,1.1,1.2 reports-home.tmpl,1.5,1.6 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/reports Modified Files: inventory.tmpl issues_by_borrower_category.tmpl itemtypes.tmpl reports-home.tmpl Log Message: french version for 2.2.0 Index: inventory.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/inventory.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** inventory.tmpl 24 Nov 2004 16:19:00 -0000 1.2 --- inventory.tmpl 5 Jan 2005 14:35:22 -0000 1.3 *************** *** 5,14 ****

    S?lectionnez les exemplaires que vous souhaitez v?rifier

    ! Localisation de l'exemplaire (items.itemcallnumber) entre "> et ">

    ">

    !

    " maxlength="5" size="5"> exemplaires commen?ant au " size="5" maxlength="5">

    --- 5,14 ----

    S?lectionnez les exemplaires que vous souhaitez v?rifier

    ! Cote de l'exemplaire ((items.itemcallnumber) entre "> et ">

    ">

    !

    " maxlength="5" size="5"> exemplaires commen?ant au " size="5" maxlength="5">

    *************** *** 29,33 ****
    ! --- 29,33 ---- ! Index: issues_by_borrower_category.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/issues_by_borrower_category.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** issues_by_borrower_category.tmpl 24 Nov 2004 16:19:00 -0000 1.1 --- issues_by_borrower_category.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 40,44 ****

    Pr?ts par cat?gories de lecteurs

    !

    Select a borrower category (or don't if you want to see global status)

    S?lectionnez une annexe :

    --- 40,44 ----

    Pr?ts par cat?gories de lecteurs

    !

    S?lectionner une cat?gorie de lecteur (ou rien si vous souhaitez visualiser l'?tat global)

    S?lectionnez une annexe :

    Index: itemtypes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/itemtypes.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** itemtypes.tmpl 24 Nov 2004 16:19:00 -0000 1.1 --- itemtypes.tmpl 5 Jan 2005 14:35:22 -0000 1.2 *************** *** 23,27 ****

    Voir le catalogue par type de document

    ! S?lectionner une annexe (ou rien si vous souhaitez le rapport pour toutes les annexes) "> --- 23,27 ----

    Voir le catalogue par type de document

    ! S?lectionner une annexe (ou rien si vous souhaitez le rapport pour toutes les annexes) "> Index: reports-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/reports/reports-home.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** reports-home.tmpl 24 Nov 2004 16:19:00 -0000 1.5 --- reports-home.tmpl 5 Jan 2005 14:35:22 -0000 1.6 *************** *** 2,10 ****
    !

    Rapports

    • Cas r?gl?s: Rapport quotidien (hier)
    • Cas r?gl?s: Rapport quotidien (aujourd'hui)
    • !
    • Ouvrages en retard
    • Inventaire/r?colement
    • Recherche par Type de document
    • --- 2,10 ----
      !

      Bilans

      • Cas r?gl?s: Rapport quotidien (hier)
      • Cas r?gl?s: Rapport quotidien (aujourd'hui)
      • !
      • Documents en retard
      • Inventaire/r?colement
      • Recherche par Type de document
      • From tipaul at users.sourceforge.net Wed Jan 5 15:35:25 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:25 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/value_builder unimarc_field_225a.tmpl,1.3,1.4 unimarc_field_60X.tmpl,1.4,1.5 unimarc_field_700-4.tmpl,1.3,1.4 unimarc_field_700_701_702.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/value_builder Modified Files: unimarc_field_225a.tmpl unimarc_field_60X.tmpl unimarc_field_700-4.tmpl unimarc_field_700_701_702.tmpl Log Message: french version for 2.2.0 Index: unimarc_field_225a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_225a.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_225a.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_225a.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 1,16 **** ! ! ! Constructeur de champ UNIMARC 225a ! !
    R?sum? Nombre d'exemplaires Localisation
    class="hilighted"> !

    !

    ! "> ! "> ! !

    - --- 20,28 ----

    VuCode Barre Cote Titre
    VuCode ? Barres Cote Titre
    ! ! ! ! ! !
    Selectionnez une collection
    ! ! ! --- 17,19 ---- } ! Index: unimarc_field_60X.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_60X.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** unimarc_field_60X.tmpl 24 Nov 2004 16:21:17 -0000 1.4 --- unimarc_field_60X.tmpl 5 Jan 2005 14:35:23 -0000 1.5 *************** *** 1,5 **** ! Recherche Th?saurus --- 1,5 ---- ! Thesaurus search *************** *** 38,42 ****
    !

    R?ponses

    --- 38,42 ---- ! --- 32,36 ---- ! From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/barcodes barcodes-bottom.inc,1.1,1.2 barcodes-top.inc,1.1,1.2 barcodes.tmpl,1.1,1.2 printerConfig.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/barcodes Modified Files: barcodes-bottom.inc barcodes-top.inc barcodes.tmpl printerConfig.tmpl Log Message: french version for 2.2.0 Index: barcodes-bottom.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes-bottom.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes-bottom.inc 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes-bottom.inc 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 8,12 **** Acquisitions || Pr?t || ! Rapports || Param?tres || A propos || --- 8,12 ---- Acquisitions || Pr?t || ! Bilans || Param?tres || A propos || Index: barcodes-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes-top.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes-top.inc 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes-top.inc 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 204,212 **** --- 204,212 ---- Index: barcodes.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/barcodes.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes.tmpl 24 Nov 2004 16:13:31 -0000 1.1 --- barcodes.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 41,56 ****
    !

    G?n?rateur de code-barres

    !

    Results

    *************** *** 57,61 ****
    !

    D?pendances

    --- 57,61 ----
    !

    Dependancies

    *************** *** 73,82 ****
    !

    Ajout en cours

    "> "> ! Cr?er une nouvelle autorit?/entr?e au th?saurus : ">
    --- 73,82 ----
    !

    Adding

    "> "> ! Create a new authority/thesaurus entry : ">
    Index: unimarc_field_700-4.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_700-4.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_700-4.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_700-4.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 11,15 **** ! --- 11,15 ---- ! Index: unimarc_field_700_701_702.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_700_701_702.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unimarc_field_700_701_702.tmpl 24 Nov 2004 16:21:17 -0000 1.3 --- unimarc_field_700_701_702.tmpl 5 Jan 2005 14:35:23 -0000 1.4 *************** *** 1,5 **** ! Constructeur d'autorit? nom de personne --- 1,5 ---- ! Personal Authorities builder *************** *** 14,18 **** "> "> ! --- 14,18 ---- "> "> ! *************** *** 30,34 **** "> ! Ajouter une nouvelle autorit? --- 30,34 ---- "> ! Ajouter une nouvelle autorit?: "> From tipaul at users.sourceforge.net Wed Jan 5 15:35:53 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:53 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/circ branchtransfers.tmpl,1.6,1.7 circulation.tmpl,1.10,1.11 returns.tmpl,1.6,1.7 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/circ Modified Files: branchtransfers.tmpl circulation.tmpl returns.tmpl Log Message: french version for 2.2.0 Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/branchtransfers.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** branchtransfers.tmpl 24 Nov 2004 16:14:37 -0000 1.6 --- branchtransfers.tmpl 5 Jan 2005 14:35:19 -0000 1.7 *************** *** 6,10 ****

    Pr?t : Transferts

    ! Site: Imprimante: Changer Param?tres "> "> --- 6,10 ----

    Pr?t : Transferts

    ! Site: Imprimante: Changer R?glages "> "> *************** *** 84,88 **** ! Pas d'exemplaire avec code barre : --- 84,88 ---- ! Pas d'exemplaire avec code ? barres : *************** *** 106,110 ****

    !

    Entrez le Code Barre du document : Code Barre du document: > --- 106,110 ----

    !

    Entrez le Code ? Barres du document : Code ? Barres du document: > *************** *** 120,124 **** !
    Exemplaires transf?r?s
    Code BarreTitreAuteurTypeDe?
    "> --- 120,124 ---- ! ! --- 231,235 ---- ! *************** *** 253,257 **** ! --- 260,264 ---- ! Index: returns.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/returns.tmpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** returns.tmpl 24 Nov 2004 16:14:38 -0000 1.6 --- returns.tmpl 5 Jan 2005 14:35:19 -0000 1.7 *************** *** 4,8 ****

    Pr?t: Retours

    ! Site: , Imprimante: Changer Param?tres

    --- 4,8 ----

    Pr?t: Retours

    ! Site: , Imprimante: Changer R?glages

    *************** *** 11,15 ****

    Exemplaire marqu? 'En attente' :

    !

    Le document () est not? en attente ? pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).
    --- 11,15 ----

    Exemplaire marqu? 'En attente' :

    !

    Le document () est not? en attente ? pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">). *************** *** 25,29 ****

    Exemplaire marqu? 'En attente' :

    ! Item: () needs to be transfered to to be picked up by (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).

    --- 25,29 ----

    Exemplaire marqu? 'En attente' :

    ! L'exemplaire: () doit ?tre transf?r? ? pour ?tre retir? par (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false;">).

    *************** *** 43,47 ****

    R?servation trouv?e

    !

    Item: () &type=intra" onclick="openWindow('/cgi-bin/koha/detail.pl?bib=&type=intra', 'Item'); return false;"> for (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false">) to be collected at .

    --- 43,47 ----

    R?servation trouv?e

    !

    Exemplaire : () &type=intra" onclick="openWindow('/cgi-bin/koha/detail.pl?bib=&type=intra', 'Item'); return false;"> pour (" onclick="openWindow('/cgi-bin/koha/members/moremember.pl?bornum=', 'Member'); return false">) peut ?tre retir? ? .

    *************** *** 84,89 ****

    !

    Entrez le code barre du livre

    !
    Exemplaires transf?r?s
    Code ? BarresTitreAuteurTypeDe?
    "> Index: circulation.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/circ/circulation.tmpl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** circulation.tmpl 24 Nov 2004 16:14:38 -0000 1.10 --- circulation.tmpl 5 Jan 2005 14:35:19 -0000 1.11 *************** *** 1,5 ****
    !

    Circulation : pr?ts

    !

    Pr?t : Sorties

    , Imprimante: Changer Param?tres

    --- 11,15 ----

    Param?tres

    ! Site: , Imprimante: Changer R?glages

    *************** *** 41,45 ****

    Cat?gorie :

    !

    Pr?ts, En retard

    --- 41,45 ----

    Cat?gorie :

    !

    Sorties, En retard

    *************** *** 65,70 ****
    !

    Entrez le code barre du livre

    !

    Code Barre de l'exemplaire :

    Annuler r?servation

    + + +

    Annuler r?servation

    + "> "> *************** *** 203,206 **** --- 209,213 ---- "> + " class="button circulation">Ne pas pr?ter
    *************** *** 224,228 ****
    Date de retourCode Barre Titre Auteur
    Date de retourCode ? Barres Titre Auteur
    Date de retourCode Barre Titre Auteur
    Date de retourCode ? Barres Titre Auteur
    --- 84,89 ----
    !

    Entrez le code ? barres du livre

    !
    *************** *** 100,104 **** ! Pas d'exemplaire avec code barre : --- 100,104 ---- ! Pas d'exemplaire avec code ? barres : *************** *** 119,123 ****

    !

    Information sur l'ouvrage rendu

    Titre :

    Information lecteur

    --- 119,123 ----
    !

    Information sur le document rendu

    Titre :

    Information lecteur

    *************** *** 162,174 ****
    !

    Ouvrages rendus

    ! ! --- 162,174 ----
    !

    Documents rendus

    Date de retourCode Barre Titre Auteur TypeLecteur
    ! ! From tipaul at users.sourceforge.net Wed Jan 5 15:35:53 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:53 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help bull-home.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help Modified Files: bull-home.tmpl Log Message: french version for 2.2.0 Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 24 Nov 2004 16:15:50 -0000 1.1 --- bull-home.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 2,11 ****

    Aide de Abonnement P?riodiques

      !
    • Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York
    • Si vous voulez cr?er un nouvel abonnement, cliquez sur Ajouter un abonnement
    • Lorsque vous avez trouv? l'abonnement que vous cherchez, vous pouvez:
      • Voir les d?tails de l'abonnement
      • !
      • Recieve any item and/or manage what appears in subscription summary (in OPAC & librarian interface)
      \ No newline at end of file --- 2,11 ----

      Aide de Abonnement P?riodiques

        !
      • Chercher un abonnement en utilisant le bouton (avec un ISSN ou un titre)Si vous saisissez un titre, vous pouvez utiliser le joker % : %Monde% renverra tous les abonnement contenant Monde dans le titre
      • Si vous voulez cr?er un nouvel abonnement, cliquez sur Ajouter un abonnement
      • Lorsque vous avez trouv? l'abonnement que vous cherchez, vous pouvez:
        • Voir les d?tails de l'abonnement
        • !
        • Recevoir chaque num?ro et/ou g?r? ce qui s'affiche dans le r?sum? de l'abonnement (? l'OPAC et dans l'interface biblioth?caire)
        \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves addbookbybiblionumber.tmpl,1.2,1.3 shelves.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/bookshelves Modified Files: addbookbybiblionumber.tmpl shelves.tmpl Log Message: french version for 2.2.0 Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** addbookbybiblionumber.tmpl 24 Nov 2004 16:13:32 -0000 1.2 --- addbookbybiblionumber.tmpl 5 Jan 2005 14:35:18 -0000 1.3 *************** *** 6,11 ****

        !

        ! --- 6,19 ----

        !

        !

        ou ajouter une nouvlle ?tag?re virtuelle

        !

        ! !

        ! Index: shelves.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bookshelves/shelves.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** shelves.tmpl 24 Nov 2004 16:13:33 -0000 1.2 --- shelves.tmpl 5 Jan 2005 14:35:18 -0000 1.3 *************** *** 4,63 ****
        !
    Date de retourCode ? Barres Titre Auteur TypeEmprunteur
    ! ! ! ! ! ! ! ! ! ! !
    ! Contenus de !
    ">">">">">
    !
    ! Liste des ?tag?res ! "> ! ! "> ! ! ! !
    ! "> ! ! "> ! ! ! ! ! !
    ! ajouter un livre par code barre dans : ! ! ! ! "> ! !
    !
    !

    !

    -

    Etag?res

    S?lectionner les Etag?res ? Supprimer

    --- 4,64 ----
    !

    ! !
    !

    Contenu des Etag?res

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    supprimerCode ? BarresTitreAuteur
    ">">">">">">
    ! "> ! ! "> ! ! ! !
    !
    !
    !

    Ajouter un livre par code ? barre

    ! "> ! ! "> ! ! ! "> ! !
    !
    + +

    Etag?res

    !

    !

    S?lectionner les Etag?res ? Supprimer

    *************** *** 70,74 **** "> ! ( livres)

    --- 71,75 ---- "> ! "> ( document(s))

    *************** *** 92,98 ****

    !

  • une ?tag?re priv?e est g?r?e par vous et peut ?tre vue uniquement par vous- m?me.
  • !
  • Une ?tag?re publique peut-?tre vue par tout le monde, mais g?r?e uniquement par vous-m?me
  • !
  • Une ?tag?re libre peut-?tre g?r?e par tous les usagers
  • --- 93,99 ----

    !

  • une ?tag?re priv?e est g?r?e par vous et peut ?tre vue uniquement par vous- m?me.
  • !
  • Une ?tag?re publique peut-?tre vue par tout le monde, mais g?r?e uniquement par vous-m?me
  • !
  • Une ?tag?re libre peut-?tre g?r?e par tous les utilisateurs.
  • *************** *** 104,128 ****

    ! ! ! ! ! ! ! ! ! !
    ! Liste des Etag?res !
    "> ! "> ! ( livres) ! !
    !

    Ajouter ou supprimer des ?tag?res virtuelles !

    --- 105,191 ----
    !
    !

    Liste des ?tag?res

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Nom de l'?tag?reCat?gorieContenuModifier
    "> ! "> ! ! ! "> ! ! Priv? ! ! ! Publique ! ! ! Libre ! ! "> ! documents ! "> ! " class="button catalogue">Modifier !
    !
    ! + + +
    +
    + +

    Modifier l'?tag?re

    + "> +

    ">

    +

    ">

    +

    + +

    +

  • une ?tag?re priv?e est g?r?e par vous et peut ?tre vue uniquement par vous- m?me.
  • +
  • Une ?tag?re publique peut-?tre vue par tout le monde, mais g?r?e uniquement par vous-m?me
  • +
  • Une ?tag?re libre peut-?tre g?r?e par tous les utilisateurs.
  • +

    +

    + +

    + +
    +
    +
    From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/circ circulation.tmpl,1.1,1.2 returns.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/circ Modified Files: circulation.tmpl returns.tmpl Log Message: french version for 2.2.0 Index: circulation.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ/circulation.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** circulation.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- circulation.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,11 **** !

    Circulation : pr?ts

    !

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations from a workstation, after which a browser cookie will remember the correct settings. If you do circulations under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb) and the statistical reports will credit all circulations to the wrong branch.

    !

    Now start by scanning the borrower's barcode or type in their name to find their account. Once Koha has found the borrower, you will see a new form for scanning or typing the item's identifying number (usually a barcode).

    !

    If you wish to have this item and all subsequent items in this transaction to have a date due other than the default date due defined for the item type, use the "Sticky Due Date" to set the date due before scanning the first item.

    !

    If the issuing has nothing specific, it will be done immediatly and shown (with other borrower issues) at bottom.

    !

    If the issuing is problematic, then another box will appear (in RED) and ask for confirmation if possible. If the issuing is really impossible (for example, the barcode does not exist), then you can't confirm the issue. If it is possible but has something that needs confirmation (like item being issued to another borrower, or borrower having issued too many items), then you must confirm the issuing. If the confirmation means another operation (if item is issued to another borrower, then issuing also means make the return), then it's also done

    --- 1,11 ---- !

    Pr?t/Aide des sorties

    !

    Avant de commencer, il est tr?s important que vous verifiez le site et l'imprimante choisis et que vous les changiez si n?cessaire.Cela devra ?tre fait seulement la premi?re fois que vous ferez du pr?t (ou des retours) ? partir d'un poste de travail, ensuite un cookie du navigateur m?morisera le r?glage correct.

    !

    Maintenant commencez par scanner le code ? barres du lecteur ou tapez son nom pour trouver leur compte.Lorsque Koha a trouv? un lecteur, vous verrez un nouveau pav? pour scanner ou taper le num?ro identifiant le document (en g?n?ral un code ? barres).

    !

    Si vous souhaitez que ce document et les documents suivants de cette transaction aient une date de retour autre que la date par d?faut d?finie pour ce type de document utilisez la "date de retour manuelle" pour choisir la date de retour avant de scanner le premier document.

    !

    Si le pr?t n'a rien de sp?cial, il sera fait imm?diatement et affich? (avec les autres emprunts du lecteur)en bas de la page.

    !

    Si le pr?t pose probl?me, alors un autre pav? appara?tra (en ROUGE) et vous demandera de confirmer que le pr?t est possible.Si le pr?t est vraiment impossible (par exemple le code ? barres n'existe pas), alors vous ne pouvez pas le confirmer.Si le pr?t est possible mais n?cessite confirmation (comme pour un document pr?t? ? un autre lecteur, ou un lecteur ayant emprunt? trop de docuements), vous pourrz alors confirmer le pr?t.Si la confirmation implique une autre op?ration (si le document est pr?t? ? un autre lecteur, le pr?t? implique que le retour soir fait), alors elle sera aussi effectu?e.

    Index: returns.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/circ/returns.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** returns.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- returns.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,9 **** !

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations (or returns) from a workstation, after which a browser cookie will remember the correct settings. If you do returns under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb).

    !

    Now simply scan or type the returned item's identifying number (usually a barcode) in the box provided.

    !

    The return is done and if there is something specific for the item or the borrower (like borrower having debts), a red box will warn you

    !

    If the item has been requested by someone else, you also are asked to validate the request. If you confirm it, item is changed to a "waiting" status and you should warn the borrower that the item is available

    !

    If the item is requested by someone in anothe branch, then you must validate the transfer too

    --- 1,9 ---- !

    Avant de commencer, il est tr?s important que vous verifiez le site et l'imprimante choisis et que vous les changiez si n?cessaire. Cela devra ?tre fait seulement la premi?re fois que vous ferez du pr?t (ou des retours) ? partir d'un poste de travail, ensuite un cookie du navigateur m?morisera le r?glage correct.

    !

    Maintenant scannez simplement ou tapez le num?ro identifiant du document (habituellement un code ? barres)dans le pav? propos?.

    !

    Le retour est fait et s'il y a quelque chose de particulier sur le document ou l'emprunteur (comme un emprunteur ayant des dettes), un pav? rouge vous en avertira

    !

    Si le document a ?t? r?serv? par quelqu'un d'autre, on vous demandera aussi de valider la r?servation.Si vous la confirmez, le document est mis ? l'?tat "en attente" et vous devrez avertir le lecteur que le docuement est disponible.

    !

    Si le document est r?serv? par quelqu'un d'un autre site, vous devez aussi valider le transfert

    From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/import breeding.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/import In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/import Modified Files: breeding.tmpl Log Message: french version for 2.2.0 Index: breeding.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/import/breeding.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** breeding.tmpl 24 Nov 2004 16:16:53 -0000 1.4 --- breeding.tmpl 5 Jan 2005 14:35:20 -0000 1.5 *************** *** 6,12 ****

      enregistrements import?s

      !

      non import? parce que d?j? dans la base de donn?e

      non import?,parce que d?j? dans le r?servoir

      !

      not imported because they seems not to be MARC format (or ISBN/ISSN missing) !

      enregistrements trait?s

      Retour --- 6,12 ----

        enregistrements import?s

        !

        non import? parce que d?j? dans la base de donn?es

        non import?,parce que d?j? dans le r?servoir

        !

        non import? parce qu'ils ne semblent pas ?tre au format MARC (ou n? ISBN/ ISSN manquant) !

        enregistrements trait?s

        Retour *************** *** 14,21 ****

          !
        • Select a file to import into the breeding farm. It will be parsed, and for each ISBN found, a new baby will be created in the breeding farm.
        • !
        • If an ISBN already exists in the breeding farm, you can choose whether to ignore the new one or overwrite the old one.
        • !
        • You can enter a name for this import. It may be useful, when creating a biblio, to remember where the suggested MARC data comes from!
        • !
        • Of course, if the ISBN already exists in the active DB, the biblio will be ignored.
        " enctype="multipart/form-data"> --- 14,21 ----
          !
        • S?lectionner un fichier ? importer dans le r?servoir.Il sera analys?, et pour chaque ISBN trouv?, une nouvelle copie sera cr?? dans le r?servoir.
        • !
        • Si un ISBN existe d?j? dans le r?servoir, vous pouvez choisir soit d'ignorer le nouveau soit d'?craser l'ancien.
        • !
        • Vous pouvez donner un nom ? cette importation. Cela peut ?tre utile, lors de la cr?ation d'une notice, pour vous souvenir d'o? vient l'enregistrement MARC propos?!
        • !
        • Bien s?r, si l'ISBN existe d?j? dans la base de donn?es, la notice sera ignor?e.
        " enctype="multipart/form-data"> From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc search.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/search.marc Modified Files: search.tmpl Log Message: french version for 2.2.0 Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/search.marc/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- search.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 3,27 ****

        La recherche est divis?e en deux parties diff?rentes :

        Champs usuels

        !

        Les champs usuels sont dans la partie haute de l'?cran. Ils contiennent :

          !
        • Mot cl? : Recherche sur l'ensemble
        • Titre
        • Auteur
        • !
        • Code Barre : le code barre de la bibloth?que pour le livre
        • Illustrateur
        • Dewey
        • !
        • Item type : select here an item type. If none is selected, the search is done on every item type
        • !
        • Branch : select here a specific branch. If none selected, the search is done on every branch

        M?thode de Recherche

          !
        • If you enter values in more than 1 field, the search is "and-ed" (biblios that contains title AND author)
        • !
        • Une notice est s?lectionn?e si son champ contientle terme que vous avez saisi
        • !
        • If you enter a * (or a %) at the end of a term, Koha search for words starting with your term (entering inf?rieur* signifie : trouver les notices qui ont un titre contient un mot commen?ant par lower

        Recherche MARC

        !

        In the lower part of the search screen, the More fields box let you enter whatever you want : and, or, exclusions (not), search on any MARC field/subfield

        !

        REMARQUE IMPORTANTE : for performance reasons, the * is valid only if you enter a word more than 3 letters long. for words of 3 letters or less, the * is ignor?


        \ No newline at end of file --- 3,27 ----

        La recherche est divis?e en deux parties diff?rentes :

        Champs usuels

        !

        Les champs usuels sont dans la partie haute de l'?cran. Ils contiennent :

          !
        • Tous les mots : recherche sur l'ensemble de la notice
        • Titre
        • Auteur
        • !
        • Code ? Barres : le code ? barres de la bibloth?que pour le livre
        • Illustrateur
        • Dewey
        • !
        • Type de document : s?lectionnez ici un type de document. Si aucun n'est s?lectionn?, la recherche est lanc?e sur tous les types
        • !
        • Site : S?lectionnez un site pr?cis.Si vous n'en s?lectionnez aucun, la recherche se fera sur tous les sites

        M?thode de Recherche

          !
        • Si vous renseignez plus d'un champ, votre recherche sera de type "et" (les notices contenant titre ET auteur)
        • !
        • Une notice est s?lectionn?e si son champ contientle terme que vous avez saisi
        • !
        • Si vous saisissez un * (ou un %) ? la fin d'un terme, Koha recherche les mots qui commencent par le terme saisi inf?rieur* signifie : trouver les notices qui ont un titre contient un mot commen?ant par lower

        Recherche MARC

        !

        Dans la partie inf?rieure de l'?cran de recherche, le pav? Plus de champs, vous permet de saisir ce que vous voulez : et, ou, non (exclusions), recherche sur tous les champs/sous-champs MARC

        !

        REMARQUE IMPORTANTE : Pour des raisons d'efficacit? l'* est active uniquement si vous entrez un mot d'au moins 3 lettres.pour les mots de 3 lettres ou moins, l'* est ignor?e ignor?


        \ No newline at end of file From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/import breeding.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/import In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/import Modified Files: breeding.tmpl Log Message: french version for 2.2.0 Index: breeding.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/import/breeding.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** breeding.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- breeding.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 2,13 ****

        Importer cette notice

        This is one of the screens you will see frequently if you are starting from scratch.

        !

        It is useful to import a bunch of iso2709 biblios that can be used later for a quick cataloguing

        !

        First, you need to browse your computer to find the MARC record that you grabbed for your item. Click on

        !

        Choose File to browse.

        !

        If you aren't sure if you've already imported a record, keep the radio button set to

        Ignorer celui-ci, garder l'existant

        You can "name" the import to help you when you need to choose between more than 1 imported biblio (or just want to keep trace on where the biblios comes from)

        Codage des caract?res (MARC21 ou UNIMARC)

        You don't need to actually name every import, so you don't need to fill in this box if you don't want to. It is useful for telling imports apart if you've more than one of the same record.

        !

        IMPORTANT : This tool is NOT intended to import iso2709 in your ACTIVE DB. If you need to migrate datas from another ILS, then you must consider $kohaInstall/scripts/misc/bulkmarcimport.pl

        --- 2,13 ----

        Importer cette notice

        This is one of the screens you will see frequently if you are starting from scratch.

        !

        C'est utile d'importer un paquet de notices iso2709 qui pourront ?tre utilis?es plus tard pour un catalogage rapide

        !

        Au pr?alable, vous devez parcourir votre ordinateur pour trouver l'enregistrement MARC que vous avez s?lectionn? pour votre document.Cliquez

        !

        Choisir le dossier ? rechercher.

        !

        Si vous n'?tes pas s?r d'avoir d?j? import? un enregistrement laissez le button r?gl? sur

        Ignorer celui-ci, garder l'existant

        You can "name" the import to help you when you need to choose between more than 1 imported biblio (or just want to keep trace on where the biblios comes from)

        Codage des caract?res (MARC21 ou UNIMARC)

        You don't need to actually name every import, so you don't need to fill in this box if you don't want to. It is useful for telling imports apart if you've more than one of the same record.

        !

        IMPORTANT : Cet outil n'est PAS pr?vu pour importer de l' iso2709 dans votre Base de Donn?es ACTIVE.Si vous avez besoin de migrer des donn?es ? partir d'un autre SIGB, alors vous devez utiliser $kohaInstall/scripts/misc/bulkmarcimport.pl

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/export marc.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/export In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/export Modified Files: marc.tmpl Log Message: french version for 2.2.0 Index: marc.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/export/marc.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** marc.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- marc.tmpl 5 Jan 2005 14:35:20 -0000 1.2 *************** *** 1,8 **** !

        iso 2709 export

        This is a tool to export your bibliographic records in standard MARC communications format (ISO2709). It exports only the basic bibliographic information with no holdings information other than any holdings information originally loaded into Koha using the bulkmarcimport tool.

        You are asked to provide a starting biblio record number and an ending number for the export. If you want to export all of your records, leave the start and end numbers blank.

        !

        Records are downloaded to the workstation that requests the export and are saved in a file called "marc.pl."

        --- 1,8 ---- !

        export iso2709

        This is a tool to export your bibliographic records in standard MARC communications format (ISO2709). It exports only the basic bibliographic information with no holdings information other than any holdings information originally loaded into Koha using the bulkmarcimport tool.

        You are asked to provide a starting biblio record number and an ending number for the export. If you want to export all of your records, leave the start and end numbers blank.

        !

        Les enregistrements sont charg?s sur le poste de travail qui a demand? l'exportation et sont sauv?s dans un fichier nomm? "marc.pl."

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:54 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/marcimport AcceptBiblioitem.tmpl,1.3,1.4 AcceptItemCopy.tmpl,1.3,1.4 marcimportdetail.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/marcimport Modified Files: AcceptBiblioitem.tmpl AcceptItemCopy.tmpl marcimportdetail.tmpl Log Message: french version for 2.2.0 Index: AcceptBiblioitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/AcceptBiblioitem.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AcceptBiblioitem.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- AcceptBiblioitem.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 8,17 **** ! --- 8,17 ----
        Enregistrement d?j? dans la Base de Donn?e
        ! is already in the database with biblionumber and biblioitemnumber
        ! *************** *** 26,30 ****
        Enregistrement d?j? dans la base de donn?es
        ! est d?j? dans la base de donn?es avec le num?ro de notice /
        ! has been entered into the database with biblionumber and biblioitemnumber
        --- 26,30 ----
    ! a ?t? saisi dans la base de donn?es avec le num?ro de notice /
    *************** *** 41,45 **** "> ! --- 41,45 ---- ">
    CODE BARRE"> Site d'affectation:
    ! Index: AcceptItemCopy.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/AcceptItemCopy.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AcceptItemCopy.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- AcceptItemCopy.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 2,6 ****
    ! Le Code Barre a d?j? ?t? attribu?

    --- 2,6 ----

    ! Le Code ? Barres a d?j? ?t? attribu?

    *************** *** 10,14 ****

    CODE A BARRES"> Site d'affectation:
    ! Exemplaire ajout? avec code barre
    --- 10,14 ----
    ! Exemplaire ajout? avec code ? barres
    Index: marcimportdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/marcimport/marcimportdetail.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** marcimportdetail.tmpl 24 Nov 2004 16:17:14 -0000 1.3 --- marcimportdetail.tmpl 5 Jan 2005 14:35:21 -0000 1.4 *************** *** 32,36 ****
    Ann?e de Publication" size="5" maxlength="10">
    Editeur" size="40" maxlength="255">
    Localisation" size="40" maxlength="255">
    Pages" size="5" maxlength="10">
    Taille" size="40" maxlength="40">
    Ann?e de Publication" size="5" maxlength="10">
    Editeur" size="40" maxlength="255">
    Emplacement" size="40" maxlength="255">
    Pages" size="5" maxlength="10">
    Taille" size="40" maxlength="40">
    !
    G?n?rer le code barre ? partir du num?ro d'inventaire
      !
    • Select a range of inventary codes. You can select wether a continuous range or individual inventary codes
    • !
    • S?lectionner le de code-barres ? g?n?rer
    • D?finissez la taille de la page pour le PDF
    • !
    • Depending on page size, Koha will show you how the page is arranged ! for each barcode. You can define wich point to start printing the page.
    --- 41,55 ----
    !

    G?n?rateur de code ? barres

    !
    G?n?rer le code ? barres ? partir du num?ro d'inventaire
      !
    • S?lectionnez une plage pour les num?ros d'inventaire. Vous pouvez s?lectionner une s?rie continue ou une liste de codes disjoints
    • !
    • S?lectionner le style de mod?le pour g?n?rer des codes ? barres
    • D?finissez la taille de la page pour le PDF
    • !
    • Koha va afficher la disposition , qui varie suivant la taille de la page, de tous les codes ? barres.Vous pouvez d?finir ? quel endroit l'impression commence.
    *************** *** 117,121 **** ! --- 116,120 ----
    Code cat?gorie
    ! Index: printerConfig.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/barcodes/printerConfig.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** printerConfig.tmpl 24 Nov 2004 16:13:31 -0000 1.1 --- printerConfig.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 4,8 ****
    Code Pays
    !
    S?lectionner la configuration d'imprimante correspondant ? votre environnement
    --- 4,8 ---- !
    S?lectionner la configuration d'imprimante correspondant ? votre environnement
    *************** *** 12,17 ****
  • Entrez le type de page
  • Entres le nombre de colonnes et de lignes dans votre page
  • !
  • Set margin left and margin bottom of the page that you are going to use. This parameters will ! help to center the barcodes into the labels.

  • --- 12,16 ----
  • Entrez le type de page
  • Entres le nombre de colonnes et de lignes dans votre page
  • !
  • D?finissez les marges gauches et basses pour la page que vous souhaitez utiliser. Ces param?tres aideront ? centrer les codes barres sur les ?tiquettes.

  • *************** *** 96,100 ****
    !
    !
    ! --- 60,64 ----
    Abr?g? Utilis? Le choisir
    ! Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/authorities/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 24 Nov 2004 16:13:30 -0000 1.1 --- searchresultlist.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 35,39 ****
    R?sum? Utilis? Le choisir
    ! --- 35,39 ----
    Abr?g? Utilis? Voir
    ! *************** *** 46,50 **** From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/errors 400.tmpl,1.1,1.2 401.tmpl,1.1,1.2 402.tmpl,1.1,1.2 403.tmpl,1.1,1.2 404.tmpl,1.1,1.2 405.tmpl,1.1,1.2 500.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/errors Modified Files: 400.tmpl 401.tmpl 402.tmpl 403.tmpl 404.tmpl 405.tmpl 500.tmpl Log Message: french version for 2.2.0 Index: 400.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/400.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 400.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 400.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a ?t? rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • Index: 401.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/401.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 401.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 401.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • Cette erreur signifie que vous n'?tes pas autoris? ? visualiser cette page
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que vous n'?tes pas autoris? ? visualiser cette page
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • Index: 402.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/402.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 402.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 402.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a ?t? rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • Index: 403.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/403.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 403.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 403.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a ?t? rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • Index: 404.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/404.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 404.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 404.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a ?t? rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • Index: 405.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/405.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 405.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 405.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,18 ****
    !
  • This error means that the link was broken and that the page doesn't exist
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • --- 13,18 ----
    !
  • Cette erreur signifie que le lien a ?t? rompu et que la page n'existe plus
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • Index: 500.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/errors/500.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** 500.tmpl 24 Nov 2004 16:14:39 -0000 1.1 --- 500.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 13,19 ****
    !
  • In koha this typically mean that the koha-team is working on a new options
  • Attendez une meilleure version ou envoyez un mail ? la maintenance
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • --- 13,19 ----
    !
  • Dans Koha, ceci signifie normalement, que l'?quipe de Koha travaille ? de nouvelles options
  • Attendez une meilleure version ou envoyez un mail ? la maintenance
  • !
  • Utilisez la barre de menu principale pour naviguer ? nouveau dans Koha.
  • From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/help/bull bull-home.tmpl,1.1,1.2 statecollection.tmpl,1.1,1.2 subscription-add.tmpl,1.1,1.2 subscription-detail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/help/bull Modified Files: bull-home.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl Log Message: french version for 2.2.0 Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- bull-home.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 1,5 ****

    Aide de Abonnement P?riodiques

    !
  • Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York
  • Si vous voulez cr?er un nouvel abonnement, cliquez sur Ajouter un abonnement \ No newline at end of file --- 1,5 ----

    Aide de Abonnement P?riodiques

    !
  • Chercher un abonnement en utilisant le bouton (avec un ISSN ou un titre)Si vous saisissez un titre, vous pouvez utiliser le joker % : %Monde% renverra tous les abonnement contenant Monde dans le titre
  • Si vous voulez cr?er un nouvel abonnement, cliquez sur Ajouter un abonnement \ No newline at end of file Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/statecollection.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** statecollection.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- statecollection.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 3,26 ****

    Cet ?cran est divis? en 2 parties

    La partie droite

    !

    The right part deals with issues. When you create a new subscription, the 1st issue is automatically calculated. When you want/need, you can define issues that have a new status:

      !
    • Arrived : when an book arrives, you can set it's status to "arrived". Then, the issue disappear from this list, and the number of the issue is added to the "arrived list" (on the left box)
    • !
    • Late : means that the book is late and should be arrived. A books changed to "late" status stays on the issue list, and the next waited number is generated
    • !
    • Missing : means the book will never arrive. The issue disappear from the list, and the number of the issue is added to the "missing list" (on the left box)

    La partie gauche

    !

    the left part contains 6 differents informations, that are automatically calculated for some of them, but that you can change

      !
    • Subscription beginning date : the date of the beginning of the 1st subscription. Should not be modified and is not modified automatically by subscriptions renewals
    • !
    • Subscription enddate : must be entered manually when the subscription is definetly closed
    • !
    • Arrived numbers : the list of issues you have in your library. Automatically filled when a new number is marked "arrived". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • !
    • Missing numbers : the list of issues you don't have in your library, and that will never arrive (or have been lost). Automatically filled when a new number is marked "missing". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • !
    • opac note : the field that appears in the OPAC (with some other subscription information like beginning date & end date. This field must be filled manually. Nothing is put here automatically
    • !
    • opac note : the field that appears in the librarian interface (with some other subscription information like beginning date & end date. This field must be filled manually. Nothing is put here automatically.

    Renouvellement d'abonnement

    !

    Koha calculates automatically the end of the subscription (based on the start date and the number of issues recieved). when a subscription has ended, you can't change the status of the last "waited number" (as it's not waited in fact). To be able to "recieve" this number, you must renew your subscription.

    !

    Renewing a subscription means that you define some informations for the renewal. When those informations have been filled, a suggestion is automatically created in Koha. This suggestion can be managed by the librarian that orders books, as any other order (= budget & bookseller are defined here).

    !

    Note that the subscription renewal done by the "serials librarian" is supposed to be immediate. We have decided to keep Koha as simple as possible. In fact, the subscription renewal won't be immediate, but we didn't wanted to add too much complexity.

    \ No newline at end of file --- 3,26 ----

    Cet ?cran est divis? en 2 parties

    La partie droite

    !

    La partie droite concerne les parutions.Quand vous cr?er un nouvel abonnement, le 1er num?ro est calcul?e automatiquement.Lorsque vous voulez/ avez besoin,vous pouvez d?finir les numeros qui ont un nouveau statut :

      !
    • Arriv? : lorqu'un bulletin arrive, vous pouvez le mettre en ?tat"arriv?". Le bulletin disparait de la liste et le num?ro est ajout? dans la liste des bulletins arriv?s (? gauche)
    • !
    • En retard : signifie que le document est en retard et devrait ?tre arriv?.Un num?ro, qui not? ? l'?tat en retard reste dans la liste des bulletins attendus et le bulletin suivant attendu est g?n?r?
    • !
    • Manquant : signifie que la livraison n'aura jamais lieu.Le num?ro dispara?t de la liste et est ajout? ? la liste "Liste des lacunes" (sur la partie gauche)

    La partie gauche

    !

    Il y a 6 informations diff?rentes dans la partie gauche, qui sont calcul?es automatiquement pour la plupart, mais vous pouvez les changer

      !
    • Date de d?but d'abonnement : la date de d?but du premier abonnement.Ne devrait ?tre modifi?e et n'est pas modifi? automatiquement lors du renouvellement des abonnements
    • !
    • date de fin d'abonnement : doit ?tre entr? manuellement lorsque l'abonnement est d?finitivement clos
    • !
    • Num?ros arriv?s : la liste des num?ros que vous avez dans votre biblioth?que. Automatiquement rempli quand un bulletin est marqu? arriv?. Vous pouvez modifier ce champ manuellement, par exemple pour changer une longue liste (1,2,3,4,...,51) en une plus courte(1-50)
    • !
    • Num?ros manquants : la liste des num?ros que vous n'avez pas dans votre biblioth?que, et qui n'arriveront jamais (ou qui ont ?t? perdus).
    • !
    • note de l'OPAC : le champ qui appara?t ? l'OPAC (avec quelques autres informations sur l'abonnement comme la date de d?but et de fin).Ce champ doit ?tre rempli manuellement.Rien n'est mis ici automatiquement
    • !
    • Note de l'OPAC : le champ qui appara?t dans l'interface biblioth?caire (avec quelques autres informations sur l'abonnement comme la date de d?but et de fin).Ce champ doit ?tre rempli manuellement.Rien n'est mis ici automatiquement

    Renouvellement d'abonnement

    !

    Koha calcule automatiquement la fin de l'abonnement (? partir de la date de d?but et du nombre d'exemplaires re?us). Lorsqu'un abonnement a pris fin, vous ne pouvez plus changer l'?tat du dernier "exemplaire en attente" (car il n'est plus attendu en fait). Pour pouvoir "recevoir" ce num?ro, vous devez renouveler votre abonnement.

    !

    Renouveller un abonnement signifie que vous devez compl?ter quelques informations pour le renouvellement.Lorsque ces informations sont saisies, une suggestion est automatiquement cr??e dans Koha.Cette suggestion peut- ?tre g?r?e par la/le biblioth?caire qui commande les livres, comme n'importe quelle autre commande (= budget et fournisseur sont d?finis ici).

    !

    Noter que le renouvellement de l'abonnement fait par le biblioth?caire responsable des p?riodiques est cens? ?tre imm?diat.Nous avons choisi de rendre Koha aussi simple que possible.En fait, le renouvellement de l'abonnement ne peut pas ?tre imm?diat, mais nous n'avons pas voulu ajouter trop de complications.

    \ No newline at end of file Index: subscription-add.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/subscription-add.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-add.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- subscription-add.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 3,19 ****

      Bloc d'information d'abonnement

      !

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Bloc d'information sur le calendrier

      Contient des informations diverses pour calculer les dates d'arriv?e

      !

      Dur?? d'abonnement

      !

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Calcul de la num?rotation

      !

      The numbering of issues recieved can be a complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Ajouter: ce nombre est ajout? ? XYZ
      • !
      • once every : the number before can be added on every issue or less often
      • Quand sup?rieur ? : si le chiffre calcul? est sup?rieur ? la valeur ci
      • !
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • !
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Echantillon

      --- 3,19 ----

        Bloc d'information d'abonnement

        !

        Comporte le nom du biblioth?caire qui a cr?? l'abonnement, le nom du fournisseur qui procure l'abonnement, le prix et le budget affect?.Comporte aussi le titre de la notice concern?e par l'abonnement

        Bloc d'information sur le calendrier

        Contient des informations diverses pour calculer les dates d'arriv?e

        !

        Dur?e d'abonnement

        !

        Un champ de ce bloc doit ?tre rempli : la dur?e de l'abonnement peut ?tre calcul?e en semaines, mois ou nombre de num?ros ? recevoir

        Calcul de la num?rotation

        !

        Le num?ro des bulletins re?us peut ?tre une formule complexe. La formule peut contenir n'importe quel texte et/ou chiffre. {X} {Y} et {Z} sont particuliers. Vous pouvez les utiliser pour d?finir une formule de calcul. les valeurs de XYZ sont calcul?es de la mani?re suivante :

        • Ajouter: ce nombre est ajout? ? XYZ
        • !
        • toutes les : le nombre avant peut ?tre ajouter ? chaque parution ou moins souvent
        • Quand sup?rieur ? : si le chiffre calcul? est sup?rieur ? la valeur ci
        • !
        • Retourner ? : si la condition pr?c?dente est valid?e, le num?ro calcul? est fix? ? celui-ci ? la place
        • !
        • Derni?re valeur/commence avec : la derni?re valeur calcul?e ou la 1?re (quand on ajoute un abonnement)

        Echantillon

        *************** *** 24,30 ****
      Donnera les num?ros de parution suivants !

      N?2004/1, N?2004/2, N?2004/3, N?2004/4, N?2005/1, N?2005/2, N?2005/3, N?2005/4, N?2006/1

      ! Note: when you add a subscription, Koha consider you already have done the order, or that you will do it soon. So, NO information is sent to the acquisition module. This is not the case when the subscription expires. In this case, a subscription renewal creates a "suggestion" that is sent to the acquisition module.

      \ No newline at end of file --- 24,30 ----
    Donnera les num?ros de parution suivants !

    N?2004/1, N?2004/2, N?2004/3, N?2004/4, N?2005/1, N?2005/2, N?2005/3, N? 2005/4, N?2006/1

    ! Note:lorsque vous ajoutez un abonnement, Koha consid?re que vous avez d?j? pass? la commande o? que vous allez le faire bient?t.Aussi, AUCUNE information n'est envoy?e vers le module acquisition.Ca n'est pas le cas quand l'abonnement arive ? expiration.Dans ce cas,un renouvellement de l'abonnement cr?e une

    \ No newline at end of file Index: subscription-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/help/bull/subscription-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-detail.tmpl 24 Nov 2004 16:15:49 -0000 1.1 --- subscription-detail.tmpl 5 Jan 2005 14:35:19 -0000 1.2 *************** *** 1,20 ****

    Aide de Abonnement P?riodiques d?tail

    ! In this screen, you can see subscription detail, and modify it if you need.

      Bloc d'information d'abonnement

      !

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Bloc d'information sur le calendrier

      Contient des informations diverses pour calculer les dates d'arriv?e

      !

      Dur?? d'abonnement

      !

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Calcul de la num?rotation

      !

      The numbering of items recieved can contain complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Ajouter: ce nombre est ajout? ? XYZ
      • !
      • once every : the number before can be added on every issue or less often
      • Quand sup?rieur ? : si le chiffre calcul? est sup?rieur ? la valeur ci
      • !
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • !
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Echantillon

      --- 1,20 ----

      Aide de Abonnement P?riodiques d?tail

      ! Sur cet ?cran, vous pouvez voir le d?tail de l'abonnement, et le modifier si n?cessaire.

        Bloc d'information d'abonnement

        !

        Comporte le nom du biblioth?caire qui a cr?? l'abonnement, le nom du fournisseur qui procure l'abonnement, le prix et le budget affect?.Comporte aussi le titre de la notice concern?e par l'abonnement

        Bloc d'information sur le calendrier

        Contient des informations diverses pour calculer les dates d'arriv?e

        !

        Dur?e d'abonnement

        !

        Un champ de ce bloc doit ?tre rempli : la dur?e de l'abonnement peut ?tre calcul?e en semaines, mois ou nombre de num?ros ? recevoir

        Calcul de la num?rotation

        !

        La num?rotation des exemplaires re?us peut comprendre une formule complexe. La "Formule de num?rotation" peut ?tre remplie avec n'importe quel texte et/ ou nombre.{X} {Y} et {Z} peuvent ?tre utilis?es pour d?finir la formule de calcul.Les valeurs de XYZ sont calcul?es selon la mani?re suivante

        • Ajouter: ce nombre est ajout? ? XYZ
        • !
        • toutes les : le nombre avant peut ?tre ajouter ? chaque parution ou moins souvent
        • Quand sup?rieur ? : si le chiffre calcul? est sup?rieur ? la valeur ci
        • !
        • Retourner ? : si la condition pr?c?dente est valid?e, le num?ro calcul? est fix? ? celui-ci ? la place
        • !
        • Derni?re valeur/commence avec : la derni?re valeur calcul?e ou la 1?re (quand on ajoute un abonnement)

        Echantillon

        *************** *** 23,27 ****
      • Y ajouter 1 toutes les 1 fois.Quand sup?rieur ? 4 Retourner ? 4. Commence par 1
      • Donnera les num?ros de parution suivants ! N?2004/1,N?2004/2,N?2004/3,N?2004/4,N?2005/1,N?2005/2,N?2005/3,N?2005/4,N?2006/1

        --- 23,27 ----
      • Y ajouter 1 toutes les 1 fois.Quand sup?rieur ? 4 Retourner ? 4. Commence par 1
      • Donnera les num?ros de parution suivants ! N?2004/1, N?2004/2, N?2004/3, N?2004/4, N?2005/1, N?2005/2, N?2005/3, N? 2005/4, N?2006/1

        From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple addbiblio.tmpl,1.12,1.13 addbooks.tmpl,1.5,1.6 additem-nomarc.tmpl,1.3,1.4 additem.tmpl,1.8,1.9 isbnsearch.tmpl,1.4,1.5 marcimport.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/acqui.simple Modified Files: addbiblio.tmpl addbooks.tmpl additem-nomarc.tmpl additem.tmpl isbnsearch.tmpl marcimport.tmpl Log Message: french version for 2.2.0 Index: addbiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/addbiblio.tmpl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** addbiblio.tmpl 24 Nov 2004 16:11:16 -0000 1.12 --- addbiblio.tmpl 5 Jan 2005 14:35:18 -0000 1.13 *************** *** 57,61 ****

        Vous devez soit :

        --- 57,61 ----

        Vous devez soit :

        *************** *** 455,460 **** alertString2 = _("Formulaire non soumis ? cause du (des) probl?me(s) suivant(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 { --- 455,460 ---- alertString2 = _("Formulaire non soumis ? cause du (des) probl?me(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_missing_mandatory_tags +_("Champ(s) obligatoire(s) non renseign?(s)"); ! alertString2 += "\n- "+ total_missing_mandatory_subfields +_("champs obligatoires non renseign?s (voir les champs en caract?re gras)"); alert(alertString2); } else { Index: addbooks.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/addbooks.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** addbooks.tmpl 24 Nov 2004 16:11:16 -0000 1.5 --- addbooks.tmpl 5 Jan 2005 14:35:18 -0000 1.6 *************** *** 1,5 **** !
        !

        Gestion des notices MARC

        Pas d'exemplaire(s) trouv?(s) --- 1,5 ---- !
        !

        Gestion des notices MARC

        Pas d'exemplaire(s) trouv?(s) *************** *** 11,21 ****
        !

        Pour ajouter une nouvelle notice/exemplaire, scannez ou entrez le code ISBN/ ISSN

        !

        !

        Cr?er une nouvelle notice

        --- 11,21 ----

        !

        Pour ajouter une nouvelle notice/exemplaire, scannez ou entrez le code ISBN/ ISSN

        !

        !

        Cr?er une nouvelle notice

        *************** *** 27,40 **** ! !

        !

        Optimisation

        !

        If the ISBN or title is found in the biblio table, it will be retrieved and can be modified.
        ! If the ISBN or title is found in the breeding farm, it will be retrieved and a biblio will be added.
        ! Sinon, une notice peut-?tre ajout? ? partir de z?ro.

        ! --- 27,41 ---- ! ! !

        !

        Optimisation

        !

        Si l'ISBN ou le titre est trouv? dans la table il peut ?tre r?cup?r? puis modifi?
        ! Si l'ISBN ou le titre est trouv? dans le r?servoir, il sera r?cup?r? et une notice sera rajout?e
        ! Sinon, une notice peut-?tre ajout?e en partant de z?ro.

        ! Index: additem-nomarc.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem-nomarc.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** additem-nomarc.tmpl 24 Nov 2004 16:11:16 -0000 1.3 --- additem-nomarc.tmpl 5 Jan 2005 14:35:18 -0000 1.4 *************** *** 5,9 ****

        !

        Vous devez attribuer un code barre ? l'exemplaire

        --- 5,9 ----

        !

        Vous devez attribuer un code ? barres ? l'exemplaire

        *************** *** 11,15 **** !

        D?sol?, ce code barre est d?j? utilis?

        NOTICE

        --- 11,15 ---- !

        D?sol?, ce code ? barres est d?j? utilis?

        NOTICE

        *************** *** 29,33 ****

        !

        --- 29,33 ----

        !

        *************** *** 44,48 ****

        AJOUTER UN NOUVEL EXEMPLAIRE

        Pour un site Web ajouter seulement le groupe

        !

        --- 44,48 ----

        AJOUTER UN NOUVEL EXEMPLAIRE

        Pour un site Web ajouter seulement le groupe

        !

        Index: additem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/additem.tmpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** additem.tmpl 24 Nov 2004 16:11:16 -0000 1.8 --- additem.tmpl 5 Jan 2005 14:35:18 -0000 1.9 *************** *** 46,53 **** "> !

        ERREUR : Code barre d?j? utilis?!
        ! "> --- 46,53 ---- "> !
        ERREUR : Code ? barres d?j? utilis?!
        ! "> *************** *** 95,99 **** alertString2 = _("Formulaire non soumis ? cause du (des) probl?me(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_errors+_(" mandatory fields empty (see bold subfields)"); alert(alertString2); } --- 95,99 ---- alertString2 = _("Formulaire non soumis ? cause du (des) probl?me(s) suivant(s)"); alertString2 += "\n------------------------------------------------------------------------------------\n"; ! alertString2 += "\n- "+ total_errors+_("champs obligatoires non renseign?s (voir les champs en caract?re gras)"); alert(alertString2); } *************** *** 104,108 **** } function confirm_deletion(bibid,itemnum) { ! var is_confirmed = confirm(_('Confirmez-vous la suppression de l'ouvrage ?')); if (is_confirmed) { window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum; --- 104,108 ---- } function confirm_deletion(bibid,itemnum) { ! var is_confirmed = confirm(_('Confirmez-vous la suppression de l exemplaire ?')); if (is_confirmed) { window.location = "additem.pl?op=delitem&bibid="+bibid+"&itemnum="+itemnum; Index: isbnsearch.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/isbnsearch.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** isbnsearch.tmpl 24 Nov 2004 16:11:16 -0000 1.4 --- isbnsearch.tmpl 5 Jan 2005 14:35:18 -0000 1.5 *************** *** 1,7 **** !
        !

        R?sultats de la recherche de notice

        !

        Vous recherchiez ISBN titre

        r?ponses

        --- 1,7 ---- !
        !

        R?sultats de la recherche de notice

        !

        Vous recherchiez ISBN titre

        r?ponses

        *************** *** 10,20 ****
        !

        Notices dans Koha

  • R?sum? Utilis? Voir "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt="Autorit? num?ro "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt='Autorit? num?ro ' title='autorit? num?ro '>
    ! ! ! ! --- 10,20 ----
    !

    Notices dans Koha

    TitreAuteur&copier; 
    ! ! ! ! *************** *** 25,31 **** ! ! --- 25,31 ---- ! ! *************** *** 61,65 ****

    !

    Notices dans le r?servoir

    TitreAuteur&copier; 
    " class="button acquisition">Ajouter des ouvrages " class="button acquisition">Ouvrir
    " class="button catalogue">Ajouter des documents " class="button catalogue">Ouvrir
    --- 61,65 ----

    !

    Notices dans le r?servoir

    *************** *** 91,97 ****

    ! " class="button acquisition">Ajouter une nouvelle notice ! " class="button acquisition">Ajouter une nouvelle notice

    --- 91,103 ----

    ! " class="button catalogue">Ajouter une nouvelle notice ! ! " class="button catalogue">Ajouter une nouvelle notice

    *************** *** 99,101 **** ! --- 105,107 ---- ! Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/acqui.simple/marcimport.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** marcimport.tmpl 24 Nov 2004 16:11:16 -0000 1.4 --- marcimport.tmpl 5 Jan 2005 14:35:18 -0000 1.5 *************** *** 12,18 ****

      enregistrements import?s

      !

      non import? parce que d?j? dans la base de donn?e

      non import?,parce que d?j? dans le r?servoir

      !

      not imported because they seems not to be MARC format (or ISBN/ISSN missing) !

      enregistrements trait?s

      Retour aux acquisitions --- 12,18 ----

        enregistrements import?s

        !

        non import? parce que d?j? dans la base de donn?es

        non import?,parce que d?j? dans le r?servoir

        !

        non import? parce qu'ils ne semblent pas ?tre au format MARC (ou n? ISBN/ ISSN manquant) !

        enregistrements trait?s

        Retour aux acquisitions *************** *** 20,27 ****

          !
        • Select a file to import into the breeding farm. It will be parsed, and for each ISBN found, a new baby will be created in the breeding farm.
        • !
        • If an ISBN already exists in the breeding farm, you can choose whether to ignore the new one or overwrite the old one.
        • !
        • You can enter a name for this import. It may be useful, when creating a biblio, to remember where the suggested MARC data comes from!
        • !
        • Of course, if the ISBN already exists in the active DB, the biblio will be ignored.
        " enctype="multipart/form-data"> --- 20,27 ----
          !
        • S?lectionner un fichier ? importer dans le r?servoir.Il sera analys?, et pour chaque ISBN trouv?, une nouvelle copie sera cr?? dans le r?servoir.
        • !
        • Si un ISBN existe d?j? dans le r?servoir, vous pouvez choisir soit d'ignorer le nouveau soit d'?craser l'ancien.
        • !
        • Vous pouvez donner un nom ? cette importation. Cela peut ?tre utile, lors de la cr?ation d'une notice, pour vous souvenir d'o? vient l'enregistrement MARC propos?!
        • !
        • Bien s?r, si l'ISBN existe d?j? dans la base de donn?es, la notice sera ignor?e.
        " enctype="multipart/form-data"> From tipaul at users.sourceforge.net Wed Jan 5 15:35:55 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 05 Jan 2005 06:35:55 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/bull receipt-search-result.tmpl,1.1,1.2 result.tmpl,1.1,1.2 search.tmpl,1.1,1.2 searchresultlist.tmpl,1.1,1.2 serial-issues.tmpl,1.1,1.2 statecollection.tmpl,1.1,1.2 subscription-add.tmpl,1.1,1.2 subscription-detail.tmpl,1.1,1.2 subscription-renew.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28050/koha-tmpl/intranet-tmpl/default/fr/bull Modified Files: receipt-search-result.tmpl result.tmpl search.tmpl searchresultlist.tmpl serial-issues.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl subscription-renew.tmpl Log Message: french version for 2.2.0 Index: receipt-search-result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/receipt-search-result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** receipt-search-result.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- receipt-search-result.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 36,40 ****
    --- 36,40 ---- Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** result.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- result.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 31,35 ****
    ! --- 31,35 ----
    Abr?g?  
    ! *************** *** 48,56 **** --- 48,52 ---- Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- search.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 11,15 ****

    Rechercher sur

    ! --- 11,15 ----

    Rechercher sur

    ! Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- searchresultlist.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 31,35 ****

    R?sum?  
    class="hilighted"> - ','') ">Le choisir - - Non R?servable -
    ! --- 31,35 ----
    Abr?g? Utilis? Voir
    ! *************** *** 42,46 **** Index: serial-issues.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/serial-issues.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** serial-issues.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- serial-issues.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 68,72 ****

    Abonnement pour ! pr?ts semaines mois --- 68,72 ----

    Abonnement pour ! sorties semaines mois Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/bull/statecollection.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** statecollection.tmpl 24 Nov 2004 16:13:33 -0000 1.1 --- statecollection.tmpl 5 Jan 2005 14:35:18 -0000 1.2 *************** *** 3,32 ****

    !

    Abonnement pour

    " class="button bull">Abonnement
    -

    R?sum? d'abonnement

    - - - "> - "> - "> -

    -

    ">

    -

    ">

    -

    N? Arriv?s

    -

     

    -

    Num?ros enregistr?s

    -

     

    -

    Remarque de l'OPAC

    -

     

    -

    Note interne

    -

     

    - - -
    - -

    Num?ros attendus ou en retard

    --- 3,10 ----
    !

    Abonnement pour

    " class="button bull">Abonnement

    Num?ros attendus ou en retard

    *************** *** 83,92 **** !

    Subscription has expired. Waited last issue status can't be changed. Renew your subscription

    !
    R?sum? Utilis? Voir "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt="Autorit? num?ro "> ! //images/fileopen.png" width="32" hspace="0" vspace="0" border="0" alt='Autorit? num?ro ' title='Autorit? num?ro '>
    From oleonard at users.sourceforge.net Wed Jan 5 16:46:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 05 Jan 2005 07:46:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes countryCodes.dat,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10266/koha-tmpl/intranet-tmpl/npl/en/includes/countryCodes Added Files: countryCodes.dat Log Message: Required for barcode generator --- NEW FILE --- 00 = USA I 93 = Australia 94 = New Zealand 779 = Argentina 773 = Uruguay 30 = France I 84 = Spain 45 = Japan 777 = Bolivia 80 = Italy I 73 = Sweden 40 = Germany 31 = France II 254 = Ucrania From oleonard at users.sourceforge.net Wed Jan 5 16:46:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 05 Jan 2005 07:46:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig itemsLabelConfig.conf,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10266/koha-tmpl/intranet-tmpl/npl/en/includes/labelConfig Added Files: itemsLabelConfig.conf Log Message: Required for barcode generator --- NEW FILE --- marginBottom = 25 pageType = A4 columns = 5 systemDpi = 96 labelHeigth = 21 rows = 13 marginLeft = 2 labelWidth = 41 From tipaul at users.sourceforge.net Thu Jan 6 15:32:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Thu, 06 Jan 2005 06:32:20 -0800 Subject: [Koha-cvs] CVS: koha/C4 Biblio.pm,1.114,1.115 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15653/C4 Modified Files: Biblio.pm Log Message: improvement of speed for bulkmarcimport. A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas. this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10. Index: Biblio.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v retrieving revision 1.114 retrieving revision 1.115 diff -C2 -r1.114 -r1.115 *** Biblio.pm 3 Jan 2005 10:48:33 -0000 1.114 --- Biblio.pm 6 Jan 2005 14:32:17 -0000 1.115 *************** *** 1135,1140 **** my $tagfield; my $subfield; ! $sth->execute($frameworkcode, $kohatable . "." . $kohafield ); ! ( $tagfield, $subfield ) = $sth->fetchrow; foreach my $field ( $record->field($tagfield) ) { if ( $field->subfield($subfield) ) { --- 1135,1139 ---- my $tagfield; my $subfield; ! ( $tagfield, $subfield ) = MARCfind_marc_from_kohafield("",$kohatable.".".$kohafield,$frameworkcode); foreach my $field ( $record->field($tagfield) ) { if ( $field->subfield($subfield) ) { *************** *** 2635,2638 **** --- 2634,2642 ---- # $Id$ # $Log$ + # Revision 1.115 2005/01/06 14:32:17 tipaul + # improvement of speed for bulkmarcimport. + # A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas. + # this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10. + # # Revision 1.114 2005/01/03 10:48:33 tipaul # * bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) From tipaul at users.sourceforge.net Thu Jan 6 16:25:38 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Thu, 06 Jan 2005 07:25:38 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr migrer_ses_donnees.xml,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha-doc/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27117/fr Added Files: migrer_ses_donnees.xml Log Message: document explaining how to migrate data & set up a highly tuned Koha catalogue (in French, sorry for frenchphobes or french-ignorants) --- NEW FILE --- Param?trer et migrer ses donn?es vers Koha 2.2 Introduction 2002-01-06 Paul POULAIN Consultant ind?pendant en logiciels libres, Koha "Release Manager" pour la version 2.0 puis 2.2, membre du comit? de pilotage internationalpaul AT koha-fr.org 2.2.0 2005-01-06 pp Version initiale [...1138 lines suppressed...] ); newField = MARC::Field->new( '200','','', 'a' => $resul{TIT}, 'b' => $resul{TYP}, 'e' => $resul{STI}, 'f' => $resul{AUT}, 'g' => $resul{NOT}, ); $newRecord->insert_fields_ordered($newField); my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); Notez que le code qui pr?c?de ne traite pas des notices d'exemplaire (l?, c'est vraiment trop sp?cifique) From shedges at users.sourceforge.net Mon Jan 10 12:59:20 2005 From: shedges at users.sourceforge.net (skemotah) Date: Mon, 10 Jan 2005 03:59:20 -0800 Subject: [Koha-cvs] CVS: koha-doc/en/sysadmin/installation Installing_Koha_on_Fedora.xml,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha-doc/en/sysadmin/installation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv749 Modified Files: Installing_Koha_on_Fedora.xml Log Message: Add info on Apache and selinux Index: Installing_Koha_on_Fedora.xml =================================================================== RCS file: /cvsroot/koha/koha-doc/en/sysadmin/installation/Installing_Koha_on_Fedora.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Installing_Koha_on_Fedora.xml 2 Jan 2005 14:12:40 -0000 1.1 --- Installing_Koha_on_Fedora.xml 10 Jan 2005 11:59:17 -0000 1.2 *************** *** 6,10 **** ! 2005-01-03 --- 6,10 ---- ! 2005-01-09 *************** *** 24,27 **** --- 24,39 ---- + + + 2.2.0p1 + + 2005-01-08 + + jmf + + + Add information on SELinux to Apache section + + *************** *** 457,461 **** Note that If MySQL fails to start you ! may need to adjust selinux. To do that type the following:[root at koha ~]# setenforce 0 [root at koha ~]# mysql_install_db --- 469,473 ---- Note that If MySQL fails to start you ! may need to adjust SELinux. To do that type the following:[root at koha ~]# setenforce 0 [root at koha ~]# mysql_install_db *************** *** 522,525 **** --- 534,561 ---- Apache's log files are in /var/log/httpd. + + As with MySQL, there is an issue with + SELinux on Fedora Core 3 and the + Apache web server that prevents execution of + the CGI scripts. Instead of disabling SELinux for httpd, just change the + context for the Koha directories. The utility + for doing this is called 'chcon.' Here's a brief + description of how to use it: + + First, check the context for the directories that you know work + for httpd:[root at koha]# ls -Z /var/www/ + drwxr-xr-x root root system_u:object_r:httpd_sys_script_exec_t cgi-bin + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t error + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t html + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t icons + drwxr-xr-x root root system_u:object_r:httpd_sys_content_t manual + drwxr-xr-x webalize root system_u:object_r:httpd_sys_content_t usage + + Then, use the chcon utility to label the Koha + subdirectories as for their counterparts in + /var/www. Here's the syntax:chcon <context> /usr/local/koha/<subdirectory> + + For more info on SELinux check out the Fedora Core 3 FAQ: http://fedora.redhat.com/docs/selinux-faq-fc3/ From oleonard at users.sourceforge.net Mon Jan 10 17:46:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 08:46:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4,1.4.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28801/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member.tmpl Log Message: Removing accidentally-hardcoded member number Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** member.tmpl 27 Oct 2004 15:35:03 -0000 1.4 --- member.tmpl 10 Jan 2005 16:46:54 -0000 1.4.2.1 *************** *** 31,35 ****
    Edit
    " -->&modify=edit">Edit
    Edit
    &modify=edit">Edit
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    FieldLib for librarians / for opacRepeatMandKoha fieldTabAuthorised value or
    ! Thesaurus category
    - " size="40" maxlength="80" />
    ! " size="40" maxlength="80" />

    ! or
    ! or
    '; return false;" /> !

    Note : in the last column, you can choose :

    !
    • An "authorised value" : it refers to a list of authorised value for this subfield. See the corresponding admin table
    • !
    • A "thesaurus category" : it refers to a thesaurus category. See the corresponding admin table
    • !
    • A "value builder" : values builders are perl program that helps you select the value of the field. They are MARC-flavor dependant and sometimes fills an other subfield automaticaly
    ! ! ! !
    ! ! ! - -
    Confirm Deletion of Subfield
    Subfield
     
    -
    " method="post">" /> - " /> - " />
    " method="post">" />
    ! ! Data deleted !
    method="post">" /> !
    ! ! !

    MARC subfield structure admin for

    !

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on "edit".

    !

    The column koha field shows that the subfield is linked with a "koha field". Koha can manage a marc interface, or a koha interface. This link ! ensure that both DB are synchronized, thus you can change from MARC to KOHA interface easily.

    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    SubfieldLibKoha Field ?Rep ?Mand ?Tab ?Auth value ?Thesaurus ?Val build ? Delete
       YesNo YesNo     ">Delete
    !
    //images/1leftarrow.png" title="previous" alt="previous" border="0" /> ! !
    " />
    ! !
    " name="searchfield" />
    //images/1rightarrow.png" title="next" alt="next" border="0" />
    !
    - --- 4,171 ---- Data Deleted MARC Subfield Structure for '' ! !
    ! ! !

    Edit MARC subfields constraints !

    !
    " name="Aform" method="post"> ! " /> ! ! ! ! ! "> ! ! "> ! ! "> ! ! "> ! ! ! "> ! ! ! "> ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! ! ! "> ! !

    Tag , Subfield

    MARC constraints

    " size="20" />(example for 200a : '200c','200d','200e'...)

    Editor constaints

    " size="40" maxlength="80" />
    " size="40" maxlength="80" />
    (ignore means that the subfield is NOT managed by Koha)
    (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)
    (if checked, it means that the subfield is an URL and can be clicked
    " size="10" maxlength="5"> (exemple :200b)

    ! ! !

    Note: in the last column, you can choose:

    !
    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • !
    • A "thesaurus category": it refers to a thesaurus category. See the corresponding admin table.
    • !
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! Data deleted ! " method="post">"> ! ! ! !

    MARC subfield structure admin for (framework )

    !

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    !

    The column Koha field shows that the subfield is linked with a Koha field. Koha can manage a MARC interface, or a Koha interface. This link ensures that both DB are synchronized, thus you can change from a MARC to a Koha interface easily.

    !
    /images/background-mem.gif">Subfield/images/background-mem.gif">
     
    CONFIRM DELETION
    !
    " method="post"> ! ! "> ! "> ! "> ! "> ! !
    !
    !
    " method="post"> ! "> ! "> ! "> ! "> ! !
    !
    ! ! ! ! "> ! ! ! ! !
    SubfieldTextConstraints Delete
    ! ! ! ! ! ! ! ! subfield ignored ! ! Tab :, ! Koha field : , ! Repeatable, Not repeatable, ! Mandatory, Not mandatory, ! see also : , ! hidden, ! is an url, ! Auth value :, ! Authority :, ! Plugin :, ! Link:, ! ! ">Delete
    " method="get">" name="tagfield" />" name="frameworkcode" />
    !
    " name="searchfield" />" name="frameworkcode" />
    ! ! ! ! ! ! ! !
    From oleonard at users.sourceforge.net Mon Jan 10 18:02:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 10 Jan 2005 09:02:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull lateissues.tmpl,NONE,1.1 bull-home.tmpl,1.1,1.2 order.tmpl,1.1,1.2 result.tmpl,1.1,1.2 search-supply.tmpl,1.1,1.2 search.tmpl,1.1,1.2 statecollection.tmpl,1.2,1.3 subscription-add.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32715/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: bull-home.tmpl order.tmpl result.tmpl search-supply.tmpl search.tmpl statecollection.tmpl subscription-add.tmpl Added Files: lateissues.tmpl Log Message: Adding NPL versions of these templates --- NEW FILE --- Koha -- Serials Subscriptions

    Late issues

    Supplier Title Issue number Late since  
    ">Details">Receive
    Index: bull-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/bull-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bull-home.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- bull-home.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,3 **** ! Koha -- Serials Subscriptions --- 1,3 ---- ! Koha -- Serials Subscriptions *************** *** 13,17 ****
     
    --- 13,16 ---- *************** *** 21,28 **** "> !
    !
    ! ">Detail ! ">Recieve !
    There are no subscriptions.
    ! Add subscription

    --- 34,45 ---- ! ">Detail">Receive ! Enter search terms above to display subscriptions !

    Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/order.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** order.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- order.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,3 **** !

    Supplier Search Results

    --- 1,3 ---- ! Supplier Search Results

    Supplier Search Results

    Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** result.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- result.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 7,12 **** ! ! =&resultsperpage=&type=intranet&op=do_search"> --- 7,12 ---- ! ! =&resultsperpage=&type=intranet&op=do_search"> *************** *** 40,46 ****

    ! !
    ',''); return false;" />
    Not Reservable ! --- 40,44 ----

    !
    ',''); return false;" />
    Index: search-supply.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search-supply.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search-supply.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- search-supply.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 1,4 **** ! !

    Search supplier for serial subscription

    --- 1,3 ---- ! Search supplier for serial subscription

    Search supplier for serial subscription

    Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- search.tmpl 10 Jan 2005 17:02:54 -0000 1.2 *************** *** 13,17 **** ! ! (" onclick="PopupSuggestion(); return false;">Suggestions) !

    ! Suggestions

    --- 27,31 ---- !

    Index: statecollection.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/statecollection.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** statecollection.tmpl 2 Nov 2004 21:38:41 -0000 1.2 --- statecollection.tmpl 10 Jan 2005 17:02:54 -0000 1.3 *************** *** 19,26 **** " /> " /> ! ! !

    --- 19,26 ---- " /> " /> ! ! ! -->

    Index: subscription-add.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-add.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** subscription-add.tmpl 2 Nov 2004 21:38:41 -0000 1.2 --- subscription-add.tmpl 10 Jan 2005 17:02:54 -0000 1.3 *************** *** 1,6 **** ! Koha -- Modify a SubscriptionAdd a New Subscription !
    --- 1,6 ---- ! Koha -- Modify a SubscriptionAdd a New Subscription !
    *************** *** 8,25 ****

    Modify subscription

    ! ! ">

    Add a subscription

    !
    ! ! !
    Subscription information for
    ! "> Librarian:
    " size="4"> (" disabled readonly>)
    " size="4"> (" disabled readonly>)
    --- 8,25 ----

    Modify subscription

    ! ! " />

    Add a subscription

    !
    ! ! !
    Subscription information for
    ! " /> Librarian:
    " size="4" /> (" disabled="disabled" readonly="readonly" />)
    " size="4" /> (" disabled="disabled" readonly="readonly" />)
    *************** *** 33,92 **** ! From tipaul at users.sourceforge.net Wed Jan 19 18:17:32 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:17:32 -0800 Subject: [Koha-cvs] CVS: koha/admin auth_subfields_structure.pl,1.3,1.3.2.1 marc_subfields_structure.pl,1.32,1.32.2.1 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24771/admin Modified Files: Tag: rel_2_2 auth_subfields_structure.pl marc_subfields_structure.pl Log Message: fix for #902 (it's impossible to set the subfield 400$0) Index: auth_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/auth_subfields_structure.pl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** auth_subfields_structure.pl 10 Jun 2004 08:58:34 -0000 1.3 --- auth_subfields_structure.pl 19 Jan 2005 17:17:08 -0000 1.3.2.1 *************** *** 200,204 **** my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; --- 200,204 ---- my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield ne ''; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32 retrieving revision 1.32.2.1 diff -C2 -r1.32 -r1.32.2.1 *** marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 --- marc_subfields_structure.pl 19 Jan 2005 17:17:10 -0000 1.32.2.1 *************** *** 282,286 **** my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; --- 282,286 ---- my $tagfield =$input->param('tagfield'); my $tagsubfield =$tagsubfield[$i]; ! $tagsubfield="@" unless $tagsubfield ne ''; my $liblibrarian =$liblibrarian[$i]; my $libopac =$libopac[$i]; From tipaul at users.sourceforge.net Wed Jan 19 18:24:20 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:24:20 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22,1.22.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26371/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: removing 2 useless columns Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22 retrieving revision 1.22.2.1 diff -C2 -r1.22 -r1.22.2.1 *** categorie.tmpl 3 Dec 2004 21:44:04 -0000 1.22 --- categorie.tmpl 19 Jan 2005 17:24:11 -0000 1.22.2.1 *************** *** 255,261 **** - - --- 255,259 ---- *************** *** 270,274 **** - - --- 274,277 ---- From tipaul at users.sourceforge.net Wed Jan 19 18:32:47 2005 From: tipaul at users.sourceforge.net (Paul POULAIN) Date: Wed, 19 Jan 2005 09:32:47 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters auth_tag_structure.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27964/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 auth_tag_structure.tmpl Log Message: in authority structure, trying to delete a tag in an authority type, deleted the tag in the default authority type. Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** auth_tag_structure.tmpl 19 Jul 2004 19:19:54 -0000 1.2 --- auth_tag_structure.tmpl 19 Jan 2005 17:32:31 -0000 1.2.2.1 *************** *** 89,92 **** --- 89,93 ----
    " method="post"> + "> ">
    From oleonard at users.sourceforge.net Wed Jan 19 18:40:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 09:40:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member.tmpl,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29449/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member.tmpl Log Message: Fixing typo: nested TMPL_VAR tag that would cause internal server error Index: member.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member.tmpl,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** member.tmpl 10 Jan 2005 16:46:54 -0000 1.4.2.1 --- member.tmpl 19 Jan 2005 17:40:33 -0000 1.4.2.2 *************** *** 31,35 **** --> ! --- 31,35 ---- --> ! From oleonard at users.sourceforge.net Wed Jan 19 18:44:02 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 09:44:02 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-user.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30092/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-user.tmpl Log Message: Removing non-functional renew link Index: opac-user.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-user.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-user.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-user.tmpl 19 Jan 2005 17:43:58 -0000 1.1.2.1 *************** *** 86,90 **** - --- 86,89 ---- *************** *** 97,107 **** YesNo --> - --- 96,99 ---- From oleonard at users.sourceforge.net Wed Jan 19 22:18:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:18:10 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-user.pl,1.14,1.15 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6934/opac Modified Files: opac-user.pl Log Message: Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should not be shown as waiting. Index: opac-user.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-user.pl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-user.pl 4 May 2004 15:46:58 -0000 1.14 --- opac-user.pl 19 Jan 2005 21:18:06 -0000 1.15 *************** *** 124,128 **** --- 124,133 ---- foreach my $res (@$reserves) { if ($res->{'itemnumber'}) { + my $item = getiteminformation('',$res->{'itemnumber'},''); + $res->{'holdingbranch'} = $branches->{$item->{'holdingbranch'}}->{'branchname'}; $res->{'branch'} = $branches->{$res->{'branchcode'}}->{'branchname'}; + if($res->{'holdingbranch'} eq $res->{'branch'}){ + $res->{'atdestination'} = 1; + } push @waiting, $res; $wcount++; From oleonard at users.sourceforge.net Wed Jan 19 22:22:01 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:22:01 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-user.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8040/koha-tmpl/opac-tmpl/npl/en Modified Files: opac-user.tmpl Log Message: Updated to show items as waiting only if destination branch matches holding branch. Reserves table is also updated to show 'waiting' if item is at its destination branch, or 'in-transit' if item has been allocated but hasn't arrived yet. Index: opac-user.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-user.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-user.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-user.tmpl 19 Jan 2005 21:21:59 -0000 1.2 *************** *** 41,55 **** ! ! ! !
    Planning
    " size="13" maxlength="10">
    ! ! ! ! ! !
    Planning
    " size="13" maxlength="10" />
    ! ! !
    Subscription Length (choose one)
    ">
    ">
    ">

    Numbering calculation

    -

    " />

    --- 138,148 ----
    ! ! !
    Subscription Length (choose one)
    " />
    " />
    " />

    Numbering calculation

    " />

    *************** *** 167,193 **** ! ! ! ! ! ! ! ! ! ! ! ! --- 166,192 ---- ! ! ! ! ! ! ! ! ! ! ! ! *************** *** 199,217 **** ! ! !
    ">">">
    ">">">
    ">">">
    ">">">
    " />" />" />
    " />" />" />
    " />" />" />
    " />" />" />
    ">">">
    ! ! - - Index: opac-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -C2 -r1.8 -r1.8.2.1 *** opac-top.inc 3 Jan 2005 10:58:46 -0000 1.8 --- opac-top.inc 13 Jan 2005 06:01:47 -0000 1.8.2.1 *************** *** 10,13 **** --- 10,14 ---- <!--TMPL_VAR name="LibraryName"--> + --- 5,9 ---- OPAC Basket ! /includes/opac.css"> Index: opac-top.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc,v retrieving revision 1.8.2.1 retrieving revision 1.8.2.2 diff -C2 -r1.8.2.1 -r1.8.2.2 *** opac-top.inc 13 Jan 2005 06:01:47 -0000 1.8.2.1 --- opac-top.inc 13 Jan 2005 07:40:24 -0000 1.8.2.2 *************** *** 10,14 **** <!--TMPL_VAR name="LibraryName"--> ! From oleonard at users.sourceforge.net Thu Jan 13 23:41:06 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 13 Jan 2005 14:41:06 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en request.tmpl,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22173/koha-tmpl/intranet-tmpl/default/en Modified Files: request.tmpl Log Message: Adding quick search link. This opens a pop-up to allow for searching for member card number. Choosing a member from the search results list closes the window and populates the card number field in request.pl template. Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/request.tmpl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** request.tmpl 26 Nov 2004 20:47:06 -0000 1.16 --- request.tmpl 13 Jan 2005 22:41:03 -0000 1.17 *************** *** 1,5 ****
    !
    "> --- 1,5 ----
    ! "> *************** *** 22,26 ****

    !

    --- 22,26 ----

    !

    (Quick Search)

    *************** *** 149,151 **** --- 149,162 ----
    + From oleonard at users.sourceforge.net Thu Jan 13 23:41:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 13 Jan 2005 14:41:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/members member-quicksearch-results.tmpl,NONE,1.1 member-quicksearch.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22310/koha-tmpl/intranet-tmpl/default/en/members Added Files: member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: templates for member quicksearch (to allow quick member searching in popup from request page) --- NEW FILE ---

    Member Search

      Card Surname Firstname Address
    ','request','member'); return false;" /> ">
    --- NEW FILE ---

    Member Quick Search

    From shedges at users.sourceforge.net Fri Jan 14 00:56:51 2005 From: shedges at users.sourceforge.net (skemotah) Date: Thu, 13 Jan 2005 15:56:51 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr/sysadmin/migration migrer_ses_donnees.xml,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha-doc/fr/sysadmin/migration In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6557 Added Files: migrer_ses_donnees.xml Log Message: validate xml and move to migration directory --- NEW FILE ---
    Param??trer et migrer ses donn??es vers Koha 2.2 2005-01-06 Paul POULAIN Consultant ind??pendant en logiciels libres, Koha "Release Manager" pour la version 2.0 puis 2.2, membre du comit?? de pilotage international [...1229 lines suppressed...] '011','','', 'a' => $resul{ISSN}, ); newField = MARC::Field->new( '200','','', 'a' => $resul{TIT}, 'b' => $resul{TYP}, 'e' => $resul{STI}, 'f' => $resul{AUT}, 'g' => $resul{NOT}, ); $newRecord->insert_fields_ordered($newField); my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); Notez que le code qui pr??c??de ne traite pas des notices d'exemplaire (l??, c'est vraiment trop sp??cifique)
    From shedges at users.sourceforge.net Fri Jan 14 01:00:09 2005 From: shedges at users.sourceforge.net (skemotah) Date: Thu, 13 Jan 2005 16:00:09 -0800 Subject: [Koha-cvs] CVS: koha-doc/fr migrer_ses_donnees.xml,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha-doc/fr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7189 Modified Files: migrer_ses_donnees.xml Log Message: validate xml (moved to migration subdirectory) Index: migrer_ses_donnees.xml =================================================================== RCS file: /cvsroot/koha/koha-doc/fr/migrer_ses_donnees.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** migrer_ses_donnees.xml 6 Jan 2005 15:25:36 -0000 1.1 --- migrer_ses_donnees.xml 13 Jan 2005 23:59:54 -0000 1.2 *************** *** 1,89 **** ! ! ! ! Param?trer et migrer ses donn?es vers Koha 2.2 ! Introduction ! 2002-01-06 [...2041 lines suppressed...] ! Notez que le code qui pr?c?de ne traite pas des notices ! d'exemplaire (l?, c'est vraiment trop sp?cifique) ! ! \ No newline at end of file --- 1259,1268 ---- ); $newRecord->insert_fields_ordered($newField); ! my ($bibid,$oldbibnum,$oldbibitemnum) = NEWnewbiblio($dbh,$newRecord,'') unless ($test_parameter); ! Notez que le code qui pr??c??de ne traite pas des notices ! d'exemplaire (l??, c'est vraiment trop sp??cifique) ! ! \ No newline at end of file From oleonard at users.sourceforge.net Fri Jan 14 16:41:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:41:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help bull-home.tmpl,NONE,1.1.2.1 nohelp.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31882/koha-tmpl/intranet-tmpl/npl/en/help Added Files: Tag: rel_2_2 bull-home.tmpl nohelp.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Serials Subscriptions

    Serials subscription help

    Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York

    If you want to create a new subscription, click the "Add subscription" button.

    Once you have found the subscription you need, you can:

    • View subscription details
    • Recieve any item and/or manage what appears in subscription summary (in OPAC and librarian interface)
    --- NEW FILE --- Online Help: No help for this topic!

    Online Help

    Sorry, there is no help available for this topic

    From oleonard at users.sourceforge.net Fri Jan 14 16:42:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/search.marc search.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/search.marc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/search.marc Added Files: Tag: rel_2_2 search.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Search

    Search

    The search id divided in 2 differents parts :

    Usual fields

    The usual fields are in the top part of the screen. They contains :

    • Keyword : search on anything
    • Title
    • Author
    • Barcode : the library barcode of the book
    • Illustrator
    • Dewey
    • Item type : select here an item type. If none is selected, the search is done on every item type
    • Branch : select here a specific branch. If none selected, the search is done on every branch

    Search method

    • If you enter values in more than 1 field, the search is "and-ed" (biblios that contains title AND author)
    • A biblio is selected if it's field contains the term you entered
    • If you enter a * (or a %) at the end of a term, Koha search for words starting with your term (entering lower* means : find biblio that have a title containing a word starting by lower

    Complete MARC search

    In the lower part of the search screen, the More fields box let you enter whatever you want : and, or, exclusions (not), search on any MARC field/subfield

    IMPORTANT NOTE : for performance reasons, the * is valid only if you enter a word more than 3 letters long. for words of 3 letters or less, the * is ignored


    From oleonard at users.sourceforge.net Fri Jan 14 16:42:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/bull bull-home.tmpl,NONE,1.1.2.1 statecollection.tmpl,NONE,1.1.2.1 subscription-add.tmpl,NONE,1.1.2.1 subscription-detail.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/bull Added Files: Tag: rel_2_2 bull-home.tmpl statecollection.tmpl subscription-add.tmpl subscription-detail.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Serials Subscriptions

    Serials subscription help

    Search for a subscription by using the filter button (with a ISSN or a title). If you enter a title, you can use the wildcard % : entering %Times% returns every subscription containing Times in the title. Entering New York% returns every subscription with title starting with New York

    If you want to create a new subscription, click on "Add subscription"

    --- NEW FILE --- Online Help: Serials -- Issues and Summary

    Serials issues and summary

    This screen is divided in 2 parts

    The right part

    The right part deals with issues. When you create a new subscription, the 1st issue is automatically calculated. When you want/need, you can define issues that have a new status:

    • Arrived : when an book arrives, you can set it's status to "arrived". Then, the issue disappear from this list, and the number of the issue is added to the "arrived list" (on the left box)
    • Late : means that the book is late and should be arrived. A books changed to "late" status stays on the issue list, and the next waited number is generated
    • Missing : means the book will never arrive. The issue disappear from the list, and the number of the issue is added to the "missing list" (on the left box)

    The left part

    the left part contains 6 differents informations, that are automatically calculated for some of them, but that you can change

    • Subscription beginning date : the date of the beginning of the 1st subscription. Should not be modified and is not modified automatically by subscriptions renewals
    • Subscription enddate : must be entered manually when the subscription is definetly closed
    • Arrived numbers : the list of issues you have in your library. Automatically filled when a new number is marked "arrived". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • Missing numbers : the list of issues you don't have in your library, and that will never arrive (or have been lost). Automatically filled when a new number is marked "missing". You can manually change this field if you want, for example, to change a long list (1,2,3,4,...,51) to a shorter one (1-51)
    • opac note : the field that appears in the OPAC (with some other subscription information like beginning date and end date. This field must be filled manually. Nothing is put here automatically
    • opac note : the field that appears in the librarian interface (with some other subscription information like beginning date and end date. This field must be filled manually. Nothing is put here automatically.

    Subscription renewals

    Koha calculates automatically the end of the subscription (based on the start date and the number of issues recieved). when a subscription has ended, you can't change the status of the last "waited number" (as it's not waited in fact). To be able to "recieve" this number, you must renew your subscription.

    Renewing a subscription means that you define some informations for the renewal. When those informations have been filled, a suggestion is automatically created in Koha. This suggestion can be managed by the librarian that orders books, as any other order (= budget and bookseller are defined here).

    Note that the subscription renewal done by the "serials librarian" is supposed to be immediate. We have decided to keep Koha as simple as possible. In fact, the subscription renewal won't be immediate, but we didn't wanted to add too much complexity.

    --- NEW FILE --- Online Help: Serials -- Adding Subscriptions

    Serials subscription add and modify help

      Subscription information bloc

      it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

      Planning information bloc

      it contains various information to calculate arrival dates.

      Subscription length

      one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

      Numbering calculation

      The numbering of issues recieved can be a complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

      • Add : the number here is added to XYZ
      • once every : the number before can be added on every issue or less often
      • When more than : if the calculated number is more than the value here
      • Set back to : if the previous condition is valid, the calculated number is set to this one instead
      • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

      Sample

      Consider the formula N?{X}/{Y}. The following XYZ settings :
      • X add 1 once every 4 times. When more than 9999999 set back to empty. Begins with 2004
      • Y add 1 once every 1 times. When more than 4 set back to 4. Begins with 1
      will result in the following issues numbers :

      N?2004/1, N?2004/2, N?2004/3, N?2004/4, N?2005/1, N?2005/2, N?2005/3, N?2005/4, N?2006/1

      Note: when you add a subscription, Koha consider you already have done the order, or that you will do it soon. So, NO information is sent to the acquisition module. This is not the case when the subscription expires. In this case, a subscription renewal creates a "suggestion" that is sent to the acquisition module.

      --- NEW FILE --- Online Help: Serials Subscription Detail

      Serials subscription detail help

      In this screen, you can see subscription detail, and modify it if you need.

        Subscription information bloc

        it contains the name of the librarian that created the subscription, the name of the supplier providing the subscription, the cost and the budget affected. It also contains the title of the biblio managed by the subscription.

        Planning information bloc

        it contains various information to calculate arrival dates.

        Subscription length

        one field in this bloc should be filled : the subscription length can be calculated in weeks, months or number of issues to recieve

        Numbering calculation

        The numbering of items recieved can contain complex formulas. The "numbering formula" can be filled with any text and/or numbers. 3 special tokens {X} {Y} and {Z} can be user to define the calculation formula. XYZ values are calculated with the following method:

        • Add : the number here is added to XYZ
        • once every : the number before can be added on every issue or less often
        • When more than : if the calculated number is more than the value here
        • Set back to : if the previous condition is valid, the calculated number is set to this one instead
        • Last value / begins with : the last value calculated or the 1st value (when adding a subscription

        Sample

        Consider the formula N?{X}/{Y}. The following XYZ settings :
      • X add 1 once every 4 times. When more than 9999999 set back to empty. Begins with 2004
      • Y add 1 once every 1 times. When more than 4 set back to 4. Begins with 1
      • will result in the following issues numbers : N?2004/1,N?2004/2,N?2004/3,N?2004/4,N?2005/1,N?2005/2,N?2005/3,N?2005/4,N?2006/1

        From oleonard at users.sourceforge.net Fri Jan 14 16:42:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/admin aqbookfund.tmpl,NONE,1.1.2.1 authorised_values.tmpl,NONE,1.1.2.1 authtypes.tmpl,NONE,1.1.2.1 biblio_framework.tmpl,NONE,1.1.2.1 branches.tmpl,NONE,1.1.2.1 categorie.tmpl,NONE,1.1.2.1 checkmarc.tmpl,NONE,1.1.2.1 currency.tmpl,NONE,1.1.2.1 issuingrules.tmpl,NONE,1.1.2.1 itemtypes.tmpl,NONE,1.1.2.1 koha2marclinks.tmpl,NONE,1.1.2.1 marc_subfields_structure.tmpl,NONE,1.1.2.1 marctagstructure.tmpl,NONE,1.1.2.1 printers.tmpl,NONE,1.1.2.1 stopwords.tmpl,NONE,1.1.2.1 systempreferences.tmpl,NONE,1.1.2.1 z3950servers.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/admin Added Files: Tag: rel_2_2 aqbookfund.tmpl authorised_values.tmpl authtypes.tmpl biblio_framework.tmpl branches.tmpl categorie.tmpl checkmarc.tmpl currency.tmpl issuingrules.tmpl itemtypes.tmpl koha2marclinks.tmpl marc_subfields_structure.tmpl marctagstructure.tmpl printers.tmpl stopwords.tmpl systempreferences.tmpl z3950servers.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: System Preferences -- Book Fund Administration

        Book Fund Administration

        The first time you access this page, you will be asked to add your first book fund -- thereafter you will also have the option of editing and deleting book funds.

        Book Funds may be ignored if you are setting your System Preferences to "simple" acquisitions: the funds are only useful when using "normal" acquisitions.

        "Book Funds" are accounts that you establish to keep track of your expenditures for library materials. They may be used for any kind of material, not just books, and should match the lines in your materials budget. For instance, if your library establishes a budget line for books, another for audiovisual materials, a third line for magazines, and a fourth budget line for electronic databases, then you would have four Book Funds.

        Each Book Fund has a unique fund code, limited to no more than five characters, that identifies it. You should decide on your fund codes (e.g. something like BOOKS, AV, MAGS, DATA for the four book funds described above) and enter the code in the "Book fund" box, then a full name in the "Name" box.

        Once you have set up a fund, you will see a link to a page for setting up the fund budget. Here you will enter the beginning and ending dates of your budget year and the amount of money in that particular budget line. Do not use any kind of currency notation (like "$") or commas when entering the number. (Commas will be converted to decimal points.) NOTE: Your dates will not saved correctly unless you have set your date format in the System Preferences section of the Parameters page -- DO THIS BEFORE setting budgets.)

        --- NEW FILE --- Online Help: System Preferences -- Authorised values management

        Authorised values management

        Koha allows you to restrict the values that catalogers can place in some MARC subfields to certain pre-defined "authorised" values. These authorised values are defined here.

        For example, if your Koha installation is used by several libraries, and you use MARC21, you might want to restrict the 850a MARC subfield to the instition codes for just those libraries. In that case, you could define a new authorised values category (perhaps called "INST") and enter the institution codes as the authorised values for that category. Once the 850a subfield is linked to the INST authorised values category in your MARC tag structure, catalogers must choose a value from the list you define here, and may not type in any other value.

        • HINT : if a subfield is non mandatory, Koha automatically adds an empty value to the authorised value list, that is selected by default. If the subfield is mandatory, no empty value is added (and you should NOT add it in the list, as it's an illegal value !)
        • HINT2 : in the MARC editor, the list is ordered by Text, NOT by value. So you can define a default value by putting a space before the value you want to see first. For example, if your list is related to language, you can set "ENG" as authorised value and " English" as text. The space will order "ENG" as first default value, and the space won't be shown (because HTML automatically discard useless spaces). Super hint : you can put a value 1st with N spaces, then another one 2nd with N-1 space,..., a value in Nth position with 1 space. Don't abuse of this feature, it's easier to find a value in an alphabetical order. It should be used only to have a default value

        Koha automatically sets up authorised value categories for your item types and branch codes, and you can link these authorised values to MARC subfields when you set up your MARC tag structure.

        --- NEW FILE --- Online Help: System Preferences -- Authority types

        Authority types

        You can define as many Authority types as you want.

        • with the MARC structure button, you can define the MARC structure of a given authority type
        • The tag reported must contain a MARC tag number. Every subfield in the selected tag will be copied to the "destination tag" in the biblio. for example, in UNIMARC, the tag 200 ot personal authority will be reported to 600, 700, 701, depending on what is cliqued in the biblio MARC editor.
        • The summary contains an "ISBD" like description to explain how the entry must be shown in the result list. The syntax is :
          • [xxxFFFSyyy] where xxx are up to 3 digits BEFORE the field, FFF the field number, S the subfield code, yyy up to 3 digits AFTER the field.
          • things outside [] are kept as is (including HTML)
          • repeatable fields are manages.

            IMPORTANT

            In the biblio framework, the reported tag MUST contain a $9 subfield, activated in the tab where the tag is, and hidden (hidden maybe omitted, but the field has no reason to appear anywhere). The $9 subfield in the biblio will contain the Authority number (the internal Koha number)

            --- NEW FILE --- Online Help: System Preferences -- Biblio framework

            Biblio framework

            biblio frameworks are used to catalogue your biblios.

            Unlike Koha 2.0, in this version you can have more than 1 framework to catalogate differently various materials. You can, for example, define 1 framework for monographies, 1 framework for serials, 1 framework for URL...

            Once a framework type is created, you can clic on "MARC structure" to define the exact MARC structure. The first time, Koha will ask you to select an existing framework to copy into the new one. Thus, you don't have to define all the MARC structure

            --- NEW FILE --- Online Help: System Preferences -- Branches

            Help: Library Branches

            Fill in information about your library service outlets on this page.

            Begin by defining your branch categories. If, for example, you have one main library and several branch libraries, you might set up an "M" (Main) category and a "B" (Branch) category, with descriptions "Main Library" and "Branch Library."

            Now add the names and addresses, phone numbers, etc of your libraries in the "Branches" section. (All of your libraries should be described here, not just the branch libraries.) Give each library a unique and easily-remembered code (maximum of four characters). This code will be used in Koha's database to identify each library. When libraries are listed in Koha, they will be listed in alphabetical order by code. (Note that until you set your branch the first time you use a computer to circulate items in Koha, the branch will default to the first library in the alphabetical code list -- be careful to set the branch the first time you use Koha or whenever you add a new computer!)

            --- NEW FILE --- Online Help: System Preferences -- Borrower Categories

            Borrower Categories

            Here is where you define the types of users of your library and how they will be handled.

            Category Code and Description

            Start by assigning a Category Code and a Description to each borrower type. The code is limited on no more than two characters and may be anything you choose. Four codes, however, have special meaning for Koha :

            • "I" can be used for institutional members, like other libraries that borrow from you, in which case Koha expects slightly different information about the institution;
            • "A" (Adult) and "W" can be linked as "guarantors" to other borrowers who are their dependents.
            • "C" (Children) is a borrower category that has a "guarantor"

            Enrollment Period

            Enrollment period is a number indicating how many years a user's enrollment is valid. If you consider enrollments to expire after four years for example (as in a school, perhaps), then set this number to 4. If enrollments never expire, set this to an impossibly high number (99).

            Upper Age Limit and Age Required

            Upper Age Limit and Age Required set the age parameters for this type of user. If you issue children's cards to users between the ages of 2 and 18, for example, then Age Required would be "2" and Upper Age Limit would be "18." If there is no upper age limit, set this value to 99 (the highest allowed).

            Enrollment Fee and Reserve Fee

            Enrollment Fee and Reserve Fee (if any) should be entered either as whole numbers or with six decimal places, with no currency notation (e.g. "1.250000" instead of "$1.25").

            Overdue Notice Required

            Overdue Notice Required lets you bypass generating overdue notices for this user type.

            --- NEW FILE --- Online Help: System Preferences -- MARC Check

            MARC Check

            Once you have completed the process of setting up your MARC tag structure (MarcTagstruct) and checked your MARC to Koha mapping (Koha2MarcLinks), click on this link to activate a small program that checks for major errors in your MARC setup.

            This MARC check does not guarantee that you will like the first results of your efforts to set up your MARC displays, etc. -- it simply checks for major errors. You will probably revise your MARC setup several times before you are completely pleased with it. Be sure to run checkmarc after every revision.

            --- NEW FILE --- Online Help: System Preferences -- Currencies administration

            Currencies administration

            Define the currencies you deal with here.

            You should at least define your local currency here, giving it a name (like US DOLLAR or EURO) and setting the "rate" at 1. If you do business with vendors who charge in a different currency, enter a name for that currency (e.g. PESO) and set the approximate exchange rate compared to your currency. (Note: names are limited to 10 characters or less.) The exchange rate is used to calculate the remain balances in your materials budgets when you purchase materials using "normal" acquisitions.

            --- NEW FILE --- Online Help: System Preferences -- Issuing rules

            Issuing rules

            Issuing rules deals with 2 topics :

            • Issuing length and quantity : they say how many items and how long a borrower category can issue for an itemtype
            • Overdue charges : they are based on the item type and borrower type. These charges are defined on this page.

            Itemtypes and borrower categories must be defined before issuing rules are defined. Your defined items types and borrower categories are then displayed in a grid on this page.

            Issuing length and quantity

            Each box in the grid contains 2 numbers, separated by commas, defining how many days a given borrower type can issue how many material. For example : 21,5 means the borrower can issue up to 5 books for up to 21 days

            The * have a specific meaning. They mean "any". If you set 21,5 for itemtype=*, borrower category=student, branch=main, then a student can't issue more than 5 items of ANY item type. This "any" box is cumulative with other boxes. It means that 21,5 as itemtype=book, 14,2 as itemtype=CD and 30,6 as itemtype=* (with category=student) means a student can issue up to 5 books, up to 2 CD but a maximum of 6 items (books or CD). In this case the "30 days" in itemtype=* is discarded and the issuing length is calculated on the exact itemtype

            Overdue charges

            Each box in the grid contains three numbers separated by commas, defining the fine, how many days overdue the item must be before the fine is assessed and a first notice prepared (the "grace period"), and how many days after that the fine is assessed again and a second notice sent. For example, if you charge adults 1 dollar (or euro, or whatever currency) for overdue videos after three days and add another dollar charge after another five days, put "1,3,5" in the box in the grid that aligns with "Adult" and "Video." If you charge adults 25 cents for overdue fiction books after a grace period of seven days and repeat the charge seven days later, then the entry in the corresponding box in the grid would be ".25,7,7". After the first and second notice are given, Koha prepares a "final notice" after the number of days set by the final number in the grid and sets the charge to the maximum, which is 5.

            (Note : fines are calculated by the fines2.pl script, located in misc directory. Ask your system administrator to put this script in crontab, after midnight, to have fines calculated every night.)

            --- NEW FILE --- Online Help: System Preferences -- Item types management

            Item types management

            You can define as many itemtypes as you want.

            The item types are the "categories" into which your library items fall. For instance, you probably want to have videocassettes in a different category from non-fiction books, and mysteries in a different category from children's picture books. If you already are using a commercial ILS, you almost certainly already have all of your materials divided up into such categories. Now you need to tell Koha what your categories are.

            The itemtype code is limited to four characters. This code is rarely displayed by Koha; instead the description of the type will be what users see.

            "Rental charge" is any amount you might charge to users for borrowing items of a certain type (like videos).

            "Renewals allowed" says how many times an items of this type may be renewed.

            Item types are useful for many things, and very important in controlling how Koha works :

            • Borrowers can search on itemtypes
            • Issuing rules are set for item types (and for borrower types / branches)

            Setting up item types is one of the first things you should do after installing the Koha software.

            --- NEW FILE --- Online Help: System Preferences -- Koha 2 MARC links

            Koha 2 MARC links

            This page provides a simplified way to map your MARC tags and subfields to the non-MARC Koha database tables for default biblio framework. This can also be done while setting the MARC tag structure, but it is easier to see the relationship between the MARC database and the Koha database here.

            The pull-down menu lists all the Koha tables that can receive values from the MARC records. The columns from each table are listed below the pull-down menu.

            Do not expect to have every Koha table.column mapped to a MARC subfield. Some (such as biblionumber, biblioitemnumber, and itemnumber) are values generated by Koha and will probably be automatically mapped. Others are flags which are set in the course of normal circulation activities and will contain information that is not part of your MARC record.

            This is a one-to-one mapping. In other words, a MARC tag/subfield can be mapped to one, and only one, Koha table.column.

            MARC data that is not mapped to a Koha table does not disappear -- it is simply not available for display on circulation screens and on some search results screens.

            --- NEW FILE --- Online Help: System Preferences -- MARC tag structure administration

            MARC tag structure administration

            Koha allows you to specify which MARC tags you want to use and which you want to ignore. When you downloaded and installed Koha, you also got the entire list of MARC21 tags and subfields in current use. Now you need to use the administration page to edit this list and tell Koha which tags you want to use and how you want to use them.

            You can define as the marc tag structure for each biblio framework you have defined

            If you are CERTAIN that you will never use a MARC tag, then you can delete it, but since this will not result in any appreciable improvement in performance, it is probably better to leave it. There will be tags you want to add, however. If you are using older MARC tags that are not in the list of tags supplied with Koha, then use the MARC tag structure administration page to add them. Similarly, you will probably need to add the holdings tag you currently use, or at least check the subfield structure of the 852 tag if you use it for holdings.

            Editing the SubFields from the MARC tag structure page is very time-consuming, but also very important; be sure to click the subfield link for each tag in your MARC tag structure.

            For each subfield you can set :

            • repeatable : wether it can be repeated or not. If it can be repeated, separate the values by a | in the MARC editor when you want to have the subfield twice
            • Mandatory : wether the field is mandatory or not. If mandatory, the cataloger can't validate the biblio if the subfield is empty.
            • Search also : a list of field that Koha will also search on when the user do a search on the subfield
            • Koha link : very important. Koha is multi-MARC compliant. So, it does not know what the 245$a means, neither what 200$f (those 2 fields being both the title in MARC21 and UNIMARC !). So, in this list you can "map" a MARC subfield to it's meaning. Koha constantly maintains consistency between a subfield and it's meaning. When the user want to search on "title", this link is used to find what is searched (245 if you're MARC21, 200 if you're UNIMARC).
            • Text for librarian : what appears before the subfield in the librarian interface
            • Text for OPAC : what appears before the field in the OPAC. If empty, the text for librarian is used instead
            • Managed in tab : deals with the tab where the subfield is shown. Ignore means that the subfield is not managed. All subfields of a given field must be in the same tab or ignored : 1st it's more logic, 2nd, Koha would be confused to repeat repeatable fields otherwise !!!
            • hidden : means that the field is managed, but NOT shown in opac. It's usually for internal fields
            • URL : if checked, the subfield is an URL, and can be clicked
            • Auth value : means the value is not free, but in the authorised value list of the selected type
            • thesaurus : means that the value is not free, but can be searched in authority/thesaurus of the selected category
            • plugin : means the value is calculated or managed by a plugin. Plugins can do almost anything. For example, in UNIMARC there are plugins for every 1xx fields that are coded fields. The plugin is a huge help for cataloger ! There are also two plugins (unimarc_plugin_210c and unimarc_plugin_225a that can "magically" find the editor from an ISBN, and the collection list for the editor)
            • link : useless for instance
            --- NEW FILE --- Online Help: System Preferences -- MARC tag structure administration

            MARC tag structure administration

            Koha allows you to specify which MARC tags you want to use and which you want to ignore. When you downloaded and installed Koha, you also got the entire list of MARC21 tags and subfields in current use. Now you need to use the administration page to edit this list and tell Koha which tags you want to use and how you want to use them.

            You can define as the marc tag structure for each biblio framework you have defined

            If you are CERTAIN that you will never use a MARC tag, then you can delete it, but since this will not result in any appreciable improvement in performance, it is probably better to leave it. There will be tags you want to add, however. If you are using older MARC tags that are not in the list of tags supplied with Koha, then use the MARC tag structure administration page to add them. Similarly, you will probably need to add the holdings tag you currently use, or at least check the subfield structure of the 852 tag if you use it for holdings.

            Editing the SubFields from the MARC tag structure page is very time-consuming, but also very important; be sure to click the subfield link for each tag in your MARC tag structure.

            For each subfield you can set :

            • repeatable : wether it can be repeated or not. If it can be repeated, separate the values by a | in the MARC editor when you want to have the subfield twice
            • Mandatory : wether the field is mandatory or not. If mandatory, the cataloger can't validate the biblio if the subfield is empty.
            • Search also : a list of field that Koha will also search on when the user do a search on the subfield
            • Koha link : very important. Koha is multi-MARC compliant. So, it does not know what the 245$a means, neither what 200$f (those 2 fields being both the title in MARC21 and UNIMARC !). So, in this list you can "map" a MARC subfield to it's meaning. Koha constantly maintains consistency between a subfield and it's meaning. When the user want to search on "title", this link is used to find what is searched (245 if you're MARC21, 200 if you're UNIMARC).
            • Text for librarian : what appears before the subfield in the librarian interface
            • Text for OPAC : what appears before the field in the OPAC. If empty, the text for librarian is used instead
            • Managed in tab : deals with the tab where the subfield is shown. Ignore means that the subfield is not managed. All subfields of a given field must be in the same tab or ignored : 1st it's more logic, 2nd, Koha would be confused to repeat repeatable fields otherwise !!!
            • hidden : means that the field is managed, but NOT shown in opac. It's usually for internal fields
            • URL : if checked, the subfield is an URL, and can be clicked
            • Auth value : means the value is not free, but in the authorised value list of the selected type
            • thesaurus : means that the value is not free, but can be searched in authority/thesaurus of the selected category
            • plugin : means the value is calculated or managed by a plugin. Plugins can do almost anything. For example, in UNIMARC there are plugins for every 1xx fields that are coded fields. The plugin is a huge help for cataloger ! There are also two plugins (unimarc_plugin_210c and unimarc_plugin_225a that can "magically" find the editor from an ISBN, and the collection list for the editor)
            • link : useless for instance
            --- NEW FILE --- Online Help: System Preferences -- Printer Administration

            Printer Administration

            If you are going to be using a printer (or several printers) that are attached to your Koha server for producing statistical and operations reports, then you need to give each printer a name and tell Koha how to access it. You do this by telling Koha which print queue to use.

            (In linux, each printer configuration in your printcap file defines a print queue. The default print queue is "lp," but if you use more than one printer you will have other queues, probably with names like "text" or "postscript." Tell Koha which printer queue(s) you want to use for printing reports directly from the server.)

            Note that you can always print Koha screens directly to a printer attached to your workstation just by using your web browser's Print function.

            --- NEW FILE --- Online Help: System Preferences -- Stop word administration page

            Stop word administration page

            Here you should list all of the words you wish Koha to ignore when performing catalog searches or building the keyword index.

            Normally, you will not want Koha to save keyword references to articles like "The" and "A" and other very common words. Saving keyword references to these words does not help to limit a search and will make the keyword index very large and "cluttered" with words that are not really useful. The "stopwords" list defines these unnecessary words for your installation.

            (Hint: If you are proficient at MySQL, it is often faster and easier to find an existing stopwords list, edit it, put it in the correct format, and use the MySQL "Load Data Infile" command to import the list into the stopwords table. Many academic libraries publish their stopwords list on the Internet, or you can ask other Koha libraries if they would share their stopword list.)

            --- NEW FILE --- Online Help: System Preferences -- System preferences administration

            System preferences administration

            This page allows you to set the system preferences that control much of the basic behavior of Koha. These parameters should be set before any other parameters.

            • acquisitions -- The choices are either "normal" or "simple." "Normal" sets the system to track orders and update budgeting and vendor information as you add materials to your collection. "Simple" tells Koha that you are going to add materials to the collection without tracking orders.
            • authoritysep -- The separator used in authority/thesaurus. Usually " -- ". Deprecated and useless in Koha 2.2
            • autoBarcode -- The barcode number to be assigned to items is automatically assigned (sequentially) by Koha if this is set to "yes" ("1" = "yes").
            • autoMemberNum -- The membership number (patron card number) to be assigned to new library users is automatically assigned by Koha if this is set to "yes" ("1" = "yes").
            • checkdigit -- Validity checks on membership number (patron card number): none or "Katipo" style checks. In most cases, you will choose "none" because you will be using pre-printed barcodes.
            • dateformat -- Choose "metric," "us," or "iso" date format (us = mm/dd/yyyy, metric = dd/mm/yyy, ISO = yyyy/mm/dd). This controls how dates are displayed, not how they are stored in the database.
            • gist -- "gist" is "GST" (Good and Sales Tax) rate. If your local tax laws require you to pay taxes on purchases from your suppliers, enter the tax rate here. Set to "0" if you are not required to pay tax.
            • insecure -- The best choice is "no." If you choose "yes," users do not have to login and all information is open to anyone. Be careful if you set this to "yes!"
            • ISBD -- Koha can display records in International Standard Bibliographic Description format. the syntax of this field is quite complex :

              it's divided into blocks, that can contain a text before, X fields, each having -or not- a string before, a string after, and a text after :

              #995|<br>Items :|{\n995b}{ - 995j}{/995k}|

              means the "block" 995 has <br>Items : BEFORE, then fields 995b, 995j and 995k, repeated for each item (995 is an UNIMARC standard), then nothing after the block.

              The # means "beginning of a block", the | is the separator of each part, the {} being used for each subfield. A subfield can have up to 3 digits BEFORE and up to 3 digits AFTER each subfield

              The UNIMARC (partial) definition for ISBD is

              #700||{700a}{701a}{702a}| ; #200||{200a}{ [200b] }{. 200c}{ : 200e}{. 200h}{. 200i}{ / 200f}{ ; 200g}|
              #230||{ ; 230a}|
              #205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|
              #210|<br/><label>Editeur</label>|{ ; 210a}{ (210b) }{ : 210c}{, 210d}|
              #210|(|{210e}{(210f)}{ : 210g}{, 210h}|)
              #215|<br/><label> </label>|{ ; 215a}{ : 215c}{ ; 215d}{ + 215e}|
              #225|<br/><label>Description</label>|{ (225a}{ = 225d}{ : 225e}{. 225h}{. 225i}{ / 225f}{, I225x}{ ; 225v}|)
              #606|<br/><label>Sujets</label>|{ 606a - }|<br/><br/>
              #995|<br>Exemplaires :|{\n995b}{ - 995j}{/995k}|

            • KohaAdminEmailAddress -- The email address that will receive requests from borrowers for modification of their records.
            • ldapserver and ldapinfos -- Koha 2.0 can use Perl LDAP (Lightweight Directory Access Protocol, see http://search.cpan.org/~gbarr/perl-ldap-0.3202/lib/Net/LDAP.pod) to manage user access and privileges. To avoid a useless Perl package for libraries without ldap, all what is related to LDAP has been moved to KohaInstall/modules/C4/Auth_with_ldap.pm. Ask your system administrator to set up LDAP with Auth_with_ldap.pm (perldoc Auth_with_ldap.pm for help). Those 2 parameters are useless in 2.2 and have should not appear on a new install.
            • LibraryName -- The library name or message that will be shown on the main OPAC page. You may use HTML tags to format the name. Example: Welcome to Koha
              Free Software ILS
            • marc -- Turn on MARC support. Set to "no" if you do not intend to use MARC records.
            • marcflavour -- Your MARC flavor (MARC21 or UNIMARC). This choice tells Koha how to interpret your MARC records.
            • maxoutstanding -- The maximum amount of outstanding charges a borrower may have before he/she is barred from making reserve requests. The number represents units of your local currency (e.g. "5" means $5.00, if the dollar is your local currency.)
            • maxreserves -- The maximum number of reserves a member can make.
            • noissuescharge -- The maximum amount of outstanding charges a borrower may have before he/she is barred from checking out items. The number represents units of your local currency (e.g. "5" means $5.00, if the dollar is your local currency.)
            • opaclanguages -- Set your language preference. (Despite the name, this choice controls the language used for all Koha screens, not just the OPAC). The top language in your list will be tried first.
            • opacthemes -- Set the preferred order for themes. The top theme will be tried first.
            • printcirculationslips -- if set to 1, circulation "slips" are printed on your receipt printer. If set to 0, no slips are printed.
            • suggestion -- If set to 1, the Suggestions feature is activated in the OPAC. This feature allows OPAC users to suggest book purchases. When a suggestion is made in the OPAC, it is assigned the status "ASKED." A librarian then manages the suggestion and can set the status to "REJECTED" or "ORDERED." When a book is ordered and has arrived in the library, the status becomes "AVAILABLE." Suggestions that are not yet "AVAILABLE" are visible to all users of the OPAC.
            • template -- Preference order for screen templates. Koha comes with several different options for templates that control the look and feel of your Koha screens, and you can also write your own templates.
            • timeout -- Inactivity timeout period (in seconds). If a workstation is idle for longer than this period, the user will have to login again.
            • virtualshelves -- Set virtual shelves management on or off ("1" or "0"). Users can set up and manage their own "virtual bookshelves" of favorite library items if this feature is turned on.
            --- NEW FILE --- Online Help: System Preferences -- Z39.50 servers administration

            Z39.50 servers administration

            Defines the Z39.50 servers you want Koha to search.

            Koha comes with one Z39.50 server site defined (the U.S. Library of Congress) for finding catalog records to import directly into your catalog. In this area, you can define other servers for searching.

            To add servers, you will need to know the domain name or IP address of the server, the port number to use, and the name of the database to access. This information is available for many servers worldwide by acessing the Index Data website at http://www.indexdata.dk/targettest/. All of the servers listed there accept anonymous connections. (Be sure to choose servers which deliver records in the proper MARC format for your Koha installation.)

            If you have a login name and password for other Z39.50 servers, Koha will save your user ID and password in addition to the other information it needs to make a connection. (For anonymous servers, leave the userid and password fields blank.) The other fields on the form control whether or not the server is automatically searched when you request a Z39.50 search (put a "1" in the "Checked" field) and the order in which it is checked.

            It is a good idea to be selective in choosing servers. Defining more than five or six checked servers may slow down your Z39.50 search results, even if they are queried all together.

            IMPORTANT NOTE : the z3950search will NOT work until your system administrator has not activated the z3950 client daemon on your server. The daemon is in KohaDirectory/script/z3950daemon. It should be added to rc.d to be launched during server boot.

            From oleonard at users.sourceforge.net Fri Jan 14 16:42:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/members memberentry.tmpl,NONE,1.1.2.1 members-home.tmpl,NONE,1.1.2.1 moremember.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/members Added Files: Tag: rel_2_2 memberentry.tmpl members-home.tmpl moremember.tmpl Log Message: Synching with default template --- NEW FILE --- Online Help: Adding a New Patron

            Add member help

            Add Member, person

            This is the form for adding a new single member to the database. There is also a form for organisations, such as other libraries and non profit organisations you might lend to. You should use the Add Organisation tab at the top of the Member page for that.

            Every field with an asterisk must be filled out, or you will get an error, and the record will not be added to the database.

            If you accidentally have two members with the same card number, the second duplicate will show up as just commas after you confirm the record.

            When you are done with the record, click the Save button at the bottom.

            The clear all Fields button will reset the page to a blank form in case you made a mistake.

            Add Member, Institutional

            This is the form for adding a group of members. Suppose you had a YMCA group, or lend books to other Libraries. This would be the form to use for that purpose.

            Every field with an asterisk must be filled out, or you will get an error, and the record will not be added to the database.

            If you accidentally have two members with the same card number, the second duplicate will show up as just commas after you confirm the record.

            When you are done with the record, click the Save button at the bottom.

            The clear all Fields button will reset the page to a blank form in case you made a mistake.

            You can always come back and edit what you enter in the Add Member screen by searching for the borrower by using their last name or card number, selecting a user by clicking on the entry in the search list, and then clicking the Modify button on the member information screen.

            --- NEW FILE --- Online Help: Members

            Members help

            This is the Members portion of Koha.

            The Members portion stores the information you add about your patrons.

            To add a patron, type their name into the search box on the left, and click the OK button.

            If there is already a borrower matching the name you searched, it will show after you click OK. This can be particularly useful when people have lost their cards or when children forget their cards. That way, you can avoid having multiple numbers for the same patron.

            Alternatively, you can browse a section of borrowers by selecting the first letter of the Patron's last name from the list on the right.

            --- NEW FILE --- Online Help: Member Information

            Member Information Screen

            This screen shows the information associated with a given patron.

            On the top left is their address and card number.

            A patron's annual membership fee payment status also shows on this screen.

            Any fines a patron has will show up in the top middle of this screen.

            Any materials a patron has requested will show up on the top right of this screen.

            You can get information on what a patron has read in the past by clicking on the Reading Record button.

            Any items a patron currently has out will show up under "Items currently on issue".

            If you would like to edit a patron's information, click the modify button on the lower left.

            If you would like to PERMANENTLY delete a user, click the delete button on the lower left. A confirmation box will appear, so don't worry about accidentally deleting a record. Just be absolutely sure before you delete!

            The change password button allows a user to either set a new password or change their current password. This is useful to patrons that wish to place reserves online from home. You cannot see a password again once you change it, but you can reset a password.

            Modify user flags allows an administrator to set which clerks, librarians, patrons, technical support people or trustees have access to certain parts of the database. Right now, one can either have permission to access everything on the Intranet side, or just have access to the OPAC.

            From oleonard at users.sourceforge.net Fri Jan 14 16:42:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 07:42:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/help/authorities authorities.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/help/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/koha-tmpl/intranet-tmpl/npl/en/help/authorities Added Files: Tag: rel_2_2 authorities.tmpl Log Message: Synching with default template --- NEW FILE --- authority help From oleonard at users.sourceforge.net Fri Jan 14 22:08:20 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:08:20 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-flags.tmpl,1.2,1.3 newimember.tmpl,1.1,1.2 newjmember.tmpl,1.1,1.2 newmember.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7721/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: member-flags.tmpl newimember.tmpl newjmember.tmpl newmember.tmpl Log Message: Change to allow page-specific title in title tag Index: member-flags.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member-flags.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** member-flags.tmpl 13 Apr 2004 16:59:43 -0000 1.2 --- member-flags.tmpl 14 Jan 2005 21:08:16 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Set Privileges for , Index: newimember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newimember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newimember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newimember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm New Borrower Index: newjmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newjmember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newjmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newjmember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Details Index: newmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newmember.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newmember.tmpl 14 Jan 2005 21:08:16 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Record From oleonard at users.sourceforge.net Fri Jan 14 22:08:48 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:08:48 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui acqui-home.tmpl,1.3,1.4 acquire.tmpl,1.1,1.2 basket.tmpl,1.2,1.3 newbasket2.tmpl,1.1,1.2 order.tmpl,1.2,1.3 recieve.tmpl,1.1,1.2 recieveorder.tmpl,1.1,1.2 supplier.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7842/koha-tmpl/intranet-tmpl/npl/en/acqui Modified Files: acqui-home.tmpl acquire.tmpl basket.tmpl newbasket2.tmpl order.tmpl recieve.tmpl recieveorder.tmpl supplier.tmpl Log Message: Change to allow page-specific title in title tag Index: acqui-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acqui-home.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** acqui-home.tmpl 28 Oct 2004 17:12:26 -0000 1.3 --- acqui-home.tmpl 14 Jan 2005 21:08:45 -0000 1.4 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Acquisitions Index: acquire.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acquire.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acquire.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- acquire.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : Invoice, Index: basket.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/basket.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** basket.tmpl 28 Oct 2004 17:12:26 -0000 1.2 --- basket.tmpl 14 Jan 2005 21:08:45 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- New Shopping Basket () for Index: newbasket2.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/newbasket2.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** newbasket2.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- newbasket2.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Shopping Basket For: Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/order.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** order.tmpl 28 Oct 2004 17:12:27 -0000 1.2 --- order.tmpl 14 Jan 2005 21:08:45 -0000 1.3 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Supplier Search Results Index: recieve.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieve.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** recieve.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieve.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : , Invoice Index: recieveorder.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieveorder.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** recieveorder.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieveorder.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receive Orders From Supplier Index: supplier.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/supplier.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** supplier.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- supplier.tmpl 14 Jan 2005 21:08:45 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update: Add supplier From oleonard at users.sourceforge.net Fri Jan 14 22:09:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:09:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple marcimport.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8006/koha-tmpl/intranet-tmpl/npl/en/acqui.simple Modified Files: marcimport.tmpl Log Message: Change to allow page-specific title in title tag Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple/marcimport.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** marcimport.tmpl 13 Apr 2004 16:51:08 -0000 1.2 --- marcimport.tmpl 14 Jan 2005 21:09:09 -0000 1.3 *************** *** 1,4 **** Koha -- Cataloging: MARC Import ! --- 1,4 ---- Koha -- Cataloging: MARC Import ! From oleonard at users.sourceforge.net Fri Jan 14 22:10:08 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:10:08 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves addbookbybiblionumber.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8376/koha-tmpl/intranet-tmpl/npl/en/bookshelves Modified Files: addbookbybiblionumber.tmpl Log Message: Change to allow page-specific title in title tag Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** addbookbybiblionumber.tmpl 11 Jan 2005 16:44:09 -0000 1.1 --- addbookbybiblionumber.tmpl 14 Jan 2005 21:10:04 -0000 1.2 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Add to Virtual Shelf
            From oleonard at users.sourceforge.net Fri Jan 14 22:16:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:16:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull result.tmpl,1.3,1.4 search.tmpl,1.2,1.3 searchresultlist.tmpl,1.1,1.2 subscription-bib-search.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9754/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: result.tmpl search.tmpl searchresultlist.tmpl subscription-bib-search.tmpl Log Message: Change to allow page-specific title in title tag Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** result.tmpl 11 Jan 2005 16:54:14 -0000 1.3 --- result.tmpl 14 Jan 2005 21:16:14 -0000 1.4 *************** *** 1,3 **** !

            Search results

            --- 1,3 ---- ! Koha -- Search Results

            Search results

            Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** search.tmpl 10 Jan 2005 17:02:54 -0000 1.2 --- search.tmpl 14 Jan 2005 21:16:14 -0000 1.3 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Catalog Search
            Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** searchresultlist.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- searchresultlist.tmpl 14 Jan 2005 21:16:14 -0000 1.2 *************** *** 1,3 **** !

            Authority search results

            --- 1,3 ---- ! Koha -- Authority search results

            Authority search results

            Index: subscription-bib-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-bib-search.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** subscription-bib-search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- subscription-bib-search.tmpl 14 Jan 2005 21:16:14 -0000 1.2 *************** *** 1,3 **** !
            --- 1,3 ---- ! Koha -- Bib Search
            From oleonard at users.sourceforge.net Fri Jan 14 22:17:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:17:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/circ branchtransfers.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9984/koha-tmpl/intranet-tmpl/npl/en/circ Modified Files: branchtransfers.tmpl Log Message: Converting popup links to normal links Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/branchtransfers.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** branchtransfers.tmpl 13 Apr 2004 16:53:45 -0000 1.2 --- branchtransfers.tmpl 14 Jan 2005 21:17:33 -0000 1.3 *************** *** 12,18 ****
            ! ! ! ! !
            Reserve found for (" onclick="openWindow(this,'Member', 480, 640)">). ! Item is marked waiting at for (" onclick="openWindow(this,'Member', 480, 640)">).
            Set reserve to waiting and transfer book to : --- 12,18 ----
            ! --- 125,129 ---- From oleonard at users.sourceforge.net Fri Jan 14 22:19:19 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:19:19 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes doc-head-circ-close.inc,1.2,1.3 doc-head-close-addbiblio.inc,1.1,1.2 doc-head-close.inc,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10440/koha-tmpl/intranet-tmpl/npl/en/includes Modified Files: doc-head-circ-close.inc doc-head-close-addbiblio.inc doc-head-close.inc Log Message: Enabling popup function in javascript (previously disabled to prevent popups) Index: doc-head-circ-close.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/doc-head-circ-close.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** doc-head-circ-close.inc 13 Apr 2004 16:57:24 -0000 1.2 --- doc-head-circ-close.inc 14 Jan 2005 21:19:15 -0000 1.3 *************** *** 8,14 **** --- 1,3 ---- ! Koha -- Modify categoryAdd category From oleonard at users.sourceforge.net Fri Jan 14 22:34:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Fri, 14 Jan 2005 13:34:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en bookcount.tmpl,1.1,1.2 modbib.tmpl,1.1,1.2 modbibitem.tmpl,1.1,1.2 updatebiblio.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13394/koha-tmpl/intranet-tmpl/npl/en Modified Files: bookcount.tmpl modbib.tmpl modbibitem.tmpl updatebiblio.tmpl Log Message: Change to allow page-specific title in title tag Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookcount.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bookcount.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- bookcount.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Circulation Statistics for Index: modbib.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbib.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** modbib.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbib.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Record for Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** modbibitem.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbibitem.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Biblioitem for Index: updatebiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/updatebiblio.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** updatebiblio.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- updatebiblio.tmpl 14 Jan 2005 21:34:37 -0000 1.2 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update Biblio From acli at users.sourceforge.net Sat Jan 15 06:51:37 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Fri, 14 Jan 2005 21:51:37 -0800 Subject: [Koha-cvs] CVS: koha/misc buildrelease,1.23,1.23.2.1 Message-ID: Update of /cvsroot/koha/koha/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9389 Modified Files: Tag: rel_2_2 buildrelease Log Message: Taught buildrelease what the misc directory and release 2.2 is, and also that version numbers might only have 1 dot. This should fix bugs 889, 890. A --verbose or -v option has been added in the process of doing the above. It now chdir to .. if it discovers that it is being run inside misc, since running it inside misc screws up various things, and I never remember whether it should be run inside misc or not. A confirmation message about whether to tag or not is now displayed after the user answers the question about tagging. I have never felt safe not having the release builder confirm with me that I really am not tagging anything. Index: buildrelease =================================================================== RCS file: /cvsroot/koha/koha/misc/buildrelease,v retrieving revision 1.23 retrieving revision 1.23.2.1 diff -C2 -r1.23 -r1.23.2.1 *** buildrelease 5 Jan 2005 14:31:06 -0000 1.23 --- buildrelease 15 Jan 2005 05:51:35 -0000 1.23.2.1 *************** *** 1,4 **** --- 1,60 ---- #!/usr/bin/perl + # This script uses standard 8-space tabs with 4-space indents + # vi users can :set sw=4 ai sm + use Getopt::Long; + use vars qw( $verbose_p ); + + GetOptions( + 'verbose|v' => \$verbose_p, + ) || exit(1); + + print <) { *************** *** 30,37 **** print qq | - *************************************** - * Welcome to the Koha Release Builder * - *************************************** - This script will automatically build a release tarball. --- 87,90 ---- *************** *** 39,45 **** out for the release that you want to build, although it will update the modules before building. - |; ! print "\nWhere is the 'koha' cvs module located [$kohadir]: "; chomp($input = ); if ($input) { --- 92,97 ---- out for the release that you want to build, although it will update the modules before building. |; ! print "\nWhere is the 'koha' cvs module located? [$kohadir]: "; chomp($input = ); if ($input) { *************** *** 62,72 **** #kohahtmldir=$kohahtmldir |; #---------------------------------------------------------- # which VERSION are we building ? #---------------------------------------------------------- ! print "\n\nGuessing at next release version. You may need to enter your SourceForge password...\n"; chdir $kohadir; ! open (CVSLOG, "cvs log misc/buildrelease|"); my $symbolicnamessection=0; my $symbolicnames; --- 114,128 ---- #kohahtmldir=$kohahtmldir |; + print STDERR "$roothomedir/.kohaautobuild.conf written\n" if $verbose_p; #---------------------------------------------------------- # which VERSION are we building ? #---------------------------------------------------------- ! print <{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=$rc; } if (versioncompare($version, $highestversion)) { --- 135,156 ---- if (/^symbolic names:/) { $symbolicnamessection=1; + print STDERR "Scanning symbolic names from cvs output\n" if $verbose_p; } if ($symbolicnamessection && (/^\s+([^:]*):/)) { my $tag=$1; ! if ($tag=~/(?:R|rel)_(.*)/) { my $version=''; my $rc=0; my $id=$1; ! $id =~ s/[-_]/\./g; ! print STDERR "Found a tag for release $id\n" if $verbose_p; if ($id =~/(.*)RC(.*)/) { $version=$1; $rc=$2; ! $version =~ /^(\d+\.\d+)(?:\.|[RC]|$)/; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=$rc; + print STDERR "Setting major version for $1 to $version $rc\n" if $verbose_p; } if (versioncompare($version, $highestversion)) { *************** *** 99,109 **** $released=0; $highestrc=$rc; } } else { $version=$id; ! $version=~m#(\d+\.\d+)\.#; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=0; } if (versioncompare($version, $highestversion)) { --- 158,170 ---- $released=0; $highestrc=$rc; + print STDERR "Setting highest version to $highestversion $highestrc\n" if $verbose_p; } } else { $version=$id; ! $version =~ /^(\d+\.\d+)(?:\.|[RC]|$)/; if (versioncompare($version, $majorversion->{$1})) { $majorversion->{$1}=$version; $majorversionrc->{$1}=0; + print STDERR "Setting major version for $1 to $version $rc\n" if $verbose_p; } if (versioncompare($version, $highestversion)) { *************** *** 111,117 **** --- 172,180 ---- $released=1; $highestrc=0; + print STDERR "Setting highest version to $highestversion $highestrc\n" if $verbose_p; } } $symbolicnames->{$version}->{$rc}=1; + print STDERR "Setting symbolic name mapping for version $version $rc to 1\n" if $verbose_p; } } *************** *** 121,143 **** my $currentversion=''; ! my $branchdata=`grep buildrelease CVS/Entries`; chomp $branchdata; my $branch=(split(m#/#, $branchdata))[5]; ! ! if ($branch eq 'Trel-1-2') { ! $highestversion=$majorversion->{'1.2'}; ! $highestrc=$majorversionrc->{'1.2'}; ($highestrc) ? ($released=0) : ($released=1); } if ($released) { my @components=split(/\./, $highestversion); ! $components[$#components]++; ! $nexthighestversion=join '.', @components; ! my $minornumber=(split(/\./, $highestversion))[1]; ! if ($minornumber/2 == int($minornumber/2)) { ! $releaseversion=$nexthighestversion."RC1"; } else { ! $releaseversion=$nexthighestversion; } $currentversion=$highestversion; --- 184,219 ---- my $currentversion=''; ! my $cvs_entries_path = $self_path; ! $cvs_entries_path =~ s/[^\/]+$/CVS\/Entries/; ! print STDERR "Assuming CVS/Entries is $cvs_entries_path\n" if $verbose_p; ! ! my $branchdata=`grep buildrelease $cvs_entries_path`; chomp $branchdata; my $branch=(split(m#/#, $branchdata))[5]; ! $branch =~ s/^T//; ! $branch =~ s/^(?:R|rel)_//; ! $branch =~ s/[-_]/./g; ! print STDERR "Detected branch $branch\n" if $verbose_p; ! ! if ($branch =~ /\S/ && defined $majorversion->{$branch}) { ! $highestversion=$majorversion->{$branch}; ! $highestrc=$majorversionrc->{$branch}; ($highestrc) ? ($released=0) : ($released=1); + print STDERR "Using highest version for branch $branch\n" if $verbose_p; } if ($released) { my @components=split(/\./, $highestversion); ! if (@components < 3) { # if it's something like just 2.2 or 2.4 ! $releaseversion = $highestversion.".1RC1"; } else { ! $components[$#components]++; ! $nexthighestversion=join '.', @components; ! my $minornumber=(split(/\./, $highestversion))[1]; ! if ($minornumber/2 == int($minornumber/2)) { ! $releaseversion=$nexthighestversion."RC1"; ! } else { ! $releaseversion=$nexthighestversion; ! } } $currentversion=$highestversion; *************** *** 155,159 **** print "\nWould you like to rebuild the $currentversion tarball? Y/[N]: "; chomp($input = ); - print STDERR "releaseversion=($releaseversion), currentversion=($currentversion)\n";#XXXZZZ if ($input =~ /^y/i) { $releaseversion=$currentversion; --- 231,234 ---- *************** *** 178,185 **** chomp ($input=); my $cvstag=0; - # FIXME: This means anything other than n will tag; too dangerous? if ($input=~/^y/i) { $cvstag=1; } --- 253,260 ---- chomp ($input=); my $cvstag=0; if ($input=~/^y/i) { $cvstag=1; } + print "The CVS repository ",($cvstag?"WILL BE TAGGED\n":"will not be tagged\n"); *************** *** 329,332 **** --- 404,408 ---- + # Given two version numbers (v1, v2), returns 0 if v1 <= v2, or 1 if v1 > v2 sub versioncompare { my $v1=shift; From oleonard at users.sourceforge.net Tue Jan 18 18:35:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 09:35:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-auth.tmpl,1.1,1.1.2.1 opac-main.tmpl,1.3,1.3.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28083/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-auth.tmpl opac-main.tmpl Log Message: Removing NPL-specific javascript function which was trying to validate library card numbers Index: opac-auth.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-auth.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-auth.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-auth.tmpl 18 Jan 2005 17:35:51 -0000 1.1.2.1 *************** *** 35,39 ****
            Reserve found for (">). ! Item is marked waiting at for (">).
            Set reserve to waiting and transfer book to : *************** *** 94,99 **** ! Item was on loan to " ! onClick="openWindow(this,'Member', 480, 640)"> and has been returned. --- 94,98 ---- ! Item was on loan to "> and has been returned. *************** *** 126,130 ****
            ! &type=intra" onclick="openWindow(this, 'Item', 480, 640)">
            ! &type=intra">
            !
            --- 35,39 ----
            !
            Index: opac-main.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-main.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** opac-main.tmpl 8 Dec 2004 16:12:17 -0000 1.3 --- opac-main.tmpl 18 Jan 2005 17:35:55 -0000 1.3.2.1 *************** *** 12,16 ****

            Log in to Check Your Account

            !

            --- 12,16 ----

            Log in to Check Your Account

            !

            From oleonard at users.sourceforge.net Tue Jan 18 21:09:49 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 12:09:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en request.tmpl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29568/koha-tmpl/intranet-tmpl/npl/en Modified Files: request.tmpl Log Message: Converting popup links to normal links Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/request.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** request.tmpl 13 Jan 2005 21:53:03 -0000 1.4 --- request.tmpl 18 Jan 2005 20:09:28 -0000 1.5 *************** *** 130,134 ****
            ! &type=intra" onClick="openWindow(this, 'Item', 480, 640)"> --- 130,134 ---- ! &type=intra"> From oleonard at users.sourceforge.net Tue Jan 18 22:10:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:10:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/includes doc-head-circ-close.inc,1.2,1.2.2.1 doc-head-close-addbiblio.inc,1.1,1.1.2.1 doc-head-close.inc,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9555/koha-tmpl/intranet-tmpl/npl/en/includes Modified Files: Tag: rel_2_2 doc-head-circ-close.inc doc-head-close-addbiblio.inc doc-head-close.inc Log Message: Enabling popup function in javascript (previously disabled to prevent popups) Index: doc-head-circ-close.inc =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/includes/doc-head-circ-close.inc,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** doc-head-circ-close.inc 13 Apr 2004 16:57:24 -0000 1.2 --- doc-head-circ-close.inc 18 Jan 2005 21:10:15 -0000 1.2.2.1 *************** *** 8,14 ****
            Notes
            Date
            Pickup
            RequestNext Available, (or choose from list below)
            Card Number (Quick Search)
            --- 24,32 ----
    Next Available, (or choose from list below)
    (Quick Search)
    *************** *** 130,134 ****
    ! &type=intra" onClick="openWindow(this, 'Item', 480, 640)"> --- 130,134 ---- ! &type=intra"> From oleonard at users.sourceforge.net Tue Jan 18 22:22:07 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:22:07 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en bookcount.tmpl,1.1,1.1.2.1 modbib.tmpl,1.1,1.1.2.1 modbibitem.tmpl,1.1,1.1.2.1 updatebiblio.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11617/koha-tmpl/intranet-tmpl/npl/en Modified Files: Tag: rel_2_2 bookcount.tmpl modbib.tmpl modbibitem.tmpl updatebiblio.tmpl Log Message: Change to allow page-specific title in title tag Index: bookcount.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookcount.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** bookcount.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- bookcount.tmpl 18 Jan 2005 21:21:23 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Circulation Statistics for Index: modbib.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbib.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** modbib.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbib.tmpl 18 Jan 2005 21:21:23 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Record for Index: modbibitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** modbibitem.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- modbibitem.tmpl 18 Jan 2005 21:21:28 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Edit Biblioitem for Index: updatebiblio.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/updatebiblio.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** updatebiblio.tmpl 19 Feb 2004 19:22:18 -0000 1.1 --- updatebiblio.tmpl 18 Jan 2005 21:21:28 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update Biblio From oleonard at users.sourceforge.net Tue Jan 18 22:38:57 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:38:57 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bull result.tmpl,1.1.2.2,1.1.2.3 search.tmpl,1.1.2.1,1.1.2.2 searchresultlist.tmpl,1.1,1.1.2.1 subscription-bib-search.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14728/koha-tmpl/intranet-tmpl/npl/en/bull Modified Files: Tag: rel_2_2 result.tmpl search.tmpl searchresultlist.tmpl subscription-bib-search.tmpl Log Message: Change to allow page-specific title in title tag Index: result.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/result.tmpl,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -r1.1.2.2 -r1.1.2.3 *** result.tmpl 11 Jan 2005 16:53:39 -0000 1.1.2.2 --- result.tmpl 18 Jan 2005 21:38:04 -0000 1.1.2.3 *************** *** 1,3 **** !

    Search results

    --- 1,3 ---- ! Koha -- Search Results

    Search results

    Index: search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/search.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** search.tmpl 10 Jan 2005 17:05:03 -0000 1.1.2.1 --- search.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.2 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Catalog Search
    Index: searchresultlist.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/searchresultlist.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** searchresultlist.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- searchresultlist.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.1 *************** *** 1,3 **** !

    Authority search results

    --- 1,3 ---- ! Koha -- Authority search results

    Authority search results

    Index: subscription-bib-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bull/subscription-bib-search.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** subscription-bib-search.tmpl 1 Nov 2004 22:52:53 -0000 1.1 --- subscription-bib-search.tmpl 18 Jan 2005 21:38:05 -0000 1.1.2.1 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Bib Search
    From oleonard at users.sourceforge.net Tue Jan 18 22:55:24 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:55:24 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-quicksearch-results.tmpl,NONE,1.1.2.1 member-quicksearch.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18387/koha-tmpl/intranet-tmpl/npl/en/members Added Files: Tag: rel_2_2 member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: Adding member quick search (already in HEAD) to rel_2_2 --- NEW FILE --- Koha -- Patron Quick Search
      Card Name (Cat.) Address
    ','mainform','member'); return false;" /> ">, ()
    No results found
    --- NEW FILE --- Koha -- Patron Quick Search
    From oleonard at users.sourceforge.net Tue Jan 18 22:57:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:57:10 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/members member-quicksearch-results.tmpl,NONE,1.1.2.1 member-quicksearch.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18688/koha-tmpl/intranet-tmpl/default/en/members Added Files: Tag: rel_2_2 member-quicksearch-results.tmpl member-quicksearch.tmpl Log Message: Adding member quick search (already in HEAD) to rel_2_2 --- NEW FILE ---

    Member Search

      Card Surname Firstname Address
    ','request','member'); return false;" />
    ">
    --- NEW FILE ---

    Member Quick Search

    From oleonard at users.sourceforge.net Tue Jan 18 22:59:16 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 13:59:16 -0800 Subject: [Koha-cvs] CVS: koha/members members-home.pl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19123/members Modified Files: Tag: rel_2_2 members-home.pl Log Message: Adding member quick search (already in HEAD) to rel_2_2 Index: members-home.pl =================================================================== RCS file: /cvsroot/koha/koha/members/members-home.pl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** members-home.pl 10 Mar 2004 15:13:45 -0000 1.1 --- members-home.pl 18 Jan 2005 21:59:09 -0000 1.1.2.1 *************** *** 10,14 **** my $query = new CGI; ! my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/members-home.tmpl", query => $query, --- 10,28 ---- my $query = new CGI; ! my $quicksearch = $query->param('quicksearch'); ! my ($template, $loggedinuser, $cookie); ! my $template_name; ! ! if($quicksearch){ ! ($template, $loggedinuser, $cookie) ! = get_template_and_user({template_name => "members/member-quicksearch.tmpl", ! query => $query, ! type => "intranet", ! authnotrequired => 0, ! flagsrequired => {borrowers => 1}, ! debug => 1, ! }); ! } else { ! ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/members-home.tmpl", query => $query, *************** *** 18,21 **** --- 32,37 ---- debug => 1, }); + } + output_html_with_http_headers $query, $cookie, $template->output; From oleonard at users.sourceforge.net Tue Jan 18 23:07:47 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:07:47 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes quicksearch-top.inc,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20451/koha-tmpl/intranet-tmpl/default/en/includes Added Files: Tag: rel_2_2 quicksearch-top.inc Log Message: Header include for member-quicksearch-results.tmpl (includes javascript for communicating with parent window) --- NEW FILE --- popup /includes/common-style.css"> From oleonard at users.sourceforge.net Tue Jan 18 23:11:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:11:59 -0800 Subject: [Koha-cvs] CVS: koha/members member.pl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21337/members Modified Files: Tag: rel_2_2 member.pl Log Message: Adding option to output using quicksearch template if the quicksearch parameter is present (uses member-quicksearch.tmpl and member-quicksearch-results.tmpl) Index: member.pl =================================================================== RCS file: /cvsroot/koha/koha/members/member.pl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** member.pl 5 Sep 2004 22:34:05 -0000 1.2 --- member.pl 18 Jan 2005 22:11:43 -0000 1.2.2.1 *************** *** 33,45 **** my $input = new CGI; ! ! my $theme = $input->param('theme') || "default"; ! # only used if allowthemeoverride is set ! #my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' ); ! # FIXME - Error-checking ! #my $template = HTML::Template->new( filename => $tmpldata{'path'}, ! # die_on_bad_params => 0, ! # loop_context_vars => 1 ); ! my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/member.tmpl", query => $input, --- 33,49 ---- my $input = new CGI; ! my $quicksearch = $input->param('quicksearch'); ! my ($template, $loggedinuser, $cookie); ! if($quicksearch){ ! ($template, $loggedinuser, $cookie) ! = get_template_and_user({template_name => "members/member-quicksearch-results.tmpl", ! query => $input, ! type => "intranet", ! authnotrequired => 0, ! flagsrequired => {borrowers => 1}, ! debug => 1, ! }); ! } else { ! ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "members/member.tmpl", query => $input, *************** *** 49,52 **** --- 53,65 ---- debug => 1, }); + } + my $theme = $input->param('theme') || "default"; + # only used if allowthemeoverride is set + #my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' ); + # FIXME - Error-checking + #my $template = HTML::Template->new( filename => $tmpldata{'path'}, + # die_on_bad_params => 0, + # loop_context_vars => 1 ); + my $member=$input->param('member'); From oleonard at users.sourceforge.net Tue Jan 18 23:53:08 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 18 Jan 2005 14:53:08 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_subfields_structure.tmpl,NONE,1.1 auth_tag_structure.tmpl,NONE,1.1 authtypes.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29639/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: auth_subfields_structure.tmpl auth_tag_structure.tmpl authtypes.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration

    Edit subfields

    " name="Aform" method="post"> " /> ">

    Tag , Subfield

    MARC constraints

    repeatable mandatory

    " size="20" /> (example for 200a : '200c','200d','200e')

    Editor constaints

    " size="40" maxlength="80" />

    " size="40" maxlength="80" />

    hidden (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)

    URL (if checked, it means that the subfield is an URL and can be clicked

    or thesaurus: or plugin:

    Note: in the last column, you can choose:

    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.

    Subfield

    " method="post"> " /> " /> " /> " />

    CONFIRM DELETION

    " method="post"> " />

    Authority MARC subfield structure admin for tag (framework )(default framework)

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    ">
    Subfield Text Constraints Delete
    subfield ignored Managed, Repeatable, Not repeatable, Mandatory, Not mandatory, see also : , hidden, is an url, Auth value :, Plugin :, ">Delete
    Edit &authtypecode="> //images/2uparrow.png" width="32" hspace="0" vspace="0" border="0"> << Previous Next >>
    --- NEW FILE --- Koha -- System Administration

    Authority MARC framework for default framework

    Modify tag Add tag

    " name="Aform" method="post"> " />

    " size="80" maxlength="100" />

    " size="80" maxlength="100" />

    (if you select a value here, the indicators will be limited to the authorised value list)

    " method="post"> " /> Data deleted " method="post"> " method="post"> " /> Create authority framework for using

    Select an authority framework

    " method="post"> " />
    tag
     
    CONFIRM DELETION
    " method="post">
    ">
    Tag Lib Repeatable Mandatory Authorised
    value
    Subfields Edit Delete
    YesNo YesNo " class="button">subfields ">Edit ">Delete
    " method="post"> " /> ?offset=&searchfield=">Previous Page ?offset=&searchfield=">Next Page
    --- NEW FILE --- Koha -- System Administration
    " name="Aform" method="post">
    Modify authority type Add authority type
    " />
    " />
    " />Enter here the number of the tag that will be reported in the biblio (subfield by subfield). For example, in UNIMARC, enter 200 to report every 200 subfield in the 70x biblio

    Authority structure definition for ()

    This record is used times

    CONFIRM DELETION

    " method="post"> " />
    " method="post">

    Auth type Admin

    Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins

    Code Description summary Tag reported   Edit Delete
      Default framework     MARC structure    
    " class="button parameters" >MARC structure ?op=add_form&authtypecode=">Edit ?op=delete_confirm&authtypecode=">Delete
    " method="post">
    "><< Previous ">Next >> /images/background-mem.gif">Upper Age Limit /images/background-mem.gif">Age Required/images/background-mem.gif">Fine /images/background-mem.gif">Overdue/images/background-mem.gif">Issue limit /images/background-mem.gif">Reserve /images/background-mem.gif"> Yes --- 268,271 ---- *************** *** 277,281 **** ?op=add_form&categorycode=">//images/fileopen.png" width="32" hspace="0" vspace="0" border="0">
    CONFIRM DELETION
    " -->&modify=edit">Edit
    &modify=edit">Edit
    Due Status
    - - &bornum=" class="padded">Renew - - Not renewable - -
    Reserved Items Waiting
    TitleAuthor Reserve date Pick Up Branch
    ! ">  !
    --- 41,59 ---- Reserved Items Waiting ! Title Reserve date Pick Up Branch ! ! /images/.gif" alt="" title="" /> ! "> ! ! Waiting at ! ! In transit from to ! ! *************** *** 69,75 **** ! /images/.gif" alt="" /> "> ! () --> --- 73,79 ---- ! /images/.gif" alt="" title="" /> "> ! --> *************** *** 86,90 **** Due ! Status --- 90,94 ---- Due ! *************** *** 92,101 **** ! /images/.gif" alt="" /> "> ! () YesNo --> ! &bornum=" class="padded">Renew --- 96,105 ---- ! /images/.gif" alt="" title="" /> "> ! YesNo --> ! &bornum=" class="padded">Renew *************** *** 103,107 **** Not renewable ! --- 107,111 ---- Not renewable ! --> *************** *** 121,136 **** ! Title Placed On Pick Up Location "> ! () ! !
    --- 125,144 ---- ! Title Placed On Pick Up Location + Status + /images/.gif" alt="" title="" /> "> ! ! ! ! Waiting at In transit from to   !
    From oleonard at users.sourceforge.net Wed Jan 19 22:39:28 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:39:28 -0800 Subject: [Koha-cvs] CVS: koha request.pl,1.28,1.29 Message-ID: Update of /cvsroot/koha/koha In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13177 Modified Files: request.pl Log Message: Comparing reserves' destination branch to the current holding branch to determine actual waiting status. If destination branch is equal to holding branch, the item has been checked in at its destination and can be accurately shown as waiting. If not, the item is still in transit and should display that information. Index: request.pl =================================================================== RCS file: /cvsroot/koha/koha/request.pl,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** request.pl 13 Jul 2004 12:55:01 -0000 1.28 --- request.pl 19 Jan 2005 21:39:25 -0000 1.29 *************** *** 134,141 **** --- 134,145 ---- my $item = $res->{'itemnumber'}; $item = getiteminformation(\%env,$item); + $reserve{'holdingbranch'}=$item->{'holdingbranch'}; $reserve{'barcode'}=$item->{'barcode'}; $reserve{'biblionumber'}=$item->{'biblionumber'}; $reserve{'wbrcode'} = $res->{'branchcode'}; $reserve{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'}; + if($reserve{'holdingbranch'} eq $reserve{'wbrcode'}){ + $reserve{'atdestination'} = 1; + } } $reserve{'date'} = format_date($res->{'reservedate'}); From oleonard at users.sourceforge.net Wed Jan 19 22:45:59 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Wed, 19 Jan 2005 13:45:59 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en request.tmpl,1.17,1.18 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15288/koha-tmpl/intranet-tmpl/default/en Modified Files: request.tmpl Log Message: Updated to show items as waiting only if destination branch matches holding branch. Otherwise waiting items will be shown as "in transit" between holding branch and destination branch. Index: request.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/request.tmpl,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** request.tmpl 13 Jan 2005 22:41:03 -0000 1.17 --- request.tmpl 19 Jan 2005 21:45:56 -0000 1.18 *************** *** 109,113 **** ! Item waiting at > > " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> --- 46,50 ---- ! class="hilighted"> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> From oleonard at users.sourceforge.net Thu Jan 20 18:37:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:37:58 -0800 Subject: [Koha-cvs] CVS: koha/admin issuingrules.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9072/admin Modified Files: issuingrules.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: issuingrules.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/issuingrules.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** issuingrules.pl 18 Aug 2004 16:05:14 -0000 1.3 --- issuingrules.pl 20 Jan 2005 17:37:56 -0000 1.4 *************** *** 132,136 **** $sth->execute; # $i=0; ! my $toggle="white"; my @row_loop; my @itemtypes; --- 132,136 ---- $sth->execute; # $i=0; ! my $toggle= 1; my @row_loop; my @itemtypes; *************** *** 146,153 **** my @trow2; my @cell_loop; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } for (my $i=0;$i<=$#trow3;$i++){ --- 146,153 ---- my @trow2; my @cell_loop; ! if ( $toggle eq 1 ) { ! $toggle = 0; } else { ! $toggle = 1; } for (my $i=0;$i<=$#trow3;$i++){ From oleonard at users.sourceforge.net Thu Jan 20 18:38:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:38:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters issuingrules.tmpl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9222/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: issuingrules.tmpl Log Message: Altering table cell color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: issuingrules.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** issuingrules.tmpl 19 Jul 2004 19:20:29 -0000 1.3 --- issuingrules.tmpl 20 Jan 2005 17:38:16 -0000 1.4 *************** *** 46,50 **** ! "> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> --- 46,50 ---- ! class="hilighted"> " value="" size="6" maxlength="10"> / " value="" size="6" maxlength="10"> From oleonard at users.sourceforge.net Thu Jan 20 18:39:41 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:39:41 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters biblio_framework.tmpl,NONE,1.1 issuingrules.tmpl,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9613/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: biblio_framework.tmpl issuingrules.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration: Modify framework textAdd frameworkDelete Framework for ()?Biblio Framework
    " name="Aform" method="post">
    Modify framework textAdd framework
    " />
    " />

    Delete ramework for ()?

    This framework is used times

    " method="post">" />
    " method="post">

    Biblio framework

    Framework name, then go to MARC biblio to set MARC editor parameters

    Code Description   Edit Delete
      Default framework ">MARC structure    
    " >MARC structure ?op=add_form&frameworkcode=">Edit ?op=delete_confirm&frameworkcode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Issuing Rules

    Defining issuing rules for default issuing rules

    HINT for issues

    Each box needs to be filled in with issuelength,maxissues

    eq 21,5 enables 5 issues for 21 days

    HINT for fines

    Each box needs to be filled in with fine,time to start charging,charging cycle

    eg 1,7,7 = 1 [USD,EUR,etc] fine after 7 days, every 7 days

    Fines are calculated by the fines2.pl script, located in misc directory. Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night

    Default values

    If a cell is not filled, the 1st of the following value is searched :

    • same branch and same borrower category, itemtype *
    • same branch and same itemtype, borrower category *
    • same itemtype and borrower category, branch *
    • everywhere
    • If nothing is set, default is 21,5 (hardcoded)
    class="highlight"> " value="" size="6" maxlength="10" /> / " value="" size="6" maxlength="10" />
    Defining issuing rules for
     
    Issue / fine
    From oleonard at users.sourceforge.net Thu Jan 20 18:41:09 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 09:41:09 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_subfields_structure.tmpl,NONE,1.1.2.1 auth_tag_structure.tmpl,NONE,1.1.2.1 authtypes.tmpl,NONE,1.1.2.1 biblio_framework.tmpl,NONE,1.1.2.1 issuingrules.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9964/koha-tmpl/intranet-tmpl/npl/en/parameters Added Files: Tag: rel_2_2 auth_subfields_structure.tmpl auth_tag_structure.tmpl authtypes.tmpl biblio_framework.tmpl issuingrules.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- System Administration

    Edit subfields

    " name="Aform" method="post"> " /> ">

    Tag , Subfield

    MARC constraints

    repeatable mandatory

    " size="20" /> (example for 200a : '200c','200d','200e')

    Editor constaints

    " size="40" maxlength="80" />

    " size="40" maxlength="80" />

    hidden (subfield is managed, but hidden. -should be filled by a plugin or thesaurus-)

    URL (if checked, it means that the subfield is an URL and can be clicked

    or thesaurus: or plugin:

    Note: in the last column, you can choose:

    • An "authorised value": it refers to a list of authorised values for this subfield. See the corresponding admin table.
    • A "value builder": values builders are perl programs that help you select the value of the field. They are MARC-flavor dependant and sometimes fill another subfield automatically.

    Subfield

    " method="post"> " /> " /> " /> " />

    CONFIRM DELETION

    " method="post"> " />

    Authority MARC subfield structure admin for tag (framework )(default framework)

    This screen shows the subfields associated with the selected tag. You can edit subfields or add a new one by clicking on edit.

    ">
    Subfield Text Constraints Delete
    subfield ignored Managed, Repeatable, Not repeatable, Mandatory, Not mandatory, see also : , hidden, is an url, Auth value :, Plugin :, ">Delete
    Edit &authtypecode="> //images/2uparrow.png" width="32" hspace="0" vspace="0" border="0"> << Previous Next >>
    --- NEW FILE --- Koha -- System Administration

    Authority MARC framework for default framework

    Modify tag Add tag

    " name="Aform" method="post"> " />

    " size="80" maxlength="100" />

    " size="80" maxlength="100" />

    (if you select a value here, the indicators will be limited to the authorised value list)

    " method="post"> " /> Data deleted " method="post"> " method="post"> " /> Create authority framework for using

    Select an authority framework

    " method="post"> " />
    tag
     
    CONFIRM DELETION
    " method="post">
    ">
    Tag Lib Repeatable Mandatory Authorised
    value
    Subfields Edit Delete
    YesNo YesNo " class="button">subfields ">Edit ">Delete
    " method="post"> " /> ?offset=&searchfield=">Previous Page ?offset=&searchfield=">Next Page
    --- NEW FILE --- Koha -- System Administration
    " name="Aform" method="post">
    Modify authority type Add authority type
    " />
    " />
    " />Enter here the number of the tag that will be reported in the biblio (subfield by subfield). For example, in UNIMARC, enter 200 to report every 200 subfield in the 70x biblio

    Authority structure definition for ()

    This record is used times

    CONFIRM DELETION

    " method="post"> " />
    " method="post">

    Auth type Admin

    Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins

    Code Description summary Tag reported   Edit Delete
      Default framework     MARC structure    
    " class="button parameters" >MARC structure ?op=add_form&authtypecode=">Edit ?op=delete_confirm&authtypecode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Modify framework textAdd frameworkDelete Framework for ()?Biblio Framework
    " name="Aform" method="post">
    Modify framework textAdd framework
    " />
    " />

    Delete ramework for ()?

    This framework is used times

    " method="post">" />
    " method="post">

    Biblio framework

    Framework name, then go to MARC biblio to set MARC editor parameters

    Code Description   Edit Delete
      Default framework ">MARC structure    
    " >MARC structure ?op=add_form&frameworkcode=">Edit ?op=delete_confirm&frameworkcode=">Delete
    " method="post"> "><< Previous ">Next >>
    --- NEW FILE --- Koha -- System Administration: Issuing Rules

    Defining issuing rules for default issuing rules

    HINT for issues

    Each box needs to be filled in with issuelength,maxissues

    eq 21,5 enables 5 issues for 21 days

    HINT for fines

    Each box needs to be filled in with fine,time to start charging,charging cycle

    eg 1,7,7 = 1 [USD,EUR,etc] fine after 7 days, every 7 days

    Fines are calculated by the fines2.pl script, located in misc directory. Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night

    Default values

    If a cell is not filled, the 1st of the following value is searched :

    • same branch and same borrower category, itemtype *
    • same branch and same itemtype, borrower category *
    • same itemtype and borrower category, branch *
    • everywhere
    • If nothing is set, default is 21,5 (hardcoded)
    class="highlight"> " value="" size="6" maxlength="10" /> / " value="" size="6" maxlength="10" />
    Defining issuing rules for
     
    Issue / fine
    From oleonard at users.sourceforge.net Thu Jan 20 19:03:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:03:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes common-style.css,1.34,1.35 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15346/koha-tmpl/intranet-tmpl/default/en/includes Modified Files: common-style.css Log Message: Adding declaration for tr.hilighted to match td.hilighted (for alternating row colors) Index: common-style.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/common-style.css,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** common-style.css 9 Dec 2004 19:44:09 -0000 1.34 --- common-style.css 20 Jan 2005 18:03:33 -0000 1.35 *************** *** 105,109 **** } /* hilighted cell */ ! td.hilighted { border-left:0px; background-color:#ffffcc; --- 105,109 ---- } /* hilighted cell */ ! td.hilighted, tr.hilighted { border-left:0px; background-color:#ffffcc; From oleonard at users.sourceforge.net Thu Jan 20 19:04:51 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:04:51 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes common-style.css,1.34,1.34.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15729/koha-tmpl/intranet-tmpl/default/en/includes Modified Files: Tag: rel_2_2 common-style.css Log Message: Adding declaration for tr.hilighted to match td.hilighted (for alternating row colors) Index: common-style.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/common-style.css,v retrieving revision 1.34 retrieving revision 1.34.2.1 diff -C2 -r1.34 -r1.34.2.1 *** common-style.css 9 Dec 2004 19:44:09 -0000 1.34 --- common-style.css 20 Jan 2005 18:04:49 -0000 1.34.2.1 *************** *** 105,109 **** } /* hilighted cell */ ! td.hilighted { border-left:0px; background-color:#ffffcc; --- 105,109 ---- } /* hilighted cell */ ! td.hilighted, tr.hilighted { border-left:0px; background-color:#ffffcc; From oleonard at users.sourceforge.net Thu Jan 20 19:42:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:42:37 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.32.2.1,1.32.2.2 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24947/admin Modified Files: Tag: rel_2_2 marc_subfields_structure.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32.2.1 retrieving revision 1.32.2.2 diff -C2 -r1.32.2.1 -r1.32.2.2 *** marc_subfields_structure.pl 19 Jan 2005 17:17:10 -0000 1.32.2.1 --- marc_subfields_structure.pl 20 Jan 2005 18:42:29 -0000 1.32.2.2 *************** *** 154,165 **** $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle="white"; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', --- 154,165 ---- $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle=1; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', *************** *** 358,368 **** my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle="white"; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } my %row_data; # get a fresh hash for the row data --- 358,368 ---- my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle=1; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } my %row_data; # get a fresh hash for the row data *************** *** 382,386 **** $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{bgcolor} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; --- 382,386 ---- $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{toggle} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; From oleonard at users.sourceforge.net Thu Jan 20 19:44:13 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:44:13 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters marc_subfields_structure.tmpl,1.38,1.38.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25334/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 marc_subfields_structure.tmpl Log Message: Altering table row color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.38 retrieving revision 1.38.2.1 diff -C2 -r1.38 -r1.38.2.1 *** marc_subfields_structure.tmpl 3 Jan 2005 10:48:39 -0000 1.38 --- marc_subfields_structure.tmpl 20 Jan 2005 18:44:05 -0000 1.38.2.1 *************** *** 114,118 **** Delete ! "> --- 114,118 ---- Delete ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 19:45:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:45:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters marc_subfields_structure.tmpl,1.38,1.39 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25747/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: marc_subfields_structure.tmpl Log Message: Altering table row color declaration to match changes in issuingrules.pl (moving color declaration out of script and into template) Index: marc_subfields_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -r1.38 -r1.39 *** marc_subfields_structure.tmpl 3 Jan 2005 10:48:39 -0000 1.38 --- marc_subfields_structure.tmpl 20 Jan 2005 18:45:29 -0000 1.39 *************** *** 114,118 **** Delete ! "> --- 114,118 ---- Delete ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 19:48:17 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 10:48:17 -0800 Subject: [Koha-cvs] CVS: koha/admin marc_subfields_structure.pl,1.32,1.33 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26578/admin Modified Files: marc_subfields_structure.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: marc_subfields_structure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marc_subfields_structure.pl,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** marc_subfields_structure.pl 3 Jan 2005 12:56:30 -0000 1.32 --- marc_subfields_structure.pl 20 Jan 2005 18:48:12 -0000 1.33 *************** *** 154,165 **** $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle="white"; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', --- 154,165 ---- $sth->execute($tagfield,$frameworkcode); my @loop_data = (); ! my $toggle=1; my $i=0; while ($data =$sth->fetchrow_hashref) { my %row_data; # get a fresh hash for the row data ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } $row_data{tab} = CGI::scrolling_list(-name=>'tab', *************** *** 358,368 **** my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle="white"; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 'white'){ ! $toggle="#ffffcc"; } else { ! $toggle="white"; } my %row_data; # get a fresh hash for the row data --- 358,368 ---- my $env; my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode); ! my $toggle=1; my @loop_data = (); for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ ! if ($toggle eq 1){ ! $toggle=0; } else { ! $toggle=1; } my %row_data; # get a fresh hash for the row data *************** *** 382,386 **** $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{bgcolor} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; --- 382,386 ---- $row_data{link} = $results->[$i]{'link'}; $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode"; ! $row_data{toggle} = $toggle; if ($row_data{tab} eq -1) { $row_data{subfield_ignored} = 1; From oleonard at users.sourceforge.net Thu Jan 20 20:32:04 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:32:04 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui acqui-home.tmpl,1.3,1.3.2.1 acquire.tmpl,1.1,1.1.2.1 basket.tmpl,1.2,1.2.2.1 newbasket2.tmpl,1.1,1.1.2.1 order.tmpl,1.2,1.2.2.1 recieve.tmpl,1.1,1.1.2.1 recieveorder.tmpl,1.1,1.1.2.1 supplier.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3765/koha-tmpl/intranet-tmpl/npl/en/acqui Modified Files: Tag: rel_2_2 acqui-home.tmpl acquire.tmpl basket.tmpl newbasket2.tmpl order.tmpl recieve.tmpl recieveorder.tmpl supplier.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: acqui-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acqui-home.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** acqui-home.tmpl 28 Oct 2004 17:12:26 -0000 1.3 --- acqui-home.tmpl 20 Jan 2005 19:31:57 -0000 1.3.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Acquisitions Index: acquire.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/acquire.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** acquire.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- acquire.tmpl 20 Jan 2005 19:31:57 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : Invoice, Index: basket.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/basket.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** basket.tmpl 28 Oct 2004 17:12:26 -0000 1.2 --- basket.tmpl 20 Jan 2005 19:31:58 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- New Shopping Basket () for Index: newbasket2.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/newbasket2.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newbasket2.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- newbasket2.tmpl 20 Jan 2005 19:31:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Shopping Basket For: Index: order.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/order.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** order.tmpl 28 Oct 2004 17:12:27 -0000 1.2 --- order.tmpl 20 Jan 2005 19:31:58 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Supplier Search Results Index: recieve.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieve.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** recieve.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieve.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receipt Summary for : , Invoice Index: recieveorder.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/recieveorder.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** recieveorder.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- recieveorder.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Receive Orders From Supplier Index: supplier.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui/supplier.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** supplier.tmpl 19 Feb 2004 18:59:36 -0000 1.1 --- supplier.tmpl 20 Jan 2005 19:31:59 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Update: Add supplier From oleonard at users.sourceforge.net Thu Jan 20 20:32:40 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:32:40 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple marcimport.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4009/koha-tmpl/intranet-tmpl/npl/en/acqui.simple Modified Files: Tag: rel_2_2 marcimport.tmpl Log Message: Correction to header includes Index: marcimport.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui.simple/marcimport.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** marcimport.tmpl 13 Apr 2004 16:51:08 -0000 1.2 --- marcimport.tmpl 20 Jan 2005 19:32:37 -0000 1.2.2.1 *************** *** 1,4 **** Koha -- Cataloging: MARC Import ! --- 1,4 ---- Koha -- Cataloging: MARC Import ! From oleonard at users.sourceforge.net Thu Jan 20 20:34:01 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:34:01 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves addbookbybiblionumber.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4275/koha-tmpl/intranet-tmpl/npl/en/bookshelves Modified Files: Tag: rel_2_2 addbookbybiblionumber.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: addbookbybiblionumber.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/bookshelves/addbookbybiblionumber.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** addbookbybiblionumber.tmpl 11 Jan 2005 16:46:27 -0000 1.1.2.1 --- addbookbybiblionumber.tmpl 20 Jan 2005 19:33:57 -0000 1.1.2.2 *************** *** 1,3 **** !
    --- 1,3 ---- ! Koha -- Add to Virtual Shelf
    From oleonard at users.sourceforge.net Thu Jan 20 20:35:49 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:35:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/circ branchtransfers.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4677/koha-tmpl/intranet-tmpl/npl/en/circ Modified Files: Tag: rel_2_2 branchtransfers.tmpl Log Message: Converting pop-up links to normal links Index: branchtransfers.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/branchtransfers.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** branchtransfers.tmpl 13 Apr 2004 16:53:45 -0000 1.2 --- branchtransfers.tmpl 20 Jan 2005 19:35:46 -0000 1.2.2.1 *************** *** 12,18 ****
    ! ! ! ! !
    Reserve found for (" onclick="openWindow(this,'Member', 480, 640)">). ! Item is marked waiting at for (" onclick="openWindow(this,'Member', 480, 640)">).
    Set reserve to waiting and transfer book to : --- 12,18 ----
    ! --- 125,129 ---- From oleonard at users.sourceforge.net Thu Jan 20 20:37:02 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 11:37:02 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/members member-flags.tmpl,1.2,1.2.2.1 newimember.tmpl,1.1,1.1.2.1 newjmember.tmpl,1.1,1.1.2.1 newmember.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4947/koha-tmpl/intranet-tmpl/npl/en/members Modified Files: Tag: rel_2_2 member-flags.tmpl newimember.tmpl newjmember.tmpl newmember.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: member-flags.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/member-flags.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** member-flags.tmpl 13 Apr 2004 16:59:43 -0000 1.2 --- member-flags.tmpl 20 Jan 2005 19:36:57 -0000 1.2.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Set Privileges for , Index: newimember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newimember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newimember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newimember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm New Borrower Index: newjmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newjmember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newjmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newjmember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Details Index: newmember.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/members/newmember.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** newmember.tmpl 1 Apr 2004 20:30:03 -0000 1.1 --- newmember.tmpl 20 Jan 2005 19:36:58 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Confirm Record From oleonard at users.sourceforge.net Thu Jan 20 21:19:10 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:19:10 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22.2.1,1.22.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17861/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: Altering table row color declaration to match changes in categorie.pl (moving color declaration out of script and into template) Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22.2.1 retrieving revision 1.22.2.2 diff -C2 -r1.22.2.1 -r1.22.2.2 *** categorie.tmpl 19 Jan 2005 17:24:11 -0000 1.22.2.1 --- categorie.tmpl 20 Jan 2005 20:19:05 -0000 1.22.2.2 *************** *** 261,265 **** ! "> --- 261,265 ---- ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 21:20:04 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:20:04 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters categorie.tmpl,1.22,1.23 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18170/koha-tmpl/intranet-tmpl/default/en/parameters Modified Files: categorie.tmpl Log Message: Altering table row color declaration to match changes in categorie.pl (moving color declaration out of script and into template) Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/categorie.tmpl,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** categorie.tmpl 3 Dec 2004 21:44:04 -0000 1.22 --- categorie.tmpl 20 Jan 2005 20:20:01 -0000 1.23 *************** *** 263,267 **** ! "> --- 263,267 ---- ! class="hilighted"> From oleonard at users.sourceforge.net Thu Jan 20 21:20:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:20:18 -0800 Subject: [Koha-cvs] CVS: koha/admin categorie.pl,1.16,1.16.2.1 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18302/admin Modified Files: Tag: rel_2_2 categorie.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: categorie.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categorie.pl,v retrieving revision 1.16 retrieving revision 1.16.2.1 diff -C2 -r1.16 -r1.16.2.1 *** categorie.pl 18 Aug 2004 16:05:14 -0000 1.16 --- categorie.pl 20 Jan 2005 20:20:15 -0000 1.16.2.1 *************** *** 163,167 **** my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 'white'; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, --- 163,167 ---- my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 0; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, *************** *** 176,186 **** toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } } --- 176,186 ---- toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 0 ) { ! $toggle = 1; } else { ! $toggle = 0; } } From oleonard at users.sourceforge.net Thu Jan 20 21:21:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:21:11 -0800 Subject: [Koha-cvs] CVS: koha/admin categorie.pl,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18443/admin Modified Files: categorie.pl Log Message: Changing table row color toggle so that color values can be specified in the template instead of the script (requires update to template) Index: categorie.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categorie.pl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** categorie.pl 18 Aug 2004 16:05:14 -0000 1.16 --- categorie.pl 20 Jan 2005 20:20:57 -0000 1.17 *************** *** 163,167 **** my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 'white'; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, --- 163,167 ---- my @loop; my ($count,$results)=StringSearch($env,$searchfield,'web'); ! my $toggle = 0; for (my $i=0; $i < $count; $i++){ my %row = (categorycode => $results->[$i]{'categorycode'}, *************** *** 176,186 **** toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 'white' ) { ! $toggle = '#ffffcc'; } else { ! $toggle = 'white'; } } --- 176,186 ---- toggle => $toggle ); push @loop, \%row; ! if ( $toggle eq 0 ) { ! $toggle = 1; } else { ! $toggle = 0; } } From oleonard at users.sourceforge.net Thu Jan 20 21:22:43 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:22:43 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categoryitem.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18847/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 categoryitem.tmpl Log Message: Modified header includes to allow for custom title tags for each page Index: categoryitem.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categoryitem.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** categoryitem.tmpl 19 Feb 2004 19:14:35 -0000 1.1 --- categoryitem.tmpl 20 Jan 2005 20:22:40 -0000 1.1.2.1 *************** *** 1,3 **** ! --- 1,3 ---- ! Koha -- Modify categoryAdd category From oleonard at users.sourceforge.net Thu Jan 20 21:23:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:23:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categorie.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18976/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 categorie.tmpl Log Message: Synching with default tempalte Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categorie.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** categorie.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- categorie.tmpl 20 Jan 2005 20:23:15 -0000 1.2.2.1 *************** *** 4,8 **** Category Deleted Patron Categories ! --- 4,8 ---- Category Deleted Patron Categories ! *************** *** 88,99 **** ! ! ! ! ! ! !
    Reserve found for (">). ! Item is marked waiting at for (">).
    Set reserve to waiting and transfer book to : *************** *** 94,99 **** ! Item was on loan to " ! onClick="openWindow(this,'Member', 480, 640)"> and has been returned. --- 94,98 ---- ! Item was on loan to "> and has been returned. *************** *** 126,130 ****
    ! &type=intra" onclick="openWindow(this, 'Item', 480, 640)">
    ! &type=intra">
    Description
    Enrolment period years
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrollment fee
    Overdue notice required" />
    Issue limit" />
    Reserve fee" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    --- 88,96 ----
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrollment fee$
    Overdue notice required" />
    Reserve fee$" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    *************** *** 113,138 **** !

    Confirm Deletion of Category

    !

    This category is used times. Deletion not possible

    !
    ! ! ! ! ! ! ! ! !
    Category code
    Description
    Enrolment period
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrolment fee
    Overdue notice required
    Issue limit
    Reserve fee
    !

    This category is used times. Deletion not possible

    !
    " method="post"> ! ! " />
    " method="post"> ! !
    " method="post"> --- 110,127 ---- !

    Cagegory is in use. Deletion not possible!

    Confirm Deletion of Category

    !
    This category is used times. Deletion not possible
    !
    ! ! ! ! ! !
    Category code
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrolment fee$
    Overdue notice requiredYesNo
    Reserve fee$
    ! " method="post">
    " method="post"> *************** *** 159,190 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! --> ! --> --- 148,177 ---- !
    CategoryDescriptionEnrollmentUpper Age LimitAge RequiredBulkOverdueIssue Limit 
    ?op=add_form&categorycode=">Edit ">Delete
    ! ! ! ! ! ! ! ! ! ! ! ! class="highlight"> ! ! ! ! ! ! From oleonard at users.sourceforge.net Thu Jan 20 21:24:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 12:24:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters categorie.tmpl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19188/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: categorie.tmpl Log Message: Synching with default tempalte Index: categorie.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/categorie.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** categorie.tmpl 13 Apr 2004 17:06:10 -0000 1.2 --- categorie.tmpl 20 Jan 2005 20:24:08 -0000 1.3 *************** *** 4,8 **** Category Deleted Patron Categories ! --- 4,8 ---- Category Deleted Patron Categories ! *************** *** 88,99 **** ! ! ! ! ! ! !
    CategoryDescriptionEnrollment PeriodUpper Age LimitAge RequiredFineEnrollment FeeOverdueIssue LimitReservation Fee 
    years years years ?op=add_form&categorycode=">Edit ">Delete
    Description
    Enrolment period years
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrollment fee
    Overdue notice required" />
    Issue limit" />
    Reserve fee" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    --- 88,96 ---- Description Enrolment period years ! Upperage limit years ! Age Required years ! Enrollment fee$ Overdue notice required" /> ! Reserve fee$" />

    Update CategoryAdd Category" onclick="Check(this.form);" /> '; return false;" />

    *************** *** 113,138 **** !

    Confirm Deletion of Category

    !

    This category is used times. Deletion not possible

    !
    ! ! ! ! ! ! ! ! !
    Category code
    Description
    Enrolment period
    Upperage limit
    Age Required
    Fine type
    Bulk
    Enrolment fee
    Overdue notice required
    Issue limit
    Reserve fee
    !

    This category is used times. Deletion not possible

    !
    " method="post"> ! ! " />
    " method="post"> ! !
    " method="post"> --- 110,127 ---- !

    Cagegory is in use. Deletion not possible!

    Confirm Deletion of Category

    !
    This category is used times. Deletion not possible
    !
    ! ! ! ! ! !
    Category code
    Description
    Enrolment period years
    Upperage limit years
    Age Required years
    Enrolment fee$
    Overdue notice requiredYesNo
    Reserve fee$
    ! " method="post">
    " method="post"> *************** *** 159,190 ****
    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! --> ! --> --- 148,177 ---- !
    CategoryDescriptionEnrollmentUpper Age LimitAge RequiredBulkOverdueIssue Limit 
    ?op=add_form&categorycode=">Edit ">Delete
    ! ! ! ! ! ! ! ! ! ! ! ! class="highlight"> ! ! ! ! ! ! From oleonard at users.sourceforge.net Thu Jan 20 22:27:54 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:27:54 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/suggestion acceptorreject.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3838/koha-tmpl/intranet-tmpl/npl/en/suggestion Modified Files: Tag: rel_2_2 acceptorreject.tmpl Log Message: Moving submit button inside form tag where it might do some good. Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion/acceptorreject.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** acceptorreject.tmpl 13 Jan 2005 20:56:56 -0000 1.1.2.1 --- acceptorreject.tmpl 20 Jan 2005 21:27:52 -0000 1.1.2.2 *************** *** 35,41 **** !
    CategoryDescriptionEnrollment PeriodUpper Age LimitAge RequiredFineEnrollment FeeOverdueIssue LimitReservation Fee 
    years years years ?op=add_form&categorycode=">Edit ">Delete

    ! --- 35,41 ---- !

    ! From oleonard at users.sourceforge.net Thu Jan 20 22:30:31 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:30:31 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/suggestion acceptorreject.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4357/koha-tmpl/intranet-tmpl/npl/en/suggestion Modified Files: acceptorreject.tmpl Log Message: Moving submit button inside form tag where it might do some good. Index: acceptorreject.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/suggestion/acceptorreject.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** acceptorreject.tmpl 13 Jan 2005 20:48:31 -0000 1.1 --- acceptorreject.tmpl 20 Jan 2005 21:30:20 -0000 1.2 *************** *** 35,41 **** !

    ! --- 35,41 ---- !

    ! From oleonard at users.sourceforge.net Thu Jan 20 22:31:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:31:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui histsearch.tmpl,NONE,1.1.2.1 suggestion-select.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4647/koha-tmpl/intranet-tmpl/npl/en/acqui Added Files: Tag: rel_2_2 histsearch.tmpl suggestion-select.tmpl Log Message: Synching with default tempalte --- NEW FILE --- Koha -- Acquisitions: Order Search

    Order search

      Title Author Supplier Placed on Recieved on Quantity ordered  
    Filter By: " /> " /> " />      
      ">  
    --- NEW FILE --- Koha -- Acquisitions: Suggestions
    Filter Suggestion Results
    " />
    " />
    " />

    class="highlight">
    Suggestions
    Suggestion Suggested by Accepted by  

    -

    copy. year: volume: ISBN :
    published by: in at

    ()

    , , &basketno=&suggestionid=&biblio=">Order &basketno=&amp;suggestionid=">Order
    From oleonard at users.sourceforge.net Thu Jan 20 22:32:09 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:32:09 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/acqui histsearch.tmpl,1.1,1.2 suggestion-select.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/acqui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4840/koha-tmpl/intranet-tmpl/npl/en/acqui Added Files: histsearch.tmpl suggestion-select.tmpl Log Message: Synching with default tempalte From oleonard at users.sourceforge.net Thu Jan 20 22:44:58 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:44:58 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en about.tmpl,1.2,1.2.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8035/koha-tmpl/intranet-tmpl/npl/en Modified Files: Tag: rel_2_2 about.tmpl Log Message: Synching with default tempalte Index: about.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/about.tmpl,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** about.tmpl 13 Apr 2004 16:50:26 -0000 1.2 --- about.tmpl 20 Jan 2005 21:44:56 -0000 1.2.2.1 *************** *** 1,4 **** Koha -- About Koha ! --- 1,4 ---- Koha -- About Koha ! *************** *** 8,12 ****

    Data about the current version of Koha for bug reports (or general interest).

    !
    --- 8,12 ----

    Data about the current version of Koha for bug reports (or general interest).

    !
    Koha version:
    *************** *** 33,56 ****
    Koha version:
    --- 33,57 ----
    Credits
    Core Team
      !
    • Pat Eyler, Kaitiaki
    • !
    • Paul Poulain, 2.0 release manager (MARC developper)
    • !
    • Joshua Ferraro & the Nelsonville Public Library (MARC features funders)
    • !
    • Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    • !
    • Nicholas Rosasco, (Documentation Compiler)
    • !
    • Mike Hansen
    • !
    • MJ Ray and Turo Technology LLP, England (quality control, installer & updater)
    • !
    • Nicolas Morin, French Translation
    • !
    • Horowhenua Library Trust ! Rosalie Blake, Head of Libraries ! Jo Ransom
    • !
    • Katipo Communications ! Rachel Hamilton-Williams, General Manager (Webmistress) ! Chris Cormack, 1.2 release manager ! and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, ! Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
    + + *************** *** 59,92 ****
    Credits
    Special thanks to the following funders
    • Horowhenua Library Trust and Rosalie Blake, Head of Libraries, (Koha 1.0)
    • +
    • The Nelsonville Public Library (MARC support)
    • +
    • EMN (Ecole des Mines de Nantes) (Suggestion, stats modules and improved ldap support)
    • +
    • ENSMP (Ecole Nationale Sup?rieure des Mines de Paris) (biblio frameworks, MARC authorities, OPAC basket, Serials support)
    Core Team
      !
    • Rachel Hamilton-Williams, Kaitiaki
    • !
    • Paul Poulain, 2.2 release manager (MARC developper)
    • !
    • Stephen Hedges and the Nelsonville Public Library (MARC features funders)
    • !
    • Nicholas Rosasco, (Documentation Compiler)
    • !
    • Mike Hansen
    • !
    • MJ Ray and Turo Technology LLP, (quality control, installer and updater, 2.0 release maintainer)
    • !
    • Katipo Communications
    • !
        !
      • Rachel Hamilton-Williams, General Manager (Webmistress)
      • !
      • Chris Cormack, 1.2 release manager
      • !
      • and Simon Blake, Amanda Atkins, Operations Manager, Olwen Williams, Finlay Thompson, Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine
      • !
      !
    • Adam Thick
    • !
    • Andrew Hooper
    • !
    • Al Banks
    • !
    • Ambrose Li
    • !
    • Andrew Arensburger
    • !
    • Benedykt P. Barszcz (Polish for 2.0)
    • !
    • Brig C. McCoy
    • !
    • Daniel Holth
    • !
    • David Strainchamps
    • !
    • Dorian Meid
    • !
    • Ed Summers
    • !
    • Florian Bischof
    • !
    • Francisco M. Marzoa Alonso
    • !
    • Glen Stewart
    • !
    • Henri-Damien Laurent
    • !
    • J?rome Vizcaino (Esiee School)
    • !
    • Kip DeGraaf
    • !
    • Marco Gaiarin
    • !
    • Md. Aftabuddin
    • !
    • Michaes Herman
    • !
    • Michel Lerenard (Esiee School)
    • !
    • Mike Johnson
    • !
    • Mike Mylonas
    • !
    • Pierre Cauchois (Esiee School)
    • !
    • Pawel Skuza (Polish for 1.2)
    • !
    • Regula Sebastiao
    • !
    • Roger Buck
    • !
    • Ron Wickersham
    • !
    • Sebastiaan Durand
    • !
    --- 60,94 ----
      !
    • Adam Thick
    • !
    • Andrew Hooper
    • !
    • Al Banks
    • !
    • Ambrose Li (chinese translation and translation tool)
    • !
    • Andrew Arensburger (the small and great C4::Context module)
    • !
    • Benedykt P. Barszcz (Polish for 2.0)
    • !
    • Brig C. McCoy
    • !
    • Daniel Holth
    • !
    • David Strainchamps
    • !
    • Dorian Meid (German translation)
    • !
    • doXulting (Matthieu Branlat) OPAC basket
    • !
    • Ed Summers (Some code and Perl packages like MARC::Record)
    • !
    • Esiee School (J?rome Vizcaino, Michel Lerenard, Pierre Cauchois)
    • !
    • Florian Bischof
    • !
    • Francisco M. Marzoa Alonso
    • !
    • Glen Stewart
    • !
    • Henri-Damien Laurent
    • !
    • Jo Ransom
    • !
    • Kip DeGraaf
    • !
    • Marco Gaiarin
    • !
    • Md. Aftabuddin
    • !
    • Michaes Herman
    • !
    • Mike Johnson
    • !
    • Mike Mylonas
    • !
    • Nicolas Morin (French Translation in 2.0)
    • !
    • Pawel Skuza (Polish for 1.2)
    • !
    • Regula Sebastiao
    • !
    • Roger Buck
    • !
    • Ron Wickersham
    • !
    • Sebastiaan Durand
    • !
    • Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)
    From oleonard at users.sourceforge.net Thu Jan 20 22:58:28 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:58:28 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_tag_structure.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11078/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: Tag: rel_2_2 auth_tag_structure.tmpl Log Message: Synching with default tempalte Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** auth_tag_structure.tmpl 20 Jan 2005 17:41:00 -0000 1.1.2.1 --- auth_tag_structure.tmpl 20 Jan 2005 21:58:25 -0000 1.1.2.2 *************** *** 91,94 **** --- 91,95 ----
    " method="post"> + "> " /> CONFIRM DELETION From oleonard at users.sourceforge.net Thu Jan 20 22:59:17 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 13:59:17 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/parameters auth_tag_structure.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11254/koha-tmpl/intranet-tmpl/npl/en/parameters Modified Files: auth_tag_structure.tmpl Log Message: Synching with default tempalte Index: auth_tag_structure.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/parameters/auth_tag_structure.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** auth_tag_structure.tmpl 18 Jan 2005 22:53:04 -0000 1.1 --- auth_tag_structure.tmpl 20 Jan 2005 21:59:15 -0000 1.2 *************** *** 91,94 **** --- 91,95 ---- " method="post"> + "> " /> CONFIRM DELETION From oleonard at users.sourceforge.net Thu Jan 20 23:40:43 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:40:43 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/authorities authorities-home.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21546/koha-tmpl/intranet-tmpl/npl/en/authorities Modified Files: authorities-home.tmpl Log Message: Synching with default tempalte Index: authorities-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities/authorities-home.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** authorities-home.tmpl 28 Oct 2004 17:23:35 -0000 1.1 --- authorities-home.tmpl 20 Jan 2005 22:40:40 -0000 1.2 *************** *** 1,16 **** ! !
    !

    Authority search

    ! ! ! ! "> !
    !

    Search on

    !

    ! ! ! ! " /> ! ! ! ! !
    Authority search
    !

    !

    ! ! "> ! ! ! ! !

    !

    ! !

    ! ! --- 18,31 ---- !
    " /> ! ! ! !
    !

    ! From oleonard at users.sourceforge.net Thu Jan 20 23:41:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:41:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/authorities authorities-home.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21736/koha-tmpl/intranet-tmpl/npl/en/authorities Modified Files: Tag: rel_2_2 authorities-home.tmpl Log Message: Synching with default tempalte Index: authorities-home.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/authorities/authorities-home.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** authorities-home.tmpl 28 Oct 2004 17:23:35 -0000 1.1 --- authorities-home.tmpl 20 Jan 2005 22:41:08 -0000 1.1.2.1 *************** *** 1,16 **** ! !
    !

    Authority search

    !
    ! ! ! "> !
    !

    Search on

    !

    ! ! ! ! " /> ! ! ! ! !
    Authority search
    !

    !

    ! ! "> ! ! ! ! !

    !

    ! !

    ! ! --- 18,31 ---- !
    " /> ! ! ! !
    !

    ! From oleonard at users.sourceforge.net Thu Jan 20 23:48:32 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:48:32 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/catalogue ISBDdetail.tmpl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/catalogue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23551/koha-tmpl/intranet-tmpl/npl/en/catalogue Added Files: Tag: rel_2_2 ISBDdetail.tmpl Log Message: Synching with default template. Still needs proper styling for ISBD block --- NEW FILE --- Koha -- Catalog: ISBD View
    " />
    " />" />" />" />
    " />'); return false;" />
    " name="bib" />
    " />

    From oleonard at users.sourceforge.net Thu Jan 20 23:51:33 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Thu, 20 Jan 2005 14:51:33 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/npl/en/catalogue ISBDdetail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/npl/en/catalogue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24577/koha-tmpl/intranet-tmpl/npl/en/catalogue Added Files: ISBDdetail.tmpl Log Message: Synching with default template. Still needs proper styling for ISBD block From acli at users.sourceforge.net Sun Jan 23 05:31:24 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 20:31:24 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator translator_doc.html,1.2,1.2.2.1 translator_doc.txt,1.6,1.6.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27739 Modified Files: Tag: rel_2_2 translator_doc.html translator_doc.txt Log Message: Minor updates Index: translator_doc.html =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.html,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** translator_doc.html 30 Dec 2004 06:58:19 -0000 1.2 --- translator_doc.html 23 Jan 2005 04:31:07 -0000 1.2.2.1 *************** *** 4,8 ****

    This transation tool should greatly help Koha translators. ! It's composed of 2 scripts:

      --- 4,9 ----

      This transation tool should greatly help Koha translators. ! It's composed of 2 scripts ! (with a number of associated perl module files):

        *************** *** 28,32 **** (assuming your current directory is this directory, i.e., misc/translator):
        ! ./tmpl_process.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r

        (In the above example, --- 29,33 ---- (assuming your current directory is this directory, i.e., misc/translator):

        ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r

        (In the above example, *************** *** 41,45 ****

      • Create your translated templates:
        ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r

        --- 42,46 ----

      • Create your translated templates:
        ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r

        *************** *** 55,65 ****

      • Update your translation file:
        ! ./tmpl_process.pl update -i /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r
        !
      • Translate your new css_opac_fr_FR.po file. Look for strings marked as "fuzzy" and strings that are not translated.
      • Create your translated templates:
        ! ./tmpl_process.pl install -i /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r
      • Copy new images/css files in your new directory if needed --- 56,66 ----
      • Update your translation file:
        ! ./tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r
        !
      • Translate your newly updated css_opac_fr_FR.po file. Look for strings marked as "fuzzy" and strings that are not translated.
      • Create your translated templates:
        ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r
      • Copy new images/css files in your new directory if needed Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -r1.6 -r1.6.2.1 *** translator_doc.txt 3 Jan 2005 16:30:13 -0000 1.6 --- translator_doc.txt 23 Jan 2005 04:31:07 -0000 1.6.2.1 *************** *** 3,7 **** This transation tool should greatly help Koha translators. It's composed of ! 2 scripts: * xgettext.pl, that extracts the texts in a template, and which is called by --- 3,7 ---- This transation tool should greatly help Koha translators. It's composed of ! 2 scripts (with a number of associated perl module files): * xgettext.pl, that extracts the texts in a template, and which is called by *************** *** 22,26 **** directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the --- 22,27 ---- directory, i.e., misc/translator): ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! po/css_opac_fr_FR.po -r (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the *************** *** 33,37 **** 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default --- 34,40 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ! /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/ ! css_opac_fr_FR.po -r (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default *************** *** 44,48 **** 1. Update your translation file: ! ./tmpl_process3.pl update -i ../../opac-tmpl/default/en -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as --- 47,52 ---- 1. Update your translation file: ! ./tmpl_process3.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as *************** *** 50,62 **** 3. Create your translated templates: ! ./tmpl_process.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ../../koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed - - REBUILD ALL - =========== - The rebuild_lang.sh script can be used to rebuild all languages officially supported in 2.2 release, when needed. - Useful for developpers, probably useless for all end-users. - WEAKNESSES --- 54,62 ---- 3. Create your translated templates: ! ./tmpl_process3.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r 4. Copy new images/css files in your new directory if needed WEAKNESSES *************** *** 71,73 **** * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) \ No newline at end of file --- 71,74 ---- * Paul Poulain (paul.poulain _ at _ free.fr) & Jerome Vizcaino (vizcainj _ at _ esiee.fr) ! * Parts of V3.0 by Ambrose Li (acli _ at _ ada.dhs.org) ! From acli at users.sourceforge.net Sun Jan 23 05:58:41 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 20:58:41 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator Makefile,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1353 Modified Files: Tag: rel_2_2 Makefile Log Message: Forgot to take out this debugging code Index: Makefile =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/Makefile,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** Makefile 23 Jan 2005 04:57:51 -0000 1.1.2.1 --- Makefile 23 Jan 2005 04:58:39 -0000 1.1.2.2 *************** *** 2,6 **** %.txt: %.html ! set -x; sed -e 's/
        /&
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|tee foo|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
          
          clean:
        --- 2,6 ----
          
          %.txt: %.html
        ! 	set -x; sed -e 's/
        /& ! ! ! -->
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
          
          clean:
        
        
        
        
        From acli at users.sourceforge.net  Sun Jan 23 05:57:54 2005
        From: acli at users.sourceforge.net (Ambrose C. LI)
        Date: Sat, 22 Jan 2005 20:57:54 -0800
        Subject: [Koha-cvs] CVS: koha/misc/translator Makefile,1.1,1.1.2.1 translator_doc.html,1.2.2.1,1.2.2.2 translator_doc.txt,1.6.2.1,1.6.2.2
        Message-ID: 
        
        Update of /cvsroot/koha/koha/misc/translator
        In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv985
        
        Modified Files:
              Tag: rel_2_2
        	Makefile translator_doc.html translator_doc.txt 
        Log Message:
        Minor corrections & clarifications, and make the command line examples
        not break in the middle (like in the original version)
        
        
        Index: Makefile
        ===================================================================
        RCS file: /cvsroot/koha/koha/misc/translator/Makefile,v
        retrieving revision 1.1
        retrieving revision 1.1.2.1
        diff -C2 -r1.1 -r1.1.2.1
        *** Makefile	30 Dec 2004 06:48:19 -0000	1.1
        --- Makefile	23 Jan 2005 04:57:51 -0000	1.1.2.1
        ***************
        *** 2,4 ****
          
          %.txt: %.html
        ! 	LANG=C w3m $< > $@
        --- 2,7 ----
          
          %.txt: %.html
        ! 	set -x; sed -e 's/
        /& ! ! ! ! ! -->
        /g' -e 's/<\/blockquote>/<\/pre><\/table>&/g' $<|tee foo|LANG=C w3m -T text/html -cols 80 | sed -e 's/  *$$//g' | cat -s > $@
        ! 
        ! clean:
        ! 	rm translator_doc.txt
        
        Index: translator_doc.html
        ===================================================================
        RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.html,v
        retrieving revision 1.2.2.1
        retrieving revision 1.2.2.2
        diff -C2 -r1.2.2.1 -r1.2.2.2
        *** translator_doc.html	23 Jan 2005 04:31:07 -0000	1.2.2.1
        --- translator_doc.html	23 Jan 2005 04:57:51 -0000	1.2.2.2
        ***************
        *** 7,18 ****
          (with a number of associated perl module files):
          
        ! 
        • xgettext.pl, that extracts the texts in a template, ! and which is called by the script
        • tmpl_process3.tmpl, which can do 3 things: !
            !
          • create a file with all the "translatable strings" in all files in a directory (& its subdirectories) !
          • update an existing translation file. !
          • rebuild translated templates from english & translation file.
        --- 7,18 ---- (with a number of associated perl module files): !
        1. xgettext.pl, that extracts the texts in a template, ! and which is called by the script; and
        2. tmpl_process3.tmpl, which can do 3 things: !
            !
          1. create a file with all the "translatable strings" in all files in a directory (& its subdirectories), !
          2. update an existing translation file, and !
          3. rebuild translated templates from English & translation file. *************** *** 35,41 **** contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. ! The use of relative paths for the English templates is recommended ! but is not necessary; ! it makes the resulting PO files somewhat easier to read.)
          4. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. --- 35,43 ---- contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. ! The use of relative paths for the English templates is recommended; ! it makes the resulting PO files slightly shorter ! and more usable in a team environment. ! Absolute paths are certainly fine, ! and might be better if there is only one translator for your language.)
          5. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. *************** *** 52,56 ****

            ! If something changes in English version:

            1. Update your translation file: --- 54,58 ----

              ! If something changes in the English version:

              1. Update your translation file: Index: translator_doc.txt =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/translator_doc.txt,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -r1.6.2.1 -r1.6.2.2 *** translator_doc.txt 23 Jan 2005 04:31:07 -0000 1.6.2.1 --- translator_doc.txt 23 Jan 2005 04:57:51 -0000 1.6.2.2 *************** *** 5,15 **** 2 scripts (with a number of associated perl module files): ! * xgettext.pl, that extracts the texts in a template, and which is called by ! the script ! * tmpl_process3.tmpl, which can do 3 things: ! + create a file with all the "translatable strings" in all files in a ! directory (& its subdirectories) ! + update an existing translation file. ! + rebuild translated templates from english & translation file. Call tmpl_process3.pl --help to get a more detailed explanation. Some --- 5,15 ---- 2 scripts (with a number of associated perl module files): ! 1. xgettext.pl, that extracts the texts in a template, and which is called by ! the script; and ! 2. tmpl_process3.tmpl, which can do 3 things: ! a. create a file with all the "translatable strings" in all files in a ! directory (& its subdirectories), ! b. update an existing translation file, and ! c. rebuild translated templates from English & translation file. Call tmpl_process3.pl --help to get a more detailed explanation. Some *************** *** 21,41 **** 1. Create your translation file (assuming your current directory is this directory, i.e., misc/translator): ! ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s ! po/css_opac_fr_FR.po -r ! (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. The use of relative paths for the ! English templates is recommended but is not necessary; it makes the ! resulting PO files somewhat easier to read.) 2. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o ! /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/ ! css_opac_fr_FR.po -r ! (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default /fr2/ is where you want your translated templates to be saved.) --- 21,40 ---- 1. Create your translation file (assuming your current directory is this directory, i.e., misc/translator): ! ! ./tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! (In the above example, ../../koha-tmpl/opac-tmpl/default/en/ contains the English templates in the "default" theme, and po/css_opac_fr_FR.po is where you want the generated PO file to appear. The use of relative paths for the ! English templates is recommended; it makes the resulting PO files slightly ! shorter and more usable in a team environment. Absolute paths are certainly ! fine, and might be better if there is only one translator for your ! language.) 2. Translate your css_opac_fr_FR.po file using a text editor or a PO file translation tool. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r ! (In the above example, /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default /fr2/ is where you want your translated templates to be saved.) *************** *** 43,61 **** tmpl_process3.pl install). ! If something changes in English version: 1. Update your translation file: ! ! ./tmpl_process3.pl update -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! ! 2. Translate your new css_opac_fr_FR.po file. Look for strings marked as ! "fuzzy" and strings that are not translated. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i /home/paul/koha.dev/koha/koha-tmpl/ ! opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/ ! default/fr2/ -s po/css_opac_fr_FR.po -r ! 4. Copy new images/css files in your new directory if needed --- 42,57 ---- tmpl_process3.pl install). ! If something changes in the English version: 1. Update your translation file: ! ! ./tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/default/en/ -s po/css_opac_fr_FR.po -r ! ! 2. Translate your newly updated css_opac_fr_FR.po file. Look for strings ! marked as "fuzzy" and strings that are not translated. 3. Create your translated templates: ! ! ./tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/default/en/ -o /home/paul/koha.dev/koha/koha-tmpl/opac-tmpl/default/fr2/ -s po/css_opac_fr_FR.po -r ! 4. Copy new images/css files in your new directory if needed From acli at users.sourceforge.net Sun Jan 23 06:16:18 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 21:16:18 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.3,1.1.2.4 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4100 Modified Files: Tag: rel_2_2 update.pl Log Message: Added a --pot option to generate the POT (PO template) file. The POT files are currently named like css_opac_en_EN.po, which are not what they would usually be named. Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -r1.1.2.3 -r1.1.2.4 *** update.pl 11 Jan 2005 09:50:58 -0000 1.1.2.3 --- update.pl 23 Jan 2005 05:16:15 -0000 1.1.2.4 *************** *** 6,12 **** use strict; use integer; my $lang = $ARGV[0]; ! die "Usage: $0 LANG\n" unless $lang =~ /^[a-z]{2}(?:_[A-Z]{2})?$/; # Remember whether we see the "po" directory; this is used later to guess --- 6,22 ---- use strict; use integer; + use Getopt::Long; + + use vars qw( $pot_p ); + + GetOptions( + '--pot' => \$pot_p, + ) || exit(1); my $lang = $ARGV[0]; ! die < Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17798 Modified Files: Tag: rel_2_2 css_opac_fr_FR.po Log Message: Minor syntactical corrections Index: css_opac_fr_FR.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_fr_FR.po,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -r1.6 -r1.6.2.1 *** css_opac_fr_FR.po 5 Jan 2005 14:41:49 -0000 1.6 --- css_opac_fr_FR.po 23 Jan 2005 06:15:24 -0000 1.6.2.1 *************** *** 1,17 **** ! # Penbwrdd yn Gymraeg. ! # Copyright (C) 2003 Free Software Foundation, Inc. ! # www.kyfieithu.co.uk, www.gyfieithu.co.uk, 2003. # # msgid "" msgstr "" ! "Project-Id-Version: PACKAGE VERSION\n" "PO-Revision-Date: 2004-12-07 11:28+0200\n" ! "Last-Translator: www.kyfieithu.co.uk , www.gyfieithu.co.uk\n" ! "Language-Team: Cymraeg \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" - "X-Generator: Kartouche 0.2 - 28 October 2003\n" "\n" --- 1,17 ---- ! # Koha OPAC module, French translation ! # Copyright (C) 2000-2005 Katipo Communications ! # This file is distributed under the same license as the Koha package. ! # Copyright 2004-2005 French translation team # # msgid "" msgstr "" ! "Project-Id-Version: koha-opac 2.2\n" "PO-Revision-Date: 2004-12-07 11:28+0200\n" ! "Last-Translator: Paul POULAIN \n" ! "Language-Team: French \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" "\n" *************** *** 284,289 **** #, c-format msgid "Additional authors:%s" ! msgstr "Auteurs secondaires:%s ! " #. For the first occurrence, --- 284,288 ---- #, c-format msgid "Additional authors:%s" ! msgstr "Auteurs secondaires:%s" #. For the first occurrence, *************** *** 1966,1970 **** #~ msgid "ISBD : %s" #~ msgstr "ISBD : %s" - msgid "" - msgstr "" - --- 1965,1966 ---- From acli at users.sourceforge.net Sun Jan 23 07:17:07 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:17:07 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18025 Added Files: Tag: rel_2_2 stats.pl Log Message: Translation progress statistics script borrowed from gaim --- NEW FILE --- #!/usr/bin/perl # Copyright 2003-2004 Nathan Walp # Adapted for Koha by Ambrose Li # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 50 Temple Place, Suite 330, Boston, MA 02111-1307 USA # my $PACKAGE="koha"; use Locale::Language; $lang{en_AU} = "English (Australian)"; $lang{en_CA} = "English (Canadian)"; $lang{en_GB} = "English (British)"; $lang{es_AR} = "Spanish (Argentinian)"; $lang{fr_FR} = "French"; # FIXME: should be just "fr" $lang{my_MM} = "Burmese (Myanmar)"; $lang{pl_PL} = "Polish"; # FIXME: should be just "pl" $lang{pt_BR} = "Portuguese (Brazilian)"; $lang{'sr at Latn'} = "Serbian (Latin)"; $lang{zh_CN} = "Chinese (Simplified)"; $lang{zh_TW} = "Chinese (Traditional)"; $ENV{LANG} = $ENV{LC_ALL} = 'C'; opendir(DIR, ".") || die "can't open directory: $!"; @pos = grep { /\.po$/ && -f } readdir(DIR); foreach (@pos) { s/\.po$//; }; closedir DIR; @pos = sort @pos; $now = `date`; #system("./update.pl --pot > /dev/null"); print "\n"; print "$PACKAGE i18n statistics\n"; print "\n"; opendir(DIR, ".") || die "can't open directory: $!"; @templates = grep { /\.pot$/ && -f } readdir(DIR); foreach (@templates) { s/\.pot$//; }; closedir DIR; for my $PACKAGE (sort { my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; $module1 cmp $module2 && $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; my @pos = grep { /^${PACKAGE}_/ } @pos_orig; my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1 |tee zz`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); $total = $1; print "

                Module $module, theme $theme

                \n"; print "
                \n"; print"\n"; foreach $index (0 .. $#pos) { $trans = $fuzz = $untrans = 0; $po = $pos[$index]; next if $po =~ /_en_EN/; # Koha-specific print STDERR "$po..." if($ARGV[0] eq '-v'); system("msgmerge $po.po $PACKAGE.pot -o $po.new 2>/dev/null"); $_ = `msgfmt --statistics $po.new -o /dev/null 2>&1`; chomp; if(/(\d+) translated message/) { $trans = $1; } if(/(\d+) fuzzy translation/) { $fuzz = $1; } if(/(\d+) untranslated message/) { $untrans = $1; } $transp = 100 * $trans / $total; $fuzzp = 100 * $fuzz / $total; $untransp = 100 * $untrans / $total; if($index % 2) { $color = " bgcolor='#e0e0e0'"; } else { $color = " bgcolor='#d0e0ff'"; } my $lang = $1 if $po =~ /^${PACKAGE}_(.*)$/; # Koha-specific $name = ""; $name = $lang{$lang}; # NOTE $name = code2language($lang) unless $name ne ""; # NOTE $name = "???" unless $name ne ""; printf "\n"; unlink("$po.new"); print STDERR "done ($untrans untranslated strings).\n" if($ARGV[0] eq '-v'); } print "
                languagetrans%fuzzy%untrans% 
                %s(%s.po)%d%0.2f%d%0.2f%d%0.2f", $name, $po, $trans, $transp, $fuzz, $fuzzp, $untrans, $untransp; printf "", $transp*2 unless $transp*2 < 0.5; printf "", $fuzzp*2 unless $fuzzp*2 < 0.5; printf "", $untransp*2 unless $untransp*2 < 0.5; print "
                \n"; print "Latest $PACKAGE.pot generated $now: $PACKAGE.pot
                \n"; } print "\n"; print "\n"; From acli at users.sourceforge.net Sun Jan 23 07:17:54 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:17:54 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18197 Modified Files: Tag: rel_2_2 stats.pl Log Message: Forgot to re-enable update.pl Index: stats.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/stats.pl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** stats.pl 23 Jan 2005 06:17:05 -0000 1.1.2.1 --- stats.pl 23 Jan 2005 06:17:52 -0000 1.1.2.2 *************** *** 48,52 **** $now = `date`; ! #system("./update.pl --pot > /dev/null"); print "\n"; --- 48,52 ---- $now = `date`; ! system("./update.pl --pot > /dev/null"); print "\n"; From acli at users.sourceforge.net Sun Jan 23 07:22:29 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:22:29 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.4,1.1.2.5 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18923 Modified Files: Tag: rel_2_2 update.pl Log Message: create fails if the pot file already exists Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -r1.1.2.4 -r1.1.2.5 *** update.pl 23 Jan 2005 05:16:15 -0000 1.1.2.4 --- update.pl 23 Jan 2005 06:22:26 -0000 1.1.2.5 *************** *** 48,51 **** --- 48,52 ---- # my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "$lang.po"); + rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), '-i', "../../koha-tmpl/$module-tmpl/$theme/en/", From acli at users.sourceforge.net Sun Jan 23 07:49:11 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 22:49:11 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator xgettext.pl,1.13,1.13.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24427 Modified Files: Tag: rel_2_2 xgettext.pl Log Message: I think I know where the spurious leading spaces are from now But there is no fix yet Index: xgettext.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/xgettext.pl,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -C2 -r1.13 -r1.13.2.1 *** xgettext.pl 30 Dec 2004 06:48:20 -0000 1.13 --- xgettext.pl 23 Jan 2005 06:49:08 -0000 1.13.2.1 *************** *** 462,468 **** when tmpl_process3.pl calls msgmerge(1) to update the PO file. ! It sometimes generates strings with spurious leading spaces, leading to failure to match the strings when actually generating ! translated files. The cause of this is not yet known. =cut --- 462,469 ---- when tmpl_process3.pl calls msgmerge(1) to update the PO file. ! If a Javascript string has leading spaces, it will ! generate strings with spurious leading spaces, leading to failure to match the strings when actually generating ! translated files. =cut From acli at users.sourceforge.net Sun Jan 23 08:05:51 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sat, 22 Jan 2005 23:05:51 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator TmplTokenizer.pm,1.35,1.35.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27541 Modified Files: Tag: rel_2_2 TmplTokenizer.pm Log Message: This should fix bug 913 Index: TmplTokenizer.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/TmplTokenizer.pm,v retrieving revision 1.35 retrieving revision 1.35.2.1 diff -C2 -r1.35 -r1.35.2.1 *** TmplTokenizer.pm 30 Dec 2004 06:53:13 -0000 1.35 --- TmplTokenizer.pm 23 Jan 2005 07:05:43 -0000 1.35.2.1 *************** *** 342,346 **** $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { --- 342,346 ---- $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])\s*(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { *************** *** 349,353 **** } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! $output[$j] = [1, $output[$j]->[1], $q, $s]; } $state = 0; --- 349,354 ---- } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! my $candidate = $output[$j]->[1]; ! $output[$j] = [1, $candidate, $q, $s]; } $state = 0; From acli at users.sourceforge.net Sun Jan 23 09:16:59 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:16:59 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po update.pl,1.1.2.5,1.1.2.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7900 Modified Files: Tag: rel_2_2 update.pl Log Message: Forgot a _ in the po file filename Index: update.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/update.pl,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -C2 -r1.1.2.5 -r1.1.2.6 *** update.pl 23 Jan 2005 06:22:26 -0000 1.1.2.5 --- update.pl 23 Jan 2005 08:16:57 -0000 1.1.2.6 *************** *** 47,51 **** # but this is not Koha's convention. # ! my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "$lang.po"); rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), --- 47,51 ---- # but this is not Koha's convention. # ! my $target = "po/${theme}_${module}" . ($pot_p? ".pot": "_$lang.po"); rename($target, "$target~") if $pot_p; exec('./tmpl_process3.pl', ($pot_p? 'create': 'update'), From acli at users.sourceforge.net Sun Jan 23 09:17:29 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:17:29 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4,1.4.2.1 default_intranet_zh_TW.po,1.4,1.4.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7991 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: Partial updates Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** css_opac_zh_TW.po 30 Dec 2004 09:37:19 -0000 1.4 --- css_opac_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2004-12-30 02:06-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" [...2271 lines suppressed...] + #~ msgstr "%s (%s??????)" + #~ msgid "%s acquired in the last %S days" #~ msgstr "??????%2$S???????????????%1$s" + #~ msgid "%s(%s books)" + #~ msgstr "%s(%s??????)" + #~ msgid "ISBN:%s" #~ msgstr "?????????????????????%s" *************** *** 2089,2095 **** #~ msgstr "???????????????" - #~ msgid "text/html; charset=iso-8859-1" - #~ msgstr "text/html; charset=UTF-8" - #~ msgid "to Koha" #~ msgstr "Koha" --- 2209,2212 ---- Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -r1.4 -r1.4.2.1 *** default_intranet_zh_TW.po 30 Dec 2004 10:29:28 -0000 1.4 --- default_intranet_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2004-12-30 04:23-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" [...5497 lines suppressed...] *************** *** 21830,21833 **** --- 21960,21966 ---- #~ msgstr "?????????%s????????????%s" + #~ msgid "Pierre Cauchois (Esiee School)" + #~ msgstr "Pierre Cauchois (ESIEE??????)" + #~ msgid "Previous" #~ msgstr "?????????" *************** *** 21843,21849 **** #~ msgstr "????????????" - #~ msgid "Rachel Hamilton-Williams, General Manager (Webmistress)" - #~ msgstr "Rachel Hamilton-Williams (???????????????????????????)" - # NOTE ???????????? by Arthur # NOTE ???????????? by Ambrose --- 21976,21979 ---- From acli at users.sourceforge.net Sun Jan 23 09:59:41 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 00:59:41 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po stats.pl,1.1.2.2,1.1.2.3 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15497 Modified Files: Tag: rel_2_2 stats.pl Log Message: Forgot to remove some other debugging code Fixed the sorting order Index: stats.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/Attic/stats.pl,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -r1.1.2.2 -r1.1.2.3 *** stats.pl 23 Jan 2005 06:17:52 -0000 1.1.2.2 --- stats.pl 23 Jan 2005 08:59:39 -0000 1.1.2.3 *************** *** 61,65 **** my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; ! $module1 cmp $module2 && $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; --- 61,65 ---- my($theme1, $module1) = ($1, $2) if $a =~ /^(.*)_([^_]+)$/; my($theme2, $module2) = ($1, $2) if $b =~ /^(.*)_([^_]+)$/; ! return $module1 cmp $module2 || $theme1 cmp $theme2 } @templates) { my @pos_orig = @pos; *************** *** 67,71 **** my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; ! $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1 |tee zz`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); --- 67,71 ---- my($theme, $module) = ($1, $2) if $PACKAGE =~ /^(.*)_([^_]+)$/; ! $_ = `msgfmt --statistics $PACKAGE.pot -o /dev/null 2>&1`; die "unable to get total: $!" unless (/(\d+) untranslated messages/); From acli at users.sourceforge.net Sun Jan 23 11:51:21 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 02:51:21 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator tmpl_process3.pl,1.20,1.20.2.1 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6839 Modified Files: Tag: rel_2_2 tmpl_process3.pl Log Message: Make the generated pot file (i.e., result of "create") look more "real", but using msgmerge to reformat the output Index: tmpl_process3.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/tmpl_process3.pl,v retrieving revision 1.20 retrieving revision 1.20.2.1 diff -C2 -r1.20 -r1.20.2.1 *** tmpl_process3.pl 10 Mar 2004 07:00:28 -0000 1.20 --- tmpl_process3.pl 23 Jan 2005 10:51:16 -0000 1.20.2.1 *************** *** 263,276 **** } die "$str_file: Output file already exists\n" if -f $str_file; ! my($tmph, $tmpfile) = tmpnam(); # Generate the temporary file that acts as /POTFILES.in for my $input (@in_files) { ! print $tmph "$input\n"; } ! close $tmph; # Generate the specified po file ($str_file) ! $st = system ($xgettext, '-s', '-f', $tmpfile, '-o', $str_file); ! warn_normal "Text extraction failed: $xgettext: $!\n", undef if $st != 0; ! # unlink $tmpfile || warn_normal "$tmpfile: unlink failed: $!\n", undef; } elsif ($action eq 'update') { --- 263,301 ---- } die "$str_file: Output file already exists\n" if -f $str_file; ! my($tmph1, $tmpfile1) = tmpnam(); ! my($tmph2, $tmpfile2) = tmpnam(); ! close $tmph2; # We just want a name # Generate the temporary file that acts as /POTFILES.in for my $input (@in_files) { ! print $tmph1 "$input\n"; } ! close $tmph1; # Generate the specified po file ($str_file) ! $st = system ($xgettext, '-s', '-f', $tmpfile1, '-o', $tmpfile2); ! # Run msgmerge so that the pot file looks like a real pot file ! # We need to help msgmerge a bit by pre-creating a dummy po file that has ! # the headers and the "" msgid & msgstr. It will fill in the rest. ! if ($st == 0) { ! # Merge the temporary "pot file" with the specified po file ($str_file) ! # FIXME: msgmerge(1) is a Unix dependency ! # FIXME: need to check the return value ! unless (-f $str_file) { ! local(*INPUT, *OUTPUT); ! open(INPUT, "<$tmpfile2"); ! open(OUTPUT, ">$str_file"); ! while () { ! print OUTPUT; ! last if /^\n/s; ! } ! close INPUT; ! close OUTPUT; ! } ! $st = system('msgmerge', '-U', '-s', $str_file, $tmpfile2); ! } else { ! error_normal "Text extraction failed: $xgettext: $!\n", undef; ! error_additional "Will not run msgmerge\n", undef; ! } ! # unlink $tmpfile1 || warn_normal "$tmpfile1: unlink failed: $!\n", undef; ! # unlink $tmpfile2 || warn_normal "$tmpfile2: unlink failed: $!\n", undef; } elsif ($action eq 'update') { From acli at users.sourceforge.net Mon Jan 24 03:47:49 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 18:47:49 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29279 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po Log Message: Partial update. This should be reasonably "finished". Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** css_opac_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 --- css_opac_zh_TW.po 24 Jan 2005 02:47:44 -0000 1.4.2.2 *************** *** 223,227 **** #, c-format msgid " %s home Log Out " ! msgstr "???%s??????????????????????????????" #. %1$s: TMPL_VAR name=dateaccessioned --- 223,227 ---- #, c-format msgid " %s home Log Out " ! msgstr "%s ????????????????????????" #. %1$s: TMPL_VAR name=dateaccessioned *************** *** 239,244 **** " Print " msgstr "" ! " ?????? ?????? ISBD ????????????????????? " ! " ?????? " #. %1$s: TMPL_VAR name=shelfname --- 239,244 ---- " Print " msgstr "" ! "??????????????????ISBD???????????????????????????" ! "??????" #. %1$s: TMPL_VAR name=shelfname *************** *** 614,624 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:179 msgid "A free can be managed by any user." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:93 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:178 msgid "A public can be seen by everybody, but managed only by you." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:147 msgid "" --- 614,625 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:179 msgid "A free can be managed by any user." ! msgstr "???????????????????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:93 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:178 msgid "A public can be seen by everybody, but managed only by you." ! msgstr "????????????????????????????????????????????????????????????????????????" + # FIXME grammatical mistake in original ("every words") #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:147 msgid "" *************** *** 628,631 **** --- 629,633 ---- "will be discarded." msgstr "" + "???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????the two towers????????????????????????????????????????????????two?????????tower?????????????????????????????????the????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 *************** *** 649,656 **** msgstr "????????????" #. INPUT type=submit #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:41 msgid "Add Checked Items to Biblio Basket" ! msgstr "" #. INPUT type=submit --- 651,659 ---- msgstr "????????????" + # NOTE???Items??????????????????????????????????????????????????????????????????????????????????????? #. INPUT type=submit #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:41 msgid "Add Checked Items to Biblio Basket" ! msgstr "??????????????????????????????" #. INPUT type=submit *************** *** 679,683 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:30 msgid "Add to basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:8 --- 682,686 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:30 msgid "Add to basket" ! msgstr "???????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:8 *************** *** 716,722 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:13 - #, fuzzy msgid "Any word" ! msgstr "?????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:86 --- 719,724 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:13 msgid "Any word" ! msgstr "????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:86 *************** *** 783,803 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Basket is empty" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio added to the basket" ! msgstr "" #. A #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:44 msgid "Biblio basket" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - #, fuzzy msgid "Biblio(s) added" ! msgstr "????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 --- 785,805 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Basket is empty" ! msgstr "???????????????" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio added to the basket" ! msgstr "????????????????????????" #. A #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:44 msgid "Biblio basket" ! msgstr "??????" + # TODO #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "Biblio(s) added" ! msgstr "??????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 *************** *** 881,887 **** msgstr "?????????%s" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:110 msgid "Content size" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:30 --- 883,890 ---- msgstr "?????????%s" + # NOTE ?????????????????????????????? (shelfbookcount) #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:110 msgid "Content size" ! msgstr "????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:30 *************** *** 931,940 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to empty the basket ?" ! msgstr "" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to remove selected biblios ?" ! msgstr "" # NOTE ???????????? by Arthur --- 934,943 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to empty the basket ?" ! msgstr "?????????????????????" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:19 msgid "Do you want to remove selected biblios ?" ! msgstr "??????????????????????????????" # NOTE ???????????? by Arthur *************** *** 968,974 **** "???????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:39 msgid "Filter on" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-account.tmpl:9 --- 971,978 ---- "???????????????????????????" + # NOTE #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:39 msgid "Filter on" ! msgstr "???????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-account.tmpl:9 *************** *** 986,990 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:17 msgid "Free" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl:61 --- 990,994 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:17 msgid "Free" ! msgstr "????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl:61 *************** *** 996,1000 **** #, c-format msgid "Hi, Here is the biblio basket sent by %s" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:138 --- 1000,1004 ---- #, c-format msgid "Hi, Here is the biblio basket sent by %s" ! msgstr "??????????????? %s ???????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:138 *************** *** 1034,1037 **** --- 1038,1042 ---- "towers\", \"a tower and two cities\"" msgstr "" + "????????????????????????????????????????????????????????????*????????????%???????????????????????????two tower*???????????????the two towers?????????two white towers?????????a tower and two cities???" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 *************** *** 1195,1199 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "No biblio selected" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:6 --- 1200,1204 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "No biblio selected" ! msgstr "??????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:6 *************** *** 1244,1248 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:6 msgid "OPAC Basket" ! msgstr "" # NOTE ???????????? by Arthur --- 1249,1253 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-basket-top.inc:6 msgid "OPAC Basket" ! msgstr "??????????????????" # NOTE ???????????? by Arthur *************** *** 1273,1285 **** msgstr "????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:84 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:157 msgid "Owner" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:146 - #, fuzzy msgid "Partial search" ! msgstr "????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-auth.tmpl:29 --- 1278,1290 ---- msgstr "????????????" + # NOTE ?????? #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:84 #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:157 msgid "Owner" ! msgstr "??????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:146 msgid "Partial search" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-auth.tmpl:29 *************** *** 1329,1337 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:15 msgid "Private" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:9 msgid "Problem sending the basket..." ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:88 --- 1334,1342 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:15 msgid "Private" ! msgstr "????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:9 msgid "Problem sending the basket..." ! msgstr "????????????????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:88 *************** *** 1341,1345 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:16 msgid "Public" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:131 --- 1346,1350 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:16 msgid "Public" ! msgstr "?????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:131 *************** *** 1514,1519 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:4 msgid "Sending the basket" ! msgstr "" #. A #: ../../koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl:25 --- 1519,1525 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasketform.tmpl:4 msgid "Sending the basket" ! msgstr "???????????????" + # FIXME ????????????????????????????????????????????? #. A #: ../../koha-tmpl/opac-tmpl/css/en/opac-ISBDdetail.tmpl:25 *************** *** 1521,1525 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:26 msgid "Serial issues" ! msgstr "" #. %1$s: TMPL_VAR name=serial --- 1527,1531 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:26 msgid "Serial issues" ! msgstr "????????????" #. %1$s: TMPL_VAR name=serial *************** *** 1536,1540 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:93 msgid "Set Filter" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:8 --- 1542,1546 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:93 msgid "Set Filter" ! msgstr "??????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:8 *************** *** 1651,1655 **** #, c-format msgid "The basket was sent to: %s" ! msgstr "" #. %1$s: TMPL_VAR name=reservecount --- 1657,1661 ---- #, c-format msgid "The basket was sent to: %s" ! msgstr "??????????????????%s" #. %1$s: TMPL_VAR name=reservecount *************** *** 1671,1675 **** #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "This biblio is already in the basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:13 --- 1677,1681 ---- #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "This biblio is already in the basket" ! msgstr "???????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:13 *************** *** 1867,1871 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:2 msgid "Your biblio basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl:6 --- 1873,1877 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:2 msgid "Your biblio basket" ! msgstr "????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl:6 *************** *** 1876,1890 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:177 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "" - # NOTE This refers to new books acquired in the last so-and-so days - # NOTE This is essentially the same string as the next, but different - # NOTE due to technical difficulties (in creating an msgid from the HTML) - # FIXME This string as it is is nearly untranslatable. The scanner need to be fixed. #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - #, fuzzy msgid "already in the basket" ! msgstr "" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:98 --- 1882,1891 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:177 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "?????????????????????????????????????????????????????????" #. SCRIPT #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 msgid "already in the basket" ! msgstr "???????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:98 *************** *** 1925,1931 **** #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:52 #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:21 - #, fuzzy msgid "in" ! msgstr "????????????" #. IMG --- 1926,1931 ---- #: ../../koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl:52 #: ../../koha-tmpl/opac-tmpl/css/en/opac-sendbasket.tmpl:21 msgid "in" ! msgstr "???" #. IMG *************** *** 2055,2061 **** #~ msgstr "?????????????????????%s" - #~ msgid "%s (%s)" - #~ msgstr "%s (%s)" - #~ msgid "AMOUNT" #~ msgstr "??????" --- 2055,2058 ---- *************** *** 2064,2073 **** #~ msgstr "??????????????????" - #~ msgid "Apr" - #~ msgstr "??????" - - #~ msgid "Aug" - #~ msgstr "??????" - #~ msgid "Compact Disc" #~ msgstr "??????" --- 2061,2064 ---- *************** *** 2077,2086 **** #~ msgstr "????????????" - #~ msgid "Day" - #~ msgstr "???" - - #~ msgid "Dec" - #~ msgstr "?????????" - #~ msgid "Easy / Picture Books" #~ msgstr "??????/?????????" --- 2068,2071 ---- *************** *** 2100,2118 **** #~ msgstr "???????????????" - #~ msgid "Feb" - #~ msgstr "??????" - #~ msgid "Illustrator" #~ msgstr "??????" - #~ msgid "Jan" - #~ msgstr "??????" - - #~ msgid "Jul" - #~ msgstr "??????" - - #~ msgid "Jun" - #~ msgstr "??????" - # NOTE ???????????? by Arthur #~ msgid "Junior Fiction" --- 2085,2091 ---- *************** *** 2123,2138 **** #~ msgstr "??????/???????????????" - #~ msgid "KOHA" - #~ msgstr "KOHA" - #~ msgid "KOHA: OPAC Catalogue Search" #~ msgstr "KOHA???????????????" - #~ msgid "Log In to Koha" - #~ msgstr "??????Koha" - - #~ msgid "Mar" - #~ msgstr "??????" - #~ msgid "Next Page" #~ msgstr "?????????" --- 2096,2102 ---- *************** *** 2155,2161 **** #~ "?????????" - #~ msgid "Nov" - #~ msgstr "?????????" - #~ msgid "OR :" #~ msgstr "??????" --- 2119,2122 ---- *************** *** 2164,2170 **** #~ msgstr "????????????????????????" - #~ msgid "Oct" - #~ msgstr "??????" - #~ msgid "Previous Page" #~ msgstr "?????????" --- 2125,2128 ---- *************** *** 2186,2192 **** #~ msgstr "??????" - #~ msgid "Sep" - #~ msgstr "??????" - # NOTE ???????????? by Arthur #~ msgid "Something new ?" --- 2144,2147 ---- *************** *** 2208,2212 **** #~ msgid "Young Adult Fiction" #~ msgstr "???????????????" - - #~ msgid "to Koha" - #~ msgstr "Koha" --- 2163,2164 ---- From acli at users.sourceforge.net Mon Jan 24 05:43:23 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 20:43:23 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_126a.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25795 Modified Files: Tag: rel_2_2 unimarc_field_126a.tmpl Log Message: Spelling corrections Index: unimarc_field_126a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** unimarc_field_126a.tmpl 7 Jun 2004 10:04:00 -0000 1.1 --- unimarc_field_126a.tmpl 24 Jan 2005 04:43:20 -0000 1.1.2.1 *************** *** 498,502 **** ! --- 498,502 ---- ! *************** *** 584,588 **** ! --- 584,588 ---- ! *************** *** 670,674 **** ! --- 670,674 ---- ! *************** *** 756,760 **** ! --- 756,760 ---- ! *************** *** 842,846 **** ! --- 842,846 ---- ! *************** *** 928,932 **** ! --- 928,932 ---- ! From acli at users.sourceforge.net Mon Jan 24 05:45:27 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 20:45:27 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.1,1.4.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26187 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial updates, mostly Unimarc stuff (CMARC seems to be mostly identical to French Unimarc) Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** default_intranet_zh_TW.po 23 Jan 2005 08:17:24 -0000 1.4.2.1 --- default_intranet_zh_TW.po 24 Jan 2005 04:45:21 -0000 1.4.2.2 *************** *** 141,145 **** #, c-format msgid "%S (example for 200a : '200c','200d','200e'...)" ! msgstr "" #. For the first occurrence, --- 141,145 ---- #, c-format msgid "%S (example for 200a : '200c','200d','200e'...)" ! msgstr "%S (??? 200a ?????????????????????200c?????????200d?????????200e?????????)" [...961 lines suppressed...] --- 3685,3690 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_141.tmpl:369 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_141.tmpl:371 msgid "Autre" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:218 *************** *** 3863,3867 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:932 msgid "Autres renseignements historiques" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:500 --- 3868,3872 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:932 msgid "Autres renseignements historiques" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:500 From acli at users.sourceforge.net Mon Jan 24 06:43:12 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 21:43:12 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_126a.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8182 Modified Files: Tag: rel_2_2 unimarc_field_126a.tmpl Log Message: Spelling correction Index: unimarc_field_126a.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** unimarc_field_126a.tmpl 24 Jan 2005 04:43:20 -0000 1.1.2.1 --- unimarc_field_126a.tmpl 24 Jan 2005 05:43:10 -0000 1.1.2.2 *************** *** 490,494 **** ! --- 490,494 ---- ! *************** *** 576,580 **** ! --- 576,580 ---- ! *************** *** 662,666 **** ! --- 662,666 ---- ! *************** *** 748,752 **** ! --- 748,752 ---- ! *************** *** 834,838 **** ! --- 834,838 ---- ! *************** *** 920,924 **** ! --- 920,924 ---- ! From acli at users.sourceforge.net Mon Jan 24 06:53:14 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 21:53:14 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.2,1.4.2.3 default_intranet_zh_TW.po,1.4.2.2,1.4.2.3 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10176 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: 126a mostly done Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -r1.4.2.2 -r1.4.2.3 *** css_opac_zh_TW.po 24 Jan 2005 02:47:44 -0000 1.4.2.2 --- css_opac_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 23:45-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 239,244 **** " Print " msgstr "" ! "??????????????????ISBD???????????????????????????" ! "??????" #. %1$s: TMPL_VAR name=shelfname --- 239,244 ---- " Print " msgstr "" ! "??????????????????ISBD?????????????????????????????????" #. %1$s: TMPL_VAR name=shelfname *************** *** 629,633 **** "will be discarded." msgstr "" ! "???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????the two towers????????????????????????????????????????????????two?????????tower?????????????????????????????????the????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 --- 629,635 ---- "will be discarded." msgstr "" ! "??????????????????????????????????????????????????????????????????????????????????????????????????????????????????" ! "?????????????????????the two towers????????????????????????????????????????????????two?????????tower???" ! "??????????????????????????????the????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-suggestions.tmpl:62 *************** *** 1038,1042 **** "towers\", \"a tower and two cities\"" msgstr "" ! "????????????????????????????????????????????????????????????*????????????%???????????????????????????two tower*???????????????the two towers?????????two white towers?????????a tower and two cities???" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 --- 1040,1046 ---- "towers\", \"a tower and two cities\"" msgstr "" ! "????????????????????????????????????????????????????????????*????????????%???????????????????????????two " ! "tower*???????????????the two towers?????????two white towers?????????a tower and two " ! "cities???" #: ../../koha-tmpl/opac-tmpl/css/en/opac-reserve.tmpl:5 *************** *** 1411,1416 **** "company, group, collective author (CNRS, Library of Congress)" msgstr "" ! "????????????????????????????????????????????????????????????????????? Victor Hugo????????????????????????????????????" ! "??????????????????????????? CNRS??????????????????????????????" # NOTE???Items??????????????????????????????????????????????????????????????????????????????????????? --- 1415,1420 ---- "company, group, collective author (CNRS, Library of Congress)" msgstr "" ! "????????????????????????????????????????????????????????????????????? Victor Hugo???????????????????????????" ! "???????????????????????????????????? CNRS??????????????????????????????" # NOTE???Items??????????????????????????????????????????????????????????????????????????????????????? *************** *** 1501,1505 **** "branch. By default the search is done on every branches of the library" msgstr "" ! "????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:6 --- 1505,1510 ---- "branch. By default the search is done on every branches of the library" msgstr "" ! "??????????????????????????????????????????????????????????????????????????????????????????????????????????????????" ! "??????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-addbookbybiblionumber.tmpl:6 *************** *** 1815,1819 **** "illustrator...)" msgstr "" ! "????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:9 --- 1820,1825 ---- "illustrator...)" msgstr "" ! "??????????????????????????????????????????????????????????????????????????????????????????????????????????????????" ! "??????????????????" #: ../../koha-tmpl/opac-tmpl/css/en/opac-searchresults.tmpl:9 Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -r1.4.2.2 -r1.4.2.3 *** default_intranet_zh_TW.po 24 Jan 2005 04:45:21 -0000 1.4.2.2 --- default_intranet_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 02:04-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 23:46-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" [...1012 lines suppressed...] #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:406 --- 18929,18933 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:171 msgid "Type de son:" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:406 *************** *** 19568,19572 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:65 msgid "Vitesse:" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:338 --- 19547,19551 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:65 msgid "Vitesse:" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:338 From acli at users.sourceforge.net Mon Jan 24 07:32:26 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 22:32:26 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.3,1.4.2.4 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18639 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: 126b done (i.e., translations that can be copied from CMARC have been copied) Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -r1.4.2.3 -r1.4.2.4 *** default_intranet_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 --- default_intranet_zh_TW.po 24 Jan 2005 06:32:21 -0000 1.4.2.4 *************** *** 1077,1081 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:294 msgid "10 cm x 6.3 cm ou 3 pouces 7/8 x 2 pouces 1/2" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:125 --- 1077,1081 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:294 msgid "10 cm x 6.3 cm ou 3 pouces 7/8 x 2 pouces 1/2" ! msgstr "3 7/8 ?? 2 1/2 ????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:125 *************** *** 1156,1164 **** msgstr "2 ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:353 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:355 - #, fuzzy msgid "2 pouces" ! msgstr "-> ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:36 --- 1156,1164 ---- msgstr "2 ??????" + # TODO CMARC ??? f6e ??????1 ???????????????1 ????????? f6c???CMARC ???????????? #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:353 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:355 msgid "2 pouces" ! msgstr "2 ???" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:36 *************** *** 3993,3997 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:30 msgid "Bande \"Master\"" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:33 --- 3993,3997 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:30 msgid "Bande \"Master\"" ! msgstr "?????? (master tape)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:33 *************** *** 4075,4083 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:33 msgid "Bande reproduite a partir du \"master\"" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:35 msgid "Bande reproduite a partir du master" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:189 --- 4075,4083 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:33 msgid "Bande reproduite a partir du \"master\"" ! msgstr "???????????? (tape duplication master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:35 msgid "Bande reproduite a partir du master" ! msgstr "???????????? (tape duplication master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:189 *************** *** 5685,5689 **** #, fuzzy msgid "Codage CX" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/authtypes.tmpl:117 --- 5685,5689 ---- #, fuzzy msgid "Codage CX" ! msgstr "CX ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/authtypes.tmpl:117 *************** *** 6372,6376 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:45 msgid "Cylindre" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:697 --- 6372,6376 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:45 msgid "Cylindre" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:697 *************** *** 7016,7020 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:40 msgid "Disque \"pere\" (negatif)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:171 --- 7016,7020 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:40 msgid "Disque \"pere\" (negatif)" ! msgstr "??????????????? (disc master, negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:171 *************** *** 7133,7137 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:131 msgid "Dos papier" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/memberentry.tmpl:76 --- 7133,7137 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:131 msgid "Dos papier" ! msgstr "?????? (paper backed)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/memberentry.tmpl:76 *************** *** 8632,8646 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:20 msgid "Gravure directe" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:170 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:172 msgid "Gravure inconnue" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:160 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:162 msgid "Gravure laterale ou combinee" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1038 --- 8632,8646 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:20 msgid "Gravure directe" ! msgstr "?????????????????????????????????(instantaneous)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:170 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:172 msgid "Gravure inconnue" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:160 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:162 msgid "Gravure laterale ou combinee" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1038 *************** *** 8683,8693 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:167 msgid "Gravure verticale" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:607 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:609 - #, fuzzy msgid "Grec" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:786 --- 8683,8692 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:167 msgid "Gravure verticale" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:607 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:609 msgid "Grec" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:786 *************** *** 8696,8700 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:1063 msgid "Greenwich (G.B.)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:78 --- 8695,8699 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:1063 msgid "Greenwich (G.B.)" ! msgstr "????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:78 *************** *** 8718,8721 **** --- 8717,8721 ---- "Gynn Lomax, Richard Anderson, Jeremy Blake, Rebecca Holden, Olive T. Canine" msgstr "" + "Gynn Lomax???Richard Anderson???Jeremy Blake???Rebecca Holden???Olive T. Canine" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/recieve.tmpl:66 *************** *** 8724,8730 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:74 - #, fuzzy msgid "HELP Ordering" ! msgstr "???????????????" # NOTE ???????????? by Arthur --- 8724,8729 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:74 msgid "HELP Ordering" ! msgstr "????????????" # NOTE ???????????? by Arthur *************** *** 8744,8753 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:8 msgid "HINT for fines" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:5 - #, fuzzy msgid "HINT for issues" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/authorised_values.tmpl:8 --- 8743,8751 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:8 msgid "HINT for fines" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:5 msgid "HINT for issues" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/authorised_values.tmpl:8 *************** *** 10632,10638 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:106 - #, fuzzy msgid "Laque" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:216 --- 10630,10635 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:106 msgid "Laque" ! msgstr "lacquered????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:216 *************** *** 11496,11500 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:50 msgid "Matrice (negatif)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1417 --- 11493,11497 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:50 msgid "Matrice (negatif)" ! msgstr "????????? (stamper, negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1417 *************** *** 11504,11510 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:112 - #, fuzzy msgid "May" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:208 --- 11501,11506 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:112 msgid "May" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:208 *************** *** 11720,11726 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:109 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:111 - #, fuzzy msgid "Metal" ! msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:329 --- 11716,11721 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:109 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:111 msgid "Metal" ! msgstr "????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:329 *************** *** 11736,11740 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:126 msgid "Metal et plastique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1219 --- 11731,11735 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:126 msgid "Metal et plastique" ! msgstr "?????????????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1219 *************** *** 13197,13203 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:30 - #, fuzzy msgid "Nord" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:176 --- 13192,13197 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_123g.tmpl:30 msgid "Nord" ! msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:176 *************** *** 13220,13233 **** msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1012 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1014 msgid "Norme CCIR/IEC" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:407 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:410 msgid "Norme ISO pour la translitteration" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1007 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1009 --- 13214,13229 ---- msgstr "" + # NOTE ?????????CMARC ???????????? #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1012 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1014 msgid "Norme CCIR/IEC" ! msgstr "CCIR/IEC ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:407 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:410 msgid "Norme ISO pour la translitteration" ! msgstr "ISO " + # NOTE ?????????CMARC ???????????? #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1007 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1009 *************** *** 13463,13466 **** --- 13459,13463 ---- msgstr "" + # NOTE ?????????CMARC ???????????? #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:981 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:983 *************** *** 13468,13475 **** msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1022 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1024 msgid "Numerique (disque compact)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:26 --- 13465,13473 ---- msgstr "??????" + # NOTE ?????????CMARC ???????????? #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1022 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:1024 msgid "Numerique (disque compact)" ! msgstr "????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:26 *************** *** 14089,14093 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:141 msgid "P.V.C." ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/jmemberentry.tmpl:25 --- 14087,14091 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:141 msgid "P.V.C." ! msgstr "?????? (PVC)" #: ../../koha-tmpl/intranet-tmpl/default/en/members/jmemberentry.tmpl:25 *************** *** 14105,14116 **** #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:134 - #, fuzzy msgid "Page Size" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/printerConfig.tmpl:32 - #, fuzzy msgid "Page Type" ! msgstr "??????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/marcimport/marcimportdetail.tmpl:36 --- 14103,14112 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:134 msgid "Page Size" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/printerConfig.tmpl:32 msgid "Page Type" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/marcimport/marcimportdetail.tmpl:36 *************** *** 14778,14781 **** --- 14774,14778 ---- msgstr "" + # NOTE CMARC 126b ??? 2h #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:365 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:367 *************** *** 14787,14791 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:101 msgid "Plastique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:662 --- 14784,14788 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:101 msgid "Plastique" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:662 *************** *** 14961,14965 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:146 msgid "Polyester" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:743 --- 14958,14962 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:146 msgid "Polyester" ! msgstr "????????? (polyester)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:743 *************** *** 15132,15139 **** msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:9 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 --- 15129,15137 ---- msgstr "" + # FIXME Clash between 126a and 130!! #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:9 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "?????????????????????????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 *************** *** 15150,15164 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:55 msgid "Pressage de test" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:114 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:116 msgid "Pressage laque" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:119 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:121 msgid "Pressage plastique" ! msgstr "" # FIXME This may be wrong. check context. --- 15148,15162 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:55 msgid "Pressage de test" ! msgstr "????????? (test pressing)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:114 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:116 msgid "Pressage laque" ! msgstr "????????????????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:119 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:121 msgid "Pressage plastique" ! msgstr "????????????????????????????????????" # FIXME This may be wrong. check context. *************** *** 15242,15246 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:25 msgid "Production industrielle" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_124b.tmpl:43 --- 15240,15244 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:25 msgid "Production industrielle" ! msgstr "???????????????????????????????????????????????????(mass produced)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_124b.tmpl:43 *************** *** 18891,18895 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:9 msgid "Type de disque, cylindre ou bande magnetique:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:9 --- 18889,18893 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:9 msgid "Type de disque, cylindre ou bande magnetique:" ! msgstr "?????????????????????????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:9 *************** *** 18899,18903 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:70 msgid "Type de document:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_135a.tmpl:9 --- 18897,18901 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:70 msgid "Type de document:" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_135a.tmpl:9 *************** *** 18911,18915 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:151 msgid "Type de gravure:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_125a.tmpl:9 --- 18909,18913 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126b.tmpl:151 msgid "Type de gravure:" ! msgstr "????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_125a.tmpl:9 From acli at users.sourceforge.net Mon Jan 24 07:53:56 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 22:53:56 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.4,1.4.2.5 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23504 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.4 retrieving revision 1.4.2.5 diff -C2 -r1.4.2.4 -r1.4.2.5 *** default_intranet_zh_TW.po 24 Jan 2005 06:32:21 -0000 1.4.2.4 --- default_intranet_zh_TW.po 24 Jan 2005 06:53:51 -0000 1.4.2.5 *************** *** 19653,19659 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/statecollection.tmpl:39 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:161 - #, fuzzy msgid "Waited" ! msgstr "??????" #. INPUT type=submit --- 19653,19658 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/statecollection.tmpl:39 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:161 msgid "Waited" ! msgstr "??????" #. INPUT type=submit *************** *** 19786,19794 **** msgstr "???" - # FIXME Bug in English template #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:122 - #, fuzzy msgid "Year" ! msgstr "???%0.0s" #: ../../koha-tmpl/intranet-tmpl/default/en/members/moremember.tmpl:136 --- 19785,19791 ---- msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:122 msgid "Year" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/members/moremember.tmpl:136 *************** *** 20023,20030 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:95 #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:180 - #, fuzzy msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "?????????????????????????????????????????????????????????????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:23 --- 20020,20027 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:95 #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:180 msgid "a private bookshelf is managed by you & can be seen only by you." ! msgstr "??????????????????????????????????????????????????????????????????" + # FIXME bug in tokenizer/scanner #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:23 *************** *** 20053,20056 **** --- 20050,20054 ---- "Thompson," msgstr "" + "??? Simon Blake??????????????? Amanda Atkins???Olwen Williams???Finlay Thompson???" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:90 *************** *** 20088,20094 **** msgstr "???????????? (%s)" - # XXX ???????????????????????? #: ../../koha-tmpl/intranet-tmpl/default/en/help/authorities/authorities.tmpl:1 - #, fuzzy msgid "authority help" msgstr "????????????" --- 20086,20090 ---- *************** *** 20101,20107 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:414 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:416 - #, fuzzy msgid "autre" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:454 --- 20097,20102 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:414 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:416 msgid "autre" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:454 *************** *** 20127,20131 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:110 msgid "be in tab -1" ! msgstr "?????????-1?????? (????????????)" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:109 --- 20122,20126 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:110 msgid "be in tab -1" ! msgstr "?????????-1????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:109 *************** *** 20216,20222 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acquire.tmpl:12 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:81 - #, fuzzy msgid "catalogue details" ! msgstr "????????????" #. For the first occurrence, --- 20211,20216 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acquire.tmpl:12 #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:81 msgid "catalogue details" ! msgstr "????????????" #. For the first occurrence, *************** *** 20229,20235 **** #. INPUT type=submit #: ../../koha-tmpl/intranet-tmpl/default/en/suggestion/acceptorreject.tmpl:42 - #, fuzzy msgid "change status" ! msgstr "??????" #. SCRIPT --- 20223,20228 ---- #. INPUT type=submit #: ../../koha-tmpl/intranet-tmpl/default/en/suggestion/acceptorreject.tmpl:42 msgid "change status" ! msgstr "????????????" #. SCRIPT *************** *** 20240,20246 **** #. %1$s: TMPL_VAR name=closedate #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/order.tmpl:46 ! #, fuzzy, c-format msgid "closed on %s View" ! msgstr "%S - %s +" #. INPUT type=reset name=reset --- 20233,20239 ---- #. %1$s: TMPL_VAR name=closedate #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/order.tmpl:46 ! #, c-format msgid "closed on %s View" ! msgstr "" #. INPUT type=reset name=reset *************** *** 20276,20282 **** #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:9 - #, fuzzy msgid "count" ! msgstr "??????" #. SCRIPT --- 20269,20274 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:9 msgid "count" ! msgstr "??????" #. SCRIPT *************** *** 20286,20292 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:12 - #, fuzzy msgid "day" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marctagstructure.tmpl:4 --- 20278,20283 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:12 msgid "day" ! msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marctagstructure.tmpl:4 *************** *** 20376,20380 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:21 msgid "everywhere" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:18 --- 20367,20371 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/issuingrules.tmpl:21 msgid "everywhere" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl:18 *************** *** 20401,20407 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:20 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:22 - #, fuzzy msgid "filter" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:11 --- 20392,20397 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:20 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:22 msgid "filter" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:11 *************** *** 20412,20418 **** #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, fuzzy, c-format msgid "for branch = %s" ! msgstr "??????????????????%s" #. %1$s: TMPL_VAR name=borrower_category --- 20402,20408 ---- #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, , c-format msgid "for branch = %s" ! msgstr "" #. %1$s: TMPL_VAR name=borrower_category *************** *** 20510,20514 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/search.marc/search.tmpl:25 - #, fuzzy msgid "ignored" msgstr "??????" --- 20500,20503 ---- *************** *** 20669,20673 **** #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - #, fuzzy msgid "mandatory tags empty" msgstr "????????????????????????" --- 20658,20661 ---- *************** *** 20727,20733 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:24 - #, fuzzy msgid "month" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:310 --- 20715,20720 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:24 msgid "month" ! msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:310 *************** *** 20848,20852 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/addbookbybiblionumber.tmpl:9 msgid "or add to a new bookshelf" ! msgstr "" #. %1$s: TMPL_VAR name=name --- 20835,20839 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/addbookbybiblionumber.tmpl:9 msgid "or add to a new bookshelf" ! msgstr "??????????????????????????????" #. %1$s: TMPL_VAR name=name *************** *** 20881,20887 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:331 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:333 - #, fuzzy msgid "plans" ! msgstr "Al Banks" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl:22 --- 20868,20873 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:331 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:333 msgid "plans" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl:22 *************** *** 20899,20903 **** #: ../../koha-tmpl/intranet-tmpl/default/en/includes/quicksearch-top.inc:5 msgid "popup" ! msgstr "" #. SCRIPT --- 20885,20889 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/includes/quicksearch-top.inc:5 msgid "popup" ! msgstr "????????????" #. SCRIPT *************** *** 20952,20958 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:33 - #, fuzzy msgid "quarter" ! msgstr "??????" #. SCRIPT --- 20938,20943 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:33 msgid "quarter" ! msgstr "???" #. SCRIPT *************** *** 21045,21051 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:108 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:133 ! #, fuzzy, c-format msgid "see also : %s," ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 --- 21030,21036 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:108 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:133 ! #, c-format msgid "see also : %s," ! msgstr "?????????%s???" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:22 *************** *** 21059,21065 **** #. %2$s: TMPL_VAR name=name #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:4 ! #, fuzzy, c-format msgid "shopping Basket %s for %s" ! msgstr "%2$s ???????????? %1$s" # FIXME Strictly speaking untranslatable. Arguably a template bug, but difficult to fix --- 21044,21050 ---- #. %2$s: TMPL_VAR name=name #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl:4 ! #, c-format msgid "shopping Basket %s for %s" ! msgstr "%2$s ???????????? %1$s" # FIXME Strictly speaking untranslatable. Arguably a template bug, but difficult to fix *************** *** 21090,21096 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:127 - #, fuzzy msgid "subfield ignored" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl:155 --- 21075,21080 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_subfields_structure.tmpl:104 #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/marc_subfields_structure.tmpl:127 msgid "subfield ignored" ! msgstr "??????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/auth_tag_structure.tmpl:155 *************** *** 21159,21163 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:53 msgid "the biblioitems.itemtype field MUST :" ! msgstr "biblioitems.itemtype????????????" # NOTE ???????????? by Arthur --- 21143,21147 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:53 msgid "the biblioitems.itemtype field MUST :" ! msgstr "biblioitems.itemtype ????????????" # NOTE ???????????? by Arthur *************** *** 21185,21193 **** #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:93 msgid "the items.holdingbranch field MUST :" ! msgstr "items.holdingbranch????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:79 msgid "the items.homebranch field MUST :" ! msgstr "items.homebranch?????????" # NOTE ???????????? by Arthur --- 21169,21177 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:93 msgid "the items.holdingbranch field MUST :" ! msgstr "items.holdingbranch ????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/checkmarc.tmpl:79 msgid "the items.homebranch field MUST :" ! msgstr "items.homebranch ?????????" # NOTE ???????????? by Arthur *************** *** 21289,21293 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:15 msgid "week" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:25 --- 21273,21277 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:15 msgid "week" ! msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/help/bull/subscription-add.tmpl:25 *************** *** 21309,21313 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:39 msgid "year" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:16 --- 21293,21297 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/serial-issues.tmpl:39 msgid "year" ! msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:16 From acli at users.sourceforge.net Mon Jan 24 08:13:57 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 23:13:57 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator TmplTokenizer.pm,1.35.2.1,1.35.2.2 Message-ID: Update of /cvsroot/koha/koha/misc/translator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28051 Modified Files: Tag: rel_2_2 TmplTokenizer.pm Log Message: Reverting the patch Index: TmplTokenizer.pm =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/TmplTokenizer.pm,v retrieving revision 1.35.2.1 retrieving revision 1.35.2.2 diff -C2 -r1.35.2.1 -r1.35.2.2 *** TmplTokenizer.pm 23 Jan 2005 07:05:43 -0000 1.35.2.1 --- TmplTokenizer.pm 24 Jan 2005 07:13:54 -0000 1.35.2.2 *************** *** 342,346 **** $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])\s*(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { --- 342,346 ---- $state = $input[$i] eq parenleft ? STATE_PARENLEFT : 0; } elsif ($state == STATE_PARENLEFT) { ! if ($input[$i] =~ /^(['"])(.*)\1$/s) { ($state, $j, $q, $s) = (STATE_STRING_LITERAL, $#output, $1, $2); } else { *************** *** 349,354 **** } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! my $candidate = $output[$j]->[1]; ! $output[$j] = [1, $candidate, $q, $s]; } $state = 0; --- 349,353 ---- } elsif ($state == STATE_STRING_LITERAL) { if ($input[$i] eq parenright) { ! $output[$j] = [1, $output[$j]->[1], $q, $s]; } $state = 0; From acli at users.sourceforge.net Mon Jan 24 08:57:40 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Sun, 23 Jan 2005 23:57:40 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po css_opac_zh_TW.po,1.4.2.3,1.4.2.4 default_intranet_zh_TW.po,1.4.2.5,1.4.2.6 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5164 Modified Files: Tag: rel_2_2 css_opac_zh_TW.po default_intranet_zh_TW.po Log Message: Unimarc tag 130 done Index: css_opac_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/css_opac_zh_TW.po,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -r1.4.2.3 -r1.4.2.4 *** css_opac_zh_TW.po 24 Jan 2005 05:53:09 -0000 1.4.2.3 --- css_opac_zh_TW.po 24 Jan 2005 07:57:29 -0000 1.4.2.4 *************** *** 10,14 **** msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-23 23:45-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" --- 10,14 ---- msgstr "" "Project-Id-Version: Koha OPAC 2.2cvs\n" ! "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-18 02:40-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 18,21 **** --- 18,28 ---- "Content-Transfer-Encoding: 8bit\n" + # TODO + #. SCRIPT + #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 + #, fuzzy + msgid " Biblio(s) added" + msgstr "??????????????????" + #. %1$S: type=text name=value #: ../../koha-tmpl/opac-tmpl/css/en/opac-search.tmpl:111 *************** *** 799,808 **** msgstr "??????" - # TODO - #. SCRIPT - #: ../../koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc:29 - msgid "Biblio(s) added" - msgstr "??????????????????" - #: ../../koha-tmpl/opac-tmpl/css/en/opac-shelves.tmpl:51 msgid "Bookshelves" --- 806,809 ---- Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.5 retrieving revision 1.4.2.6 diff -C2 -r1.4.2.5 -r1.4.2.6 *** default_intranet_zh_TW.po 24 Jan 2005 06:53:51 -0000 1.4.2.5 --- default_intranet_zh_TW.po 24 Jan 2005 07:57:34 -0000 1.4.2.6 *************** *** 26,30 **** msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-23 23:46-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" --- 26,30 ---- msgstr "" "Project-Id-Version: Koha INTRANET 2.1cvs\n" ! "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" "Last-Translator: Ambrose Li \n" *************** *** 34,37 **** --- 34,52 ---- "Content-Transfer-Encoding: 8bit\n" + #. For the first occurrence, + #. SCRIPT + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl:111 + #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 + msgid " mandatory fields empty (see bold subfields)" + msgstr "???????????????????????????????????????????????????" + + #. For the first occurrence, + #. SCRIPT + #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 + #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 + msgid " mandatory tags empty" + msgstr "????????????????????????" + #. %1$s: TMPL_VAR name=subject #: ../../koha-tmpl/intranet-tmpl/default/en/maint/catmaintain.tmpl:6 *************** *** 81,85 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:31 msgid "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:32 --- 96,100 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:31 msgid "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" ! msgstr "#205||{ ; 205a}{ , 205b}{ = 205d}{ / 205f}{ ; 205g}|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:32 *************** *** 91,95 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:33 msgid "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:34 --- 106,110 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:33 msgid "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" ! msgstr "#210|(|{210e}{(210f)}{ : 210g}{, 210h}|)" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:34 *************** *** 107,111 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:30 msgid "#230||{ ; 230a}|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:36 --- 122,126 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:30 msgid "#230||{ ; 230a}|" ! msgstr "#230||{ ; 230a}|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:36 *************** *** 117,121 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:28 msgid "#700|" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:37 --- 132,136 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:28 msgid "#700|" ! msgstr "#700|" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/systempreferences.tmpl:37 *************** *** 135,139 **** #, c-format msgid "%S (example for 200a : '200c','200d','200e')" ! msgstr "" #. %1$S: type=text name=seealso --- 150,154 ---- #, c-format msgid "%S (example for 200a : '200c','200d','200e')" ! msgstr "%S (??? 200a ?????????????????????200c?????????200d?????????200e???)" #. %1$S: type=text name=seealso *************** *** 736,740 **** #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist-auth.tmpl:55 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_210c.tmpl:56 - #, fuzzy msgid " No results found." msgstr "?????????????????????????????????" --- 751,754 ---- *************** *** 784,788 **** #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:17 - #, fuzzy msgid "" "(Note : fines are calculated by the fines2.pl script, located in misc " --- 798,801 ---- *************** *** 818,824 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:123 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:125 ! #, fuzzy, c-format msgid "(is %s)" ! msgstr "(%s, %s)" #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:13 --- 831,837 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:123 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:125 ! #, c-format msgid "(is %s)" ! msgstr "(??? %s)" #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:13 *************** *** 971,982 **** # FIXME looks like a BUG in the English template #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:41 - #, fuzzy msgid "1/2 Monthes" ! msgstr "??????%0.0s" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:59 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:61 msgid "1/2 months" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:338 --- 984,994 ---- # FIXME looks like a BUG in the English template #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:41 msgid "1/2 Monthes" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:59 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:61 msgid "1/2 months" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:338 *************** *** 989,993 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:50 msgid "1/2 quarters" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:44 --- 1001,1005 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:50 msgid "1/2 quarters" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:44 *************** *** 995,999 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:32 msgid "1/2 weeks" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:84 --- 1007,1011 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:32 msgid "1/2 weeks" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-add.tmpl:84 *************** *** 1001,1005 **** #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:56 msgid "1/2 years" ! msgstr "1/2 ???" # FIXME looks like a BUG in the English template --- 1013,1017 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/bull/subscription-detail.tmpl:56 msgid "1/2 years" ! msgstr "??????" # FIXME looks like a BUG in the English template *************** *** 1082,1086 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:127 msgid "105 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1296 --- 1094,1098 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:127 msgid "105 mm (microfilm)" ! msgstr "105 ????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1296 *************** *** 1134,1138 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:112 msgid "16 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:414 --- 1146,1150 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:112 msgid "16 mm (microfilm)" ! msgstr "16 ????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:414 *************** *** 1211,1215 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:132 msgid "3 x 5 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:112 --- 1223,1227 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:132 msgid "3 x 5 pouces" ! msgstr "3 ?? 5 ??????8 ?? 13 ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:112 *************** *** 1236,1240 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:117 msgid "35 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:282 --- 1248,1252 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:117 msgid "35 mm (microfilm)" ! msgstr "35 ????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:282 *************** *** 1251,1255 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:137 msgid "4 x 6 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:164 --- 1263,1267 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:137 msgid "4 x 6 pouces" ! msgstr "4 ?? 6 ??????11 ?? 15 ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:164 *************** *** 1296,1300 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:142 msgid "6 x 9 pouces" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:127 --- 1308,1312 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:142 msgid "6 x 9 pouces" ! msgstr "6 ?? 9 ??????16 ?? 23 ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121b.tmpl:127 *************** *** 1331,1335 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:122 msgid "70 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:104 --- 1343,1347 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:122 msgid "70 mm (microfilm)" ! msgstr "70 ????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:104 *************** *** 1341,1345 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:107 msgid "8 mm (microfilm)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:404 --- 1353,1357 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:107 msgid "8 mm (microfilm)" ! msgstr "8 ????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:404 *************** *** 1358,1365 **** msgstr "8/10 ???/???" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:145 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:147 msgid "9 x 19 cm" ! msgstr "" #. For the first occurrence, --- 1370,1378 ---- msgstr "8/10 ???/???" + # NOTE CMARC ?????? :-( #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:145 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:147 msgid "9 x 19 cm" ! msgstr "3 1/4 ?? 7 3/8 ??????9 ?? 19 ?????????????????????" #. For the first occurrence, *************** *** 4066,4070 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:55 msgid "Bande microfilm" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:198 --- 4079,4083 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:55 msgid "Bande microfilm" ! msgstr "??????????????? (microfilm slip)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:198 *************** *** 5019,5023 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:20 msgid "Carte a fenetre" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1535 --- 5032,5036 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:20 msgid "Carte a fenetre" ! msgstr "?????? (aperture card)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:1535 *************** *** 6070,6074 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:313 msgid "Copie de service" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/request.tmpl:38 --- 6083,6087 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:313 msgid "Copie de service" ! msgstr "????????? (service copy)" #: ../../koha-tmpl/intranet-tmpl/default/en/request.tmpl:38 *************** *** 6156,6167 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:229 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:231 - #, fuzzy msgid "Couleur" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:215 - #, fuzzy msgid "Couleur:" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:119 --- 6169,6178 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:229 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:231 msgid "Couleur" ! msgstr "?????? (color)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:215 msgid "Couleur:" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes.tmpl:119 *************** *** 6919,6923 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:262 msgid "Diazoique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:423 --- 6930,6934 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:262 msgid "Diazoique" ! msgstr "?????? (diazo)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:423 *************** *** 6957,6961 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:96 msgid "Dimensions:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:168 --- 6968,6972 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:96 msgid "Dimensions:" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:168 *************** *** 7027,7033 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:239 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:241 - #, fuzzy msgid "Divers" ! msgstr "-> ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:123 --- 7038,7043 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:239 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:241 msgid "Divers" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:123 *************** *** 7405,7409 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:183 msgid "Elevee (31x - 60x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/members/imemberentry.tmpl:78 --- 7415,7419 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:183 msgid "Elevee (31x - 60x)" ! msgstr "????????????31???60??????" #: ../../koha-tmpl/intranet-tmpl/default/en/members/imemberentry.tmpl:78 *************** *** 7424,7433 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:246 msgid "Emulsion:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:275 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:277 msgid "Emulsions diverses" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:611 --- 7434,7443 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:246 msgid "Emulsion:" ! msgstr "???????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:275 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:277 msgid "Emulsions diverses" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_120.tmpl:611 *************** *** 7910,7916 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:171 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:173 - #, fuzzy msgid "Faible reduction" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:368 --- 7920,7925 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:171 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:173 msgid "Faible reduction" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128b.tmpl:368 *************** *** 8489,8500 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:292 - #, fuzzy msgid "Generation (copies):" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:321 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:323 msgid "Generations diverses" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:99 --- 8498,8508 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:292 msgid "Generation (copies):" ! msgstr "??????????????? (generation)???" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:321 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:323 msgid "Generations diverses" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:99 *************** *** 9227,9231 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:344 msgid "Il ne s'agit pas d'un support de securite" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:1087 --- 9235,9239 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:344 msgid "Il ne s'agit pas d'un support de securite" ! msgstr "?????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:1087 *************** *** 11783,11787 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:50 msgid "Micro opaque" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_106.tmpl:44 --- 11791,11795 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:50 msgid "Micro opaque" ! msgstr "?????????????????? (micro opaque)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_106.tmpl:44 *************** *** 11793,11817 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:40 msgid "Microfiche" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:43 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:45 msgid "Microfiche en cassette" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:33 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:35 msgid "Microfilm en bobine" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:23 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:25 msgid "Microfilm en cartouche" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:30 msgid "Microfilm en cassette" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:250 --- 11801,11825 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:40 msgid "Microfiche" ! msgstr "???????????? (microfiche)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:43 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:45 msgid "Microfiche en cassette" ! msgstr "?????????????????? (microfiche cassette)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:33 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:35 msgid "Microfilm en bobine" ! msgstr "?????????????????? (microform reel)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:23 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:25 msgid "Microfilm en cartouche" ! msgstr "?????????????????? (microform cartridge)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:28 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:30 msgid "Microfilm en cassette" ! msgstr "?????????????????? (microform cassette)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:250 *************** *** 12076,12082 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:224 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:226 - #, fuzzy msgid "Monochrome" ! msgstr "?????? (??????)" # NOTE Cf http://dimes.lins.fju.edu.tw/pub/bulletin-lac-60/dc-cmark.htm --- 12084,12089 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:224 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:226 msgid "Monochrome" ! msgstr "?????? (monochrome)" # NOTE Cf http://dimes.lins.fju.edu.tw/pub/bulletin-lac-60/dc-cmark.htm *************** *** 12368,12372 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:81 msgid "Negatif" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:40 --- 12375,12379 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:81 msgid "Negatif" ! msgstr "?????? (negative)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl:40 *************** *** 13198,13202 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:178 msgid "Normale (16x - 30x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_110.tmpl:209 --- 13205,13209 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:178 msgid "Normale (16x - 30x)" ! msgstr "???????????????16???30??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_110.tmpl:209 *************** *** 13280,13284 **** "directory." msgstr "??????????????????????????? misc ???????????? fines2.pl ?????????" ! #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:14 msgid "Note : the items are NOT exported by this tool" --- 13287,13291 ---- "directory." msgstr "??????????????????????????? misc ???????????? fines2.pl ?????????" ! #: ../../koha-tmpl/intranet-tmpl/default/en/export/marc.tmpl:14 msgid "Note : the items are NOT exported by this tool" *************** *** 14868,14872 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:91 msgid "Plusieurs polarites" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:318 --- 14875,14879 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:91 msgid "Plusieurs polarites" ! msgstr "??????????????? (mixed polarity)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_128a.tmpl:318 *************** *** 14923,14929 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:65 - #, fuzzy msgid "Polarite:" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:42 --- 14930,14935 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:65 msgid "Polarite:" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:42 *************** *** 15027,15033 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:74 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:76 - #, fuzzy msgid "Positif" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:195 --- 15033,15038 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:74 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:76 msgid "Positif" ! msgstr "?????? (positive)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:195 *************** *** 15121,15125 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:303 msgid "Premiere generation (master)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:425 --- 15126,15130 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:303 msgid "Premiere generation (master)" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:425 *************** *** 15133,15137 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "?????????????????????????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 --- 15138,15142 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:9 msgid "Presentation materielle:" ! msgstr "?????????????????????????????????????????? / ?????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:970 *************** *** 15424,15433 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:208 msgid "Rapport de reduction specifique" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:162 - #, fuzzy msgid "Rapport de reduction:" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:495 --- 15429,15437 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:208 msgid "Rapport de reduction specifique" ! msgstr "??????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:162 msgid "Rapport de reduction:" ! msgstr "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_105.tmpl:495 *************** *** 15684,15696 **** msgstr "" - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:492 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:578 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:664 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:750 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:836 - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:922 - msgid "Renseignement techniques sur la musique" - msgstr "???????????????????????????" - #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:505 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:507 --- 15688,15691 ---- *************** *** 15739,15747 **** --- 15734,15748 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:490 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:492 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:576 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:578 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:662 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:664 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:748 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:750 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:834 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:836 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:920 + #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_126a.tmpl:922 msgid "Renseignements techniques sur la musique" msgstr "???????????????????????????" *************** *** 16484,16488 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:257 msgid "Sel d'argent" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/order.tmpl:9 --- 16485,16489 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:257 msgid "Sel d'argent" ! msgstr "?????? (silver halide)" #: ../../koha-tmpl/intranet-tmpl/default/en/bull/order.tmpl:9 *************** *** 17461,17465 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:328 msgid "Support de film:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1124 --- 17462,17466 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:328 msgid "Support de film:" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1124 *************** *** 17470,17474 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:339 msgid "Support de securite" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1141 --- 17471,17475 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:339 msgid "Support de securite" ! msgstr "??????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115a.tmpl:1141 *************** *** 18394,18400 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:306 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:308 - #, fuzzy msgid "Tirage" ! msgstr "???" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:34 --- 18395,18400 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:306 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:308 msgid "Tirage" ! msgstr "??????????????? (printing master)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_115b.tmpl:34 *************** *** 18743,18747 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:188 msgid "Tres elevee (61x - 90x)" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:23 --- 18743,18747 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:188 msgid "Tres elevee (61x - 90x)" ! msgstr "???????????????61???90 ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_121a.tmpl:23 *************** *** 19127,19131 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:193 msgid "Ultra elevee (91x -)" ! msgstr "" # NOTE ???????????? by Arthur --- 19127,19131 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:193 msgid "Ultra elevee (91x -)" ! msgstr "???????????????91?????????" # NOTE ???????????? by Arthur *************** *** 19426,19430 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:267 msgid "Vesiculaire" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:132 --- 19426,19430 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_130.tmpl:267 msgid "Vesiculaire" ! msgstr "?????? (vesicular)" #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_117.tmpl:132 *************** *** 20402,20406 **** #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, , c-format msgid "for branch = %s" msgstr "" --- 20402,20406 ---- #. %1$s: TMPL_VAR name=branch #: ../../koha-tmpl/intranet-tmpl/default/en/reports/itemtypes.tmpl:5 ! #, c-format msgid "for branch = %s" msgstr "" *************** *** 20645,20664 **** msgstr "??????*" - #. For the first occurrence, - #. SCRIPT - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl:111 - #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - #, fuzzy - msgid "mandatory fields empty (see bold subfields)" - msgstr "???????????????????????????????????????????????????" - - #. For the first occurrence, - #. SCRIPT - #: ../../koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl:493 - #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl:171 - msgid "mandatory tags empty" - msgstr "????????????????????????" - #: ../../koha-tmpl/intranet-tmpl/default/en/help/search.marc/search.tmpl:20 msgid "means : find biblio that have a" --- 20645,20648 ---- *************** *** 21950,21953 **** --- 21934,21940 ---- #~ msgstr "??????*" + #~ msgid "Renseignement techniques sur la musique" + #~ msgstr "???????????????????????????" + #~ msgid "Rep" #~ msgstr "?????????" From acli at users.sourceforge.net Mon Jan 24 09:12:49 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 00:12:49 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_116.tmpl,1.1,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9345 Modified Files: Tag: rel_2_2 unimarc_field_116.tmpl Log Message: Disambiguation for CMARC Index: unimarc_field_116.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_116.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** unimarc_field_116.tmpl 7 Jun 2004 09:50:40 -0000 1.1 --- unimarc_field_116.tmpl 24 Jan 2005 08:12:31 -0000 1.1.2.1 *************** *** 219,223 ****
        Couleur
        Couleur: Subtitle: ! Author:
        Additional Author:
        Published by : --- 47,51 ----
        Subtitle: ! Author:
        Additional Author:
        Published by : *************** *** 53,67 **** , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: --- 53,67 ---- , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: From oleonard at users.sourceforge.net Mon Jan 24 23:12:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:12:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-detail.tmpl,1.15,1.16 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25326/koha-tmpl/opac-tmpl/css/en Modified Files: opac-detail.tmpl Log Message: Moving position of relative to
        to prevent unwanted whitespace for empty elements. Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-detail.tmpl 3 Jan 2005 11:09:33 -0000 1.15 --- opac-detail.tmpl 24 Jan 2005 22:11:54 -0000 1.16 *************** *** 46,51 ****
        ! Subtitle: ! Author:
        Additional Author:
        Published by : --- 46,51 ----
        ! Subtitle:
        ! Author:
        Additional Author:
        Published by : *************** *** 53,67 **** , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: --- 53,67 ---- , ,
        ! ISBN:
        ! Collection:
        ! Subject(s): ">, !
        ! Year :
        ! Notes:
        ! Unititle:
        ! Dewey:
        ! URL: ">
        Item type :
        Total Number of Items: From oleonard at users.sourceforge.net Mon Jan 24 23:52:34 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:52:34 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-addbookbybiblionumber.tmpl,NONE,1.1 opac-serial-issues.tmpl,NONE,1.1 opac-ISBDdetail.tmpl,1.1,1.2 opac-MARCdetail.tmpl,1.1,1.2 opac-detail.tmpl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2852/koha-tmpl/opac-tmpl/npl/en Modified Files: opac-ISBDdetail.tmpl opac-MARCdetail.tmpl opac-detail.tmpl Added Files: opac-addbookbybiblionumber.tmpl opac-serial-issues.tmpl Log Message: Synching with default tempalte, other cosmetic changes --- NEW FILE ---

        Add book to bookshelf

        Select bookshelf

        or add to a new bookshelf

        ">

        --- NEW FILE --- Catalog -- Subscription Details

        Subscription Details

        Details:

        It began on and is issued every day week 2 weeks 3 weeks month 2 months 3 months quarter 2 quarters year 2 years on Monday Tuesday Wednesday Thursday Friday Saturday Sunday for issues weeks months since

        Notes:
        Issues summary
        " />

        Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-ISBDdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-ISBDdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-ISBDdetail.tmpl 24 Jan 2005 22:51:51 -0000 1.2 *************** *** 3,26 **** ! /includes/marc-editor.css"> ! !
        !

        ISBD :

        --- 3,28 ---- ! !
        !

        ISBD

        !

        ! !
        ! ! " /> !
        ! ! !
        " />
        ! !
        " />
        !
        " />'); return false;"/>
        ! !
        " />'); return false;" />
        ! !
        '); return false;" value="Add to Book Bag" />
        !
        Index: opac-MARCdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-MARCdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-MARCdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-MARCdetail.tmpl 24 Jan 2005 22:51:52 -0000 1.2 *************** *** 6,22 ****

        MARC View

        !
        ! " />
        !
        " /> --> !
        " />
        ! " />'); return false;"/> --> !
        '); return false;" value="Add to Book Bag" />
        --- 6,22 ----

        MARC View

        !
        ! " /> ! " /> --> !
        " /> !
        " /> !
        '); return false;" value="Add to Book Bag" />
        *************** *** 120,124 ****
        ! --- 120,124 ----
        Copies
        ! *************** *** 135,139 **** --- 135,143 ---- +
        Copies
        + +
        No copies available.
        +
        Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac-detail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-detail.tmpl 24 Jan 2005 22:51:52 -0000 1.2 *************** *** 35,43 ****
        Notes:
        Subject(s): ! : "> !
        --- 35,41 ----
        Notes:
        Subject(s):">
        *************** *** 72,86 ****
        !
        ! " />
        !
        ! " /> --> ! " /> --> ! " />'); return false;"/> -->
        '); return false;" value="Add to Book Bag" />
        --- 70,87 ---- !
        ! " />
        ! !
        " />
        !
        " />
        ! !
        " />'); return false;"/>
        ! !
        " />'); return false;" />
        '); return false;" value="Add to Book Bag" />
        *************** *** 112,115 **** --- 113,119 ----
        No copies available.
        + +

        This is a serial subscription (There are subscriptions associated with this title). You can see which " title="Serial issues">Issues we have and don't have

        +
    From oleonard at users.sourceforge.net Mon Jan 24 23:54:11 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:54:11 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en/includes opac.css,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3261/koha-tmpl/opac-tmpl/npl/en/includes Modified Files: opac.css Log Message: Adding styles for more input buttons Index: opac.css =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/includes/opac.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** opac.css 20 Oct 2004 19:15:06 -0000 1.1 --- opac.css 24 Jan 2005 22:54:02 -0000 1.2 *************** *** 518,521 **** --- 518,533 ---- } + input.isbd { + background-image: url(../images/isbd.gif); + } + + input.shelf { + background-image: url(../images/addtoshelf.gif); + } + + input.reserve { + background-image: url(../images/placereserve.gif); + } + .title { font-style : italic; From oleonard at users.sourceforge.net Mon Jan 24 23:55:37 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Mon, 24 Jan 2005 14:55:37 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en/images addtoshelf.gif,NONE,1.1 isbd.gif,NONE,1.1 placereserve.gif,NONE,1.1 addtobasket.gif,1.1,1.2 basket.gif,1.1,1.2 clearbasket.gif,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3485/koha-tmpl/opac-tmpl/npl/en/images Modified Files: addtobasket.gif basket.gif clearbasket.gif Added Files: addtoshelf.gif isbd.gif placereserve.gif Log Message: Adding and updating input button images --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a Index: addtobasket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/addtobasket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsVA8MFf and /tmp/cvsuQkGMD differ Index: basket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/basket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsYU6vAC and /tmp/cvsuauCKd differ Index: clearbasket.gif =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/images/clearbasket.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvs4fJPY7 and /tmp/cvsOQuiCM differ From acli at users.sourceforge.net Tue Jan 25 04:47:04 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 19:47:04 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.8,1.4.2.9 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25498 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.8 retrieving revision 1.4.2.9 diff -C2 -r1.4.2.8 -r1.4.2.9 *** default_intranet_zh_TW.po 24 Jan 2005 09:31:17 -0000 1.4.2.8 --- default_intranet_zh_TW.po 25 Jan 2005 03:46:58 -0000 1.4.2.9 *************** *** 25,29 **** msgid "" msgstr "" ! "Project-Id-Version: Koha INTRANET 2.1cvs\n" "POT-Creation-Date: 2005-01-24 02:10-0500\n" "PO-Revision-Date: 2004-02-23 17:20-0500\n" --- 25,29 ---- msgid "" msgstr "" ! "Project-Id-Version: Koha INTRANET 2.2.1cvs\n" "POT-Creation-Date: 2005-01-24 02:10-0500\n" [...1111 lines suppressed...] - #, fuzzy msgid "Overdue charges" ! msgstr "??????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:6 --- 13865,13870 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:14 msgid "Overdue charges" ! msgstr "????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/help/admin/issuingrules.tmpl:6 *************** *** 13956,13960 **** # NOTE ????????????Simon Blake???#koha?????? #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/recieve.tmpl:37 - #, fuzzy msgid "P&P" msgstr "??????" --- 13895,13898 ---- From acli at users.sourceforge.net Tue Jan 25 05:54:36 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 20:54:36 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/value_builder unimarc_field_100.tmpl,1.3,1.3.2.1 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6781 Modified Files: Tag: rel_2_2 unimarc_field_100.tmpl Log Message: Spelling correction Index: unimarc_field_100.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** unimarc_field_100.tmpl 7 Jun 2004 09:46:36 -0000 1.3 --- unimarc_field_100.tmpl 25 Jan 2005 04:54:33 -0000 1.3.2.1 *************** *** 304,308 **** SELECTED>local(municipal, etc.) ! --- 304,308 ---- SELECTED>local(municipal, etc.) ! From acli at users.sourceforge.net Tue Jan 25 05:57:34 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 20:57:34 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.9,1.4.2.10 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7379 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update, mostly unimarc tag 100 related Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.9 retrieving revision 1.4.2.10 diff -C2 -r1.4.2.9 -r1.4.2.10 *** default_intranet_zh_TW.po 25 Jan 2005 03:46:58 -0000 1.4.2.9 --- default_intranet_zh_TW.po 25 Jan 2005 04:57:26 -0000 1.4.2.10 *************** *** 2971,2977 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1382 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1384 - #, fuzzy msgid "Allegorie" ! msgstr "??????" #: ../../koha-tmpl/intranet-tmpl/default/en/user/userpage.tmpl:58 --- 2971,2976 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1382 #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_140.tmpl:1384 [...980 lines suppressed...] #. INPUT type=submit --- 20732,20736 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:50 msgid "reproduction" ! msgstr "?????????????????????????????????????????????" #. INPUT type=submit *************** *** 20799,20803 **** #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:249 msgid "scolaire" ! msgstr "" # NOTE???See???????????????????????????See also??????????????????????????????????????? --- 20783,20787 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/value_builder/unimarc_field_100.tmpl:249 msgid "scolaire" ! msgstr "???????????????5-10 ???" # NOTE???See???????????????????????????See also??????????????????????????????????????? From acli at users.sourceforge.net Tue Jan 25 06:31:59 2005 From: acli at users.sourceforge.net (Ambrose C. LI) Date: Mon, 24 Jan 2005 21:31:59 -0800 Subject: [Koha-cvs] CVS: koha/misc/translator/po default_intranet_zh_TW.po,1.4.2.10,1.4.2.11 Message-ID: Update of /cvsroot/koha/koha/misc/translator/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14192 Modified Files: Tag: rel_2_2 default_intranet_zh_TW.po Log Message: Partial update Index: default_intranet_zh_TW.po =================================================================== RCS file: /cvsroot/koha/koha/misc/translator/po/default_intranet_zh_TW.po,v retrieving revision 1.4.2.10 retrieving revision 1.4.2.11 diff -C2 -r1.4.2.10 -r1.4.2.11 *** default_intranet_zh_TW.po 25 Jan 2005 04:57:26 -0000 1.4.2.10 --- default_intranet_zh_TW.po 25 Jan 2005 05:31:53 -0000 1.4.2.11 *************** *** 551,555 **** #, c-format msgid "%s or thesaurus: %s or plugin: %s" ! msgstr "" #. %1$s: TMPL_VAR name=authorised_value --- 551,555 ---- #, c-format msgid "%s or thesaurus: %s or plugin: %s" ! msgstr "%s ??????????????????%s ????????????%s" #. %1$s: TMPL_VAR name=authorised_value *************** *** 814,818 **** #, c-format msgid "(defined from suggestion #%s)" ! msgstr "" #. %1$s: TMPL_VAR name=authtypecode --- 814,818 ---- #, c-format msgid "(defined from suggestion #%s)" ! msgstr "(???????????? %s ?????????????????????)" #. %1$s: TMPL_VAR name=authtypecode *************** *** 1430,1433 **** --- 1430,1435 ---- " ISBD Add to shelf Print " msgstr "" + " ???????????? ?????????????????? ?????? ?????? " + " ISBD ????????????????????? ?????? " #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:4 *************** *** 1439,1449 **** #, c-format msgid " Normal MARC Add to shelf Print " ! msgstr "" #. %1$s: TMPL_VAR name=count #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl:11 ! #, fuzzy, c-format msgid " Print %s biblios" ! msgstr "???????????? ????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl:29 --- 1441,1451 ---- #, c-format msgid " Normal MARC Add to shelf Print " ! msgstr " ?????? MARC ????????????????????? ?????? " #. %1$s: TMPL_VAR name=count #: ../../koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl:11 ! #, c-format msgid " Print %s biblios" ! msgstr " ?????? %s ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl:29 *************** *** 1460,1466 **** #. %2$s: TMPL_VAR name=shelfbookcount #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:73 ! #, fuzzy, c-format msgid "%s (%s item(s))" ! msgstr "%s %s (%s)" # FIXME Looks like a SCANNER BUG --- 1462,1468 ---- #. %2$s: TMPL_VAR name=shelfbookcount #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:73 ! #, c-format msgid "%s (%s item(s))" ! msgstr "%s (%s ?????????)" # FIXME Looks like a SCANNER BUG *************** *** 1482,1486 **** #: ../../koha-tmpl/intranet-tmpl/default/en/includes/parameters-top.inc:36 #: ../../koha-tmpl/intranet-tmpl/default/en/includes/reports-top.inc:35 ! #, fuzzy, c-format msgid "" "Acquisitions Catalogue Circulation Members " --- 1484,1488 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/includes/parameters-top.inc:36 #: ../../koha-tmpl/intranet-tmpl/default/en/includes/reports-top.inc:35 ! #, c-format msgid "" "Acquisitions Catalogue Circulation Members " *************** *** 1488,1493 **** "Help" msgstr "" ! "?????? ?????? ?????? ?????? ?????? ?????? ?????? ??????" # XXX ??????????????????????????? --- 1490,1496 ---- "Help" msgstr "" ! "?????? ?????? ?????? ?????? " ! "?????? ?????? ?????? ?????? " ! "??????" # XXX ??????????????????????????? *************** *** 1497,1500 **** --- 1500,1504 ---- msgstr "????????????????????????????????????????????????" + # FIXME spelling mistake in original #: ../../koha-tmpl/intranet-tmpl/default/en/bull/bull-home.tmpl:32 #: ../../koha-tmpl/intranet-tmpl/default/en/bull/lateissues.tmpl:41 *************** *** 1511,1515 **** #, c-format msgid "Funds Auth value Currencies Printers" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:219 --- 1515,1519 ---- #, c-format msgid "Funds Auth value Currencies Printers" ! msgstr "?????????????????? ????????? ?????? ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:219 *************** *** 1519,1525 **** "Printers" msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:206 ! #, fuzzy, c-format msgid "" "Home Catalogue Members Acquisitions " --- 1523,1531 ---- "Printers" msgstr "" + "?????????????????? ????????? ???????????? ?????? " + "?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/barcodes/barcodes-top.inc:206 ! #, c-format msgid "" "Home Catalogue Members Acquisitions " *************** *** 1527,1537 **** "About Help" msgstr "" ! "?????? ?????? ?????? ?????? ?????? ?????? ?????? ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/circulation-top.inc:62 ! #, fuzzy, c-format msgid "Issues Returns Branch transfers" ! msgstr "???????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/about-top.inc:49 --- 1533,1544 ---- "About Help" msgstr "" ! "?????? ?????? ?????? ?????? " ! "?????? ?????? ?????? ?????? " ! "?????? ??????" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/circulation-top.inc:62 ! #, c-format msgid "Issues Returns Branch transfers" ! msgstr "????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/about-top.inc:49 *************** *** 1556,1577 **** #, c-format msgid "MARC ISBD Add to shelf Print" ! msgstr "" #. %1$s: TMPL_VAR name=surname #. %2$s: TMPL_VAR name=firstname #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:139 ! #, fuzzy, c-format msgid "Modify %s%s" ! msgstr "%s %s (%s)" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/subject.tmpl:21 ! #, fuzzy, c-format msgid "Previous Records Next Records" ! msgstr "?????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:137 ! #, fuzzy, c-format msgid "Previous Next" ! msgstr "?????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/members/pay.tmpl:41 --- 1563,1584 ---- #, c-format msgid "MARC ISBD Add to shelf Print" ! msgstr "MARC ISBD ????????????????????? ??????" #. %1$s: TMPL_VAR name=surname #. %2$s: TMPL_VAR name=firstname #: ../../koha-tmpl/intranet-tmpl/default/en/bookshelves/shelves.tmpl:139 ! #, c-format msgid "Modify %s%s" ! msgstr "?????? %s%s" #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/subject.tmpl:21 ! #, c-format msgid "Previous Records Next Records" ! msgstr "????????? ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/parameters/thesaurus.tmpl:137 ! #, c-format msgid "Previous Next" ! msgstr "????????? ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/members/pay.tmpl:41 *************** *** 1589,1593 **** #, c-format msgid "Search Add member Add organisation" ! msgstr "" # NOTE ???????????? by Arthur --- 1596,1600 ---- #, c-format msgid "Search Add member Add organisation" ! msgstr "?????? ???????????? ????????????????????????????????????????????????" ! # NOTE ???????????? by Arthur #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:70 ! #, fuzzy, c-format msgid "View Basket

    " ! msgstr "???????????????

    %s - ????????????

    " #: ../../koha-tmpl/intranet-tmpl/default/en/includes/cat-top.inc:51 --- 1618,1626 ---- msgstr "????????????????????????????????????" ! # FIXME please fix the scanner :-( #: ../../koha-tmpl/intranet-tmpl/default/en/acqui/newbiblio.tmpl:70 ! #, c-format msgid "View Basket

    " ! msgstr "???????????????

    " #: ../../koha-tmpl/intranet-tmpl/default/en/includes/cat-top.inc:51 *************** *** 1622,1641 **** msgid "" "search Add biblio Serial Virtual shelves" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/error-top.inc:56 ! #, fuzzy, c-format msgid "" "search Virtual shelves Add biblio Cat " "maintenance" msgstr "" ! "???????????? ?????????????????? ???????????? ???????????? " ! "????????????" #. %1$s: TMPL_VAR name=dateaccessioned #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:61 ! #, fuzzy, c-format msgid " Accession Date: %s" ! msgstr "???????????????%s" # NOTE ???????????? by Arthur --- 1629,1647 ---- msgid "" "search Add biblio Serial Virtual shelves" ! msgstr "?????? ???????????? ?????? ????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/includes/error-top.inc:56 ! #, c-format msgid "" "search Virtual shelves Add biblio Cat " "maintenance" msgstr "" ! "?????? ???????????? ???????????? ????????????" #. %1$s: TMPL_VAR name=dateaccessioned #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:61 ! #, c-format msgid " Accession Date: %s" ! msgstr "???????????????%s" # NOTE ???????????? by Arthur *************** *** 1693,1699 **** #. %2$s: TMPL_VAR name=genprname #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:11 ! #, fuzzy, c-format msgid "Branch: %s   Printer: %s Change Settings" ! msgstr "?????????%s ????????????%s ????????????" #. For the first occurrence, --- 1699,1705 ---- #. %2$s: TMPL_VAR name=genprname #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:11 ! #, c-format msgid "Branch: %s   Printer: %s Change Settings" ! msgstr "?????????%s ????????????%s ????????????" #. For the first occurrence, *************** *** 1702,1715 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:13 #: ../../koha-tmpl/intranet-tmpl/default/en/circ/returns.tmpl:6 ! #, fuzzy, c-format msgid "Branch: %s, Printer: %s Change Settings" ! msgstr "?????????%s ????????????%s ????????????" # FIXME BUG in English template #. %1$s: TMPL_VAR name=wthdrawn #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:64 ! #, fuzzy, c-format msgid "Cancelled: %s" ! msgstr "????????????%s" #. For the first occurrence, --- 1708,1721 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl:13 #: ../../koha-tmpl/intranet-tmpl/default/en/circ/returns.tmpl:6 ! #, c-format msgid "Branch: %s, Printer: %s Change Settings" ! msgstr "?????????%s ????????????%s ????????????" # FIXME BUG in English template #. %1$s: TMPL_VAR name=wthdrawn #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:64 ! #, c-format msgid "Cancelled: %s" ! msgstr "????????????%s" #. For the first occurrence, *************** *** 1759,1765 **** #. %1$s: TMPL_VAR name=date_due #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:53 ! #, fuzzy, c-format msgid "Date Due: %s" ! msgstr "?????????%s" # XXX inconsistency? --- 1765,1771 ---- #. %1$s: TMPL_VAR name=date_due #: ../../koha-tmpl/intranet-tmpl/default/en/catalogue/moredetail.tmpl:53 ! #, c-format msgid "Date Due: %s" ! msgstr "??????????????????%s" # XXX inconsistency? *************** *** 1794,1797 **** --- 1800,1804 ---- "improved ldap support)" msgstr "" + "EMN (Ecole des Mines de Nantes)????????????????????????????????????????????? LDAP ?????????" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:19 *************** *** 1803,1811 **** #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:114 msgid "Enter Item Barcode: Item Barcode:" ! msgstr "" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:51 msgid "Esiee School (J??rome Vizcaino, Michel Lerenard, Pierre Cauchois)" ! msgstr "" #. %1$s: TMPL_VAR name=biblioitemnumber --- 1810,1818 ---- #: ../../koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl:114 msgid "Enter Item Barcode: Item Barcode:" ! msgstr "?????????????????????????????????????????????????????????" #: ../../koha-tmpl/intranet-tmpl/default/en/about.tmpl:51 msgid "Esiee School (J??rome Vizcaino, Michel Lerenard, Pierre Cauchois)" ! msgstr "Esiee ?????? (J??rome Vizcaino???Michel Lerenard???Pierre Cauchois)" #. %1$s: TMPL_VAR name=biblioitemnumber From joshferraro at users.sourceforge.net Tue Jan 25 17:53:31 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 08:53:31 -0800 Subject: [Koha-cvs] CVS: koha/C4 Amazon.pm,NONE,1.1 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2165 Added Files: Amazon.pm Log Message: The Amazon module allows libraries to deliver amazon content to the opac --- NEW FILE --- package C4::Amazon; # Copyright 2004-2005 Joshua Ferraro (jmf at kados dot org) # # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA # # This module dynamically pulls amazon content into Koha. It does not # store the data in Koha's database. You'll need to get a developer's key # as well as an associate's tag to use it. # FIXME: need to write up more docs. # use strict; require Exporter; use vars qw($VERSION @ISA @EXPORT); $VERSION = 0.01; @ISA = qw(Exporter); @EXPORT = qw( &get_amazon_details ); sub get_amazon_details { my ( $isbn ) = @_; # insert your dev key here my $dev_key=''; # insert your associates tag here my $af_tag=''; my $asin=$isbn; # old way from command line: shift @ARGV or die "Usage:perl amazon_http.ol \n"; #my $url = "http://xml.amazon.com/onca/xml3?t=" . $af_tag . # "&dev-t=" . $dev_key . # "&type=heavy&f=xml&" . # "AsinSearch=" . $asin; my $url = "http://xml.amazon.com/onca/xml3?t=$dev_key&dev-t=$af_tag&type=heavy&f=xml&AsinSearch=" . $asin; #Here's an example asin for the book "Cryptonomicon" #0596005423"; use XML::Simple; use LWP::Simple; my $content = get($url); die "could not regrieve $url" unless $content; my $xmlsimple = XML::Simple->new(); my $response = $xmlsimple->XMLin($content, forcearray => [ qw(Details Product AvgCustomerRating CustomerReview) ], ); return $response; #foreach my $result (@{$response->{Details}}){ # my $product_description = $result->{ProductDescription}; # my $image = $result->{ImageUrlMedium}; # my $price = $result->{ListPrice}; # my $reviews = $result->{ # return $result; #} } From joshferraro at users.sourceforge.net Tue Jan 25 17:58:20 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 08:58:20 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-detail.pl,1.14,1.15 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3544 Modified Files: opac-detail.pl Log Message: Adds amazon support to opac-detail.pl Index: opac-detail.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-detail.pl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** opac-detail.pl 18 Aug 2004 16:44:37 -0000 1.14 --- opac-detail.pl 25 Jan 2005 16:58:18 -0000 1.15 *************** *** 10,14 **** use C4::Biblio; use C4::SearchMarc; ! my $query=new CGI; my ($template, $borrowernumber, $cookie) --- 10,14 ---- use C4::Biblio; use C4::SearchMarc; ! use C4::Amazon; my $query=new CGI; my ($template, $borrowernumber, $cookie) *************** *** 73,76 **** subscriptionid => $subscriptionid, ); ! output_html_with_http_headers $query, $cookie, $template->output; --- 73,103 ---- subscriptionid => $subscriptionid, ); ! ## get Amazon.com stuff ! my $isbn=$dat->{'isbn'}; ! my $amazon_details = &get_amazon_details($isbn); ! foreach my $result (@{$amazon_details->{Details}}){ ! $template->param(item_description => $result->{ProductDescription}); ! $template->param(image => $result->{ImageUrlMedium}); ! $template->param(list_price => $result->{ListPrice}); ! $template->param(amazon_url => $result->{url}); ! } ! ! my @products; ! my @reviews; ! for my $details( @{ $amazon_details->{ Details } } ) { ! next unless $details->{ SimilarProducts }; ! for my $product ( @{ $details->{ SimilarProducts }->{ Product } } ) { ! push @products, +{ Product => $product }; ! } ! next unless $details->{ Reviews }; ! for my $product ( @{ $details->{ Reviews }->{ AvgCustomerRating } } ) { ! $template->param(rating => $product); ! } ! for my $reviews ( @{ $details->{ Reviews }->{ CustomerReview } } ) { ! push @reviews, +{ Summary => $reviews->{ Summary }, Comment => $reviews->{ Comment }, }; ! } ! } ! $template->param( SIMILAR_PRODUCTS => \@products ); ! $template->param( REVIEWS => \@reviews ); ! ## End of Amazon Stuff output_html_with_http_headers $query, $cookie, $template->output; From joshferraro at users.sourceforge.net Tue Jan 25 18:13:27 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 09:13:27 -0800 Subject: [Koha-cvs] CVS: koha/opac opac-detail.pl,1.15,1.16 Message-ID: Update of /cvsroot/koha/koha/opac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8329 Modified Files: opac-detail.pl Log Message: makes opac-detail.pl's amazon stuff just a comment Index: opac-detail.pl =================================================================== RCS file: /cvsroot/koha/koha/opac/opac-detail.pl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** opac-detail.pl 25 Jan 2005 16:58:18 -0000 1.15 --- opac-detail.pl 25 Jan 2005 17:13:24 -0000 1.16 *************** *** 73,77 **** subscriptionid => $subscriptionid, ); ! ## get Amazon.com stuff my $isbn=$dat->{'isbn'}; my $amazon_details = &get_amazon_details($isbn); --- 73,78 ---- subscriptionid => $subscriptionid, ); ! ## Amazon.com stuff ! =head my $isbn=$dat->{'isbn'}; my $amazon_details = &get_amazon_details($isbn); *************** *** 101,103 **** --- 102,105 ---- $template->param( REVIEWS => \@reviews ); ## End of Amazon Stuff + =cut output_html_with_http_headers $query, $cookie, $template->output; From joshferraro at users.sourceforge.net Tue Jan 25 18:23:35 2005 From: joshferraro at users.sourceforge.net (Joshua Ferraro) Date: Tue, 25 Jan 2005 09:23:35 -0800 Subject: [Koha-cvs] CVS: koha/C4 Amazon.pm,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/C4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11210 Modified Files: Amazon.pm Log Message: Added some minimal docs to Amazon.pm Index: Amazon.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Amazon.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Amazon.pm 25 Jan 2005 16:53:28 -0000 1.1 --- Amazon.pm 25 Jan 2005 17:23:33 -0000 1.2 *************** *** 23,27 **** # FIXME: need to write up more docs. # ! use strict; require Exporter; --- 23,38 ---- # FIXME: need to write up more docs. # ! # To use this module you need to do three things: ! # 1. get a dev key and associate tag from Amazon ! # 2. uncomment the Amazon stuff in opac-detail.pl ! # 3. add the template variables to opac-detail.tmpl ! # here's what's available: ! # ProductDescription ! # ImageUrlMedium ! # ListPrice ! # url ! # loop SimilarProducts (Product) ! # loop Reviews (rating, Summary) ! # use strict; require Exporter; From oleonard at users.sourceforge.net Tue Jan 25 22:29:18 2005 From: oleonard at users.sourceforge.net (Owen Leonard) Date: Tue, 25 Jan 2005 13:29:18 -0800 Subject: [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/npl/en opac-addbookbybiblionumber.tmpl,NONE,1.1.2.1 opac-detailprint.tmpl,NONE,1.1.2.1 opac-serial-issues.tmpl,NONE,1.1.2.1 opac-ISBDdetail.tmpl,1.1,1.1.2.1 opac-detail.tmpl,1.1,1.1.2.1 opac-search.tmpl,1.1,1.1.2.1 opac-searchresults.tmpl,1.1,1.1.2.1 opac-user.tmpl,1.1.2.1,1.1.2.2 Message-ID: Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5141/koha-tmpl/opac-tmpl/npl/en Modified Files: Tag: rel_2_2 opac-ISBDdetail.tmpl opac-detail.tmpl opac-search.tmpl opac-searchresults.tmpl opac-user.tmpl Added Files: Tag: rel_2_2 opac-addbookbybiblionumber.tmpl opac-detailprint.tmpl opac-serial-issues.tmpl Log Message: Many updates, corrections, etc. to bring in line with default (css) template --- NEW FILE ---

    Add book to bookshelf

    Select bookshelf

    or add to a new bookshelf

    ">

    --- NEW FILE ---
    BIBLIO RECORD



    Published by : in , ,
    Collection:
    Subject:
    Year :
    Notes:
    Unititle:
    Dewey: ">
    Classification:
    LCCN:
    URL: ">
    ISBN:
    ,
    --- NEW FILE ---

    Issues for a subscription

    " class="button catalogue">Back to biblio

    Subscription information for

    It began on and is issued every day week 2 weeks 3 weeks month 2 months 3 months quarter 2 quarters year 2 years on Monday Tuesday Wednesday Thursday Friday Saturday Sunday for issues weeks months since

    Issues summary

    Index: opac-ISBDdetail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-ISBDdetail.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-ISBDdetail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-ISBDdetail.tmpl 25 Jan 2005 21:28:57 -0000 1.1.2.1 *************** *** 3,26 **** ! /includes/marc-editor.css"> ! !
    !

    ISBD :

    --- 3,28 ---- ! !
    !

    ISBD

    !

    ! ! ! ! " /> ! ! ! !
    " />
    ! !
    " />
    !
    " />'); return false;"/>
    ! !
    " />'); return false;" />
    ! !
    '); return false;" value="Add to Book Bag" />
    !
    Index: opac-detail.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-detail.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-detail.tmpl 20 Oct 2004 19:15:06 -0000 1.1 --- opac-detail.tmpl 25 Jan 2005 21:28:58 -0000 1.1.2.1 *************** *** 1,60 **** ! Catalog -- Details for: ! ! ! ! !
    ! !
    ! .jpg" alt="Book Cover Image" /> !
    ! /Display for NPL -->

    !

    By

    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> !
    Subtitle:
    Format:
    Copyright:
    ISBN:
    LCCN:
    Publisher:
    Details:
    Notes:
    Subject(s): ! : "> !
    ! ! ! --- 1,90 ---- ! ! /includes/marc-editor.css"> ! !
    ! !

    ! !

    !

    !
    Detailed notes:
      ! -
    Related links:
    ! ! ! ! + + +
    ! (record ) !
    + Subtitle:
    + Author:
    + Additional Author:
    + Published by : + in + , + ,
    + ISBN:
    + Collection:
    + Subject(s): + + ">, +
    + Year :
    + Notes:
    + Unititle:
    + Dewey:
    + URL: ">
    + Item type :
    + Total Number of Items: +
    + + + + + + + ! *************** *** 62,118 **** ! -
    Detailed notes:
      !
    No Detailed Notes
    Related links:
    - - -
    - - " /> -
    -
    - " /> --> ! " /> --> ! ! " />'); return false;"/> --> ! !
    '); return false;" value="Add to Book Bag" />
    !
    ! ! !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --> ! ! !
    Type/FormatCall NumberLocationDue DateLast Seen
    /images/.gif" align="left" title="" alt="" />
    ! !
    No copies available.
    ! !
    ! ! ! --- 92,143 ---- ! ! No Related Links !

    !
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    Item
    LocationDate DueLast SeenBarcode
    ()
    WebsiteOnlineAvailable 
    ! !

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

    ! !
    ! Index: opac-search.tmpl =================================================================== RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/npl/en/opac-search.tmpl,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -r1.1 -r1.1.2.1 *** opac-search.tmpl 20 Oct 2004 19:15:07 -0000 1.1 --- opac-search.tmpl 25 Jan 2005 21:28:59 -0000 1.1.2.1 *************** *** 11,15 ****
    !
    " /> --- 11,15 ----
    ! ! ! ! ! ! ! ! ! ! ! ! !
    " /> *************** *** 17,53 **** !
    !
    !
    --- 17,50 ---- !
    !
    !
    ! ! !
    ! !
    *************** *** 55,59 ****
    !

    Results per page :

    ! ! ! ! ! ! ! ! !
    Other options:
    ! ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !
    ! ! ! !

    Results per page : - -

    - -