From 7bdfe074c356cb069719eea4c61760aa7aa72cab Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Mon, 3 Jun 2013 08:43:11 -0300 Subject: [PATCH 1/5] typo fixes --- lib/Time/Zone.pm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/Time/Zone.pm b/lib/Time/Zone.pm index 8a40f91..a5fe722 100644 --- a/lib/Time/Zone.pm +++ b/lib/Time/Zone.pm @@ -1,4 +1,3 @@ - package Time::Zone; =head1 NAME @@ -20,10 +19,10 @@ Time::Zone -- miscellaneous timezone manipulations routines This is a collection of miscellaneous timezone manipulation routines. C parses the TZ environment variable and returns a timezone -string suitable for inclusion in L-like output. It opionally takes +string suitable for inclusion in L-like output. It optionally takes a timezone string, a time, and a is-dst flag. -C determins the offset from GMT time in seconds. It +C determines the offset from GMT time in seconds. It only does the calculation once. C determines the offset from GMT in seconds of a specified @@ -132,7 +131,7 @@ sub calc_off } elsif ($l[7] == $g[7] - 1) { $off -= 86400; } elsif ($l[7] < $g[7]) { - # crossed over a year boundry! + # crossed over a year boundary! # localtime is beginning of year, gmt is end # therefore local is ahead $off += 86400; From 506512837458997baeb8854f105bb093e81d5b89 Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Mon, 3 Jun 2013 07:46:33 -0400 Subject: [PATCH 2/5] typo fixes --- lib/Date/Format.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Date/Format.pm b/lib/Date/Format.pm index 3a1ea90..eb86696 100644 --- a/lib/Date/Format.pm +++ b/lib/Date/Format.pm @@ -169,7 +169,7 @@ sub wkyr { } ## -## these 6 formatting routins need to be *copied* into the language +## these 6 formatting routines need to be *copied* into the language ## specific packages ## @@ -269,7 +269,7 @@ __END__ =head1 NAME -Date::Format - Date formating subroutines +Date::Format - Date formatting subroutines =head1 SYNOPSIS @@ -322,7 +322,7 @@ conversion specification C<"%a %b %e %T %Y\n"> =head1 MULTI-LANGUAGE SUPPORT -Date::Format is capable of formating into several languages by creating +Date::Format is capable of formatting into several languages by creating a language specific object and calling methods, see L my $lang = Date::Language->new('German'); From acf1473e30a4480df83f053f3fc8674d37c7152a Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Mon, 3 Jun 2013 08:47:43 -0300 Subject: [PATCH 3/5] typo fixes --- lib/Date/Language.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Date/Language.pm b/lib/Date/Language.pm index 229a1c0..70f24d9 100644 --- a/lib/Date/Language.pm +++ b/lib/Date/Language.pm @@ -1,4 +1,3 @@ - package Date::Language; use strict; @@ -87,7 +86,7 @@ __END__ =head1 NAME -Date::Language - Language specific date formating and parsing +Date::Language - Language specific date formatting and parsing =head1 SYNOPSIS From d16f72311373c99f666f87b4d6533a043a089b66 Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Mon, 3 Jun 2013 08:49:16 -0300 Subject: [PATCH 4/5] typo fix --- lib/Date/Language/Greek.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Date/Language/Greek.pm b/lib/Date/Language/Greek.pm index 00f917c..b37383f 100644 --- a/lib/Date/Language/Greek.pm +++ b/lib/Date/Language/Greek.pm @@ -4,7 +4,7 @@ ## Traditional date format is: DoW DD{eta} MoY Year (%A %o %B %Y) ## ## Matthew Musgrove -## Translations gratiously provided by Menelaos Stamatelos +## Translations graciously provided by Menelaos Stamatelos ## This module returns unicode (utf8) encoded characters. You will need to ## take the necessary steps for this to display correctly. ## From edc02b535ac58e34e990068f71ac2cebc8de80ef Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Mon, 3 Jun 2013 08:50:43 -0300 Subject: [PATCH 5/5] typo fix --- lib/Date/Language/Hungarian.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Date/Language/Hungarian.pm b/lib/Date/Language/Hungarian.pm index d9c838d..d1401f3 100644 --- a/lib/Date/Language/Hungarian.pm +++ b/lib/Date/Language/Hungarian.pm @@ -5,7 +5,7 @@ # This is a just-because-I-stumbled-across-it # -and-my-wife-is-Hungarian release: if Graham or # someone adds to docs to Date::Format, I'd be -# glad to correct bugs and extend as neeed. +# glad to correct bugs and extend as needed. # package Date::Language::Hungarian; @@ -50,9 +50,9 @@ use base "Date::Language"; use vars qw( @DoW @DoWs @MoY @MoYs @AMPM @Dsuf %MoY %DoW $VERSION); $VERSION = "1.01"; -@DoW = qw(Vasárnap Hétfõ Kedd Szerda Csütörtök Péntek Szombat); -@MoY = qw(Január Február Március Április Május Június - Július Augusztus Szeptember Október November December); +@DoW = qw(Vas�rnap H�tf� Kedd Szerda Cs�t�rt�k P�ntek Szombat); +@MoY = qw(Janu�r Febru�r M�rcius �prilis M�jus J�nius + J�lius Augusztus Szeptember Okt�ber November December); @DoWs = map { substr($_,0,3) } @DoW; @MoYs = map { substr($_,0,3) } @MoY; @AMPM = qw(DE. DU.);