Remove "only", which is not really necessary.

This commit is contained in:
Richard Heck 2016-06-20 09:49:48 -04:00
parent 3573b7270c
commit 539258273d

View File

@ -106,9 +106,9 @@ docstring const InsetBranch::buttonLabel(BufferView const &) const
if (inmaster && inchild)
s = _("Branch: ");
else if (inchild) // && !inmaster
s = _("Branch (child only): ");
s = _("Branch (child): ");
else if (inmaster) // && !inchild
s = _("Branch (master only): ");
s = _("Branch (master): ");
else // !inmaster && !inchild
s = _("Branch (undefined): ");
s += params_.branch;