If I create a Web Application project in visual studio 2008 I can add a resource file for a page and using the Access Modifier drop down in the resource file editor to let visual studio generate the code so that the local resources are strongly typed.
However if I create a Web Site project this combo box is disabled. Is there anyway to a...
The site I work on has a lot of images that contain text. This includes buttons and navigation.
To support localization I include 2 css-files. One that has non language specific properties (font, colour ...) and one that has language specific properties. There is only 1 language specific file served to the user depending on his choosen ...
This is a follow up question (and possibly should have been asked before it) to this question:
Subclasses of java.util.Calendar.
I'm internationalising a large Java app that uses dates fairly regularly since a lot of the data has dates associated with it. One of the first languages that it will be translated into is Arabic.
Currently...
Hello,
We inherited an application that was not originally designed to consume localized data (Localized strings like Russian/Japanese, Localized datetime formats, etc).
The original developers who worked on the project did not anticipate that there will be unicode strings. Although the table's datatypes support unicode characters (NVA...
So I have a requirement to change the locale of a site collection at runtime.
I am deploying a .resx file into the web applications App_GlobalResources folder, then I am using:
<asp:Literal runat="server" Text="<%$Resources:MyResource,MyLocalizedStringID%>" />
to insert the right localized string.
This works fine for the default r...
My ASP.NET application is localized (by using resources) to many cultures. What I need is to find all these cultures (in runtime) and for example fill a DropDownList.
I have code which does that in windows applications - buids collection of available cultures by seeking satellite assemblies.
But what about web apps? It's possibe to fin...
This is a really difficult question to answer, and the general answer may not be very useful (varies a lot depending on target demographic) but I'm interested to see any information on this topic. I'd like to understand how many software users worldwide I would eliminate by not localizing software. Does anybody have experience with non E...
I'm working on a localized app and everything is working fine. The problem is I want to allow the user to specifically select the lenguage for the specific app, in the app settings folder. This should users that their phone is set to one language (e.g. french) to set the app to work in English.
I'm currently using NSLocalizedString to g...
I'm developing a chat application, and I want to have the application localized according to the particular language in that country. Does jQuery support this, or do I need to use something else for localization?
...
I have a WinForms application which I want to translate into multiple languages. However, I do not have any experience with localizing a WinForms app, and I find very contradictory information about this subject.
Basically, what I want is:
In the source code, I want only one file per language
this file gets compiled into the main appl...
How is text in a database localized for the iPhone? The examples I've seen have hard coded strings in the .m file or .xib. For example:
NSString firstName = NSLocalizedString(@"First Name", @"This is the first name");
What happens if the strings you need to localize are in the database? I haven't found discussion of this type of lo...
I'm trying to implements selection lists using Smarty and I'm aware of the {html_options}. The application must support localization (which I implemented as described in this post).
Is it possible to combine the two?
I'm currently handling it by parsing through the items with {section name=i loop=$list} and "manually" generating the HT...
Is it possible to switch input language for another application? Having application's process ID, thread ID, window handle etc.
...
I am working on globalizing/localizing an asp.net application with C# as the backend. We are in the process of extracting strings to a resource file, and have run into a problem. We are trying to keep sentences together so that they are translatable, but this is not possible with links. For Example:
<%= Strings.BeginningOfSentence %>...
I am developing a multi-lingual site with Plone. I want to have one language per folder but the Plone navigation UI is causing problems.
I have several different folders in my root, such as en, de, nl, etcetera. Inside those folders is the actual content, such as en/news, nl/nieuw, de/nachrichten, etcetera. I have set up Plone Language ...
I would like to set the Culture of a WPF application to a specific one based on user preferences.
I can do this for the current thread via Thread.CurrentThread.Current(UI)Culture, but is there any way to do this globally for the application (so it affects all threads by default)?
...
What is the accepted way for entering passwords in Hebrew / Hebrew localised installations? Should the password entry dialog be right aligned with new characters appending on the left? like this:
|----------------------|
| |*******|
|----------------------|
Or do they generally left align with new characters inserted to t...
How do I programmatically change the language used in WinXP using .Net 2.0 (or a pInvoke). The user does not have access to the task bar in the application I'm working on so the input method needs to reflect the application's selected language. I need to be able to swap the language from a left-to-right to a right-to-left and back again ...
I have a label on a page which gets localized text through the meta:resourcekey attribute. The issue I have is that I want it to display different text depending on which view of a multiview they're on.
I tried adding the attribute though label.Attributes.Add("meta:resourcekey", "label"), but that doesn't seem to load any text. I tri...
Hi,
I have an iPhone localization problem that has me perplexed. I was localizing my app and had English as well as simplified and traditional Chinese working fine. I have two files, Localizable.strings and sounds.plist which have been localized. Strings in both files appeared correctly on the device and emulator.
Now yesterday I am ad...