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


TypeScript sprintf-js.vsprintf函數代碼示例

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


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

示例1: localize

export function localize(key: string, ...args: string[]): string {
  let localizedString;
  try {
    const identifier = utils.ad.resources.getStringId(encodeKey(key));
    localizedString = identifier === 0 ? key : getResources().getString(identifier);
  } catch (error) {
    localizedString = key;
  }
  return vsprintf(localizedString, args);
}
開發者ID:surdu,項目名稱:nativescript-localize,代碼行數:10,代碼來源:localize.android.ts

示例2: getTranslation

    private getTranslation(code:string, fallback: string, parameters: string[]):string{
        var translation: any;
        // If exist custom translate function - call
        if(typeof this.config.onTranslate === 'function'){
            translation = this.config.onTranslate(code, fallback);
        }
        // If not translated - get translation from passed translations
        if(typeof translation != 'string'){
            translation = this.translationsByCode[code];
        }
        // If not fount translations - use fallback
        translation === undefined && (translation = fallback);

        // If pass parameters - render with sprintf
        parameters && (translation = vsprintf(translation, parameters));

        return translation;
    }
開發者ID:it7-solutions,項目名稱:networking-public-plugin,代碼行數:18,代碼來源:translations.service.ts

示例3: strFormat

 static strFormat(str:string, params: Array<string>){
     if(typeof params == "string"){
         params = [params];
     }
     return vsprintf(str, params);
 }
開發者ID:AelithBlanchett,項目名稱:nsfwbot,代碼行數:6,代碼來源:Utils.ts

示例4: L

export function L(str: string, ...params): string {
	var s = (language[window['selectedLanguage']] || {})[str];
	if (s==null) s = str;
	if (0 < params.length) s = vsprintf(s, params);
	return s;
}
開發者ID:mersenne-sister,項目名稱:mmlxr,代碼行數:6,代碼來源:language.ts

示例5: localize

export function localize(key: string, ...args: string[]): string {
  const localizedString = getBundle().localizedStringForKeyValueTable(encodeKey(key), key, null);
  return vsprintf(convertAtSignToStringSign(localizedString), args);
}
開發者ID:surdu,項目名稱:nativescript-localize,代碼行數:4,代碼來源:localize.ios.ts


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