Re: socket-modules udeb

2002-11-09 Thread Bastian Blank
On Sat, Nov 09, 2002 at 06:11:15PM +1100, Glenn McGrath wrote:
 Switch to busybox ash, and busybox insmod as well, that will save some
 more space.

busybox insmod isn't a little bit broken, it is completely broken on any
arch i'm working on.

bastian

-- 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: socket-modules udeb

2002-11-09 Thread Herbert Xu
Matt Kraai [EMAIL PROTECTED] wrote:
 
 There isn't enough space on the net image, however.  Substituting
 pump-udeb or udhcpc-udeb for dhcp-client-udeb frees up enough space.
 Any other suggestions?

The only reason why pump would not work where dhcp-client worked went
away in 0.8.11-4 which is more than eight months ago.  So there should
be no problems with going back to pump.

As to busybox ash somebody needs to update it with the current dash
source.  There's been heaps of bug fixes since the busybox version
was done.
-- 
Debian GNU/Linux 3.0 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmVHI~} [EMAIL PROTECTED]
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: [patch] cdebconf and i18n

2002-11-09 Thread Alastair McKinstry
Hi, 

[ Just lurking on d-i for a while, to get up to speed on the design
before contributing].

Why do you use DEBCONF_LANG rather than LANG or LC_ALL ?

Similarly, in some parts of the installer, there is a need to find the
Country. Shouldn't that be found from LC_ALL as well?

Regards,
Alastair McKinstry


On Sat, 2002-11-09 at 03:05, Denis Barbier wrote:
 Here is an improved patch, it has been tested and looks fine.
 Currently language choice is performed by a DEBCONF_LANG environment
 variable.
 In src/modules/db/textdb/textdb.c, the textdb_template_get_real needs
 more work.
 
 Denis
 
 

 Index: debian/changelog
 ===
 RCS file: /cvs/debian-boot/debian-installer/tools/cdebconf/debian/changelog,v
 retrieving revision 1.40
 diff -u -r1.40 changelog
 --- debian/changelog  6 Nov 2002 10:11:37 -   1.40
 +++ debian/changelog  9 Nov 2002 01:21:18 -
 @@ -29,6 +29,13 @@
  - fix confmodule.c and commands.c to not use fixed-size
