summaryrefslogtreecommitdiffstats
path: root/vendor/simshaun/recurr/src/Recurr/Transformer/Translator.php
blob: cf3cb2af545ce8426b4d189b49f6eca8ba2fada2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

namespace Recurr\Transformer;

class Translator implements TranslatorInterface
{
    protected $data = array();

    public function __construct($locale = 'en', $fallbackLocale = 'en')
    {
        $this->loadLocale($fallbackLocale);
        if ($locale !== $fallbackLocale) {
            $this->loadLocale($locale);
        }
    }

    public function loadLocale($locale, $path = null)
    {
        if (!$path) {
            $path = __DIR__ . '/../../../translations/' . $locale . '.php';
        }
        if (!file_exists($path)) {
            throw new \InvalidArgumentException('Locale '.$locale.' could not be found in '.$path);
        }

        $this->data = array_merge($this->data, include $path);
    }

    public function trans($string, array $params = array())
    {
        $res = $this->data[$string];
        if (is_object($res) && is_callable($res)) {
            $res = $res($string, $params);
        }

        foreach ($params as $key => $val) {
            $res = str_replace('%' . $key . '%', $val, $res);
        }

        return $res;
    }
}