| 
									
										
										
										
											2018-12-13 04:46:27 +08:00
										 |  |  | <?php namespace BookStack\Providers; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Translation\Translator; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TranslationServiceProvider extends \Illuminate\Translation\TranslationServiceProvider | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Register the service provider. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     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']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $trans = new Translator($loader, $locale); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $trans->setFallback($app['config']['app.fallback_locale']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return $trans; | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-27 18:29:23 +08:00
										 |  |  | } |