This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Claunia.Localization/Claunia.Localization.Test/gettext/Test.cs

18 lines
418 B
C#

using System.IO;
using System.Text;
using NUnit.Framework;
namespace Claunia.Localization.Test.gettext
{
[TestFixture]
public sealed class Test
{
[Test]
public void Parse()
{
var testPath = Path.Combine(".", "gettext","es_ES.po");
var localization = Claunia.Localization.Parsers.GetText.Parse(testPath, Encoding.GetEncoding("iso8859-1"));
}
}
}