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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
<?php
/*
* Copyright (c) 2009 David Soria Parra
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
//require_once 'PHP.php';
//require_once 'Extension.php';
/**
* Gettext implementation in PHP
*
* @copyright (c) 2009 David Soria Parra <sn_@gmx.net>
* @author David Soria Parra <sn_@gmx.net>
*/
abstract class SpotGettext
{
private static $instance = null;
/**
* Return a translated string
*
* If the translation is not found, the original passed message
* will be returned.
*
* @param String $msg The message to translate
*
* @return Translated message
*/
public abstract function gettext($msg);
/**
* Overrides the domain for a single lookup
*
* If the translation is not found, the original passed message
* will be returned.
*
* @param String $domain The domain to search in
* @param String $msg The message to translate
*
* @return Translated message
*/
public abstract function dgettext($domain, $msg);
/**
* Return a translated string in it's plural form
*
* Returns the given $count (e.g second, third,...) plural form of the
* given string. If the id is not found and $num == 1 $msg is returned,
* otherwise $msg_plural
*
* @param String $msg The message to search for
* @param String $msg_plural A fallback plural form
* @param Integer $count Which plural form
*
* @return Translated string
*/
public abstract function ngettext($msg1, $msg2, $count);
/**
* Override the current domain for a single plural message lookup
*
* Returns the given $count (e.g second, third,...) plural form of the
* given string. If the id is not found and $num == 1 $msg is returned,
* otherwise $msg_plural
*
* @param String $domain The domain to search in
* @param String $msg The message to search for
* @param String $msg_plural A fallback plural form
* @param Integer $count Which plural form
*
* @return Translated string
*/
public abstract function dngettext($domain, $msg1, $msg2, $count);
/**
* Returns an instance of a gettext implementation depending on
* the capabilities of the PHP installation. If the gettext extension
* is loaded, we use the native gettext() bindings, otherwise we use
* an own implementation
*
* @param String $directory Directory to search the mo files in
* @param String $domain The current domain
* @param String $locale The local
*
* @return Gettext An instance of a Gettext implementation
*/
public static function getInstance($directory, $domain, $locale)
{
$key = $directory . $domain . $locale;
if (!isset(self::$instance[$key])) {
if (extension_loaded('gettext')) {
self::$instance[$key] = new Gettext_Extension($directory, $domain, $locale);
} else {
self::$instance[$key] = new Gettext_PHP($directory, $domain, $locale);
}
}
return self::$instance[$key];
}
}
|