diff options
author | Pixel <> | 2001-02-28 11:40:25 +0000 |
---|---|---|
committer | Pixel <> | 2001-02-28 11:40:25 +0000 |
commit | 833d20a69fe17ab846c153e35230c66a41d8fca9 (patch) | |
tree | 180ba073e59fee8df22cb733be2eec4c452e1b85 /po |
Premier jetstart
Diffstat (limited to 'po')
-rw-r--r-- | po/ChangeLog | 0 | ||||
-rw-r--r-- | po/Makefile.in.in | 248 | ||||
-rw-r--r-- | po/POTFILES.in | 4 | ||||
-rw-r--r-- | po/PriorityLists.pot | 140 | ||||
-rw-r--r-- | po/cat-id-tbl.c | 57 | ||||
-rw-r--r-- | po/de.po | 140 | ||||
-rw-r--r-- | po/fr.po | 162 | ||||
-rw-r--r-- | po/stamp-cat-id | 1 |
8 files changed, 752 insertions, 0 deletions
diff --git a/po/ChangeLog b/po/ChangeLog new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/po/ChangeLog diff --git a/po/Makefile.in.in b/po/Makefile.in.in new file mode 100644 index 0000000..111b40f --- /dev/null +++ b/po/Makefile.in.in @@ -0,0 +1,248 @@ +# 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) $(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: 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: stamp-cat-id; @: +$(srcdir)/stamp-cat-id: $(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: ../intl/libgettext.h + +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) + +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) $(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/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..4a2746b --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,4 @@ +src/test.cc +lib/FHeap.cc +lib/BHeap.cc +lib/Hash.cc
\ No newline at end of file diff --git a/po/PriorityLists.pot b/po/PriorityLists.pot new file mode 100644 index 0000000..7446747 --- /dev/null +++ b/po/PriorityLists.pot @@ -0,0 +1,140 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2001-01-13 22:41+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" + +#: src/test.cc:32 +msgid "Creation of a priority list and adding " +msgstr "" + +#: src/test.cc:33 +msgid " random entrie(s)..." +msgstr "" + +#: src/test.cc:38 +msgid "" +"Ok.\n" +"Deleting the list..." +msgstr "" + +#: src/test.cc:43 src/test.cc:48 +msgid "List has " +msgstr "" + +#: src/test.cc:44 +msgid " keys. Expecting " +msgstr "" + +#: src/test.cc:45 src/test.cc:51 +msgid "List corrupted." +msgstr "" + +#: src/test.cc:49 +msgid " keys (real count). Expecting " +msgstr "" + +#: src/test.cc:55 src/test.cc:125 +msgid "Incorrect order." +msgstr "" + +#: src/test.cc:71 +msgid "Size of a PriorityList cell: " +msgstr "" + +#: src/test.cc:73 +msgid "Size of a BHeap cell : " +msgstr "" + +#: src/test.cc:74 +msgid "Size of a FHeap cell : " +msgstr "" + +#: src/test.cc:75 +msgid "Size of a PList header : " +msgstr "" + +#: src/test.cc:76 +msgid "Size of a CList cell : " +msgstr "" + +#: src/test.cc:77 +msgid "Size of a SList cell : " +msgstr "" + +#: src/test.cc:91 +msgid "Creating a priority list and adding keys:\n" +msgstr "" + +#: src/test.cc:103 src/test.cc:110 src/test.cc:114 +msgid "" +"Ok.\n" +"List browsing...\n" +msgstr "" + +#: src/test.cc:105 +msgid "" +"Ok.\n" +"Extract_Min + List browsing...\n" +msgstr "" + +#: src/test.cc:108 +msgid "" +"Ok.\n" +"Lower_Key(-12) over 59...\n" +msgstr "" + +#: src/test.cc:112 +msgid "" +"Ok.\n" +"Delete over 54...\n" +msgstr "" + +#: src/test.cc:118 +msgid "" +"Ok.\n" +"Extracting datas...\n" +msgstr "" + +#: src/test.cc:120 +msgid "Minimum #" +msgstr "" + +#: src/test.cc:128 +msgid "" +"Ok.\n" +"\n" +"All the tests were successfull\n" +msgstr "" + +#: lib/FHeap.cc:80 +msgid " * Head cell. (" +msgstr "" + +#: lib/BHeap.cc:130 lib/FHeap.cc:162 +msgid "Insert: not over Head." +msgstr "" + +#: lib/BHeap.cc:132 lib/BHeap.cc:147 lib/FHeap.cc:184 +msgid "Insert: No more memory." +msgstr "" + +#: lib/BHeap.cc:160 lib/FHeap.cc:194 +msgid "Extract_Min: Priority List is empty." +msgstr "" + +#: lib/BHeap.cc:13 +msgid "" +" * Head cell.\n" +" |\n" +msgstr "" diff --git a/po/cat-id-tbl.c b/po/cat-id-tbl.c new file mode 100644 index 0000000..395b400 --- /dev/null +++ b/po/cat-id-tbl.c @@ -0,0 +1,57 @@ +/* Automatically generated by po2tbl.sed from PriorityLists.pot. */ + +#if HAVE_CONFIG_H +# include <config.h> +#endif + +#include "libgettext.h" + +const struct _msg_ent _msg_tbl[] = { + {"", 1}, + {"Creation of a priority list and adding ", 2}, + {" random entrie(s)...", 3}, + {"\ +Ok.\n\ +Deleting the list...", 4}, + {"List has ", 5}, + {" keys. Expecting ", 6}, + {"List corrupted.", 7}, + {" keys (real count). Expecting ", 8}, + {"Incorrect order.", 9}, + {"Size of a PriorityList cell: ", 10}, + {"Size of a BHeap cell : ", 11}, + {"Size of a FHeap cell : ", 12}, + {"Size of a PList header : ", 13}, + {"Size of a CList cell : ", 14}, + {"Size of a SList cell : ", 15}, + {"Creating a priority list and adding keys:\n", 16}, + {"\ +Ok.\n\ +List browsing...\n", 17}, + {"\ +Ok.\n\ +Extract_Min + List browsing...\n", 18}, + {"\ +Ok.\n\ +Lower_Key(-12) over 59...\n", 19}, + {"\ +Ok.\n\ +Delete over 54...\n", 20}, + {"\ +Ok.\n\ +Extracting datas...\n", 21}, + {"Minimum #", 22}, + {"\ +Ok.\n\ +\n\ +All the tests were successfull\n", 23}, + {" * Head cell. (", 24}, + {"Insert: not over Head.", 25}, + {"Insert: No more memory.", 26}, + {"Extract_Min: Priority List is empty.", 27}, + {"\ + * Head cell.\n\ + |\n", 28}, +}; + +int _msg_tbl_length = 28; diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..501a29b --- /dev/null +++ b/po/de.po @@ -0,0 +1,140 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2001-01-08 18:25+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" + +#: src/test.cc:29 +msgid "Creation of a priority list and adding " +msgstr "" + +#: src/test.cc:29 +msgid " random entrie(s)..." +msgstr "" + +#: src/test.cc:34 +msgid "" +"Ok.\n" +"Deleting the list..." +msgstr "" + +#: src/test.cc:39 src/test.cc:43 +msgid "List has " +msgstr "" + +#: src/test.cc:39 +msgid " keys. Expecting " +msgstr "" + +#: src/test.cc:40 src/test.cc:44 +msgid "List corrupted." +msgstr "" + +#: src/test.cc:43 +msgid " keys (real count). Expecting " +msgstr "" + +#: src/test.cc:47 src/test.cc:110 +msgid "Incorrect order." +msgstr "" + +#: src/test.cc:61 +msgid "Size of a PriorityList cell: " +msgstr "" + +#: src/test.cc:62 +msgid "Size of a BHeap cell : " +msgstr "" + +#: src/test.cc:63 +msgid "Size of a FHeap cell : " +msgstr "" + +#: src/test.cc:64 +msgid "Size of a PList header : " +msgstr "" + +#: src/test.cc:65 +msgid "Size of a CList cell : " +msgstr "" + +#: src/test.cc:66 +msgid "Size of a SList cell : " +msgstr "" + +#: src/test.cc:80 +msgid "Creating a priority list and adding keys:\n" +msgstr "" + +#: src/test.cc:92 src/test.cc:99 src/test.cc:103 +msgid "" +"Ok.\n" +"List browsing...\n" +msgstr "" + +#: src/test.cc:94 +msgid "" +"Ok.\n" +"Extract_Min + List browsing...\n" +msgstr "" + +#: src/test.cc:97 +msgid "" +"Ok.\n" +"Lower_Key(-12) over 59...\n" +msgstr "" + +#: src/test.cc:101 +msgid "" +"Ok.\n" +"Delete over 54...\n" +msgstr "" + +#: src/test.cc:107 +msgid "" +"Ok.\n" +"Extracting datas...\n" +msgstr "" + +#: src/test.cc:109 +msgid "Minimum #" +msgstr "" + +#: src/test.cc:113 +msgid "" +"Ok.\n" +"\n" +"All the tests were successfull\n" +msgstr "" + +#: lib/FHeap.cc:75 +msgid " * Head cell. (" +msgstr "" + +#: lib/BHeap.cc:112 lib/FHeap.cc:146 +msgid "Insert: not over Head." +msgstr "" + +#: lib/BHeap.cc:113 lib/BHeap.cc:125 lib/FHeap.cc:166 +msgid "Insert: No more memory." +msgstr "" + +#: lib/BHeap.cc:136 lib/FHeap.cc:174 +msgid "Extract_Min: Priority List is empty." +msgstr "" + +#: lib/BHeap.cc:12 +msgid "" +" * Head cell.\n" +" |\n" +msgstr "" diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..e7179ea --- /dev/null +++ b/po/fr.po @@ -0,0 +1,162 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PriorityList-1.0.0\n" +"POT-Creation-Date: 2001-01-08 18:25+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Nicolas Noble <pixel@nobis-crew.org>\n" +"Language-Team: French <fr@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" + +#: src/test.cc:29 +msgid "Creation of a priority list and adding " +msgstr "Création d'une liste de priorité et ajout de " + +#: src/test.cc:29 +msgid " random entrie(s)..." +msgstr " entrée(s) aléatoires..." + +#: src/test.cc:34 +msgid "" +"Ok.\n" +"Deleting the list..." +msgstr "" +"Ok.\n" +"Effacement de la liste..." + +#: src/test.cc:39 src/test.cc:43 +#, fuzzy +msgid "List has " +msgstr "La liste possède seulement " + +#: src/test.cc:39 +msgid " keys. Expecting " +msgstr " clefs alors que nous attendions " + +#: src/test.cc:40 src/test.cc:44 +msgid "List corrupted." +msgstr "Liste corrompue." + +#: src/test.cc:43 +#, fuzzy +msgid " keys (real count). Expecting " +msgstr " clefs alors que nous attendions " + +#: src/test.cc:47 src/test.cc:110 +msgid "Incorrect order." +msgstr "Ordre incorrect." + +#: src/test.cc:61 +msgid "Size of a PriorityList cell: " +msgstr "Taille d'une cellule du type PriorityList: " + +#: src/test.cc:62 +msgid "Size of a BHeap cell : " +msgstr "Taille d'une cellule du type BHeap : " + +#: src/test.cc:63 +msgid "Size of a FHeap cell : " +msgstr "Taille d'une cellule du type FHeap : " + +#: src/test.cc:64 +#, fuzzy +msgid "Size of a PList header : " +msgstr "Taille d'une cellule du type BHeap : " + +#: src/test.cc:65 +#, fuzzy +msgid "Size of a CList cell : " +msgstr "Taille d'une cellule du type BHeap : " + +#: src/test.cc:66 +#, fuzzy +msgid "Size of a SList cell : " +msgstr "Taille d'une cellule du type BHeap : " + +#: src/test.cc:80 +msgid "Creating a priority list and adding keys:\n" +msgstr "Création d'une liste de priorité et ajout de clefs:\n" + +#: src/test.cc:92 src/test.cc:99 src/test.cc:103 +msgid "" +"Ok.\n" +"List browsing...\n" +msgstr "" +"Ok.\n" +"Exploration de la liste...\n" + +#: src/test.cc:94 +msgid "" +"Ok.\n" +"Extract_Min + List browsing...\n" +msgstr "" +"Ok.\n" +"Extract_Min + Exploration de la liste...\n" + +#: src/test.cc:97 +msgid "" +"Ok.\n" +"Lower_Key(-12) over 59...\n" +msgstr "" +"Ok.\n" +"Lower_Key(-12) sur 59...\n" + +#: src/test.cc:101 +msgid "" +"Ok.\n" +"Delete over 54...\n" +msgstr "" +"Ok.\n" +"Delete sur 54...\n" + +#: src/test.cc:107 +msgid "" +"Ok.\n" +"Extracting datas...\n" +msgstr "" +"Ok.\n" +"Extraction des données...\n" + +#: src/test.cc:109 +msgid "Minimum #" +msgstr "Minimum #" + +#: src/test.cc:113 +msgid "" +"Ok.\n" +"\n" +"All the tests were successfull\n" +msgstr "" +"Ok.\n" +"\n" +"Tous les tests se sont déroulés correctement\n" + +#: lib/FHeap.cc:75 +msgid " * Head cell. (" +msgstr " * Cellule d'entête. (" + +#: lib/BHeap.cc:112 lib/FHeap.cc:146 +msgid "Insert: not over Head." +msgstr "Insert: pas sur l'entête." + +#: lib/BHeap.cc:113 lib/BHeap.cc:125 lib/FHeap.cc:166 +msgid "Insert: No more memory." +msgstr "Insert: Plus de mémoire." + +#: lib/BHeap.cc:136 lib/FHeap.cc:174 +msgid "Extract_Min: Priority List is empty." +msgstr "Extract_Min: File de priorité vide." + +#: lib/BHeap.cc:12 +msgid "" +" * Head cell.\n" +" |\n" +msgstr "" +" * Cellule d'entête.\n" +" |\n" diff --git a/po/stamp-cat-id b/po/stamp-cat-id new file mode 100644 index 0000000..9788f70 --- /dev/null +++ b/po/stamp-cat-id @@ -0,0 +1 @@ +timestamp |