summaryrefslogtreecommitdiff
path: root/FS/FS/Maketext.pm
blob: b4a9b81c7a235d5ab90c2d88dc5e9c9e5962a8ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package FS::Maketext;
use base qw( Exporter );

use FS::CurrentUser;
use FS::Conf;
use FS::L10N;
use HTML::Entities qw( encode_entities );

our @EXPORT_OK = qw( mt emt js_mt );

our $lh;

our $locale;
#ask FS::UID to run this stuff for us later
FS::UID->install_callback( sub { 
  my $conf = new FS::Conf;
  $locale = $conf->config('locale');
});

sub mt {
  return '' if $_[0] eq '';
  $lh ||= lh();
  $lh->maketext(@_);
}

# HTML-escaped version of mt()
sub emt {
    encode_entities(mt(@_));
}

# Javascript-escaped version of mt()
sub js_mt {
  my $s = mt(@_);
  #false laziness w/Mason.pm
  $s =~ s/(['\\])/\\$1/g;
  $s =~ s/\r/\\r/g;
  $s =~ s/\n/\\n/g;
  $s = "'$s'";
}

sub lh {
  my $locale =  $FS::CurrentUser::CurrentUser->locale
             || $locale
             || 'en_US';
  $locale =~ s/_/-/g;
  FS::L10N->get_handle($locale) || die "Unknown locale $locale";
}

# XXX pod me

1;