Re: [E-devel] configure.ac English terms

2012-12-28 Thread Leif Middelschulte
Am Freitag, 28. Dezember 2012 um 04:50 schrieb Carsten Haitzler:
 On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
 leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) said:
 
  Hello everyone,
  
  Does anybody have a problem with replacing the English terms parameters of
  grep in m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} |
  grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : 
  '{printf(%s
  \n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac 
  (http://configure.ac)) with something
  like `gettext -d subversion Unversioned directory%` so it'll work in
  non-Enligsh environments too?
  
 
 
 thats filtering out stuff that will make it break... the problem is what to
 filter out per locale is a massive long list of every language in the
 world... :)
 
 

Well, the replacement I proposed will return the string translated to the 
locale currently used. So we don't have to filter per locale. gettext will get 
the current locale and return the translated string :)

-- 
Leif 

 
 -- 
 - Codito, ergo sum - I code, therefore I am --
 The Rasterman (Carsten Haitzler) ras...@rasterman.com 
 (mailto:ras...@rasterman.com)
 
 


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] configure.ac English terms

2012-12-28 Thread The Rasterman
On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
leif.middelschu...@gmail.com said:

 Hello everyone,
 
 Does anybody have a problem with replacing the English terms parameters of
 grep in m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} |
 grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf(%s
 \n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac) with something
 like `gettext -d subversion Unversioned directory%` so it'll work in
 non-Enligsh environments too?

and that will work better than just setting LC_ALL=C ? :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] configure.ac English terms

2012-12-28 Thread Gustavo Sverzut Barbieri
On Friday, December 28, 2012, Leif Middelschulte wrote:

 Am Freitag, 28. Dezember 2012 um 04:50 schrieb Carsten Haitzler:
  On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
  leif.middelschu...@gmail.com javascript:; (mailto:
 leif.middelschu...@gmail.com javascript:;) said:
 
   Hello everyone,
  
   Does anybody have a problem with replacing the English terms
 parameters of
   grep in m4_define([v_rev], m4_esyscmd([(svnversion
 ${SVN_REPO_PATH:-.} |
   grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F :
 '{printf(%s
   \n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac (
 http://configure.ac)) with something
   like `gettext -d subversion Unversioned directory%` so it'll work in
   non-Enligsh environments too?
  
 
 
  thats filtering out stuff that will make it break... the problem is what
 to
  filter out per locale is a massive long list of every language in the
  world... :)
 
 

 Well, the replacement I proposed will return the string translated to the
 locale currently used. So we don't have to filter per locale. gettext will
 get the current locale and return the translated string :)


Given that you have gettext. When I used gentoo I didn't have it, as
English works better. I'm more like force Lang=C



 --
 Leif

 
  --
  - Codito, ergo sum - I code, therefore I am --
  The Rasterman (Carsten Haitzler) ras...@rasterman.com javascript:;(mailto:
 ras...@rasterman.com javascript:;)
 
 



 --
 Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
 much more. Get web development skills now with LearnDevNow -
 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
 SALE $99.99 this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122812
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net javascript:;
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] configure.ac English terms

2012-12-28 Thread Leif Middelschulte
Am Freitag, 28. Dezember 2012 um 13:08 schrieb Gustavo Sverzut Barbieri:
 On Friday, December 28, 2012, Leif Middelschulte wrote:
 
  Am Freitag, 28. Dezember 2012 um 04:50 schrieb Carsten Haitzler:
   On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
   leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) 
   javascript:; (mailto:
   
  
  leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) 
  javascript:;) said:
   
Hello everyone,

Does anybody have a problem with replacing the English terms
  parameters of
