git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* gitk: "lime" color incompatible with older Tk versions
@ 2016-05-01 17:03 Andrew Janke
  2016-05-02 16:20 ` Stefan Beller
  0 siblings, 1 reply; 11+ messages in thread
From: Andrew Janke @ 2016-05-01 17:03 UTC (permalink / raw)
  To: git

Hi, git folks,

I'm having trouble running gitk on Mac OS X 10.9.5. The gitk program 
uses the color "lime", which is not present in older versions of Tk, 
apparently including the Tk 8.5 which ships with 10.9.

When I try to launch it, I get this error.

|$ gitk Error in startup script: unknown color name "lime" (processing 
"-fore" option) invoked from within "$ctext tag conf m2 -fore [lindex 
$mergecolors 2]" (procedure "makewindow" line 347) invoked from within 
"makewindow" (file "/usr/local/bin/gitk" line 12434)|

This compatibility problem was noted before back in 2012, in 
http://www.mail-archive.com/git%40vger.kernel.org/msg14496.html.

Would you consider switching from lime to a hex value color, for 
compatibility with users of older versions of Tk? A patch to do so is 
below; only the file gitk-git/gitk needs to be changed.

Cheers,
Andrew Janke


diff --git a/gitk-git/gitk b/gitk-git/gitk
index 805a1c7..db5560d 100755
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -2265,7 +2265,7 @@ proc makewindow {} {
      set h [expr {[font metrics uifont -linespace] + 2}]
      set progresscanv .tf.bar.progress
      canvas $progresscanv -relief sunken -height $h -borderwidth 2
-    set progressitem [$progresscanv create rect -1 0 0 $h -fill lime]
+    set progressitem [$progresscanv create rect -1 0 0 $h -fill "#99FF00"]
      set fprogitem [$progresscanv create rect -1 0 0 $h -fill yellow]
      set rprogitem [$progresscanv create rect -1 0 0 $h -fill red]
      }
@@ -3397,7 +3397,7 @@ set rectmask {
         0x00, 0x00, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f,
         0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0x00, 0x00};
  }
-image create bitmap reficon-H -background black -foreground lime \
+image create bitmap reficon-H -background black -foreground "#99FF00" \
      -data $rectdata -maskdata $rectmask
  image create bitmap reficon-o -background black -foreground "#ddddff" \
      -data $rectdata -maskdata $rectmask
@@ -12188,7 +12188,7 @@ if {[tk windowingsystem] eq "aqua"} {
      set extdifftool "meld"
  }

-set colors {lime red blue magenta darkgrey brown orange}
+set colors {"#99FF00" red blue magenta darkgrey brown orange}
  if {[tk windowingsystem] eq "win32"} {
      set uicolor SystemButtonFace
      set uifgcolor SystemButtonText
@@ -12206,12 +12206,12 @@ if {[tk windowingsystem] eq "win32"} {
  }
  set diffcolors {red "#00a000" blue}
  set diffcontext 3
-set mergecolors {red blue lime purple brown "#009090" magenta "#808000" 
"#009000" "#ff0080" cyan "#b07070" "#70b0f0" "#70f0b0" "#f0b070" "#ff70b0"}
+set mergecolors {red blue "#99FF00" purple brown "#009090" magenta 
"#808000" "#009000" "#ff0080" cyan "#b07070" "#70b0f0" "#70f0b0" 
"#f0b070" "#ff70b0"}
  set ignorespace 0
  set worddiff ""
  set markbgcolor "#e0e0ff"

-set headbgcolor lime
+set headbgcolor "#99FF00"
  set headfgcolor black
  set headoutlinecolor black
  set remotebgcolor #ffddaa
@@ -12226,7 +12226,7 @@ set linehoverfgcolor black
  set linehoveroutlinecolor black
  set mainheadcirclecolor yellow
  set workingfilescirclecolor red
-set indexcirclecolor lime
+set indexcirclecolor "#99FF00"
  set circlecolors {white blue gray blue blue}
  set linkfgcolor blue
  set circleoutlinecolor $fgcolor

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: gitk: "lime" color incompatible with older Tk versions
  2016-05-01 17:03 gitk: "lime" color incompatible with older Tk versions Andrew Janke
@ 2016-05-02 16:20 ` Stefan Beller
  2017-01-13 11:20   ` David Aguilar
  0 siblings, 1 reply; 11+ messages in thread
From: Stefan Beller @ 2016-05-02 16:20 UTC (permalink / raw)
  To: Andrew Janke, Paul Mackerras; +Cc: git@vger.kernel.org

+ Paul Mackerras, who maintains gitk

On Sun, May 1, 2016 at 10:03 AM, Andrew Janke <floss@apjanke.net> wrote:
> Hi, git folks,
>
> I'm having trouble running gitk on Mac OS X 10.9.5. The gitk program uses
> the color "lime", which is not present in older versions of Tk, apparently
> including the Tk 8.5 which ships with 10.9.
>
> When I try to launch it, I get this error.
>
> |$ gitk Error in startup script: unknown color name "lime" (processing
> "-fore" option) invoked from within "$ctext tag conf m2 -fore [lindex
> $mergecolors 2]" (procedure "makewindow" line 347) invoked from within
> "makewindow" (file "/usr/local/bin/gitk" line 12434)|
>
> This compatibility problem was noted before back in 2012, in
> http://www.mail-archive.com/git%40vger.kernel.org/msg14496.html.
>
> Would you consider switching from lime to a hex value color, for
> compatibility with users of older versions of Tk? A patch to do so is below;
> only the file gitk-git/gitk needs to be changed.
>
> Cheers,
> Andrew Janke
>
>
> diff --git a/gitk-git/gitk b/gitk-git/gitk
> index 805a1c7..db5560d 100755
> --- a/gitk-git/gitk
> +++ b/gitk-git/gitk
> @@ -2265,7 +2265,7 @@ proc makewindow {} {
>      set h [expr {[font metrics uifont -linespace] + 2}]
>      set progresscanv .tf.bar.progress
>      canvas $progresscanv -relief sunken -height $h -borderwidth 2
> -    set progressitem [$progresscanv create rect -1 0 0 $h -fill lime]
> +    set progressitem [$progresscanv create rect -1 0 0 $h -fill "#99FF00"]
>      set fprogitem [$progresscanv create rect -1 0 0 $h -fill yellow]
>      set rprogitem [$progresscanv create rect -1 0 0 $h -fill red]
>      }
> @@ -3397,7 +3397,7 @@ set rectmask {
>         0x00, 0x00, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f,
>         0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0x00, 0x00};
>  }
> -image create bitmap reficon-H -background black -foreground lime \
> +image create bitmap reficon-H -background black -foreground "#99FF00" \
>      -data $rectdata -maskdata $rectmask
>  image create bitmap reficon-o -background black -foreground "#ddddff" \
>      -data $rectdata -maskdata $rectmask
> @@ -12188,7 +12188,7 @@ if {[tk windowingsystem] eq "aqua"} {
>      set extdifftool "meld"
>  }
>
> -set colors {lime red blue magenta darkgrey brown orange}
> +set colors {"#99FF00" red blue magenta darkgrey brown orange}
>  if {[tk windowingsystem] eq "win32"} {
>      set uicolor SystemButtonFace
>      set uifgcolor SystemButtonText
> @@ -12206,12 +12206,12 @@ if {[tk windowingsystem] eq "win32"} {
>  }
>  set diffcolors {red "#00a000" blue}
>  set diffcontext 3
> -set mergecolors {red blue lime purple brown "#009090" magenta "#808000"
> "#009000" "#ff0080" cyan "#b07070" "#70b0f0" "#70f0b0" "#f0b070" "#ff70b0"}
> +set mergecolors {red blue "#99FF00" purple brown "#009090" magenta
> "#808000" "#009000" "#ff0080" cyan "#b07070" "#70b0f0" "#70f0b0" "#f0b070"
> "#ff70b0"}
>  set ignorespace 0
>  set worddiff ""
>  set markbgcolor "#e0e0ff"
>
> -set headbgcolor lime
> +set headbgcolor "#99FF00"
>  set headfgcolor black
>  set headoutlinecolor black
>  set remotebgcolor #ffddaa
> @@ -12226,7 +12226,7 @@ set linehoverfgcolor black
>  set linehoveroutlinecolor black
>  set mainheadcirclecolor yellow
>  set workingfilescirclecolor red
> -set indexcirclecolor lime
> +set indexcirclecolor "#99FF00"
>  set circlecolors {white blue gray blue blue}
>  set linkfgcolor blue
>  set circleoutlinecolor $fgcolor
>
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: gitk: "lime" color incompatible with older Tk versions
  2016-05-02 16:20 ` Stefan Beller
