mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
16 lines
510 B
C#
16 lines
510 B
C#
namespace TranslationByMarkupExtension {
|
|
public interface ITranslationProvider {
|
|
/// <summary>
|
|
/// Translates the specified key.
|
|
/// </summary>
|
|
/// <param name="key">The key.</param>
|
|
/// <returns></returns>
|
|
object Translate(string key);
|
|
|
|
/// <summary>
|
|
/// Gets the available languages.
|
|
/// </summary>
|
|
/// <value>The available languages.</value>
|
|
//IEnumerable<CultureInfo> Languages { get; }
|
|
}
|
|
}
|