mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
locale string comparer for i18n service
This commit is contained in:
parent
803527f585
commit
351c99fb42
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue