From bfb94f5a8258807d4659c40ebaa7c6a450e37100 Mon Sep 17 00:00:00 2001 From: Marc Balmer Date: Sun, 11 Dec 2011 19:00:14 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 7356 - Fix various typos and mis-spellings Content-Type: text/plain; charset="utf-8" Fix typos: the the -> the, wether -> whether, developper -> developer. http://bugs.koha-community.org/show_bug.cgi?id=7356 Signed-off-by: Owen Leonard --- C4/Labels/Label.pm | 6 ++-- C4/Record.pm | 2 +- INSTALL.opensuse | 2 +- authorities/authorities.pl | 2 +- cataloguing/addbiblio.pl | 2 +- cataloguing/plugin_launcher.pl | 2 +- etc/zebradb/ccl.properties | 2 +- installer/data/mysql/kohastructure.sql | 4 +- installer/install.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/js/acq.js | 4 +- .../intranet-tmpl/prog/en/js/tinymce/changelog | 28 ++++++++++---------- .../themes/advanced/css/editor_content.css | 10 +++--- .../prog/en/lib/yui/calendar/calendar-debug.js | 2 +- .../prog/en/lib/yui/calendar/calendar.js | 2 +- .../prog/en/lib/yui/dragdrop/dragdrop-debug.js | 2 +- .../prog/en/lib/yui/dragdrop/dragdrop.js | 2 +- .../prog/en/lib/yui/editor/editor-debug.js | 2 +- .../intranet-tmpl/prog/en/lib/yui/editor/editor.js | 2 +- .../prog/en/lib/yui/editor/simpleeditor-debug.js | 2 +- .../prog/en/lib/yui/editor/simpleeditor.js | 2 +- .../intranet-tmpl/prog/en/lib/yui/get/get-debug.js | 2 +- koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get.js | 2 +- .../prog/en/lib/yui/menu/menu-debug.js | 4 +- .../intranet-tmpl/prog/en/lib/yui/menu/menu.js | 4 +- .../prog/en/lib/yui/yahoo/yahoo-debug.js | 2 +- .../intranet-tmpl/prog/en/lib/yui/yahoo/yahoo.js | 2 +- .../prog/en/lib/yui/yuiloader/yuiloader-debug.js | 6 ++-- .../prog/en/lib/yui/yuiloader/yuiloader.js | 6 ++-- .../en/modules/help/tools/manage-marc-import.tt | 2 +- .../prog/en/modules/help/tools/overduerules.tt | 2 +- .../prog/en/modules/help/tools/picture-upload.tt | 4 +- .../prog/en/modules/help/tools/scheduler.tt | 4 +- kohaversion.pl | 2 +- misc/migration_tools/build6xx.pl | 2 +- misc/release_notes/release_notes_200RC2.txt | 2 +- misc/release_notes/release_notes_200RC3.txt | 2 +- misc/release_notes/release_notes_210.txt | 8 +++--- misc/release_notes/release_notes_211.txt | 2 +- misc/release_notes/release_notes_220.txt | 4 +- misc/release_notes/release_notes_221.txt | 4 +- misc/release_notes/release_notes_222.txt | 4 +- misc/release_notes/release_notes_223.txt | 4 +- misc/release_notes/release_notes_22RC1.txt | 2 +- misc/release_notes/release_notes_22RC2.txt | 2 +- misc/release_notes/release_notes_22RC3.txt | 2 +- misc/release_notes/release_notes_22RC4.txt | 2 +- misc/release_notes/release_notes_22RC5.txt | 2 +- 47 files changed, 83 insertions(+), 83 deletions(-) diff --git a/C4/Labels/Label.pm b/C4/Labels/Label.pm index 930e0f6..0aec0a6 100644 --- a/C4/Labels/Label.pm +++ b/C4/Labels/Label.pm @@ -273,7 +273,7 @@ sub _BIB { sub _BAR { my $self = shift; - my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'}; # this places the bottom left of the barcode the left text margin distance to right of the the left edge of the label ($llx) + my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'}; # this places the bottom left of the barcode the left text margin distance to right of the left edge of the label ($llx) my $barcode_lly = $self->{'lly'} + $self->{'top_text_margin'}; # this places the bottom left of the barcode the top text margin distance above the bottom of the label ($lly) my $barcode_width = 0.8 * $self->{'width'}; # this scales the barcode width to 80% of the label width my $barcode_y_scale_factor = 0.01 * $self->{'height'}; # this scales the barcode height to 10% of the label height @@ -282,7 +282,7 @@ sub _BAR { sub _BIBBAR { my $self = shift; - my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'}; # this places the bottom left of the barcode the left text margin distance to right of the the left edge of the label ($self->{'llx'}) + my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'}; # this places the bottom left of the barcode the left text margin distance to right of the left edge of the label ($self->{'llx'}) my $barcode_lly = $self->{'lly'} + $self->{'top_text_margin'}; # this places the bottom left of the barcode the top text margin distance above the bottom of the label ($lly) my $barcode_width = 0.8 * $self->{'width'}; # this scales the barcode width to 80% of the label width my $barcode_y_scale_factor = 0.01 * $self->{'height'}; # this scales the barcode height to 10% of the label height @@ -294,7 +294,7 @@ sub _BIBBAR { sub _BARBIB { my $self = shift; - my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'}; # this places the bottom left of the barcode the left text margin distance to right of the the left edge of the label ($self->{'llx'}) + my $barcode_llx = $self->{'llx'} + $self->{'left_text_margin'}; # this places the bottom left of the barcode the left text margin distance to right of the left edge of the label ($self->{'llx'}) my $barcode_lly = ($self->{'lly'} + $self->{'height'}) - $self->{'top_text_margin'}; # this places the bottom left of the barcode the top text margin distance below the top of the label ($self->{'lly'}) my $barcode_width = 0.8 * $self->{'width'}; # this scales the barcode width to 80% of the label width my $barcode_y_scale_factor = 0.01 * $self->{'height'}; # this scales the barcode height to 10% of the label height diff --git a/C4/Record.pm b/C4/Record.pm index cecb6ed..e906850 100644 --- a/C4/Record.pm +++ b/C4/Record.pm @@ -398,7 +398,7 @@ sub marcrecord2csv { # Getting the marcfields as an array my @marcfieldsarray = split('\|', $marcfieldslist); - # Separating the marcfields from the the user-supplied headers + # Separating the marcfields from the user-supplied headers my @marcfields; foreach (@marcfieldsarray) { my @result = split('=', $_); diff --git a/INSTALL.opensuse b/INSTALL.opensuse index f80fe4b..b028fd3 100644 --- a/INSTALL.opensuse +++ b/INSTALL.opensuse @@ -802,7 +802,7 @@ XML::LibXML::SAX::Parser=HASH(0x8356e0c) == Install the Zebra package == Zebra is already in the standard repository of openSUSE 11.3, so it seems better to install it. -In the next chapter a question will be asked wether it is installed, so you better install it; no harm done. +In the next chapter a question will be asked whether it is installed, so you better install it; no harm done. Because you may need the documentation, that will also be installed. Note that the package name is idzebra. diff --git a/authorities/authorities.pl b/authorities/authorities.pl index 2f82f5a..23653f6 100755 --- a/authorities/authorities.pl +++ b/authorities/authorities.pl @@ -204,7 +204,7 @@ sub create_input { } elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) { - # opening plugin. Just check wether we are on a developper computer on a production one + # opening plugin. Just check whether we are on a developer computer on a production one # (the cgidir differs) my $cgidir = C4::Context->intranetdir . "/cgi-bin/cataloguing/value_builder"; unless (-r $cgidir and -d $cgidir) { diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl index 71d43d7..568007e 100755 --- a/cataloguing/addbiblio.pl +++ b/cataloguing/addbiblio.pl @@ -414,7 +414,7 @@ sub create_input { } elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) { - # opening plugin. Just check wether we are on a developper computer on a production one + # opening plugin. Just check whether we are on a developer computer on a production one # (the cgidir differs) my $cgidir = C4::Context->intranetdir . "/cgi-bin/cataloguing/value_builder"; unless ( opendir( DIR, "$cgidir" ) ) { diff --git a/cataloguing/plugin_launcher.pl b/cataloguing/plugin_launcher.pl index 9a264ab..f3ef3e8 100755 --- a/cataloguing/plugin_launcher.pl +++ b/cataloguing/plugin_launcher.pl @@ -27,7 +27,7 @@ use C4::Output; my $input = new CGI; my $plugin_name="cataloguing/value_builder/".$input->param("plugin_name"); -# opening plugin. Just check wether we are on a developper computer on a production one +# opening plugin. Just check whether we are on a developer computer on a production one # (the cgidir differs) my $cgidir = C4::Context->intranetdir ."/cgi-bin"; my $vbdir = "$cgidir/cataloguing/value_builder"; diff --git a/etc/zebradb/ccl.properties b/etc/zebradb/ccl.properties index e427d5c..f93de96 100644 --- a/etc/zebradb/ccl.properties +++ b/etc/zebradb/ccl.properties @@ -831,7 +831,7 @@ Title-uniform-heading 1=Title-uniform-heading Title-uniform-see 1=Title-uniform-see Title-uniform-seealso 1=Title-uniform-seealso -#Authority-number Koha-Auth-Number The identifier of the the authority +#Authority-number Koha-Auth-Number The identifier of the authority # record, stored in 001 in the authority record, and $9/$0 in the # field that record is linked to in the bib record Authority-Number 1=Koha-Auth-Number diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 5287d9f..487f9b3 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1393,7 +1393,7 @@ CREATE TABLE `old_reserves` ( -- this table holds all holds/reserves that have b `cancellationdate` date default NULL, -- the date this hold was cancelled `reservenotes` mediumtext, -- notes related to this hold `priority` smallint(6) default NULL, -- where in the queue the patron sits - `found` varchar(1) default NULL, -- a one letter code defining what the the status is of the hold is after it has been confirmed + `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library @@ -1568,7 +1568,7 @@ CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha `cancellationdate` date default NULL, -- the date this hold was cancelled `reservenotes` mediumtext, -- notes related to this hold `priority` smallint(6) default NULL, -- where in the queue the patron sits - `found` varchar(1) default NULL, -- a one letter code defining what the the status is of the hold is after it has been confirmed + `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library diff --git a/installer/install.pl b/installer/install.pl index ae478b6..f95eee3 100755 --- a/installer/install.pl +++ b/installer/install.pl @@ -330,7 +330,7 @@ elsif ( $step && $step == 3 ) { } else { # - # check wether it's a 1st install or an update + # check whether it's a 1st install or an update # #Check if there are enough tables. # Paul has cleaned up tables so reduced the count diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/acq.js b/koha-tmpl/intranet-tmpl/prog/en/js/acq.js index e6d2315..b137f59 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/acq.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/acq.js @@ -76,14 +76,14 @@ DDApp = { if (uls[i].className == "draglist" || uls[i].className == "draglist_alt") { ddtarget = YAHOO.util.DragDropMgr.getDDById(uls[i].id); // The yahoo drag and drop is written (broken or not) in such a way, that if an element is subscribed as a target multiple times, -// it has to be unlinked multiple times, so we need to test wether it is allready a target, otherwise we'll have a problem when closing the group +// it has to be unlinked multiple times, so we need to test whether it is allready a target, otherwise we'll have a problem when closing the group if( ! ddtarget ) { new YAHOO.util.DDTarget(uls[i].id); } var children = uls[i].getElementsByTagName('li'); for( j=0; j *

