﻿// set useLocalizedFonts to true if you want localized fonts included in the project
var useLocalizedFonts = false;


function localizeFonts(sender, fontLibrary)
{
    if (useLocalizedFonts){
    
    // any text blocks in Shell.XAML that need localized fonts
    // use this function to set their fonts
    //
    //  example useage:
    //      var myTextBlock = sender.findName("myTextBlock");
    //      myTextBlock.setFontSource(fontLibrary);
	//      myTextBlock.fontFamily = "myLocalizedFont";
    
    
    }
}