mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
remove non-ascii characters from translatable strings
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8113 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
34c34fc02e
commit
bd3c961ace
@ -1,3 +1,8 @@
|
||||
2003-11-14 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* Makefile.in.in (xforms_l10n.pot): skip entries in symbol font
|
||||
(we do not want to translate them...)
|
||||
|
||||
2003-08-18 Michael Schmitt <Michael.Schmitt@teststep.org>
|
||||
|
||||
* de.po: Fix numerous shortcuts and one translation
|
||||
|
@ -218,13 +218,18 @@ $(srcdir)/xforms_l10n.pot: $(top_srcdir)/src/frontends/xforms/forms/*.fd
|
||||
print "\"Content-Type: text/plain; charset=ISO-8859-1\\n\""; \
|
||||
print "\"Content-Transfer-Encoding: 8bit\\n\""; \
|
||||
print "\n"; \
|
||||
skip=0; \
|
||||
} \
|
||||
/style: 15/ { \
|
||||
skip=1; \
|
||||
} \
|
||||
/label: / { \
|
||||
if (NF > 1) { \
|
||||
if (NF > 1 && skip == 0) { \
|
||||
line=$$0;\
|
||||
sub(/label: /,"",line);\
|
||||
printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", FILENAME, FNR, line);\
|
||||
}\
|
||||
skip=0; \
|
||||
}' \
|
||||
`find $(top_srcdir)/src/frontends/xforms/forms -name \*.fd` > $@
|
||||
|
||||
|
@ -151,7 +151,7 @@ src/insets/insetbibtex.C
|
||||
src/insets/insetbox.C
|
||||
src/insets/insetbranch.C
|
||||
src/insets/insetcaption.C
|
||||
src/insets/insetelement.C
|
||||
src/insets/insetcharstyle.C
|
||||
src/insets/insetenv.C
|
||||
src/insets/insetert.C
|
||||
src/insets/insetexternal.C
|
||||
@ -199,7 +199,6 @@ src/output_plaintext.C
|
||||
src/paragraph.C
|
||||
src/paragraph_funcs.C
|
||||
src/rowpainter.C
|
||||
src/support/path_defines.C
|
||||
src/text.C
|
||||
src/text2.C
|
||||
src/text3.C
|
||||
|
@ -1,3 +1,11 @@
|
||||
2003-11-14 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* ui/QMathDialogBase.ui: remove mention of \frac in tooltip, since
|
||||
\f is interpreted by gettext as a special sequence.
|
||||
|
||||
* QDocument.C (build_dialog): remove use of latin1 in
|
||||
some translatable strings. It confuses gettext.
|
||||
|
||||
2003-11-20 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* BulletsModule.C (setBullet): squash gcc 'may be uninitialized' warning.
|
||||
|
@ -92,8 +92,8 @@ void QDocument::build_dialog()
|
||||
dialog_->langModule->quoteStyleCO->insertItem(qt_("''text''"));
|
||||
dialog_->langModule->quoteStyleCO->insertItem(qt_(",,text``"));
|
||||
dialog_->langModule->quoteStyleCO->insertItem(qt_(",,text''"));
|
||||
dialog_->langModule->quoteStyleCO->insertItem(qt_("«text»"));
|
||||
dialog_->langModule->quoteStyleCO->insertItem(qt_("»text«"));
|
||||
dialog_->langModule->quoteStyleCO->insertItem(qt_("<<text>>"));
|
||||
dialog_->langModule->quoteStyleCO->insertItem(qt_(">>text<<"));
|
||||
|
||||
// packages
|
||||
for (int n = 0; tex_graphics[n][0]; ++n) {
|
||||
|
@ -210,7 +210,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Insert fraction (\frac)</string>
|
||||
<string>Insert fraction</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="1" column="0" >
|
||||
|
@ -1,3 +1,12 @@
|
||||
2003-11-14 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* forms/form_maths_panel.fd (label): replace label "Greek" by
|
||||
"abg" for alpha beta gamma.
|
||||
|
||||
* forms/form_tabular.fd (label):
|
||||
* FormDocument.C (build): remove use of latin1 in
|
||||
some translatable strings. This confuses gettext.
|
||||
|
||||
2003-11-20 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* ColorHandler.C (ctor):
|
||||
|
@ -289,7 +289,7 @@ void FormDocument::build()
|
||||
|
||||
fl_addto_choice(language_->choice_quotes_language,
|
||||
_(" ``text'' | ''text'' | ,,text`` | ,,text'' |"
|
||||
" «text» | »text« ").c_str());
|
||||
" <<text>> | >>text<< ").c_str());
|
||||
|
||||
// the document options form
|
||||
options_.reset(build_document_options(this));
|
||||
|
@ -78,7 +78,7 @@ alignment: FL_ALIGN_CENTER
|
||||
style: 15
|
||||
size: FL_NORMAL_SIZE
|
||||
lcol: FL_BLACK
|
||||
label: Greek
|
||||
label: abg
|
||||
shortcut:
|
||||
resize: FL_RESIZE_ALL
|
||||
gravity: FL_NoGravity FL_NoGravity
|
||||
|
@ -281,7 +281,7 @@ alignment: FL_ALIGN_CENTER
|
||||
style: FL_NORMAL_STYLE
|
||||
size: FL_DEFAULT_SIZE
|
||||
lcol: FL_BLACK
|
||||
label: Rotate 90°|#9
|
||||
label: Rotate 90 deg|#9
|
||||
shortcut:
|
||||
resize: FL_RESIZE_ALL
|
||||
gravity: FL_NoGravity FL_NoGravity
|
||||
@ -1197,7 +1197,7 @@ alignment: FL_ALIGN_CENTER
|
||||
style: FL_NORMAL_STYLE
|
||||
size: FL_DEFAULT_SIZE
|
||||
lcol: FL_BLACK
|
||||
label: Rotate 90°|#9
|
||||
label: Rotate 90 deg|#9
|
||||
shortcut:
|
||||
resize: FL_RESIZE_ALL
|
||||
gravity: FL_NoGravity FL_NoGravity
|
||||
|
Loading…
Reference in New Issue
Block a user