buffers. (closes: #167312)
* Denis Barbier:
 +- change internal template structure in src/template.h in order
 +  to help managing localized fields, and fix doc/modules.txt
 +  accordingly
 +- define accessors to get and set template values, should be used
 +  everywhere instead of direct access to structure members
 +- partially handle localized fields, only UTF-8 templates files
 +  are considered
  - convert to po-debconf, set Build-Depends: debhelper (= 4.1.13)
to ensure that generated templates are right, and set output encoding
to UTF-8.
 Index: doc/modules.txt
 ===
 RCS file: /cvs/debian-boot/debian-installer/tools/cdebconf/doc/modules.txt,v
 retrieving revision 1.7
 diff -u -r1.7 modules.txt
 --- doc/modules.txt   1 Jul 2002 06:58:37 -   1.7
 +++ doc/modules.txt   9 Nov 2002 01:21:18 -
 @@ -36,20 +36,37 @@
  A template has the following publically accessible fields:
  
  - char *tag: the template's tag
 -- char *type: the template's type XXX can be one of ...
 -- char *defaultval: the template's default value, as a string
 -- char *choices: if the template's type is choices based, here the choices
 - are listed in a single string, seperated by commas XXX right?
 -- char *description: a description of the template XXX must be under ... chars?
 -- char *extended_description: a longer description 
 -- struct language_description *localized descriptions - has following fields:
 -  - struct language_description *next: NULL or another localized description
 -  - char *language: ISO tag for language XXX right?
 -  - char *choices, char *description, char *extended_description: as above,
 -only in specified language
 -  
 +- char *type: the template's type, can be one of select, multiselect,
 +  string, boolean, note, text and password
 +- struct template_l10n_fields *fields - has following fields:
 +  - struct template_l10n_fields *next: NULL or another localized field
 +   structure
 +  - char *language: ISO code for language (ll or ll_LL)
 +  - char *defaultval: the template's default value, as a string
 +  - char *choices: if the template's type is choices based, here the choices
 +   are listed in a single string, seperated by commas
 +  - char *description: a description of the template XXX must be under ... chars?
 +  - char *extended_description: a longer description 
 +
 +The first template_l10n_fields structure must always be in English, and
 +its ISO code is set to C.
 +
  XXX not covering next, I assume it is private
  XXX not covering memory management or deletion
 +
 +Publically accessible methods:
 +
 +const char *lget(struct template *, const char *lang, const char *field):
 +   Return a string value for given field in a language, or NULL if not found
 +
 +void lset(struct template *, const char *lang, const char *field, const char 
*value):
 +   Save string value at field for a given language
 +
 +const char *get(struct template *, const char *field):
 +   Return a string value for given field in English
 +
 +void set(struct template *, const char *field, const char *value):
 +   Save string value at English field
  
  question API
  
 Index: src/commands.c
 ===
 RCS file: /cvs/debian-boot/debian-installer/tools/cdebconf/src/commands.c,v
 retrieving revision 1.24
 diff -u -r1.24 commands.c
 --- src/commands.c5 Nov 2002 02:55:13 -   1.24
 +++ src/commands.c9 Nov 2002 01:21:18 -
 @@ -614,14 +614,14 @@
   if (strcmp(field, value) == 0)
   snprintf(out, outsize, %u %s, CMDSTATUS_SUCCESS, q-value);
   else if (strcmp(field, description) == 0)
 - snprintf(out, outsize, %u %s, CMDSTATUS_SUCCESS, 

cvs commit to debian-installer/tools/cdebconf/debian by sjogren

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/cdebconf/debian
who:sjogren
time:   Sat Nov  9 04:03:45 MST 2002
Log Message:
  Expand variables in the default value

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/cdebconf/src by sjogren

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/cdebconf/src
who:sjogren
time:   Sat Nov  9 04:03:46 MST 2002
Log Message:
  Expand variables in the default value

Files:
changed:question.c


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: [patch] cdebconf and i18n

2002-11-09 Thread Junichi Uekawa

There are two points I am unconfortable with this patch:

Why not use locale information ? (it is needed for some frontend and
other things)

and why is the country information 6-chars long?


regards,
junichi


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: [patch] cdebconf and i18n

2002-11-09 Thread Denis Barbier
On Sat, Nov 09, 2002 at 11:37:07AM +0100, Alastair McKinstry wrote:
 Hi, 
 
 [ Just lurking on d-i for a while, to get up to speed on the design
 before contributing].
 
 Why do you use DEBCONF_LANG rather than LANG or LC_ALL ?

No good reason.  This is just a temporary workaround until a better
solution is provided (via a debconf template), so I did not carefully
think about it.

 Similarly, in some parts of the installer, there is a need to find the
 Country. Shouldn't that be found from LC_ALL as well?

No, user must provide this information, it cannot be guessed.

Denis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: [patch] cdebconf and i18n

2002-11-09 Thread Denis Barbier
On Sat, Nov 09, 2002 at 11:58:35PM +0900, Junichi Uekawa wrote:
 
 There are two points I am unconfortable with this patch:
 
 Why not use locale information ? (it is needed for some frontend and
 other things)

[I replied in another message]

 and why is the country information 6-chars long?

Are you talking about language names?  They are either ll or ll_LL.
As everything will be UTF-8 encoded, there is no need to add encoding.

Denis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: [patch] cdebconf and i18n

2002-11-09 Thread Alastair McKinstry
On Sat, 2002-11-09 at 16:17, Denis Barbier wrote:
 On Sat, Nov 09, 2002 at 11:37:07AM +0100, Alastair McKinstry wrote:
  Hi, 
  
  [ Just lurking on d-i for a while, to get up to speed on the design
  before contributing].
  
  Why do you use DEBCONF_LANG rather than LANG or LC_ALL ?
 
 No good reason.  This is just a temporary workaround until a better
 solution is provided (via a debconf template), so I did not carefully
 think about it.
 
  Similarly, in some parts of the installer, there is a need to find the
  Country. Shouldn't that be found from LC_ALL as well?
 
 No, user must provide this information, it cannot be guessed.
 

I was thinking more of
if (locale == C) 
question user;
else
get country from locale.

(This being done early in the install, I suppose. It is even possible in
some places to get this automatically. I know some Compaq Alphaservers
for example have the country setting in the BIOS equivalent; its
possible to autodetect country there. (and correct as necessary).

I am reworking the debconf questions for console-* (of which I'm
maintainer) and need to know the country for the keyboard setting.
It seems to be available in debconf and, due to POSIX, the locale, and
was wondering why 
(1) its in debconf
(2) why can't we get it from the system locale / store it there



 Denis
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
-- 
Alastair McKinstry [EMAIL PROTECTED]
GPG Key fingerprint = 9E64 E714 8E08 81F9 F3DC  1020 FA8E 3790 9051 38F4

He that would make his own liberty secure must guard even his enemy from
oppression; for if he violates this duty he establishes a precedent that
will reach to himself.

- --Thomas Paine



signature.asc
Description: This is a digitally signed message part


CREATINE PURE no limite performance

2002-11-09 Thread [EMAIL PROTECTED]
Title: Mailing HTML Anastore





	
		
			
		CREATINE PURE no
limite performance
	
	
		
		
		
		
		
		
		
		
		
	
		
			
	
		
		
		Aujourd'hui des solutions existent
pour vivre mieux, plus longtemps.
ANA, leader européen dans la vente d'actifs anti-âge sur internet,
vous propose une offre exceptionnelle sur ces produits de la gamme
"Créatine".Profitez en exclusivité
de nos offres pouvant aller jusqu'à 30% de réduction !
		
		
	
		
		
	
		
			
		

		
	
		
			
		CREATINE monohydrate
pure!Nous souhaitons mettre en lumière pour
vous aujourd'hui la qualité et la pureté de la Créatine que nous proposons.
ANA a en effet choisi la forme la plus pure de ce produit (99,7 %)
indispensable au sportif en quête de performances. Nous vous invitons à le
vérifier sur le certificat d'analyse délivré par un laboratoire
indépendant.Nos lots sont tous, par ailleurs, de fabrication
récente et supportent aisément une utilisation supérieure à un an après
ouverture de la boîte. Traitement longue durée
: 6 boites (500 gr) : 176 € au lieu de 222 € soit 29.33 € la
boiteRef : NN11A l'unité : 1 boite : 37 €Ref : NN10Pour commander ou en
savoir plus
		
	
	
		Profitez également de
nos offres exceptionnelles sur la DHEA, les cures d'amaigrissement, les
traitements de rhumatismes, la prévention des symptômes du vieillissement
et de bien d'autres encore.
		
	
		
		
		Livraisons garanties en 48hLes
certificats d'analyse
		Qui sommes nous ?Qualité de nos
produits
		
		
	
		
		
		





cvs commit to boot-floppies/documentation/en by toff

2002-11-09 Thread Debian Boot CVS Master
Repository: boot-floppies/documentation/en
who:toff
time:   Sat Nov  9 12:25:02 MST 2002
Log Message:
  Add warning for Mac m68k to prevent extensions from loading when booting

Files:
changed:boot-new.sgml rescue-boot.sgml


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/debian by toff

2002-11-09 Thread Debian Boot CVS Master
Repository: boot-floppies/debian
who:toff
time:   Sat Nov  9 12:26:34 MST 2002
Log Message:
  Add warning for Mac m68k to prevent extensions from loading when booting

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: [patch] cdebconf and i18n

2002-11-09 Thread Denis Barbier
On Sat, Nov 09, 2002 at 05:57:12PM +0100, Alastair McKinstry wrote:
[...]
   Similarly, in some parts of the installer, there is a need to find the
   Country. Shouldn't that be found from LC_ALL as well?
  
  No, user must provide this information, it cannot be guessed.
  
 
 I was thinking more of
   if (locale == C) 
   question user;
   else
   get country from locale.

It doesn't work, you can't get country from locale, you must always ask
user to tell where he lives.  Moreover where does this locale come from?
IMO we should at the very beginning ask
  a. which language to use for installation
  b. geographic location (a la tzselect/tzconfig)

Denis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/yaboot-installer/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/yaboot-installer/debian/po
who:andrelop
time:   Sat Nov  9 16:05:04 MST 2002
Log Message:
  
  
* Set yaboot-installer's pt_BR.po control fields.
  

Files:
changed:pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/yaboot-installer/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/yaboot-installer/debian
who:andrelop
time:   Sat Nov  9 16:05:03 MST 2002
Log Message:
  
  
* Set yaboot-installer's pt_BR.po control fields.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/s390/netdevice/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/s390/netdevice/debian
who:andrelop
time:   Sat Nov  9 16:42:44 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) s390-netdevice
  template translation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/s390/netdevice/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/s390/netdevice/debian/po
who:andrelop
time:   Sat Nov  9 16:43:56 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) s390-netdevice
  template translation. Really this time !
  

Files:
added:  pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/s390/dasd/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/s390/dasd/debian/po
who:andrelop
time:   Sat Nov  9 16:54:10 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) s390-dasd
  template translation.
  

