Commit Graph

532 Commits

Author SHA1 Message Date
Michael Natterer 02fde14c95 build display/ before tools/.
2001-11-08  Michael Natterer  <mitch@gimp.org>

	* app/Makefile.am: build display/ before tools/.

	* app/devices.c: devices_check_change(): added all events
	which have a GdkDevice pointer.

	* app/gimpprogress.c: include "display-types.h" instead of
	"core-types.h".

	* app/core/Makefile.am
	* app/core/gimpdrawable-bucket-fill.[ch]: new files: the bucket_fill
	stuff taken from tools/gimpbucketfilltool.[ch].

	* app/core/core-types.h: added "BucketFillMode".

	* app/core/gimpimage-mask-select.[ch]: cleanup.

	* app/core/gimpmarshal.list: added more marshallers for GimpTool's
	new signal signatures.

	* app/core/gimpmarshal.[ch]: regenerated.

	* app/display/Makefile.am
	* app/display/gimpdisplayshell-dnd.[ch]
	* app/display/gimpdisplayshell-layer-select.[ch]: new files: the
	canvas drop callbacks from gimpdisplayshell-callbacks.[ch] and
	the stuff formerly knows as gui/layer-select.[ch].

	* app/display/gimpdisplay.h: don't include "gui/gui-types.h".

	* app/display/gximage.c: include "display-types.h".

	* app/display/gimpdisplay-foreach.c
	* app/display/gimpdisplayshell.[ch]: call gdsplay_delete(), don't
	destroy the shell widget.

	* app/gui/Makefile.am
	* app/gui/layer-select.[ch]: removed.

	* app/gui/gradients-commands.c: fixed "Save as POV" fprintf()s.

	* app/gui/preferences-dialog.c: removed the layer_select stuff
	because it is useless with the new preview system.

	* app/gui/tool-options-dialog.c: send the correct data to the
	close_callback.

	* app/gui/tools-commands.c: changed to follow the new
	gimp_tool_initialize() semantics (see below).

	Tool & canvas event handling chainsawing:

	* app/tools/tools-types.h: new struct GimpCoords which contains
	x, y, pressure, tilt etc.

	* app/display/gimpdisplayshell-callbacks.[ch]: added utility
	functions which transparently retreive the current event's
	GimpCoords or take it from the device directly if the event has
	none. Pass GimpCoords _in_image_coordinates_ to all tool
	functions.

	Most important: don't pass GdkEvents and display coordinates to
	tools any more.

	* app/tools/gimptool.[ch]: changed virtual functions to take
	GimpCoords, time and state separately instead of GdkEvents.

	* app/tools/gimpbezierselecttool.c
	* app/tools/gimpblendtool.c
	* app/tools/gimpbucketfilltool.[ch]
	* app/tools/gimpbycolorselecttool.c
	* app/tools/gimpclonetool.c
	* app/tools/gimpcolorpickertool.c
	* app/tools/gimpconvolvetool.c
	* app/tools/gimpcroptool.[ch]
	* app/tools/gimpcurvestool.c
	* app/tools/gimpdodgeburntool.c
	* app/tools/gimpdrawtool.c
	* app/tools/gimpeditselectiontool.[ch]
	* app/tools/gimperasertool.c
	* app/tools/gimpfliptool.c
	* app/tools/gimpfreeselecttool.[ch]
	* app/tools/gimpfuzzyselecttool.c
	* app/tools/gimpinktool.c
	* app/tools/gimpiscissorstool.c
	* app/tools/gimpmagnifytool.c
	* app/tools/gimpmeasuretool.c
	* app/tools/gimpmovetool.c
	* app/tools/gimppainttool.c
	* app/tools/gimppathtool.[ch]
	* app/tools/gimprectselecttool.c
	* app/tools/gimprotatetool.c
	* app/tools/gimpselectiontool.[ch]
	* app/tools/gimpsmudgetool.c
	* app/tools/gimptexttool.c
	* app/tools/gimptransformtool.[ch]
	* app/tools/path_tool.[ch]
	* app/tools/selection_options.c: tons and tons of changes:

	- changed to use the new virtual function parameters.
	- removed zillions of gdisplay_untransform_coords().
	- get the active drawable's offsets manually in many cases.
	  (questionable, but IMHO ok because it's obvious and not simply a
	  "TRUE" passed to some function)
	- reordered some functions to be consistent across tools.
	- some tools had to be changed to work on image coords, not
	  display ones (esp. crop).
	- fixed strange rotate tool behaviour which should be backported
	  to stable.
	- some stuff i came across.
	- indentation and other paranoia.
	- rounding of coordinated may be broken in some tools.
	- new bugs guaranteed.

	* app/tools/tool_manager.[ch]: new semantic of
	tool_manager_initialize_active() (looked at the places where it
	was used from and put common code together). Should be a bit
	better now :)

	* app/tools/gimpblendtool.c
	* app/tools/transform_options.c: use the new GTK+ feature that a
	widget (toggle button) can be a frame's title for this tools' tool
	options.

	* app/widgets/widgets-types.h: stuff.

	* themes/Default/gtkrc: s/GtkDialog/GimpDialog/.

	* tools/pdbgen/Makefile.am: don't scan tools/gimpbucketfilltool.h
	any more.

	* tools/pdbgen/enums.pl: regenerated.

	* tools/pdbgen/pdb/tools.pdb: changed bucket_fill wrapper.

	* app/pdb/tools_cmds.c: regenerated.
2001-11-08 19:14:51 +00:00
Wang Jian 6337e6f31b *** empty log message *** 2001-11-08 14:04:42 +00:00
Michael Natterer d162376d47 app/display/Makefile.am app/display/gimpdisplay-callbacks.[ch]
2001-11-01  Michael Natterer  <mitch@gimp.org>

	* app/display/Makefile.am
	* app/display/gimpdisplay-callbacks.[ch]
	* app/display/gimpdisplay-render.[ch]
	* app/display/gimpdisplay-scale.[ch]
	* app/display/gimpdisplay-scroll.[ch]: removed and added as
	gimpdisplayshell-foo.[ch] because they are all methods of the
	shell.

	* app/display/gimpdisplay.[ch]
	* app/display/gimpdisplayshell.[ch]: moved the "offset" and "size"
	variables from GimpDisplay to GimpDisplayShell. GimpDisplay
	should know nothing about screen coordinates.

	The gdisplay_[un]transform_foo() methods are still part of
	GimpDisplay but will be moved to GimpDisplayShell as soon as the
	tools' vitrual functions speak in image coordinates instead of
	GdkEvents.

	* app/display/gimpdisplayshell-callbacks.[ch]: prefixed all
	functions with gimp_display_shell_*. Moved some stuff to a
	"realize" callback File still has to be renamed.

	* app/display/gimpdisplay-foreach.[ch]: removed
	gdisplays_shrink_wrap().

	* app/gui/menus.c
	* app/gui/view-commands.[ch]
	* app/display/gimpdisplayshell-scale.[ch]: implemented "Zoom to
	Fit Window" function (#57670).

	* app/nav_window.c
	* app/display/gimpdisplay-handlers.c
	* app/display/gimpdisplayshell-render.[ch]
	* app/display/gimpdisplayshell-scale.[ch]
	* app/display/gimpdisplayshell-scroll.[ch]
	* app/gui/colormap-dialog.c
	* app/gui/gui.c
	* app/gui/preferences-dialog.c
	* app/tools/gimpmagnifytool.c
	* app/tools/gimpmovetool.c
	* app/widgets/gimppreview.c: changed according to variable
	and filename changes.

	* app/tools/tool_manager.c: tool_manager_select_tool(): send the
	active tool a "HALT" command before selecting the new one. Fixes
	stale tool dialogs which were there because some other hack was
	removed (This is IMHO the right place to shut down the active
	tool).

	* app/tools/gimpcroptool.c: don't shrink wrap after cropping but
	let gimprc.allow_resize_windows decide.

	* app/tools/gimpselectiontool.c: gimage_mask_value() takes image,
	not screen coordinates. A good example of how braindead it is to
	pass GdkEvents to tools :-) Fixes incorrect cursor and oper
	update of the selection tools.

	* app/tools/gimptransformtool.c
	* app/undo.c: removed (#if 0 for now) some strange code which did
	manual exposing of GimpDisplayShell areas. This was definitely a
	hack and should not be there given the image emits correct
	"update" signals.
2001-11-02 09:31:21 +00:00
Michael Natterer 96fdb35530 argh. 2001-10-31 21:20:46 +00:00
Wang Jian 384b4c0740 *** empty log message *** 2001-10-30 13:09:49 +00:00
Michael Natterer 8b5b8df82d generate app/file/Makefile
2001-10-25  Michael Natterer  <mitch@gimp.org>

	* configure.in: generate app/file/Makefile

	* app/Makefile.am
	* app/file-open.[ch]
	* app/file-save.[ch]
	* app/file-utils.[ch]: removed...

	* app/file/Makefile.am
	* app/file/file-open.[ch]
	* app/file/file-save.[ch]
	* app/file/file-utils.[ch]: ...and added here.

	* app/gui/file-commands.c
	* app/gui/file-open-dialog.c
	* app/gui/file-save-dialog.c
	* tools/pdbgen/pdb/fileops.pdb: changed includes accordingly.

	* app/app_procs.[ch]: removed app_exit_finish() and
	app_exit_finish_done() from the public API, call gtk_main() here,
	pass "no_data" to gimp_new() and "restore_session" to
	gui_restore().

	* app/main.c: removed global variable "double_speed", don't
	call gtk_main() in main.c. Added some missing log domains.

	* app/appenv.h: removed "double_speed".

	* app/core/gimp.[ch]: added "gboolean no_data" property which
	must be passed to gimp_new().

	* app/display/gimpdisplay-foreach.[ch]: added gdisplays_set_busy()
	and gdisplays_unset_busy().

	* app/gui/about-dialog.c: don't include "appenv.h", declare
	"double_speed" extern.

	* app/gui/brush-select.[ch]
	* app/gui/gradient-select.[ch]
	* app/gui/palette-select.[ch]
	* app/gui/pattern-select.[ch]: made the list of dialogs and the
	global selection dialogs private. Added functions which get a
	dialog by PDB callback_name. Pass a "Gimp" and the callback_name
	to the constructors. Don't include "app_procs.h" for "the_gimp"
	and "appenv.h" for "no_data" any more. Use the passed "Gimp"
	instead and look at gimp->no_data.

	* app/gui/toolbox.[ch]: pass a "Gimp" to the constructor.

	* app/gui/gui.[ch]: use the new gdisplays_[un]set_busy() functions,
	use the passed "Gimp" all over the place, don't include
	"appenv.h" and "app_procs.h". gui_really_quit_dialog() takes
	a "quit_func" callback now and calls it instead of calling
	app_exit_finish() (which is now private) directly.

	* app/gui/convert-dialog.c
	* app/gui/dialogs-constructors.c
	* app/gui/palette-import-dialog.c
	* tools/pdbgen/pdb/brush_select.pdb
	* tools/pdbgen/pdb/gradient_select.pdb
	* tools/pdbgen/pdb/pattern_select.pdb: changed accordingly.

	* app/pdb/brush_select_cmds.c
	* app/pdb/fileops_cmds.c
	* app/pdb/gradient_select_cmds.c
	* app/pdb/pattern_select_cmds.c: regenerated.

2001-10-25  Michael Natterer  <mitch@gimp.org>

	* POTFILES.in: app/file-*.c -> app/file/file-*.c
2001-10-25 13:30:01 +00:00
Michael Natterer 1261ba7bcc updated.
2001-10-23  Michael Natterer  <mitch@gimp.org>

	* POTFILES.in: updated.
2001-10-23 16:59:51 +00:00
Michael Natterer e90d28c480 docindex.c -> widgets/gimpdocumentview.c
2001-10-23  Michael Natterer  <mitch@gimp.org>

	* POTFILES.in: docindex.c -> widgets/gimpdocumentview.c
2001-10-23 11:47:18 +00:00
Wang Jian a5bda23c12 *** empty log message *** 2001-10-23 03:06:59 +00:00
Michael Natterer be86df2a69 app/Makefile.am removed.
2001-10-18  Michael Natterer  <mitch@gimp.org>

	* app/Makefile.am
	* app/module_db.[ch]: removed.

	* app/core/Makefile.am
	* app/core/core-types.h
	* app/core/gimpmoduleinfo.[ch]
	* app/core/gimpmodules.[ch]: new files containing the module info
	object and the module list handling code.

	* app/gui/Makefile.am
	* app/gui/module-browser.[ch]: new files containing the GUI.

	* app/xcf/xcf.[ch]: pass a "Gimp" pointer to xcf_exit().

	* app/core/gimp.[ch]: handle modules and xcf init/exit here too.

	* app/app_procs.c: don't touch the modules and xcf stuff any more.

	* app/gui/dialogs-constructors.c: changed accordingly.

2001-10-18  Michael Natterer  <mitch@gimp.org>

	* POTFILES.in: module_db.c has moved.
2001-10-18 17:27:36 +00:00
Sven Neumann b41061658e forgot to add this file which is needed now that we no longer use
2001-10-09  Sven Neumann  <sven@gimp.org>

	* Makefile.in.in: forgot to add this file which is needed now that
	we no longer use gettextize.
2001-10-08 22:18:19 +00:00
Valek Frob b19a129c83 Updated russian translation. 2001-09-28 14:29:52 +00:00
Wang Jian 8670d7e78a *** empty log message *** 2001-09-28 07:03:23 +00:00
Sven Neumann 9ebe622eb1 continuing ... 2001-09-27 15:34:48 +00:00
Sven Neumann d871f9035e resurrected mail plug-in. Thanks to David Odin <dindinx@wanadoo.fr> for
2001-09-17  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/mail.c: resurrected mail plug-in. Thanks to
	David Odin <dindinx@wanadoo.fr> for the patch.

	* plug-ins/common/.cvsignore
	* plug-ins/common/Makefile.am
	* plug-ins/common/plugin-defs.pl: build mail, nlfilt and plugindetails
	plug-ins again.

	* tips/Makefile.am
	* tips/gimp_conseils.fr.txt: removed ...
	* tips/gimp_tips.fr.txt: ... and readded under this name.
2001-09-17 12:01:27 +00:00
Andras Timar 2fd4615bc4 converted to UTF-8.
2001-09-17  Andras Timar  <timar@gnome.hu>

        * hu.po: converted to UTF-8.
2001-09-17 09:56:38 +00:00
Sven Neumann 645642e8d3 added a section that mentions the GNOME translation project that
2001-08-29  Sven Neumann  <sven@gimp.org>

	* README.i18n: added a section that mentions the GNOME translation
	project that coordinates translation efforts in the GNOME CVS tree.

	Mention the fact that po files as well as the tips files need to be
	UTF-8 encoded to work with GTK+-2.0.

	* tips/gimp_tips.de.txt: converted to UTF-8.
2001-08-29 21:39:54 +00:00
Christophe Merlet 8e6beaf08e Updated French translation. 2001-08-29 08:15:42 +00:00
Sven Neumann a1e7345719 I hate gettext. 2001-08-28 16:39:46 +00:00
Sven Neumann cae946baaf removed redefinitions of libtool macros. We use the installed libtool now.
2001-08-28  Sven Neumann  <sven@gimp.org>

	* acinclude.m4: removed redefinitions of libtool macros. We use the
	installed libtool now. If this breaks the build for your system,
	upgrade libtool. If that does not help, let us know.

	* ltconfig
	* ltmain.sh: removed these files. Newer versions of libtool don't use
	ltconfig and ltmain.sh is taken from your libtool installation.

	* autogen.sh: check for presence of libtool.

	* Makefile.am
	* configure.in
	* gimp-remote.1.in
	* gimp.1.in
	* gimprc.5.in: removed man-pages from toplevel dir ...

	* docs/Makefile.am
	* docs/gimp-remote.1.in
	* docs/gimp.1.in
	* docs/gimprc.5.in
	* docs/gimptool-1.4.1.in: ... and added them back here.

	* gimp-1.4.m4: removed from toplevel dir ...

	* m4macros/Makefile.am
	* m4macros/gimp-1.4.m4: ... and added it back here.
2001-08-28 13:04:47 +00:00
Pablo Saratxaga 4b122bc4ba updated Catalan file 2001-08-21 12:16:43 +00:00
Michael Natterer a44ec6b377 Removed accidentially checked in cruft added by gettextize. 2001-08-04 13:00:07 +00:00
Sven Neumann fd97c49813 replaced some deprecated gdk functions.
2001-07-25  Sven Neumann  <sven@gimp.org>

	* app/gximage.c: replaced some deprecated gdk functions.

	* app/widgets/gimpcontainergridview.c
	* app/widgets/gimpcontainermenuimpl.c
	* app/widgets/gimpcursor.c
	* app/widgets/gimpdialogfactory.c
	* app/widgets/gimpdnd.c
	* app/widgets/gimpdock.c
	* app/widgets/gimpdockbook.c
	* app/widgets/gimphistogramview.c
	* app/widgets/gimplistitem.c
	* app/widgets/gimpmenuitem.c
	* app/widgets/gimpnavigationpreview.c
	* app/widgets/gimppreview.c
	* app/widgets/gimpwidgets-utils.c: more work on porting to GObject.
2001-07-24 23:11:30 +00:00
Stanislav Brabec 731181e295 czech translation update 2001-07-22 19:52:51 +00:00
Fatih Demir dd2828b8cc Update.. 2001-07-18 11:13:37 +00:00
Fatih Demir 284e178d4c Updated tr.po 2001-07-17 10:18:36 +00:00
Christian Rose 3afc602f13 Updated Swedish translation.
2001-07-07  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.
2001-07-07 13:11:56 +00:00
Almer S. Tigelaar 04866238ad For Meilof Veeningen <meilof@hotmail.com> :
2001-06-17  Almer S. Tigelaar  <almer@gnome.org>

	For Meilof Veeningen <meilof@hotmail.com> :

	* nl.po: Updated Dutch translation.
2001-06-17 16:27:17 +00:00
Christian Rose 662686b2c8 Updated Swedish translation.
2001-06-14  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.
2001-06-14 16:22:02 +00:00
Almer S. Tigelaar c618e19410 For Meilof Veeningen <meilof@hotmail.com> :
2001-06-07  Almer S. Tigelaar  <almer@gnome.org>

	For Meilof Veeningen <meilof@hotmail.com> :

	* nl.po: Updated Dutch translation.
2001-06-07 16:28:42 +00:00
Pablo Saratxaga 63d29f3e5c fixed syntax errors and incorrect multibyte sequences 2001-05-21 19:40:29 +00:00
Michael Natterer 3c792d166e fixed invalid charset spec.
2001-05-20  Michael Natterer  <mitch@gimp.org>

	* hu.po: fixed invalid charset spec.
2001-05-20 13:02:17 +00:00
Sven Neumann 9691c46bfe added some missing files 2001-05-14 02:31:10 +00:00
Sven Neumann 20c2fb32e2 app/Makefile.am don't reference header files which don't exist any longer
2001-05-14  Sven Neumann  <sven@gimp.org>

	* app/Makefile.am
	* libgimp/Makefile.am: don't reference header files which don't exist
	any longer
2001-05-14 02:25:19 +00:00
Michael Natterer b86ce96ae4 app/appenums.h app/core/core-types.h moved some more types to core-types.h
2001-05-13  Michael Natterer  <mitch@gimp.org>

	* app/appenums.h
	* app/core/core-types.h
	* app/tools/tools-types.h: moved some more types to core-types.h
	and tools-types.h.  Removed AUXILLARY_CHANNEL from the ChannelType
	enum.

	* app/gdisplay.[ch]: removed the "depth" and "color_type" fields
	from the struct. Cleaned up the header.

	* app/selection.c
	* app/gui/info-window.c: use g_visual->depth instead of
	gdisp->depth.

	* app/gimphelp.c: #include "core/core-types.h"

	* tools/pdbgen/Makefile.am: added app/core/core-types.h to the
	list of files to be scanned for enums.

	* libgimp/gimpenums.h
	* plug-ins/script-fu/script-fu-constants.c
	* tools/pdbgen/enums.pl
	* app/pdb/drawable_cmds.c
	* app/pdb/image_cmds.c
	* app/pdb/layer_cmds.c: regenerated.
2001-05-13 17:25:12 +00:00
Valek Frob 7dfb29cc1a Updated russian translation. 2001-05-08 08:29:34 +00:00
Valek Frob 57293f35df Updated russian translation. 2001-04-23 15:17:24 +00:00
Valek Frob 0ce01ad5bc Updated russian translation. 2001-04-15 13:16:02 +00:00
Simon Budig 77094344d0 POTFILES.in fixed the entry for gimpdatafactoryview.c
2001-04-11  Simon Budig  <simon@gimp.org>

        * POTFILES.in  fixed the entry for gimpdatafactoryview.c
2001-04-11 12:53:31 +00:00
Marius Andreiana 13b48e1808 Added ro (Romanian) translation 2001-03-23 11:17:52 +00:00
Fatih Demir c7a271b810 tr.po -- part II 2001-03-13 19:19:40 +00:00
Simon Budig 0f446e8dbe Fixed one pixel.
2001-03-12  Simon Budig  <simon@gimp.org>

        * pixmaps/wilber.xpm: Fixed one pixel.
2001-03-12 14:32:56 +00:00
Valek Frob 9495ea51c3 Updated russian translation. 2001-02-23 17:34:42 +00:00
Stanislav Brabec 617985837c czech translation update 2001-02-17 20:28:05 +00:00
Daniel Egger 58ccb180f3 Applied fix for #37716 from Domenico Rotiroti.
2001-02-08  Daniel Egger <egger@suse.de>

        * it.po: Applied fix for #37716 from Domenico Rotiroti.
2001-02-08 14:32:11 +00:00
Valek Frob f3bc8ec806 Updated russian translation. 2001-02-06 17:26:25 +00:00
Valek Frob 885bb23123 Updated russian translation. 2001-01-23 14:47:22 +00:00
Valek Frob 159832aa78 Updated russian translation. 2001-01-19 15:58:58 +00:00
Valek Frob d52c61a717 Updated russian translation. 2001-01-09 14:51:30 +00:00
Christian Rose 638d74a81e Updated Swedish translation. 2001-01-09 11:27:53 +00:00
Christian Rose bd96765ded Updated Swedish translation. 2001-01-08 11:55:13 +00:00
Christian Rose 858af3c063 Updated Swedish translation. 2001-01-02 12:49:10 +00:00
Kjartan Maraas 0b25db1e86 Fixed up Norwegian translation.
2000-12-25  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Fixed up Norwegian translation.
2000-12-25 17:32:38 +00:00
Szabolcs Ban 7fa6628cb1 Updated Hungarian translations 2000-12-22 11:48:15 +00:00
Szabolcs Ban a3e3b170c9 Updated Hungarian translations 2000-12-21 15:48:12 +00:00
Valek Frob 205af3442b Updated russian translation. 2000-12-21 10:05:21 +00:00
Tor Lillqvist 6dd159cd6c Update Finnish translation.
2000-12-21  Tor Lillqvist  <tml@iki.fi>

	* fi.po: Update Finnish translation.
2000-12-20 22:06:32 +00:00
Stanislav Brabec 61c5ef9b84 czech translation update 2000-12-19 19:09:10 +00:00
Christian Rose 3b12125045 Updated Swedish translation. 2000-12-19 00:41:03 +00:00
Sven Neumann 71e4f576f9 updated german translation 2000-12-18 21:31:58 +00:00
Valek Frob 0c693932c0 Updated russian translation. 2000-12-15 09:20:57 +00:00
Szabolcs Ban b25f5955da Updated Hungarian translation 2000-12-12 13:51:54 +00:00
Kjartan Maraas 30314d083e Fixed up Norwegian translation.
2000-12-05  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Fixed up Norwegian translation.
2000-12-05 12:25:41 +00:00
SHIRASAKI Yasuhiro e72f39e222 updated japanese translation.
-- yasuhiro
2000-11-25 13:02:00 +00:00
Christophe Merlet 98e8d786d1 Updated French translations. 2000-11-24 17:12:48 +00:00
Stanislav Brabec 1157b21db3 czech translation update 2000-11-22 22:49:13 +00:00
Valek Frob 353f6a72ac Updated russian translation. 2000-11-14 15:59:42 +00:00
Sven Neumann 8b515dee56 updated german translation 2000-11-14 11:59:26 +00:00
Chyla Zbigniew 1cdb81c669 Updated Polish translation 2000-11-13 18:11:24 +00:00
Christian Rose 5fab9ace9e Updated Swedish translation. 2000-11-13 12:48:20 +00:00
Chyla Zbigniew 2fa2f801db Updated Polish translation 2000-11-08 11:17:55 +00:00
Daniel Egger a2bc52ec29 Added new language hr (Croatian).
2000-11-06  Daniel Egger <egger@suse.de>

        * configure.in: Added new language hr (Croatian).
2000-11-06 15:49:53 +00:00
Sven Neumann 746c37eb7e moved the new enum Garry introduced recently from the header to the .c
2000-11-06  Sven Neumann  <sven@gimp.org>

	* app/convolve.[ch]: moved the new enum Garry introduced recently
	from the header to the .c file so it does not get exported to the
	PDB by enumgen.pl.

and some updates to the italian translation as sent by Daniele Medri.
2000-11-06 12:40:07 +00:00
SHIRASAKI Yasuhiro 1df41ffd94 updated japanese translation.
-- yasuhiro
2000-11-05 02:29:35 +00:00
Chyla Zbigniew 105a1d86ee Updated Polish translation 2000-11-04 21:50:16 +00:00
Tor Lillqvist 50314278d4 Remove one bogus fuzziness indicator.
2000-10-31  Tor Lillqvist  <tml@iki.fi>

	* fi.po: Remove one bogus fuzziness indicator.
2000-11-02 19:40:36 +00:00
Rodrigo Sancho Senosiain 1370f6eb78 Updated es.po 2000-11-01 17:35:22 +00:00
Stanislav Brabec 5947b54a59 czech translation update 2000-10-30 19:56:11 +00:00
Chyla Zbigniew 02312acc28 Updated Polish translation 2000-10-28 11:55:12 +00:00
Chyla Zbigniew 59747f1210 Updated Polish translation 2000-10-27 13:13:35 +00:00
Rodrigo Sancho Senosiain 7132e7011d updated spanish translation 2000-10-23 16:35:23 +00:00
Tomas gren 96e3a5542b minor fix
2000-10-21  Tomas gren <stric@ing.umu.se>

* sv.po: minor fix
2000-10-21 17:11:02 +00:00
Stanislav Brabec 2cf59f6d7b czech translation update 2000-10-19 20:50:59 +00:00
Valek Frob e645adda25 Updated russian translation. 2000-10-19 19:16:00 +00:00
Christophe Merlet 9060fe996e Updated French translations. 2000-10-17 11:10:30 +00:00
Kjartan Maraas 7c2abc3c46 Fixed up Norwegian translation.
2000-10-17  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Fixed up Norwegian translation.

2000-10-15  Jesus Bravo Alvarez  <jba@pobox.com>
2000-10-16 23:06:14 +00:00
Jesus Bravo Alvarez be0f10bb4d Updated Galician translation 2000-10-15 21:57:40 +00:00
Christian Rose 5a7a794e79 Updated Swedish translation. 2000-10-15 10:44:28 +00:00
Kjartan Maraas 130fd81c61 Updated Norwegian translation.
2000-10-15  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.
2000-10-15 10:04:50 +00:00
Sven Neumann 6fd73ed6e7 applied patch from Ben Gertzfield which fixes a misuse of "it's", changing
2000-10-14  Sven Neumann  <sven@gimp.org>

        * app/user_install.c: applied patch from Ben Gertzfield which fixes
        a misuse of "it's", changing it to "its".
2000-10-14 18:28:10 +00:00
Austin Donnelly 8403fe1b01 changed translation of File/Revert to "Haal terug" since previously it was
2000-10-14  Austin Donnelly <austin@gimp.org>

        * nl.po: changed translation of File/Revert to "Haal terug"
            since previously it was exactly the same translation as
            File/Save, leading to quite some confusion to Dutch users.
            Fixes Bug#15017 "save" becomes "fall back to the old version"
            Thanks go to Stefan Rieken <StefanRieken@SoftHome.net> for
            tracking this one down and suggesting a better translation.
2000-10-14 16:12:57 +00:00
SHIRASAKI Yasuhiro cef26090a5 updated japanese translation.
-- yasuhiro
2000-10-09 12:11:08 +00:00
Christophe Merlet 3c6f04c82e Updated French translations. 2000-10-09 09:31:20 +00:00
Tor Lillqvist d908d10504 Fix fuzzy translations. 2000-10-07 18:47:22 +00:00
Sven Neumann 830a33df8f applied gimp-kirchgessner-001005-0 Check if input filename keeps a space.
2000-10-06  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/ps.c: applied gimp-kirchgessner-001005-0
	Check if input filename keeps a space. Then enclose filename
	in " or ' before passing to ghostscript. Otherwise it can't be
	interpreted.

	* tips/gimp_tips.pl.txt
	* tools/authorsgen/contributors: applied gimp-art-20000926-0
	Updates to the polish translation by Artur Polaczynski
	<artie@kmfms.com>
2000-10-06 18:16:58 +00:00
Christian Rose ab7119d1c2 Updated Swedish translation. 2000-10-02 20:42:04 +00:00
Valek Frob d0c7ebdd22 Updated russian translation. 2000-10-02 13:04:34 +00:00
Christian Meyer 399764ff9a Updated German translation. 2000-10-02 11:06:38 +00:00
Christophe Merlet e3bb8b542b Updated French translations. 2000-10-02 10:15:25 +00:00
Pablo Saratxaga a9fa2562d4 corrected syntax errors 2000-09-30 18:06:17 +00:00
Rodrigo Sancho Senosiain baba573763 spanish translation updated 2000-09-27 23:24:48 +00:00
Christian Rose 69965a61e1 Updated Swedish translation. 2000-09-27 20:27:47 +00:00
Manish Singh 1f1e8a9ffa italian translation updates
-Yosh
2000-09-27 19:56:29 +00:00
Christian Meyer c1bb911234 Added update.pl and README.tools from kanikus. 2000-09-13 10:24:30 +00:00
SHIRASAKI Yasuhiro b03f73d8f7 updated japanese translation.
-- yasuhiro
2000-09-10 06:16:53 +00:00
Christian Rose f6b4a365c8 Updated Swedish translation. 2000-09-08 15:50:48 +00:00
Jesus Bravo Alvarez c867a9f1b0 Updated Galician translation 2000-09-06 18:54:55 +00:00
Christian Rose 2f8181d994 Updated Swedish translation. 2000-09-04 19:15:27 +00:00
Christian Rose 5b6df63ff1 Updated Swedish translation. 2000-09-03 15:57:58 +00:00
Kjartan Maraas 962039c674 Updated Norwegian translation.
2000-08-30  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.
2000-08-30 19:32:39 +00:00
Alastair McKinstry d781329fc3 Added Irish translation 2000-08-27 15:00:58 +00:00
Valek Frob 1dcda459db Updated russian translation. 2000-08-27 10:46:17 +00:00
Valek Frob 591eed3547 UPdated russian translation. 2000-08-26 09:35:38 +00:00
Sven Neumann 92c5f0486c For my friend Xach.
--Sven
2000-08-25 17:41:38 +00:00
Stanislav Brabec 6bde2b6794 czech translation update 2000-08-25 09:14:56 +00:00
Kjartan Maraas 64529c8986 Updated Norwegian translation.
2000-08-16  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.
2000-08-15 22:56:11 +00:00
SHIRASAKI Yasuhiro 012eb01deb updated japanese translation.
-- yasuhiro
2000-08-13 07:34:26 +00:00
Valek Frob 705c919eec Updated german translation. 2000-08-12 16:48:15 +00:00
Yuri Syrota 8e90c73a26 Updated Ukrainian translation 2000-08-09 08:01:01 +00:00
Daniel Egger fa80db4cd9 Updated file.
Updated file.
2000-08-07 22:28:05 +00:00
Rodrigo Sancho Senosiain 9c00b44b78 *** empty log message *** 2000-08-05 18:06:08 +00:00
Valek Frob 7e304e734f Dodge/Burn fixed. Thanks to Felix S. <silence@musician.org>. 2000-07-31 10:21:47 +00:00
Sven Neumann 94f36fdd11 updated the german translations and unmarked a string for translation
--Sven
2000-07-29 21:03:54 +00:00
Kjartan Maraas a8d765cae8 Updated Norwegian translation.
2000-07-21  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.
2000-07-20 22:28:11 +00:00
Stanislav Brabec dbfdddebc8 czech translation update 2000-07-20 21:23:19 +00:00
Ville Hautamaki 12a935cdea Finnis translation update
Ville
2000-07-20 12:04:03 +00:00
Valek Frob 1d1ead8aa1 Updated russian translation. 2000-07-16 13:25:20 +00:00
Kjartan Maraas e0e4101d6d Updated Norwegian translation.
2000-07-16  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.
2000-07-15 23:41:08 +00:00
Jesus Bravo Alvarez 7a3be4bce3 Added Galician translation 2000-07-11 21:04:00 +00:00
Stanislav Brabec ad566c8c12 czech translation update 2000-07-10 20:41:21 +00:00
SHIRASAKI Yasuhiro 00faeca6cb Updated japanese translation.
-- yasuhiro
2000-07-08 15:28:28 +00:00
Valek Frob 89c68a874b Updated russian translation. 2000-07-05 12:02:09 +00:00
Sven Neumann 093390b91f Corrected an error message, applied updates to the italian
and german translations.


--Sven
2000-07-04 20:21:01 +00:00
Daniel Egger 5e33a64cba changed some words to lowercase
2000-06-27  Daniel Egger  <egger@suse.de>

        * libgimp/gimpexport.c: changed some words to lowercase

2000-06-28  Sven Neumann  <sven@gimp.org>

        * de.po: updated german translation

2000-06-27  Sven Neumann  <sven@gimp.org>

        * en_GB.po: applied gimp-cornwell-000626-0 which updates
        the british translation
2000-06-27 22:02:27 +00:00
Sven Neumann 05581fce40 corrected bad translations as reported in bug #15233.
2000-06-26  Sven Neumann  <neo@wintermute.ochsenblut.de>

	* nl.po: corrected bad translations as reported in bug #15233.

	Please do always install the compiled message catalogs and
	run gimp from the console to catch warnings at startup!
2000-06-25 23:05:01 +00:00
Sven Neumann 3459aa0df1 updates german translations
--Sven
2000-06-23 00:45:28 +00:00
Kjartan Maraas 17d593592b Updated Norwegian translation.
2000-06-21  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.
2000-06-21 08:09:44 +00:00
Yuri Syrota 65464f4ff3 Updated Ukrainian translation 2000-06-20 11:39:36 +00:00
Stanislav Brabec 8142e3f03d czech translation update 2000-06-19 21:36:56 +00:00
SHIRASAKI Yasuhiro e6b1a38f77 updated japanese translation.
-- yasuhiro
2000-06-17 21:01:31 +00:00
Ville Hautamaki b292ec02f7 Small stuff
Ville
2000-06-16 14:08:01 +00:00
Kjartan Maraas 439e66a4e1 Updated Norwegian translation.
2000-06-15  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian translation.
2000-06-12 23:00:44 +00:00
Valek Frob 5848cb8253 Updated russian translation. 2000-06-12 23:00:39 +00:00
Sven Neumann 7d00a1afc4 updates to the italian translations by Daniel Medri
--Sven
2000-06-12 23:00:39 +00:00
Sven Neumann 26981b7120 updates to italian translation by Daniel Medri
--Sven
2000-06-10 16:00:32 +00:00
Stanislav Brabec 48b32fd2af czech translation update 2000-06-09 13:28:09 +00:00
Ville Hautamaki 23e29be3b4 Fixed fuzzies in finnish translation
Ville
2000-06-09 08:48:48 +00:00
Valek Frob e2c0a02257 Updated russian translation. 2000-06-08 19:47:26 +00:00
Sven Neumann af6cc881cb fixed fatal errors in finnish translation
--Sven
2000-06-08 18:46:30 +00:00
Ville Hautamaki 81dcf82a8f Minor finnish updates
Ville
2000-06-08 15:38:41 +00:00