Tagged Questions
0
votes
0answers
34 views
Using Unicode Hindi Fonts for input in ASP.Net pages
I have tried almost everything available on Google to make Unicode Inputs work in ASP.Net pages. No success yet.
A non-unicode font like "Kruti Dev 010" works for taking Hindi Inputs. But when I use ...
0
votes
1answer
12 views
How to have website think you're visiting from a different country?
I can test cultures well enough e.g. es-US or fr-CA but the .NET framework has a built in class called System.Globalization.CultureInfo which I believe is returning wrong values as I'm visiting from a ...
0
votes
0answers
21 views
ApplyResources to all controls child
I have a Winform with this function to change the current culture:
private void ChangeUILanguage(string twoLetterISOLangName)
{
CultureInfo ci = new CultureInfo(twoLetterISOLangName + "-CA");
...
1
vote
0answers
33 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
3answers
47 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
1answer
89 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 ...
2
votes
1answer
60 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 ...
-1
votes
1answer
109 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 ...
1
vote
1answer
46 views
How do I resolve which locale to use if the client requests “en”, but I only have country specific locales?
I'm working with a SOAP integration standard that includes localized vocabulary files. Basically, any text field can have a language/country code included with it.
<RoleName>
...
1
vote
0answers
152 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 ...
2
votes
0answers
93 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 ...
0
votes
1answer
57 views
culture locale make up
The following is the culture locale for Belgium with the french language: fr-BE
fr is the Two Letter ISO Language Name
But what is the correct term/name for the "BE" aspect of the culture local?
1
vote
1answer
123 views
Trouble With Static UICulture Setting and Implicit Localization
I’m playing with implicit localization on my Win7 box via VS2010 and something doesn’t quite seem right. I have a trivial page where I set the resourceKey of my GO Button to “bnGO”:
<%@ Page ...
0
votes
2answers
415 views
How to globally set the culture in a WPF application (Windows XP)?
I have a WPF application that uses 3rd party controls (like http://navigationpane.codeplex.com) which also provide translated UI (German in particular, which is the default and only language of my ...
1
vote
0answers
127 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 ...
0
votes
1answer
1k views
Manually set UICulture in ASP.NET
I'm using .resx files to localise a website. Normally the appropriate file is selected automatically, but I'd also like to allow to select it manually. To do that, I store a field in the database. ...
1
vote
1answer
394 views
Culture issues in ASP.NET MVC 3
I want to display multiple languages and UI cultures on my website. I have enabled the IIS 7 flag which picks up culture from the browser automatically as so:
<globalization
...
0
votes
5answers
1k views
Format a date in label regardless of culture
In my ascx page i have :
<tr>
<td class="lbl">Geboortedatum</td>
<td class="lbl">:</td>
<td class="data">
<asp:Label ...
1
vote
0answers
211 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 ...
3
votes
1answer
2k views
MVC3 display date + short time without format string
In MVC you can do
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy h:mm tt}"]
This would translate to
10/12/2011 1:30 PM
Which is correct for a en-US user
But lets say a Swedish user visits ...
4
votes
1answer
742 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
1k views
RadGrid localization
I know that RadGrid and other RadControls have Culture property which is demonstrated everywhere on telerik web site. But is there a way to force all telerik controls to use
...
1
vote
2answers
154 views
asp.net localization question
I have two resource files:
Resource1.resx and Resource1.es-mx.resx
The default system culture is en-US.
<%@ Page UICulture="es" Culture="es-MX" %> --> still get English version (setting ...
4
votes
2answers
1k views
A less ugly way to localize DayOfWeek?
using System;
namespace Server.Custom.Extensions
{
public static class FriendlyExtensions
{
public static string Friendly(this DayOfWeek day)
{
if (day == ...
1
vote
1answer
160 views
Silverlight ignoring CurrencyGroupSeparator
Thread.CurrentThread.CurrentCulture = New CultureInfo("sv-SE")
Thread.CurrentThread.CurrentUICulture = New CultureInfo("sv-SE")
Thread.CurrentThread.CurrentCulture.NumberFormat.CurrencyGroupSeparator ...
6
votes
3answers
466 views
c# : In a dotnet class is there a property that states if the “Current” culture is actual the default culture?
Is there a property in some class that can tell me if the current culture is actually the default culture.
Similar to how localization works with winforms. It states in a form if the language is ...
1
vote
1answer
629 views
How retrieve neutral language resource when multiple resource files for different languages exist?
I have multiple resource files to support different languages. The user is presented with resources in his preferred language. Additional logging is being done to an application log, to which I would ...
6
votes
3answers
2k views
Loop through embedded resources of different languages/cultures in C#
One level up from this question, what would be the way to store all (and loop through) available resources and associated cultures, to allow user selection of a specific culture?
Further explanation:
...
0
votes
3answers
275 views
Writing flat file US Culture, whether Assembly is loaded into diffrent culture
I have a class library that read a flat file written from a Delphi legacy application then process the data and writes back the flat file.
Problem comes when user have different culture of OS and ...
0
votes
1answer
424 views
Localize Windows Service
I want to Set Culture for Windows Service that I developed. Can someone recommend me a good read for or how to go about it.
So far I have I Tried to do the Following OnStart()
Dim oCultureInfo as ...
1
vote
1answer
376 views
change asp.net mvc2 site culture (Model Validation Fails with Non-US Dates)
I have an asp.net mvc2 app that issue Validation errors on Europe style dates (dd/mm/yyyy)
I've found that the CurrentUICulture is en-us.
how can I change it permanently and to all the app to be like ...
2
votes
1answer
357 views
VB.NET localization, detect untranslated text
I'm working on a project, where the localization is mostly done using resource files/cultures. If a translation does not exist for the language, the default language is used.
I recently received the ...
0
votes
1answer
405 views
Silverlight: How to mantain the same localization for all countries
I need to know how to format a given number (or date, or whatever)
always italian language, no matter in what country the client is...
Example:
<TextBlock Text={Binding Price, StringFormat=C2} ...
3
votes
2answers
500 views
Localizing WebForms without excessively using meta:resourcekey
I was just given a project that needs to be localized.
I just ran into meta:resourcekey and how it's used in conjunction with local resource files.
My question is: do I have to do it this way?
...
1
vote
1answer
643 views
How to convert en-gb to en-us (Arithmetic overflow error converting expression to data type datetime)
Arithmetic overflow error converting expression to data type datetime. The statement has been terminated.
The culture of my site is en-gb (18/10/2010)
The culture of my db server is en-us ...
1
vote
3answers
2k views
How to prevent Thread.CurrentThread.CurrentCulture to switch to the default browser value after setting it manually?
In my current application I want to implement ASP.Net localization with global resources. I have the problem, that after changing the CurrentThread.CurrentUICulture and CurrentThread.CurrentCulture ...
1
vote
2answers
228 views
How do you implement a culture-specific address form using ASP.NET MVC?
We currently have a WebForms control with an update panel. The code-behind contains logic to show/hide fields based on the selected country. This is fine for WebForms, but we ware moving to MVC, and ...
2
votes
1answer
211 views
How to see resource file content in Visual Studio when created pro programmatically
I created a resource file programmatically. File got created successfully. But when I tries to open it in Visual Studio or notepad it shows me some encoded characters. I was expecting to get an XML.
...
5
votes
3answers
4k views
Change culture of Silverlight application
I am working on a Silverlight app at the moment. I have a few datagrids/textblocks where I use standard binding to show values, some of which are dates. e.g.
<sdk:DataGrid ...
0
votes
1answer
74 views
For a class to use CultureInfo.CurrentCulture, it has to have a context correct?
If a class library method references CultureInfo.CurrentCulture, the calling client has to be running with a HttpContext correct?
1
vote
4answers
312 views
what does setting the current thread's culture code do?
what is the result of setting the current thread's culture code?
I understand if I use the resource file it will pull label's/strings from the .resx file.
What else? Will it effect my date/money ...
6
votes
1answer
263 views
case insenstive string replace that correctly works with ligatures like “ß” <=> “ss”
I have build a litte asp.net form that searches for something and displays the results. I want to highlight the search string within the search results. Example:
Query: "p"
Results: ...
0
votes
1answer
521 views
SharePoint 2007 Force Culture and UI Culture
i'm developing a sharepoint portal, and i want to force a portal culture to 'pt-PT', i already installed the moss and wss language packs and i changed the web.config too with the following statment: ...
2
votes
2answers
137 views
Is there any way for getting the direction of writing in specific culture? [duplicate]
Possible Duplicate:
Is there any way to determine text direction from CultureInfo in asp.net?
I want to get writing direction of any culture that user select in my application. for example ...
5
votes
2answers
775 views
If you have an application localized in pt-br and pt-pt, what language you should choose if the system is reporting only “pt” code?
If you have an application localized in pt-br and pt-pt, what language you should choose if the system is reporting only pt code (generic Portuguese)?
This question is independent of the nature of ...
4
votes
2answers
2k views
Change language at runtime
How to change language at run time in .net ? It is possible?
(i.e. English to Hindi or any other language.)
in desktop application...
0
votes
2answers
474 views
Is 'culture' (eg. es-MX, en-US) meant to localize website -content- or -appearance-?
is the concept culture (as with .NET CultureInfo) to be used solely in localizing appearance of a website (language, date- and numberformatting etc.), or can it be used for localizing website content ...
0
votes
1answer
2k views
Override culture when using GetGlobalResourceObject or GetLocalResourceObject in ASP.NET
I've implemented localization in this ASP.NET project using resource files and that's working as expected.
But there is one situation where I have to display the whole page in one language and then a ...
15
votes
5answers
24k views
Set Culture in an ASP.Net MVC app
What is the best place to set the Culture/UI Culture in an ASP.net MVC app
Currently I have a CultureController class which looks like this:
public class CultureController : Controller
{
...
1
vote
1answer
1k views
Click Once Deploy/Setup Project
im getting the following errors when i set ProjectProperties->Publish->Options->Publish Language to German:
Warning 1 Could not match culture 'de-DE' for item 'Windows Installer 3.1'. Using culture ...