当前位置: 首页>>代码示例>>PHP>>正文


PHP Translator::setLocale方法代码示例

本文整理汇总了PHP中Illuminate\Translation\Translator::setLocale方法的典型用法代码示例。如果您正苦于以下问题:PHP Translator::setLocale方法的具体用法?PHP Translator::setLocale怎么用?PHP Translator::setLocale使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Illuminate\Translation\Translator的用法示例。


在下文中一共展示了Translator::setLocale方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: test_jalali_after_or_before_replacer_is_applied_with_date

 public function test_jalali_after_or_before_replacer_is_applied_with_date()
 {
     $this->translator->setLocale('fa');
     $faNow = '۱۳۹۴/۹/۱۴';
     $validator = $this->factory->make(['birth_date' => 'garbage'], ['birth_date' => "required|jalali_after:{$faNow}|jalali_before:{$faNow}"]);
     $this->assertTrue($validator->fails());
     $this->assertEquals(['birth_date' => ["تاریخ تولد وارد شده باید یک تاریخ شمسی معتبر بعد از {$faNow} باشد.", "تاریخ تولد وارد شده باید یک تاریخ شمسی معتبر قبل از {$faNow} باشد."]], $validator->messages()->toArray());
 }
开发者ID:halaei,项目名称:jalali,代码行数:8,代码来源:JalaliServiceProviderTest.php

示例2: getBody

 /**
  *    Return the HTML representation of the email to be sent.
  *
  *    @return string
  */
 public function getBody()
 {
     // Set the email's locale:
     $appLocale = $this->translator->getLocale();
     if ($this->locale && $this->locale != $appLocale) {
         $this->translator->setLocale($this->locale);
     }
     // Generate HTML:
     $html = $this->viewFactory->make($this->view, $this->data)->render();
     $css = $this->filesystem->get(base_path($this->cssFile));
     $inliner = new CssToInlineStyles($html, $css);
     $body = $inliner->convert();
     // Return App locale to former value:
     if ($this->locale && $this->locale != $appLocale) {
         $this->translator->setLocale($appLocale);
     }
     return $body;
 }
开发者ID:SerdarSanri,项目名称:mailman,代码行数:23,代码来源:Message.php

示例3: setLocale

 /**
  * Set the default locale.
  *
  * @param string $locale
  * @return void 
  * @static 
  */
 public static function setLocale($locale)
 {
     \Illuminate\Translation\Translator::setLocale($locale);
 }
开发者ID:satriashp,项目名称:tour,代码行数:11,代码来源:_ide_helper.php

示例4: testOtherLocale

 /**
  * test changing locale should fetch from other language file
  */
 public function testOtherLocale()
 {
     $this->trans->setLocale('nl');
     $this->assertEquals('postcode', $this->trans->get('inputs.postal-code'));
 }
开发者ID:winkbrace,项目名称:winkform,代码行数:8,代码来源:TranslatorTest.php

示例5: setLocale

 /**
  * {@inheritdoc}
  *
  * @param string $locale The locale
  *
  * @throws \InvalidArgumentException If the locale contains invalid characters
  *
  * @api
  */
 public function setLocale($locale)
 {
     return $this->lang->setLocale($locale);
 }
开发者ID:realholgi,项目名称:cmsable,代码行数:13,代码来源:Translator.php

示例6: getLocale

 /**
  * Get the default locale being used.
  *
  * @return string
  */
 public function getLocale()
 {
     if ($this->useCookies) {
         $locale = \Cookie::get($this->cookiePrefix . 'lang_locale', parent::getLocale());
         if ($locale != parent::getLocale()) {
             parent::setLocale($locale);
         }
     }
     return parent::getLocale();
 }
开发者ID:vsch,项目名称:laravel-translation-manager,代码行数:15,代码来源:Translator.php


注:本文中的Illuminate\Translation\Translator::setLocale方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。