fix: duplicate string keys, bad localize method

This commit is contained in:
goat 2021-09-04 22:27:06 +02:00
parent 1714c641ad
commit b9f72c0d53
No known key found for this signature in database
GPG key ID: F18F057873895461
3 changed files with 3 additions and 16 deletions

View file

@ -51,19 +51,6 @@ namespace Dalamud
/// </summary>
public event LocalizationChangedDelegate LocalizationChanged;
/// <summary>
/// Search the set-up localization data for the provided assembly for the given string key and return it.
/// If the key is not present, the fallback is shown.
/// The fallback is also required to create the string files to be localized.
/// </summary>
/// <param name="key">The string key to be returned.</param>
/// <param name="fallBack">The fallback string, usually your source language.</param>
/// <returns>The localized string, fallback or string key if not found.</returns>
public static string Localize(string key, string fallBack)
{
return Loc.Localize(key, fallBack, Assembly.GetCallingAssembly());
}
/// <summary>
/// Set up the UI language with the users' local UI culture.
/// </summary>