all groups > dotnet internationalization > january 2006
Resource file question
Posted by Evian Spring at 1/31/2006 12:30:11 PM
In .Net 2.0, the resource file is into an XML format which I think is
great.
However I would like to know if .NET comes with tools that allow you to
convert that resource file to a flat text file.
The flat text file would be what I send to the translation document.
What I mean by ... more >>
resx files and localization
Posted by gabriel at 1/30/2006 7:03:33 PM
greetings,
I am developping a windows form app and trying my hand at i18n.
private ResourceManager messages ;
public Form1()
{
CultureInfo frenchCulture = new CultureInfo("fr-FR");
Thread.CurrentThread.CurrentCulture = frenchCulture;
this.InitializeComponent();
this.messages = new... more >>
App doesn't load satellite assemblies
Posted by Mike Leftwich at 1/30/2006 4:04:27 PM
I gave up on using text files in VS2005 for now and switched to resx files
instead. I entered my strings into the default Resources.resx file, then
copied that file to create Resources.es-ES.resx (Spanish) and
Resources.fr-FR.resx (French) and added them to my project. VS creates the
subdi... more >>
Localizing winforms in Vs2003 - Can anyone give simple understandable instructions?
Posted by Bob at 1/28/2006 12:20:38 PM
I have a project SGIIMSTransCalls - I created a resource file resources.resx
under the project folder. I then created a second resource file called
ressources.fr.resx. As I go along when I need a special message I create it
in the resource.resx file and translate it with the same name in the
... more >>
Localization using text files in VS2005
Posted by Mike Leftwich at 1/27/2006 4:59:26 PM
I've created a very simple test app with WinForms to learn how to use
localization in .NET. The app simply has a button that displays a MessageBox
with a message retrieved from ResourceManager.GetString. Here's the code:
private ResourceManager rm =
ProdRegTest.Properties.Resource... more >>
System.Text.Latin1Encoding
Posted by Harlan Messinger at 1/24/2006 2:32:03 PM
In an app I use the following statement in a class called Application:
public static readonly System.Text.Encoding defaultEncoding =
System.Text.Encoding.GetEncoding("iso-8859-1");
When debugging, if I type the following in the command window:
Debug.Print Application.defaultEncoding
I ... more >>
Enterprise Localization Toolkit Problem
Posted by Ben at 1/18/2006 2:57:01 AM
Hello.
I have been trying unsuccessfully to use the Enterprise Localization Toolkit
to make a small test application multi-lingual. If it works successfully we
want to implement it into a Microsoft Commerce Server 2002 site, to enable
them to have French and American sites, and ultimately... more >>
Getting the time of a city
Posted by Ishan Bhalla at 1/10/2006 9:26:03 PM
Hello everyone,
Is there any framework or API function i can use to get the date and time of
any city in the world?
Basically our server is based in Sydney and we need to know time in Perth
when any scanning information comes from there. The server time is always
Sydney time.
Thanks ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Localizing problem on winform - bug!
Posted by Bob at 1/7/2006 2:22:02 PM
Vs 2005, a windows form. Was set up to be localizable, was using english and
french all worked fine until I started having to do some modifications to
bound datatables and their binding sources.
All this work of course in the default language and everything works fine on
my form when either e... more >>
|