- Fixes the french translation

- Css Style changed
This commit is contained in:
Paul Schneider 2014-10-29 11:29:03 +01:00
commit b4fefbce7e
12 changed files with 104 additions and 131 deletions

View file

@ -5,28 +5,33 @@ using System.Collections.Generic;
namespace Yavsc
{
public static class ThanksHelper {
static private ThanksConfigurationSection configurationSection=null;
static public ThanksConfigurationSection ConfigurationSection {
get {
if (configurationSection==null)
configurationSection = (ThanksConfigurationSection) ConfigurationManager.GetSection ("system.web/thanks");
return configurationSection;
}
}
public static string[] Links ()
{
List<string> result = new List<string>() ;
ThanksConfigurationSection s = (ThanksConfigurationSection) ConfigurationManager.GetSection ("system.web/thanks");
if (s == null) return result.ToArray();
if (s.To == null) return result.ToArray();
foreach (ThanksConfigurationElement e in s.To) {
if (ConfigurationSection == null) return result.ToArray();
if (ConfigurationSection.To == null) return result.ToArray();
foreach (ThanksConfigurationElement e in ConfigurationSection.To) {
string link = "";
if (!string.IsNullOrEmpty(e.Url))
link = string.Format("<a class=\"athanks\" href=\"{0}\">",e.Url);
link += "<div class=\"thanks\">";
link = string.Format("<a href=\"{0}\">",e.Url);
string dsp = (string.IsNullOrEmpty(e.Display))?e.Name:e.Display;
if (!string.IsNullOrEmpty(e.Image)) {
string ttl = (string.IsNullOrEmpty(s.TitleFormat))?"Go and see the website ({0})":s.TitleFormat;
string ttl = (string.IsNullOrEmpty(ConfigurationSection.TitleFormat))?"Go and see the website ({0})":ConfigurationSection.TitleFormat;
ttl = string.Format(ttl,dsp);
link += string.Format(
"<img src=\"{1}\" alt=\"{0}\" title=\"{2}\"/>",
dsp,e.Image,ttl);
}
else link += dsp;
link += "</div>";
if (e.Url!=null)
link += "</a> ";
result.Add (link);