* This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI. - * The configuration object expects the the following case-sensitive properties, with the "strings" property being a nested object. + * The configuration object expects the following case-sensitive properties, with the "strings" property being a nested object. * Any properties which are not provided will use the default values (defined in the CalendarNavigator class). *

*
diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/calendar/calendar.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/calendar/calendar.js index d6e2016..e52f2af 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/calendar/calendar.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/calendar/calendar.js @@ -2436,7 +2436,7 @@ Calendar.prototype = { *

*

* This property can also be set to an object literal containing configuration properties for the CalendarNavigator UI. - * The configuration object expects the the following case-sensitive properties, with the "strings" property being a nested object. + * The configuration object expects the following case-sensitive properties, with the "strings" property being a nested object. * Any properties which are not provided will use the default values (defined in the CalendarNavigator class). *

*
diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop-debug.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop-debug.js index 9b634a5..2c3ae43 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop-debug.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop-debug.js @@ -245,7 +245,7 @@ YAHOO.util.DragDropMgr = function() { locked: false, /** - * Provides additional information about the the current set of + * Provides additional information about the current set of * interactions. Can be accessed from the event handlers. It * contains the following properties: * diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop.js index 9004749..af5f0cd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/dragdrop/dragdrop.js @@ -241,7 +241,7 @@ YAHOO.util.DragDropMgr = function() { locked: false, /** - * Provides additional information about the the current set of + * Provides additional information about the current set of * interactions. Can be accessed from the event handlers. It * contains the following properties: * diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor-debug.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor-debug.js index 5df0ce7..d4ba08f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor-debug.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor-debug.js @@ -953,7 +953,7 @@ var Dom = YAHOO.util.Dom, /** * @attribute collapse - * @description Boolean indicating if the the titlebar should have a collapse button. + * @description Boolean indicating if the titlebar should have a collapse button. * The collapse button will not remove the toolbar, it will minimize it to the titlebar * @default false * @type Boolean diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor.js index 76a4788..f967f7e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/editor.js @@ -944,7 +944,7 @@ var Dom = YAHOO.util.Dom, /** * @attribute collapse - * @description Boolean indicating if the the titlebar should have a collapse button. + * @description Boolean indicating if the titlebar should have a collapse button. * The collapse button will not remove the toolbar, it will minimize it to the titlebar * @default false * @type Boolean diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor-debug.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor-debug.js index a78a927..f24d180 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor-debug.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor-debug.js @@ -953,7 +953,7 @@ var Dom = YAHOO.util.Dom, /** * @attribute collapse - * @description Boolean indicating if the the titlebar should have a collapse button. + * @description Boolean indicating if the titlebar should have a collapse button. * The collapse button will not remove the toolbar, it will minimize it to the titlebar * @default false * @type Boolean diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor.js index e7a1b49..f59b1e5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/editor/simpleeditor.js @@ -944,7 +944,7 @@ var Dom = YAHOO.util.Dom, /** * @attribute collapse - * @description Boolean indicating if the the titlebar should have a collapse button. + * @description Boolean indicating if the titlebar should have a collapse button. * The collapse button will not remove the toolbar, it will minimize it to the titlebar * @default false * @type Boolean diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get-debug.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get-debug.js index ed87982..86f911a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get-debug.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get-debug.js @@ -562,7 +562,7 @@ YAHOO.util.Get = function() { TIMEOUT: 2000, /** - * Called by the the helper for detecting script load in Safari + * Called by the helper for detecting script load in Safari * @method _finalize * @param id {string} the transaction id * @private diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get.js index 88bb7e1..3693baf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/get/get.js @@ -549,7 +549,7 @@ YAHOO.util.Get = function() { TIMEOUT: 2000, /** - * Called by the the helper for detecting script load in Safari + * Called by the helper for detecting script load in Safari * @method _finalize * @param id {string} the transaction id * @private diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu-debug.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu-debug.js index 0d06a87..3340a61 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu-debug.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu-debug.js @@ -2385,7 +2385,7 @@ _subscribeToItemEvents: function (p_oItem) { /** * @method _onVisibleChange -* @description Change event handler for the the menu's "visible" configuration +* @description Change event handler for the menu's "visible" configuration * property. * @private * @param {String} p_sType String representing the name of the event that @@ -4852,7 +4852,7 @@ _setScrollHeight: function (p_nScrollHeight) { /* - Only clear the the "width" configuration property if it was set the + Only clear the "width" configuration property if it was set the "_setScrollHeight" method and wasn't changed by some other means after it was set. */ diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu.js index ffb22c6..93dc88d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/menu/menu.js @@ -2350,7 +2350,7 @@ _subscribeToItemEvents: function (p_oItem) { /** * @method _onVisibleChange -* @description Change event handler for the the menu's "visible" configuration +* @description Change event handler for the menu's "visible" configuration * property. * @private * @param {String} p_sType String representing the name of the event that @@ -4811,7 +4811,7 @@ _setScrollHeight: function (p_nScrollHeight) { /* - Only clear the the "width" configuration property if it was set the + Only clear the "width" configuration property if it was set the "_setScrollHeight" method and wasn't changed by some other means after it was set. */ diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo-debug.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo-debug.js index 949f1f3..5787e2e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo-debug.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo-debug.js @@ -128,7 +128,7 @@ YAHOO.namespace = function() { * @param {String} cat The log category for the message. Default * categories are "info", "warn", "error", time". * Custom categories can be used as well. (opt) - * @param {String} src The source of the the message (opt) + * @param {String} src The source of the message (opt) * @return {Boolean} True if the log operation was successful. */ YAHOO.log = function(msg, cat, src) { diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo.js index 949f1f3..5787e2e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yahoo/yahoo.js @@ -128,7 +128,7 @@ YAHOO.namespace = function() { * @param {String} cat The log category for the message. Default * categories are "info", "warn", "error", time". * Custom categories can be used as well. (opt) - * @param {String} src The source of the the message (opt) + * @param {String} src The source of the message (opt) * @return {Boolean} True if the log operation was successful. */ YAHOO.log = function(msg, cat, src) { diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader-debug.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader-debug.js index 8440410..2672c60 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader-debug.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader-debug.js @@ -128,7 +128,7 @@ YAHOO.namespace = function() { * @param {String} cat The log category for the message. Default * categories are "info", "warn", "error", time". * Custom categories can be used as well. (opt) - * @param {String} src The source of the the message (opt) + * @param {String} src The source of the message (opt) * @return {Boolean} True if the log operation was successful. */ YAHOO.log = function(msg, cat, src) { @@ -1618,7 +1618,7 @@ YAHOO.util.Get = function() { TIMEOUT: 2000, /** - * Called by the the helper for detecting script load in Safari + * Called by the helper for detecting script load in Safari * @method _finalize * @param id {string} the transaction id * @private @@ -2462,7 +2462,7 @@ YAHOO.register("get", YAHOO.util.Get, {version: "2.8.0r4", build: "2449"}); this.comboBase = YUI.info.comboBase; /** - * If configured, YUI will use the the combo handler on the + * If configured, YUI will use the combo handler on the * Yahoo! CDN to pontentially reduce the number of http requests * required. * @property combine diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader.js b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader.js index 8440410..2672c60 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader.js +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/yui/yuiloader/yuiloader.js @@ -128,7 +128,7 @@ YAHOO.namespace = function() { * @param {String} cat The log category for the message. Default * categories are "info", "warn", "error", time". * Custom categories can be used as well. (opt) - * @param {String} src The source of the the message (opt) + * @param {String} src The source of the message (opt) * @return {Boolean} True if the log operation was successful. */ YAHOO.log = function(msg, cat, src) { @@ -1618,7 +1618,7 @@ YAHOO.util.Get = function() { TIMEOUT: 2000, /** - * Called by the the helper for detecting script load in Safari + * Called by the helper for detecting script load in Safari * @method _finalize * @param id {string} the transaction id * @private @@ -2462,7 +2462,7 @@ YAHOO.register("get", YAHOO.util.Get, {version: "2.8.0r4", build: "2449"}); this.comboBase = YUI.info.comboBase; /** - * If configured, YUI will use the the combo handler on the + * If configured, YUI will use the combo handler on the * Yahoo! CDN to pontentially reduce the number of http requests * required. * @property combine diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt index 54bd3f7..c31d1d6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/manage-marc-import.tt @@ -40,7 +40,7 @@ -

See the full documentation for the the Managing Staged MARC Records in the manual (online).

+

See the full documentation for the Managing Staged MARC Records in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt index 65e5a85..a1cb85b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/overduerules.tt @@ -41,7 +41,7 @@

Sincerely, Library Staff

-

See the full documentation for the the Overdue Notice/Status Triggers in the manual (online).

+

See the full documentation for the Overdue Notice/Status Triggers in the manual (online).

[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt index a1e70de..e81d72d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/picture-upload.tt @@ -20,6 +20,6 @@

Important: There is a limit of 520K on the size of the picture uploaded and it is recommended that the image be 200x300 pixels, but smaller images will work as well.

-

See the full documentation for the the Patron Image Uploader in the manual (online).

+

See the full documentation for the Patron Image Uploader in the manual (online).

-[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file +[% INCLUDE 'help-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt index 55537b4..4626c21 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/scheduler.tt @@ -23,6 +23,6 @@

Task scheduler will not work if the user the web server runs as doesn't have the permission to use it. To find out if the right user has the permissions necessary, check /etc/at.allow to see what users are in it. If you don't have that file, check etc/at.deny. If at.deny exists but is blank, then every user can use it. Talk to your system admin about adding the user to the right place to make the task scheduler work.

-

See the full documentation for the the Task Scheduler in the manual (online).

+

See the full documentation for the Task Scheduler in the manual (online).

-[% INCLUDE 'help-bottom.inc' %] \ No newline at end of file +[% INCLUDE 'help-bottom.inc' %] diff --git a/kohaversion.pl b/kohaversion.pl index d89c677..958185f 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -6,7 +6,7 @@ the kohaversion is divided in 4 parts : - #1 : the major number. 3 atm - - #2 : the functionnal release. 00 atm + - #2 : the functional release. 00 atm - #3 : the subnumber, moves only on a public release - #4 : the developer version. The 4th number is the database subversion. used by developers when the database changes. updatedatabase take care of the changes itself diff --git a/misc/migration_tools/build6xx.pl b/misc/migration_tools/build6xx.pl index 5c02f12..2c4bf2b 100755 --- a/misc/migration_tools/build6xx.pl +++ b/misc/migration_tools/build6xx.pl @@ -234,7 +234,7 @@ while (my ($bibid) = $sth->fetchrow) { } } if ($#x >4) { - # too many $x, not handled, warn the developper that tries to migrate + # too many $x, not handled, warn the developer that tries to migrate print "warning there is ".$#x.'$x values'; } } diff --git a/misc/release_notes/release_notes_200RC2.txt b/misc/release_notes/release_notes_200RC2.txt index 21fc394..aa6248e 100644 --- a/misc/release_notes/release_notes_200RC2.txt +++ b/misc/release_notes/release_notes_200RC2.txt @@ -6,7 +6,7 @@ If you want to adopt Koha, please do, but you're warned that this release candid If you test it and let us know about any we haven't seen yet, it will help us to fix them. The 2.0.x series version is "feature freezed". Only bugs or minor changes will be made in this branch. -The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developpers can already get 1st draft of a working z3950 server. +The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developers can already get 1st draft of a working z3950 server. INSTALLATION diff --git a/misc/release_notes/release_notes_200RC3.txt b/misc/release_notes/release_notes_200RC3.txt index 0560597..89c7387 100644 --- a/misc/release_notes/release_notes_200RC3.txt +++ b/misc/release_notes/release_notes_200RC3.txt @@ -6,7 +6,7 @@ If you want to adopt Koha, please do, but you're warned that this release candid If you test it and let us know about any we haven't seen yet, it will help us to fix them. The 2.0.x series version is "feature freezed". Only bugs or minor changes will be made in this branch. -The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developpers can already get 1st draft of a working z3950 server. +The koha team is already working on the 2.2.x version. In CVS (HEAD branch), developers can already get 1st draft of a working z3950 server. INSTALLATION diff --git a/misc/release_notes/release_notes_210.txt b/misc/release_notes/release_notes_210.txt index f810421..3610236 100644 --- a/misc/release_notes/release_notes_210.txt +++ b/misc/release_notes/release_notes_210.txt @@ -48,7 +48,7 @@ WHAT'S NEW 1 Auto installer **************** If you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. -A very usefull feature for developpers that want to install/uninstall Koha quite often. +A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. 2 Uninstaller @@ -102,7 +102,7 @@ Circulation has been heavily rewritten... You can define rules like : "up to 2 CDROM, up to 10 books, max 10 items". * circulation works now like this (internally) : - get borrower cardnumber & item number -- check "can book be issued". This sub (canbookbeissued) checks everything. For each problem, 2 arrays can be set up : MUSTCONFIRM and IMPOSSIBLE. MUSTCONFIRM entries needs a librarian confirmation before effective issuing. IMPOSSIBLE entries makes the issue impossible. It's now very easy to alter issuing rules for a given library (with a developper), as every test is heavily documented & in a single sub. +- check "can book be issued". This sub (canbookbeissued) checks everything. For each problem, 2 arrays can be set up : MUSTCONFIRM and IMPOSSIBLE. MUSTCONFIRM entries needs a librarian confirmation before effective issuing. IMPOSSIBLE entries makes the issue impossible. It's now very easy to alter issuing rules for a given library (with a developer), as every test is heavily documented & in a single sub. - if >=1 IMPOSSIBLE entry : issuing is impossible, show why. - if >=1 MUSTCONFIRM : show problems, and ask for confirmation. - if both are empty : issue. @@ -139,7 +139,7 @@ Should be used for MARC21 with some work. We need volunteers here. ============== HELP NEEDED ============== -We alway accept new developpers wanting to code or test features of the Roadmap. +We alway accept new developers wanting to code or test features of the Roadmap. We still can accept features not in the RoadMap if : - strongly supported/coded by someone. - compatible with other features. @@ -167,4 +167,4 @@ Frameworks have to be defined to be choosable at installation stage. The idea be Same as for MARC21 frameworks. Except we don't have authority structure for MARC21 (we have for UNIMARC in french, thanks to ENSMP) * provide ISBD for MARC21 -(ISBD for UNIMARC is being done, thanks to doXulting) \ No newline at end of file +(ISBD for UNIMARC is being done, thanks to doXulting) diff --git a/misc/release_notes/release_notes_211.txt b/misc/release_notes/release_notes_211.txt index 2d68bcf..20b996b 100644 --- a/misc/release_notes/release_notes_211.txt +++ b/misc/release_notes/release_notes_211.txt @@ -61,4 +61,4 @@ The next release will probably be 2.2RC1. It should contains : * bugfixes. * some new code for a better LDAP handling (automatic creation of the borrower if it does not exist, getting informations from LDAP directory) -* a barcode generator ! it's a new feature that should be commited by a new developper coming from south america (argentina). I've seen the code, it's clean & nice. Just a new dependencay, for PDF generating. Should be non mandatory for ppl that don't want to print barcodes. +* a barcode generator ! it's a new feature that should be commited by a new developer coming from south america (argentina). I've seen the code, it's clean & nice. Just a new dependencay, for PDF generating. Should be non mandatory for ppl that don't want to print barcodes. diff --git a/misc/release_notes/release_notes_220.txt b/misc/release_notes/release_notes_220.txt index 3b95480..5677f2d 100644 --- a/misc/release_notes/release_notes_220.txt +++ b/misc/release_notes/release_notes_220.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). @@ -196,7 +196,7 @@ General : * (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed. * Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product. * Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package ! -* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. +* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. * Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform. * mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied) * Nelsonville have shared their templates. They are available as NPL theme. diff --git a/misc/release_notes/release_notes_221.txt b/misc/release_notes/release_notes_221.txt index 06ceb19..24afbb7 100644 --- a/misc/release_notes/release_notes_221.txt +++ b/misc/release_notes/release_notes_221.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). @@ -215,7 +215,7 @@ General : * (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed. * Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product. * Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package ! -* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. +* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. * Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform. * mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied) * Nelsonville have shared their templates. They are available as NPL theme. diff --git a/misc/release_notes/release_notes_222.txt b/misc/release_notes/release_notes_222.txt index 0522389..6b11e75 100644 --- a/misc/release_notes/release_notes_222.txt +++ b/misc/release_notes/release_notes_222.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). @@ -361,7 +361,7 @@ General : * (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed. * Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product. * Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package ! -* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. +* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. * Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform. * mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied) * Nelsonville have shared their templates. They are available as NPL theme. diff --git a/misc/release_notes/release_notes_223.txt b/misc/release_notes/release_notes_223.txt index 6eb7311..5ecc63e 100644 --- a/misc/release_notes/release_notes_223.txt +++ b/misc/release_notes/release_notes_223.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). @@ -408,7 +408,7 @@ General : * (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed. * Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product. * Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package ! -* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. +* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. * Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform. * mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied) * Nelsonville have shared their templates. They are available as NPL theme. diff --git a/misc/release_notes/release_notes_22RC1.txt b/misc/release_notes/release_notes_22RC1.txt index 2b6cc5f..bdbfa15 100644 --- a/misc/release_notes/release_notes_22RC1.txt +++ b/misc/release_notes/release_notes_22RC1.txt @@ -5,7 +5,7 @@ Welcome to the 1st Release Candidate of the 2.2 version of Koha. Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators !). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators !). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). diff --git a/misc/release_notes/release_notes_22RC2.txt b/misc/release_notes/release_notes_22RC2.txt index 162630a..8484c5c 100644 --- a/misc/release_notes/release_notes_22RC2.txt +++ b/misc/release_notes/release_notes_22RC2.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators !). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators !). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). diff --git a/misc/release_notes/release_notes_22RC3.txt b/misc/release_notes/release_notes_22RC3.txt index 2c9aa08..4121fb1 100644 --- a/misc/release_notes/release_notes_22RC3.txt +++ b/misc/release_notes/release_notes_22RC3.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators !). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators !). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). diff --git a/misc/release_notes/release_notes_22RC4.txt b/misc/release_notes/release_notes_22RC4.txt index 3608697..7db7665 100644 --- a/misc/release_notes/release_notes_22RC4.txt +++ b/misc/release_notes/release_notes_22RC4.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). diff --git a/misc/release_notes/release_notes_22RC5.txt b/misc/release_notes/release_notes_22RC5.txt index 6f5009d..8a6ac1e 100644 --- a/misc/release_notes/release_notes_22RC5.txt +++ b/misc/release_notes/release_notes_22RC5.txt @@ -4,7 +4,7 @@ RELEASE NOTES Koha is the 1st Open-Source Integrated Library System. Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. -Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators). +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developers (excluding translators). With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). -- 1.7.3