summaryrefslogtreecommitdiff
path: root/gcc/po
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/po')
-rwxr-xr-xgcc/po/ChangeLog0
-rwxr-xr-xgcc/po/Makefile.in.in249
-rwxr-xr-xgcc/po/POTFILES.in816
-rwxr-xr-xgcc/po/en_UK.po491
4 files changed, 0 insertions, 1556 deletions
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
deleted file mode 100755
index e69de29..0000000
--- a/gcc/po/ChangeLog
+++ /dev/null
diff --git a/gcc/po/Makefile.in.in b/gcc/po/Makefile.in.in
deleted file mode 100755
index 746d521..0000000
--- a/gcc/po/Makefile.in.in
+++ /dev/null
@@ -1,249 +0,0 @@
-# Makefile for program source directory in GNU NLS utilities package.
-# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
-#
-# This file file be copied and used freely without restrictions. It can
-# be used in projects which are not available under the GNU Public License
-# but which still want to provide support for the GNU gettext functionality.
-# Please note that the actual code is *not* freely available.
-
-PACKAGE = @PACKAGE@
-VERSION = @VERSION@
-
-SHELL = /bin/sh
-@SET_MAKE@
-
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-VPATH = @srcdir@
-
-prefix = @prefix@
-exec_prefix = @exec_prefix@
-datadir = $(prefix)/@DATADIRNAME@
-localedir = $(datadir)/locale
-gnulocaledir = $(prefix)/share/locale
-gettextsrcdir = $(prefix)/share/gettext/po
-subdir = po
-
-INSTALL = @INSTALL@
-INSTALL_DATA = @INSTALL_DATA@
-MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
-
-CC = @CC@
-GENCAT = @GENCAT@
-GMSGFMT = PATH=../src:$$PATH @GMSGFMT@
-MSGFMT = @MSGFMT@
-XGETTEXT = PATH=../src:$$PATH @XGETTEXT@
-MSGMERGE = PATH=../src:$$PATH msgmerge
-
-DEFS = @DEFS@
-CFLAGS = @CFLAGS@
-CPPFLAGS = @CPPFLAGS@
-
-INCLUDES = -I.. -I$(top_srcdir)/intl
-
-COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
-
-SOURCES = cat-id-tbl.c
-POFILES = @POFILES@
-GMOFILES = @GMOFILES@
-DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
-stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
-
-POTFILES = \
-
-CATALOGS = @CATALOGS@
-CATOBJEXT = @CATOBJEXT@
-INSTOBJEXT = @INSTOBJEXT@
-
-.SUFFIXES:
-.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
-
-.c.o:
- $(COMPILE) $<
-
-.po.pox:
- $(MAKE) $(srcdir)/$(PACKAGE).pot
- $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
-
-.po.mo:
- $(MSGFMT) -o $@ $<
-
-.po.gmo:
- file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
- && rm -f $$file && $(GMSGFMT) -o $$file $<
-
-.po.cat:
- sed -f ../intl/po2msg.sed < $< > $*.msg \
- && rm -f $@ && $(GENCAT) $@ $*.msg
-
-
-all: all-@USE_NLS@
-
-all-yes: $(srcdir)/cat-id-tbl.c $(CATALOGS)
-all-no:
-
-$(srcdir)/$(PACKAGE).pot: $(POTFILES)
- $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
- --add-comments --keyword=_ --keyword=N_ \
- --files-from=$(srcdir)/POTFILES.in \
- && test ! -f $(PACKAGE).po \
- || ( rm -f $(srcdir)/$(PACKAGE).pot \
- && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
-
-$(srcdir)/cat-id-tbl.c: $(srcdir)/stamp-cat-id; @:
-$(srcdir)/stamp-cat-id: $(srcdir)/$(PACKAGE).pot
- rm -f cat-id-tbl.tmp
- sed -f ../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \
- | sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp
- if cmp -s cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; then \
- rm cat-id-tbl.tmp; \
- else \
- echo cat-id-tbl.c changed; \
- rm -f $(srcdir)/cat-id-tbl.c; \
- mv cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; \
- fi
- cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id
-
-
-install: install-exec install-data
-install-exec:
-install-data: install-data-@USE_NLS@
-install-data-no: all
-install-data-yes: all
- if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(datadir); \
- else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
- fi
- @catalogs='$(CATALOGS)'; \
- for cat in $$catalogs; do \
- cat=`basename $$cat`; \
- case "$$cat" in \
- *.gmo) destdir=$(gnulocaledir);; \
- *) destdir=$(localedir);; \
- esac; \
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- dir=$$destdir/$$lang/LC_MESSAGES; \
- if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $$dir; \
- else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
- fi; \
- if test -r $$cat; then \
- $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
- echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
- else \
- $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
- echo "installing $(srcdir)/$$cat as" \
- "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
- fi; \
- if test -r $$cat.m; then \
- $(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
- echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
- else \
- if test -r $(srcdir)/$$cat.m ; then \
- $(INSTALL_DATA) $(srcdir)/$$cat.m \
- $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
- echo "installing $(srcdir)/$$cat as" \
- "$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
- else \
- true; \
- fi; \
- fi; \
- done
- if test "$(PACKAGE)" = "gettext"; then \
- if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(gettextsrcdir); \
- else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
- fi; \
- $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
- $(gettextsrcdir)/Makefile.in.in; \
- else \
- : ; \
- fi
-
-# Define this as empty until I found a useful application.
-installcheck:
-
-uninstall:
- catalogs='$(CATALOGS)'; \
- for cat in $$catalogs; do \
- cat=`basename $$cat`; \
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
- rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
- rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
- rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
- done
- rm -f $(gettextsrcdir)/po-Makefile.in.in
-
-check: all
-
-cat-id-tbl.o: $(srcdir)/cat-id-tbl.c $(top_srcdir)/intl/libgettext.h
- $(COMPILE) $(srcdir)/cat-id-tbl.c
-
-dvi info tags TAGS ID:
-
-mostlyclean:
- rm -f core core.* *.pox $(PACKAGE).po *.old.po cat-id-tbl.tmp
- rm -fr *.o
-
-clean: mostlyclean
-
-distclean: clean
- rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
-
-maintainer-clean: distclean
- @echo "This command is intended for maintainers to use;"
- @echo "it deletes files that may require special tools to rebuild."
- rm -f $(GMOFILES) cat-id-tbl.c stamp-cat-id
-
-distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
-dist distdir: update-po $(DISTFILES)
- dists="$(DISTFILES)"; \
- for file in $$dists; do \
- ln $(srcdir)/$$file $(distdir) 2> /dev/null \
- || cp -p $(srcdir)/$$file $(distdir); \
- done
-
-update-po: Makefile
- $(MAKE) $(srcdir)/$(PACKAGE).pot
- PATH=`pwd`/../src:$$PATH; \
- cd $(srcdir); \
- catalogs='$(CATALOGS)'; \
- for cat in $$catalogs; do \
- cat=`basename $$cat`; \
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- mv $$lang.po $$lang.old.po; \
- echo "$$lang:"; \
- if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
- rm -f $$lang.old.po; \
- else \
- echo "msgmerge for $$cat failed!"; \
- rm -f $$lang.po; \
- mv $$lang.old.po $$lang.po; \
- fi; \
- done
-
-POTFILES: POTFILES.in
- ( if test 'x$(srcdir)' != 'x.'; then \
- posrcprefix='$(top_srcdir)/'; \
- else \
- posrcprefix="../"; \
- fi; \
- rm -f $@-t $@ \
- && (sed -e '/^#/d' -e '/^[ ]*$$/d' \
- -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
- | sed -e '$$s/\\$$//') > $@-t \
- && chmod a-w $@-t \
- && mv $@-t $@ )
-
-Makefile: Makefile.in.in ../config.status POTFILES
- cd .. \
- && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
- $(SHELL) ./config.status
-
-# Tell versions [3.59,3.63) of GNU make not to export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/gcc/po/POTFILES.in b/gcc/po/POTFILES.in
deleted file mode 100755
index a072713..0000000
--- a/gcc/po/POTFILES.in
+++ /dev/null
@@ -1,816 +0,0 @@
-# List of files that contain translatable strings.
-# Copyright 1998 Free Software Foundation, Inc.
-
-# This file is part of GNU CC.
-
-# GNU CC is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-
-# GNU CC is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with GNU CC; see the file COPYING. If not, write to
-# the Free Software Foundation, 59 Temple Place - Suite 330,
-# Boston MA 02111-1307, USA.
-
-
-# This should list all .c and .h files in this distribution.
-# Files that are intentionally excluded should be commented out, not removed.
-# To exclude a file, prepend a '#' to its name, and follow it by a space
-# and a comment as to why it was excluded.
-
-# By convention, if any file included in this list defines a function
-# with an argument whose name ends in `msgid', that function
-# is expected to translate the argument before presenting it to the user.
-# ../exgettext uses this convention to scan for strings that need translation.
-# A function can have at most one msgid argument.
-# Two functions with the same name in different programs
-# must agree about which argument (if any) is a msgid.
-
-# Here are some reasons why a file might be commented-out in the list below:
-
-# It is part of the GCC library.
-
-# It is part of the translation machinery itself.
-
-# It is meant to be executed only by GCC maintainers or installers.
-# Such files do not need to be translated,
-# as these people typically need to be able to read English anyway.
-
-# It is not yet internationalized, because it contains many strings
-# that require a lot of analysis, and the file is little-used.
-
-
-acconfig.h
-alloca.c
-assert.h
-basic-block.h
-bc-emit.c
-bc-emit.h
-bc-optab.c
-bc-optab.h
-bc-typecd.h
-bi-arity.c
-bi-defs.h
-bi-lexer.c
-bi-opcode.c
-bi-opname.c
-bi-parser.c
-bi-parser.h
-bi-reverse.c
-bi-run.h
-bitmap.c
-bitmap.h
-bytecode.h
-bytetypes.h
-c-aux-info.c
-c-common.c
-c-convert.c
-c-decl.c
-c-gperf.h
-c-iterate.c
-c-lang.c
-c-lex.c
-c-lex.h
-c-parse.c
-c-parse.h
-c-pragma.c
-c-pragma.h
-c-tree.h
-c-typeck.c
-caller-save.c
-calls.c
-cccp.c
-cexp.c
-choose-temp.c
-collect2.c
-combine.c
-conditions.h
-config/a29k/a29k.c
-config/a29k/a29k.h
-config/a29k/udi.h
-config/a29k/unix.h
-config/a29k/vx29k.h
-config/a29k/xm-a29k.h
-config/alpha/alpha.c
-config/alpha/alpha.h
-config/alpha/elf.h
-config/alpha/linux.h
-config/alpha/osf12.h
-config/alpha/osf2or3.h
-config/alpha/vms.h
-config/alpha/vxworks.h
-config/alpha/win-nt.h
-config/alpha/xm-alpha.h
-config/alpha/xm-vms.h
-config/alpha/xm-winnt.h
-config/aoutos.h
-config/arc/arc.c
-config/arc/arc.h
-config/arc/initfini.c
-config/arc/xm-arc.h
-config/arm/aof.h
-config/arm/aout.h
-config/arm/arm.c
-config/arm/arm.h
-config/arm/coff.h
-config/arm/linux-gas.h
-config/arm/linux.h
-config/arm/netbsd.h
-config/arm/riscix.h
-config/arm/riscix1-1.h
-config/arm/rix-gas.h
-config/arm/semi.h
-config/arm/semiaof.h
-config/arm/xm-arm.h
-config/clipper/clipper.c
-config/clipper/clipper.h
-config/clipper/clix.h
-config/clipper/xm-clix.h
-config/convex/convex.c
-config/convex/convex.h
-config/convex/xm-convex.h
-config/dbx.h
-config/dbxcoff.h
-config/dsp16xx/dsp16xx.c
-config/dsp16xx/dsp16xx.h
-config/dsp16xx/xm-dsp16xx.h
-config/elxsi/elxsi.c
-config/elxsi/elxsi.h
-config/elxsi/xm-elxsi.h
-config/float-i128.h
-config/float-i32.h
-config/float-i64.h
-config/float-sh.h
-config/float-vax.h
-config/fp-bit.c
-config/fx80/fx80.c
-config/fx80/fx80.h
-config/fx80/xm-fx80.h
-config/gmicro/gmicro.c
-config/gmicro/gmicro.h
-config/gnu.h
-config/gofast.h
-config/h8300/h8300.c
-config/h8300/h8300.h
-config/h8300/xm-h8300.h
-config/i370/i370.c
-config/i370/i370.h
-config/i370/xm-i370.h
-config/i386/aix386.h
-config/i386/aix386ng.h
-config/i386/att.h
-config/i386/bsd.h
-config/i386/bsd386.h
-config/i386/crtdll.h
-config/i386/cygwin32.h
-config/i386/dgux.c
-config/i386/dgux.h
-config/i386/freebsd-elf.h
-config/i386/freebsd.h
-config/i386/gas.h
-config/i386/gmon-sol2.c
-config/i386/gnu.h
-config/i386/go32-rtems.h
-config/i386/go32.h
-config/i386/gstabs.h
-config/i386/i386-aout.h
-config/i386/i386-coff.h
-config/i386/i386.c
-config/i386/i386.h
-config/i386/isc.h
-config/i386/isccoff.h
-config/i386/iscdbx.h
-config/i386/linux-aout.h
-config/i386/linux-oldld.h
-config/i386/linux.h
-config/i386/lynx-ng.h
-config/i386/lynx.h
-config/i386/mach.h
-config/i386/mingw32.h
-config/i386/moss.h
-config/i386/netbsd.h
-config/i386/next.h
-config/i386/os2.h
-config/i386/osf1elf.h
-config/i386/osf1elfgdb.h
-config/i386/osfelf.h
-config/i386/osfrose.h
-config/i386/perform.h
-config/i386/ptx4-i.h
-config/i386/rtems.h
-config/i386/rtemself.h
-config/i386/sco.h
-config/i386/sco4.h
-config/i386/sco4dbx.h
-config/i386/sco5.h
-config/i386/scodbx.h
-config/i386/seq-gas.h
-config/i386/seq-sysv3.h
-config/i386/seq2-sysv3.h
-config/i386/sequent.h
-config/i386/sol2.h
-config/i386/sol2dbg.h
-config/i386/sun.h
-config/i386/sun386.h
-config/i386/svr3dbx.h
-config/i386/svr3gas.h
-config/i386/sysv3.h
-config/i386/sysv4.h
-config/i386/unix.h
-config/i386/v3gas.h
-config/i386/vsta.h
-config/i386/win-nt.h
-config/i386/winnt.c
-config/i386/xm-aix.h
-config/i386/xm-cygwin32.h
-config/i386/xm-dos.h
-config/i386/xm-go32.h
-config/i386/xm-i386.h
-config/i386/xm-isc.h
-config/i386/xm-lynx.h
-config/i386/xm-mingw32.h
-config/i386/xm-next.h
-config/i386/xm-os2.h
-config/i386/xm-osf.h
-config/i386/xm-osf1elf.h
-config/i386/xm-sco.h
-config/i386/xm-sco5.h
-config/i386/xm-sysv4.h
-config/i386/xm-vsta.h
-config/i860/bsd-gas.h
-config/i860/bsd.h
-config/i860/fx2800.h
-config/i860/i860.c
-config/i860/i860.h
-config/i860/mach.h
-config/i860/paragon.h
-config/i860/sysv3.h
-config/i860/sysv4.h
-config/i860/xm-i860.h
-config/i960/i960-coff.h
-config/i960/i960.c
-config/i960/i960.h
-config/i960/rtems.h
-config/i960/vx960-coff.h
-config/i960/vx960.h
-config/i960/xm-i960.h
-config/libgloss.h
-config/linux-aout.h
-config/linux.h
-config/lynx-ng.h
-config/lynx.h
-config/m32r/initfini.c
-config/m32r/m32r.c
-config/m32r/m32r.h
-config/m32r/xm-m32r.h
-config/m68k/a-ux.h
-config/m68k/altos3068.h
-config/m68k/amix.h
-config/m68k/apollo68.h
-config/m68k/atari.h
-config/m68k/aux-crt1.c
-config/m68k/aux-exit.c
-config/m68k/aux-mcount.c
-config/m68k/auxas.h
-config/m68k/auxgas.h
-config/m68k/auxgld.h
-config/m68k/auxld.h
-config/m68k/ccur-GAS.h
-config/m68k/coff.h
-config/m68k/crds.h
-config/m68k/ctix.h
-config/m68k/dpx2.h
-config/m68k/dpx2cdbx.h
-config/m68k/dpx2g.h
-config/m68k/fpgnulib.c
-config/m68k/hp2bsd.h
-config/m68k/hp310.h
-config/m68k/hp310g.h
-config/m68k/hp320.h
-config/m68k/hp320g.h
-config/m68k/hp3bsd.h
-config/m68k/hp3bsd44.h
-config/m68k/hpux7.h
-config/m68k/isi-nfp.h
-config/m68k/isi.h
-config/m68k/linux-aout.h
-config/m68k/linux.h
-config/m68k/lynx-ng.h
-config/m68k/lynx.h
-config/m68k/m68k-aout.h
-config/m68k/m68k-coff.h
-config/m68k/m68k-none.h
-config/m68k/m68k-psos.h
-config/m68k/m68k.c
-config/m68k/m68k.h
-config/m68k/m68kemb.h
-config/m68k/m68kv4.h
-config/m68k/mot3300.h
-config/m68k/netbsd.h
-config/m68k/news.h
-config/m68k/news3.h
-config/m68k/news3gas.h
-config/m68k/newsgas.h
-config/m68k/next.h
-config/m68k/next21.h
-config/m68k/pbb.h
-config/m68k/plexus.h
-config/m68k/rtems.h
-config/m68k/sgs.h
-config/m68k/sun2.h
-config/m68k/sun2o4.h
-config/m68k/sun3.h
-config/m68k/sun3mach.h
-config/m68k/sun3n.h
-config/m68k/sun3n3.h
-config/m68k/sun3o3.h
-config/m68k/tower-as.h
-config/m68k/tower.h
-config/m68k/vxm68k.h
-config/m68k/xm-3b1.h
-config/m68k/xm-atari.h
-config/m68k/xm-crds.h
-config/m68k/xm-lynx.h
-config/m68k/xm-m68k.h
-config/m68k/xm-mot3300.h
-config/m68k/xm-next.h
-config/m68k/xm-plexus.h
-config/m88k/dgux.h
-config/m88k/dguxbcs.h
-config/m88k/dolph.h
-config/m88k/luna.h
-config/m88k/m88k-aout.h
-config/m88k/m88k-coff.h
-config/m88k/m88k.c
-config/m88k/m88k.h
-config/m88k/sysv3.h
-config/m88k/sysv4.h
-config/m88k/tekXD88.h
-config/m88k/xm-m88k.h
-config/m88k/xm-sysv3.h
-config/mips/abi64.h
-config/mips/bsd-4.h
-config/mips/bsd-5.h
-config/mips/cross64.h
-config/mips/dec-bsd.h
-config/mips/dec-osf1.h
-config/mips/ecoff.h
-config/mips/ecoffl.h
-config/mips/elf.h
-config/mips/elf64.h
-config/mips/elfl.h
-config/mips/elfl64.h
-config/mips/elforion.h
-config/mips/gnu.h
-config/mips/iris3.h
-config/mips/iris4.h
-config/mips/iris4loser.h
-config/mips/iris5.h
-config/mips/iris5gas.h
-config/mips/iris6.h
-config/mips/mips-5.h
-config/mips/mips.c
-config/mips/mips.h
-config/mips/netbsd.h
-config/mips/news4.h
-config/mips/news5.h
-config/mips/osfrose.h
-config/mips/r3900.h
-config/mips/rtems64.h
-config/mips/sni-gas.h
-config/mips/sni-svr4.h
-config/mips/svr3-4.h
-config/mips/svr3-5.h
-config/mips/svr4-4.h
-config/mips/svr4-5.h
-config/mips/svr4-t.h
-config/mips/ultrix.h
-config/mips/xm-iris6.h
-config/mips/xm-mips.h
-config/mn10200/divmod.c
-config/mn10200/mn10200.c
-config/mn10200/mn10200.h
-config/mn10200/udivmod.c
-config/mn10200/udivmodsi4.c
-config/mn10200/xm-mn10200.h
-config/mn10300/mn10300.c
-config/mn10300/mn10300.h
-config/mn10300/xm-mn10300.h
-config/msdos/mklibgcc.c
-config/netbsd.h
-config/nextstep.c
-config/nextstep.h
-config/nextstep21.h
-config/ns32k/encore.h
-config/ns32k/genix.h
-config/ns32k/merlin.h
-config/ns32k/netbsd.h
-config/ns32k/ns32k.c
-config/ns32k/ns32k.h
-config/ns32k/pc532-mach.h
-config/ns32k/pc532-min.h
-config/ns32k/pc532.h
-config/ns32k/sequent.h
-config/ns32k/tek6000.h
-config/ns32k/tek6100.h
-config/ns32k/tek6200.h
-config/ns32k/xm-ns32k.h
-config/ns32k/xm-pc532-min.h
-config/pa/pa-gas.h
-config/pa/pa-hiux.h
-config/pa/pa-hpux.h
-config/pa/pa-hpux10.h
-config/pa/pa-hpux7.h
-config/pa/pa-hpux9.h
-config/pa/pa-oldas.h
-config/pa/pa-osf.h
-config/pa/pa-pro-end.h
-config/pa/pa-pro.h
-config/pa/pa.c
-config/pa/pa.h
-config/pa/pa1.h
-config/pa/rtems.h
-config/pa/xm-pa.h
-config/pa/xm-pahpux.h
-config/pa/xm-papro.h
-config/pdp11/pdp11.c
-config/pdp11/pdp11.h
-config/pdp11/xm-pdp11.h
-config/psos.h
-config/ptx4.h
-config/pyr/pyr.c
-config/pyr/pyr.h
-config/pyr/xm-pyr.h
-config/romp/romp.c
-config/romp/romp.h
-config/romp/xm-romp.h
-config/rs6000/aix31.h
-config/rs6000/aix3newas.h
-config/rs6000/aix41.h
-config/rs6000/cygwin32.h
-config/rs6000/eabi-ctors.c
-config/rs6000/eabi.h
-config/rs6000/eabiaix.h
-config/rs6000/eabile.h
-config/rs6000/eabilesim.h
-config/rs6000/eabisim.h
-config/rs6000/linux.h
-config/rs6000/lynx.h
-config/rs6000/mach.h
-config/rs6000/netware.h
-config/rs6000/powerpc.h
-config/rs6000/rs6000.c
-config/rs6000/rs6000.h
-config/rs6000/rtems.h
-config/rs6000/sol-c0.c
-config/rs6000/sol2.h
-config/rs6000/sysv4.h
-config/rs6000/sysv4le.h
-config/rs6000/vxppc.h
-config/rs6000/win-nt.h
-config/rs6000/xm-cygwin32.h
-config/rs6000/xm-lynx.h
-config/rs6000/xm-mach.h
-config/rs6000/xm-rs6000.h
-config/rs6000/xm-sysv4.h
-config/sh/elf.h
-config/sh/rtems.h
-config/sh/sh.c
-config/sh/sh.h
-config/sh/xm-sh.h
-config/sparc/aout.h
-config/sparc/bsd.h
-config/sparc/elf.h
-config/sparc/gmon-sol2.c
-config/sparc/hal.h
-config/sparc/linux-aout.h
-config/sparc/linux.h
-config/sparc/linux64.h
-config/sparc/lite.h
-config/sparc/litecoff.h
-config/sparc/lynx-ng.h
-config/sparc/lynx.h
-config/sparc/netbsd.h
-config/sparc/pbd.h
-config/sparc/rtems.h
-config/sparc/sol2-sld.h
-config/sparc/sol2.h
-config/sparc/sp64-aout.h
-config/sparc/sp64-elf.h
-config/sparc/sparc.c
-config/sparc/sparc.h
-config/sparc/splet.h
-config/sparc/sun4gas.h
-config/sparc/sun4o3.h
-config/sparc/sunos4.h
-config/sparc/sysv4.h
-config/sparc/vxsim.h
-config/sparc/vxsparc.h
-config/sparc/xm-linux.h
-config/sparc/xm-lynx.h
-config/sparc/xm-sol2.h
-config/sparc/xm-sp64.h
-config/sparc/xm-sparc.h
-config/sparc/xm-sysv4.h
-config/spur/spur.c
-config/spur/spur.h
-config/spur/xm-spur.h
-config/svr3.h
-config/svr4.h
-config/tahoe/harris.h
-config/tahoe/tahoe.c
-config/tahoe/tahoe.h
-config/tahoe/xm-tahoe.h
-config/v850/v850.c
-config/v850/v850.h
-config/v850/xm-v850.h
-config/vax/netbsd.h
-config/vax/ultrix.h
-config/vax/vax.c
-config/vax/vax.h
-config/vax/vaxv.h
-config/vax/vms.h
-config/vax/xm-vax.h
-config/vax/xm-vms.h
-config/we32k/we32k.c
-config/we32k/we32k.h
-config/we32k/xm-we32k.h
-config/winnt/dirent.c
-config/winnt/dirent.h
-config/winnt/fixinc-nt.c
-config/winnt/ld.c
-config/winnt/mklibgcc.c
-config/winnt/oldnames.c
-config/winnt/spawnv.c
-config/winnt/win-nt.h
-config/winnt/xm-winnt.h
-config/xm-alloca.h
-config/xm-gnu.h
-config/xm-lynx.h
-config/xm-siglist.h
-config/xm-std32.h
-convert.c
-convert.h
-cp/call.c
-cp/class.c
-cp/class.h
-cp/cp-tree.h
-cp/cvt.c
-cp/decl.c
-cp/decl.h
-cp/decl2.c
-cp/errfn.c
-cp/error.c
-cp/except.c
-cp/expr.c
-cp/friend.c
-cp/g++spec.c
-cp/hash.h
-cp/inc/new.h
-cp/init.c
-cp/input.c
-cp/lang-options.h
-cp/lang-specs.h
-cp/lex.c
-cp/lex.h
-cp/method.c
-cp/parse.c
-cp/parse.h
-cp/pt.c
-cp/ptree.c
-cp/repo.c
-cp/rtti.c
-cp/search.c
-cp/sig.c
-cp/spew.c
-cp/tinfo.h
-cp/tree.c
-cp/typeck.c
-cp/typeck2.c
-cp/xref.c
-cplus-dem.c
-cppalloc.c
-cpperror.c
-cppexp.c
-cpphash.c
-cpphash.h
-cpplib.c
-cpplib.h
-cppmain.c
-#crtstuff.c is part of the GCC library
-cse.c
-dbxout.c
-dbxstclass.h
-defaults.h
-demangle.h
-doschk.c
-dwarf.h
-dwarf2.h
-dwarf2out.c
-dwarfout.c
-emit-rtl.c
-#enquire.c is used only by GCC maintainers and installers
-except.c
-except.h
-explow.c
-expmed.c
-expr.c
-expr.h
-final.c
-#fix-header.c is used only by GCC maintainers and installers
-flags.h
-floatlib.c
-flow.c
-fold-const.c
-fp-test.c
-frame.c
-#frame.h is part of the GCC library
-function.c
-function.h
-gansidecl.h
-#gbl-ctors.h is part of the GCC library
-gcc.c
-gcov-io.h
-gcov.c
-#gen-protos.c is used only by GCC maintainers and installers
-#genattr.c is used only by GCC maintainers and installers
-#genattrtab.c is used only by GCC maintainers and installers
-#gencheck.c is used only by GCC maintainers and installers
-#gencodes.c is used only by GCC maintainers and installers
-#genconfig.c is used only by GCC maintainers and installers
-#genemit.c is used only by GCC maintainers and installers
-#genextract.c is used only by GCC maintainers and installers
-#genflags.c is used only by GCC maintainers and installers
-#genopinit.c is used only by GCC maintainers and installers
-#genoutput.c is used only by GCC maintainers and installers
-#genpeep.c is used only by GCC maintainers and installers
-#genrecog.c is used only by GCC maintainers and installers
-getopt.c
-getopt.h
-getopt1.c
-getpwd.c
-ginclude/iso646.h
-ginclude/math-3300.h
-ginclude/math-68881.h
-ginclude/ppc-asm.h
-ginclude/proto.h
-ginclude/stdarg.h
-ginclude/stddef.h
-ginclude/va-alpha.h
-ginclude/va-arc.h
-ginclude/va-clipper.h
-ginclude/va-h8300.h
-ginclude/va-i860.h
-ginclude/va-i960.h
-ginclude/va-m32r.h
-ginclude/va-m88k.h
-ginclude/va-mips.h
-ginclude/va-mn10200.h
-ginclude/va-mn10300.h
-ginclude/va-pa.h
-ginclude/va-ppc.h
-ginclude/va-pyr.h
-ginclude/va-sh.h
-ginclude/va-sparc.h
-ginclude/va-spur.h
-ginclude/va-v850.h
-ginclude/varargs.h
-glimits.h
-global.c
-gmon.c
-gstab.h
-gsyms.h
-gsyslimits.h
-halfpic.c
-halfpic.h
-hard-reg-set.h
-input.h
-integrate.c
-integrate.h
-intl.c
-intl.h
-intl/bindtextdom.c
-intl/cat-compat.c
-intl/dcgettext.c
-intl/dgettext.c
-intl/explodename.c
-intl/finddomain.c
-intl/gettext.c
-intl/gettext.h
-intl/gettextP.h
-intl/hash-string.h
-intl/intl-compat.c
-intl/l10nflist.c
-intl/libgettext.h
-intl/loadinfo.h
-intl/loadmsgcat.c
-intl/localealias.c
-intl/textdomain.c
-jump.c
-#libgcc1-test.c is used only by GCC maintainers and installers
-#libgcc1.c is part of the GCC library
-#libgcc2.c is part of the GCC library
-limitx.h
-limity.h
-local-alloc.c
-#longlong.h is part of the GCC library
-loop.c
-loop.h
-machmode.h
-#mips-tdump.c is not yet internationalized
-#mips-tfile.c is not yet internationalized
-objc/NXConstStr.h
-objc/Object.h
-objc/Protocol.h
-objc/archive.c
-objc/class.c
-objc/encoding.c
-objc/encoding.h
-objc/hash.c
-objc/hash.h
-objc/init.c
-objc/libobjc_entry.c
-objc/misc.c
-objc/nil_method.c
-objc/objc-act.c
-objc/objc-act.h
-objc/objc-api.h
-objc/objc-list.h
-objc/objc-parse.c
-objc/objc.h
-objc/objects.c
-objc/runtime.h
-objc/sarray.c
-objc/sarray.h
-objc/selector.c
-objc/sendmsg.c
-objc/thr-decosf1.c
-objc/thr-irix.c
-objc/thr-mach.c
-objc/thr-os2.c
-objc/thr-posix.c
-objc/thr-pthreads.c
-objc/thr-single.c
-objc/thr-solaris.c
-objc/thr-win32.c
-objc/thr.c
-objc/thr.h
-objc/typedstream.h
-obstack.c
-obstack.h
-optabs.c
-output.h
-pcp.h
-pexecute.c
-#po/cat-id-tbl.c contains the translation tables themselves
-prefix.c
-print-rtl.c
-print-tree.c
-profile.c
-protoize.c
-pself.c
-pself1.c
-pself2.c
-pself3.c
-real.c
-real.h
-recog.c
-recog.h
-reg-stack.c
-regclass.c
-regmove.c
-regs.h
-reload.c
-reload.h
-reload1.c
-reorg.c
-rtl.c
-rtl.h
-rtlanal.c
-#scan-decls.c is used only by GCC maintainers and installers
-#scan.c is used only by GCC maintainers and installers
-scan.h
-sched.c
-sdbout.c
-stack.h
-stmt.c
-stor-layout.c
-stupid.c
-sys-protos.h
-sys-types.h
-toplev.c
-tree.c
-tree.h
-typeclass.h
-unprotoize.c
-unroll.c
-varasm.c
-version.c
-xcoffout.c
-xcoffout.h
diff --git a/gcc/po/en_UK.po b/gcc/po/en_UK.po
deleted file mode 100755
index 829b7b5..0000000
--- a/gcc/po/en_UK.po
+++ /dev/null
@@ -1,491 +0,0 @@
-# British English messages for GNU CC
-# Copyright (C) 1998 Free Software Foundation, Inc.
-# Paul Eggert <eggert@twinsun.com>, 1998.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: cc 2.8.1.19980813\n"
-"POT-Creation-Date: 1998-07-26 00:33-0700\n"
-"PO-Revision-Date: 1998-09-27 21:34-0700\n"
-"Last-Translator: Paul Eggert <eggert@twinsun.com>\n"
-"Language-Team: English <en@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=us-ascii\n"
-"Content-Transfer-Encoding: 7bit\n"
-
-#: c-common.c:643
-msgid "unrecognized format specifier"
-msgstr "unrecognised format specifier"
-
-#: c-common.c:659
-#, c-format
-msgid "`%s' is an unrecognized format function type"
-msgstr "`%s' is an unrecognised format function type"
-
-#: c-decl.c:3673
-#, c-format
-msgid "typedef `%s' is initialized"
-msgstr "typedef `%s' is initialised"
-
-#: c-decl.c:3680
-#, c-format
-msgid "function `%s' is initialized like a variable"
-msgstr "function `%s' is initialised like a variable"
-
-#. DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.
-#: c-decl.c:3687
-#, c-format
-msgid "parameter `%s' is initialized"
-msgstr "parameter `%s' is initialised"
-
-#: c-decl.c:3702 c-typeck.c:4924
-msgid "variable-sized object may not be initialized"
-msgstr "variable-sized object may not be initialised"
-
-#: c-decl.c:3708
-#, c-format
-msgid "variable `%s' has initializer but incomplete type"
-msgstr "variable `%s' has initialiser but incomplete type"
-
-#: c-decl.c:3726
-#, c-format
-msgid "declaration of `%s' has `extern' and is initialized"
-msgstr "declaration of `%s' has `extern' and is initialised"
-
-#: c-decl.c:3865
-#, c-format
-msgid "initializer fails to determine size of `%s'"
-msgstr "initialiser fails to determine size of `%s'"
-
-#: c-decl.c:4626 cp/decl.c:8536
-#, c-format
-msgid "`%s' initialized and declared `extern'"
-msgstr "`%s' initialised and declared `extern'"
-
-#: c-decl.c:4628 cp/decl.c:8539
-#, c-format
-msgid "`%s' has both `extern' and initializer"
-msgstr "`%s' has both `extern' and initialiser"
-
-#: c-lex.c:406 cp/lex.c:2158
-msgid "stray '\\' in program"
-msgstr "stray '\\' in programme"
-
-#: c-lex.c:859
-msgid "unrecognized text at end of #line"
-msgstr "unrecognised text at end of #line"
-
-#: c-parse.y:1106 objc-parse.y:1212
-msgid "ANSI C forbids empty initializer braces"
-msgstr "ANSI C forbids empty initialiser braces"
-
-#: c-typeck.c:4544
-msgid "initializer for static variable is not constant"
-msgstr "initialiser for static variable is not constant"
-
-#: c-typeck.c:4550
-msgid "initializer for static variable uses complicated arithmetic"
-msgstr "initialiser for static variable uses complicated arithmetic"
-
-#: c-typeck.c:4558
-msgid "aggregate initializer is not constant"
-msgstr "aggregate initialiser is not constant"
-
-#: c-typeck.c:4560
-msgid "aggregate initializer uses complicated arithmetic"
-msgstr "aggregate initialiser uses complicated arithmetic"
-
-#: c-typeck.c:4724 c-typeck.c:4740 c-typeck.c:4756
-#, c-format
-msgid "(near initialization for `%s')"
-msgstr "(near initialisation for `%s')"
-
-#: c-typeck.c:4804 cp/typeck2.c:787
-msgid "char-array initialized from wide string"
-msgstr "char-array initialised from wide string"
-
-#: c-typeck.c:4811 cp/typeck2.c:794
-msgid "int-array initialized from non-wide string"
-msgstr "int-array initialised from non-wide string"
-
-#: c-typeck.c:4828 cp/typeck2.c:815
-msgid "initializer-string for array of chars is too long"
-msgstr "initialiser-string for array of chars is too long"
-
-#: c-typeck.c:4855
-msgid "array initialized from non-constant array expression"
-msgstr "array initialised from non-constant array expression"
-
-#: c-typeck.c:4872 c-typeck.c:4874 c-typeck.c:4880 c-typeck.c:4907
-#: c-typeck.c:6107
-msgid "initializer element is not constant"
-msgstr "initialiser element is not constant"
-
-#: c-typeck.c:4886 c-typeck.c:4913 c-typeck.c:6113
-msgid "initializer element is not computable at load time"
-msgstr "initialiser element is not computable at load time"
-
-#: c-typeck.c:4902
-msgid "initialization"
-msgstr "initialisation"
-
-#: c-typeck.c:4950 c-typeck.c:4966 cp/typeck2.c:893
-msgid "invalid initializer"
-msgstr "invalid initialiser"
-
-#: c-typeck.c:5444
-msgid "extra brace group at end of initializer"
-msgstr "extra brace group at end of initialiser"
-
-#: c-typeck.c:5456
-msgid "missing braces around initializer"
-msgstr "missing braces around initialiser"
-
-#: c-typeck.c:5486
-msgid "braces around scalar initializer"
-msgstr "braces around scalar initialiser"
-
-#: c-typeck.c:5560
-msgid "empty braces in initializer"
-msgstr "empty braces in initialiser"
-
-#: c-typeck.c:5624
-msgid "empty scalar initializer"
-msgstr "empty scalar initialiser"
-
-#: c-typeck.c:5629
-msgid "extra elements in scalar initializer"
-msgstr "extra elements in scalar initialiser"
-
-#: c-typeck.c:5763 c-typeck.c:5765
-msgid "nonconstant array index in initializer"
-msgstr "nonconstant array index in initialiser"
-
-#: c-typeck.c:5767
-msgid "array index in non-array initializer"
-msgstr "array index in non-array initialiser"
-
-#: c-typeck.c:5769
-msgid "duplicate array index in initializer"
-msgstr "duplicate array index in initialiser"
-
-#: c-typeck.c:5776
-msgid "empty index range in initializer"
-msgstr "empty index range in initialiser"
-
-#: c-typeck.c:5780
-msgid "ANSI C forbids specifying element to initialize"
-msgstr "ANSI C forbids specifying element to initialise"
-
-#: c-typeck.c:5810
-#, c-format
-msgid "unknown field `%s' specified in initializer"
-msgstr "unknown field `%s' specified in initialiser"
-
-#: c-typeck.c:5813
-#, c-format
-msgid "field `%s' already initialized"
-msgstr "field `%s' already initialised"
-
-#: c-typeck.c:5819
-msgid "ANSI C forbids specifying structure member to initialize"
-msgstr "ANSI C forbids specifying structure member to initialise"
-
-#: c-typeck.c:6129
-msgid "duplicate initializer"
-msgstr "duplicate initialiser"
-
-#: c-typeck.c:6475 c-typeck.c:6510
-msgid "excess elements in struct initializer"
-msgstr "excess elements in struct initialiser"
-
-#: c-typeck.c:6574
-msgid "excess elements in union initializer"
-msgstr "excess elements in union initialiser"
-
-#: c-typeck.c:6648 c-typeck.c:6659
-msgid "excess elements in array initializer"
-msgstr "excess elements in array initialiser"
-
-#: c-typeck.c:6710
-msgid "excess elements in scalar initializer"
-msgstr "excess elements in scalar initialiser"
-
-#: cccp.c:2708
-msgid "preprocessing directive not recognized within macro arg"
-msgstr "preprocessing directive not recognised within macro arg"
-
-#: config/h8300/h8300.c:2948 config/h8300/h8300.c:2960
-msgid "Only initialized variables can be placed into the 8-bit area."
-msgstr "Only initialised variables can be placed into the 8-bit area."
-
-#: config/nextstep.c:70
-msgid "optimization turned on"
-msgstr "optimisation turned on"
-
-#: config/nextstep.c:76
-msgid "optimization turned off"
-msgstr "optimisation turned off"
-
-#: config/nextstep.c:91
-msgid "optimization level restored"
-msgstr "optimisation level restored"
-
-#: cp/class.c:4897
-#, c-format
-msgid "language string `\"%s\"' not recognized"
-msgstr "language string `\"%s\"' not recognised"
-
-#: cp/decl.c:6372
-msgid "assignment (not initialization) in declaration"
-msgstr "assignment (not initialisation) in declaration"
-
-#: cp/decl.c:8913
-#, c-format
-msgid "can't initialize friend function `%s'"
-msgstr "can't initialise friend function `%s'"
-
-#: cp/decl.c:9385
-msgid "typedef declaration includes an initializer"
-msgstr "typedef declaration includes an initialiser"
-
-#: cp/decl2.c:1609
-msgid "function declarations cannot have initializers in signature"
-msgstr "function declarations cannot have initialisers in signature"
-
-#: cp/decl2.c:1655
-msgid "field initializer is not constant"
-msgstr "field initialiser is not constant"
-
-#: cp/decl2.c:1697
-msgid "initializer invalid for static member with constructor"
-msgstr "initialiser invalid for static member with constructor"
-
-#: cp/decl2.c:1699
-msgid "(you really want to initialize it separately)"
-msgstr "(you really want to initialise it separately)"
-
-#: cp/init.c:213
-msgid "initializer list treated as compound expression"
-msgstr "initialiser list treated as compound expression"
-
-#: cp/init.c:945
-msgid "base class initializer specified, but no base class to initialize"
-msgstr "base class initialiser specified, but no base class to initialise"
-
-#: cp/init.c:951
-msgid "initializer for unnamed base class ambiguous"
-msgstr "initialiser for unnamed base class ambiguous"
-
-#: cp/init.c:979
-msgid "no base class to initialize"
-msgstr "no base class to initialise"
-
-#: cp/init.c:1010
-msgid " will be re-ordered to precede member initializations"
-msgstr " will be re-ordered to precede member initialisations"
-
-#. Handle bad initializers like:
-#. class COMPLEX {
-#. public:
-#. double re, im;
-#. COMPLEX(double r = 0.0, double i = 0.0) {re = r; im = i;};
-#. ~COMPLEX() {};
-#. };
-#.
-#. int main(int argc, char **argv) {
-#. COMPLEX zees(1.0, 0.0)[10];
-#. }
-#.
-#: cp/init.c:1199
-msgid "bad array initializer"
-msgstr "bad array initialiser"
-
-#: cp/init.c:1519 cp/typeck.c:6093
-msgid "return value from function receives multiple initializations"
-msgstr "return value from function receives multiple initialisations"
-
-#: cp/init.c:1536 cp/init.c:2590 cp/typeck2.c:601 cp/typeck2.c:1445
-msgid "initializer list being treated as compound expression"
-msgstr "initialiser list being treated as compound expression"
-
-#: cp/init.c:2593
-msgid "initializer list appears where operand should be used"
-msgstr "initialiser list appears where operand should be used"
-
-#: cp/init.c:3069
-msgid "initialization of array from dissimilar array type"
-msgstr "initialisation of array from dissimilar array type"
-
-#: cp/init.c:3083
-msgid "initializer ends prematurely"
-msgstr "initialiser ends prematurely"
-
-#: cp/init.c:3116
-msgid "cannot initialize multi-dimensional array with initializer"
-msgstr "cannot initialise multi-dimensional array with initialiser"
-
-#: parse.y:763
-msgid "no base initializers given following ':'"
-msgstr "no base initialisers given following ':'"
-
-#: parse.y:786
-msgid "base initializers not allowed for non-member functions"
-msgstr "base initialisers not allowed for non-member functions"
-
-#: parse.y:788
-msgid "only constructors take base initializers"
-msgstr "only constructors take base initialisers"
-
-#: parse.y:805 parse.y:811
-msgid "anachronistic old style base class initializer"
-msgstr "anachronistic old style base class initialiser"
-
-#: parse.y:1182
-msgid "ANSI C++ forbids initialization of new expression with `='"
-msgstr "ANSI C++ forbids initialisation of new expression with `='"
-
-#: parse.y:4029
-msgid "ANSI C++ forbids compound statements inside for initializations"
-msgstr "ANSI C++ forbids compound statements inside for initialisations"
-
-#: cp/pt.c:504
-msgid "Explicit specialization not preceded by `template <>'"
-msgstr "Explicit specialisation not preceded by `template <>'"
-
-#: cp/tree.c:1609
-msgid "initializer contains unrecognized tree code"
-msgstr "initialiser contains unrecognised tree code"
-
-#: cp/typeck.c:189
-msgid "argument list may not have an initializer list"
-msgstr "argument list may not have an initialiser list"
-
-#: cp/typeck.c:2643
-msgid "ANSI C++ forbids calling `main' from within program"
-msgstr "ANSI C++ forbids calling `main' from within programme"
-
-#: cp/typeck2.c:576
-msgid "comma expression used to initialize return value"
-msgstr "comma expression used to initialise return value"
-
-#: cp/typeck2.c:592
-msgid "cannot initialize arrays using this syntax"
-msgstr "cannot initialise arrays using this syntax"
-
-#: cp/typeck2.c:658
-msgid "ANSI C++ forbids non-constant aggregate initializer expressions"
-msgstr "ANSI C++ forbids non-constant aggregate initialiser expressions"
-
-#: cp/typeck2.c:741 cp/typeck2.c:757
-msgid "ANSI C++ forbids initializing array from array expression"
-msgstr "ANSI C++ forbids initialising array from array expression"
-
-#: cp/typeck2.c:759
-msgid "ANSI C++ forbids single nonscalar initializer with braces"
-msgstr "ANSI C++ forbids single nonscalar initialiser with braces"
-
-#: cp/typeck2.c:802
-msgid "ANSI C++ forbids string initializer except for `char' elements"
-msgstr "ANSI C++ forbids string initialiser except for `char' elements"
-
-#: cp/typeck2.c:834
-msgid "initializer for scalar variable requires one element"
-msgstr "initialiser for scalar variable requires one element"
-
-#: cp/typeck2.c:931
-msgid "aggregate has a partly bracketed initializer"
-msgstr "aggregate has a partly bracketed initialiser"
-
-#: cp/typeck2.c:974
-msgid "non-empty initializer for array of empty elements"
-msgstr "non-empty initialiser for array of empty elements"
-
-#: cp/typeck2.c:1003
-msgid "initializer list for object of class with virtual baseclasses"
-msgstr "initialiser list for object of class with virtual baseclasses"
-
-#: cp/typeck2.c:1009
-msgid "initializer list for object of class with baseclasses"
-msgstr "initialiser list for object of class with baseclasses"
-
-#: cp/typeck2.c:1015
-msgid "initializer list for object using virtual functions"
-msgstr "initialiser list for object using virtual functions"
-
-#: cp/typeck2.c:1076
-#, c-format
-msgid "uninitialized const member `%s'"
-msgstr "uninitialised const member `%s'"
-
-#: cp/typeck2.c:1080
-#, c-format
-msgid "member `%s' with uninitialized const fields"
-msgstr "member `%s' with uninitialised const fields"
-
-#: cp/typeck2.c:1083
-#, c-format
-msgid "member `%s' is uninitialized reference"
-msgstr "member `%s' is uninitialised reference"
-
-#: cp/typeck2.c:1108
-msgid "index value instead of field name in union initializer"
-msgstr "index value instead of field name in union initialiser"
-
-#: cp/typeck2.c:1120
-#, c-format
-msgid "no field `%s' in union being initialized"
-msgstr "no field `%s' in union being initialised"
-
-#: cp/typeck2.c:1164
-msgid "excess elements in aggregate initializer"
-msgstr "excess elements in aggregate initialiser"
-
-#: function.c:4809
-#, c-format
-msgid "`%s' might be used uninitialized in this function"
-msgstr "`%s' might be used uninitialised in this function"
-
-#: gcc.c:2268
-#, c-format
-msgid "Internal compiler error: program %s got fatal signal %d"
-msgstr "Internal compiler error: programme %s got fatal signal %d"
-
-#: gcc.c:4606
-#, c-format
-msgid "unrecognized option `-%s'"
-msgstr "unrecognised option `-%s'"
-
-#: gcc.c:4862
-#, c-format
-msgid "language %s not recognized"
-msgstr "language %s not recognised"
-
-#: gcov.c:449
-#, c-format
-msgid "Could not open program flow graph file %s.\n"
-msgstr "Could not open programme flow graph file %s.\n"
-
-#. --option
-#: getopt.c:755
-#, c-format
-msgid "%s: unrecognized option `--%s'\n"
-msgstr "%s: unrecognised option `--%s'\n"
-
-#. +option or -option
-#: getopt.c:759
-#, c-format
-msgid "%s: unrecognized option `%c%s'\n"
-msgstr "%s: unrecognised option `%c%s'\n"
-
-#: tree.c:4771
-msgid "invalid initializer for bit string"
-msgstr "invalid initialiser for bit string"
-
-#: varasm.c:4086
-msgid "initializer for integer value is too complicated"
-msgstr "initialiser for integer value is too complicated"
-
-#: varasm.c:4092
-msgid "initializer for floating value is not a floating constant"
-msgstr "initialiser for floating value is not a floating constant"