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


TypeScript i18n.t函數代碼示例

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


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

示例1: getMenu

 getMenu() {
   let menu = [];
   menu.push({text: i18n.t('View'), click: 'ctrl.viewPanel(); dismiss();'});
   menu.push({text: i18n.t('Edit'), click: 'ctrl.editPanel(); dismiss();', role: 'Editor'});
   if (!this.fullscreen) { //  duplication is not supported in fullscreen mode
     menu.push({ text: i18n.t('Duplicate'), click: 'ctrl.duplicate()', role: 'Editor' });
   }
   // menu.push({text: 'Share', click: 'ctrl.sharePanel(); dismiss();'});
   return menu;
 }
開發者ID:YuhangGe,項目名稱:grafana,代碼行數:10,代碼來源:panel_ctrl.ts

示例2: removePanel

 removePanel() {
   this.publishAppEvent('confirm-modal', {
     title: i18n.t('Remove Panel'),
     text: i18n.t('Are you sure you want to remove this panel?'),
     icon: 'fa-trash',
     yesText: i18n.t('Remove'),
     onConfirm: () => {
       this.row.panels = _.without(this.row.panels, this.panel);
     }
   });
 }
開發者ID:YuhangGe,項目名稱:grafana,代碼行數:11,代碼來源:panel_ctrl.ts

示例3:

 dashboards.forEach(function (ds) {
   ds.title = ds.type === 'dash-json' ? i18n.t(ds.title) : ds.title;
   var m = {
     id: ds.id,
     text: ds.title,
     url: '/dashboard/' + ds.uri,
     icon: ds.icon
   };
   if (ds.type === 'dash-json') {
     defaultMenus.push(m);
   } else {
     customMenus.push(m);
   }
 });
開發者ID:YuhangGe,項目名稱:grafana,代碼行數:14,代碼來源:sidemenu.ts

示例4: onInitMetricsPanelEditMode

 private onInitMetricsPanelEditMode() {
   this.addEditorTab(i18n.t('Metrics'), 'public/app/partials/metrics.html');
   this.addEditorTab(i18n.t('Time range'), 'public/app/features/panel/partials/panelTime.html');
 }
開發者ID:YuhangGe,項目名稱:grafana,代碼行數:4,代碼來源:metrics_panel_ctrl.ts

示例5: initEditMode

 initEditMode() {
   this.editorTabs = [];
   this.addEditorTab(i18n.t('General'), 'public/app/partials/panelgeneral.html');
   this.editModeInitiated = true;
   this.events.emit('init-edit-mode', null);
 }
開發者ID:YuhangGe,項目名稱:grafana,代碼行數:6,代碼來源:panel_ctrl.ts


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