The process of making an application suitable for use for a world-wide audience, regardless of culture.

learn more… | top users | synonyms (2)

0
votes
1answer
14 views

Phonegap: Globalization: How to redirect to .html page in this function?

I´ve got this function to alert the preferred language on the device: function checkLanguage() { navigator.globalization.getPreferredLanguage( function (language) {alert('language: ' + ...
1
vote
1answer
16 views

Phonegap javascript globalization detect languages and redirect to .html files

i know this was a topic before but i can´t find a proper solution for it. I want to detect the language on the devices with phonegap, so i can redirect the user to the right indexLanguageX.html ...
5
votes
5answers
104 views

{Solved} Convert Unicode string made up of culture-specific digits to integer value

I am developing a program in the Marathi language. In it, I want to add/validate numbers entered in Marathi Unicode by getting their actual integer value. For example, in Marathi: ४५ = 45 ९९ = 99 ...
0
votes
2answers
38 views

Double.Parse on a german system result in comma instead of decimal point

I have the following: private static string someValue = "0.1"; I need to convert this into double in order to do some calculation. On a German system I get the conversion as 0,1 rather than 0.1, I ...
0
votes
1answer
44 views

asp.net CurrentUICulture and resx file

In my asp.net app I want to let user to change his profile language and then load respective resx file. I have two global .resx files: LocalizedText.resx LocalizedText.pl.resx protected void ...
0
votes
0answers
33 views

How to add value in local resource in asp.net for localization?

I am working on an ASP.NET project where I need multi-language support. I need to add some resources to a resource file directly in source code. So I am using the visual localizer plugin in VS 2010. ...
0
votes
0answers
25 views

php shell_exec fails when return non-ascii string

using command $ret = shell_exec($command); results in $ret being null when $command returns string containing non-ascii characters (papír), but it works when $command returns string without ...
1
vote
1answer
12 views

Replacement fields inside a multi-language application

I am developing a project which supports multiple languages. One of the functions we have is to support replacement parameters. Here is simplified example of what i mean: A string "{CUSTNAME} has 10 ...
1
vote
2answers
40 views

List of language names translated into corresponding language

For my software project, I'm looking for a list of language display names per locale as they are written in the corresponding language, like "Português" in pt_BR or "日本語" in jp_JP.
2
votes
1answer
55 views

Thread.CurrentThread.CurrentUICulture Vs Accept-Language in ViewModels

Globalization: The reason for asking this question is to have a better understanding of how Thread.CurrentThread.CurrentUICulture works in relation to properties and error messages in ViewModels and ...
1
vote
1answer
65 views

C++ game loading objects / global objects

I am still new to C++ so please forgive me if my question is unbearably obvious. I am (attempting) to code an RPG game. Everything is compiling nicely at the moment, however I now have to think about ...
1
vote
0answers
52 views

Undefined variable outside of PhoneGap globalization callback

I'm playing around with PhoneGap (Cordova version 2.6.0) currently and my JavaScript knowledge is unfortunately really rudimentarily. Im trying to use the globalization object of PhoneGap to get the ...
0
votes
0answers
18 views

GetObject for meta:resourcekey not being called in IResourceProvider

I need to move a site's .resx files to a database and implement a Custom Resource Provider using the IResourceProvider interface. I have followed the example at: ...
0
votes
0answers
18 views

How to create multi-lingual in asp.net

I want to create multilingual Application in asp.net. so I had done few practices but I'm not able to do completely. ex: I created a form with one dropdown list from where user can select the ...
0
votes
2answers
82 views

WPF, changing NumberFormatInfo of current culture doesn't work

In App.xaml.cs I have: Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US"); ...
0
votes
1answer
54 views

Localization Information (Globalization)

As at 2013 what is the best practice for multi language multi culture localization of web pages. Should I store all the translations in a database? for language etc? Should I build resx files based ...
1
vote
1answer
55 views

Is it possible to have multiple RouteCollections and switch depending on language at runtime?

We have a fairly large RouteCollection setup in RegisterRoutes() and we need to support Russian urls. This means that most of our MapRoute() urls need to be Russian. Rather than duplicate the ...
0
votes
1answer
47 views

How to change Number format in oracle?

I have a requirement to globalize the application based on culture specified in config file. I have Amounts and date values .I decided to convert them in query itself.Like below For Spanish Chile ...
1
vote
1answer
45 views

Not finding strongly typed Resources when using Global Resources

I can't believe I'm asking this question, since this seems to be a very easy to accomplish, but... How do I access global resources considering culture and uiculture? I created two files under the ...
1
vote
1answer
137 views

ASP.NET Localization working in IIS Express but not in IIS7.5 when using expression syntax (<%$ %>)

I have an application that localizes properly in IIS Express but causes an error message after being deployed to the server (IIS 7.5), but only where using expression syntax e.g. <asp:localize ...
0
votes
2answers
63 views

Detecting culture info from a string which has numeric value

Here is a List< string > lstA; lstA may contains value(datatype string) like: 1st example 1 1.00 1000.01 1,002.98 ......... Or listA may contain value like: 2nd example ...
0
votes
1answer
86 views

Converting DateTime to local not working

In MVC4 C# application I tried convert server time to local time. It works in local, but it does not working when site deploying. For testing I checked some code results in deployed site. They are: ...
0
votes
2answers
60 views

Is it any Python package which allow to parse .po files (message including context comments)?

I need to merge/update/delete .po files messages and need some Python package which allow me to parse fully .po files including: messages, plurals, location, context and comments. I want do simple ...
0
votes
1answer
33 views

What is the best method/tool to merge two .po translation files one old and one new with replace? [closed]

I want to merge two .po files together and produce new .po file. I am assume that many people will deliver different translation what need be merge into one. First I want to replace all old ...
0
votes
1answer
43 views

Lithium PHP form helper fails while generating URL when using globalization

I have activated globalization config in my lithium framework. When I using html helper in my View like '$this->form->create()'. The page threw an Exception with "No parameter match found for URL ...
1
vote
2answers
208 views

Auto Post back property not working with tab container

I am applying globalization on my hotel management system web portal and i am stuck with an issue.My issue is that i have a drop down list of two languages English and Spanish and i set ...
0
votes
1answer
54 views

listing of neutral cultures

How do I list neutral cultures in C++/WinAPI application? For specific cultures EnumSystemLocales function works reasonably well, but for some reason it does not list neutral cultures. In the end I ...
0
votes
0answers
92 views

Explicit control localization and App_GlobalResources folder

We are building a multilingual web application using .NET 3.5. In our application we use explicit localization for our server controls e.g. <asp:localize runat="server" text="<%$ ...
-2
votes
2answers
262 views

Convert a Unicode string to hexadecimal [duplicate]

I want to convert a Unicode string to hexadecimal. In other words I need to convert a string like أحمد to: 0xC3CDE3CF0000000000000000000000000000000000000000000000000000
1
vote
1answer
105 views

How to start a new unmanaged Process with different culture?

I need to run a new Process from .NET application with a culture of my choice. This process will run an external unmanaged 3rd party exe. How can I make it run with a specific culture? Note that I ...
0
votes
1answer
63 views

Setting up culture in WCF based on claim

I have a custom claim that determines language user will be using. I have extension to ClaimsPrincipal, that checks for that claim and generates appropriate culture: public static CultureInfo ...
1
vote
1answer
95 views

Loading different css files or images based on locale in Rails application

So I have my simple rails application (not data driven), and I have managed (with help from Stackoverflow) to localize it. So I can view the web application in English or German. I have done so using ...
1
vote
1answer
30 views

Globalizing my rails application

I have a simple rails application (not even database driven). And basically I want to make it support two languages. My approach to this is to have two little flags in the footer, one of GB (for ...
1
vote
1answer
88 views

Designing Tests for Culture/Globalisation problems

I'm concerned about the predictability of my application in handling string input in different cultures. It has been a problem in older software and I don't want it to be a problem in the new. I ...
1
vote
1answer
104 views

Multilingual Website Code Not Working

I have a website that has been working fine until I had to delete some incorrect resource files. However this may not be the reason for it not working. Basically, like most multi-language websites the ...
1
vote
1answer
70 views

How i18n translation works in Django/GAE - strange behavior for Polish?

I was wrote program with use Django 1.3/Google App Engine and find lack of support and strange behavior. Prapration - Polish translation (could be important) First of all the ungettext not support ...
1
vote
1answer
134 views

Parsing Resx file with C# crashes on relative paths

Out of the sheer frustration of having to copy resx data into word to get the word count i've started to write my own tool to do so. Well that made me run into an issue. i have icons and such things ...
1
vote
1answer
159 views

Error messages from ModelState not get localized

I am working on an application in mvc4.I want the application to work in English and Russian.I got titles in russian, but error messages are still in english. My model contains:- ...
3
votes
2answers
125 views

Globalization C#: Percentage data formatting:

Does the way percentage data is formatted is also part of CultureInfo? By formatting, I mean, whether to display it as 47.3 or 0.473 etc. My actual problem is that for DE language, I have to use ...
0
votes
1answer
45 views

Asp.net WebControl Globalization

I created in an external library a custom webcontrol which has it's resources for 2 languages. I use this assembly in 2 different website with the same web.config element. <globalization ...
0
votes
1answer
92 views

Setup project globalization

I created a windows forms project and a setup project to handle the installation process. The application it self is multilingual (English & Arabic),but the setup project is only in English. I ...
0
votes
1answer
159 views

WinRT - How To Get the correct DateTimeFormatter based on the user culture

I've some trouble finding the right DateTimeFormatter for the user. When converting a date to a string for example with .ToString("D"); always the en-US culture is used in WinRT. I found out ...
4
votes
1answer
166 views

MVC: make url language-specific (via routes)

Its hard to find an answer to this specific question, so ill pop it up here: We want to build up our urls completely language specific, meaning www.mysite.com/EN www.mysite.com/DE this is done in ...
0
votes
1answer
92 views

Windows Azure- Update and Add resource files

I am new to the Windows Azure world, and I have some doubts about the use of resource files in an deployed application. When I have a application deployed, is it possible to add or update existing ...
1
vote
2answers
44 views

htm files as resources in asp.net?

My site is globalized. For email notifications I use an .htm files for the email body. Is there a way I can have a .htm file for each language and call that file based on the culture settings of the ...
0
votes
1answer
94 views

Do I need to worry about worldwide fonts in my Winforms app?

I want my software available to a worldwide audience, and so am a bit concerned about fonts used in my program's GUI (Winforms, .NET3.5, C#). Let's assume I choose "Microsoft Sans Serif" for ...
0
votes
1answer
212 views

Changing the language of your web application c#

I've done some ressearch and the only way to do this seem to override the InitializeCulture method in every page of the web application. Thing is, my application has 80 pages, so I was wondering if ...
1
vote
1answer
92 views

Converting string to currency and globalization issue

I have this: var pl = new CultureInfo("pl-PL"); decimal valsue = decimal.Parse("2,25 PLN", pl); It works ok if i don't put "PLN" into my string. But PLN is currency in my country and i think that ...
0
votes
1answer
391 views

Export double to Excel - decimal separator issue

I'm having problems when exporting data in double format to Excel using Microsoft.Office.Interop.Excel. Numbers like -49,65454324566 (using comma as decimal separator) in the code are exported as ...
1
vote
1answer
185 views

All of a sudden, CultureInfo.CurrentUICulture does not reflect IE9 language preference in view?

Previously, I had no problem with this code in my view, and, it always properly reflected the user's language preference set in IE9: @using (Html.BeginForm("Edit", "Revision", FormMethod.Post, new { ...

1 2 3 4 5 15