1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-28 10:54:59 +02:00
bitwarden-mobile/src/Core/Abstractions/II18nService.cs

16 lines
481 B
C#
Raw Normal View History

using System;
2019-09-06 15:44:02 +02:00
using System.Collections.Generic;
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-09-06 15:44:02 +02:00
Dictionary<string, string> LocaleNames { 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
}
2019-09-06 15:44:02 +02:00
}