Fixed and closed #376: {cloud} now displays local category names.
This commit is contained in:
parent
45f210bd53
commit
980056c487
2 changed files with 3 additions and 3 deletions
|
@ -16,5 +16,5 @@ using System.Reflection;
|
|||
//
|
||||
// You can specify all the values or you can default the Revision and Build Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("3.0.0.346")]
|
||||
[assembly: AssemblyFileVersion("3.0.0.346")]
|
||||
[assembly: AssemblyVersion("3.0.0.347")]
|
||||
[assembly: AssemblyFileVersion("3.0.0.347")]
|
||||
|
|
|
@ -2231,7 +2231,7 @@ namespace ScrewTurn.Wiki {
|
|||
sb.Append(@""" style=""font-size: ");
|
||||
sb.Append(ComputeSize((float)categories[i].Pages.Length / (float)tot * 100F).ToString());
|
||||
sb.Append(@"px;"">");
|
||||
sb.Append(categories[i].FullName);
|
||||
sb.Append(NameTools.GetLocalName(categories[i].FullName));
|
||||
sb.Append("</a>");
|
||||
}
|
||||
if(i != categories.Count - 1) sb.Append(" ");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue