Fixed and closed #376: {cloud} now displays local category names.

This commit is contained in:
Dario Solera 2009-10-12 15:21:46 +00:00
parent 45f210bd53
commit 980056c487
2 changed files with 3 additions and 3 deletions

View file

@ -16,5 +16,5 @@ using System.Reflection;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("3.0.0.346")] [assembly: AssemblyVersion("3.0.0.347")]
[assembly: AssemblyFileVersion("3.0.0.346")] [assembly: AssemblyFileVersion("3.0.0.347")]

View file

@ -2231,7 +2231,7 @@ namespace ScrewTurn.Wiki {
sb.Append(@""" style=""font-size: "); sb.Append(@""" style=""font-size: ");
sb.Append(ComputeSize((float)categories[i].Pages.Length / (float)tot * 100F).ToString()); sb.Append(ComputeSize((float)categories[i].Pages.Length / (float)tot * 100F).ToString());
sb.Append(@"px;"">"); sb.Append(@"px;"">");
sb.Append(categories[i].FullName); sb.Append(NameTools.GetLocalName(categories[i].FullName));
sb.Append("</a>"); sb.Append("</a>");
} }
if(i != categories.Count - 1) sb.Append(" "); if(i != categories.Count - 1) sb.Append(" ");