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
|
;;;
;;; intl:gettext - Executing Shell commands
;;;
;;; Copyright (c) 2002-2003, Denis Barbier, All Rights Reserved.
;;;
<load module="intl:gettext" />
##EOF##
__END__
=head1 NAME
intl:gettext - message handling functions
=head1 SYNOPSIS
<use name="intl:gettext" />
<mp4h-l10n LC_MESSAGES="fr_FR" />
<textdomain domain="my_domain" />
<gettext>here is a message</gettext>
<gettext domain="other_domain">here is a message</gettext>
<bindtextdomain domain="my_domain" path="/usr/local/share/locale" />
<bind_textdomain_codeset domain="my_domain" codeset="ISO-8859-1" />
=head1 DESCRIPTION
This is an interface to the gettext functions.
=head1 AUTHOR
Denis Barbier
barbier@engelschall.com
=cut
|