60 self.vcsStatusIndicator = E5Led(self) |
60 self.vcsStatusIndicator = E5Led(self) |
61 self.setCornerWidget(self.vcsStatusIndicator, Qt.TopLeftCorner) |
61 self.setCornerWidget(self.vcsStatusIndicator, Qt.TopLeftCorner) |
62 self.vcsStatusColorNames = { |
62 self.vcsStatusColorNames = { |
63 "A" : "VcsAdded", |
63 "A" : "VcsAdded", |
64 "M" : "VcsModified", |
64 "M" : "VcsModified", |
|
65 "O" : "VcsRemoved", |
65 "R" : "VcsReplaced", |
66 "R" : "VcsReplaced", |
66 "U" : "VcsUpdate", |
67 "U" : "VcsUpdate", |
67 "Z" : "VcsConflict", |
68 "Z" : "VcsConflict", |
68 } |
69 } |
69 self.vcsStatusText = { |
70 self.vcsStatusText = { |
70 " " : self.trUtf8("up to date"), |
71 " " : self.trUtf8("up to date"), |
71 "A" : self.trUtf8("files added"), |
72 "A" : self.trUtf8("files added"), |
72 "M" : self.trUtf8("local modifications"), |
73 "M" : self.trUtf8("local modifications"), |
|
74 "O" : self.trUtf8("files removed"), |
73 "R" : self.trUtf8("files replaced"), |
75 "R" : self.trUtf8("files replaced"), |
74 "U" : self.trUtf8("update required"), |
76 "U" : self.trUtf8("update required"), |
75 "Z" : self.trUtf8("conflict"), |
77 "Z" : self.trUtf8("conflict"), |
76 } |
78 } |
77 self.__vcsStateChanged(" ") |
79 self.__vcsStateChanged(" ") |