Untitled diff
4 removals
Words removed | 18 |
Total words | 60 |
Words removed (%) | 30.00 |
25 lines
3 additions
Words added | 3 |
Total words | 45 |
Words added (%) | 6.67 |
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;
}
}