Re: tmux and locales

2013-04-19 Thread Thomas Nemeth
- Mail original - > De: "Nicholas Marriott" > À: "Thomas Nemeth" > Cc: tmux-us...@lists.sf.net > Envoyé: Vendredi 12 Avril 2013 15:18:32 > Objet: Re: tmux and locales > > We have a font to draw the large letters and it only has 0-9 A, P and >

Re: tmux and locales

2013-04-12 Thread Thomas Nemeth
ou commit your patch :) ? - Mail original - > De: "Nicholas Marriott" > À: "Thomas Nemeth" > Cc: tmux-us...@lists.sf.net > Envoyé: Jeudi 11 Avril 2013 23:47:54 > Objet: Re: tmux and locales > > I forgot that I did this before and just found it... > > dif

Re: tmux and locales

2013-04-12 Thread Nicholas Marriott
> > - Mail original - > > De: "Nicholas Marriott" > > ??: "Thomas Nemeth" > > Cc: tmux-us...@lists.sf.net > > Envoy??: Jeudi 11 Avril 2013 23:47:54 > > Objet: Re: tmux and locales > > > > I forgot that I did this before

Re: tmux and locales

2013-04-11 Thread Nicholas Marriott
I forgot that I did this before and just found it... diff --git a/clock.c b/clock.c index 49a883c..ec74288 100644 --- a/clock.c +++ b/clock.c @@ -103,13 +103,20 @@ clock_draw(struct screen_write_ctx *ctx, int colour, int style) struct grid_cell gc; char

Re: tmux and locales

2013-04-10 Thread Nicholas Marriott
I think this is not enough because clock.c uses strftime %p. It'll need a small change to make it use a fixed "AM" or "PM" string instead of %p. Do you want to do that too? On Fri, Apr 05, 2013 at 06:24:54PM +0200, Thomas Nemeth wrote: > > Hi. > > I've been using tmux for a long time an

Re: tmux and locales

2013-04-06 Thread Thomas Adam
On 5 April 2013 17:24, Thomas Nemeth wrote: > > Hi. > > I've been using tmux for a long time and a fact stroke me: even > when using strftime, the date is always displayed in english. I've > been compiling tmux after each new version in order to have the > date in my language.

tmux and locales

2013-04-06 Thread Thomas Nemeth
Hi. I've been using tmux for a long time and a fact stroke me: even when using strftime, the date is always displayed in english. I've been compiling tmux after each new version in order to have the date in my language. Would it be possible to integrate my patch ? He