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

MvcSiteMapProvider, DynamicNodeProviderBase and Globalization

I have the following class public class MenuVeiculo { public string Nome { get; set; } public string NomeEn { get; set; } public Guid ID { get; set; } } As you can see, I have two properties, "Nome" and "NomeEn." Each one represents the…
0
votes
1 answer

Having a separate project for satellite assembly for globalization for a solution with a Silverlight and ASP.NET application

I'm trying to figure out a way to have a separate project for my two applications that are in the same solution. Can this be done? I can't find any examples and even tutorials for globalization with satellite assemblies are pretty bad. I want both…
0
votes
1 answer

Exact date and time format of DateTimePicker

According to this article I know, that DateTimePicker control does not reflect CurrentUICulture So, how can I get the real culture it's using? I need that to get the string value of DateTimePicker in multi-language application, but in exactly the…
mj82
  • 5,193
  • 7
  • 31
  • 39
0
votes
2 answers

Converting from globalized date/time format (maybe ISO8601) to SQL Server datetime type

Is there a string format to represent a datetime that SQL will be able to parse and convert into another offset (EST -> UTC for example). I have a string from the user such as: declare @p1 varchar(50); declare @utcDateTime datetime; set @p1 =…
Jeff Meatball Yang
  • 37,839
  • 27
  • 91
  • 125
0
votes
2 answers

Changes to do in my ASP.NET application to add globalization

I have to add globalization (Arabic) to my English ASP.NET application. It's been so easy to get information about the changes to be done in Visual Studio but not as easy to get information about general lines to follow (server, database, etc) and…
Scheveningen
  • 69
  • 2
  • 14
0
votes
2 answers

Globalization and Localization in PHP by __() function

I am working on globalization and localization.. I got interesting thing in a blog that is __() function, and heared many of people utlizing this function for globalization.. I read its PHP built in function but some of people using this by…
Shadman
  • 755
  • 2
  • 11
  • 19
0
votes
2 answers

How to localize sql server data?

We have a requirement to develope an application that support multiple languages (English, German, French, Russian) and we know, we can use ASP.NET localization to localize static text of a web form but what would be the approach for data…
Santosh
  • 33
  • 1
  • 5
-1
votes
1 answer

DateTime Oddness

App 1. Sets a Request Header with a DateTime.Now value (11/11/2020 03:44:53) App 2. Reads the Request Header and has the DateTime value (2020/11/11 上午 03:44:53) DateTime.Parse("2020/11/11 上午 03:44:53") throws an exception in App 2. What are we…
mt programmer
  • 139
  • 1
  • 8
-1
votes
2 answers

How to pass functions from parent to any children and sub-children using Navigator and WithSecurityScreen in React Native?

I am quite new in React Native and I am trying to understand how function written in a parent Component could be passed (inherited) to any children and sub-children. In particular I am using a library to internationalise my App using: import * as…
shogitai
  • 1,823
  • 1
  • 23
  • 50
-1
votes
1 answer

How to set global function to convert all different formats of dates for different locales?

We are creating a system with different locales. I can say all of the .net locales that can be found here : https://dotnetfiddle.net/e1BX7M I googled a lot and datetime.parseexact or datetime.parse is only for one specific format, for example…
letsrock
  • 1
  • 2
-1
votes
1 answer

Why conversion between default system datetime to PersianCalendar is not working?

I have a dateTime stored in database using this line of code: var now=DateTime.Now; so after it stored, the data is like this in database and also after recalling the entity: 2019-01-26 17:27:46.297 when i try to convert it to another culture…
Z Daneshi
  • 57
  • 9
-1
votes
1 answer

Determine if CurrentCulture's AbbreviatedMonthNames are just numbers or not

for example var culc = new CultureInfo("ja"); culc.DateTimeFormat.AbbreviatedMonthNames Will return string[13] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "" } Is there a more elegant way of determining if currentculture has…
Zoinky
  • 4,083
  • 11
  • 40
  • 78
-1
votes
1 answer

set CultureInfo to a language with country unknown

I'm trying to set the CultureInfo of my application depending on a settingFile that's being given to me (I can't change it's content). In my settingFile I have only access to the language name that I should display (no information about the country)…
Belterius
  • 738
  • 1
  • 10
  • 20
-1
votes
2 answers

How to convert string “2.000,65” into decimal 2,000.65 (en-Us) culture in c#

I have string value of "2.000,65" in German (de-DE) culture format. I want to convert this value into decimal and that too also in English (ed-US) format in c#, like "2,000.65". Summary:- I have a string value : "2.000,65" Now wanted to convert this…
Herin
  • 704
  • 3
  • 18
  • 34
-1
votes
2 answers

Change sapui5 fileuploader browse button text

I'm looking for a way to change sapui5 language at runtime based on the loggedin user language. I have the i18n properties file in place. The challenge that I'm facing is to change the text on the FileUploader button. This text is not being picked…