1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-02 08:33:17 +00:00

i18n service

This commit is contained in:
Kyle Spearrin
2019-04-11 15:33:10 -04:00
parent 6a65b6d735
commit 6ee109dc80
11 changed files with 384 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
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);
}
}