當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript I18nService.t方法代碼示例

本文整理匯總了TypeScript中ng2-i18next/ng2-i18next.I18nService.t方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript I18nService.t方法的具體用法?TypeScript I18nService.t怎麽用?TypeScript I18nService.t使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ng2-i18next/ng2-i18next.I18nService的用法示例。


在下文中一共展示了I18nService.t方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: transform

 transform(value, arg) {
   if (value == null) {
     return null;
   }
   let section = arg.pop();
   let addEnd = (value[value.length - 1].pme_id !== section.pme_id);
   let endPos = value.length + 1;
   let ret =
       value
           .filter(
               elt => (section.pme_id !== elt.pme_id && section.pme_order !== elt.pme_order - 1))
           .map(elt => {
             elt.pme_name = this.i18n.t('portal.move.before_something', {what: elt.pme_name});
             return elt;
           });
   if (addEnd) {
     ret.push({pme_name: this.i18n.t('portal.move.at_the_end'), pme_order: endPos});
   }
   return ret;
 }
開發者ID:feloy,項目名稱:var,代碼行數:20,代碼來源:pme-move.ts

示例2:

 .map(elt => {
   elt.pme_name = this.i18n.t('portal.move.before_something', {what: elt.pme_name});
   return elt;
 });
開發者ID:feloy,項目名稱:var,代碼行數:4,代碼來源:pme-move.ts

示例3:

 .catch(error => { this.errormsg = this.i18n.t('auth.autherror'); });
開發者ID:feloy,項目名稱:var,代碼行數:1,代碼來源:login.ts

示例4:

 .catch(err => {
   this.alerts.danger(this.i18n.t('portal.alerts.error_loading_mainview_elements'));
 });
開發者ID:feloy,項目名稱:var,代碼行數:3,代碼來源:mainview.ts


注:本文中的ng2-i18next/ng2-i18next.I18nService.t方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。