# packeta/1.6.0/deps/nette/utils/src/Translator.php

Packeta, version 1.6.0. 23 lines.

- Page: https://pluginprobe.com/plugins/packeta/1.6.0/code/deps/nette/utils/src/Translator.php
- Raw: https://pluginprobe.com/plugins/packeta/1.6.0/raw/deps/nette/utils/src/Translator.php
- Modified: 2023-08-30T08:36:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/1.6.0/code/deps/nette/utils/src/Translator.php#L10-L20`.

```php
<?php

/**
 * This file is part of the Nette Framework (https://nette.org)
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 */
declare (strict_types=1);
namespace Packetery\Nette\Localization;

/**
 * Translator adapter.
 */
interface Translator
{
    /**
     * Translates the given string.
     * @param  mixed  $message
     * @param  mixed  ...$parameters
     */
    function translate($message, ...$parameters) : string;
}
\interface_exists(ITranslator::class);

```
