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


TypeScript ng2-translate.TranslateService類代碼示例

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


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

示例1: constructor

 constructor(private translate: TranslateService, private cookie: CookieService, private balanceService: BalanceService) {
     this.translate.setDefaultLang('en');
     const language = this.cookie.get('language');
     if (language) {
         this.translate.use(language);
     }
 }
開發者ID:theirc,項目名稱:balance.refugee.info,代碼行數:7,代碼來源:app.component.ts

示例2: constructor

    constructor(private translate: TranslateService,
                public dialog: MdDialog) {
        // this language will be used as a fallback when a translation isn't found in the current language
        translate.setDefaultLang('en');

        // the lang to use, if the lang isn't available, it will use the current loader to get them
        translate.use('en');
    }
開發者ID:mattblang,項目名稱:b4a,代碼行數:8,代碼來源:app.component.ts

示例3: constructor

  constructor(private _translate: TranslateService) {
        var userLang = navigator.language.split('-')[0]; // use navigator lang if available
        userLang = /(fr|en)/gi.test(userLang) ? userLang : 'en';

         // this language will be used as a fallback when a translation isn't found in the current language
        _translate.setDefaultLang('en');

         // the lang to use, if the lang isn't available, it will use the current loader to get them
        _translate.use(userLang);
    }
開發者ID:raqu3l,項目名稱:respond,代碼行數:10,代碼來源:app.component.ts

示例4: initMenuItems

    public initMenuItems() {

        this.items = [
            {
                label: this._translateService.instant("NAVIGATION-BAR-COMPONENT_MENU-ITEM_SHIPMENT-LIST"),
                routerLink: ["/shipments"]
            },
            {
                label: this._translateService.instant("NAVIGATION-BAR-COMPONENT_MENU-ITEM_TASK-LIST"),
                routerLink: ["/tasks"]
            },
            {
                label: this._translateService.instant("NAVIGATION-BAR-COMPONENT_MENU-ITEM_MASTER-DATA"),
                items: [
                    {
                        label: this._translateService.instant("NAVIGATION-BAR-COMPONENT_MENU-ITEM_CUSTOMER-LIST"),
                        routerLink: ["/customers"]
                    },
                    {
                        label: this._translateService.instant("NAVIGATION-BAR-COMPONENT_MENU-ITEM_AIRPORTS-LIST"),
                        routerLink: ["/airports"]
                    }
                ]
            }
        ];
    }
開發者ID:kraussj,項目名稱:Showcase,代碼行數:26,代碼來源:navigation-bar.component.ts

示例5: newInvitation

 newInvitation(organizerUid: string) {
   this.sendNotification(
     organizerUid,
     this.translateService.instant('NOTIFICATIONS.NEW_INVITATION.TITLE'),
     this.translateService.instant('NOTIFICATIONS.NEW_INVITATION.TEXT'),
     {}
   );
 }
開發者ID:ActiverLtd,項目名稱:Mobile,代碼行數:8,代碼來源:notification.service.ts

示例6: acceptInvitation

 acceptInvitation(invitation: Invitation) {
   this.sendNotification(
     invitation.user_uid,
     this.translateService.instant('NOTIFICATIONS.INVITATION_ACCEPTED.TITLE'),
     this.translateService.instant('NOTIFICATIONS.INVITATION_ACCEPTED.TEXT'),
     {}
   );
 }
開發者ID:ActiverLtd,項目名稱:Mobile,代碼行數:8,代碼來源:notification.service.ts

示例7: switch

        this.cleanHttpErrorListener = eventManager.subscribe('eshopApp.httpError', (response) => {
            let i;
            const httpResponse = response.content;
            switch (httpResponse.status) {
                // connection refused, server not reachable
                case 0:
                    this.addErrorAlert('Server not reachable', 'error.server.not.reachable');
                    break;

                case 400:
                    const arr = Array.from(httpResponse.headers._headers);
                    const headers = [];
                    for (i = 0; i < arr.length; i++) {
                        if (arr[i][0].endsWith('app-error') || arr[i][0].endsWith('app-params')) {
                            headers.push(arr[i][0]);
                        }
                    }
                    headers.sort();
                    let errorHeader = null;
                    let entityKey = null;
                    if (headers.length > 1) {
                        errorHeader = httpResponse.headers.get(headers[0]);
                        entityKey = httpResponse.headers.get(headers[1]);
                    }
                    if (errorHeader) {
                        const entityName = translateService.instant('global.menu.entities.' + entityKey);
                        this.addErrorAlert(errorHeader, errorHeader, { entityName });
                    } else if (httpResponse.text() !== '' && httpResponse.json() && httpResponse.json().fieldErrors) {
                        const fieldErrors = httpResponse.json().fieldErrors;
                        for (i = 0; i < fieldErrors.length; i++) {
                            const fieldError = fieldErrors[i];
                            // convert 'something[14].other[4].id' to 'something[].other[].id' so translations can be written to it
                            const convertedField = fieldError.field.replace(/\[\d*\]/g, '[]');
                            const fieldName = translateService.instant('eshopApp.' +
                                fieldError.objectName + '.' + convertedField);
                            this.addErrorAlert(
                                'Field ' + fieldName + ' cannot be empty', 'error.' + fieldError.message, { fieldName });
                        }
                    } else if (httpResponse.text() !== '' && httpResponse.json() && httpResponse.json().message) {
                        this.addErrorAlert(httpResponse.json().message, httpResponse.json().message, httpResponse.json().params);
                    } else {
                        this.addErrorAlert(httpResponse.text());
                    }
                    break;

                case 404:
                    this.addErrorAlert('Not found', 'error.url.not.found');
                    break;

                default:
                    if (httpResponse.text() !== '' && httpResponse.json() && httpResponse.json().message) {
                        this.addErrorAlert(httpResponse.json().message);
                    } else {
                        this.addErrorAlert(JSON.stringify(httpResponse)); // Fixme find a way to parse httpResponse
                    }
            }
        });
開發者ID:chenshao0594,項目名稱:eshop,代碼行數:57,代碼來源:alert-error.component.ts

示例8: selectLang

 selectLang(event: any, lang: string) {
   if (event !== null)
     event.preventDefault();
   // this language will be used as a fallback when a translation isn't found in the current language
   this.trans.setDefaultLang("en");
   // the lang to use, if the lang isn't available, it will use the current loader to get them
   this.trans.use(lang);
   // this.refreshText();
 }
開發者ID:moleisking,項目名稱:SAM,代碼行數:9,代碼來源:app.component.ts

示例9:

 participantList.forEach((participant_uid) => {
   if (participant_uid !== currentUserUid) {
     this.sendNotification(
       participant_uid,
       this.translateService.instant('NOTIFICATIONS.NEW_COMMENT.TITLE'),
       this.translateService.instant('NOTIFICATIONS.NEW_COMMENT.TEXT', {text, name}),
       {}
     );
   }
 });
開發者ID:ActiverLtd,項目名稱:Mobile,代碼行數:10,代碼來源:notification.service.ts

示例10: configureLanguage

 private configureLanguage() {
     // configure language for translation service
     let userLang = navigator.language.split("-")[0];
     userLang = /(de|en)/gi.test(userLang) ? userLang : "en";
     this._translateService.setDefaultLang("en");
     this._translateService.use(userLang).subscribe(
         () => {
             this._translationNotifierService.publishTranslationsLoaded();
         }
     );
 }
開發者ID:EduCaMa,項目名稱:Showcase,代碼行數:11,代碼來源:app.component.ts


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