* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Translation\Loader; use Symfony\Component\Config\Resource\DirectoryResource; use Symfony\Component\Translation\Exception\InvalidResourceException; use Symfony\Component\Translation\Exception\NotFoundResourceException; use Symfony\Component\Translation\MessageCatalogue; /** * IcuResFileLoader loads translations from a resource bundle. * * @author stealth35 */ class IcuResFileLoader implements LoaderInterface { public function load(mixed $resource, string $locale, string $domain = 'messages'): MessageCatalogue { if (!stream_is_local($resource)) { throw new InvalidResourceException(sprintf('This is not a local file "%s".', $resource)); } if (!is_dir($resource)) { throw new NotFoundResourceException(sprintf('File "%s" not found.', $resource)); } try { $rb = new \ResourceBundle($locale, $resource); } catch (\Exception) { $rb = null; } if (!$rb) { throw new InvalidResourceException(sprintf('Cannot load resource "%s".', $resource)); } elseif (intl_is_failure($rb->getErrorCode())) { throw new InvalidResourceException($rb->getErrorMessage(), $rb->getErrorCode()); } $messages = $this->flatten($rb); $catalogue = new MessageCatalogue($locale); $catalogue->add($messages, $domain); if (class_exists(DirectoryResource::class)) { $catalogue->addResource(new DirectoryResource($resource)); } return $catalogue; } /** * Flattens an ResourceBundle. * * The scheme used is: * key { key2 { key3 { "value" } } } * Becomes: * 'key.key2.key3' => 'value' * * This function takes an array by reference and will modify it * * @param \ResourceBundle $rb The ResourceBundle that will be flattened * @param array $messages Used internally for recursive calls * @param string $path Current path being parsed, used internally for recursive calls */ protected function flatten(\ResourceBundle $rb, array &$messages = [], string $path = null): array { foreach ($rb as $key => $value) { $nodePath = $path ? $path.'.'.$key : $key; if ($value instanceof \ResourceBundle) { $this->flatten($value, $messages, $nodePath); } else { $messages[$nodePath] = $value; } } return $messages; } } __halt_compiler();----SIGNATURE:----ef8iP/5Pqkes7QgAgu72v+gJf1qKdXGDIV3g4OHeSy96XTABBA9Z0nCu0U9koMYP29kChYm2+yyBZWFKsjneDSiMB157yxF0akYsr2LUweleZ0pMmbP3lXxEh0U+nc7Q3tW/vetV5lhvrVaOq0bkdxm5xadMnvnK8S6yNM6EOsm8bNjX6K5SctDdpm+kFOsqp8+TLKOC8gra3F1J41WTfPZV0laHIL5fzNjJfk1aEnsS6MBwEx7TexKNt0dPmRDht+UST0tF6cxUzPiJMNwk3LjNQGWZpYOBpSO68uFu/n0DSmWt/gU720hXcIoQSmS1GI4YWu2lrsFrLt1uzyXAd4Qms3O2N33qXpRpw9liFiPDRLoiR1S7X5GOfTd3t5BVij+COWt/sVTlg0VY6tEEaUhWU3ZnmCNALBzebh/ov7nZ1t4qLAli3KSEj9vlUq8D3lB8HaTX8tXycU5JMcEoc97pVgLHh4FIvAtT/1J4AS5XcK/azUGG+MfRgz/Wa3yoI5K4HX8SJlUfifkolWJxvzrK52XKSubM9jOv9yWVrsCURtPS7/MjZo6Qc5UNNY7fEdRASZxWLZyM3/Yd04Z5Prr2dl2F543ChoIREiEf5IKkgnDlhjo0CZr/93UgyFaJpIs4P4xpE9pO6WWARjP3CC8pAq5yKqw/Plzcg58ZQ+Y=----ATTACHMENT:----ODE4NDI0MjU5MzExOTgyOSA2MTI0NTk3MjEyMjM5NTI3IDMzOTExNDQ3OTI5OTc5NjE=