2017-02-02 14:05:33 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-02-02 14:05:33 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
|
2017-02-02 22:14:53 +00:00
|
|
|
use Pterodactyl\Extensions\PhraseAppTranslator;
|
2017-02-02 14:05:33 +00:00
|
|
|
use Illuminate\Translation\TranslationServiceProvider;
|
2017-02-02 22:14:53 +00:00
|
|
|
use Illuminate\Translation\Translator as IlluminateTranslator;
|
2017-02-02 14:05:33 +00:00
|
|
|
|
2017-02-02 23:08:10 +00:00
|
|
|
class PhraseAppTranslationProvider extends TranslationServiceProvider
|
|
|
|
{
|
2017-02-02 14:05:33 +00:00
|
|
|
/**
|
|
|
|
* Register the service provider.
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
|
|
|
$this->registerLoader();
|
|
|
|
|
|
|
|
$this->app->singleton('translator', function ($app) {
|
|
|
|
$loader = $app['translation.loader'];
|
|
|
|
|
|
|
|
// When registering the translator component, we'll need to set the default
|
|
|
|
// locale as well as the fallback locale. So, we'll grab the application
|
|
|
|
// configuration so we can easily get both of these values from there.
|
|
|
|
$locale = $app['config']['app.locale'];
|
|
|
|
|
2017-03-19 15:55:36 +00:00
|
|
|
if ($app['config']['pterodactyl.lang.in_context']) {
|
2017-02-02 22:14:53 +00:00
|
|
|
$trans = new PhraseAppTranslator($loader, $locale);
|
2017-02-02 14:05:33 +00:00
|
|
|
} else {
|
2017-02-02 22:14:53 +00:00
|
|
|
$trans = new IlluminateTranslator($loader, $locale);
|
2017-02-02 14:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$trans->setFallback($app['config']['app.fallback_locale']);
|
|
|
|
|
|
|
|
return $trans;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|