The process of making an application suitable for use for a world-wide audience, regardless of culture.
-1
votes
1answer
18 views
Why Visual Studio 2010 add 'fa.resx' insted 'fa-IR.resx' for resource file?
why visual studio 2012 add 'fa' language name for resource file and don't add 'fa-IR' for the name of resource files, like visual studio 2008 ?
so my project that have 'fa-IR.resx' resource files has ...
0
votes
1answer
45 views
Translating a Visual Studio project
I have a big project written in my native language (hun) in c# with Visual Studio 2012.
I'd like to translate it to english.
Of course if I get a text in hungarian, I can translate it, so the ...
0
votes
1answer
22 views
Lithium Framework: Different URL multi language site
I want to get different URLs for different languages.
For example:
http://www.example.com/en/users/create
http://www.example.com/es/usuarios/crear
I have g11n enabled and I tried this:
...
0
votes
0answers
22 views
Getting the device language for a Phonegap application
I'm developing an html5/JqueryMobile/Phonegap app. I have to detect the device language to redirect to a specific html. I'm trying to use Phonegap's navigator.globalization.getPreferredLanguage. On an ...
0
votes
1answer
12 views
Change Locale in MVC application on click
How can I apply new locale in MVC application ?
I've created an Action that sets
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");
Thread.CurrentThread.CurrentCulture = new ...
0
votes
0answers
19 views
I'm getting an odd MissingManifestResourceException
I have a solution with several projects, a main project, a globalization project and a test project.
When code in the main project retreives a message from the Messages.de.resx file of the ...
0
votes
2answers
29 views
Canonicalize string using CultureInfo and CompareOptions
Currently I have code, which based on a CultureInfo cultureInfo = new CultureInfo("ja-JP") does a search using
bool found = cultureInfo.CompareInfo.IndexOf(x, y,
CompareOptions.IgnoreCase |
...
2
votes
2answers
30 views
Where does CurrentUICulture setting reside in Windows 7 from a .NET app perspective?
I would like to test how my app would work under different cultures.
So for testing purposes, under Windows 7, I tried to change CurrentUICulture in system settings.
This seems to be the right ...
0
votes
3answers
34 views
How do I force a culture in asp.net?
I want to be able to set the culture during runtime. For example:
protected void Page_Load(object sender, EventArgs e)
{
Page.Culture = "fr-FR";
Page.UICulture = "fr";
}
But that's not ...
0
votes
1answer
29 views
How to get default calendar type in Java
Is there any way to get information about default calendar type used in specified location? (Gregorian, Chinese...)
I can get Calendar object with:
DateFormat formatter = ...
0
votes
0answers
22 views
Windows phone: How do I globalize/localize application title text in App list and tile
I use resource string for text appear in xaml pages by using these
{Binding Path=LocalizedResources.AppName, Source={StaticResource LocalizedStrings}}
But where and how do I globalize application ...
0
votes
0answers
24 views
ASP MVC 4 globalizationScript, jquery and submitted data
im trying to use the following:
<script src="/Scripts/globalize.js" type="text/javascript"></script>
@Html.GlobalizationScript("~/Scripts/cultures/","~/Scripts/cultures/")
So ...
0
votes
1answer
27 views
Convert to string is removing single quote from the date format
I am trying to convert date in different format. I am facing difficulties for Bulgarian format. When I am taking shortdate format and long time format it is giving two symbols in single quotes. But ...
2
votes
1answer
51 views
Floats and double precision issues with WinRT DecimalFormatter
I chose to use DecimalFormatter to help globalize the numbers displayed in my app. Here's some example code. Unfortunately, it appears as if this class is succeptable to common float/double precision ...
0
votes
1answer
21 views
Cache resource files to improve performance
I want to cache resource files to improve performance.
Are resource files actually cached?
When i get a value from resources file like this:
Label1.text= Resource1.String1
The resourcemanager ...
-1
votes
1answer
37 views
Get cyrrency symbol while current culture is another than control's one [closed]
My current culture is en-US, but grid's language contains textboxes and is set to another language, say, fr-FR. How can I get a currency symbol from the input string of textbox?
Thank you.
1
vote
1answer
88 views
Changing .net asp mvc 4 culture info, application wide
I have a complete application, which uses a web app, a database, and some business logic layer. The problem is that each one of them is configured to use the system culture. I need to fix the culture ...
1
vote
1answer
55 views
Localization of ASP.NET website is not working
I am trying to localize an asp.net website, however its not working properly.
At the moment I have a user control, which I wish to localize. So inside the UserControls folder, I have created an ...
0
votes
2answers
29 views
Phonegap globalization redirect language without button
This is the Javascript code for phonegap which redirects to the right html file.
function checkLanguage() {
navigator.globalization.getPreferredLanguage(
function (language)
{
...
0
votes
1answer
34 views
Phonegap 2.3.0 Globalization class not found on BB10 Webworks app
I am developing a Phonegap 2.3 app on BlackBerry 10 with WebWorks and Sencha Touch 2.2. When I try to call the getPreferredLanguage() method as per the docs:
...
1
vote
1answer
61 views
Simple ResourceManager example not working inside unit test
Trying to follow this: http://msdn.microsoft.com/en-us/library/21a15yht.aspx The problem with the example is it's a mixture of instructions for visual studio users and command line users, but I have ...
0
votes
0answers
17 views
Locale during unit test
I've go a piece of code I want to put under test. I want to check if a string is properly composed out of various strings that I have in resources. The challenge here is to deal with multiple ...
1
vote
1answer
34 views
Change route segment dynamically in mvc3
I created 2 routes like this to perform the localize:
routes.MapRoute(
"Default", // Route name
"{language}/{controller}/{action}/{id}", // URL with parameters
...
2
votes
2answers
66 views
How to parse datetime based on computer format?
In my website, I use DateTime.TryParse() to parse datetime data. My problem is I don't know the format. For example, if the user uses US format, the format would be mm/dd/yyyy, while user uses UK, it ...
0
votes
1answer
36 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
40 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
172 views
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
50 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
86 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
44 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
39 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
14 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
43 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.
3
votes
1answer
85 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
69 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
88 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
30 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
23 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
132 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");
...
1
vote
1answer
65 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
67 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
62 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
49 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
163 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
69 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
111 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
76 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
41 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
56 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
216 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 ...



