Untitled diff

Created Diff never expires
4 removals
25 lines
3 additions
24 lines
<?php
<?php


/**
/**
* This file is part of the Nette Framework (https://nette.org)
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
*/


declare(strict_types=1);

namespace Nette\Localization;
namespace Nette\Localization;




/**
/**
* Translator adapter.
* Translator adapter.
*/
*/
interface ITranslator
interface ITranslator
{
{


/**
/**
* Translates the given string.
* Translates the given string.
* @param mixed message
* @param int plural count
* @return string
*/
*/
function translate($message, $count = null);
function translate($message, ...$parameters): string;
}
}