1: <?php
2:
3: /**
4: * This file is part of the Kdyby (http://www.kdyby.org)
5: *
6: * Copyright (c) 2008 Filip Procházka (filip@prochazka.su)
7: *
8: * For the full copyright and license information, please view the file license.txt that was distributed with this source code.
9: */
10:
11: namespace Kdyby\Translation;
12:
13: use Kdyby;
14: use Nette;
15:
16:
17:
18: /**
19: * @author Filip Procházka <filip@prochazka.su>
20: *
21: * @method translate($message, $count = NULL, $parameters = array(), $domain = NULL, $locale = NULL);
22: */
23: interface ITranslator extends Nette\Localization\ITranslator
24: {
25:
26: // function translate($message, $count = NULL, array $parameters = array(), $domain = NULL, $locale = NULL);
27:
28: }
29: