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
-1
votes
2 answers

How to use Jquery globalization package for date validation

I'm having problems with my jquery date validation script so I installed the jquery globlization package.I'm very new to packages and installation of packages so I'm not quite sure how to utilize the scripts. I tried doing the following but it still…
TykiMikk
  • 1,058
  • 3
  • 15
  • 31
-1
votes
1 answer

How to access language resource file values in code behind

I can access language resource file values in mark up fine using below code: <%=Resources.MainResource.MyKey%> But I cannot do the same in code behind. Shouldn't it just be as follows: Dim MyValue = Resources.MainResource.MyKey
user3656029
  • 101
  • 1
  • 14
-1
votes
2 answers

Globalization in asp.net MVC issue with page redirection

Base COntroller public class CultureController : Controller { public ActionResult SetCulture(string culture) { HttpContext.Session["culture"] = culture return RedirectToAction("Index", "Home"); } …
Pearl
  • 8,373
  • 8
  • 40
  • 59
-1
votes
2 answers

Get index of first non standard english character

I'm trying to process a string and separate it into two parts when i find a character that is not of the standard english alphabet. For example This is a stríng with áccents. and i need to know the index of the first or every character with accent…
CodeArtist
  • 5,534
  • 8
  • 40
  • 65
-1
votes
2 answers

Which is the best way to use the Culture Globalization for winforms c#

I want to make my application which supports all the languages based on the resx file. If not resx file is available it has to take the default language from the display language set in the control panel. How can I do this? Which is the best way to…
roopini n
  • 503
  • 2
  • 7
  • 29
-1
votes
2 answers

DateTime.Parse not reversing month and day based on thread culture

I'm parsing a date string from a database so that I can display it in the current culture of the UI thread. For some reason, the date is not parsing with respect to the culture - specifically, I'm parsing a en-US date to switch to a es-ES date and…
Shawn Hubbard
  • 932
  • 10
  • 23
-1
votes
1 answer

Decimal Parse is throwing exception after changing NumberFormat Seperator in Global Thread

I have changed Global Application Culture thread for currency number format in (fr-CA) as shown below. Thread.CurrentThread.CurrentCulture.NumberFormat.CurrencyPositivePattern = 1; …
Amit Kumar
  • 1,059
  • 3
  • 22
  • 43
-1
votes
1 answer

How to change individual keyboard layouts using C#

I am developing a multi-lingual application allowing users to change language as well as keyboard layouts (through combobox). I am able to change the culture of application successfully but I'm unable to change the individual keyboard layouts e.g.…
Solat Ali
  • 39
  • 1
  • 6
-1
votes
3 answers

Double.TryParse converts 0.1 to 1.0

Situation - The thread culture in my web app has been set to 'es' (Spanish) Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture("es"); Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("es"); The string…
Zuber
  • 577
  • 1
  • 11
  • 29
-1
votes
1 answer

How do I Implement Globalization and Localization in ASP.NET

Suppose if someone opens my site from India it should show Indian time of if someone opens this site from US it should display their local time. How can i do it. Plz help me out Thanks in advance cpVariyani
cpVariyani
  • 159
  • 1
  • 2
  • 12
-1
votes
2 answers

Regional settings on deployment machine for datetime not performing

I deployed the application on normal windows 7 machine as it is central machine for official use. this is internal use application. bu the datetime manipulation on the deployed machine not working properly. since everything if working properly on…
Red Swan
  • 15,157
  • 43
  • 156
  • 238
-1
votes
1 answer

Get cyrrency symbol while current culture is another than control's one

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.
Igor S
  • 638
  • 7
  • 15
-1
votes
1 answer

Missing Globalization Support in Windows 8 C++ Apps

I'm looking to take advantage of a number of globalization techniques within my Visual-C++ (C++/Cx) app for the Windows 8 store. More specifically, I thought I'd start with language-sensitive sorting. Within the documentation, it alludes to a set of…
Brent Traut
  • 5,614
  • 6
  • 29
  • 54
-1
votes
1 answer

How can I implement globalization on hyperlink

I have three hyperlink English, Spanish, and Chinese. When a user clicks on Spanish, all the content of website will change into Spanish (and so on). I tried to find an answer for this on Google but didn't get a perfect answer. If you have any…
-1
votes
2 answers

Multilingual website testing - I am not able to type in French?

I am creating a website using ASP.NET that supports multiple languages. For that I have created a local resource file for my login.aspx page. I want my login page in different languages like french, spanish etc. For that I have also created two…
rick
  • 913
  • 6
  • 13
  • 28
1 2 3
95
96