summaryrefslogtreecommitdiff
path: root/lib/XXV/OUTPUT/Html.pm
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2007-09-15 12:44:26 +0000
committerAndreas Brachold <vdr07@deltab.de>2007-09-15 12:44:26 +0000
commitd37dd0897cb0968eea008e9700ded68d15a7fd93 (patch)
tree3fe2e0212710ffe453d838aa9237c385cc0d7e0e /lib/XXV/OUTPUT/Html.pm
parentb3afe1bf2625101e8db9400d15f272c2e454b1b5 (diff)
downloadxxv-d37dd0897cb0968eea008e9700ded68d15a7fd93.tar.gz
xxv-d37dd0897cb0968eea008e9700ded68d15a7fd93.tar.bz2
* RECORDS: generation of previews if recording name contain some special character
CHANNELS: Store full frequency Fix some typo
Diffstat (limited to 'lib/XXV/OUTPUT/Html.pm')
-rw-r--r--lib/XXV/OUTPUT/Html.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/XXV/OUTPUT/Html.pm b/lib/XXV/OUTPUT/Html.pm
index efd36c7..a3189ed 100644
--- a/lib/XXV/OUTPUT/Html.pm
+++ b/lib/XXV/OUTPUT/Html.pm
@@ -65,7 +65,7 @@ sub new {
# Try to use the Requirments
map {
eval "use $_";
- return panic("\nCan not load Module: $_\nPlease install this module on your System:\nperl -MCPAN -e 'install $_'") if($@);
+ return panic("\nCouldn't load modul: $_\nPlease install this modul on your system:\nperl -MCPAN -e 'install $_'") if($@);
} keys %{$self->{MOD}->{Prereq}};
$self->{handle} = $attr{'-handle'}
@@ -458,7 +458,7 @@ sub status404 {
$file =~ s/$obj->{htmdir}\///g; # Don't post html root, avoid spy out
- $obj->statusmsg(404,sprintf(gettext("Cannot open file '%s' : %s!"),$file,$why),
+ $obj->statusmsg(404,sprintf(gettext("Couldn't open file '%s' : %s!"),$file,$why),
gettext("Not found"));
}
@@ -642,7 +642,7 @@ sub datei {
my $child = fork();
if ($child < 0) {
- error("Can't create process for streaming : " . $!);
+ error("Couldn't create process for streaming : " . $!);
return $obj->status404($file,$!);
}
elsif ($child > 0) {