Re: [PATCH] l10n: vi.po: fix typo in pack-objects

2018-10-25 Thread Trần Ngọc Quân
@@ msgstr "Đánh số các đối tượng"  #: builtin/pack-objects.c:3382  #, c-format  msgid "Total % (delta %), reused % (delta %)" -msgstr "Tỏng % (delta %), dùng lại % (delta %)" +msgstr "Tổng % (delta %), dùng lại % (delta %)"  #: builtin/pack-refs.c:7  msgid "git pack-refs []" -- Trần Ngọc Quân.

Re: [GIT PULL] l10n updates for 2.10.0 round 2

2016-08-31 Thread Trần Ngọc Quân
On 31/08/2016 21:14, Jiang Xin wrote: > Hi Junio, > > Would you please pull the following git l10n updates. Please wait! Jiang Xin probably missing pull my one commit[1]. [1] <https://github.com/vnwildman/git/commit/800d88e2b3dde41ebf34e2e00955bba892419555> Thanks, -- Trần Ngọc Quân.

Re: Very Very small fonts in gitk

2016-07-27 Thread Trần Ngọc Quân
e an insight if this is a known gitk issue or that this is a bug? > > Regards, > Jessie Hernandez Try to edit gitk configure file `~/.gitk` manually, like this: set mainfont {{DejaVu Sans} 12} set textfont {FreeMono 10} set uifont {{DejaVu Sans} 12 bold} I hope it work! Thanks, -- Trần

Update Vietnamese translation for git-gui

2015-09-08 Thread Trần Ngọc Quân
Dear git-gui maintainers, Please pull the commit 1fa18b72184612e6615b1f119535183f40694fa4 from: https://github.com/vnwildman/git-gui.git on ``master'' branch. Thanks, -- Trần Ngọc Quân. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of

Re: How to repair a shallow clone (?)

2014-12-06 Thread Trần Ngọc Quân
te re-clone ?) > I think git don't accept push from shallow repo. I've ever encounter this problem. I UNshallow it, then every thing will work: $ git fetch --unshallow origin This command will convert a shallow repository to a complete one. See git-fetch(1) and git-clone(1). I hop

Re: Found a "bug" in git 1.9.0 but can't reproduce it without copyrighted source code.

2014-03-27 Thread Trần Ngọc Quân
content is changed! > > Git I'm using is msysgit 1.9.0 on windows 7 Is it Ok on Linux OS, on other git version? > > Best regards, > Sheng Yun > -- > -- Trần Ngọc Quân. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] l10n:gitk: Init Vietnamese translation

2013-12-13 Thread Trần Ngọc Quân
On 14/12/2013 09:42, Tran Ngoc Quan wrote: > Signed-off-by: Tran Ngoc Quan > --- > gitk-git/po/vi.po | 1350 > + > po/vi.po | 594 +++ Sorry, not include po/vi.po I Will sent other patch! --

Re: problems with git --git-dir on windows 7

2013-12-05 Thread Trần Ngọc Quân
ken or omitted to be taken in reliance on it, is prohibited and may be >> unlawful. Nothing in the message is capable or intended to create any >> legally binding obligations on either party and it is not intended to >> provide legal advice. >> ==

Re: [PATCH v3] gettext.c: detect the vsnprintf bug at runtime

2013-12-02 Thread Trần Ngọc Quân
On 02/12/2013 14:40, Trần Ngọc Quân wrote: > On 02/12/2013 12:57, Duy Nguyen wrote: >>> I suggest use C preprocessor instead. The person who complete git (make >>> debian, rpm etc. package) decide enable it or not (disable by default). >>> Most of people use gi

Re: [PATCH v3] gettext.c: detect the vsnprintf bug at runtime

2013-12-01 Thread Trần Ngọc Quân
_ALL, "en_US.UTF-8"); if (snprintf(buf, 13, "%.13s", STR) < 0){ printf("0"); }else{ printf("1"); } ]])]) gcc -o conftest conftest.c AC_DEFINE([VSNPRINTF_OK], [m4_esyscmd([./conftest])], [Enable l10n libc if vnsprintf OK]) You can chan

Re: [PATCH v3] gettext.c: detect the vsnprintf bug at runtime

2013-12-01 Thread Trần Ngọc Quân
d git_setup_gettext(void) I suggest use C preprocessor instead. The person who complete git (make debian, rpm etc. package) decide enable it or not (disable by default). Most of people use git from distribution instead of complete it from source. #ifndef VSNPRINTF_OK set

Re: How to resume broke clone ?

2013-11-27 Thread Trần Ngọc Quân
consider using --depth option if you don't want full history, or clone from somewhere have better bandwidth $ git clone --depth=1 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git you may chose other mirror (github.com) for example see git-clone(1) -- Trần Ngọc Quân. -- To u

Re: gettext CTYPE for libc

2013-11-24 Thread Trần Ngọc Quân
On 24/11/2013 16:05, Thomas Rast wrote: > Trần Ngọc Quân writes: > >> $ git status >> fatal: Unable to read current working directory: Kh?ng c? t?p tin ho?c >> th? m?c nh? v?y >> >> So, somthing wrong with our charset. > [...] > Do you know why this "

gettext CTYPE for libc

2013-11-22 Thread Trần Ngọc Quân
@@ static void init_gettext_charset(const char *domain) setlocale(LC_CTYPE, ""); charset = locale_charset(); bind_textdomain_codeset(domain, charset); + bind_textdomain_codeset("libc", charset); setlocale(LC_CTYPE, "C"); } And it work

Re: [L10N] Kick off for Git 1.8.5 l10n round 1

2013-11-01 Thread Trần Ngọc Quân
On 02/11/2013 09:23, Jiang Xin wrote: > 2013/11/2 Trần Ngọc Quân : >> Strings in builtin/remote.c line 15 and 42 is similar, please change to >> same string in order to reduce gettext database (.mo file) >> -- >> Trần Ngọc Quân. > Confirmed, there is a typo in buil

RE: Please pull l10n updates for 1.8.1 round 1

2012-11-28 Thread Trần Ngọc Quân
Signed-off-by: Tran Ngoc Quan https://github.com/vnwildman/git.git master Thanks, Trần Ngọc Quân -Original Message- From: Jiang Xin [mailto:worldhello@gmail.com] Sent: Thursday, November 29, 2012 8:19 AM To: Junio C Hamano Cc: Git List; Peter Krefting; Trần Ngọc Quân; Nguyễn Thái