mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 04:33:36 +00:00
13 lines
390 B
C#
13 lines
390 B
C#
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 = null, string p2 = null, string p3 = null);
|
|
string Translate(string id, string p1 = null, string p2 = null, string p3 = null);
|
|
}
|
|
} |