Culture is the combination of language and peculiarities of geographical location (like en-UK, en-US, de-AT, de-DE, fr-BE)

learn more… | top users | synonyms

0
votes
2answers
34 views

Displaying a weekday name in VB

Good morning, I am using a calendar form control to grab user selected dates and date ranges. On a calendar click event I refresh my form to show the user the selected start and end dates. As ...
5
votes
5answers
108 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
1answer
16 views

How to read from a resx file in the App_LocalResources folder using a specific culture?

To read a resource for a default culture I'd do this: object obj = GetLocalResourceObject("MyTextResourceID.Text"); But what I need is to do the same but to be able to specify a culture for the ...
1
vote
0answers
19 views

Manual Url Culture Rewriting in DotNetNuke Request

I'm working with dotnetnuke 7. I'm not using any rewriting modules and don't want to use them. When content localization is enabled, url has the following view: my_training_host/en-us/my-page.aspx ...
0
votes
2answers
62 views

Install new culture for Microsoft.Speech.Recognition.SpeechRecognitionEngine

I am working on a speech recognition project with a Kinect and I would like to change the language in the SpeechRecognitionEngine library. But on my machine there is only one language installed. ...
0
votes
1answer
36 views

Linq select based on culture

I'm sorry if this is a stupid question but if I want to return column depending on culture, what would the best way be? I've thought of having if elses in the linq select statement or making an ...
1
vote
3answers
149 views

Persian Calender in MVC , Asp.net

I use a DateTime variable in MVC and I want to show Persian calender for @Html.EditorFor(x=> x.ProductionDate) How can I do it?
0
votes
1answer
41 views

Setting cultureinfo does not give correct strings from local resource files

I have a website with a page called buystuff.aspx. I've created two local resources: buystuff.aspx.resx and buystuff.aspx.da-dk.resx. This works fine, and if I enter the site with a da-DK setting, I ...
2
votes
0answers
35 views

Instances of CultureInfo (from same culture) changing based on OS

I've a web site which writes a date like this: CultureInfo cultureInfo = CultureInfo.GetCultures(CultureTypes.AllCultures).FirstOrDefault(c => string.Equals(c.TwoLetterISOLanguageName, ...
0
votes
1answer
45 views

System Culture in a SIlverlight Application

I can't figure out how to get the CultureInfo of the Installed System on the Client Machine. There is the CultureInfo.InstalledUICulture Property, but it seems to be unavailable in Silverlight. ...
0
votes
1answer
35 views

format currency in specific way for only one culture

I am working on a multi lingual application that shows product prices in different currencies. I use the .net library to format currencies based upon culture eg. CultureInfo current = ...
0
votes
3answers
35 views

Globalization & Culture Settings on Azure

We are based in the UK and have a series of web services deployed to Azure. One of these automatically refreshes every 5 minutes and displays a 'Last refreshed at hh:mm:ss' message. It appears that ...
2
votes
2answers
69 views

force .NET windows app. to display numbers in english shape

I am building a culture specific .NET windows application and recently I faced a problem with the number shape which changed according to the OS culture. for example if the OS culture is English ...
0
votes
1answer
61 views

How to get all Cultures to avoid CultureNotFoundException

Guys I'm developing an application that will run across multiple machines. I've recently introduced Cultures in it to support all currencies. I have 2 main development PCs and I move code between ...
0
votes
0answers
17 views

Any way to get Culture from 3-letter Currency Code? [duplicate]

Is there any quick way of deriving the Culture for a given 3-digit Currency code ? For example, I want to get the Culture which has USD as its 3-Digit Currency Code .. ? Note that I only provided USD ...
0
votes
1answer
32 views

How to do currency-based number validation?

I have a Winforms Application, in which I have a Combo Box, and a text box. Combo box has Currency symbols as follows: USD GBP CAD AUD JPY EUR ISK PLZ TRL etc .. The user first selects one ...
0
votes
1answer
55 views

Any way to get Currency Names List and map them to Currency Symbols?

I have C# code which can generate a list like this, using Cultures (link): AUD $ CAD $ EUR € GBP £ JPY ¥ USD $ What I want is a list like this too: Australian Dollar Canadian Dollar Euro ...
0
votes
0answers
9 views

Cannot set culture in silverlight

I have an silverlight 4 application. I need to support two languages i.e Japanese and English. The default language is english. And a user can select any one of the two language. Now I am having ...
2
votes
1answer
87 views

Why does “i” get replaced with “ı”

I received a crash report from an application which was trying to read XML from a file it had previously written. After requesting the user send me the file, I compared it with what should have been ...
1
vote
2answers
67 views

Format culture issue in en-ZA .net

I have a small application, written on asp .net C#, which takes input from a user in a textbox, there are two buttons - on clicking the first one, i'll populate a second textbox with the culture ...
1
vote
1answer
124 views

Changing Application Culture at Runtime Failure

All, I have a localised WinForms application. I have created a facility where users are able to change the required culture/language of the application at runtime. To avoid doing anything fancy, when ...
1
vote
2answers
35 views

Culture formatting of an object property

I have an object with a number property (double) and has no specific culture set. This property is derived from a database when the user logs into the website. The culture formatting in the database ...
1
vote
1answer
89 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 ...
2
votes
1answer
45 views

Localization of strings which is inside a plugin dll C# wpf

I am creating a wpf application which contains several self contained plugin dlls which are accessed by my main application. Is there any way to provide localization support such that all the ...
0
votes
1answer
44 views

change profile language

