added possibility to edit language properties and to create new language files. also some cosmetics, e.g. icons

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1859 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
JKlingen 2012-05-17 09:54:51 +00:00
commit 3e371d5d03
9 changed files with 770 additions and 466 deletions

View file

@ -27,11 +27,19 @@ using System.Xml.Linq;
namespace GreenshotLanguageEditor {
public class LanguageFile {
public string FilePath {
get;
set;
get {return Path.Combine(FileDir,FileName);}
set {
FileDir = Path.GetDirectoryName(value);
FileName = Path.GetFileName(value);
}
}
public string FileDir {
get;
set;
}
public string FileName {
get {return Path.GetFileName(FilePath);}
get;
set;
}
public string IETF {
get;