Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

fogcreek shellext: use period at end of status bar prompt for consistency with Explorer

Changeset 050b688aeb80

Parent a1e37a74330b

by David Golub

Changes to one file · Browse files at 050b688aeb80 Showing diff from parent a1e37a74330b Diff from another changeset...

 
34
35
36
37
 
38
39
40
 
41
42
43
 
44
45
46
 
47
48
49
 
50
51
52
 
53
54
55
 
56
57
58
 
59
60
61
 
62
63
64
 
65
66
67
 
68
69
70
 
71
72
73
 
74
75
76
 
77
78
79
 
80
81
82
 
83
84
85
 
86
87
88
 
89
90
91
 
92
93
94
 
95
96
97
 
98
99
100
 
101
102
103
 
104
105
106
 
107
108
109
 
110
111
112
 
34
35
36
 
37
38
39
 
40
41
42
 
43
44
45
 
46
47
48
 
49
50
51
 
52
53
54
 
55
56
57
 
58
59
60
 
61
62
63
 
64
65
66
 
67
68
69
 
70
71
72
 
73
74
75
 
76
77
78
 
79
80
81
 
82
83
84
 
85
86
87
 
88
89
90
 
91
92
93
 
94
95
96
 
97
98
99
 
100
101
102
 
103
104
105
 
106
107
108
 
109
110
111
112
@@ -34,79 +34,79 @@
 static const CMenuDescription MenuDescList[] =  {   { "commit", L"Commit...", - L"Commit changes in repository", + L"Commit changes in repository.",   "menucommit.ico", 0},   { "init", L"Create Repository Here", - L"Create a new repository", + L"Create a new repository.",   "menucreaterepos.ico", 0},   { "clone", L"Clone...", - L"Create clone here from source", + L"Create clone here from source.",   "menuclone.ico", 0},   { "shelve", L"Shelve Changes", - L"Shelve or unshelve file changes", + L"Shelve or unshelve file changes.",   "shelve.ico", 0},   { "status", L"View File Status", - L"Repository status & changes", + L"Repository status & changes.",   "menushowchanged.ico", 0},   { "add", L"Add Files...", - L"Add files to version control", + L"Add files to version control.",   "menuadd.ico", 0},   { "revert", L"Revert Files...", - L"Revert file changes", + L"Revert file changes.",   "menurevert.ico", 0},   { "remove", L"Remove Files...", - L"Remove files from version control", + L"Remove files from version control.",   "menudelete.ico", 0},   { "rename", L"Rename File...", - L"Rename file or directory", + L"Rename file or directory.",   "general.ico", 0},   { "workbench", L"Workbench", - L"View change history of repository", + L"View change history of repository.",   "menulog.ico", 0},   { "log", L"Revision History", - L"View change history of selected files", + L"View change history of selected files.",   "menulog.ico", 0},   { "synch", L"Synchronize", - L"Synchronize with remote repository", + L"Synchronize with remote repository.",   "menusynch.ico", 0},   { "serve", L"Web Server", - L"Start web server for this repository", + L"Start web server for this repository.",   "proxy.ico", 0},   { "update", L"Update...", - L"Update working directory", + L"Update working directory.",   "menucheckout.ico", 0},   { "thgstatus", L"Update Icons", - L"Update icons for this repository", + L"Update icons for this repository.",   "refresh_overlays.ico", 0},   { "userconf", L"Global Settings", - L"Configure user wide settings", + L"Configure user wide settings.",   "settings_user.ico", 0},   { "repoconf", L"Repository Settings", - L"Configure repository settings", + L"Configure repository settings.",   "settings_repo.ico", 0},   { "about", L"About TortoiseHg", - L"Show About Dialog", + L"Show About Dialog.",   "menuabout.ico", 0},   { "annotate", L"Annotate Files", - L"Changeset information per file line", + L"Changeset information per file line.",   "menublame.ico", 0},   { "vdiff", L"Visual Diff", - L"View changes using GUI diff tool", + L"View changes using GUI diff tool.",   "TortoiseMerge.ico", 0},   { "hgignore", L"Edit Ignore Filter", - L"Edit repository ignore filter", + L"Edit repository ignore filter.",   "ignore.ico", 0},   { "guess", L"Guess Renames", - L"Detect renames and copies", + L"Detect renames and copies.",   "detect_rename.ico", 0},   { "grep", L"Search History", - L"Search file revisions for patterns", + L"Search file revisions for patterns.",   "menurepobrowse.ico", 0},   { "forget", L"Forget Files...", - L"Remove files from version control", + L"Remove files from version control.",   "menudelete.ico", 0},   { "shellconf", L"Explorer Extension Settings", - L"Configure Explorer extension", + L"Configure Explorer extension.",   "settings_repo.ico", 0},     // Add new items here.