mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Fix translation of ambiguous messages
* src/frontends/qt4/ui/QPrefConvertersUi.ui: Readd translation hint to label and remove broken tooltip that somebody created instead * src/messages.C (Messages::Pimpl::get): reenable stripping of [[..]] from untranslated messages git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15872 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
03d5a4adb7
commit
2c64f84300
11
Status.15x
11
Status.15x
@ -156,8 +156,6 @@ EDITING
|
|||||||
|
|
||||||
MENUS
|
MENUS
|
||||||
|
|
||||||
* Special handling of [[...]] in text messages is disabled in messages.C
|
|
||||||
|
|
||||||
|
|
||||||
LAYOUT
|
LAYOUT
|
||||||
|
|
||||||
@ -341,14 +339,17 @@ CREDITS:
|
|||||||
visible toolbar, the modified settings are not considered for session management
|
visible toolbar, the modified settings are not considered for session management
|
||||||
|
|
||||||
REPLACED with a new entry, popup disabled (Peter 2006-11-09)
|
REPLACED with a new entry, popup disabled (Peter 2006-11-09)
|
||||||
|
|
||||||
* Toolbars always show on the top of the screen, even though they are set to
|
* Toolbars always show on the top of the screen, even though they are set to
|
||||||
"bottom" in the ui file (Joost 3/11/06).
|
"bottom" in the ui file (Joost 3/11/06).
|
||||||
|
|
||||||
FIXED: use the defaul.ui value only when there is no valid position stored
|
FIXED: use the defaul.ui value only when there is no valid position stored
|
||||||
(1st start of lyx) (Peter 7/11/2006)
|
(1st start of lyx) (Peter 7/11/2006)
|
||||||
|
|
||||||
* Window positions are not remembered correctly. Each time a window is openend
|
* Window positions are not remembered correctly. Each time a window is openend
|
||||||
window again it has moved towards the bottom of the screen. (Joost 3/11/06)
|
window again it has moved towards the bottom of the screen. (Joost 3/11/06)
|
||||||
|
|
||||||
FIXED (Peter 8/11/2006)
|
FIXED (Peter 8/11/2006)
|
||||||
|
|
||||||
|
* Special handling of [[...]] in text messages is disabled in messages.C
|
||||||
|
FIXED (Georg 2006-11-12)
|
||||||
|
@ -146,11 +146,8 @@
|
|||||||
</item>
|
</item>
|
||||||
<item row="1" column="0" >
|
<item row="1" column="0" >
|
||||||
<widget class="QLabel" name="converterToLA" >
|
<widget class="QLabel" name="converterToLA" >
|
||||||
<property name="toolTip" >
|
|
||||||
<string><html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Sans Serif; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">[[as in 'From format x to format y']]</p></body></html></string>
|
|
||||||
</property>
|
|
||||||
<property name="text" >
|
<property name="text" >
|
||||||
<string>&To:</string>
|
<string>&To:[[as in 'From format x to format y']]</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="buddy" >
|
<property name="buddy" >
|
||||||
<cstring>converterToCO</cstring>
|
<cstring>converterToCO</cstring>
|
||||||
|
@ -170,39 +170,35 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
textdomain(PACKAGE);
|
textdomain(PACKAGE);
|
||||||
#if 0
|
|
||||||
const char* msg = gettext(m.c_str());
|
|
||||||
string translated(msg ? msg : m);
|
|
||||||
// Some english words have different translations, depending
|
|
||||||
// on context. In these cases the original string is
|
|
||||||
// augmented by context information (e.g.
|
|
||||||
// "To:[[as in 'From page x to page y']]" and
|
|
||||||
// "To:[[as in 'From format x to format y']]".
|
|
||||||
// This means that we need to filter out everything in
|
|
||||||
// double square brackets at the end of the string,
|
|
||||||
// otherwise the user sees bogus messages.
|
|
||||||
// If we are unable to honour the request we just
|
|
||||||
// return what we got in.
|
|
||||||
static boost::regex const reg("^([^\\[]*)\\[\\[[^\\]]*\\]\\]$");
|
|
||||||
boost::smatch sub;
|
|
||||||
if (regex_match(translated, sub, reg))
|
|
||||||
translated = sub.str(1);
|
|
||||||
#else
|
|
||||||
char const * tmp = m.c_str();
|
char const * tmp = m.c_str();
|
||||||
char const * msg = gettext(tmp);
|
char const * msg = gettext(tmp);
|
||||||
docstring translated;
|
docstring translated;
|
||||||
if (!msg) {
|
if (!msg || msg == tmp) {
|
||||||
lyxerr << "Undefined result from gettext" << endl;
|
if (!msg)
|
||||||
translated = from_ascii(tmp);
|
lyxerr << "Undefined result from gettext" << endl;
|
||||||
} else if (msg == tmp) {
|
//else
|
||||||
//lyxerr << "Same as entered returned" << endl;
|
// lyxerr << "Same as entered returned" << endl;
|
||||||
translated = from_ascii(tmp);
|
// Some english words have different translations,
|
||||||
|
// depending on context. In these cases the original
|
||||||
|
// string is augmented by context information (e.g.
|
||||||
|
// "To:[[as in 'From page x to page y']]" and
|
||||||
|
// "To:[[as in 'From format x to format y']]".
|
||||||
|
// This means that we need to filter out everything
|
||||||
|
// in double square brackets at the end of the
|
||||||
|
// string, otherwise the user sees bogus messages.
|
||||||
|
// If we are unable to honour the request we just
|
||||||
|
// return what we got in.
|
||||||
|
static boost::regex const reg("^([^\\[]*)\\[\\[[^\\]]*\\]\\]$");
|
||||||
|
boost::smatch sub;
|
||||||
|
if (regex_match(m, sub, reg))
|
||||||
|
translated = from_ascii(sub.str(1));
|
||||||
|
else
|
||||||
|
translated = from_ascii(tmp);
|
||||||
} else {
|
} else {
|
||||||
lyxerr[Debug::DEBUG] << "We got a translation" << endl;
|
lyxerr[Debug::DEBUG] << "We got a translation" << endl;
|
||||||
char_type const * ucs4 = reinterpret_cast<char_type const *>(msg);
|
char_type const * ucs4 = reinterpret_cast<char_type const *>(msg);
|
||||||
translated = ucs4;
|
translated = ucs4;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LC_MESSAGES
|
#ifdef HAVE_LC_MESSAGES
|
||||||
setlocale(LC_MESSAGES, lang.c_str());
|
setlocale(LC_MESSAGES, lang.c_str());
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user