grep in m4_define([v_rev], m4_esyscmd([(svnversion
   
  
  ${SVN_REPO_PATH:-.} |
grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F :
   
  
  '{printf(%s
\n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac 
(http://configure.ac) (
   
  
  http://configure.ac)) with something
like `gettext -d subversion Unversioned directory%` so it'll work in
non-Enligsh environments too?

   
   
   
   thats filtering out stuff that will make it break... the problem is what
  to
   filter out per locale is a massive long list of every language in the
   world... :)
   
  
  
  Well, the replacement I proposed will return the string translated to the
  locale currently used. So we don't have to filter per locale. gettext will
  get the current locale and return the translated string :)
  
 
 
 
 Given that you have gettext. When I used gentoo I didn't have it, as
 English works better. I'm more like force Lang=C
 
 

Even better :)

-- 
Leif 

 
 
  
  --
  Leif
  
   
   --
   - Codito, ergo sum - I code, therefore I am --
   The Rasterman (Carsten Haitzler) ras...@rasterman.com 
   (mailto:ras...@rasterman.com) javascript:;(mailto:
   
  
  ras...@rasterman.com (mailto:ras...@rasterman.com) javascript:;)
   
  
  
  
  
  --
  Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
  much more. Get web development skills now with LearnDevNow -
  350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
  SALE $99.99 this month only -- learn more at:
  http://p.sf.net/sfu/learnmore_122812
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net 
  (mailto:enlightenment-devel@lists.sourceforge.net) javascript:;
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
 
 
 
 -- 
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: barbi...@gmail.com (mailto:barbi...@gmail.com)
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202
 --
 Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
 much more. Get web development skills now with LearnDevNow -
 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
 SALE $99.99 this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122812
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net 
 (mailto:enlightenment-devel@lists.sourceforge.net)
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] configure.ac English terms

2012-12-28 Thread Leif Middelschulte
Am Freitag, 28. Dezember 2012 um 13:19 schrieb Carsten Haitzler:
 On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
 leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) said:
 
  Hello everyone,
  
  Does anybody have a problem with replacing the English terms parameters of
  grep in m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} |
  grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : 
  '{printf(%s
  \n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac 
  (http://configure.ac)) with something
  like `gettext -d subversion Unversioned directory%` so it'll work in
  non-Enligsh environments too?
  
 
 
 and that will work better than just setting LC_ALL=C ? :)
Then do it like that. Somehow I wasn't thinking about that option for some 
reason, although I already used it to manipulate autogen.sh execution in arch's 
AUR PKGBUILDs ;) 
 
 -- 
 - Codito, ergo sum - I code, therefore I am --
 The Rasterman (Carsten Haitzler) ras...@rasterman.com 
 (mailto:ras...@rasterman.com)
 
 


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] configure.ac English terms

2012-12-28 Thread Leif Middelschulte
Hi Vincent,

could you, the master of autotools, add LANG=C to the grep commands in the EFL, 
as described below? I don't want to poach in your teretory ;)

Thanks,

Leif

Am Freitag, 28. Dezember 2012 um 13:08 schrieb Gustavo Sverzut Barbieri: 
 On Friday, December 28, 2012, Leif Middelschulte wrote:
 
  Am Freitag, 28. Dezember 2012 um 04:50 schrieb Carsten Haitzler:
   On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
   leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) 
   javascript:; (mailto:
   
  
  leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) 
  javascript:;) said:
   
Hello everyone,

Does anybody have a problem with replacing the English terms
  parameters of