Web.config <profile> <properties> <add name="Language" /> </properties> </profile> Default.aspx.cs protected void Page_Load(object sender, ...
1
vote
1answer
54 views

Symfony 2 routing culture based

I want to build a multilingual app with sf2. I want multiple routes to point to the same controller and when i generate urls i want them generated correctly, even if there are multiple routes that ...
0
votes
1answer
73 views

Current Culture is wrong in WinRT

I am trying to format the datetime value using Current Culture in WinRT. But CurrentCulture property not seems to respect the System Culture. I tried the following two properties, ...
0
votes
1answer
260 views

DateTime format according to the culture in MVC

I have an MVC view where I list a dateTime type column named "CreatedOn", the values are formatted like this: 'DD/MM/YYYY HH:MM:SS', When I click on edit link to modify a value I obtain the same ...
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 ...
5
votes
2answers
181 views

Why comparing two equal persian word does not return 0?

We have two same letter 'ی' and 'ي' which the first came as main letter after windows seven. Back to old XP we had the second one as main. Now the inputs I get is determined as different if one client ...
0
votes
0answers
103 views

insert/render Chinese characters in oracle using Provider=MSDAORA.1

Working with a desktop application that connects and displays data cleanly. Problem occurs with Chinese characters. They render with 'upside down question mark'. I think Oracle 10.2.0.4 is installed. ...
3
votes
2answers
103 views

Register custom culture in Windows Azure

I am currently developing an ASP.NET MVC 4 app for the African market and was hoping to register a custom culture using the steps detailed in the following link ...
1
vote
1answer
44 views

Convert.ToDouble uses wrong decimalseperator

I am working on a VB.net 08 project and have a strange problem with the code. SyncItemValues(i) = Convert.ToDouble(werte(i-1)) And werte(i) is a List of String. SyncItemValues(i) As Object ...
0
votes
2answers
131 views

Using language code (en) or full culture code (e.g. en-AU)?

I have an application in C#/WPF which is internationalized (resource string for some languages). Currently I am using the following codes for the resource files: default.resx, de-DE, fr-FR, es-ES, ...
0
votes
0answers
40 views

Culture change and validators

Im writing some form for my web site, and i got a problem with changing language and validators in that form. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="site.aspx.cs" Inherits="site" ...
2
votes
2answers
318 views

Get the current time format in a WinRT app using c#.

I need to get the current time format in a WinRT app using c#. I have used GeographicRegion to get the region, it will just tell us the location not the format. But normally we just change the format ...
1
vote
2answers
103 views

Use the Culture of the OS, but not the language

I've encountered several times the same problem in applications we develop: We want to allow the user to edit/display it's data in his format (date, currency, ...), but we want to display the ...
0
votes
1answer
146 views

Posting date (dd/mm/yyyy) and float (comma) values to aspnet WebApi

The Problem When I post jSon data to webapi, using pt-br formats (dd/mm/yyyy for date and comma decimal separator for float), the values are deserialized as en-us formats resulting in error. i.e. » ...
0
votes
1answer
34 views

asp.net merge more language in one culture

i'm using asp.net integrated language system for making my site multi-language. I used Culture="auto:it-IT" UICulture="auto" in every page to get italian as main language. Now i want my site to ...
1
vote
1answer
123 views

StringComparison vs CompareOptions in C#?

After reading this I'm still confused : string s1 = "hello"; string s2 = "héllo"; The difference thing here is the accent/culture. The result of the following code is False. ...
0
votes
2answers
107 views

JSON date to asp.net DateTime is changed at runtime

I've searched around and I'm really not sure why this happens. Most of the time my app runs in GMT from devices using GMT, but I just span a server up in Singapore, so the time is 8hrs ahead. I'm ...
4
votes
2answers
236 views

how to change date format and culture?

I need to change the culture of my string to Arabic. this code : <%# Eval("NewsDate","{0: dddd dd / MMMM / yyyy }").ToString() %> will show me these results : Sunday 01 / May / 1994 I ...
-1
votes
1answer
100 views

Android/Java: How to code if-statements based on localisation-settings? [closed]

Right now I'm starting to think about localisation of my ANDROID app. I'm coding in JAVA and I'm using the ADT environment. The app is supposed to run in German and English once it is finished. I ...
0
votes
1answer
629 views

Currency Culture Formatting not applying on DataGridView Column

I have 2 DataGridViews (DGV), and in both I have currency columns which I want to format. The code I'm writing seems to work in one, but not in the other. Both the DGV's are set up this way: Data is ...
-4
votes
3answers
94 views

How get full short date by culture

this code return to me 'M/d/yyyy' but I need 'mm/dd/yyyy' how do this? ((CultureInfo)Session["culture"]).DateTimeFormat.ShortDatePattern)
0
votes
1answer
79 views

Not consistently setting thread culture in ASP.net - bad idea?

I found a specific situation where we don't set the thread culture after a page loads. We also have a very rare case where someone's culture switches for no obvious reason. Are these two things ...
1
vote
3answers
200 views

Setting current culture for entire solution

I'm trying to support multiple languages in a solution that has multiple projects and threads. I have 2 resource files, one with English strings, and one with French strings. I'm setting the ...
0
votes
0answers
58 views

Validate users' number inputs considering the culture of the user

I am developing an ASP.Net web api application and I want to validate users' number inputs for the culture. Which means, if user has entered 12.0 when he is has used the culture as "no" (Norwaygian), ...
0
votes
1answer
103 views

Returning an array of culture formatted dates C# MVC3

I'm new to programming and trying to do an exercise that formats a date to the Thai culture in a variety of formats this is what I have for my code so far: public String[] ...
6
votes
3answers
133 views

How to find the default dateformat of a Culture

Well, I am trying to get the default date format of a culture. For example en-us has "m/dd/yyyy" , en-uk 'd/mm/yyyy'. Culture could be anything at the client machine. and Dateformat can also be ...

1 2 3 4 5 7