locale string comparer for i18n service

This commit is contained in:
Kyle Spearrin 2019-04-16 11:08:28 -04:00
parent 803527f585
commit 351c99fb42
1 changed files with 3 additions and 1 deletions

View File

@ -1,10 +1,12 @@
using System.Globalization;
using System;
using System.Globalization;
namespace Bit.Core.Abstractions
{
public interface II18nService
{
CultureInfo Culture { get; set; }
StringComparer StringComparer { get; }
string T(string id, string p1, string p2, string p3);
string Translate(string id, string p1, string p2, string p3);
}