mirror of
https://github.com/bitwarden/mobile
synced 2026-01-02 08:33:17 +00:00
i18n service
This commit is contained in:
11
src/Core/Abstractions/II18nService.cs
Normal file
11
src/Core/Abstractions/II18nService.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user