lazygit icon indicating copy to clipboard operation
lazygit copied to clipboard

Support i18n

Open OdaDaisuke opened this issue 7 years ago • 28 comments

Lazygit doesn't support i18n?

OdaDaisuke avatar Aug 06 '18 01:08 OdaDaisuke

Chinese character have some problems.

1533697357 1

TGhoul avatar Aug 08 '18 03:08 TGhoul

It seems that the display is wrong... Some chinese character shows up and eat up following ascii character. Maybe I should raise an issue on gocui ?

spin6lock avatar Aug 08 '18 06:08 spin6lock

@TGhoul do those same characters have a fixed-width in regular use? It may be that your font isn't monospaced. I tried testing how the app behaved with some mandarin characters but they didn't even render: image

I'm thinking it may be configurable via cmd, but I'm not well versed in windows

jesseduffield avatar Aug 08 '18 09:08 jesseduffield

@jesseduffield I think those characters is fixed-width, my problems appear in the "Commits" window, can you do something commit and write comment with Chinese simplified characters?

TGhoul avatar Aug 08 '18 09:08 TGhoul

screenshot from 2018-08-08 12-00-59

Can't reproduce it in Ubuntu, maybe this is Windows-1252 related ?

ponsfrilus avatar Aug 08 '18 10:08 ponsfrilus

See https://github.com/jroimartin/gocui/pull/74.

itchyny avatar Aug 08 '18 12:08 itchyny

@ponsfrilus @jesseduffield This issue may be related to gocui, I tested it in macOS.

image

TGhoul avatar Aug 08 '18 12:08 TGhoul

This should (or could) be fixed by https://github.com/jesseduffield/lazygit/pull/231 Looks like there are some little glitches that still occur but this is a good step in the right direction. Please let me know how the rendering works for you all :)

@OdaDaisuke @TGhoul

jesseduffield avatar Aug 28 '18 10:08 jesseduffield

@jesseduffield Thank you for all your effort with i18n.

TGhoul avatar Aug 29 '18 01:08 TGhoul

@jesseduffield Thank youuuu!

OdaDaisuke avatar Aug 29 '18 02:08 OdaDaisuke

@jesseduffield @OdaDaisuke is this issue fixed?

glvr182 avatar Sep 08 '18 16:09 glvr182

windos 有问题,ubuntu没得问题,头大

hello-liu avatar Sep 18 '18 09:09 hello-liu

This should (or could) be fixed by #231 Looks like there are some little glitches that still occur but this is a good step in the right direction. Please let me know how the rendering works for you all :)

@OdaDaisuke @TGhoul

Chinese character have some problems.

hi,解决了么?,好像在ubuntu下没问题

hello-liu avatar Sep 18 '18 09:09 hello-liu

@hello-liu It's OK on Mac OS.

faimin avatar Sep 18 '18 10:09 faimin

change cmd GBK to UTF-8,it work

hello-liu avatar Sep 18 '18 10:09 hello-liu

@hello-liu It's OK on Mac OS.

can you input chinese in the view ,half char no see

hello-liu avatar Sep 18 '18 12:09 hello-liu

image

The filename is chinese, but it's crashed. But the content in chinese is OK.

bushnerd avatar Feb 25 '21 08:02 bushnerd

@scutxd could you provide some steps to reproduce that issue? I'm not able to reproduce locally on the latest lazygit master branch

jesseduffield avatar Mar 13 '21 00:03 jesseduffield

@scutxd could you provide some steps to reproduce that issue? I'm not able to reproduce locally on the latest lazygit master branch

I have the same issue here, if you add a file which has a Chinese name, than it will shown some \xxx like text in the commit message, let me give your a screen shot.

Chinese_font_error

There are two issues here: 1, see the arrow pointed as "1", the Chinese text is too width, I mean normally, one Chinese character's width equals two English character's width, but from the screen shot, it looks like it has 3 times of the English character's width.

2, the second issue the the same as the scutxd mentioned one.

Update It looks like the Chinese character's width = 3 * English character's width. Is it because that I set the font page as: chcp 65001, which means it is UTF8 format, and a Chinese character normally need 3 bytes.

asmwarrior avatar Mar 17 '21 13:03 asmwarrior

If I change the code page to chcp 936, which is simplified Chinese, then the character width issue look OK, but there are other layout issues, see the screen shot below:

Chinese_font_error3

asmwarrior avatar Mar 17 '21 23:03 asmwarrior

@asmwarrior I'm still struggling to replicate. Is there a public repo you could point me to which I could pull down to verify the issue?

jesseduffield avatar Mar 30 '21 11:03 jesseduffield

@asmwarrior I'm still struggling to replicate. Is there a public repo you could point me to which I could pull down to verify the issue?

I create a sample git repo for you to test the Chinese font issue, see here: https://github.com/asmwarrior/lazygit_issue24

asmwarrior avatar Mar 30 '21 12:03 asmwarrior

Thanks for making the sample repo :)

I'm not able to replicate on lazygit's latest master branch, on the iterm2 terminal in OSX: image

This may be a windows specific issue. With that said it's possible that the fault lies with termbox, one of our dependencies. There's a branch I'm working on called tcell-again which switches to tcell which is better for various reasons. Are you able to see if you still get the same issue if you're using lazygit from the tcell-again branch? You'll need to clone the lazygit repo and do a go install from within the repo's root directory but otherwise it should run the same as normal lazygit

jesseduffield avatar Mar 30 '21 13:03 jesseduffield

This may be a windows specific issue. With that said it's possible that the fault lies with termbox, one of our dependencies. There's a branch I'm working on called tcell-again which switches to tcell which is better for various reasons. Are you able to see if you still get the same issue if you're using lazygit from the tcell-again branch? You'll need to clone the lazygit repo and do a go install from within the repo's root directory but otherwise it should run the same as normal lazygit.

I have no experience of programming in go language. I mainly use C/C++. So for me, it may be hard to build the lazygit from the source under Windows. If you can create a simple executable file from this new branch, I can happily test it.

asmwarrior avatar Mar 30 '21 14:03 asmwarrior

@asmwarrior I've just compiled this from my windows PC. Does it work for you? lazygit.zip

jesseduffield avatar Apr 01 '21 12:04 jesseduffield

@asmwarrior I've just compiled this from my windows PC. Does it work for you? lazygit.zip

I tested this new binary under ComEmu, and here is the result.

With chcp 65001 setting, which means the UTF8 code page, I see still some errors, see the two images below:

chcp65001-error1

and

chcp65001-error2

Sometimes, the unwanted characters are shown.

With chcp 936, which is Chinese GB2312 code page, I see the frame border is not continued, but I don't see unwanted characters, see image below.

chcp936-good

In both of the code page settings, the Chinese character width issue is fixed! This is good!

But there are still same issues that the file path is still shown as a raw hex string, as the arrow 2 pointed in comment: the https://github.com/jesseduffield/lazygit/issues/24#issuecomment-801076179

asmwarrior avatar Apr 03 '21 05:04 asmwarrior

Git will quote "unusual" characters in the pathname. Try git config --global core.quotepath false

diartyz avatar May 06 '23 03:05 diartyz