2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2004-03-29 14:27:13 +00:00
|
|
|
<!-- $Revision: 1.8 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/gettext.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.gettext">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>gettext</refname>
|
|
|
|
<refpurpose>Lookup a message in the current domain</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>gettext</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>message</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
This function returns a translated string if one is found in the
|
|
|
|
translation table, or the submitted message if not found. You may
|
2002-05-09 23:43:59 +00:00
|
|
|
use the underscore character '_' as an alias to this function.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
|
|
|
<example>
|
|
|
|
<title><function>gettext</function>-check</title>
|
2003-08-16 18:59:12 +00:00
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
// Set language to German
|
2004-03-29 14:27:13 +00:00
|
|
|
setlocale(LC_ALL, 'de_DE');
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
// Specify location of translation tables
|
2002-05-09 23:43:59 +00:00
|
|
|
bindtextdomain("myPHPApp", "./locale");
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
// Choose domain
|
2002-05-09 23:43:59 +00:00
|
|
|
textdomain("myPHPApp");
|
2002-04-15 00:12:54 +00:00
|
|
|
|
2004-03-29 14:27:13 +00:00
|
|
|
// Translation is looking for in ./locale/de_DE/LC_MESSAGES/myPHPApp.mo now
|
|
|
|
|
2002-04-15 00:12:54 +00:00
|
|
|
// Print a test message
|
2003-12-15 16:55:22 +00:00
|
|
|
echo gettext("Welcome to My PHP Application");
|
2002-05-09 23:43:59 +00:00
|
|
|
|
|
|
|
// Or use the alias _() for gettext()
|
2003-12-15 16:55:22 +00:00
|
|
|
echo _("Have a nice day");
|
2002-04-15 00:12:54 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
2004-03-26 08:42:19 +00:00
|
|
|
<para>
|
|
|
|
See also
|
|
|
|
<function>setlocale</function>.
|
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|