Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-12 Thread Marco Ciampa
On Mon, Feb 12, 2007 at 08:28:15AM +0100, Sven Neumann wrote:
 Hi,
 
 On Sun, 2007-02-11 at 23:16 +0100, Marco Ciampa wrote:
 
  Sorry, I was too hasty. It worked for the compilation but the problem
  remains, as you can see here:
  
  http://www.ciampix.net/screenshot.png
  
  very strange, all the other messages looks translated... 
 
 Not your fault. We forgot to set the translation domain for the enum.
 This is now fixed in trunk.
Great, thanks, THIS IS FEEDBACK!

I love you gimp developers!

-- 

Marco Ciampa

++
| Linux User  #78271 |
| FSFE fellow   #364 |
++
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-11 Thread Marco Ciampa
On Thu, Feb 08, 2007 at 07:40:53AM +0100, Sven Neumann wrote:
 Hi Marco,
 
 if I remember correctly this is fixed by removing the generated files
 POTFILES in all po subdirectories. Try this command in the toplevel gimp
 source directory:
 
   find . -name POTFILES -exec rm {} \;
 
 Then do a rebuild. The problem here is that the Makefile rules to
 generate the files used to be broken. We fixed the Makefiles but there's
 no dependency that would cause the broken files to be regenerated.
Great, it worked! Perhaps that operation could be insterted in the makefile
with the command make clean (if it's not already present...)

Thanks again. 

-- 

Marco Ciampa

++
| Linux User  #78271 |
| FSFE fellow   #364 |
++
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-11 Thread Sven Neumann
Hi,

On Sun, 2007-02-11 at 22:00 +0100, Marco Ciampa wrote:

  Then do a rebuild. The problem here is that the Makefile rules to
  generate the files used to be broken. We fixed the Makefiles but there's
  no dependency that would cause the broken files to be regenerated.
 Great, it worked! Perhaps that operation could be insterted in the makefile
 with the command make clean (if it's not already present...)

No, it shouldn't. This was only necessary once after the Makefiles were
changed (some weeks ago). You shouldn't have to do this again.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-11 Thread Sven Neumann
Hi,

On Sun, 2007-02-11 at 23:16 +0100, Marco Ciampa wrote:

 Sorry, I was too hasty. It worked for the compilation but the problem
 remains, as you can see here:
 
 http://www.ciampix.net/screenshot.png
 
 very strange, all the other messages looks translated... 

Not your fault. We forgot to set the translation domain for the enum.
This is now fixed in trunk.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-07 Thread Alexandre Prokoudine
On 2/6/07, Sven Neumann [EMAIL PROTECTED] wrote:
 Hi,

 On Mon, 2007-02-05 at 22:38 +0100, Marco Ciampa wrote:
  I just noted this strange behaviour: when I see the the
  Image menu-View-Display filters-Color Deficient Vision options
  (Protanopia, Deuteranopia, Tritanopia) with the Italian locale, _all_ but
  these three options are translated. Is it my svn copy fault or does it have 
  this
  behaviour in other languages too?

 Sorry, but I don't understand your question. What's translated and
 what's not? And did you already check in the it.po files that the
 strings have been translated at all?

As of current po-libgimp/it.po

#: ../modules/cdisplay_colorblind.c:67
msgid Protanopia (insensitivity to red)
msgstr Protanopia (insensibilità al rosso)

Alexandre
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-07 Thread Marco Ciampa
On Wed, Feb 07, 2007 at 09:29:57AM +0100, Sven Neumann wrote:
 On Wed, 2007-02-07 at 09:12 +0100, Marco Ciampa wrote:
[...]
  Resolving this error I get another error:
  
  Making all in po-libgimp
  make[2]: Entering directory `/home/marco/svn-gnome/gimp/trunk/po-libgimp'
  Makefile:159: *** target pattern contains no `%'.  Stop.
  make[2]: Leaving directory `/home/marco/svn-gnome/gimp/trunk/po-libgimp'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory `/home/marco/svn-gnome/gimp/trunk'
  make: *** [all] Error 2
  
  Exaclty on the po files where I see the problem, perhaps resolving this
  fixes it all...
 
 Yes, that might very well fix the problem for you. I remember that I
 used to have this issue with the po-libgimp Makefiles myself. Now if
 only I could remember how I fixed it...
Perhaps may help if I post the source lines of the Makefile that trigger
the error:

[...]

all: all-yes

all-yes: $(CATALOGS)
all-no:

#here is the problem!
$(GETTEXT_PACKAGE).pot: $(POTFILES)
$(GENPOT)
[...]

TIA

-- 

Marco Ciampa

++
| Linux User  #78271 |
| FSFE fellow   #364 |
++
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-07 Thread Marco Ciampa
On Wed, Feb 07, 2007 at 11:59:43AM -0200, Joao S. O. Bueno Calligaris wrote:
 On Wednesday 07 February 2007 07:31, Alexandre Prokoudine wrote:
  On 2/6/07, Sven Neumann [EMAIL PROTECTED] wrote:
   Hi,
  
   On Mon, 2007-02-05 at 22:38 +0100, Marco Ciampa wrote:
I just noted this strange behaviour: when I see the the
Image menu-View-Display filters-Color Deficient Vision
options (Protanopia, Deuteranopia, Tritanopia) with the Italian
locale, _all_ but these three options are translated. Is it my
svn copy fault or does it have this behaviour in other
languages too?
  
   Sorry, but I don't understand your question. What's translated
   and what's not? And did you already check in the it.po files that
   the strings have been translated at all?
 
  As of current po-libgimp/it.po
 
  #: ../modules/cdisplay_colorblind.c:67
  msgid Protanopia (insensitivity to red)
  msgstr Protanopia (insensibilità al rosso)
 
 
 So, do you know if ther eis an Italian word for it,a nd which it is? 
 If there are proper Italian words for that, just send then to the list 
 and we will fix(exceptionally, the normal course would be to ask for 
 the change in bugzilla.gimp.org)
 
 I am the trasnaltor for Brazillian portuguese, and as far as I know 
 these exact terms can be used in my language, so they are not changed 
 in the pt_BR translation as well.
 
The terms are the same in italian (they actually come from Latin) so the
translation is correct and complete, thanks.

See the other thread, perhaps the problem is in the automake/autoconf
process that creates an invalid Makefile for the po-libgimp directory.
I'm sorry, I'm not an expert in automake/autoconf/make so I do not know how
should look a correct Makefile to handle correctly the compilation/update of
these .po files.

bye

-- 

Marco Ciampa

++
| Linux User  #78271 |
| FSFE fellow   #364 |
++
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-07 Thread Sven Neumann
Hi Marco,

if I remember correctly this is fixed by removing the generated files
POTFILES in all po subdirectories. Try this command in the toplevel gimp
source directory:

  find . -name POTFILES -exec rm {} \;

Then do a rebuild. The problem here is that the Makefile rules to
generate the files used to be broken. We fixed the Makefiles but there's
no dependency that would cause the broken files to be regenerated.


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] strange localization behaviour (gimp-2.3-svn)

2007-02-05 Thread Sven Neumann
Hi,

On Mon, 2007-02-05 at 22:38 +0100, Marco Ciampa wrote:
 I just noted this strange behaviour: when I see the the 
 Image menu-View-Display filters-Color Deficient Vision options
 (Protanopia, Deuteranopia, Tritanopia) with the Italian locale, _all_ but
 these three options are translated. Is it my svn copy fault or does it have 
 this
 behaviour in other languages too?

Sorry, but I don't understand your question. What's translated and
what's not? And did you already check in the it.po files that the
strings have been translated at all?


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer