mirror of
https://github.com/bitwarden/android.git
synced 2026-05-08 21:10:40 -05:00
11 lines
259 B
C#
11 lines
259 B
C#
using System.Globalization;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface II18nService
|
|
{
|
|
CultureInfo Culture { get; set; }
|
|
string T(string id, params string[] p);
|
|
string Translate(string id, params string[] p);
|
|
}
|
|
} |