@ 2017-01-13 11:20   ` David Aguilar
  2017-01-14  8:48     ` gitk pull request // was: " David Aguilar
  0 siblings, 1 reply; 11+ messages in thread
From: David Aguilar @ 2017-01-13 11:20 UTC (permalink / raw)
  To: Stefan Beller; +Cc: Andrew Janke, Paul Mackerras, git@vger.kernel.org

On Mon, May 02, 2016 at 09:20:43AM -0700, Stefan Beller wrote:
> + Paul Mackerras, who maintains gitk
> 
> On Sun, May 1, 2016 at 10:03 AM, Andrew Janke <floss@apjanke.net> wrote:
> > Hi, git folks,
> >
> > I'm having trouble running gitk on Mac OS X 10.9.5. The gitk program uses
> > the color "lime", which is not present in older versions of Tk, apparently
> > including the Tk 8.5 which ships with 10.9.

Ping.. it would be nice to get this patch applied.
I can verify that gitk on Mac OS X 10.11 also has this problem.
gitk is usually pretty good about backwards-compatibility.

> > This compatibility problem was noted before back in 2012, in
> > http://www.mail-archive.com/git%40vger.kernel.org/msg14496.html.
> >
> > Would you consider switching from lime to a hex value color, for
> > compatibility with users of older versions of Tk? A patch to do so is below;
> > only the file gitk-git/gitk needs to be changed.

I can recreate and resend this patch if needed; it's simply:
:%s/lime/"#99FF00"/g

Would a re-roll of this patch be accepted, or is it not worth
bothering?

Google for "gitk lime" to get a taste for some of the fallout
caused by this problem.

The fact that multiple pages, with different OS's, have examples
of users stumbling over this change is a good hint that it's
worth fixing.

Thoughts?
-- 
David

^ permalink raw reply	[flat|nested] 11+ messages in thread

* gitk pull request // was: Re: gitk: "lime" color incompatible with older Tk versions
  2017-01-13 11:20   ` David Aguilar
@ 2017-01-14  8:48     ` David Aguilar
  2017-01-15  2:35       ` Junio C Hamano
  0 siblings, 1 reply; 11+ messages in thread
From: David Aguilar @ 2017-01-14  8:48 UTC (permalink / raw)
  To: Junio C Hamano
  Cc: Stefan Beller, Andrew Janke, Paul Mackerras, git@vger.kernel.org

On Fri, Jan 13, 2017 at 03:20:43AM -0800, David Aguilar wrote:
> 
> Ping.. it would be nice to get this patch applied.

Sorry for the noise, and thank you Paul for the fix.
This was already fixed by Paul in gitk@22a713c72df.

I'm sure Junio will merge gitk.git into git.git soon enough so I
can sit tight until then, but while I'm here I might as well
send out a pull request:

The following changes since commit 22a713c72df8b6799c59287c50cee44c4a6db51e:

  gitk: Follow themed bgcolor in help dialogs (2016-03-19 14:12:21 +1100)

are available in the git repository at:

  git://ozlabs.org/~paulus/gitk.git 

for you to fetch changes up to fbf426478e540f4737860dae622603cc0daba3d2:

  gitk: Update copyright notice to 2016 (2016-12-12 20:46:42 +1100)

----------------------------------------------------------------
Markus Hitter (3):
      gitk: Turn off undo manager in the text widget
      gitk: Remove closed file descriptors from $blobdifffd
      gitk: Clear array 'commitinfo' on reload

Paul Mackerras (2):
      gitk: Use explicit RGB green instead of "lime"
      gitk: Update copyright notice to 2016

Rogier Goossens (3):
      gitk: Add a 'rename' option to the branch context menu
      gitk: Allow checking out a remote branch
      gitk: Include commit title in branch dialog

Satoshi Yasushima (1):
      gitk: Fix Japanese translation for "marked commit"

Stefan Dotterweich (1):
      gitk: Fix missing commits when using -S or -G

Vasco Almeida (2):
      gitk: Makefile: create install bin directory
      gitk: Add Portuguese translation

 Makefile    |    1 +
 gitk        |  166 +++++--
 po/bg.po    |    4 +-
 po/ca.po    |    6 +-
 po/de.po    |    4 +-
 po/es.po    |    4 +-
 po/fr.po    |    4 +-
 po/hu.po    |    4 +-
 po/it.po    |    4 +-
 po/ja.po    |   13 +-
 po/pt_br.po |    4 +-
 po/pt_pt.po | 1376 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ru.po    |    4 +-
 po/sv.po    |    8 +-
 po/vi.po    |    4 +-
 15 files changed, 1549 insertions(+), 57 deletions(-)
 create mode 100644 po/pt_pt.po

Thanks,
-- 
David

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: gitk pull request // was: Re: gitk: "lime" color incompatible with older Tk versions
  2017-01-14  8:48     ` gitk pull request // was: " David Aguilar
