Added thread name, used for debugging. Added hotkey descriptions for rotate ccw/cw in language-en-US.xml

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2364 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-12-07 13:40:53 +00:00
commit 1a471ec77f
2 changed files with 5 additions and 3 deletions

View file

@ -88,7 +88,9 @@ namespace Greenshot {
InitializeComponent(); InitializeComponent();
this.Load += delegate { this.Load += delegate {
new Thread(delegate() {AddDestinations();}).Start(); var thread = new Thread(delegate() {AddDestinations();});
thread.Name = "add destinations";
thread.Start();
}; };
IniConfig.IniChanged += new FileSystemEventHandler(ReloadConfiguration); IniConfig.IniChanged += new FileSystemEventHandler(ReloadConfiguration);

View file

@ -127,8 +127,8 @@ Also, we would highly appreciate if you checked whether a tracker item already e
<resource name="editor_print">Print</resource> <resource name="editor_print">Print</resource>
<resource name="editor_redo">Redo {0}</resource> <resource name="editor_redo">Redo {0}</resource>
<resource name="editor_resetsize">Reset size</resource> <resource name="editor_resetsize">Reset size</resource>
<resource name="editor_rotateccw">Rotate counter clockwise</resource> <resource name="editor_rotateccw">Rotate counter clockwise (Control + ,)</resource>
<resource name="editor_rotatecw">Rotate clockwise</resource> <resource name="editor_rotatecw">Rotate clockwise (Control + .)</resource>
<resource name="editor_save">Save</resource> <resource name="editor_save">Save</resource>
<resource name="editor_save_objects">Save objects to file</resource> <resource name="editor_save_objects">Save objects to file</resource>
<resource name="editor_saveas">Save as...</resource> <resource name="editor_saveas">Save as...</resource>