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:
Jean-Marc Lasgouttes 2003-11-21 11:38:17 +00:00
parent 34c34fc02e
commit bd3c961ace
34 changed files with 254115 additions and 199458 deletions

View File

@ -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

View File

@ -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` > $@

View File

@ -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

20091
po/bg.po

File diff suppressed because it is too large Load Diff

19626
po/ca.po

File diff suppressed because it is too large Load Diff

19836
po/cs.po

File diff suppressed because it is too large Load Diff

20454
po/da.po

File diff suppressed because it is too large Load Diff

14860
po/de.po

File diff suppressed because it is too large Load Diff

18301
po/es.po

File diff suppressed because it is too large Load Diff

18552
po/eu.po

File diff suppressed because it is too large Load Diff

18337
po/fi.po

File diff suppressed because it is too large Load Diff

17612
po/fr.po

File diff suppressed because it is too large Load Diff

19273
po/he.po

File diff suppressed because it is too large Load Diff

18369
po/hu.po

File diff suppressed because it is too large Load Diff

19851
po/it.po

File diff suppressed because it is too large Load Diff

18723
po/nl.po

File diff suppressed because it is too large Load Diff

20469
po/nn.po

File diff suppressed because it is too large Load Diff

18551
po/no.po

File diff suppressed because it is too large Load Diff

17930
po/pl.po

File diff suppressed because it is too large Load Diff

20304
po/pt.po

File diff suppressed because it is too large Load Diff

18990
po/ro.po

File diff suppressed because it is too large Load Diff

18264
po/ru.po

File diff suppressed because it is too large Load Diff

18436
po/sk.po

File diff suppressed because it is too large Load Diff

19227
po/sl.po

File diff suppressed because it is too large Load Diff

17778
po/sv.po

File diff suppressed because it is too large Load Diff

19854
po/tr.po

File diff suppressed because it is too large Load Diff

19839
po/wa.po

File diff suppressed because it is too large Load Diff

View File

@ -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.

View File

@ -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) {

View File

@ -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" >

View File

@ -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):

View File

@ -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));

View File

@ -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

View File

@ -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