@ 2017-01-15  2:35       ` Junio C Hamano
  2017-01-16  3:17         ` Paul Mackerras
  0 siblings, 1 reply; 11+ messages in thread
From: Junio C Hamano @ 2017-01-15  2:35 UTC (permalink / raw)
  To: David Aguilar
  Cc: Stefan Beller, Andrew Janke, Paul Mackerras, git@vger.kernel.org

David Aguilar <davvid@gmail.com> writes:

> On Fri, Jan 13, 2017 at 03:20:43AM -0800, David Aguilar wrote:
>> 
>> Ping.. it would be nice to get this patch applied.
>
> Sorry for the noise, and thank you Paul for the fix.
> This was already fixed by Paul in gitk@22a713c72df.
>
> I'm sure Junio will merge gitk.git into git.git soon enough so I
> can sit tight until then, but while I'm here I might as well
> send out a pull request:
>
> The following changes since commit 22a713c72df8b6799c59287c50cee44c4a6db51e:
>
>   gitk: Follow themed bgcolor in help dialogs (2016-03-19 14:12:21 +1100)
>
> are available in the git repository at:
>
>   git://ozlabs.org/~paulus/gitk.git 
>
> for you to fetch changes up to fbf426478e540f4737860dae622603cc0daba3d2:
>
>   gitk: Update copyright notice to 2016 (2016-12-12 20:46:42 +1100)

Pinging Paul to signal me that his tree is ready to pull from is
appreciated, and asking Paul if his tree is ready to be pulled and
then relaying his answer to me is also fine, but I am sensing that
this message is neither.  So let me double check.

Paul, is it a good time to pull, or do you still have something not
published yet that should go together with what you have already
queued?

Thanks.

>
> ----------------------------------------------------------------
> Markus Hitter (3):
>       gitk: Turn off undo manager in the text widget
>       gitk: Remove closed file descriptors from $blobdifffd
>       gitk: Clear array 'commitinfo' on reload
>
> Paul Mackerras (2):
>       gitk: Use explicit RGB green instead of "lime"
>       gitk: Update copyright notice to 2016
>
> Rogier Goossens (3):
>       gitk: Add a 'rename' option to the branch context menu
>       gitk: Allow checking out a remote branch
>       gitk: Include commit title in branch dialog
>
> Satoshi Yasushima (1):
>       gitk: Fix Japanese translation for "marked commit"
>
> Stefan Dotterweich (1):
>       gitk: Fix missing commits when using -S or -G
>
> Vasco Almeida (2):
>       gitk: Makefile: create install bin directory
>       gitk: Add Portuguese translation
>
>  Makefile    |    1 +
>  gitk        |  166 +++++--
>  po/bg.po    |    4 +-
>  po/ca.po    |    6 +-
>  po/de.po    |    4 +-
>  po/es.po    |    4 +-
>  po/fr.po    |    4 +-
>  po/hu.po    |    4 +-
>  po/it.po    |    4 +-
>  po/ja.po    |   13 +-
>  po/pt_br.po |    4 +-
>  po/pt_pt.po | 1376 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  po/ru.po    |    4 +-
>  po/sv.po    |    8 +-
>  po/vi.po    |    4 +-
>  15 files changed, 1549 insertions(+), 57 deletions(-)
>  create mode 100644 po/pt_pt.po
>
> Thanks,

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: gitk pull request // was: Re: gitk: "lime" color incompatible with older Tk versions
  2017-01-15  2:35       ` Junio C Hamano
@ 2017-01-16  3:17         ` Paul Mackerras
  2017-01-16  7:48           ` Junio C Hamano
  0 siblings, 1 reply; 11+ messages in thread
From: Paul Mackerras @ 2017-01-16  3:17 UTC (permalink / raw)
  To: Junio C Hamano
  Cc: David Aguilar, Stefan Beller, Andrew Janke, git@vger.kernel.org

Hi Junio,

On Sat, Jan 14, 2017 at 06:35:43PM -0800, Junio C Hamano wrote:
> David Aguilar <davvid@gmail.com> writes:
> 
> > On Fri, Jan 13, 2017 at 03:20:43AM -0800, David Aguilar wrote:
> >> 
> >> Ping.. it would be nice to get this patch applied.
> >
> > Sorry for the noise, and thank you Paul for the fix.
> > This was already fixed by Paul in gitk@22a713c72df.
> >
> > I'm sure Junio will merge gitk.git into git.git soon enough so I
> > can sit tight until then, but while I'm here I might as well
> > send out a pull request:
> >
> > The following changes since commit 22a713c72df8b6799c59287c50cee44c4a6db51e:
> >
> >   gitk: Follow themed bgcolor in help dialogs (2016-03-19 14:12:21 +1100)
> >
> > are available in the git repository at:
> >
> >   git://ozlabs.org/~paulus/gitk.git 
> >
> > for you to fetch changes up to fbf426478e540f4737860dae622603cc0daba3d2:
> >
> >   gitk: Update copyright notice to 2016 (2016-12-12 20:46:42 +1100)
> 
> Pinging Paul to signal me that his tree is ready to pull from is
> appreciated, and asking Paul if his tree is ready to be pulled and
> then relaying his answer to me is also fine, but I am sensing that
> this message is neither.  So let me double check.
> 
> Paul, is it a good time to pull, or do you still have something not
> published yet that should go together with what you have already
> queued?

I recently pushed out one more commit to update the Russian
translation from Dimitriy Ryazantcev.  The head is now 8fef3f36b779.
I have a couple more series that I am currently reviewing, but nothing
immediately ready to publish.  It would be a good time for you to do a
pull, since the "lime" color fix and the memory consumption fixes
should be helpful for a lot of people.

Thanks,
Paul.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: gitk pull request // was: Re: gitk: "lime" color incompatible with older Tk versions
  2017-01-16  3:17         ` Paul Mackerras
