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


TypeScript aurelia-i18n.I18N類代碼示例

本文整理匯總了TypeScript中aurelia-i18n.I18N的典型用法代碼示例。如果您正苦於以下問題:TypeScript I18N類的具體用法?TypeScript I18N怎麽用?TypeScript I18N使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: toView

 /**
  * convert a Date-String into a localized representation
  * @param {number} value the value to convert
  * @param {"full" | "date" | "time"} mode  defaults to "full"
  * @returns {string} the localized representation or "" if the value could not be converted
  */
 public toView(value: string, mode: "full" | "date" | "time" = "full") {
   let ret = "";
   if (mode === "full") {
     ret = moment(value).format(this.t.tr("adapters.datetime_format"));
   } else if (mode === "date") {
     ret = moment(value).format(this.t.tr("adapters.date_format"));
   } else {
     ret = moment(value).format(this.t.tr("adapters.time_format"));
   }
   return ret ? (ret.startsWith("Invalid") ? "" : ret) : "";
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:17,代碼來源:date-format.ts

示例2: fromView

 public fromView(value: string, mode: "full" | "date" | "time" = "full") {
   switch (mode) {
     case "full":
       return moment(
         value,
         this.t.tr("adapters.datetime_format_parse")
       ).format();
     case "date":
       return moment(value, this.t.tr("adapters.date_format_parse")).format();
     case "time":
       return moment(value, this.t.tr("adapters.time_format_parse")).format();
     default:
       return moment(value).format();
   }
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:15,代碼來源:date-format.ts

示例3: toView

 public toView(num: number, mode: "cents"){
   const br = Math.round(num) / 100
   return this.i18.tr("billing.currency") + " " + br
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:4,代碼來源:number-format.ts

示例4: moment

 fromView(str) {
   return moment(str, this.i18.tr('adapters.time_format'))
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:3,代碼來源:moment-to-string.ts

示例5: toView

 toView(mom: moment.Moment) {
   mom = mom || moment()
   return mom.format(this.i18.tr('adapters.time_format'))
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:4,代碼來源:moment-to-string.ts

示例6: activate

 activate(model) {
   let translated = this.i18n.tr(model.key);
   let converter = new showdown.Converter({ extensions: ['targetblank'] });
   this.html = converter.makeHtml(translated);
 }
開發者ID:Thanood,項目名稱:monterey,代碼行數:5,代碼來源:markdown-tooltip.ts


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