Untitled diff

생성일 비교 결과 만료 없음
4 삭제
25
3 추가
24
<?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;
}
}