1<?php 2 3/** 4 * This file is part of the Nette Framework (https://nette.org) 5 * Copyright (c) 2004 David Grudl (https://davidgrudl.com) 6 */ 7 8declare(strict_types=1); 9 10namespace Nette\Localization; 11 12 13/** 14 * Translator adapter. 15 */ 16interface Translator 17{ 18 /** 19 * Translates the given string. 20 */ 21 function translate(string|\Stringable $message, mixed ...$parameters): string|\Stringable; 22} 23 24 25interface_exists(ITranslator::class); 26