Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Elsemore2013-06-27 20:19:28 +0000
committerMatthias Sohn2013-08-11 00:30:41 +0000
commit1ef79b6d9abed44ee7facf4c665f608d85cb67cd (patch)
tree9d1b321ecc8d7f81b53b5564be6aafafc9b6e457 /org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties
parent94fb639496f53183ebda495a01b61d663f453de8 (diff)
downloadegit-1ef79b6d9abed44ee7facf4c665f608d85cb67cd.tar.gz
egit-1ef79b6d9abed44ee7facf4c665f608d85cb67cd.tar.xz
egit-1ef79b6d9abed44ee7facf4c665f608d85cb67cd.zip
[stagingView] Add presentation options (list, tree, compact tree)
This adds different options for presenting the unstaged and staged files in the staging view. "List" is the same as before, just a flat list of files, e.g. file1 - src/org/eclipse file2 - src/org/eclipse "Tree" shows the files in a full folder tree, e.g. * src * org * eclipse * file1 * file2 "Compact Tree" shows the files in a folder tree where folders that have just one subfolder do not result in a node, e.g. * src/org/eclipse * file1 * file2 When an expanded node is dragged from one tree to another (stage/unstage), the expanded state should be preserved. CQ: 7377 Bug: 407607 Also-by: Robin Stocker <robin@nibor.org> Change-Id: I6509f2ee0f63fccf0391418cc3d41223e71c41de Signed-off-by: Stephen Elsemore <selsemore@collab.net> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com> Signed-off-by: Robin Stocker <robin@nibor.org>
Diffstat (limited to 'org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties
index 4fd0849b54..06ec7aeca4 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties
@@ -1630,6 +1630,10 @@ StagingView_UnstageItemMenuLabel=Remove from Git Index
StagingView_StageItemMenuLabel=Add to Git Index
StagingView_IgnoreItemMenuLabel=Ignore
StagingView_DeleteItemMenuLabel=Delete
+StagingView_Presentation=Presentation
+StagingView_List=List
+StagingView_Tree=Tree
+StagingView_CompactTree=Compact Tree
StagingView_Find=Filter files
StagingViewContentProvider_SubmoduleError=Unhandled exception while analyzing submodules
StashApplyCommand_applyFailed=Applying stashed commit ''{0}'' failed due to ''{1}''

Back to the top