From 6258199fe8390f540048492e20e9ee3f30cf451d Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Sun, 16 Sep 2007 14:43:10 +0000 Subject: [PATCH] make index label translatable git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20318 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetIndex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetIndex.cpp b/src/insets/InsetIndex.cpp index b2ba741c2b..b29978d48a 100644 --- a/src/insets/InsetIndex.cpp +++ b/src/insets/InsetIndex.cpp @@ -36,7 +36,7 @@ docstring const InsetIndex::getScreenLabel(Buffer const &) const { size_t const maxLabelChars = 25; - docstring label = "Idx:" + getParam("name"); + docstring label = _("Idx: ") + getParam("name"); if (label.size() > maxLabelChars) { label.erase(maxLabelChars - 3); label += "...";