Questions tagged [globalization]

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

Cultures world-wide differ in many ways beyond the language spoken by users.

Globalization (or globalisation) is the process of making software appropriate for many different cultures. This might include

  • ensuring left-to-right and right-to-left character sets and display layouts are supported
  • different sort orders and search conventions are honoured
  • using non-pejorative user interface conventions, e.g. avoiding use of certain colours
  • understanding different conventions for people's names
  • recognising different ways to identify buildings and companies

It can be contrasted with localization, which is the process of tailoring software software for a particular locale.

1436 questions
0
votes
1 answer

MVC3 Error message globalization

I'm really lost trying to create custom generic validation messages for my MVC3 application. I read many tutorials and the biggest part of them suggest one of these options: Create an App_GlobalResources folder and inside that put my custom…
IPValverde
  • 2,019
  • 2
  • 21
  • 38
0
votes
2 answers

dateTimeString saved in en-US culture throws Format Exception while parsing in fr-FR culture

I am converting DateTime to a string in en-US culture. dateTimeString = dateTime.ToString(); But if I start my app in fr-FR culture and try to parse using below statement DateTime.Parse(dateTimeString, CultureInfo.CurrentCulture); It throws…
Gaddigesh
  • 1,953
  • 8
  • 30
  • 41
0
votes
1 answer

Resources files issues in ASP.NET MVC 3

I´m having a strange problem with resources files. Strange because it was working great. Well, I have some resources files. I created a Resources folder on my asp.net mvc 3 project structure and I am mirroring the views's folder structure. For now I…
0
votes
5 answers

Returning date in US format

I' like to return this short date in the US format, the current culture of my application is en-GB, but I'd like it in en-US. Here's the code I have so far: DateTime.Now.AddYears(-2).ToShortDateString();
Luke
  • 22,826
  • 31
  • 110
  • 193
0
votes
1 answer

MVC Textbox with float number using comma: from razor view to the controller . [Globalization?]

I'm using MVC3 + Razor. I'm sending a parameter on a textbox to a Controller. I'm using the "es-AR" globalization. I want a float number to have this format: "9,99" (comma as a decimal separator) When I put a "comma separator" number in the…
PnP
  • 625
  • 1
  • 10
  • 18
0
votes
2 answers

Default resource file not being used

This is my first try in globalization of windows forms, so I created form in my language and set property Localizable to true and left property Language on default, everything generated in default resource file, which was nice. After that I added…
formatc
  • 4,261
  • 7
  • 43
  • 81
0
votes
3 answers
0
votes
2 answers

How Can I Develop Multilingual Web Application

I have developed a multilingual web application with Asp.Net. I want to a question for this.Should i use Globalization or Cookie?Which one is true selection?
mantissa
  • 147
  • 3
  • 14
0
votes
1 answer

change language

how to change the language in iPhone application ?. i mean eg : in my application one label is there i want put a dutch word . what is the easy way. read from property file make one static class in project with string variable. or is possible…
jalju
0
votes
1 answer

Dynamically change Text value

I'm trying to implement a multilingual WPF application, I've a problem and I don't know how should I deal with this situation. Let's say I have 2 .Resx files and a TextBlock element which its Text property is bind to a class responsible to translate…
Saber Amani
  • 6,409
  • 12
  • 53
  • 88
0
votes
1 answer

Interpret Spanish Accents Oracle

I cannot find functions to help me make an insert to interpret Spanish accents and characters like ñ. Can you lead me? Thanks For example: INSERT INTO PRUEBA.PRUEBA_EDAD(COD,DABREV,DCORTA,DLARGA,EDAD_MESES,EDAD_ANYOS,FECHA_ACT) VALUES…
Jorgechu
  • 143
  • 1
  • 1
  • 12
0
votes
1 answer

Multilingual website in ASP.NET

This is a part of my multilingual website code . i am getting a runtime error Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); rm = new ResourceManager("Resources.Default.apsx",…
rick
  • 913
  • 6
  • 13
  • 28
0
votes
2 answers

SiteMap Globalisation not working

The below information is all about displaying the language in france. But its not displaying any data why? I tried lot of methods however no use. I tried lot of methods however no use. I tried lot of methods however no use.
Tony
  • 141
  • 4
  • 21
0
votes
1 answer

C# set language of any control in a web page by a dropdownlist

i have a web form and i want to change its titles for each control with the language thats chosen by a dropdown. but i couldnt do it. I messed with json and complicated things. here what i tried: controller string newstr = db.Countries.Where(c =>…
Berker Yüceer
  • 7,026
  • 18
  • 68
  • 102
0
votes
2 answers

How to localize for Windows Phone based on OS version

I'm building a Windows Phone application and my client has given me a list of languages that he would like the App to be localized for. The problem is that some of those languages are not supported by Windows Phone and I then decided to check out…