@ 2017-01-16  7:48           ` Junio C Hamano
  2017-01-17 18:34             ` Junio C Hamano
  0 siblings, 1 reply; 11+ messages in thread
From: Junio C Hamano @ 2017-01-16  7:48 UTC (permalink / raw)
  To: Paul Mackerras
  Cc: David Aguilar, Stefan Beller, Andrew Janke, git@vger.kernel.org

Paul Mackerras <paulus@ozlabs.org> writes:

>> Paul, is it a good time to pull, or do you still have something not
>> published yet that should go together with what you have already
>> queued?
>
> I recently pushed out one more commit to update the Russian
> translation from Dimitriy Ryazantcev.  The head is now 8fef3f36b779.
> I have a couple more series that I am currently reviewing, but nothing
> immediately ready to publish.  It would be a good time for you to do a
> pull, since the "lime" color fix and the memory consumption fixes
> should be helpful for a lot of people.

Thanks.  I did want to get the memory consumption fix sooner rather
than later, and this is very much appreciated.

Pulled.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: gitk pull request // was: Re: gitk: "lime" color incompatible with older Tk versions
  2017-01-16  7:48           ` Junio C Hamano
@ 2017-01-17 18:34             ` Junio C Hamano
  2017-01-18  3:52               ` [PATCH] gitk: remove translated message from comments David Aguilar
  0 siblings, 1 reply; 11+ messages in thread
From: Junio C Hamano @ 2017-01-17 18:34 UTC (permalink / raw)
  To: Paul Mackerras
  Cc: David Aguilar, Stefan Beller, Andrew Janke, git@vger.kernel.org

Junio C Hamano <gitster@pobox.com> writes:

> Paul Mackerras <paulus@ozlabs.org> writes:
>
>>> Paul, is it a good time to pull, or do you still have something not
>>> published yet that should go together with what you have already
>>> queued?
>>
>> I recently pushed out one more commit to update the Russian
>> translation from Dimitriy Ryazantcev.  The head is now 8fef3f36b779.
>> I have a couple more series that I am currently reviewing, but nothing
>> immediately ready to publish.  It would be a good time for you to do a
>> pull, since the "lime" color fix and the memory consumption fixes
>> should be helpful for a lot of people.
>
> Thanks.  I did want to get the memory consumption fix sooner rather
> than later, and this is very much appreciated.
>
> Pulled.

Hmph.  I am getting these:

        SUBDIR gitk-git
    Generating catalog po/sv.msg
    msgfmt --statistics --tcl po/sv.po -l sv -d po/
    po/sv.po:1388: duplicate message definition...
    po/sv.po:380: ...this is the location of the first definition
    msgfmt: found 1 fatal error
    make[1]: *** [po/sv.msg] Error 1
    make: *** [all] Error 2

Anybody else see this?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH] gitk: remove translated message from comments
  2017-01-17 18:34             ` Junio C Hamano