Files:
added:  pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/s390/dasd/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/s390/dasd/debian
who:andrelop
time:   Sat Nov  9 16:54:10 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) s390-dasd
  template translation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/prebaseconfig/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/prebaseconfig/debian
who:andrelop
time:   Sat Nov  9 16:58:20 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) prebaseconfig
  template translation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/prebaseconfig/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/prebaseconfig/debian/po
who:andrelop
time:   Sat Nov  9 16:58:20 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) prebaseconfig
  template translation.
  

Files:
added:  pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/partkit/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/partkit/debian
who:andrelop
time:   Sat Nov  9 17:03:25 MST 2002
Log Message:
  
  
* Set partkit's pt_BR.po control fields.
* Update partkit's pt_BR.po template translation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/netcfg/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/netcfg/debian
who:andrelop
time:   Sat Nov  9 17:18:55 MST 2002
Log Message:
  
  
* Set netcfg's pt_BR.po control fields.
* Update ntcfg's pt_BR.po template translation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/netcfg/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/netcfg/debian/po
who:andrelop
time:   Sat Nov  9 17:18:55 MST 2002
Log Message:
  
  
* Set netcfg's pt_BR.po control fields.
* Update ntcfg's pt_BR.po template translation.
  

Files:
changed:pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/lilo-installer/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/lilo-installer/debian
who:andrelop
time:   Sat Nov  9 17:29:30 MST 2002
Log Message:
  
  
* Set lilo-installer's pt_BR.po control fields.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/lilo-installer/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/lilo-installer/debian/po
who:andrelop
time:   Sat Nov  9 17:29:30 MST 2002
Log Message:
  
  
* Set lilo-installer's pt_BR.po control fields.
  

Files:
changed:pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/grub-installer/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/grub-installer/debian/po
who:andrelop
time:   Sat Nov  9 17:33:47 MST 2002
Log Message:
  
  
* Set grub-installer's pt_BR.po control fields.
* Improve grub-installer template translation.
  

Files:
changed:pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/grub-installer/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/grub-installer/debian
who:andrelop
time:   Sat Nov  9 17:33:47 MST 2002
Log Message:
  
  
* Set grub-installer's pt_BR.po control fields.
* Improve grub-installer template translation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/disk-detect/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/disk-detect/debian/po
who:andrelop
time:   Sat Nov  9 17:41:10 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) disk-detect
  template trasnlation.
  

Files:
added:  pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/disk-detect/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/disk-detect/debian
who:andrelop
time:   Sat Nov  9 17:41:09 MST 2002
Log Message:
  
  
* Add Brazilian Portuguese (pt_BR) disk-detect
  template trasnlation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/ddetect/debian by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/ddetect/debian
who:andrelop
time:   Sat Nov  9 17:54:06 MST 2002
Log Message:
  
  
* Set ddetect's pt_BR.po control fields.
* Update Brazilian Portuguese (pt_BR) ddetect
  template translation.
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to debian-installer/tools/ddetect/debian/po by andrelop

2002-11-09 Thread Debian Boot CVS Master
Repository: debian-installer/tools/ddetect/debian/po
who:andrelop
time:   Sat Nov  9 17:54:06 MST 2002
Log Message:
  
  
* Set ddetect's pt_BR.po control fields.
* Update Brazilian Portuguese (pt_BR) ddetect
  template translation.
  

Files:
changed:pt_BR.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]