1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-11 13:53:29 +00:00

added locale names dictionary

This commit is contained in:
Kyle Spearrin
2019-09-06 09:44:02 -04:00
parent b35a3339cb
commit 954aa1112a
2 changed files with 56 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Globalization;
namespace Bit.Core.Abstractions
@@ -7,7 +8,8 @@ namespace Bit.Core.Abstractions
{
CultureInfo Culture { get; set; }
StringComparer StringComparer { get; }
Dictionary<string, string> LocaleNames { 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);
}
}
}