Restructure repository
[scuttle] / includes / php-gettext / examples / index.php
1 <html>
2 <head>
3 <title>PHP-gettext examples</title>
4 </head>
5 <body>
6 <h1>PHP-gettext</h1>
7
8 <h2>Introduction</h2>
9 <p>PHP-gettext provides a simple gettext replacement that works independently from the system's gettext abilities.
10 It can read MO files and use them for translating strings.</p>
11 <p>This version has the ability to cache all strings and translations to speed up the string lookup. 
12 While the cache is enabled by default, it can be switched off with the second parameter in the constructor (e.g. when using very large MO files 
13 that you don't want to keep in memory)</p>
14
15
16 <h2>Examples</h2>
17 <ul>
18         <li><a href="pigs_dropin.php">PHP-gettext as a dropin replacement</a></li>
19         <li><a href="pigs_fallback.php">PHP-gettext as a fallback solution</a></li>
20 </ul>
21
22 <hr />
23 <p>Copyright (c) 2003-2006 Danilo Segan</p>
24 <p>Copyright (c) 2005-2006 Steven Armstrong</p>
25
26 </body>
27 </html>

Benjamin Mako Hill || Want to submit a patch?