From 17a19a3df2ca4105068d0ab83d6d884fc347f916 Mon Sep 17 00:00:00 2001
From: Marc Balmer <marc@msys.ch>
Date: Wed, 14 Dec 2011 09:26:01 +0100
Subject: [PATCH 2/4] Fix typo:  wether -> whether.

---
 INSTALL.opensuse                          |    2 +-
 authorities/authorities.pl                |    2 +-
 cataloguing/addbiblio.pl                  |    2 +-
 cataloguing/plugin_launcher.pl            |    2 +-
 installer/install.pl                      |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/js/acq.js |    4 ++--
 6 files changed, 7 insertions(+), 7 deletions(-)

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..1ba9122 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 developper 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..f69efea 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 developper 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..bbd3f1f 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 developper computer on a production one
 # (the cgidir differs)
 my $cgidir = C4::Context->intranetdir ."/cgi-bin";
 my $vbdir = "$cgidir/cataloguing/value_builder";
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<children.length; j=j+1) {
 // The yahoo drag and drop is (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
                 ddtarget = YAHOO.util.DragDropMgr.getDDById(children[j].id);
                 if( ! ddtarget ) {
                     new DDList(children[j].id);
-- 
1.7.2.5