localization

Android: dynamically setting links to text in strings.xml

I'm trying to make an app with localisation built in, but I want a way that I can create a web link within the text, the URL being defined elsewhere (for ease of maintenance). So, I have my links in res/values/strings.xml: <?xml version="1.0" encoding="utf-8"?> <resources> ... <string name="link1">http://some.link.com&lt;/string&gt...

Internationalization and localization in an AJAX application

Overview I'd like to hear feedback on my approach for internationalizing an AJAX application. Is this a sound approach? What kind of other approaches would be worth considering? Here's a summary of the app: AJAX app running from a single HTML page generated server-side with i18n HTML page imports JQuery and plugins Uses XHR to load se...

Are there locales or common programs that use YYYY-DD-MM as the date format?

I've often standardized on YYYY-MM-DD as the date format for communicating within a geographically distributed project teams to dispel any ambiguity that might arise from local date formats. Is it likely that I might run into people who are used to seeing dates as YYYY-DD-MM? Are there programs that use this as a date format? ...

Is it possible to reference a string resource in the designer properties for a control in Visual Studio?

I am using Visual Studio 2008 and I am storing some string values in a resource file. I want to use the string values for things like a button's Text property. All of the examples I can find related to localization or storing strings in a resource file show you how to use a ResourceManager object and assign properties in code. However, I...

Loading WPF satellite resources dynamically

Hello! I've read about satellite-assemblies being used in WPF localizations. However, I would like to ask if there is a way to load the satellite-assemblies without following the pre-defined directory structure that depends on the language (ex. If the system language is English, the WPF application looks for the satellite-assembly insid...

GridView and localize AutoGenerate?????Button text

Is there a way to localize the text of the button that is automatically generated? The Edit / Insert / Delete / Cancel ...

How To Create Cross Browser Asp.net Custom Control

I'm goingto create an asp.net control which should be cross browser. and support some skin - multilanguage and rtl & ltr support. I want to know what should I consider and also looking for a good article ...

Localization .NET; Fallback language when using ResourceManager

Recently I was delving into Localization with .NET. Essentially, I learnt how to customize a form (using the Language and Localizable property) and then change the culture accordingly. However, I found that when migrating my hard coded English strings into the auto-generated resource files, and use .GetString("Key") -- well, let's just ...

Best practices for multi language site across different sub domains

I am looking to build a site in ASP.NET. I need it to be in french and english with the domains setup like so: en.mysite.com fr.mysite.com I do not want to duplicate code or have to upload the files to both domains if possible. It would be ideal to have all the files on www.mydomain.com and then use resource files to sort the transl...

Create new calendar system support in Exchange OWA

Since Exchange doesn't provide support for all local calendar types in OWA, I need to create one, using Microsoft.Net's support of calendars, but where should I start? ...

.NET Localization problem

I have an .NET application with satellite assemblies containing resource to be localized, but I want to leave the localization work to the customer, could I sign my application with strong-name and then deliver the application binary to the customer and let they do the localization job on their own? what else do i need to do? thanks a lo...

Silverlight DataPager localization

Is it possible to localize DataPager's footer (Page X of Y) in Silvelright? The strings seem to be located in resources embedded in the assembly of DataPager. So how should I localize it? Unfortunately, almost nothing in the DataPager class is virtual and also many internal classes are used by it, so it is not possible (at least easily...

What cultures are supported by the CultureInfo class in .NET 3.5?

I need a list of cultures that are supported by .NET 3.5, regardless of the OS used. This seems to be quite a struggle to obtain, though I am not sure why! Edit: Arghh, I was not aware that it is dependent on the OS, that would explain the lack of documentation. Any ideas on what is supported by Mac/Linux OS as well? Thanks :) ...

Changing MsBuild error message language

Hello, I'm on a Japanese system and when I run MsBuild.exe to build a Visual Studio project, I get a mix of Japanese and English in the output: C:\path\to\solution>C:\WINDOWS\Microsoft.NET\Framework\v3.5\msbuild.exe solution.sln Microsoft (R) Build Engine Version 3.5.30729.1 [Microsoft .NET Framework, Version 2.0.50727.3082] Copyright ...

How to make us and uk version of iPhone application ?

Hello all, I have seen some localization examples but they were based on languages . In my case I want to make my application in two versions : us and uk . For that I can not depend on language as I have seen just English in the settings application . there is no English(UK) or English(US) . I want just some minor changes like $ or...

Displaying a localised version of iPhone Contact Picker (ABPeoplePickerNavigationController)

In my app I use the ABPeoplePickerNavigationController to present an address book to the user so they can select a contact from their contacts. I want my app to support multiple localizations (English, French) and I was expecting the ABPeoplePickerNavigationController to display the correct localised strings when I changed the phone's l...

altering locale settings of system/browser to test javascript functions

I'm writing a small JavaScript function to generate a date selector for use in various languages. I want to test the JavaScript date functions toUTCString, toLocaleString, toLocaleDateString in english, french, german, italian and spanish. How do I affect the locale settings that are used by the date object. I've tried changing my windo...

Mark a method as NOT localized - .NET

I am writing extensions to a web app that doesn't need to be localized. As the company grows I believe there is a possibility that there may be some effort in the future to do this localization. Mindful of that I would like to mark all of the place that I am using country-specific date formats in an attribute on the method, for example...

How can I set the language (and culture) used by the django template system in webapp?

I'm writing a Google App Engine application using the WebApp framework. I'd like the various django filters to use the user-agent requested language (and culture) and not the default (English). I'm mainly interested in timesince, timeuntil, and date. Side-question: how can I enable the filters provided by django.contrib.markup inside We...

Localization in ASP.NET MVC

Looking around I see a lot of articles about localization in ASP.NET MVC, but they all do the same thing - setup a .resx file, set its build action to the right tool to make sure a class with static string properties is created, then use that class. Is there any way at all to use an existing resource provider I already have? Or at the v...