• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

作図ソフト dia の改良版


Commit MetaInfo

Revisiondfecad57c9313d051fdb4c4598e5da8edb88fd4e (tree)
Time2001-05-11 20:08:56
AuthorJames Henstridge <james@daa....>
CommiterJames Henstridge

Log Message

remember to add news items this time.

2001-05-11 James Henstridge <james@daa.com.au>

* NEWS: remember to add news items this time.

* dia.spec: update spec file for 0.88 release.

* configure.in: up version number to 0.88

* plug-ins/python/Makefile.am (EXTRA_DIST): fix up typo that was
preventing any of the useful python scripts from being
distributed.

* sheets/Makefile.am (sheet-translation-report): fix bustage I
introduced in my fixups for the 0.87 release :(

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
1+2001-05-11 James Henstridge <james@daa.com.au>
2+
3+ * NEWS: remember to add news items this time.
4+
5+ * dia.spec: update spec file for 0.88 release.
6+
7+ * configure.in: up version number to 0.88
8+
9+ * plug-ins/python/Makefile.am (EXTRA_DIST): fix up typo that was
10+ preventing any of the useful python scripts from being
11+ distributed.
12+
13+ * sheets/Makefile.am (sheet-translation-report): fix bustage I
14+ introduced in my fixups for the 0.87 release :(
15+
116 2001-05-10 Lars Clausen <lrclause@cs.uiuc.edu>
217
318 * plug-ins/xfig/xfig-import.c: Finally got groups working.
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
1+dia-0.88: 11-May-2001
2+* Input method support should work correctly now.
3+* SVG shape files now use namespace from final W3C recommendation.
4+ Addon shapes will have to be modified to use the
5+ http://www.w3.org/2000/SVG namespace for SVG. SVG export filter
6+ also uses correct doctype.
7+* menus should now work in both gtk+ and gnome builds and have no i18n
8+ related problems. Don't look in app/menus.c.
9+* pstricks renderer output should now work fine without modification now.
10+* gdk-pixbuf is now a requirement for building dia. It no longer
11+ falls back to imlib if it can't find gdk-pixbuf.
12+* handle "file not found" errors better in the image object type.
13+* Dia now has documentation thanks to the GDP. The help menu now has
14+ more than just an about menu item.
15+* Antialiased drawing mode probably won't crash dia anymore
16+* Dia has a splash screen now (which can be turned off with the
17+ --nosplash option).
18+* Updated bonobo support (when --enable-bonobo is used)
19+* added expose event compression for the dia canvas, which makes dia
20+ more usable over remote X connections.
21+* Many objects updated to use properties interface.
22+* experimental unicode print support (--enable-unicode)
23+* updates to the python plugin and now distribute it with dia (--with-python)
24+* many new shapes and export filter plugins.
25+* other bug fixes.
26+
127 dia-0.86: 6-August-2000
228 * Dia is now an official GNU program.
329 * Bug fixes to polygon, so that undo/redo of adding a point works correctly,
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
11 dnl Process this -*- m4 -*- file with autoconf to produce a configure script.
22 AC_INIT(app/diagram.c)
33
4-AM_INIT_AUTOMAKE(dia, 0.87)
4+AM_INIT_AUTOMAKE(dia, 0.88)
55
66 dnl Specify a header configuration file
77 AM_CONFIG_HEADER(config.h)
--- a/dia.spec
+++ b/dia.spec
@@ -1,6 +1,5 @@
11 %define name dia
2-%define ver 0.87
3-%define prefix /usr
2+%define ver 0.88
43
54 Summary: A gtk+ based diagram creation program.
65 Name: %name
@@ -10,7 +9,6 @@ Copyright: GPL
109 Group: Applications/
1110 Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/dia/%{name}-%{ver}.tar.gz
1211 URL: http://www.lysator.liu.se/~alla/dia/dia.html
13-Packager: Francis J. Lacoste <francis@Contre.COM>
1412 BuildRoot: /var/tmp/%{name}-%{ver}-root
1513
1614 Requires: libxml >= 1.8.5
@@ -24,6 +22,9 @@ flowchart and others. The native file format for Dia is XML (optionally
2422 gzip compressed). It has print support, and can export to a number of formats such as EPS, SVG, CGM and PNG.
2523
2624 %changelog
25+* Fri May 11 2001 James Henstridge <james@daa.com.au>
26+- update version number.
27+- Use make install rather than install-strip as it is causing some problems.
2728 * Sun Aug 6 2000 James Henstridge <james@daa.com.au>
2829 - update description as it was out of date, and increment version number.
2930 * Sun Sep 5 1999 James Henstridge <james@daa.com.au>
@@ -45,17 +46,17 @@ gzip compressed). It has print support, and can export to a number of formats s
4546 unset LINGUAS || :
4647
4748 if [ -x ./configure ]; then
48- CFLAGS=$RPM_OPT_FLAGS ./configure --prefix=%{prefix} --enable-gnome
49+ CFLAGS=$RPM_OPT_FLAGS ./configure --prefix=%{_prefix} --enable-gnome
4950 else
50- CFLAGS=$RPM_OPT_FLAGS ./autogen.sh --prefix=%{prefix} --enable-gnome
51+ CFLAGS=$RPM_OPT_FLAGS ./autogen.sh --prefix=%{_prefix} --enable-gnome
5152 fi
5253 make
5354
5455 %install
5556 rm -fr $RPM_BUILD_ROOT
56-make prefix=$RPM_BUILD_ROOT%{prefix} install-strip
57+make prefix=$RPM_BUILD_ROOT%{_prefix} install
5758
58-gzip --best $RPM_BUILD_ROOT%{prefix}/man/man1/dia.1
59+gzip --best $RPM_BUILD_ROOT%{_prefix}/man/man1/dia.1
5960
6061 %clean
6162 rm -fr $RPM_BUILD_ROOT
@@ -63,13 +64,13 @@ rm -fr $RPM_BUILD_ROOT
6364 %files
6465 %defattr(-,root,root)
6566 %doc README TODO NEWS INSTALL COPYING ChangeLog AUTHORS doc
66-%{prefix}/bin/dia
67-%{prefix}/lib/dia
68-%{prefix}/man/man1/dia.1.gz
69-%{prefix}/share/dia
70-%{prefix}/share/gnome/apps/Applications/dia.desktop
71-%{prefix}/share/locale/*/*/*
72-%{prefix}/share/mime-info/*
73-%{prefix}/share/pixmaps/*
74-%doc %{prefix}/share/gnome/help/dia
67+%{_prefix}/bin/dia
68+%{_prefix}/lib/dia
69+%{_prefix}/man/man1/dia.1.gz
70+%{_prefix}/share/dia
71+%{_prefix}/share/gnome/apps/Applications/dia.desktop
72+%{_prefix}/share/locale/*/*/*
73+%{_prefix}/share/mime-info/*
74+%{_prefix}/share/pixmaps/*
75+%doc %{_prefix}/share/gnome/help/dia
7576 # if you are building without gnome support, use /usr/share/dia/help instead
--- a/plug-ins/python/Makefile.am
+++ b/plug-ins/python/Makefile.am
@@ -59,7 +59,7 @@ pyplugin_DATA = \
5959
6060 endif
6161
62-EXTRA_DATA = \
62+EXTRA_DIST = \
6363 python-startup.py \
6464 debug_objects.py \
6565 export-object.py \
--- /dev/null
+++ b/plug-ins/python/python-startup.py
@@ -0,0 +1,31 @@
1+import sys, os
2+import gtk, dia
3+
4+# find system python plugin dir
5+curdir = os.path.dirname(__file__)
6+plugindir = os.path.join(curdir, 'python')
7+
8+if os.path.isdir(plugindir):
9+ # import all plugins found in system plugin dir
10+ sys.path.insert(0, plugindir)
11+ for file in os.listdir(plugindir):
12+ if file[-3:] == '.py':
13+ try:
14+ __import__(file[:-3])
15+ except:
16+ sys.stderr.write('could not import %s\n' % file)
17+
18+# import any python plugins from the user ...
19+if not os.environ.has_key('HOME'):
20+ os.environ['HOME'] = os.pathsep + 'tmp'
21+plugindir = os.path.join(os.environ['HOME'], '.dia', 'python')
22+
23+if os.path.isdir(plugindir):
24+ # import all plugins found in user plugin dir
25+ sys.path.insert(0, plugindir)
26+ for file in os.listdir(plugindir):
27+ if file[-3:] == '.py':
28+ try:
29+ __import__(file[:-3])
30+ except:
31+ sys.stderr.write('could not import %s\n' % file)
--- a/po/az.po
+++ b/po/az.po
@@ -5,7 +5,7 @@
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: dia 0.86\n"
8-"POT-Creation-Date: 2001-05-09 12:16+0800\n"
8+"POT-Creation-Date: 2001-05-11 16:56+0800\n"
99 "PO-Revision-Date: 2001-05-05 11:55GMT +0200\n"
1010 "Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
1111 "Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
@@ -616,7 +616,7 @@ msgstr ""
616616 "bağlantı idarəcisi yoxdur ."
617617
618618 #: app/load_save.c:231 plug-ins/dxf/dxf-import.c:577 plug-ins/wpg/wpg.c:1036
619-#: plug-ins/xfig/xfig-import.c:1002
619+#: plug-ins/xfig/xfig-import.c:1063
620620 #, c-format
621621 msgid "Couldn't open: '%s' for reading.\n"
622622 msgstr "`%s''ni oxumaq üçün aça bilmədim .\n"
@@ -3515,148 +3515,166 @@ msgstr "WordPerfect Graphics ixrac süzgəci"
35153515 msgid "Fig Format import and export filter"
35163516 msgstr "Fiq Format idxal süzgəci"
35173517
3518-#: plug-ins/xfig/xfig-import.c:280
3519-msgid "Patterns are not implemented\n"
3518+#: plug-ins/xfig/xfig-import.c:73
3519+#, fuzzy
3520+msgid "Polygon import is not implemented yes"
3521+msgstr "%d cism növü hələlik dəsyəklənmir\n"
3522+
3523+#: plug-ins/xfig/xfig-import.c:74
3524+#, fuzzy
3525+msgid "Patterns are not supported by Dia"
35203526 msgstr "Naxışlar dəstəklənmir\n"
35213527
3522-#: plug-ins/xfig/xfig-import.c:318
3523-#, c-format
3524-msgid "Line style %d not supported\n"
3528+#: plug-ins/xfig/xfig-import.c:75
3529+msgid "Triple-dotted lines are not supported by Dia, using double-dotted"
3530+msgstr ""
3531+
3532+#: plug-ins/xfig/xfig-import.c:76
3533+msgid "Negative corner radius, negating"
3534+msgstr ""
3535+
3536+#: plug-ins/xfig/xfig-import.c:77
3537+#, fuzzy
3538+msgid "Spline import is not implemented yet"
3539+msgstr "%d cism növü hələlik dəsyəklənmir\n"
3540+
3541+#: plug-ins/xfig/xfig-import.c:357
3542+#, fuzzy, c-format
3543+msgid "Line style %d should not appear\n"
35253544 msgstr "Sətir tərzi %d dəstəklənmir\n"
35263545
3527-#: plug-ins/xfig/xfig-import.c:356
3546+#: plug-ins/xfig/xfig-import.c:395
35283547 #, c-format
35293548 msgid "Error while reading %dth of %d points: %s\n"
35303549 msgstr "%2d nöqtənin %1d oxunması sırasında xəta: %3s\n"
35313550
3532-#: plug-ins/xfig/xfig-import.c:375
3551+#: plug-ins/xfig/xfig-import.c:414
35333552 msgid "Error while reading arrowhead\n"
35343553 msgstr "Ox başını oxuyarkən xəta oldu\n"
35353554
3536-#: plug-ins/xfig/xfig-import.c:458
3555+#: plug-ins/xfig/xfig-import.c:505
35373556 #, c-format
35383557 msgid "Couldn't read ellipse info: %s\n"
35393558 msgstr "Ellips infosunu oxuya bilmirəm: %s\n"
35403559
3541-#: plug-ins/xfig/xfig-import.c:524
3560+#: plug-ins/xfig/xfig-import.c:574
35423561 #, c-format
35433562 msgid "Couldn't read polyline info: %s\n"
35443563 msgstr "Çoxlu sətir infosunu oxuya bilmədim: %s\n"
35453564
3546-#: plug-ins/xfig/xfig-import.c:539
3565+#: plug-ins/xfig/xfig-import.c:589
35473566 #, c-format
35483567 msgid "Couldn't read flipped bit: %s\n"
35493568 msgstr "Bit oxuna bilmir: %s\n"
35503569
3551-#: plug-ins/xfig/xfig-import.c:591 plug-ins/xfig/xfig-import.c:674
3570+#: plug-ins/xfig/xfig-import.c:645 plug-ins/xfig/xfig-import.c:729
35523571 #, c-format
35533572 msgid "Unknown polyline subtype: %d\n"
35543573 msgstr "Namə'lum çoxlu sətir alt növü: %d\n"
35553574
3556-#: plug-ins/xfig/xfig-import.c:652
3575+#: plug-ins/xfig/xfig-import.c:707
35573576 #, fuzzy, c-format
35583577 msgid "Couldn't read arc info: %s\n"
35593578 msgstr "Mətn infosu oxuna bilmir: %s\n"
35603579
3561-#: plug-ins/xfig/xfig-import.c:723
3580+#: plug-ins/xfig/xfig-import.c:781
35623581 #, c-format
35633582 msgid "Couldn't read text info: %s\n"
35643583 msgstr "Mətn infosu oxuna bilmir: %s\n"
35653584
3566-#: plug-ins/xfig/xfig-import.c:769
3585+#: plug-ins/xfig/xfig-import.c:828
35673586 #, c-format
35683587 msgid "Couldn't identify FIG object: %s\n"
35693588 msgstr "FIG cismi başa salina bilmir: %s\n"
35703589
3571-#: plug-ins/xfig/xfig-import.c:783
3590+#: plug-ins/xfig/xfig-import.c:835
35723591 msgid "Compound end outside compound\n"
35733592 msgstr "Sıxlaşdırılmış bitiı sıxışdırma xaricindədir\n"
35743593
3575-#: plug-ins/xfig/xfig-import.c:806
3594+#: plug-ins/xfig/xfig-import.c:854
35763595 #, c-format
35773596 msgid "Couldn't read color: %s\n"
35783597 msgstr "Rəng oxuna bilmir: %s\n"
35793598
3580-#: plug-ins/xfig/xfig-import.c:835
3599+#: plug-ins/xfig/xfig-import.c:896
35813600 #, c-format
35823601 msgid "Couldn't read group extend: %s\n"
35833602 msgstr "Qrup əlavələri oxuna bilmir: %s\n"
35843603
3585-#. Spline which includes closed/open control/interpolated spline.
3586-#: plug-ins/xfig/xfig-import.c:847
3587-#, c-format
3588-msgid "Object type %d not implemented yet\n"
3589-msgstr "%d cism növü hələlik dəsyəklənmir\n"
3590-
3591-#: plug-ins/xfig/xfig-import.c:850
3604+#: plug-ins/xfig/xfig-import.c:907
35923605 #, c-format
35933606 msgid "Unknown object type %d\n"
35943607 msgstr "Namə'lum cism növü %d\n"
35953608
3596-#: plug-ins/xfig/xfig-import.c:869
3609+#: plug-ins/xfig/xfig-import.c:930
35973610 #, c-format
35983611 msgid "`%s' is not one of `%s' or `%s'\n"
35993612 msgstr "`%s' `%s' və ya `%s'deyil\n"
36003613
3601-#: plug-ins/xfig/xfig-import.c:879
3614+#: plug-ins/xfig/xfig-import.c:940
36023615 #, c-format
36033616 msgid "Error reading paper size: %s\n"
36043617 msgstr "Kağız böyüklüyünü oxuyarkən xəta oldu: %s\n"
36053618
3606-#: plug-ins/xfig/xfig-import.c:901
3619+#: plug-ins/xfig/xfig-import.c:950
3620+#, c-format
3621+msgid "Unknown paper size `%s', using default\n"
3622+msgstr ""
3623+
3624+#: plug-ins/xfig/xfig-import.c:962
36073625 #, c-format
36083626 msgid "Error reading paper orientation: %s\n"
36093627 msgstr "Kağız istiqamətini oxuyarkən xəta oldu: %s\n"
36103628
3611-#: plug-ins/xfig/xfig-import.c:911
3629+#: plug-ins/xfig/xfig-import.c:972
36123630 #, c-format
36133631 msgid "Error reading justification: %s\n"
36143632 msgstr "Tərəfləməni oxuyarkən xəta oldu: %s\n"
36153633
3616-#: plug-ins/xfig/xfig-import.c:921
3634+#: plug-ins/xfig/xfig-import.c:982
36173635 #, c-format
36183636 msgid "Error reading units: %s\n"
36193637 msgstr "Vahidləri oxuyarkən xəta oldu: %s\n"
36203638
3621-#: plug-ins/xfig/xfig-import.c:935
3639+#: plug-ins/xfig/xfig-import.c:996
36223640 #, c-format
36233641 msgid "Error reading magnification: %s\n"
36243642 msgstr "Böyütmələri oxuyarkən xəta oldu: %s\n"
36253643
3626-#: plug-ins/xfig/xfig-import.c:946
3644+#: plug-ins/xfig/xfig-import.c:1007
36273645 #, c-format
36283646 msgid "Error reading multipage indicator: %s\n"
36293647 msgstr "Çoxlu səhifə indikatorunu oxuyarkən xəta oldu: %s\n"
36303648
3631-#: plug-ins/xfig/xfig-import.c:957
3649+#: plug-ins/xfig/xfig-import.c:1018
36323650 #, c-format
36333651 msgid "Error reading transparent color: %s\n"
36343652 msgstr "Şəffaf rəngləri oxuyarkən xəta oldu: %s\n"
36353653
3636-#: plug-ins/xfig/xfig-import.c:966 plug-ins/xfig/xfig-import.c:1021
3654+#: plug-ins/xfig/xfig-import.c:1027 plug-ins/xfig/xfig-import.c:1082
36373655 #, c-format
36383656 msgid "Error reading FIG file: %s\n"
36393657 msgstr "FİG faylını oxuyarkən xəta oldu: %s\n"
36403658
3641-#: plug-ins/xfig/xfig-import.c:968 plug-ins/xfig/xfig-import.c:1023
3659+#: plug-ins/xfig/xfig-import.c:1029 plug-ins/xfig/xfig-import.c:1084
36423660 msgid "Premature end of FIG file\n"
36433661 msgstr "FİG faykının erkən bitişi\n"
36443662
3645-#: plug-ins/xfig/xfig-import.c:977
3663+#: plug-ins/xfig/xfig-import.c:1038
36463664 #, c-format
36473665 msgid "Error reading resolution: %s\n"
36483666 msgstr "Rezolyusiya oxuyarkən xəta oldu: %s\n"
36493667
3650-#: plug-ins/xfig/xfig-import.c:1008
3668+#: plug-ins/xfig/xfig-import.c:1069
36513669 #, c-format
36523670 msgid "Doesn't look like a Fig file: %s\n"
36533671 msgstr "FİG faylı kimi görünmür: %s\n"
36543672
3655-#: plug-ins/xfig/xfig-import.c:1014
3673+#: plug-ins/xfig/xfig-import.c:1075
36563674 #, c-format
36573675 msgid "This is a FIG version %d.%d file, I may not understand it\n"
36583676 msgstr "Bu, FİG buraxılış %d.%d faylıdır. Başa düışə bilmirəm\n"
36593677
3660-#: plug-ins/xfig/xfig-import.c:1067
3678+#: plug-ins/xfig/xfig-import.c:1116
36613679 msgid "XFig File Format"
36623680 msgstr "XFİG Fayl Şəkli"
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@
77 msgid ""
88 msgstr ""
99 "Project-Id-Version: dia v. 0.83\n"
10-"POT-Creation-Date: 2001-05-09 12:16+0800\n"
10+"POT-Creation-Date: 2001-05-11 16:56+0800\n"
1111 "PO-Revision-Date: 2001-01-22 10:40+0200\n"
1212 "Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
1313 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -614,7 +614,7 @@ msgstr ""
614614 "Forbindelsesh蚣dtag eksisterer ikke."
615615
616616 #: app/load_save.c:231 plug-ins/dxf/dxf-import.c:577 plug-ins/wpg/wpg.c:1036
617-#: plug-ins/xfig/xfig-import.c:1002
617+#: plug-ins/xfig/xfig-import.c:1063
618618 #, c-format
619619 msgid "Couldn't open: '%s' for reading.\n"
620620 msgstr "Kunne ikke 蘆ne: '%s' for l誑ning.\n"
@@ -3656,158 +3656,173 @@ msgstr "WordPerfect Grafik eksportfilter"
36563656 msgid "Fig Format import and export filter"
36573657 msgstr "dia form eksportfilter"
36583658
3659-#: plug-ins/xfig/xfig-import.c:280
3660-msgid "Patterns are not implemented\n"
3659+#: plug-ins/xfig/xfig-import.c:73
3660+msgid "Polygon import is not implemented yes"
36613661 msgstr ""
36623662
3663-#: plug-ins/xfig/xfig-import.c:318
3663+#: plug-ins/xfig/xfig-import.c:74
3664+msgid "Patterns are not supported by Dia"
3665+msgstr ""
3666+
3667+#: plug-ins/xfig/xfig-import.c:75
3668+msgid "Triple-dotted lines are not supported by Dia, using double-dotted"
3669+msgstr ""
3670+
3671+#: plug-ins/xfig/xfig-import.c:76
3672+msgid "Negative corner radius, negating"
3673+msgstr ""
3674+
3675+#: plug-ins/xfig/xfig-import.c:77
3676+msgid "Spline import is not implemented yet"
3677+msgstr ""
3678+
3679+#: plug-ins/xfig/xfig-import.c:357
36643680 #, fuzzy, c-format
3665-msgid "Line style %d not supported\n"
3681+msgid "Line style %d should not appear\n"
36663682 msgstr "Liniestilsegenskaber"
36673683
3668-#: plug-ins/xfig/xfig-import.c:356
3684+#: plug-ins/xfig/xfig-import.c:395
36693685 #, c-format
36703686 msgid "Error while reading %dth of %d points: %s\n"
36713687 msgstr ""
36723688
3673-#: plug-ins/xfig/xfig-import.c:375
3689+#: plug-ins/xfig/xfig-import.c:414
36743690 #, fuzzy
36753691 msgid "Error while reading arrowhead\n"
36763692 msgstr "Fejl under indl誑ning af diagramfilen\n"
36773693
3678-#: plug-ins/xfig/xfig-import.c:458
3694+#: plug-ins/xfig/xfig-import.c:505
36793695 #, fuzzy, c-format
36803696 msgid "Couldn't read ellipse info: %s\n"
36813697 msgstr ""
36823698 "Kunne ikke indl誑e indstik '%s'\n"
36833699 "%s"
36843700
3685-#: plug-ins/xfig/xfig-import.c:524
3701+#: plug-ins/xfig/xfig-import.c:574
36863702 #, fuzzy, c-format
36873703 msgid "Couldn't read polyline info: %s\n"
36883704 msgstr ""
36893705 "Kunne ikke indl誑e indstik '%s'\n"
36903706 "%s"
36913707
3692-#: plug-ins/xfig/xfig-import.c:539
3708+#: plug-ins/xfig/xfig-import.c:589
36933709 #, c-format
36943710 msgid "Couldn't read flipped bit: %s\n"
36953711 msgstr ""
36963712
3697-#: plug-ins/xfig/xfig-import.c:591 plug-ins/xfig/xfig-import.c:674
3713+#: plug-ins/xfig/xfig-import.c:645 plug-ins/xfig/xfig-import.c:729
36983714 #, c-format
36993715 msgid "Unknown polyline subtype: %d\n"
37003716 msgstr ""
37013717
3702-#: plug-ins/xfig/xfig-import.c:652
3718+#: plug-ins/xfig/xfig-import.c:707
37033719 #, fuzzy, c-format
37043720 msgid "Couldn't read arc info: %s\n"
37053721 msgstr ""
37063722 "Kunne ikke indl誑e indstik '%s'\n"
37073723 "%s"
37083724
3709-#: plug-ins/xfig/xfig-import.c:723
3725+#: plug-ins/xfig/xfig-import.c:781
37103726 #, c-format
37113727 msgid "Couldn't read text info: %s\n"
37123728 msgstr ""
37133729
3714-#: plug-ins/xfig/xfig-import.c:769
3730+#: plug-ins/xfig/xfig-import.c:828
37153731 #, c-format
37163732 msgid "Couldn't identify FIG object: %s\n"
37173733 msgstr ""
37183734
3719-#: plug-ins/xfig/xfig-import.c:783
3735+#: plug-ins/xfig/xfig-import.c:835
37203736 msgid "Compound end outside compound\n"
37213737 msgstr ""
37223738
3723-#: plug-ins/xfig/xfig-import.c:806
3739+#: plug-ins/xfig/xfig-import.c:854
37243740 #, fuzzy, c-format
37253741 msgid "Couldn't read color: %s\n"
37263742 msgstr ""
37273743 "Kunne ikke indl誑e indstik '%s'\n"
37283744 "%s"
37293745
3730-#: plug-ins/xfig/xfig-import.c:835
3746+#: plug-ins/xfig/xfig-import.c:896
37313747 #, fuzzy, c-format
37323748 msgid "Couldn't read group extend: %s\n"
37333749 msgstr "Kunne ikke 蘆ne '%s'"
37343750
3735-#. Spline which includes closed/open control/interpolated spline.
3736-#: plug-ins/xfig/xfig-import.c:847
3737-#, c-format
3738-msgid "Object type %d not implemented yet\n"
3739-msgstr ""
3740-
3741-#: plug-ins/xfig/xfig-import.c:850
3751+#: plug-ins/xfig/xfig-import.c:907
37423752 #, c-format
37433753 msgid "Unknown object type %d\n"
37443754 msgstr ""
37453755
3746-#: plug-ins/xfig/xfig-import.c:869
3756+#: plug-ins/xfig/xfig-import.c:930
37473757 #, c-format
37483758 msgid "`%s' is not one of `%s' or `%s'\n"
37493759 msgstr ""
37503760
3751-#: plug-ins/xfig/xfig-import.c:879
3761+#: plug-ins/xfig/xfig-import.c:940
37523762 #, fuzzy, c-format
37533763 msgid "Error reading paper size: %s\n"
37543764 msgstr "Fejl under indl誑ning af diagramfilen\n"
37553765
3756-#: plug-ins/xfig/xfig-import.c:901
3766+#: plug-ins/xfig/xfig-import.c:950
3767+#, c-format
3768+msgid "Unknown paper size `%s', using default\n"
3769+msgstr ""
3770+
3771+#: plug-ins/xfig/xfig-import.c:962
37573772 #, fuzzy, c-format
37583773 msgid "Error reading paper orientation: %s\n"
37593774 msgstr "Fejl under indl誑ning af diagramfilen\n"
37603775
3761-#: plug-ins/xfig/xfig-import.c:911
3776+#: plug-ins/xfig/xfig-import.c:972
37623777 #, fuzzy, c-format
37633778 msgid "Error reading justification: %s\n"
37643779 msgstr "Fejl under indl誑ning af diagramfilen\n"
37653780
3766-#: plug-ins/xfig/xfig-import.c:921
3781+#: plug-ins/xfig/xfig-import.c:982
37673782 #, fuzzy, c-format
37683783 msgid "Error reading units: %s\n"
37693784 msgstr "Fejl under indl誑ning af diagramfilen\n"
37703785
3771-#: plug-ins/xfig/xfig-import.c:935
3786+#: plug-ins/xfig/xfig-import.c:996
37723787 #, fuzzy, c-format
37733788 msgid "Error reading magnification: %s\n"
37743789 msgstr "Fejl under indl誑ning af diagramfilen\n"
37753790
3776-#: plug-ins/xfig/xfig-import.c:946
3791+#: plug-ins/xfig/xfig-import.c:1007
37773792 #, fuzzy, c-format
37783793 msgid "Error reading multipage indicator: %s\n"
37793794 msgstr "Fejl under indl誑ning af diagramfilen\n"
37803795
3781-#: plug-ins/xfig/xfig-import.c:957
3796+#: plug-ins/xfig/xfig-import.c:1018
37823797 #, fuzzy, c-format
37833798 msgid "Error reading transparent color: %s\n"
37843799 msgstr "Fejl under indl誑ning af diagramfilen\n"
37853800
3786-#: plug-ins/xfig/xfig-import.c:966 plug-ins/xfig/xfig-import.c:1021
3801+#: plug-ins/xfig/xfig-import.c:1027 plug-ins/xfig/xfig-import.c:1082
37873802 #, fuzzy, c-format
37883803 msgid "Error reading FIG file: %s\n"
37893804 msgstr "Fejl under indl誑ning af diagramfilen\n"
37903805
3791-#: plug-ins/xfig/xfig-import.c:968 plug-ins/xfig/xfig-import.c:1023
3806+#: plug-ins/xfig/xfig-import.c:1029 plug-ins/xfig/xfig-import.c:1084
37923807 msgid "Premature end of FIG file\n"
37933808 msgstr ""
37943809
3795-#: plug-ins/xfig/xfig-import.c:977
3810+#: plug-ins/xfig/xfig-import.c:1038
37963811 #, fuzzy, c-format
37973812 msgid "Error reading resolution: %s\n"
37983813 msgstr "Fejl under indl誑ning af diagramfilen\n"
37993814
3800-#: plug-ins/xfig/xfig-import.c:1008
3815+#: plug-ins/xfig/xfig-import.c:1069
38013816 #, c-format
38023817 msgid "Doesn't look like a Fig file: %s\n"
38033818 msgstr ""
38043819
3805-#: plug-ins/xfig/xfig-import.c:1014
3820+#: plug-ins/xfig/xfig-import.c:1075
38063821 #, c-format
38073822 msgid "This is a FIG version %d.%d file, I may not understand it\n"
38083823 msgstr ""
38093824
3810-#: plug-ins/xfig/xfig-import.c:1067
3825+#: plug-ins/xfig/xfig-import.c:1116
38113826 msgid "XFig File Format"
38123827 msgstr ""
38133828
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -5,7 +5,7 @@
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: dia CVS\n"
8-"POT-Creation-Date: 2001-05-09 12:16+0800\n"
8+"POT-Creation-Date: 2001-05-11 16:56+0800\n"
99 "PO-Revision-Date: 2000-07-15\n"
1010 "Last-Translator: Robert Brady <rwb197@ecs.soton.ac.uk>\n"
1111 "Language-Team: \n"
@@ -588,7 +588,7 @@ msgid ""
588588 msgstr ""
589589
590590 #: app/load_save.c:231 plug-ins/dxf/dxf-import.c:577 plug-ins/wpg/wpg.c:1036
591-#: plug-ins/xfig/xfig-import.c:1002
591+#: plug-ins/xfig/xfig-import.c:1063
592592 #, c-format
593593 msgid "Couldn't open: '%s' for reading.\n"
594594 msgstr ""
@@ -3472,148 +3472,163 @@ msgstr ""
34723472 msgid "Fig Format import and export filter"
34733473 msgstr ""
34743474
3475-#: plug-ins/xfig/xfig-import.c:280
3476-msgid "Patterns are not implemented\n"
3475+#: plug-ins/xfig/xfig-import.c:73
3476+msgid "Polygon import is not implemented yes"
34773477 msgstr ""
34783478
3479-#: plug-ins/xfig/xfig-import.c:318
3479+#: plug-ins/xfig/xfig-import.c:74
3480+msgid "Patterns are not supported by Dia"
3481+msgstr ""
3482+
3483+#: plug-ins/xfig/xfig-import.c:75
3484+msgid "Triple-dotted lines are not supported by Dia, using double-dotted"
3485+msgstr ""
3486+
3487+#: plug-ins/xfig/xfig-import.c:76
3488+msgid "Negative corner radius, negating"
3489+msgstr ""
3490+
3491+#: plug-ins/xfig/xfig-import.c:77
3492+msgid "Spline import is not implemented yet"
3493+msgstr ""
3494+
3495+#: plug-ins/xfig/xfig-import.c:357
34803496 #, c-format
3481-msgid "Line style %d not supported\n"
3497+msgid "Line style %d should not appear\n"
34823498 msgstr ""
34833499
3484-#: plug-ins/xfig/xfig-import.c:356
3500+#: plug-ins/xfig/xfig-import.c:395
34853501 #, c-format
34863502 msgid "Error while reading %dth of %d points: %s\n"
34873503 msgstr ""
34883504
3489-#: plug-ins/xfig/xfig-import.c:375
3505+#: plug-ins/xfig/xfig-import.c:414
34903506 msgid "Error while reading arrowhead\n"
34913507 msgstr ""
34923508
3493-#: plug-ins/xfig/xfig-import.c:458
3509+#: plug-ins/xfig/xfig-import.c:505
34943510 #, c-format
34953511 msgid "Couldn't read ellipse info: %s\n"
34963512 msgstr ""
34973513
3498-#: plug-ins/xfig/xfig-import.c:524
3514+#: plug-ins/xfig/xfig-import.c:574
34993515 #, c-format
35003516 msgid "Couldn't read polyline info: %s\n"
35013517 msgstr ""
35023518
3503-#: plug-ins/xfig/xfig-import.c:539
3519+#: plug-ins/xfig/xfig-import.c:589
35043520 #, c-format
35053521 msgid "Couldn't read flipped bit: %s\n"
35063522 msgstr ""
35073523
3508-#: plug-ins/xfig/xfig-import.c:591 plug-ins/xfig/xfig-import.c:674
3524+#: plug-ins/xfig/xfig-import.c:645 plug-ins/xfig/xfig-import.c:729
35093525 #, c-format
35103526 msgid "Unknown polyline subtype: %d\n"
35113527 msgstr ""
35123528
3513-#: plug-ins/xfig/xfig-import.c:652
3529+#: plug-ins/xfig/xfig-import.c:707
35143530 #, c-format
35153531 msgid "Couldn't read arc info: %s\n"
35163532 msgstr ""
35173533
3518-#: plug-ins/xfig/xfig-import.c:723
3534+#: plug-ins/xfig/xfig-import.c:781
35193535 #, c-format
35203536 msgid "Couldn't read text info: %s\n"
35213537 msgstr ""
35223538
3523-#: plug-ins/xfig/xfig-import.c:769
3539+#: plug-ins/xfig/xfig-import.c:828
35243540 #, c-format
35253541 msgid "Couldn't identify FIG object: %s\n"
35263542 msgstr ""
35273543
3528-#: plug-ins/xfig/xfig-import.c:783
3544+#: plug-ins/xfig/xfig-import.c:835
35293545 msgid "Compound end outside compound\n"
35303546 msgstr ""
35313547
3532-#: plug-ins/xfig/xfig-import.c:806
3548+#: plug-ins/xfig/xfig-import.c:854
35333549 #, c-format
35343550 msgid "Couldn't read color: %s\n"
35353551 msgstr ""
35363552
3537-#: plug-ins/xfig/xfig-import.c:835
3553+#: plug-ins/xfig/xfig-import.c:896
35383554 #, c-format
35393555 msgid "Couldn't read group extend: %s\n"
35403556 msgstr ""
35413557
3542-#. Spline which includes closed/open control/interpolated spline.
3543-#: plug-ins/xfig/xfig-import.c:847
3544-#, c-format
3545-msgid "Object type %d not implemented yet\n"
3546-msgstr ""
3547-
3548-#: plug-ins/xfig/xfig-import.c:850
3558+#: plug-ins/xfig/xfig-import.c:907
35493559 #, c-format
35503560 msgid "Unknown object type %d\n"
35513561 msgstr ""
35523562
3553-#: plug-ins/xfig/xfig-import.c:869
3563+#: plug-ins/xfig/xfig-import.c:930
35543564 #, c-format
35553565 msgid "`%s' is not one of `%s' or `%s'\n"
35563566 msgstr ""
35573567
3558-#: plug-ins/xfig/xfig-import.c:879
3568+#: plug-ins/xfig/xfig-import.c:940
35593569 #, c-format
35603570 msgid "Error reading paper size: %s\n"
35613571 msgstr ""
35623572
3563-#: plug-ins/xfig/xfig-import.c:901
3573+#: plug-ins/xfig/xfig-import.c:950
3574+#, c-format
3575+msgid "Unknown paper size `%s', using default\n"
3576+msgstr ""
3577+
3578+#: plug-ins/xfig/xfig-import.c:962
35643579 #, c-format
35653580 msgid "Error reading paper orientation: %s\n"
35663581 msgstr ""
35673582
3568-#: plug-ins/xfig/xfig-import.c:911
3583+#: plug-ins/xfig/xfig-import.c:972
35693584 #, c-format
35703585 msgid "Error reading justification: %s\n"
35713586 msgstr ""
35723587
3573-#: plug-ins/xfig/xfig-import.c:921
3588+#: plug-ins/xfig/xfig-import.c:982
35743589 #, c-format
35753590 msgid "Error reading units: %s\n"
35763591 msgstr ""
35773592
3578-#: plug-ins/xfig/xfig-import.c:935
3593+#: plug-ins/xfig/xfig-import.c:996
35793594 #, c-format
35803595 msgid "Error reading magnification: %s\n"
35813596 msgstr ""
35823597
3583-#: plug-ins/xfig/xfig-import.c:946
3598+#: plug-ins/xfig/xfig-import.c:1007
35843599 #, c-format
35853600 msgid "Error reading multipage indicator: %s\n"
35863601 msgstr ""
35873602
3588-#: plug-ins/xfig/xfig-import.c:957
3603+#: plug-ins/xfig/xfig-import.c:1018
35893604 #, c-format
35903605 msgid "Error reading transparent color: %s\n"
35913606 msgstr ""
35923607
3593-#: plug-ins/xfig/xfig-import.c:966 plug-ins/xfig/xfig-import.c:1021
3608+#: plug-ins/xfig/xfig-import.c:1027 plug-ins/xfig/xfig-import.c:1082
35943609 #, c-format
35953610 msgid "Error reading FIG file: %s\n"
35963611 msgstr ""
35973612
3598-#: plug-ins/xfig/xfig-import.c:968 plug-ins/xfig/xfig-import.c:1023
3613+#: plug-ins/xfig/xfig-import.c:1029 plug-ins/xfig/xfig-import.c:1084
35993614 msgid "Premature end of FIG file\n"
36003615 msgstr ""
36013616
3602-#: plug-ins/xfig/xfig-import.c:977
3617+#: plug-ins/xfig/xfig-import.c:1038
36033618 #, c-format
36043619 msgid "Error reading resolution: %s\n"
36053620 msgstr ""
36063621
3607-#: plug-ins/xfig/xfig-import.c:1008
3622+#: plug-ins/xfig/xfig-import.c:1069
36083623 #, c-format
36093624 msgid "Doesn't look like a Fig file: %s\n"
36103625 msgstr ""
36113626
3612-#: plug-ins/xfig/xfig-import.c:1014
3627+#: plug-ins/xfig/xfig-import.c:1075
36133628 #, c-format
36143629 msgid "This is a FIG version %d.%d file, I may not understand it\n"
36153630 msgstr ""
36163631
3617-#: plug-ins/xfig/xfig-import.c:1067
3632+#: plug-ins/xfig/xfig-import.c:1116
36183633 msgid "XFig File Format"
36193634 msgstr ""
--- a/po/nl.po
+++ b/po/nl.po
@@ -5,7 +5,7 @@
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: dia 0.86\n"
8-"POT-Creation-Date: 2001-05-09 12:16+0800\n"
8+"POT-Creation-Date: 2001-05-11 16:56+0800\n"
99 "PO-Revision-Date: 2000-10-15 18:27+0200\n"
1010 "Last-Translator: Almer S. Tigelaar <almer1@dds.nl>\n"
1111 "Language-Team: Dutch <nl@li.org>\n"
@@ -616,7 +616,7 @@ msgstr ""
616616 "Verbindings 'handle' bestaat niet."
617617
618618 #: app/load_save.c:231 plug-ins/dxf/dxf-import.c:577 plug-ins/wpg/wpg.c:1036
619-#: plug-ins/xfig/xfig-import.c:1002
619+#: plug-ins/xfig/xfig-import.c:1063
620620 #, c-format
621621 msgid "Couldn't open: '%s' for reading.\n"
622622 msgstr "Kon '%s' niet voor lezen openen.\n"
@@ -3674,158 +3674,173 @@ msgstr "WordPerfect Graphics uitvoer filter"
36743674 msgid "Fig Format import and export filter"
36753675 msgstr "dia vorm uitvoer filter"
36763676
3677-#: plug-ins/xfig/xfig-import.c:280
3678-msgid "Patterns are not implemented\n"
3677+#: plug-ins/xfig/xfig-import.c:73
3678+msgid "Polygon import is not implemented yes"
36793679 msgstr ""
36803680
3681-#: plug-ins/xfig/xfig-import.c:318
3681+#: plug-ins/xfig/xfig-import.c:74
3682+msgid "Patterns are not supported by Dia"
3683+msgstr ""
3684+
3685+#: plug-ins/xfig/xfig-import.c:75
3686+msgid "Triple-dotted lines are not supported by Dia, using double-dotted"
3687+msgstr ""
3688+
3689+#: plug-ins/xfig/xfig-import.c:76
3690+msgid "Negative corner radius, negating"
3691+msgstr ""
3692+
3693+#: plug-ins/xfig/xfig-import.c:77
3694+msgid "Spline import is not implemented yet"
3695+msgstr ""
3696+
3697+#: plug-ins/xfig/xfig-import.c:357
36823698 #, fuzzy, c-format
3683-msgid "Line style %d not supported\n"
3699+msgid "Line style %d should not appear\n"
36843700 msgstr "Lijn Stijl Eigenschappen"
36853701
3686-#: plug-ins/xfig/xfig-import.c:356
3702+#: plug-ins/xfig/xfig-import.c:395
36873703 #, c-format
36883704 msgid "Error while reading %dth of %d points: %s\n"
36893705 msgstr ""
36903706
3691-#: plug-ins/xfig/xfig-import.c:375
3707+#: plug-ins/xfig/xfig-import.c:414
36923708 #, fuzzy
36933709 msgid "Error while reading arrowhead\n"
36943710 msgstr "Fout bij lezen diagram bestand\n"
36953711
3696-#: plug-ins/xfig/xfig-import.c:458
3712+#: plug-ins/xfig/xfig-import.c:505
36973713 #, fuzzy, c-format
36983714 msgid "Couldn't read ellipse info: %s\n"
36993715 msgstr ""
37003716 "Kon plugin `%s' niet laden\n"
37013717 "%s"
37023718
3703-#: plug-ins/xfig/xfig-import.c:524
3719+#: plug-ins/xfig/xfig-import.c:574
37043720 #, fuzzy, c-format
37053721 msgid "Couldn't read polyline info: %s\n"
37063722 msgstr ""
37073723 "Kon plugin `%s' niet laden\n"
37083724 "%s"
37093725
3710-#: plug-ins/xfig/xfig-import.c:539
3726+#: plug-ins/xfig/xfig-import.c:589
37113727 #, c-format
37123728 msgid "Couldn't read flipped bit: %s\n"
37133729 msgstr ""
37143730
3715-#: plug-ins/xfig/xfig-import.c:591 plug-ins/xfig/xfig-import.c:674
3731+#: plug-ins/xfig/xfig-import.c:645 plug-ins/xfig/xfig-import.c:729
37163732 #, c-format
37173733 msgid "Unknown polyline subtype: %d\n"
37183734 msgstr ""
37193735
3720-#: plug-ins/xfig/xfig-import.c:652
3736+#: plug-ins/xfig/xfig-import.c:707
37213737 #, fuzzy, c-format
37223738 msgid "Couldn't read arc info: %s\n"
37233739 msgstr ""
37243740 "Kon plugin `%s' niet laden\n"
37253741 "%s"
37263742
3727-#: plug-ins/xfig/xfig-import.c:723
3743+#: plug-ins/xfig/xfig-import.c:781
37283744 #, c-format
37293745 msgid "Couldn't read text info: %s\n"
37303746 msgstr ""
37313747
3732-#: plug-ins/xfig/xfig-import.c:769
3748+#: plug-ins/xfig/xfig-import.c:828
37333749 #, c-format
37343750 msgid "Couldn't identify FIG object: %s\n"
37353751 msgstr ""
37363752
3737-#: plug-ins/xfig/xfig-import.c:783
3753+#: plug-ins/xfig/xfig-import.c:835
37383754 msgid "Compound end outside compound\n"
37393755 msgstr ""
37403756
3741-#: plug-ins/xfig/xfig-import.c:806
3757+#: plug-ins/xfig/xfig-import.c:854
37423758 #, fuzzy, c-format
37433759 msgid "Couldn't read color: %s\n"
37443760 msgstr ""
37453761 "Kon plugin `%s' niet laden\n"
37463762 "%s"
37473763
3748-#: plug-ins/xfig/xfig-import.c:835
3764+#: plug-ins/xfig/xfig-import.c:896
37493765 #, fuzzy, c-format
37503766 msgid "Couldn't read group extend: %s\n"
37513767 msgstr "Kon `%s' niet openen"
37523768
3753-#. Spline which includes closed/open control/interpolated spline.
3754-#: plug-ins/xfig/xfig-import.c:847
3755-#, c-format
3756-msgid "Object type %d not implemented yet\n"
3757-msgstr ""
3758-
3759-#: plug-ins/xfig/xfig-import.c:850
3769+#: plug-ins/xfig/xfig-import.c:907
37603770 #, c-format
37613771 msgid "Unknown object type %d\n"
37623772 msgstr ""
37633773
3764-#: plug-ins/xfig/xfig-import.c:869
3774+#: plug-ins/xfig/xfig-import.c:930
37653775 #, c-format
37663776 msgid "`%s' is not one of `%s' or `%s'\n"
37673777 msgstr ""
37683778
3769-#: plug-ins/xfig/xfig-import.c:879
3779+#: plug-ins/xfig/xfig-import.c:940
37703780 #, fuzzy, c-format
37713781 msgid "Error reading paper size: %s\n"
37723782 msgstr "Fout bij lezen diagram bestand\n"
37733783
3774-#: plug-ins/xfig/xfig-import.c:901
3784+#: plug-ins/xfig/xfig-import.c:950
3785+#, c-format
3786+msgid "Unknown paper size `%s', using default\n"
3787+msgstr ""
3788+
3789+#: plug-ins/xfig/xfig-import.c:962
37753790 #, fuzzy, c-format
37763791 msgid "Error reading paper orientation: %s\n"
37773792 msgstr "Fout bij lezen diagram bestand\n"
37783793
3779-#: plug-ins/xfig/xfig-import.c:911
3794+#: plug-ins/xfig/xfig-import.c:972
37803795 #, fuzzy, c-format
37813796 msgid "Error reading justification: %s\n"
37823797 msgstr "Fout bij lezen diagram bestand\n"
37833798
3784-#: plug-ins/xfig/xfig-import.c:921
3799+#: plug-ins/xfig/xfig-import.c:982
37853800 #, fuzzy, c-format
37863801 msgid "Error reading units: %s\n"
37873802 msgstr "Fout bij lezen diagram bestand\n"
37883803
3789-#: plug-ins/xfig/xfig-import.c:935
3804+#: plug-ins/xfig/xfig-import.c:996
37903805 #, fuzzy, c-format
37913806 msgid "Error reading magnification: %s\n"
37923807 msgstr "Fout bij lezen diagram bestand\n"
37933808
3794-#: plug-ins/xfig/xfig-import.c:946
3809+#: plug-ins/xfig/xfig-import.c:1007
37953810 #, fuzzy, c-format
37963811 msgid "Error reading multipage indicator: %s\n"
37973812 msgstr "Fout bij lezen diagram bestand\n"
37983813
3799-#: plug-ins/xfig/xfig-import.c:957
3814+#: plug-ins/xfig/xfig-import.c:1018
38003815 #, fuzzy, c-format
38013816 msgid "Error reading transparent color: %s\n"
38023817 msgstr "Fout bij lezen diagram bestand\n"
38033818
3804-#: plug-ins/xfig/xfig-import.c:966 plug-ins/xfig/xfig-import.c:1021
3819+#: plug-ins/xfig/xfig-import.c:1027 plug-ins/xfig/xfig-import.c:1082
38053820 #, fuzzy, c-format
38063821 msgid "Error reading FIG file: %s\n"
38073822 msgstr "Fout bij lezen diagram bestand\n"
38083823
3809-#: plug-ins/xfig/xfig-import.c:968 plug-ins/xfig/xfig-import.c:1023
3824+#: plug-ins/xfig/xfig-import.c:1029 plug-ins/xfig/xfig-import.c:1084
38103825 msgid "Premature end of FIG file\n"
38113826 msgstr ""
38123827
3813-#: plug-ins/xfig/xfig-import.c:977
3828+#: plug-ins/xfig/xfig-import.c:1038
38143829 #, fuzzy, c-format
38153830 msgid "Error reading resolution: %s\n"
38163831 msgstr "Fout bij lezen diagram bestand\n"
38173832
3818-#: plug-ins/xfig/xfig-import.c:1008
3833+#: plug-ins/xfig/xfig-import.c:1069
38193834 #, c-format
38203835 msgid "Doesn't look like a Fig file: %s\n"
38213836 msgstr ""
38223837
3823-#: plug-ins/xfig/xfig-import.c:1014
3838+#: plug-ins/xfig/xfig-import.c:1075
38243839 #, c-format
38253840 msgid "This is a FIG version %d.%d file, I may not understand it\n"
38263841 msgstr ""
38273842
3828-#: plug-ins/xfig/xfig-import.c:1067
3843+#: plug-ins/xfig/xfig-import.c:1116
38293844 msgid "XFig File Format"
38303845 msgstr ""
38313846
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,7 +4,7 @@
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: dia 0.86\n"
7-"POT-Creation-Date: 2001-05-09 12:16+0800\n"
7+"POT-Creation-Date: 2001-05-11 16:56+0800\n"
88 "PO-Revision-Date: 2000-11-27 22:10-0300\n"
99 "Last-Translator: Francisco Petr?io Cavalcante Junior <fpetrucio@mat.ufal."
1010 "br>\n"
@@ -615,7 +615,7 @@ msgstr ""
615615 "Handle de conex? n? existe."
616616
617617 #: app/load_save.c:231 plug-ins/dxf/dxf-import.c:577 plug-ins/wpg/wpg.c:1036
618-#: plug-ins/xfig/xfig-import.c:1002
618+#: plug-ins/xfig/xfig-import.c:1063
619619 #, c-format
620620 msgid "Couldn't open: '%s' for reading.\n"
621621 msgstr "N? foi poss?el abrir '%s' para leitura.\n"
@@ -3674,162 +3674,177 @@ msgstr "Filtro de exporta
36743674 msgid "Fig Format import and export filter"
36753675 msgstr "Filtro de exporta艫o para formas do dia"
36763676
3677-#: plug-ins/xfig/xfig-import.c:280
3678-msgid "Patterns are not implemented\n"
3677+#: plug-ins/xfig/xfig-import.c:73
3678+msgid "Polygon import is not implemented yes"
36793679 msgstr ""
36803680
3681-#: plug-ins/xfig/xfig-import.c:318
3681+#: plug-ins/xfig/xfig-import.c:74
3682+msgid "Patterns are not supported by Dia"
3683+msgstr ""
3684+
3685+#: plug-ins/xfig/xfig-import.c:75
3686+msgid "Triple-dotted lines are not supported by Dia, using double-dotted"
3687+msgstr ""
3688+
3689+#: plug-ins/xfig/xfig-import.c:76
3690+msgid "Negative corner radius, negating"
3691+msgstr ""
3692+
3693+#: plug-ins/xfig/xfig-import.c:77
3694+msgid "Spline import is not implemented yet"
3695+msgstr ""
3696+
3697+#: plug-ins/xfig/xfig-import.c:357
36823698 #, fuzzy, c-format
3683-msgid "Line style %d not supported\n"
3699+msgid "Line style %d should not appear\n"
36843700 msgstr "Propriedades do estilo de linha"
36853701
3686-#: plug-ins/xfig/xfig-import.c:356
3702+#: plug-ins/xfig/xfig-import.c:395
36873703 #, c-format
36883704 msgid "Error while reading %dth of %d points: %s\n"
36893705 msgstr ""
36903706
3691-#: plug-ins/xfig/xfig-import.c:375
3707+#: plug-ins/xfig/xfig-import.c:414
36923708 #, fuzzy
36933709 msgid "Error while reading arrowhead\n"
36943710 msgstr "Erro ao ler arquivo de diagrama\n"
36953711
3696-#: plug-ins/xfig/xfig-import.c:458
3712+#: plug-ins/xfig/xfig-import.c:505
36973713 #, fuzzy, c-format
36983714 msgid "Couldn't read ellipse info: %s\n"
36993715 msgstr ""
37003716 "N? foi poss?el carregar o plugin '%s'.\n"
37013717 "%s"
37023718
3703-#: plug-ins/xfig/xfig-import.c:524
3719+#: plug-ins/xfig/xfig-import.c:574
37043720 #, fuzzy, c-format
37053721 msgid "Couldn't read polyline info: %s\n"
37063722 msgstr ""
37073723 "N? foi poss?el carregar o plugin '%s'.\n"
37083724 "%s"
37093725
3710-#: plug-ins/xfig/xfig-import.c:539
3726+#: plug-ins/xfig/xfig-import.c:589
37113727 #, c-format
37123728 msgid "Couldn't read flipped bit: %s\n"
37133729 msgstr ""
37143730
3715-#: plug-ins/xfig/xfig-import.c:591 plug-ins/xfig/xfig-import.c:674
3731+#: plug-ins/xfig/xfig-import.c:645 plug-ins/xfig/xfig-import.c:729
37163732 #, c-format
37173733 msgid "Unknown polyline subtype: %d\n"
37183734 msgstr ""
37193735
3720-#: plug-ins/xfig/xfig-import.c:652
3736+#: plug-ins/xfig/xfig-import.c:707
37213737 #, fuzzy, c-format
37223738 msgid "Couldn't read arc info: %s\n"
37233739 msgstr ""
37243740 "N? foi poss?el carregar o plugin '%s'.\n"
37253741 "%s"
37263742
3727-#: plug-ins/xfig/xfig-import.c:723
3743+#: plug-ins/xfig/xfig-import.c:781
37283744 #, c-format
37293745 msgid "Couldn't read text info: %s\n"
37303746 msgstr ""
37313747
3732-#: plug-ins/xfig/xfig-import.c:769
3748+#: plug-ins/xfig/xfig-import.c:828
37333749 #, c-format
37343750 msgid "Couldn't identify FIG object: %s\n"
37353751 msgstr ""
37363752
3737-#: plug-ins/xfig/xfig-import.c:783
3753+#: plug-ins/xfig/xfig-import.c:835
37383754 msgid "Compound end outside compound\n"
37393755 msgstr ""
37403756
3741-#: plug-ins/xfig/xfig-import.c:806
3757+#: plug-ins/xfig/xfig-import.c:854
37423758 #, fuzzy, c-format
37433759 msgid "Couldn't read color: %s\n"
37443760 msgstr ""
37453761 "N? foi poss?el carregar o plugin '%s'.\n"
37463762 "%s"
37473763
3748-#: plug-ins/xfig/xfig-import.c:835
3764+#: plug-ins/xfig/xfig-import.c:896
37493765 #, fuzzy, c-format
37503766 msgid "Couldn't read group extend: %s\n"
37513767 msgstr "N? foi poss?el abrir `%s'."
37523768
3753-#. Spline which includes closed/open control/interpolated spline.
3754-#: plug-ins/xfig/xfig-import.c:847
3755-#, c-format
3756-msgid "Object type %d not implemented yet\n"
3757-msgstr ""
3758-
3759-#: plug-ins/xfig/xfig-import.c:850
3769+#: plug-ins/xfig/xfig-import.c:907
37603770 #, c-format
37613771 msgid "Unknown object type %d\n"
37623772 msgstr ""
37633773
3764-#: plug-ins/xfig/xfig-import.c:869
3774+#: plug-ins/xfig/xfig-import.c:930
37653775 #, c-format
37663776 msgid "`%s' is not one of `%s' or `%s'\n"
37673777 msgstr ""
37683778
3769-#: plug-ins/xfig/xfig-import.c:879
3779+#: plug-ins/xfig/xfig-import.c:940
37703780 #, fuzzy, c-format
37713781 msgid "Error reading paper size: %s\n"
37723782 msgstr "Erro ao ler arquivo de diagrama\n"
37733783
3774-#: plug-ins/xfig/xfig-import.c:901
3784+#: plug-ins/xfig/xfig-import.c:950
3785+#, c-format
3786+msgid "Unknown paper size `%s', using default\n"
3787+msgstr ""
3788+
3789+#: plug-ins/xfig/xfig-import.c:962
37753790 #, fuzzy, c-format
37763791 msgid "Error reading paper orientation: %s\n"
37773792 msgstr "Erro ao ler arquivo de diagrama\n"
37783793
3779-#: plug-ins/xfig/xfig-import.c:911
3794+#: plug-ins/xfig/xfig-import.c:972
37803795 #, fuzzy, c-format
37813796 msgid "Error reading justification: %s\n"
37823797 msgstr "Erro ao ler arquivo de diagrama\n"
37833798
3784-#: plug-ins/xfig/xfig-import.c:921
3799+#: plug-ins/xfig/xfig-import.c:982
37853800 #, fuzzy, c-format
37863801 msgid "Error reading units: %s\n"
37873802 msgstr "Erro ao ler arquivo de diagrama\n"
37883803
3789-#: plug-ins/xfig/xfig-import.c:935
3804+#: plug-ins/xfig/xfig-import.c:996
37903805 #, fuzzy, c-format
37913806 msgid "Error reading magnification: %s\n"
37923807 msgstr "Erro ao ler arquivo de diagrama\n"
37933808
3794-#: plug-ins/xfig/xfig-import.c:946
3809+#: plug-ins/xfig/xfig-import.c:1007
37953810 #, fuzzy, c-format
37963811 msgid "Error reading multipage indicator: %s\n"
37973812 msgstr "Erro ao ler arquivo de diagrama\n"
37983813
3799-#: plug-ins/xfig/xfig-import.c:957
3814+#: plug-ins/xfig/xfig-import.c:1018
38003815 #, fuzzy, c-format
38013816 msgid "Error reading transparent color: %s\n"
38023817 msgstr ""
38033818 "Erro ao carregar biblioteca: \"%s\":\n"
38043819 " %s\n"
38053820
3806-#: plug-ins/xfig/xfig-import.c:966 plug-ins/xfig/xfig-import.c:1021
3821+#: plug-ins/xfig/xfig-import.c:1027 plug-ins/xfig/xfig-import.c:1082
38073822 #, fuzzy, c-format
38083823 msgid "Error reading FIG file: %s\n"
38093824 msgstr "Erro ao ler arquivo de diagrama\n"
38103825
3811-#: plug-ins/xfig/xfig-import.c:968 plug-ins/xfig/xfig-import.c:1023
3826+#: plug-ins/xfig/xfig-import.c:1029 plug-ins/xfig/xfig-import.c:1084
38123827 msgid "Premature end of FIG file\n"
38133828 msgstr ""
38143829
3815-#: plug-ins/xfig/xfig-import.c:977
3830+#: plug-ins/xfig/xfig-import.c:1038
38163831 #, fuzzy, c-format
38173832 msgid "Error reading resolution: %s\n"
38183833 msgstr ""
38193834 "Erro ao carregar biblioteca: \"%s\":\n"
38203835 " %s\n"
38213836
3822-#: plug-ins/xfig/xfig-import.c:1008
3837+#: plug-ins/xfig/xfig-import.c:1069
38233838 #, c-format
38243839 msgid "Doesn't look like a Fig file: %s\n"
38253840 msgstr ""
38263841
3827-#: plug-ins/xfig/xfig-import.c:1014
3842+#: plug-ins/xfig/xfig-import.c:1075
38283843 #, c-format
38293844 msgid "This is a FIG version %d.%d file, I may not understand it\n"
38303845 msgstr ""
38313846
3832-#: plug-ins/xfig/xfig-import.c:1067
3847+#: plug-ins/xfig/xfig-import.c:1116
38333848 msgid "XFig File Format"
38343849 msgstr ""
38353850
--- a/po/sv.po
+++ b/po/sv.po
@@ -11,7 +11,7 @@
1111 msgid ""
1212 msgstr ""
1313 "Project-Id-Version: dia\n"
14-"POT-Creation-Date: 2001-05-09 12:16+0800\n"
14+"POT-Creation-Date: 2001-05-11 16:56+0800\n"
1515 "PO-Revision-Date: 2001-04-09 22:34+0200\n"
1616 "Last-Translator: Christian Rose <menthos@menthos.com>\n"
1717 "Language-Team: Swedish <sv@li.org>\n"
@@ -622,7 +622,7 @@ msgstr ""
622622 "Anslutningshandtaget finns inte."
623623
624624 #: app/load_save.c:231 plug-ins/dxf/dxf-import.c:577 plug-ins/wpg/wpg.c:1036
625-#: plug-ins/xfig/xfig-import.c:1002
625+#: plug-ins/xfig/xfig-import.c:1063
626626 #, c-format
627627 msgid "Couldn't open: '%s' for reading.\n"
628628 msgstr "Kunde inte ?pna: \"%s\" f? l?ning.\n"
@@ -3638,149 +3638,167 @@ msgstr "Exportfilter till WordPerfect-grafik"
36383638 msgid "Fig Format import and export filter"
36393639 msgstr "Importfilter f? fig-format"
36403640
3641-#: plug-ins/xfig/xfig-import.c:280
3642-msgid "Patterns are not implemented\n"
3641+#: plug-ins/xfig/xfig-import.c:73
3642+#, fuzzy
3643+msgid "Polygon import is not implemented yes"
3644+msgstr "Objekttypen %d ? inte implementerad ?\n"
3645+
3646+#: plug-ins/xfig/xfig-import.c:74
3647+#, fuzzy
3648+msgid "Patterns are not supported by Dia"
36433649 msgstr "M?ster ? inte implementerat\n"
36443650
3645-#: plug-ins/xfig/xfig-import.c:318
3646-#, c-format
3647-msgid "Line style %d not supported\n"
3651+#: plug-ins/xfig/xfig-import.c:75
3652+msgid "Triple-dotted lines are not supported by Dia, using double-dotted"
3653+msgstr ""
3654+
3655+#: plug-ins/xfig/xfig-import.c:76
3656+msgid "Negative corner radius, negating"
3657+msgstr ""
3658+
3659+#: plug-ins/xfig/xfig-import.c:77
3660+#, fuzzy
3661+msgid "Spline import is not implemented yet"
3662+msgstr "Objekttypen %d ? inte implementerad ?\n"
3663+
3664+#: plug-ins/xfig/xfig-import.c:357
3665+#, fuzzy, c-format
3666+msgid "Line style %d should not appear\n"
36483667 msgstr "Linjestil %d st?s inte\n"
36493668
3650-#: plug-ins/xfig/xfig-import.c:356
3669+#: plug-ins/xfig/xfig-import.c:395
36513670 #, c-format
36523671 msgid "Error while reading %dth of %d points: %s\n"
36533672 msgstr "Fel vid l?ning av %d:e av %d punkter: %s\n"
36543673
3655-#: plug-ins/xfig/xfig-import.c:375
3674+#: plug-ins/xfig/xfig-import.c:414
36563675 msgid "Error while reading arrowhead\n"
36573676 msgstr "Fel vid l?ning av pilhuvud\n"
36583677
3659-#: plug-ins/xfig/xfig-import.c:458
3678+#: plug-ins/xfig/xfig-import.c:505
36603679 #, c-format
36613680 msgid "Couldn't read ellipse info: %s\n"
36623681 msgstr "Kunde inte l?a ellipsinformation: %s\n"
36633682
3664-#: plug-ins/xfig/xfig-import.c:524
3683+#: plug-ins/xfig/xfig-import.c:574
36653684 #, c-format
36663685 msgid "Couldn't read polyline info: %s\n"
36673686 msgstr "Kunde inte l?a polylinjeinformation: %s\n"
36683687
3669-#: plug-ins/xfig/xfig-import.c:539
3688+#: plug-ins/xfig/xfig-import.c:589
36703689 #, c-format
36713690 msgid "Couldn't read flipped bit: %s\n"
36723691 msgstr "Kunde inte l?a v?d bit: %s\n"
36733692
3674-#: plug-ins/xfig/xfig-import.c:591 plug-ins/xfig/xfig-import.c:674
3693+#: plug-ins/xfig/xfig-import.c:645 plug-ins/xfig/xfig-import.c:729
36753694 #, c-format
36763695 msgid "Unknown polyline subtype: %d\n"
36773696 msgstr "Ok?d polylinjeundertyp: %d\n"
36783697
3679-#: plug-ins/xfig/xfig-import.c:652
3698+#: plug-ins/xfig/xfig-import.c:707
36803699 #, fuzzy, c-format
36813700 msgid "Couldn't read arc info: %s\n"
36823701 msgstr "Kunde inte l?a textinformation: %s\n"
36833702
3684-#: plug-ins/xfig/xfig-import.c:723
3703+#: plug-ins/xfig/xfig-import.c:781
36853704 #, c-format
36863705 msgid "Couldn't read text info: %s\n"
36873706 msgstr "Kunde inte l?a textinformation: %s\n"
36883707
3689-#: plug-ins/xfig/xfig-import.c:769
3708+#: plug-ins/xfig/xfig-import.c:828
36903709 #, c-format
36913710 msgid "Couldn't identify FIG object: %s\n"
36923711 msgstr "Kunde inte identifiera FIG-objekt: %s\n"
36933712
3694-#: plug-ins/xfig/xfig-import.c:783
3713+#: plug-ins/xfig/xfig-import.c:835
36953714 msgid "Compound end outside compound\n"
36963715 msgstr "Sammans?tningen slutar utanf? sammans?tningen\n"
36973716
3698-#: plug-ins/xfig/xfig-import.c:806
3717+#: plug-ins/xfig/xfig-import.c:854
36993718 #, c-format
37003719 msgid "Couldn't read color: %s\n"
37013720 msgstr "Kunde inte l?a f?gen: %s\n"
37023721
3703-#: plug-ins/xfig/xfig-import.c:835
3722+#: plug-ins/xfig/xfig-import.c:896
37043723 #, c-format
37053724 msgid "Couldn't read group extend: %s\n"
37063725 msgstr "Kunde inte l?a grupput?ning: %s\n"
37073726
3708-#. Spline which includes closed/open control/interpolated spline.
3709-#: plug-ins/xfig/xfig-import.c:847
3710-#, c-format
3711-msgid "Object type %d not implemented yet\n"
3712-msgstr "Objekttypen %d ? inte implementerad ?\n"
3713-
3714-#: plug-ins/xfig/xfig-import.c:850
3727+#: plug-ins/xfig/xfig-import.c:907
37153728 #, c-format
37163729 msgid "Unknown object type %d\n"
37173730 msgstr "Ok?d objekttyp %d\n"
37183731
3719-#: plug-ins/xfig/xfig-import.c:869
3732+#: plug-ins/xfig/xfig-import.c:930
37203733 #, c-format
37213734 msgid "`%s' is not one of `%s' or `%s'\n"
37223735 msgstr "\"%s\" ? inte en av \"%s\" eller \"%s\"\n"
37233736
3724-#: plug-ins/xfig/xfig-import.c:879
3737+#: plug-ins/xfig/xfig-import.c:940
37253738 #, c-format
37263739 msgid "Error reading paper size: %s\n"
37273740 msgstr "Fel vid l?ning av pappersstorlek: %s\n"
37283741
3729-#: plug-ins/xfig/xfig-import.c:901
3742+#: plug-ins/xfig/xfig-import.c:950
3743+#, c-format
3744+msgid "Unknown paper size `%s', using default\n"
3745+msgstr ""
3746+
3747+#: plug-ins/xfig/xfig-import.c:962
37303748 #, c-format
37313749 msgid "Error reading paper orientation: %s\n"
37323750 msgstr "Fel vid l?ning av pappersorientering: %s\n"
37333751
3734-#: plug-ins/xfig/xfig-import.c:911
3752+#: plug-ins/xfig/xfig-import.c:972
37353753 #, c-format
37363754 msgid "Error reading justification: %s\n"
37373755 msgstr "Fel vid l?ning av justering: %s\n"
37383756
3739-#: plug-ins/xfig/xfig-import.c:921
3757+#: plug-ins/xfig/xfig-import.c:982
37403758 #, c-format
37413759 msgid "Error reading units: %s\n"
37423760 msgstr "Fel vid l?ning av enheter: %s\n"
37433761
3744-#: plug-ins/xfig/xfig-import.c:935
3762+#: plug-ins/xfig/xfig-import.c:996
37453763 #, c-format
37463764 msgid "Error reading magnification: %s\n"
37473765 msgstr "Fel vid l?ning av f?storing: %s\n"
37483766
3749-#: plug-ins/xfig/xfig-import.c:946
3767+#: plug-ins/xfig/xfig-import.c:1007
37503768 #, c-format
37513769 msgid "Error reading multipage indicator: %s\n"
37523770 msgstr "Fel vid l?ning av flersidesindikator: %s\n"
37533771
3754-#: plug-ins/xfig/xfig-import.c:957
3772+#: plug-ins/xfig/xfig-import.c:1018
37553773 #, c-format
37563774 msgid "Error reading transparent color: %s\n"
37573775 msgstr "Fel vid l?ning av genomskinlig f?g: %s\n"
37583776
3759-#: plug-ins/xfig/xfig-import.c:966 plug-ins/xfig/xfig-import.c:1021
3777+#: plug-ins/xfig/xfig-import.c:1027 plug-ins/xfig/xfig-import.c:1082
37603778 #, c-format
37613779 msgid "Error reading FIG file: %s\n"
37623780 msgstr "Fel vid l?ning av FIG-fil: %s\n"
37633781
3764-#: plug-ins/xfig/xfig-import.c:968 plug-ins/xfig/xfig-import.c:1023
3782+#: plug-ins/xfig/xfig-import.c:1029 plug-ins/xfig/xfig-import.c:1084
37653783 msgid "Premature end of FIG file\n"
37663784 msgstr "F? tidigt slut p FIG-filen\n"
37673785
3768-#: plug-ins/xfig/xfig-import.c:977
3786+#: plug-ins/xfig/xfig-import.c:1038
37693787 #, c-format
37703788 msgid "Error reading resolution: %s\n"
37713789 msgstr "Fel vid l?ning av uppl?ning: %s\n"
37723790
3773-#: plug-ins/xfig/xfig-import.c:1008
3791+#: plug-ins/xfig/xfig-import.c:1069
37743792 #, c-format
37753793 msgid "Doesn't look like a Fig file: %s\n"
37763794 msgstr "Ser inte ut som en Fig-fil: %s\n"
37773795
3778-#: plug-ins/xfig/xfig-import.c:1014
3796+#: plug-ins/xfig/xfig-import.c:1075
37793797 #, c-format
37803798 msgid "This is a FIG version %d.%d file, I may not understand it\n"
37813799 msgstr "Detta ? en FIG-fil i version %d.%d, jag kanske inte f?st? den\n"
37823800
3783-#: plug-ins/xfig/xfig-import.c:1067
3801+#: plug-ins/xfig/xfig-import.c:1116
37843802 msgid "XFig File Format"
37853803 msgstr "XFig-filformat"
37863804
--- a/sheets/Makefile.am
+++ b/sheets/Makefile.am
@@ -26,7 +26,7 @@ SHEETS = \
2626 CLEANFILES = sheet-translation-report
2727
2828 sheet-translation-report: $(SHEETS) checktrans checktrans.py
29- -(cd $(srcdir) $$ ./checktrans $(SHEETS))
29+ -(cd $(srcdir) && ./checktrans $(SHEETS))
3030
3131 EXTRA_DIST = sheet-translation-report $(SHEETS) checktrans checktrans.py
3232