* 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)
namespace Nette\Localization;
namespace Nette\Localization;
* Translator adapter.
* Translator adapter.
interface ITranslator
interface ITranslator
* Translates the given string.
* Translates the given string.
* @param int plural count
function translate($message, $count = null);
function translate($message, ...$parameters): string;