mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-09 15:23:03 -08:00
11 lines
315 B
C#
11 lines
315 B
C#
namespace GreenshotConfluencePlugin.Support {
|
|
public interface ITranslationProvider {
|
|
/// <summary>
|
|
/// Translates the specified key.
|
|
/// </summary>
|
|
/// <param name="key">The key.</param>
|
|
/// <returns></returns>
|
|
object Translate(string key);
|
|
}
|
|
}
|