Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Stocker2013-10-27 14:14:12 +0000
committerStefan Lay2013-11-04 09:04:31 +0000
commitde99760ec81c6cc08550dc925fd6838e97e38db4 (patch)
tree041aaea40d70e520faaf5071a69e5549997098a6 /org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/uitext.properties
parenta17b66a9aadd63e80d9d42fd80fabe6c17c886eb (diff)
downloadegit-de99760ec81c6cc08550dc925fd6838e97e38db4.tar.gz
egit-de99760ec81c6cc08550dc925fd6838e97e38db4.tar.xz
egit-de99760ec81c6cc08550dc925fd6838e97e38db4.zip
Show tooltips for refs (history view, branch selection dialogs)
Adds tooltips for HEAD, ORIG_HEAD, FETCH_HEAD and refs/stash with descriptions that explain what the refs are about. This change also fixes bug 420452. Bug: 420454 Change-Id: Ia644bb62adfed327d4988ee07dc4652d5d6be58b 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.properties5
1 files changed, 5 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 8345f8afbe..81fa3261b5 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
@@ -1584,6 +1584,11 @@ SwitchToMenu_OtherMenuLabel=&Other...
GitActionContributor_ExpandAll=Expand All
GitActionContributor_Push=Push
GitActionContributor_Pull=Pull
+GitLabelProvider_RefDescriptionFetchHead=Reference to the newest commit that was fetched with the last fetch
+GitLabelProvider_RefDescriptionHead=Reference to the checked out commit (no branch checked out)
+GitLabelProvider_RefDescriptionHeadSymbolic=Reference to the checked out branch.\nWhen committing, this branch is updated to point to the new commit.
+GitLabelProvider_RefDescriptionOrigHead=Points to the commit where HEAD was before a dangerous operation.\nCan be used for undoing the operation using reset.
+GitLabelProvider_RefDescriptionStash=Last stashed changes
GitLabelProvider_UnableToRetrieveLabel=Unable to retrieve label for {0}
GitVariableResolver_InternalError=Internal error
GitVariableResolver_NoSelectedResource=No selected resource

Back to the top