From racke at linuxia.de Fri Apr 5 10:24:00 2002 From: racke at linuxia.de (Stefan Hornburg Racke) Date: Fri Apr 5 10:24:00 2002 Subject: [interchange-i18n] Re: [ic] getting data on categoryvertical In-Reply-To: <004601c1dcac$c603ada0$8d9fb8c8@kerntec.com.br> References: <004601c1dcac$c603ada0$8d9fb8c8@kerntec.com.br> Message-ID: <87sn6aqigt.fsf@snowflake.linuxia.de> guslist at kerntec.net writes: > Hello IC users, > > I?m trying to change the table to be read at category_vertical. This is for > my locale settings on my store. > I what to select which table to use depending on the lng that the user is > using. > Ex: I?ve created tables: area_pt_BR, cat_pt_BR and products_pt_BR. > > When creating the left menu, I what to filter this. > I?ve tryed to change the table using loop at the original code but I can?t > find where I can set the table to get data from. > > I?ve tryed the to substitute the loop to sql commands where I can manipulate > the selects better. But, nither this way it works. I?ve tryed this code: > -- > [query > prefix=box > type="list" > list_prefix="boxlist" > sql=| > select > * > from area, cat > order by area.sort > | > ] > [sql-param code], [sql-param name]
Try this: [if scratch mv_locale] [tmp query] select * from area_[scratch mv_locale], cat_[scratch mv_locale] order by area_[scratch mv_locale].sort [/tmp] [else] [tmp query] select * from area, cat order by area.sort [/tmp] [/else] [/if] [query prefix=box type="list" list_prefix="boxlist" sql="[scratch query]" ] [sql-param code], [sql-param name]
Ciao Racke -- Think of it ! For projects and other business stuff please refer to COBOLT NetServices (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) From guslist at kerntec.net Fri Apr 5 11:24:00 2002 From: guslist at kerntec.net (guslist at kerntec.net) Date: Fri Apr 5 11:24:00 2002 Subject: [interchange-i18n] Re: [ic] getting data on categoryvertical References: <004601c1dcac$c603ada0$8d9fb8c8@kerntec.com.br> <87sn6aqigt.fsf@snowflake.linuxia.de> Message-ID: <009801c1dcbe$0bdb4160$8d9fb8c8@kerntec.com.br> Hi, I?ve tryed your code but I only get the same error: > [sql-param code], [sql-param name] I?ve tryed to change your code a "littlebit" but whith no success. Any help ? Thank?s again, Gus ----- Original Message ----- From: "Stefan Hornburg (Racke)" To: Cc: Sent: Friday, April 05, 2002 12:21 PM Subject: Re: [ic] getting data on categoryvertical > guslist at kerntec.net writes: > > > Hello IC users, > > > > I?m trying to change the table to be read at category_vertical. This is for > > my locale settings on my store. > > I what to select which table to use depending on the lng that the user is > > using. > > Ex: I?ve created tables: area_pt_BR, cat_pt_BR and products_pt_BR. > > > > When creating the left menu, I what to filter this. > > I?ve tryed to change the table using loop at the original code but I can?t > > find where I can set the table to get data from. > > > > I?ve tryed the to substitute the loop to sql commands where I can manipulate > > the selects better. But, nither this way it works. I?ve tryed this code: > > -- > > [query > > prefix=box > > type="list" > > list_prefix="boxlist" > > sql=| > > select > > * > > from area, cat > > order by area.sort > > | > > ] > > [sql-param code], [sql-param name]
> > Try this: > > [if scratch mv_locale] > [tmp query] > select > * > from area_[scratch mv_locale], cat_[scratch mv_locale] > order by area_[scratch mv_locale].sort > [/tmp] > [else] > [tmp query] > select > * > from area, cat > order by area.sort > [/tmp] > [/else] > [/if] > > [query > prefix=box > type="list" > list_prefix="boxlist" > sql="[scratch query]" > ] > [sql-param code], [sql-param name]
> > Ciao > Racke > > -- > Think of it ! > > For projects and other business stuff please refer to COBOLT NetServices > (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) > _______________________________________________ > interchange-users mailing list > interchange-users at interchange.redhat.com > http://interchange.redhat.com/mailman/listinfo/interchange-users > From racke at linuxia.de Fri Apr 5 11:36:21 2002 From: racke at linuxia.de (Stefan Hornburg Racke) Date: Fri Apr 5 11:36:21 2002 Subject: [interchange-i18n] Re: [ic] getting data on categoryvertical In-Reply-To: <009801c1dcbe$0bdb4160$8d9fb8c8@kerntec.com.br> References: <004601c1dcac$c603ada0$8d9fb8c8@kerntec.com.br> <87sn6aqigt.fsf@snowflake.linuxia.de> <009801c1dcbe$0bdb4160$8d9fb8c8@kerntec.com.br> Message-ID: <87y9g2nm0h.fsf@snowflake.linuxia.de> guslist at kerntec.net writes: > Hi, > > I?ve tryed your code but I only get the same error: > > [sql-param code], [sql-param name] > > I?ve tryed to change your code a "littlebit" but whith no success. > Any help ? Have you the closing [/query] ? Try to use list=1 as parameter to query. Ciao Racke -- Think of it ! For projects and other business stuff please refer to COBOLT NetServices (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) From guslist at kerntec.net Fri Apr 5 12:38:00 2002 From: guslist at kerntec.net (guslist at kerntec.net) Date: Fri Apr 5 12:38:00 2002 Subject: [interchange-i18n] Re: [ic] getting data on categoryvertical References: <004601c1dcac$c603ada0$8d9fb8c8@kerntec.com.br><87sn6aqigt.fsf@snowflake.linuxia.de><009801c1dcbe$0bdb4160$8d9fb8c8@kerntec.com.br> <87y9g2nm0h.fsf@snowflake.linuxia.de> Message-ID: <00bd01c1dcc8$3949eac0$8d9fb8c8@kerntec.com.br> Hi, ----- Original Message ----- From: "Stefan Hornburg (Racke)" To: Sent: Friday, April 05, 2002 1:33 PM Subject: Re: [interchange-i18n] Re: [ic] getting data on categoryvertical > guslist at kerntec.net writes: > > > Hi, > > > > I?ve tryed your code but I only get the same error: > > > [sql-param code], [sql-param name] > > > > I?ve tryed to change your code a "littlebit" but whith no success. > > Any help ? > > Have you the closing [/query] ? Yes. > Try to use list=1 as parameter to query. Same thing happens: [sql-param code], [sql-param name] [sql-param code], [sql-param name] [sql-param code], [sql-param name] [sql-param code], [sql-param name] [sql-param code], [sql-param name] [sql-param code], [sql-param name] [sql-param code], [sql-param name] [sql-param code], [sql-param name] And goes on.... Any ideias ? Thank?s again, Gus > Ciao > Racke > > -- > Think of it ! > > For projects and other business stuff please refer to COBOLT NetServices > (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) > _______________________________________________ > interchange-i18n mailing list > interchange-i18n at interchange.redhat.com > http://interchange.redhat.com/mailman/listinfo/interchange-i18n > From racke at linuxia.de Fri Apr 5 13:04:00 2002 From: racke at linuxia.de (Stefan Hornburg Racke) Date: Fri Apr 5 13:04:00 2002 Subject: [interchange-i18n] Re: [ic] getting data on categoryvertical In-Reply-To: <00bd01c1dcc8$3949eac0$8d9fb8c8@kerntec.com.br> References: <004601c1dcac$c603ada0$8d9fb8c8@kerntec.com.br> <87sn6aqigt.fsf@snowflake.linuxia.de> <009801c1dcbe$0bdb4160$8d9fb8c8@kerntec.com.br> <87y9g2nm0h.fsf@snowflake.linuxia.de> <00bd01c1dcc8$3949eac0$8d9fb8c8@kerntec.com.br> Message-ID: <87r8lukot5.fsf@snowflake.linuxia.de> guslist at kerntec.net writes: > Hi, > > ----- Original Message ----- > From: "Stefan Hornburg (Racke)" > To: > Sent: Friday, April 05, 2002 1:33 PM > Subject: Re: [interchange-i18n] Re: [ic] getting data on categoryvertical > > > > guslist at kerntec.net writes: > > > > > Hi, > > > > > > I?ve tryed your code but I only get the same error: > > > > [sql-param code], [sql-param name] > > > > > > I?ve tryed to change your code a "littlebit" but whith no success. > > > Any help ? > > > > Have you the closing [/query] ? > > Yes. > > > Try to use list=1 as parameter to query. > > > Same thing happens: > [sql-param code], [sql-param name] > [sql-param code], [sql-param name] > [sql-param code], [sql-param name] > [sql-param code], [sql-param name] > [sql-param code], [sql-param name] > [sql-param code], [sql-param name] > [sql-param code], [sql-param name] > [sql-param code], [sql-param name] > > And goes on.... > > Any ideias ? I don't have your original code but you need to use instead of sql in sql-param the prefix you specified as parameter to query, e.g. [query prefix=kern ...] [kern-param code], [kern-param name]
[/query] Ciao Racke -- Think of it ! For projects and other business stuff please refer to COBOLT NetServices (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) From guslist at kerntec.net Fri Apr 5 13:33:00 2002 From: guslist at kerntec.net (guslist at kerntec.net) Date: Fri Apr 5 13:33:00 2002 Subject: [interchange-i18n] Re: [ic] getting data on categoryvertical References: <004601c1dcac$c603ada0$8d9fb8c8@kerntec.com.br><87sn6aqigt.fsf@snowflake.linuxia.de><009801c1dcbe$0bdb4160$8d9fb8c8@kerntec.com.br><87y9g2nm0h.fsf@snowflake.linuxia.de><00bd01c1dcc8$3949eac0$8d9fb8c8@kerntec.com.br> <87r8lukot5.fsf@snowflake.linuxia.de> Message-ID: <00cd01c1dccf$f4bc32c0$8d9fb8c8@kerntec.com.br> Hi, I?ve just did it work !! Cursor help me out on this !! But the major problem was realy prefix. Thank?s for all the help and Cursor. :-) Gus ----- Original Message ----- From: "Stefan Hornburg (Racke)" To: Sent: Friday, April 05, 2002 3:01 PM Subject: Re: [interchange-i18n] Re: [ic] getting data on categoryvertical > guslist at kerntec.net writes: > > > Hi, > > > > ----- Original Message ----- > > From: "Stefan Hornburg (Racke)" > > To: > > Sent: Friday, April 05, 2002 1:33 PM > > Subject: Re: [interchange-i18n] Re: [ic] getting data on categoryvertical > > > > > > > guslist at kerntec.net writes: > > > > > > > Hi, > > > > > > > > I?ve tryed your code but I only get the same error: > > > > > [sql-param code], [sql-param name] > > > > > > > > I?ve tryed to change your code a "littlebit" but whith no success. > > > > Any help ? > > > > > > Have you the closing [/query] ? > > > > Yes. > > > > > Try to use list=1 as parameter to query. > > > > > > Same thing happens: > > [sql-param code], [sql-param name] > > [sql-param code], [sql-param name] > > [sql-param code], [sql-param name] > > [sql-param code], [sql-param name] > > [sql-param code], [sql-param name] > > [sql-param code], [sql-param name] > > [sql-param code], [sql-param name] > > [sql-param code], [sql-param name] > > > > And goes on.... > > > > Any ideias ? > > I don't have your original code but you need to use instead > of sql in sql-param the prefix you specified as parameter > to query, e.g. > > [query prefix=kern ...] > [kern-param code], [kern-param name]
> [/query] > > Ciao > Racke > > -- > Think of it ! > > For projects and other business stuff please refer to COBOLT NetServices > (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) > _______________________________________________ > interchange-i18n mailing list > interchange-i18n at interchange.redhat.com > http://interchange.redhat.com/mailman/listinfo/interchange-i18n > From kopy at cambodia.gr.jp Sun Apr 7 14:25:00 2002 From: kopy at cambodia.gr.jp (Neam KOPY) Date: Sun Apr 7 14:25:00 2002 Subject: [interchange-i18n] Can't search and Edit Japanese page Message-ID: <004601c1de61$4d9a0ce0$09caa1d2@cncxp> Hello Interchange-i18n I am new in Interchange and I got two problem. 1. I can not use search in japaness 2. I can not edit page/*.html using interchange admin. does anyone got the same problems? or anybody can help me to fix it. Hope hear from you. Neam KOPY. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.icdevgroup.org/pipermail/interchange-i18n/attachments/20020407/dcb893f8/attachment.htm From office at wdcom.at Thu Apr 11 23:11:02 2002 From: office at wdcom.at (Gerald Holzmeister) Date: Thu Apr 11 23:11:02 2002 Subject: [interchange-i18n] multiple language database? Message-ID: <20020412032613.5C81DB5FA@mail.catv4u.at> Hallo, i know this is a frequently discussed topic, but i can't understand these solutions. My problem is to set up the database and ic for four different languages. First way i've tried - just for german) Add the table "products_de" in the database "foundation" with the same columns like table "products". In my catalog.cfg i've entered Locale de_DE ProductFiles products_de products and i get alwas an "internal server error" and following message in the error.log: [12/April/2002:04:05:54 +0200] foundation /cgi-bin/foundation/index.html Runtime error: products_de not a database, cannot use as products file and i don't understand this because i'm an absolute newbie with IC. Can anyone help me? thx Gerald ------------------------------------------------------- From racke at linuxia.de Fri Apr 12 04:39:01 2002 From: racke at linuxia.de (Stefan Hornburg Racke) Date: Fri Apr 12 04:39:01 2002 Subject: [interchange-i18n] multiple language database? In-Reply-To: <20020412032613.5C81DB5FA@mail.catv4u.at> References: <20020412032613.5C81DB5FA@mail.catv4u.at> Message-ID: <87u1qhwbxj.fsf@snowflake.linuxia.de> Gerald Holzmeister writes: > Hallo, > i know this is a frequently discussed topic, but i can't understand these > solutions. My problem is to set up the database and ic for four different > languages. > First way i've tried - just for german) > Add the table "products_de" in the database "foundation" with the same > columns like table "products". In my catalog.cfg i've entered > > Locale de_DE ProductFiles products_de products > > and i get alwas an "internal server error" and following message in the > error.log: > > [12/April/2002:04:05:54 +0200] foundation /cgi-bin/foundation/index.html > Runtime error: products_de not a database, cannot use as products file > > and i don't understand this because i'm an absolute newbie with IC. > Can anyone help me? You have to explicitly define every database (= text file or SQL table) in catalog.cfg, e.g. Database products_de products_de.txt TAB The syntax for SQL is different. Ciao Racke -- Think of it ! For projects and other business stuff please refer to COBOLT NetServices (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) From jojo at blackpoint.de Fri Apr 12 05:22:59 2002 From: jojo at blackpoint.de (Joachim Leidinger) Date: Fri Apr 12 05:22:59 2002 Subject: [interchange-i18n] multiple language database? References: <20020412032613.5C81DB5FA@mail.catv4u.at> <87u1qhwbxj.fsf@snowflake.linuxia.de> Message-ID: <3CB6A3B7.F1685F65@blackpoint.de> "Stefan Hornburg (Racke)" wrote: > > Gerald Holzmeister writes: > > > Hallo, > > i know this is a frequently discussed topic, but i can't understand these > > solutions. My problem is to set up the database and ic for four different > > languages. > > First way i've tried - just for german) > > Add the table "products_de" in the database "foundation" with the same > > columns like table "products". In my catalog.cfg i've entered > > > > Locale de_DE ProductFiles products_de products > > > > and i get alwas an "internal server error" and following message in the > > error.log: > > > > [12/April/2002:04:05:54 +0200] foundation /cgi-bin/foundation/index.html > > Runtime error: products_de not a database, cannot use as products file > > > > and i don't understand this because i'm an absolute newbie with IC. > > Can anyone help me? > > You have to explicitly define every database (= text file or SQL table) > in catalog.cfg, e.g. > > Database products_de products_de.txt TAB > > The syntax for SQL is different. Must I explicit define each database *in* catalog.cfg? If you have # Default DBM if nothing else defined ifndef SOME_DATABASE include dbconf/default_db/default_db.cfg endif in your catalog.cfg and Message -i -n Using default DBM database... include dbconf/default_db/*.dbm in your default_db.cfg, you can create a new file like products_de.dbm with Database products products_de.txt TAB in that file. Or not? Joachim -- Hans-Joachim Leidinger | Dipl.-Phys.Ing. Entwicklung eCommerce [leidinger at bpanet.de] Black Point Arts Internet Solutions GmbH http://www.bpanet.de From office at wdcom.at Tue Apr 16 12:00:01 2002 From: office at wdcom.at (Gerald Holzmeister) Date: Tue Apr 16 12:00:01 2002 Subject: [interchange-i18n] German translation Message-ID: <20020416161600.60DEAB601@mail.catv4u.at> Hello, is there already a german translation (i.e. de_DE.txt) for the default sites of the "foundation store" and where i can get this? greetings Gerald From agooscars at navegalia.com Wed Apr 17 12:18:00 2002 From: agooscars at navegalia.com (oscar) Date: Wed Apr 17 12:18:00 2002 Subject: [interchange-i18n] Spanish translation Message-ID: <10A6F06D2CDBD4118C9300105ADBE0BA9A80@SERVIDORNT> Is there any interchange translation to spanish? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.icdevgroup.org/pipermail/interchange-i18n/attachments/20020417/8bf5b632/attachment.htm From josemaria.revuelto at solgrama.com Thu Apr 18 13:02:41 2002 From: josemaria.revuelto at solgrama.com (=?iso-8859-1?Q?Jos=E9_M=AA_Revuelto?=) Date: Thu Apr 18 13:02:41 2002 Subject: [interchange-i18n] Translating into Spanish Message-ID: Hi all and particularly Racke, I read in february that there were a translation into Spanish underway. Is there anything new about it? I?ve made a translation into Spanish from the Portuguese one, but something must be wrong because I?ve sent it to my hosting server and they have said me that: "The error it gives is "bad Locale setting in es_ES:". I've looked through the file but I can't really see what might be wrong with it." Tell me if I am wrong. All I have to do is add my es_ES file into the "locales" dir under "UI", isn?t it? E-mail me if anyone wants the file for working on it and make it work. Thank you, Jos? M? From romero at kde.org Thu Apr 18 14:25:00 2002 From: romero at kde.org (=?iso-8859-1?q?V=EDctor=20Romero?=) Date: Thu Apr 18 14:25:00 2002 Subject: [interchange-i18n] Translating into Spanish In-Reply-To: References: Message-ID: <200204182038.g3IKcBim012397@mail.bingdata.net> El Jue 18 Abr 2002 19:01, Jos? M? Revuelto escribi?: > Hi all and particularly Racke, > > I read in february that there were a translation into Spanish underway. Is > there anything new about it? > > I?ve made a translation into Spanish from the Portuguese one, but something > must be wrong because I?ve sent it to my hosting server and they have said > me that: "The error it gives is > "bad Locale setting in es_ES:". I've looked through the file > but I can't really see what might be wrong with it." > > Tell me if I am wrong. All I have to do is add my es_ES file into the > "locales" dir under "UI", isn?t it? > > E-mail me if anyone wants the file for working on it and make it work. Actually theres one almost complete translation of admin made by and me, now we plan to start translating the rest, but I have not enought time... may be you can help nacho... Greetings From ehms at lipsia.net Wed Apr 24 10:58:00 2002 From: ehms at lipsia.net (Holger Ehms) Date: Wed Apr 24 10:58:00 2002 Subject: [interchange-i18n] German translation References: <20020416161600.60DEAB601@mail.catv4u.at> Message-ID: <3CC6C8C2.8060500@lipsia.net> Gerald Holzmeister schrieb:: > Hello, > is there already a german translation (i.e. de_DE.txt) for the default sites > of the "foundation store" and where i can get this? > > greetings > Gerald Expect the images and the product database I have translated the foundation store. If you (or some other) will to contribute a german version of the gif-images I would post the pages here. Holger From office at wdcom.at Wed Apr 24 12:44:00 2002 From: office at wdcom.at (Gerald Holzmeister) Date: Wed Apr 24 12:44:00 2002 Subject: [interchange-i18n] German translation In-Reply-To: <3CC6C8C2.8060500@lipsia.net> References: <20020416161600.60DEAB601@mail.catv4u.at> <3CC6C8C2.8060500@lipsia.net> Message-ID: <20020424170403.B612CB5FA@mail.catv4u.at> Am Mittwoch, 24. April 2002 17:01 schrieben Sie: OK, i will create a german version of the images. I think it will take about one week. Can you post the translation right now? Gerald > Gerald Holzmeister schrieb:: > > Hello, > > is there already a german translation (i.e. de_DE.txt) for the default > > sites of the "foundation store" and where i can get this? > > > > greetings > > Gerald > > Expect the images and the product database I have translated the > foundation store. If you (or some other) will to contribute a german > version of the gif-images I would post the pages here. > > Holger > > > > > > _______________________________________________ > interchange-i18n mailing list > interchange-i18n at interchange.redhat.com > http://interchange.redhat.com/mailman/listinfo/interchange-i18n From office at wdcom.at Thu Apr 25 10:02:01 2002 From: office at wdcom.at (Gerald Holzmeister) Date: Thu Apr 25 10:02:01 2002 Subject: [interchange-i18n] German translation In-Reply-To: <20020424170403.B612CB5FA@mail.catv4u.at> References: <20020416161600.60DEAB601@mail.catv4u.at> <3CC6C8C2.8060500@lipsia.net> <20020424170403.B612CB5FA@mail.catv4u.at> Message-ID: <20020425142310.EFA15B615@mail.catv4u.at> Am Mittwoch, 24. April 2002 18:49 schrieben Sie: Foundation-images in german are attached > Am Mittwoch, 24. April 2002 17:01 schrieben Sie: > OK, i will create a german version of the images. I think it will take > about one week. Can you post the translation right now? > > Gerald > > > Gerald Holzmeister schrieb:: > > > Hello, > > > is there already a german translation (i.e. de_DE.txt) for the default > > > sites of the "foundation store" and where i can get this? > > > > > > greetings > > > Gerald > > > > Expect the images and the product database I have translated the > > foundation store. If you (or some other) will to contribute a german > > version of the gif-images I would post the pages here. > > > > Holger > > > > > > > > > > > > _______________________________________________ > > interchange-i18n mailing list > > interchange-i18n at interchange.redhat.com > > http://interchange.redhat.com/mailman/listinfo/interchange-i18n > > _______________________________________________ > interchange-i18n mailing list > interchange-i18n at interchange.redhat.com > http://interchange.redhat.com/mailman/listinfo/interchange-i18n -------------- next part -------------- A non-text attachment was scrubbed... Name: images_de.tar.gz Type: application/x-gzip Size: 15848 bytes Desc: ic-foundation images in german Url : http://www.icdevgroup.org/pipermail/interchange-i18n/attachments/20020425/68fb2036/attachment.bin From office at wdcom.at Thu Apr 25 10:06:01 2002 From: office at wdcom.at (Gerald Holzmeister) Date: Thu Apr 25 10:06:01 2002 Subject: [interchange-i18n] German translation In-Reply-To: <20020424170403.B612CB5FA@mail.catv4u.at> References: <20020416161600.60DEAB601@mail.catv4u.at> <3CC6C8C2.8060500@lipsia.net> <20020424170403.B612CB5FA@mail.catv4u.at> Message-ID: <20020425142727.08225B615@mail.catv4u.at> Am Mittwoch, 24. April 2002 18:49 schrieben Sie: Sorry, i've seen that doesn't work. Write me an email an i will send it to you. mailto:interchange at wdcom.at by Gerald > Am Mittwoch, 24. April 2002 17:01 schrieben Sie: > OK, i will create a german version of the images. I think it will take > about one week. Can you post the translation right now? > > Gerald > > > Gerald Holzmeister schrieb:: > > > Hello, > > > is there already a german translation (i.e. de_DE.txt) for the default > > > sites of the "foundation store" and where i can get this? > > > > > > greetings > > > Gerald > > > > Expect the images and the product database I have translated the > > foundation store. If you (or some other) will to contribute a german > > version of the gif-images I would post the pages here. > > > > Holger > > > > > > > > > > > > _______________________________________________ > > interchange-i18n mailing list > > interchange-i18n at interchange.redhat.com > > http://interchange.redhat.com/mailman/listinfo/interchange-i18n > > _______________________________________________ > interchange-i18n mailing list > interchange-i18n at interchange.redhat.com > http://interchange.redhat.com/mailman/listinfo/interchange-i18n From ulf.holt at onsite-data.no Fri Apr 26 01:49:00 2002 From: ulf.holt at onsite-data.no (Ulf Holt) Date: Fri Apr 26 01:49:00 2002 Subject: [interchange-i18n] Working on a Norwegian version Message-ID: <1DD64E30554001408A2548D9F26A0B5E6F98@onsite.onsite-data.no> Hi folks I am working on a Norwegian translation, so I am hacking .html files and working on different .gif files. This is not too complicated, but I have a few questions: 1) I am NOT going to have any international information. Can I remove all country information without corrupting anything? (Don't need to display or save country information at all. 2) I want the currency to be displayed as kr. not as $. I can, off course not just substitute all $ with kr. but where should I look. 3) If I want to make a Norwegian template, how should I do this? Best regards Ulf Holt From ulf.holt at onsite-data.no Fri Apr 26 03:15:00 2002 From: ulf.holt at onsite-data.no (Ulf Holt) Date: Fri Apr 26 03:15:00 2002 Subject: [interchange-i18n] Where are the errormessages?? Message-ID: <1DD64E30554001408A2548D9F26A0B5E6F9A@onsite.onsite-data.no> Hi - I'm back with another question I need to change error-messages to Norwegia. Where are they? I find some messages in the .html files, but not all. i.e. when I try to change password and get an errormessage 'Must have old password' it's not from any .html file. Where should I look. Cheers Ulf Holt From aozturk at karfen.com Sat Apr 27 01:13:00 2002 From: aozturk at karfen.com (Alparslan Ozturk) Date: Sat Apr 27 01:13:00 2002 Subject: [interchange-i18n] how can I install under win2000 Message-ID: hi, I use cygwin but I can not compiler this project.. I have IIS5, active perl 5.x and php 4.x how can install and configure thanks Alparslan From aozturk at karfen.com Sun Apr 28 09:35:00 2002 From: aozturk at karfen.com (Alparslan Ozturk) Date: Sun Apr 28 09:35:00 2002 Subject: [interchange-i18n] ./configure not work Message-ID: Hi, I use cygwin and win2000(IIS5, php 4, perl5). I will use htdig but end line this error configure: error: cannot find output from lex; giving up thanks Alparslan -------------------------------------------------------------------cygwin $ cygcheck.exe -c Cygwin Package Information Package Version ash 20020131-1 autoconf 2.53-1 automake 1.6a-1 bash 2.05a-3 binutils 20011002-1 crypt 1.0-1 cygrunsrv 0.95-1 cygutils 1.0.0-1 cygwin 1.3.10-1 cygwin-doc 1.0-1 diff 0.0 fileutils 4.1-1 findutils 4.1 gawk 3.0.4-1 gcc 2.95.3-5 gdbm 1.8.0-4 gettext 0.10.40-1 grep 2.5-1 groff 1.17.2-1 indent 2.2.7-2 inetutils 1.3.2-17 keychain 1.8-1 less 374-1 libintl 0.10.38-3 libintl1 0.10.40-1 libncurses6 5.2-8 libtool-stable 1.4.2-2 login 1.4-3 make 3.79.1-5 man 1.5g-2 ncurses 5.2-8 openssh 3.1p1-1 patch 2.5-3 pcre 3.7-1 pine 4.44-1 popt 1.6.2-1 sed 3.02-1 sh-utils 2.0-2 sharutils 4.2.1-2 tar 1.13.19-1 termcap 20020403-1 terminfo 5.2-1 texinfo 4.1-1 textutils 2.0.21-1 units 1.77-1 vim 6.1-2 w32api 1.3-2 -------------------------------------------------------------------cygwin alparslan at OLC /tmp/htdig32 $ ./configure loading cache ./config.cache checking for a BSD compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... (cached) yes checking for working aclocal... missing checking for working autoconf... missing checking for working automake... missing checking for working autoheader... missing checking for working makeinfo... found checking whether make sets ${MAKE}... (cached) yes checking host system type... i686-pc-cygwin checking build system type... i686-pc-cygwin checking for ranlib... (cached) ranlib checking for gcc... (cached) gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for ld used by GCC... (cached) /usr/i686-pc-cygwin/bin/ld.exe checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... (cached) ye s checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking whether ln -s works... (cached) yes updating cache ./config.cache loading cache ./config.cache within ltconfig checking for object suffix... o checking for executable suffix... (cached) .exe checking for gcc option to produce PIC... none checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.lo... yes checking if gcc supports -fno-rtti -fno-exceptions ... yes checking if gcc static flag -static works... -static checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... yes checking whether the linker (/usr/i686-pc-cygwin/bin/ld.exe) supports shared lib raries... yes checking command to parse /usr/bin/nm -B output... ok checking how to hardcode library paths into programs... immediate checking for /usr/i686-pc-cygwin/bin/ld.exe option to reload object files... -r checking dynamic linker characteristics... Win32 ld.exe checking if libtool supports shared libraries... yes checking if package supports dlls... no checking whether to build shared libraries... no checking whether to build static libraries... yes checking for objdir... .libs creating libtool updating cache ./config.cache loading cache ./config.cache checking whether to enable maintainer-specific portions of Makefiles... no configuring ht://Dig version 3.2.0b3 checking for gcc... (cached) gcc checking whether the C compiler (gcc -g -O2 ) works... yes checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for c++... c++ checking whether the C++ compiler (c++ ) works... yes checking whether the C++ compiler (c++ ) is a cross-compiler... no checking whether we are using GNU C++... yes checking whether c++ accepts -g... yes checking how to run the C preprocessor... gcc -E checking for AIX... no checking maximum warning verbosity option... -Wall for C++ -Wall for C checking adding -fno-rtti to g++... ok checking adding -fno-exceptions to g++... ok checking for ranlib... (cached) ranlib checking for ar... /usr/bin/ar checking for sh... /bin/sh checking for sed... /usr/bin/sed checking for perl... /usr/bin/perl checking for find... /usr/bin/find checking for gunzip... /bin/gunzip checking for rrdtool... no checking for tar... tar checking for mv... /usr/bin/mv checking for sendmail... /usr/lib/sendmail checking for time... time checking verbose time flag... time: not found time: not found time: not found checking for flex... no checking for lex... no checking for ./missing... no checking for flex... lex checking for yywrap in -ll... no checking lex output file root... lex: not found configure: error: cannot find output from lex; giving up alparslan at OLC /tmp/htdig32 $ From racke at linuxia.de Mon Apr 29 07:43:01 2002 From: racke at linuxia.de (Stefan Hornburg Racke) Date: Mon Apr 29 07:43:01 2002 Subject: [interchange-i18n] Where are the errormessages?? In-Reply-To: <1DD64E30554001408A2548D9F26A0B5E6F9A@onsite.onsite-data.no> References: <1DD64E30554001408A2548D9F26A0B5E6F9A@onsite.onsite-data.no> Message-ID: <87k7qqlo61.fsf@snowflake.linuxia.de> "Ulf Holt" writes: > Hi - I'm back with another question > > I need to change error-messages to Norwegia. Where are they? I find some messages in the .html files, but not all. i.e. when I try to change password and get an errormessage 'Must have old password' it's not from any .html file. Where should I look. > You need to look into the Interchange core source for these error messages (lib/Vend/UserDB.pm). Ciao Racke -- Think of it ! For projects and other business stuff please refer to COBOLT NetServices (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) From scm at apdo.com Mon Apr 29 15:41:00 2002 From: scm at apdo.com (Salvador Caballe) Date: Mon Apr 29 15:41:00 2002 Subject: [interchange-i18n] Where are the errormessages?? In-Reply-To: <87k7qqlo61.fsf@snowflake.linuxia.de> References: <1DD64E30554001408A2548D9F26A0B5E6F9A@onsite.onsite-data.no> <87k7qqlo61.fsf@snowflake.linuxia.de> Message-ID: <200204291948.g3TJmn3d015756@cobi.astro-radio.intranet> A Dilluns 29 Abril 2002 11:49, v?reu escriure: > "Ulf Holt" writes: > > Hi - I'm back with another question > > > > I need to change error-messages to Norwegia. Where are they? I find some > > messages in the .html files, but not all. i.e. when I try to change > > password and get an errormessage 'Must have old password' it's not from > > any .html file. Where should I look. > > You need to look into the Interchange core source for these error > messages (lib/Vend/UserDB.pm). > > Ciao > Racke Put the translation in your locale database or in your catalog.cfg file # # LocaleDatabase locale Locale es_ES "blank" "vacio" Locale es_ES "Not logged in." "No Registrado" # # # ... best regards Salvador Caballe From rene at hertell.com Mon Apr 29 17:50:00 2002 From: rene at hertell.com (Rene Hertell) Date: Mon Apr 29 17:50:00 2002 Subject: [interchange-i18n] more translation of error-messages.. Message-ID: Racke, Is there any working way in putting [l]-tags in the lib/Vend/UserDB.pm error-messages, like: my $stock_error = ::errmsg("[L]Invalid user name or password.[/L]");? Regards, Ren? From markus at konsult.com Mon Apr 29 20:14:01 2002 From: markus at konsult.com (Markus Reimer) Date: Mon Apr 29 20:14:01 2002 Subject: [interchange-i18n] Where are the errormessages?? In-Reply-To: <200204291948.g3TJmn3d015756@cobi.astro-radio.intranet> Message-ID: <004501c1efdc$e4172450$6408a8c0@pork> > From: Salvador Caballe > Put the translation in your locale database or in your > catalog.cfg file # # LocaleDatabase locale > Locale es_ES "blank" "vacio" > Locale es_ES "Not logged in." "No Registrado" Does anyone have a pointer to a complete list of messages that should be replaced? I'm interested in completing my translation into swedish. Best regards //Markus Reimer Konsult.com markus at konsult.com 070-710 69 91 From racke at linuxia.de Tue Apr 30 01:58:01 2002 From: racke at linuxia.de (Stefan Hornburg Racke) Date: Tue Apr 30 01:58:01 2002 Subject: [interchange-i18n] more translation of error-messages.. In-Reply-To: References: Message-ID: <87znzl7mct.fsf@snowflake.linuxia.de> "Rene Hertell" writes: > Racke, > > Is there any working way in putting [l]-tags in the lib/Vend/UserDB.pm > error-messages, like: > > my $stock_error = ::errmsg("[L]Invalid user name or password.[/L]");? The Vend::Util::errmsg function returns the translated string if you provide it in the locale database. Ciao Racke -- Think of it ! For projects and other business stuff please refer to COBOLT NetServices (URL: http://www.cobolt.net; Email: info at cobolt.net; Phone: 0041-1-3884400) From kotoml at mynetix.de Tue Apr 30 08:47:00 2002 From: kotoml at mynetix.de (Andreas Kotowicz) Date: Tue Apr 30 08:47:00 2002 Subject: [interchange-i18n] german translation - again Message-ID: <1020171279.1259.3.camel@monster.koto.lan> Hi, I found a mail on the german translation of the foundation demo shop. can anyone tell me, where I could download this file? thanks, andreas