mirror of
https://github.com/standardebooks/web.git
synced 2025-07-18 12:26:39 -04:00
24 lines
400 B
PHP
24 lines
400 B
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Nette Framework (https://nette.org)
|
|
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
|
|
*/
|
|
|
|
namespace Nette\Localization;
|
|
|
|
|
|
/**
|
|
* Translator adapter.
|
|
*/
|
|
interface ITranslator
|
|
{
|
|
|
|
/**
|
|
* Translates the given string.
|
|
* @param mixed message
|
|
* @param int plural count
|
|
* @return string
|
|
*/
|
|
function translate($message, $count = null);
|
|
}
|