]> git.sur5r.net Git - glabels/commitdiff
Skrewing with the build environment.
authorJim Evins <evins@snaught.com>
Tue, 27 Aug 2002 02:35:14 +0000 (02:35 +0000)
committerJim Evins <evins@snaught.com>
Tue, 27 Aug 2002 02:35:14 +0000 (02:35 +0000)
git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@67 f5e0f49d-192f-0410-a22d-a8d8700d0965

glabels2/po/Makefile.in.in [deleted file]
glabels2/po/glabels.pot [deleted file]

diff --git a/glabels2/po/Makefile.in.in b/glabels2/po/Makefile.in.in
deleted file mode 100644 (file)
index 8f116b1..0000000
+++ /dev/null
@@ -1,255 +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.
-#
-# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
-#   instead of PACKAGE and to look for po2tbl in ./ not in intl/
-#
-# - Modified by jacob berkman <jacob@ximian.com> to install
-#   Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
-
-GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
-PACKAGE = @PACKAGE@
-VERSION = @VERSION@
-
-SHELL = /bin/sh
-@SET_MAKE@
-
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-top_builddir = ..
-VPATH = @srcdir@
-
-prefix = @prefix@
-exec_prefix = @exec_prefix@
-datadir = $(prefix)/@DATADIRNAME@
-localedir = $(datadir)/locale
-gnulocaledir = $(prefix)/share/locale
-gettextsrcdir = $(prefix)/share/glib-2.0/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@
-INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
-INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
-MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
-GENPOT   = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
-
-DEFS = @DEFS@
-CFLAGS = @CFLAGS@
-CPPFLAGS = @CPPFLAGS@
-
-INCLUDES = -I.. -I$(top_srcdir)/intl
-
-COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
-
-SOURCES = 
-POFILES = @POFILES@
-GMOFILES = @GMOFILES@
-DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \
-$(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) $(GETTEXT_PACKAGE).pot
-       $(MSGMERGE) $< $(srcdir)/$(GETTEXT_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: $(CATALOGS)
-all-no:
-
-$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES)
-       $(GENPOT)
-
-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) $(DESTDIR)$(datadir); \
-       else \
-         $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(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)$$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/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
-           echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
-         else \
-           $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
-           echo "installing $(srcdir)/$$cat as" \
-                "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
-         fi; \
-         if test -r $$cat.m; then \
-           $(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
-           echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
-         else \
-           if test -r $(srcdir)/$$cat.m ; then \
-             $(INSTALL_DATA) $(srcdir)/$$cat.m \
-               $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
-             echo "installing $(srcdir)/$$cat as" \
-                  "$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
-           else \
-             true; \
-           fi; \
-         fi; \
-       done
-       if test "$(PACKAGE)" = "glib"; then \
-         if test -r "$(MKINSTALLDIRS)"; then \
-           $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
-         else \
-           $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
-         fi; \
-         $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
-                         $(DESTDIR)$(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 $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
-         rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
-         rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
-         rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
-       done
-       rm -f $(DESTDIR)$(gettextsrcdir)/po-Makefile.in.in
-
-check: all
-
-dvi info tags TAGS ID:
-
-mostlyclean:
-       rm -f core core.* *.pox $(GETTEXT_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 = ../$(GETTEXT_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) $(GETTEXT_PACKAGE).pot
-       PATH=`pwd`/../src:$$PATH; \
-       cd $(srcdir); \
-       catalogs='$(CATALOGS)'; \
-       for cat in $$catalogs; do \
-         cat=`basename $$cat`; \
-         lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
-         cp $$lang.po $$lang.old.po; \
-         echo "$$lang:"; \
-         if $(MSGMERGE) $$lang; then \
-           rm -f $$lang.old.po; \
-         else \
-           echo "msgmerge for $$cat failed!"; \
-           rm -f $$lang.po; \
-           mv $$lang.old.po $$lang.po; \
-         fi; \
-       done
-
-.po: Makefile
-       $(MAKE)  $(PACKAGE).pot;
-       PATH=`pwd`/../src:$$PATH; \
-       echo; printf "$*: "; \
-       if $(MSGMERGE) $*; then \
-         rm -f $*.old.po; \
-         else \
-           echo "msgmerge for * failed!"; \
-           mv $*.old.po $*.po; \
-       fi; \
-       msgfmt --statistics $*.po; echo;
-
-
-# POTFILES is created from POTFILES.in by stripping comments, empty lines
-# and Intltool tags (enclosed in square brackets), and appending a full
-# relative path to them
-POTFILES: POTFILES.in
-       ( if test 'x$(srcdir)' != 'x.'; then \
-           posrcprefix='$(top_srcdir)/'; \
-         else \
-           posrcprefix="../"; \
-         fi; \
-         rm -f $@-t $@ \
-           && (sed -e '/^#/d'                                          \
-                   -e "s/^\[.*\] +//"                                  \
-                   -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/glabels2/po/glabels.pot b/glabels2/po/glabels.pot
deleted file mode 100644 (file)
index 9f00e27..0000000
+++ /dev/null
@@ -1,1086 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#: src/commands.c:384
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-08-26 22:20-0400\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: 8bit\n"
-
-#: src/glabels-ui.xml.h:1
-msgid "About this application"
-msgstr ""
-
-#: src/glabels-ui.xml.h:2
-msgid "About..."
-msgstr ""
-
-#: src/glabels-ui.xml.h:3
-msgid "Barcode"
-msgstr ""
-
-#: src/glabels-ui.xml.h:4
-msgid "Box"
-msgstr ""
-
-#: src/glabels-ui.xml.h:5
-msgid "Change the visibility of the toolbar in the current window"
-msgstr ""
-
-#: src/glabels-ui.xml.h:6
-msgid "Clos_e All"
-msgstr ""
-
-#: src/glabels-ui.xml.h:7
-msgid "Close"
-msgstr ""
-
-#: src/glabels-ui.xml.h:8
-msgid "Close All"
-msgstr ""
-
-#: src/glabels-ui.xml.h:9
-msgid "Close all open files"
-msgstr ""
-
-#: src/glabels-ui.xml.h:10
-msgid "Close the current file"
-msgstr ""
-
-#: src/glabels-ui.xml.h:11
-msgid "Configure the application"
-msgstr ""
-
-#: src/glabels-ui.xml.h:12
-msgid "Contents"
-msgstr ""
-
-#: src/glabels-ui.xml.h:13
-msgid "Copy"
-msgstr ""
-
-#: src/glabels-ui.xml.h:14
-msgid "Copy the selection"
-msgstr ""
-
-#: src/glabels-ui.xml.h:15
-msgid "Create a new document"
-msgstr ""
-
-#: src/glabels-ui.xml.h:16
-msgid "Create barcode object"
-msgstr ""
-
-#: src/glabels-ui.xml.h:17
-msgid "Create box/rectangle object"
-msgstr ""
-
-#: src/glabels-ui.xml.h:18
-msgid "Create ellipse/circle object"
-msgstr ""
-
-#: src/glabels-ui.xml.h:19
-msgid "Create image object"
-msgstr ""
-
-#: src/glabels-ui.xml.h:20
-msgid "Create line object"
-msgstr ""
-
-#: src/glabels-ui.xml.h:21
-msgid "Create text object"
-msgstr ""
-
-#: src/glabels-ui.xml.h:22
-msgid "Cu_t"
-msgstr ""
-
-#: src/glabels-ui.xml.h:23
-msgid "Customize"
-msgstr ""
-
-#: src/glabels-ui.xml.h:24
-msgid "Customize toolbars"
-msgstr ""
-
-#: src/glabels-ui.xml.h:25
-msgid "Cut"
-msgstr ""
-
-#: src/glabels-ui.xml.h:26
-msgid "Cut the selection"
-msgstr ""
-
-#: src/glabels-ui.xml.h:27 src/view-object.c:410 src/view.c:1590
-msgid "Delete"
-msgstr ""
-
-#: src/glabels-ui.xml.h:28
-msgid "Delete the selected objects"
-msgstr ""
-
-#: src/glabels-ui.xml.h:29
-msgid "Dump XML"
-msgstr ""
-
-#: src/glabels-ui.xml.h:30
-msgid "Dump the UI Xml description"
-msgstr ""
-
-#: src/glabels-ui.xml.h:31
-msgid "Edit merge properties"
-msgstr ""
-
-#: src/glabels-ui.xml.h:32
-msgid "Ellipse"
-msgstr ""
-
-#: src/glabels-ui.xml.h:33
-msgid "Icon and _Text"
-msgstr ""
-
-#: src/glabels-ui.xml.h:34 src/view-image.c:300
-msgid "Image"
-msgstr ""
-
-#. ------ Line box ------
-#: src/glabels-ui.xml.h:35 src/prefs-dialog.c:377
-msgid "Line"
-msgstr ""
-
-#: src/glabels-ui.xml.h:36
-msgid "Main toolbar"
-msgstr ""
-
-#: src/glabels-ui.xml.h:37
-msgid "Merge Properties"
-msgstr ""
-
-#: src/glabels-ui.xml.h:38
-msgid "New"
-msgstr ""
-
-#: src/glabels-ui.xml.h:39
-msgid "Only show icons in the toolbar"
-msgstr ""
-
-#: src/file.c:248 src/glabels-ui.xml.h:40
-msgid "Open"
-msgstr ""
-
-#: src/glabels-ui.xml.h:41
-msgid "Open a file"
-msgstr ""
-
-#: src/glabels-ui.xml.h:42
-msgid "Open the gedit manual"
-msgstr ""
-
-#: src/glabels-ui.xml.h:43
-msgid "Paste"
-msgstr ""
-
-#: src/glabels-ui.xml.h:44
-msgid "Paste the clipboard"
-msgstr ""
-
-#: src/glabels-ui.xml.h:45
-msgid "Pr_eferences..."
-msgstr ""
-
-#: src/glabels-ui.xml.h:46 src/prefs-dialog.c:232
-msgid "Preferences"
-msgstr ""
-
-#. ----- Contstruct basic print dialog with notebook -----
-#: src/glabels-ui.xml.h:47 src/print-dialog.c:102
-msgid "Print"
-msgstr ""
-
-#: src/glabels-ui.xml.h:48
-msgid "Print the current file"
-msgstr ""
-
-#: src/glabels-ui.xml.h:49
-msgid "Quit"
-msgstr ""
-
-#: src/glabels-ui.xml.h:50
-msgid "Quit the program"
-msgstr ""
-
-#: src/glabels-ui.xml.h:51
-msgid "Recent _Files"
-msgstr ""
-
-#: src/glabels-ui.xml.h:52
-msgid "Redo"
-msgstr ""
-
-#: src/glabels-ui.xml.h:53
-msgid "Redo the undone action"
-msgstr ""
-
-#: src/glabels-ui.xml.h:54
-msgid "Remove all selections"
-msgstr ""
-
-#: src/glabels-ui.xml.h:55
-msgid "Save"
-msgstr ""
-
-#: src/glabels-ui.xml.h:56
-msgid "Save As"
-msgstr ""
-
-#: src/glabels-ui.xml.h:57
-msgid "Save _As..."
-msgstr ""
-
-#: src/glabels-ui.xml.h:58
-msgid "Save the current file"
-msgstr ""
-
-#: src/glabels-ui.xml.h:59
-msgid "Save the current file with a different name"
-msgstr ""
-
-#: src/glabels-ui.xml.h:60
-msgid "Select"
-msgstr ""
-
-#: src/glabels-ui.xml.h:61
-msgid "Select All"
-msgstr ""
-
-#: src/glabels-ui.xml.h:62
-msgid "Select _All"
-msgstr ""
-
-#: src/glabels-ui.xml.h:63
-msgid "Select all objects"
-msgstr ""
-
-#: src/glabels-ui.xml.h:64
-msgid "Select, move and modify objects"
-msgstr ""
-
-#: src/glabels-ui.xml.h:65
-msgid "Set toolbar button style according to desktop default"
-msgstr ""
-
-#: src/glabels-ui.xml.h:66
-msgid "Show _Tooltips"
-msgstr ""
-
-#: src/glabels-ui.xml.h:67
-msgid "Show tooltips in the toolbar"
-msgstr ""
-
-#: src/glabels-ui.xml.h:68 src/view-text.c:285 src/view-text.c:605
-msgid "Text"
-msgstr ""
-
-#: src/glabels-ui.xml.h:69
-msgid "Tools toolbar"
-msgstr ""
-
-#: src/glabels-ui.xml.h:70
-msgid "U_n-select All"
-msgstr ""
-
-#: src/glabels-ui.xml.h:71
-msgid "Un-select All"
-msgstr ""
-
-#: src/glabels-ui.xml.h:72
-msgid "Undo"
-msgstr ""
-
-#: src/glabels-ui.xml.h:73
-msgid "Undo the last action"
-msgstr ""
-
-#: src/glabels-ui.xml.h:74
-msgid "Zoom 1:1"
-msgstr ""
-
-#: src/glabels-ui.xml.h:75
-msgid "Zoom In"
-msgstr ""
-
-#: src/glabels-ui.xml.h:76
-msgid "Zoom Out"
-msgstr ""
-
-#: src/glabels-ui.xml.h:77
-msgid "_About..."
-msgstr ""
-
-#: src/glabels-ui.xml.h:78
-msgid "_Close"
-msgstr ""
-
-#: src/glabels-ui.xml.h:79
-msgid "_Contents"
-msgstr ""
-
-#: src/glabels-ui.xml.h:80
-msgid "_Copy"
-msgstr ""
-
-#: src/glabels-ui.xml.h:81
-msgid "_Customize Toolbar"
-msgstr ""
-
-#: src/glabels-ui.xml.h:82
-msgid "_Debug"
-msgstr ""
-
-#: src/glabels-ui.xml.h:83
-msgid "_Delete"
-msgstr ""
-
-#: src/glabels-ui.xml.h:84
-msgid "_Desktop Default"
-msgstr ""
-
-#: src/glabels-ui.xml.h:85
-msgid "_Documents"
-msgstr ""
-
-#: src/glabels-ui.xml.h:86
-msgid "_Edit"
-msgstr ""
-
-#: src/glabels-ui.xml.h:87
-msgid "_File"
-msgstr ""
-
-#: src/glabels-ui.xml.h:88
-msgid "_Help"
-msgstr ""
-
-#: src/glabels-ui.xml.h:89
-msgid "_Icon"
-msgstr ""
-
-#: src/glabels-ui.xml.h:90
-msgid "_New"
-msgstr ""
-
-#: src/glabels-ui.xml.h:91
-msgid "_Open..."
-msgstr ""
-
-#: src/glabels-ui.xml.h:92
-msgid "_Paste"
-msgstr ""
-
-#: src/glabels-ui.xml.h:93
-msgid "_Print..."
-msgstr ""
-
-#: src/glabels-ui.xml.h:94
-msgid "_Quit"
-msgstr ""
-
-#: src/glabels-ui.xml.h:95
-msgid "_Save"
-msgstr ""
-
-#: src/glabels-ui.xml.h:96
-msgid "_Toolbar"
-msgstr ""
-
-#: src/glabels-ui.xml.h:97
-msgid "_Tools"
-msgstr ""
-
-#: src/glabels-ui.xml.h:98
-msgid "_View"
-msgstr ""
-
-#: src/glabels-ui.xml.h:99
-msgid "decrease magnification"
-msgstr ""
-
-#: src/glabels-ui.xml.h:100
-msgid "increase magnification"
-msgstr ""
-
-#: src/glabels-ui.xml.h:102
-#, no-c-format
-msgid "restore scale to 100%"
-msgstr ""
-
-#: src/glabels.c:59
-msgid "Show view debugging messages."
-msgstr ""
-
-#: src/glabels.c:62
-msgid "Show item debugging messages."
-msgstr ""
-
-#: src/glabels.c:65
-msgid "Show printing debugging messages."
-msgstr ""
-
-#: src/glabels.c:68
-msgid "Show prefs debugging messages."
-msgstr ""
-
-#: src/glabels.c:71
-msgid "Show file debugging messages."
-msgstr ""
-
-#: src/glabels.c:74
-msgid "Show document debugging messages."
-msgstr ""
-
-#: src/glabels.c:77
-msgid "Show template debugging messages."
-msgstr ""
-
-#: src/glabels.c:80
-msgid "Show xml debugging messages."
-msgstr ""
-
-#: src/glabels.c:83
-msgid "Show document merge debugging messages."
-msgstr ""
-
-#: src/glabels.c:86
-msgid "Show commands debugging messages."
-msgstr ""
-
-#: src/glabels.c:89
-msgid "Show undo debugging messages."
-msgstr ""
-
-#: src/glabels.c:92
-msgid "Show recent debugging messages."
-msgstr ""
-
-#: src/glabels.c:95
-msgid "Show mdi debugging messages."
-msgstr ""
-
-#: src/glabels.c:98
-msgid "Show media select widget debugging messages."
-msgstr ""
-
-#: src/glabels.c:101
-msgid "Show mini preview widget debugging messages."
-msgstr ""
-
-#: src/glabels.c:104
-msgid "Show widget debugging messages."
-msgstr ""
-
-#: src/glabels.c:107
-msgid "Turn on all debugging messages."
-msgstr ""
-
-#: src/glabels-batch.c:47
-msgid "print this message"
-msgstr ""
-
-#: src/glabels-batch.c:49
-msgid "print the version of glabels-batch being used"
-msgstr ""
-
-#: src/glabels-batch.c:51
-msgid "set output filename (default=\"output.ps\")"
-msgstr ""
-
-#: src/glabels-batch.c:51
-msgid "filename"
-msgstr ""
-
-#: src/glabels-batch.c:53
-msgid "number of sheets (default=1)"
-msgstr ""
-
-#: src/glabels-batch.c:53
-msgid "sheets"
-msgstr ""
-
-#: src/glabels-batch.c:55
-msgid "number of copies (default=1)"
-msgstr ""
-
-#: src/glabels-batch.c:55
-msgid "copies"
-msgstr ""
-
-#: src/glabels-batch.c:57 src/print-dialog.c:205
-msgid "print outlines (to test printer alignment)"
-msgstr ""
-
-#: src/glabels-batch.c:59 src/print-dialog.c:214
-msgid "print in reverse (i.e. a mirror image)"
-msgstr ""
-
-#: src/glabels-batch.c:90
-msgid "[OPTION...] GLABELS_FILE..."
-msgstr ""
-
-#: src/glabels-batch.c:109
-msgid "missing glabels file\n"
-msgstr ""
-
-#: src/glabels-batch.c:140
-#, c-format
-msgid "cannot open glabels file %s\n"
-msgstr ""
-
-#: src/mdi.c:579
-#, c-format
-msgid ""
-"Do you want to save the changes you made to the document \"%s\"? \n"
-"\n"
-"Your changes will be lost if you don't save them."
-msgstr ""
-
-#: src/mdi.c:584
-msgid "Do_n't save"
-msgstr ""
-
-#: src/mdi.c:604
-msgid "_Don't quit"
-msgstr ""
-
-#: src/mdi.c:609
-msgid "_Don't close"
-msgstr ""
-
-#: src/mdi.c:706
-msgid "(modified)"
-msgstr ""
-
-#: src/commands.c:359
-msgid ""
-"A label and business card creation program for GNOME.\n"
-" \n"
-"Glabels 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 of the License, or (at your option) any later "
-"version.\n"
-" \n"
-"This program 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.\n"
-msgstr ""
-
-#: src/commands.c:371
-msgid "Author:"
-msgstr ""
-
-#: src/commands.c:374
-msgid "See the file AUTHORS for additional acknowledgments,"
-msgstr ""
-
-#: src/commands.c:375
-msgid "or visit http://snaught.com/glabels"
-msgstr ""
-
-#: src/commands.c:397
-msgid "glabels"
-msgstr ""
-
-#: src/file.c:82
-msgid "New Label or Card"
-msgstr ""
-
-#: src/file.c:109
-msgid "Media Type"
-msgstr ""
-
-#: src/file.c:119
-msgid "Label orientation"
-msgstr ""
-
-#: src/file.c:250
-msgid "Open label"
-msgstr ""
-
-#: src/file.c:338
-#, c-format
-msgid "Cannot open file '%s'"
-msgstr ""
-
-#: src/file.c:429
-#, c-format
-msgid "Error saving file '%s'"
-msgstr ""
-
-#: src/file.c:468
-msgid "Save label as"
-msgstr ""
-
-#: src/file.c:550
-msgid "Must supply file name"
-msgstr ""
-
-#: src/file.c:569
-#, c-format
-msgid "Error writing file '%s'"
-msgstr ""
-
-#. Should not happen
-#: src/prefs.c:625 src/prefs.c:632 src/wdgt-line.c:186
-msgid "points"
-msgstr ""
-
-#: src/prefs.c:627
-msgid "inches"
-msgstr ""
-
-#: src/prefs.c:629
-msgid "mm"
-msgstr ""
-
-#: src/prefs-dialog.c:220
-msgid "Locale"
-msgstr ""
-
-#: src/prefs-dialog.c:224
-msgid "Object defaults"
-msgstr ""
-
-#: src/prefs-dialog.c:272
-msgid "Select locale specific behavior."
-msgstr ""
-
-#. ----- Display Units Frame ------------------------------------
-#: src/prefs-dialog.c:279
-msgid "Display units"
-msgstr ""
-
-#: src/prefs-dialog.c:289
-msgid "Points"
-msgstr ""
-
-#: src/prefs-dialog.c:296
-msgid "Inches"
-msgstr ""
-
-#: src/prefs-dialog.c:303
-msgid "Millimeters"
-msgstr ""
-
-#. ----- Page Size Frame ------------------------------------
-#: src/prefs-dialog.c:310
-msgid "Default page size"
-msgstr ""
-
-#: src/prefs-dialog.c:364
-msgid "Select default properties for new objects."
-msgstr ""
-
-#. ------ Fill box ------
-#: src/prefs-dialog.c:382 src/view-box.c:325 src/view-ellipse.c:325
-msgid "Fill"
-msgstr ""
-
-#: src/view-object.c:420 src/view.c:1600
-msgid "Bring to front"
-msgstr ""
-
-#: src/view-object.c:427 src/view.c:1606
-msgid "Send to back"
-msgstr ""
-
-#: src/view-object.c:399
-msgid "Edit properties..."
-msgstr ""
-
-#. -----------------------------------------------------------------
-#. Build dialog with notebook.
-#. -----------------------------------------------------------------
-#: src/view-box.c:293
-msgid "Edit box object properties"
-msgstr ""
-
-#: src/view-barcode.c:313 src/view-box.c:312 src/view-ellipse.c:312
-#: src/view-line.c:309 src/view-text.c:311
-msgid "Appearance"
-msgstr ""
-
-#. ------ Line box ------
-#: src/view-box.c:315 src/view-ellipse.c:315 src/view-line.c:312
-msgid "Outline"
-msgstr ""
-
-#: src/view-box.c:340 src/view-ellipse.c:340 src/view-image.c:337
-#: src/view-line.c:328
-msgid "Position/Size"
-msgstr ""
-
-#. ------ Position Frame ------
-#: src/view-barcode.c:345 src/view-barcode.c:349 src/view-box.c:343
-#: src/view-ellipse.c:343 src/view-image.c:340 src/view-line.c:331
-#: src/view-text.c:334 src/view-text.c:338
-msgid "Position"
-msgstr ""
-
-#. ------ Size Frame ------
-#: src/view-box.c:354 src/view-ellipse.c:356 src/view-image.c:353
-#: src/view-line.c:344
-msgid "Size"
-msgstr ""
-
-#. -----------------------------------------------------------------
-#. Build dialog with notebook.
-#. -----------------------------------------------------------------
-#: src/view-ellipse.c:293
-msgid "Edit ellipse object properties"
-msgstr ""
-
-#. -----------------------------------------------------------------
-#. Build dialog with notebook.
-#. -----------------------------------------------------------------
-#: src/view-line.c:290
-msgid "Edit line object properties"
-msgstr ""
-
-#. -----------------------------------------------------------------
-#. Build dialog with notebook.
-#. -----------------------------------------------------------------
-#: src/view-image.c:281
-msgid "Edit image object properties"
-msgstr ""
-
-#. ------ Size Reset Button ------
-#: src/view-image.c:364
-msgid "Reset image size"
-msgstr ""
-
-#: src/view-text.c:265
-msgid "Edit text object properties"
-msgstr ""
-
-#: src/view-barcode.c:267
-msgid "Edit barcode object properties"
-msgstr ""
-
-#: src/view-barcode.c:287
-msgid "Data"
-msgstr ""
-
-#: src/view-barcode.c:292
-msgid "Barcode data"
-msgstr ""
-
-#: src/view-barcode.c:318
-msgid "Barcode Properties"
-msgstr ""
-
-#. ------ Barcode Style Frame ------
-#: src/view-barcode.c:328
-msgid "Style"
-msgstr ""
-
-#: src/print.c:814 src/view-barcode.c:758
-msgid "Invalid barcode"
-msgstr ""
-
-#: src/merge-properties.c:84
-msgid "Edit document-merge properties"
-msgstr ""
-
-#: src/merge-properties.c:130
-msgid "Source"
-msgstr ""
-
-#: src/merge-properties.c:142
-msgid "Format:"
-msgstr ""
-
-#: src/merge-properties.c:157
-msgid "Location:"
-msgstr ""
-
-#: src/merge-properties.c:167
-msgid "Fields"
-msgstr ""
-
-#: src/print-dialog.c:124
-msgid "_Job"
-msgstr ""
-
-#: src/print-dialog.c:129
-msgid "P_rinter"
-msgstr ""
-
-#. ----------- Add simple-copies widget ------------
-#: src/print-dialog.c:158
-msgid "Copies"
-msgstr ""
-
-#. ------- Otherwise add merge control widget ------------
-#: src/print-dialog.c:174
-msgid "Document merge control"
-msgstr ""
-
-#. ----------- Add custom print options area ------------
-#: src/print-dialog.c:195
-msgid "Options"
-msgstr ""
-
-#: src/print-dialog.c:345 src/print-dialog.c:384
-msgid "Print preview"
-msgstr ""
-
-#: src/label.c:535
-#, c-format
-msgid "%s %d"
-msgstr ""
-
-#: src/label.c:535
-msgid "Untitled"
-msgstr ""
-
-#: src/template.c:346
-msgid "No template files found!"
-msgstr ""
-
-#: src/xml-label.c:108 src/xml-label.c:139
-msgid "xmlParseFile error"
-msgstr ""
-
-#: src/xml-label.c:174
-msgid "No document root"
-msgstr ""
-
-#: src/xml-label.c:186
-msgid "Importing from glabels 0.1 format"
-msgstr ""
-
-#: src/xml-label.c:194
-msgid "Importing from glabels 0.4 format"
-msgstr ""
-
-#: src/xml-label.c:198
-msgid "bad document, unknown glabels Namespace"
-msgstr ""
-
-#: src/xml-label.c:226
-#, c-format
-msgid "Bad root node = \"%s\""
-msgstr ""
-
-#: src/xml-label.c:249 src/xml-label.c:281
-#, c-format
-msgid "bad node =  \"%s\""
-msgstr ""
-
-#: src/xml-label.c:656
-msgid "Problem saving xml file."
-msgstr ""
-
-#: src/merge.c:80
-msgid "None"
-msgstr ""
-
-#: src/merge.c:88
-msgid "Text with tab separators"
-msgstr ""
-
-#: src/merge.c:96
-msgid "Text with comma separators"
-msgstr ""
-
-#: src/merge.c:104
-msgid "Text with colon separators"
-msgstr ""
-
-#: src/merge-ui.c:223 src/merge-ui.c:265 src/merge-ui.c:435 src/merge-ui.c:483
-msgid "N/A"
-msgstr ""
-
-#: src/merge-ui-text.c:172
-msgid "Select merge-database source"
-msgstr ""
-
-#: src/merge-ui-text.c:330
-msgid "Column"
-msgstr ""
-
-#: src/merge-ui-text.c:334
-msgid "Custom field key"
-msgstr ""
-
-#: src/merge-ui-text.c:338
-msgid "Sample data"
-msgstr ""
-
-#. Font label
-#: src/wdgt-text-props.c:185
-msgid "Font:"
-msgstr ""
-
-#. Text Color Label
-#: src/wdgt-bc-props.c:190 src/wdgt-fill.c:169 src/wdgt-line.c:192
-#: src/wdgt-text-props.c:238
-msgid "Color:"
-msgstr ""
-
-#. Alignment label
-#: src/wdgt-text-props.c:252
-msgid "Alignment:"
-msgstr ""
-
-#. Insert merge field label
-#: src/wdgt-bc-data.c:199 src/wdgt-text-entry.c:201
-msgid "Key:"
-msgstr ""
-
-#: src/wdgt-text-entry.c:217
-msgid "Insert merge field"
-msgstr ""
-
-#. X label
-#: src/wdgt-position.c:182
-msgid "X:"
-msgstr ""
-
-#. Y label
-#: src/wdgt-position.c:200
-msgid "Y:"
-msgstr ""
-
-#. W Label
-#: src/wdgt-line.c:172 src/wdgt-size.c:184
-msgid "Width:"
-msgstr ""
-
-#. H label
-#: src/wdgt-size.c:200
-msgid "Height:"
-msgstr ""
-
-#: src/wdgt-size.c:224
-msgid "Maintain current aspect ratio"
-msgstr ""
-
-#. Length label
-#: src/wdgt-vector.c:186
-msgid "Length:"
-msgstr ""
-
-#. Angle label
-#: src/wdgt-vector.c:210
-msgid "Angle:"
-msgstr ""
-
-#. Angle units label
-#: src/wdgt-vector.c:227
-msgid "degrees"
-msgstr ""
-
-#. Scale Label
-#: src/wdgt-bc-props.c:170
-msgid "Scale:"
-msgstr ""
-
-#. % Label
-#: src/wdgt-bc-props.c:184
-#, c-format
-msgid "%"
-msgstr ""
-
-#: src/wdgt-bc-style.c:316
-msgid "Show text with barcode"
-msgstr ""
-
-#: src/wdgt-bc-data.c:179
-msgid "Literal:"
-msgstr ""
-
-#: src/wdgt-print-copies.c:178
-msgid "Sheets:"
-msgstr ""
-
-#: src/wdgt-print-copies.c:195
-msgid "Labels"
-msgstr ""
-
-#: src/wdgt-print-copies.c:198
-msgid "from:"
-msgstr ""
-
-#: src/wdgt-print-copies.c:206
-msgid "to:"
-msgstr ""
-
-#: src/wdgt-print-merge.c:177
-msgid "Start on label"
-msgstr ""
-
-#: src/wdgt-print-merge.c:186
-msgid "on 1st sheet"
-msgstr ""
-
-#: src/wdgt-print-merge.c:197
-msgid "Collate"
-msgstr ""
-
-#: src/wdgt-print-merge.c:204
-msgid "Copies:"
-msgstr ""
-
-#: src/wdgt-media-select.c:252
-msgid "Description:"
-msgstr ""
-
-#: src/wdgt-media-select.c:257
-msgid "Page size:"
-msgstr ""
-
-#: src/wdgt-media-select.c:262
-msgid "Label size:"
-msgstr ""
-
-#: src/wdgt-media-select.c:267
-msgid "Layout:"
-msgstr ""
-
-#: src/wdgt-media-select.c:408
-#, c-format
-msgid "%d x %d  (%d per sheet)"
-msgstr ""
-
-#: src/wdgt-media-select.c:422
-#, c-format
-msgid "%s x %s %s"
-msgstr ""
-
-#: src/wdgt-media-select.c:427
-#, c-format
-msgid "%.5g x %.5g %s"
-msgstr ""
-
-#: src/wdgt-rotate-label.c:176
-msgid "Rotate"
-msgstr ""
-
-#: src/bonobo-mdi.c:522 src/bonobo-mdi.c:612 src/bonobo-mdi.c:1850
-#, c-format
-msgid "Activate %s"
-msgstr ""
-
-#: src/gnome-recent-view-bonobo.c:189
-#, c-format
-msgid "Open %s"
-msgstr ""