1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-30 11:14:51 +02:00
bitwarden-mobile/src/Core/Abstractions/II18nService.cs

13 lines
390 B
C#
Raw Normal View History

using System;
using System.Globalization;
2019-04-11 21:33:10 +02:00
namespace Bit.Core.Abstractions
{
public interface II18nService
{
CultureInfo Culture { get; set; }
StringComparer StringComparer { get; }
2019-04-17 05:31:05 +02:00
string T(string id, string p1 = null, string p2 = null, string p3 = null);
string Translate(string id, string p1 = null, string p2 = null, string p3 = null);
2019-04-11 21:33:10 +02:00
}
}