/Source/Bifrost/Globalization/Localizer.cs
# · C# · 51 lines · 24 code · 5 blank · 22 comment · 0 complexity · bac7030d6d3c693de5c1d9832c5e4a54 MD5 · raw file
- #region License
- //
- // Copyright (c) 2008-2012, DoLittle Studios and Komplett ASA
- //
- // Licensed under the Microsoft Permissive License (Ms-PL), Version 1.1 (the "License")
- // With one exception :
- // Commercial libraries that is based partly or fully on Bifrost and is sold commercially,
- // must obtain a commercial license.
- //
- // You may not use this file except in compliance with the License.
- // You may obtain a copy of the license at
- //
- // http://bifrost.codeplex.com/license
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- #endregion
-
- using System.Threading;
- using Bifrost.Configuration;
-
- namespace Bifrost.Globalization
- {
- /// <summary>
- /// Represents a <see cref="ILocalizer"/>
- /// </summary>
- public class Localizer : ILocalizer
- {
- #pragma warning disable 1591 // Xml Comments
- public LocalizationScope BeginScope()
- {
- var scope = LocalizationScope.FromCurrentThread();
-
- Thread.CurrentThread.CurrentCulture = Configure.Instance.Culture;
- Thread.CurrentThread.CurrentUICulture = Configure.Instance.UICulture;
-
- return scope;
- }
-
- public void EndScope(LocalizationScope scope)
- {
- Thread.CurrentThread.CurrentCulture = scope.Culture;
- Thread.CurrentThread.CurrentUICulture = scope.UICulture;
- }
- #pragma warning restore 1591 // Xml Comments
- }
- }