grep in m4_define([v_rev], m4_esyscmd([(svnversion
   
  
  ${SVN_REPO_PATH:-.} |
grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F :
   
  
  '{printf(%s
\n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac 
(http://configure.ac) (
   
  
  http://configure.ac)) with something
like `gettext -d subversion Unversioned directory%` so it'll work in
non-Enligsh environments too?

   
   
   
   thats filtering out stuff that will make it break... the problem is what
  to
   filter out per locale is a massive long list of every language in the
   world... :)
   
  
  
  Well, the replacement I proposed will return the string translated to the
  locale currently used. So we don't have to filter per locale. gettext will
  get the current locale and return the translated string :)
  
 
 
 
 Given that you have gettext. When I used gentoo I didn't have it, as
 English works better. I'm more like force Lang=C
 
 
  
  --
  Leif
  
   
   --
   - Codito, ergo sum - I code, therefore I am --
   The Rasterman (Carsten Haitzler) ras...@rasterman.com 
   (mailto:ras...@rasterman.com) javascript:;(mailto:
   
  
  ras...@rasterman.com (mailto:ras...@rasterman.com) javascript:;)
   
  
  
  
  
  --
  Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
  much more. Get web development skills now with LearnDevNow -
  350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
  SALE $99.99 this month only -- learn more at:
  http://p.sf.net/sfu/learnmore_122812
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net 
  (mailto:enlightenment-devel@lists.sourceforge.net) javascript:;
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
 
 
 
 -- 
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: barbi...@gmail.com (mailto:barbi...@gmail.com)
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202
 --
 Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
 much more. Get web development skills now with LearnDevNow -
 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
 SALE $99.99 this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122812
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net 
 (mailto:enlightenment-devel@lists.sourceforge.net)
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] configure.ac English terms

2012-12-28 Thread Vincent Torri
On Fri, Dec 28, 2012 at 3:06 PM, Leif Middelschulte
leif.middelschu...@gmail.com wrote:
 Hi Vincent,

 could you, the master of autotools, add LANG=C to the grep commands in the 
 EFL, as described below? I don't want to poach in your teretory ;)

do whatever you want


 Thanks,

 Leif

 Am Freitag, 28. Dezember 2012 um 13:08 schrieb Gustavo Sverzut Barbieri:
 On Friday, December 28, 2012, Leif Middelschulte wrote:

  Am Freitag, 28. Dezember 2012 um 04:50 schrieb Carsten Haitzler:
   On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
   leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) 
   javascript:; (mailto:
  
 
  leif.middelschu...@gmail.com (mailto:leif.middelschu...@gmail.com) 
  javascript:;) said:
  
Hello everyone,
   
Does anybody have a problem with replacing the English terms
  parameters of
grep in m4_define([v_rev], m4_esyscmd([(svnversion
  
 
  ${SVN_REPO_PATH:-.} |
grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F :
  
 
  '{printf(%s
\n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac 
(http://configure.ac) (
  
 
  http://configure.ac)) with something
like `gettext -d subversion Unversioned directory%` so it'll work in
non-Enligsh environments too?
   
  
  
  
   thats filtering out stuff that will make it break... the problem is what
  to
   filter out per locale is a massive long list of every language in the
   world... :)
  
 
 
  Well, the replacement I proposed will return the string translated to the
  locale currently used. So we don't have to filter per locale. gettext will
  get the current locale and return the translated string :)
 



 Given that you have gettext. When I used gentoo I didn't have it, as
 English works better. I'm more like force Lang=C


 
  --
  Leif
 
  
   --
   - Codito, ergo sum - I code, therefore I am --
   The Rasterman (Carsten Haitzler) ras...@rasterman.com 
   (mailto:ras...@rasterman.com) javascript:;(mailto:
  
 
  ras...@rasterman.com (mailto:ras...@rasterman.com) javascript:;)
  
 
 
 
 
  --
  Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
  much more. Get web development skills now with LearnDevNow -
  350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
  SALE $99.99 this month only -- learn more at:
  http://p.sf.net/sfu/learnmore_122812
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net 
  (mailto:enlightenment-devel@lists.sourceforge.net) javascript:;
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 



 --
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: barbi...@gmail.com (mailto:barbi...@gmail.com)
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202
 --
 Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
 much more. Get web development skills now with LearnDevNow -
 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
 SALE $99.99 this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122812
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net 
 (mailto:enlightenment-devel@lists.sourceforge.net)
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




 --
 Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
 much more. Get web development skills now with LearnDevNow -
 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
 SALE $99.99 this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122812
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] configure.ac English terms

2012-12-27 Thread The Rasterman
On Thu, 27 Dec 2012 16:35:58 +0100 Leif Middelschulte
leif.middelschu...@gmail.com said:

 Hello everyone,
 
 Does anybody have a problem with replacing the English terms parameters of
 grep in m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} |
 grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf(%s
 \n, $1);}' | tr -d ' :MSP\n'])) (taken from configure.ac) with something
 like `gettext -d subversion Unversioned directory%` so it'll work in
 non-Enligsh environments too?

thats filtering out stuff that will make it break... the problem is what to
filter out per locale is a massive long list of every language in the
world... :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel