Exception
1 year ago
Provider
1 year ago
Test
1 year ago
Util
1 year ago
DataCollectorTranslator.php
1 year ago
IdentityTranslator.php
1 year ago
LoggingTranslator.php
1 year ago
MessageCatalogue.php
1 year ago
MessageCatalogueInterface.php
1 year ago
MetadataAwareInterface.php
1 year ago
PseudoLocalizationTranslator.php
1 year ago
TranslatableMessage.php
1 year ago
Translator.php
1 year ago
TranslatorBag.php
1 year ago
TranslatorBagInterface.php
1 year ago
index.php
3 years ago
MessageCatalogueInterface.php
23 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Translation; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\Config\Resource\ResourceInterface; |
| 5 | interface MessageCatalogueInterface |
| 6 | { |
| 7 | public const INTL_DOMAIN_SUFFIX = '+intl-icu'; |
| 8 | public function getLocale(); |
| 9 | public function getDomains(); |
| 10 | public function all(?string $domain = null); |
| 11 | public function set(string $id, string $translation, string $domain = 'messages'); |
| 12 | public function has(string $id, string $domain = 'messages'); |
| 13 | public function defines(string $id, string $domain = 'messages'); |
| 14 | public function get(string $id, string $domain = 'messages'); |
| 15 | public function replace(array $messages, string $domain = 'messages'); |
| 16 | public function add(array $messages, string $domain = 'messages'); |
| 17 | public function addCatalogue(self $catalogue); |
| 18 | public function addFallbackCatalogue(self $catalogue); |
| 19 | public function getFallbackCatalogue(); |
| 20 | public function getResources(); |
| 21 | public function addResource(ResourceInterface $resource); |
| 22 | } |
| 23 |