⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 multilanguagecontentplugin.cs

📁 YetAnotherForum.Net+ScrewTurnWiki中文完美汉化增强版
💻 CS
字号:

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using ScrewTurn.Wiki.PluginFramework;

namespace ScrewTurn.Wiki.PluginPack {

	/// <summary>
	/// Implements a Formatter Provider that allows to write multi-language content in Wiki Pages.
	/// </summary>
	[Serializable]
	public class MultilanguageContentPlugin : IFormatterProvider {

		private IHost host;
		private string config;
		private ComponentInformation info = new ComponentInformation("Multilanguage Content Plugin 1.1", "ScrewTurn Software", "http://www.screwturn.eu");

		private string defaultLanguage = "en-us";
		private bool displayWarning = false;

		private const string divStyle = "padding: 2px; margin-bottom: 10px; font-size: 11px; background-color: #FFFFC4; border: solid 1px #DDDDDD;";
		private const string standardMessage = @"<div style=""" + divStyle + @""">The content of this Page is localized in your language. To change the language settings, please go to the <a href=""Language.aspx"">Language Selection</a> page.</div>";
		private const string notLocalizedMessage = @"<div style=""" + divStyle + @""">The content of this Page is <b>not</b> available in your language, and it is displayed in the default language of the Wiki. To change the language settings, please go to the <a href=""Language.aspx"">Language Selection</a> page.</div>";

		public bool PerformPhase1 {
			get { return false; }
		}

		public bool PerformPhase2 {
			get { return false; }
		}

		public bool PerformPhase3 {
			get { return true; }
		}

		public string Format(string raw, ContextInformation context, FormattingPhase phase) {
			string result = ExtractLocalizedContent(context.Language, raw); // Try to load localized content
			bool notLocalized = false;
			bool noLocalization = false;
			if(result == null) {
				result = ExtractLocalizedContent(defaultLanguage, raw); // Load content in the default language
				notLocalized = true;
				noLocalization = false;
			}
			if(result == null) {
				result = raw; // The Page is not localized, return all the content
				notLocalized = false;
				noLocalization = true;
			}
			if(displayWarning && !noLocalization && context.Page != null) {
				if(notLocalized) return notLocalizedMessage + result;
				else return standardMessage + result;
			}
			else return result;
		}

		private string ExtractLocalizedContent(string language, string content) {
			string head = "\\<" + language + "\\>", tail = "\\<\\/" + language + "\\>";
			Regex regex = new Regex(head + ".+?" + tail, RegexOptions.IgnoreCase | RegexOptions.Singleline);
			Match match = regex.Match(content);
			StringBuilder sb = new StringBuilder();
			while(match.Success) {
				sb.Append(match.Value);
				match = regex.Match(content, match.Index + match.Length + 1);
			}
			if(sb.Length > 0) return sb.ToString();
			else return null;
		}

		public void Init(IHost host, string config) {
			this.host = host;
			this.config = config;
			defaultLanguage = host.GetSettingValue(SettingName.DefaultLanguage);
			displayWarning = config.ToLower().Equals("display warning");
		}

		public void Shutdown() { }

		public ComponentInformation Information {
			get { return info; }
		}

	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -