After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 124709 - POTFILES.in contains non-existing file
POTFILES.in contains non-existing file
Status: RESOLVED FIXED
Product: GIMP
Classification: Other
Component: Internationalisation
git master
Other All
: Normal normal
: 2.0
Assigned To: GIMP Bugs
GIMP Bugs
Depends on:
Blocks:
 
 
Reported: 2003-10-15 19:46 UTC by Danilo Segan
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Danilo Segan 2003-10-15 19:46:05 UTC
There's a problem with Gimp translation status generation: POT file is not
generated correctly, because POTFILES.in contains the file that is no
longer in the CVS.

I don't feel very safe with all the complications of Gimp i18n handling
(different directories, etc), so I don't want to change anything myself
(unless approved, of course).

As a quick check, I've ran (I didn't use intltool-update -m, for the same
reasons as above):

for i in `sed s/\#.*// POTFILES.in | sort| uniq`; do \
  if [ ! -f ../$i ]; then \
    echo $i; \
  fi; done


Which gave the following output:
app/core/gimp-grid.c

So, this one file should probably be removed from POTFILES.in. 

The same is true for the only file in POTFILES.skip:
data/misc/gimp.desktop.in which is probably replaced with
gimp.desktop.in.in as mentioned in POTFILES.in.
Comment 1 Michael Natterer 2003-10-15 20:19:30 UTC
Fixed in CVS. Skipping data/misc/gimp.desktop.in is however
ok since that file is autogenerated during the build.

2003-10-15  Michael Natterer  <mitch@gimp.org>

	* POTFILES.in: s/gimp-grid.c/gimpgrid.c/. Fixes bug #124709.