Culture is the combination of language and peculiarities of geographical location (like en-UK, en-US, de-AT, de-DE, fr-BE)
3
votes
1answer
718 views
Orchard multi-site localization
Is there an easy way to associate a culture to a Tenant in Orchard. The aim is to build a website with a subdomain (or a domain) dedicated to a specific culture. This is something quite easy to ...
2
votes
1answer
44 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 ...
2
votes
1answer
280 views
Why does an ASP.NET web application initially use the OS culture instead of the Internet Explorer 8 language when launched from Visual Studio?
I have an ASP.NET page that looks like this:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="culturetest4webapp._Default" %>
<!DOCTYPE html PUBLIC ...
2
votes
1answer
392 views
Is there a way to compare two macros in Kentico?
I have a disclaimer message that I only want visible when the page being viewed hasn't been translated into the language that has been selected for the site.
I'm using a static text webpart for the ...
1
vote
1answer
494 views
How to display Client Time Zone & TimeZone Abbrevations?
I am creating a asp.net 2.0 website. It display all the registered candidate with registered date. I am storing all the date in database as UniversalDate, Now want to display the date based on client ...
1
vote
1answer
877 views
Can I set the culture of a silverlight application from a page class?
In my SL application, I have a page that connects to a web service to retrieve some culture information such as date formats. As this information is not known at the instantiation of the silverlight ...
1
vote
1answer
318 views
New thread in ASP.NET runs in different culture
I have System.Timers.Timer that performs some operations based on schedule. When timer rises event, the threads culture is 'ru-RU' differ from culture in my web config.
<globalization ...
1
vote
1answer
687 views
C# KeyDown alphanumeric culture dependent !
How to determine if the pressed Key is an alphabetical key
regard to the culture specific keys:
e.g.:
'[' = 'ú' = 'ü' ... is the same key but with different value on different language Keyboards.
...
0
votes
1answer
15 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 ...
0
votes
1answer
34 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
1answer
56 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
1answer
30 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
49 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
1answer
69 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
143 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 ...
0
votes
1answer
617 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 ...
0
votes
1answer
679 views
telerik RadDatePicker culture
I have a simple telerik:RadDatePicker.
<telerik:RadDatePicker ID="dpDueDate" runat="server" Culture="English (United States)" Width="180px" BorderStyle="None">
<DateInput ...
0
votes
1answer
148 views
Time format in asp.net page
i use telerik RadDateTime control for insert date and time into one table of SQL Server DB. The problem is about what i see in browser:
when my grid is bind to the DB, it shows the cell containing ...
0
votes
1answer
162 views
Setting Culture Info for Windows Forms Application
I have packaged and deployed a Windows Forms application to our server. Now to my horror it is failing, which I realized is due to Regional and Language settings. The date format I am getting is in US ...
0
votes
1answer
136 views
PowerShell running office app in different culture problems
Here was described how tor run script in different culture
Using-Culture
But it dos not work for com objects.
Example:
If you create excel file with "=1/3" in "A1" cell and try to get value of it
...
0
votes
1answer
210 views
Win32/.net: How do I determine the currently used language/localization/culture of a process?
My first attempt was using the System.Diagnostics.Process.ProcessName to find the executable and System.Diagnostics.FileVersionInfo.Language to determine the language.
This does not work for e.g. ...
0
votes
1answer
542 views
C# Writing english numbers in file when windows use arabic UI
My windows use arabic language.
When i write numbers in a file it appears in arabic format,
but i need to write in english format,
although i use this two lines before writing to file:
...
2
votes
0answers
30 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, ...
2
votes
0answers
90 views
French canadian in SharePoint 2010 control with Regional Settings?
is it possible to override the way a Literal or Localize control determines, which language should be used for localization?
We are currently in need to support fr-FR and fr-CA in two different ...
1
vote
0answers
18 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
...
1
vote
0answers
146 views
SQL Server datetime culture (localization) headache
SQL Server 2005. Visual Studio 2010. ASP.NET 2.0 Web Application
This is a web application that supports multiple languages, one of them is Korean. I have “langid” in the query string to ...
1
vote
0answers
56 views
different date format in different dlls
I am facing the datetime format issue where in one dll the datetime format is MM/dd/yyyy and when that value is passed to another dll there it expects the value to be in dd/MM/yyyy and hence cant ...
1
vote
0answers
56 views
Determine and Change Office 2010 Culture?
I'm writing a business program for a hospital. In that every user should use specific culture and datetime witch is updated from the server. it is not VSTO app so i use Process class and track process ...
1
vote
0answers
119 views
How to prevent compiler creating appname.resources.dll for a not more localized application?
I have a winform application written with vb2010.
I changed the "Language" property of a winform of my application to german, only for testing purpose. I built the application and in my \bin\debug ...
1
vote
0answers
38 views
<asp:ControlParamenter /> and nonstandard (en-US) DateTime binding
Database date format: "yyyy-MM-dd"
C# default date output: "MM/dd/yyyy"
My date format: "dd/MM/yyyy"
How do I use the asp:SqlDataSource with an asp:ControlParameter connected to an asp:TextBox ...
1
vote
0answers
199 views
How to get rid of MissingManifestResourceException
I've spent almost 8 hours by searching for an answer on how to get rid of that freakin' exception. I have an C# application which needs to be localized to several languages. I'm using parent-level ...
1
vote
0answers
50 views
How to get muli-language (human language) intellisense in .Net
I'm creating a library (C#, .Net), but I need to distribute it to customers in multiple countries. When you add XML comments to your classes, intellisense picks up the comments out of the assembly ...
1
vote
0answers
265 views
How to force Visual Studio to sort files in Solution Explorer using culture-invariant sort
VS uses culture-variant sort for sorting files in the Solution Explorer -> in Czech, the 'Ch' digram is sorted between 'h' and 'i', and this behavior confuses me (I'd like to have my 'checkUser.aspx' ...
1
vote
0answers
676 views
Using AJAX Control Toolkits NumericUpDown Control with Comma as Decimal Separator
We are trying to use the NumericUpDown Control from the AJAX Control Toolkit, but can find no way to make it use a comma as a decimal separator instead of a point. Other controls such as the Calendar ...
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 ...
0
votes
0answers
99 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.
...
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" ...
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
0answers
145 views
Sitecore Advanced Database Crawler and Partial Language Falback
We have ADC and Partial Language Fallback both implemented in our Sitecore installs. We have identified an issue which we are hoping somebody else has come across and can help us in resolving this ...
0
votes
0answers
103 views
Culture name using underscore instead of dash
In C#, I can build resx files for various languages/cultures using the standing ISO naming convention (i.e., Strings.resx, Strings.en-GB.resx, Strings.fr.resx). When I compile, I get a corresponding ...
0
votes
0answers
75 views
using CultureAndRegionInfoBuilder to create a custom culture
I am using CultureAndRegionInfoBuilder to help create the custom CultureInfo. I have some questions around using this.
For example I create a custom culture "en-RU". Is it possible to set up on the ...
0
votes
0answers
36 views
Nuget downloading only dlls
I'm developing a wpf application using blend behaviors downloaded with nuget. Package contains resources for all sort of cultures, that I don't need. Is there a way to download only dlls via nuget ...
0
votes
0answers
92 views
Assembly resolve failed event fires when EF ObjectContext is created
I have found a strange thing. If you create an EF datacontext you get some assembly resolve failed events like this:
Any EF will do my sample has: var db = new NorthwindEntities();
...
0
votes
0answers
103 views
CultureInfo in SQL Server data access
I've a WCF service which works like a charm, but after adding a custom 3rd party httphandler (ELMAH) all my SQL statements which include dates fail.
The dates are in danish format (dd-mm-yyyy) and ...
0
votes
0answers
135 views
Problems setting culture for OLEDB
I'm trying to fix a program that creates a csv file using the ACE OLEDB provider.
The problem is that I can't seem to be able to set the locale for the provider.
This is my connection string for the ...
0
votes
0answers
35 views
System culture/language modified after apllication instalation
I'm developing an application using C#.
When I installed the application my system culture was in English, so the application got installed in the folder "Program Files" (the folder installation can ...
0
votes
0answers
225 views
multi culture in c#
i have error in my multi culture project
error message:
Specified time is not supported in this calendar. It should be between 03/21/0622 00:00:00 (Gregorian date) and 12/31/9999 23:59:59 (Gregorian ...
0
votes
0answers
248 views
Global Resources In javascript file
To implement calture I am displying error message through javascript using global resources lang file but not get resource message in javascript file as in HTNL I got it using following syntax
...
0
votes
0answers
116 views
Inherited Language-Culture is not available in Windows XP Control Panel Regional and Language Options. But available in Windows XP
//Form load event we will populate the combo
{
CultureInfo[] cultures = CultureInfo.GetCultures(CultureTypes.SpecificCultures);
cboCultureSource.DataSource = cultures;
...