@ 2017-01-18  3:52               ` David Aguilar
  2017-01-18 10:15                 ` Paul Mackerras
  0 siblings, 1 reply; 11+ messages in thread
From: David Aguilar @ 2017-01-18  3:52 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: Junio C Hamano, git

"make update-po" fails because a previously untranslated string
has now been translated:

	Updating po/sv.po
	po/sv.po:1388: duplicate message definition...
	po/sv.po:380: ...this is the location of the first definition

Remove the duplicate message definition.

Reported-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: David Aguilar <davvid@gmail.com>
---
 po/sv.po | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index 32fc752..2a06fe5 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1385,21 +1385,6 @@ msgstr "Felaktiga argument till gitk:"
 #~ msgid "mc"
 #~ msgstr "mc"
 
-#~ msgid ""
-#~ "\n"
-#~ "Gitk - a commit viewer for git\n"
-#~ "\n"
-#~ "Copyright © 2005-2016 Paul Mackerras\n"
-#~ "\n"
-#~ "Use and redistribute under the terms of the GNU General Public License"
-#~ msgstr ""
-#~ "\n"
-#~ "Gitk - en incheckningsvisare för git\n"
-#~ "\n"
-#~ "Copyright © 2005-2016 Paul Mackerras\n"
-#~ "\n"
-#~ "Använd och vidareförmedla enligt villkoren i GNU General Public License"
-
 #~ msgid "next"
 #~ msgstr "nästa"
 
-- 
2.11.0.536.gaf746e49c2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] gitk: remove translated message from comments
  2017-01-18  3:52               ` [PATCH] gitk: remove translated message from comments David Aguilar
@ 2017-01-18 10:15                 ` Paul Mackerras
  2017-01-18 18:27                   ` Junio C Hamano
  0 siblings, 1 reply; 11+ messages in thread
From: Paul Mackerras @ 2017-01-18 10:15 UTC (permalink / raw)
  To: David Aguilar; +Cc: Junio C Hamano, git

On Tue, Jan 17, 2017 at 07:52:45PM -0800, David Aguilar wrote:
> "make update-po" fails because a previously untranslated string
> has now been translated:
> 
> 	Updating po/sv.po
> 	po/sv.po:1388: duplicate message definition...
> 	po/sv.po:380: ...this is the location of the first definition
> 
> Remove the duplicate message definition.
> 
> Reported-by: Junio C Hamano <gitster@pobox.com>
> Signed-off-by: David Aguilar <davvid@gmail.com>

Thanks, applied.

Junio, please do a pull from my repository to get this fix.
The new head is 7f03c6e32891.

Paul.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] gitk: remove translated message from comments
  2017-01-18 10:15                 ` Paul Mackerras
@ 2017-01-18 18:27                   ` Junio C Hamano
  0 siblings, 0 replies; 11+ messages in thread
From: Junio C Hamano @ 2017-01-18 18:27 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: David Aguilar, git

Paul Mackerras <paulus@ozlabs.org> writes:

> On Tue, Jan 17, 2017 at 07:52:45PM -0800, David Aguilar wrote:
>> "make update-po" fails because a previously untranslated string
>> has now been translated:
>> 
>> 	Updating po/sv.po
>> 	po/sv.po:1388: duplicate message definition...
>> 	po/sv.po:380: ...this is the location of the first definition
>> 
>> Remove the duplicate message definition.
>> 
>> Reported-by: Junio C Hamano <gitster@pobox.com>
>> Signed-off-by: David Aguilar <davvid@gmail.com>
>
> Thanks, applied.
>
> Junio, please do a pull from my repository to get this fix.
> The new head is 7f03c6e32891.

Thanks.

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2017-01-18 18:41 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-01 17:03 gitk: "lime" color incompatible with older Tk versions Andrew Janke
2016-05-02 16:20 ` Stefan Beller
2017-01-13 11:20   ` David Aguilar
2017-01-14  8:48     ` gitk pull request // was: " David Aguilar
2017-01-15  2:35       ` Junio C Hamano
2017-01-16  3:17         ` Paul Mackerras
2017-01-16  7:48           ` Junio C Hamano
2017-01-17 18:34             ` Junio C Hamano
2017-01-18  3:52               ` [PATCH] gitk: remove translated message from comments David Aguilar
2017-01-18 10:15                 ` Paul Mackerras
2017-01-18 18:27                   ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).