| Current Path : /var/www/libraries/rokcommon/RokCommon/ |
| Current File : /var/www/libraries/rokcommon/RokCommon/I18N.php |
<?php
/**
* @version $Id: I18N.php 10831 2013-05-29 19:32:17Z btowles $
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2020 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
// No direct access
defined('ROKCOMMON') or die;
/**
*
*/
interface RokCommon_I18N
{
/**
* @abstract
* @param $string
* @return string
*/
public function translate($string);
/**
* @abstract
*
* @param $count
* @param $string
*
* @internal param $multistring
* @return string
*/
public function translatePlural($count, $string);
/**
* @abstract
* @param $string
* @param mixed Mixed number of arguments for the sprintf function.
* @return string
*/
public function translateFormatted($string);
/**
* @abstract
*
* @param $domain
* @param $path
* @return mixed
*/
public function loadLanguageFiles($domain, $path);
}