mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
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:
parent
608ab69082
commit
3e371d5d03
9 changed files with 770 additions and 466 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue