當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。