From: Marc Balmer Date: Sun, 11 Dec 2011 18:00:14 +0000 (+0100) Subject: Bug 7356 - Fix various typos and mis-spellings X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=c9c6bbdea89e60dc6dc5019cdca512ba8eba4a38;hp=47b7b91d148faa62a8d0bb257bec2b3fa716d234;p=koha.git Bug 7356 - Fix various typos and mis-spellings Fix typos: the the -> the, wether -> whether, developper -> developer. http://bugs.koha-community.org/show_bug.cgi?id=7356 Signed-off-by: Owen Leonard Signed-off-by: Paul Poulain --- diff --git a/C4/Labels/Label.pm b/C4/Labels/Label.pm index 930e0f6ef4..0aec0a6d16 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 cecb6ed266..e9068507aa 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 f80fe4b9ba..b028fd350a 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 2f82f5a253..23653f6a94 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 71d43d7c63..568007edda 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 9a264ab161..f3ef3e863e 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 e427d5cb28..f93de961db 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 b2d0d392d4..4fd4106c20 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 1619f503f1..419273a684 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 e6d2315843..b137f59cb0 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