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:
8: namespace Nette\Localization;
9:
10:
11: /**
12: * Translator adapter.
13: */
14: interface ITranslator
15: {
16:
17: /**
18: * Translates the given string.
19: * @param string message
20: * @param int plural count
21: * @return string
22: */
23: function translate($message, $count = NULL);
24:
25: }
26: