mirror of
https://github.com/greenshot/greenshot
synced 2025-07-15 01:23:47 -07:00
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2197 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
20 lines
591 B
C#
20 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
|
|
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; }
|
|
}
|
|
}
|