Tagged Questions

15
votes
5answers
13k views

Global resource vs. Local resource in ASP.NET

We use resx files to localize our web applications. We usually create local resx files (that map to a specific page) when only one page uses a certain phrase, and a global resx file when more than one ...
10
votes
5answers
4k views

How do you localize a database driven website

I've been playing with the .NET built in localization features and they seem to all rely on putting data in resx files. But most systems can't rely on this because they are database driven. So how ...
10
votes
7answers
967 views

What do I need to know to globalize an asp.net application?

I'm writing an asp.net application that will need to be localized to several regions other than North America. What do I need to do to prepare for this globalization? What are your top 1 to 2 ...
9
votes
4answers
336 views

How to correctly uppercase Greek words in .NET?

We have ASP.NET application which runs different clients around the world. In this application we have dictionary for each language. In dictionary we have words in lowercase and sometimes we uppercase ...
8
votes
2answers
597 views

When should I use a Localize control instead of a Literal?

I recently became aware of the System.Web.UI.WebControls.Localize control in a lab for the ASP.NET 4.0 MCTS certification course. The purpose of this control is unclear to me. In the examples, the ...
8
votes
4answers
182 views

Strategies for localizing large amounts of text in .NET applications

I'm working on an fairly large ASP application that will be fully localized. I'm using the standard named resx approach in satellite assemblies, with fallbacks (that is, es-MX, es-CL and fallback ...
8
votes
1answer
652 views

Is there any way to determine text direction from CultureInfo in asp.net?

I have looked around, but I have been unable to figure this out, some languages are read and written from right to left, instead of left to right. It seems like a no-brainer to be able to get the ...
8
votes
5answers
2k views

ASP.NET: localize content with mixed HTML formatting

In my application I have paragraphs with mixed static text and HTML formatting and links. I'm looking for a good localization solution that keeps resources decoupled from markup. Let's say we have ...
7
votes
3answers
1k views

Web-based .resx file editor?

I'm working on a SharePoint site, and the site eventually needs to be localized to many different languages. We can use resource files, but we'd like for the translators to be able to update those ...
7
votes
3answers
4k views

Javascript Date Localization

I'm working with an ASP.NET app with localization and globalization. I'm having some difficulty understanding how to get the Date() function in javascript to work properly given the user's ...
7
votes
7answers
1k views

ASP.NET Localization with singular and plural

Can I with ASP.NET Resources/Localization translate strings to depend on one or other (the English grammar) in a easy way, like I pass number 1 in my translate, it return "You have one car" or with 0, ...
6
votes
1answer
110 views

ASP.NET MVC pseudo-localization

Is there any tool I can use to perform pseudolocalization on an ASP.NET MVC app (using the Razor view engine) in order to help localizability testing?
6
votes
3answers
265 views

What is the recommend way to create a custom culture and associated resource files for a specific Client?

I have client that wants to specifiy their own version of localized content for a subset of my string resources. For simplicity here is basic example: Lets say I have 2 localized strings (showing ...
6
votes
2answers
2k views

Subfolders in App_GlobalResources (ASP.NET)

Is it possible to put resource files (.resx) within subfolders inside App_GlobalResources? For example: /App_GlobalResources/someresources/myfile.resx ...
6
votes
5answers
2k views

Localize Images in ASP.NET

A couple of years ago, we had a graphic designer revamp our website. His results looked great, but he unfortunately introduced a new unsupported font by the web browser. At first I was like, ...
5
votes
2answers
318 views

ASP.NET: explicit vs implicit localization?

To my mind the advantage of implicit localization over explicit localization is that if you have more than one property to localize for a given control, it's a more economical syntax. In the case ...
5
votes
2answers
328 views

Changing where a resource is pulled during runtime?

I have a website that goes out to multiple clients. Sometimes a client will insist on minor changes. For reasons beyond my control, I have to comply no matter how minor the request. Usually this isn't ...
5
votes
7answers
2k views

How to translate website in another language?(ASP .NET , c#)

I have developed a large business portal. I just realized I need my website in another language. I have researched the solutions available like Used third party control on my website. (Does fit in ...
5
votes
1answer
720 views

Implementing Multilingual web site using ASP.Net

I am implementing an multilingual web site using ASP.Net. The languages are English,French and Arabic. Please note that Arabic's direction is RTL. What is the best way to implement the multilingual ...
5
votes
1answer
479 views

Date format broken in .net 4.0 for uk format

I'm in the process of converting a couple of sites up to .net 4.0 and I seem to have a problem with regionalisaion of dates. This code: Date.Today.AddDays((Date.Today.DayOfWeek - 1) * ...
5
votes
1answer
526 views

Can I combine local resources in satellite assemblies?

I have a lot of local resourse files /Controls/App_LocalResources/SomeControl.ascx.resx, /Pages/App_LocalResources/SomePage.aspx.resx, etc. I want to add another language and I do not want to go ...
5
votes
3answers
864 views

Custom Culture for client specific verbiage?

Looking for some advice on the best way to implement localization along with client specific jargon on a asp.net site that will be used by multiple clients. For example the labels on a form must vary ...
5
votes
3answers
1k views

ASP.Net Time Localization

I'm working on a site that lets users add calendar entries, on the main page all users can then see these entries with some text saying how long until those entries are current for example Entry 1 : ...
5
votes
4answers
2k views

Best practices for ASP.NET web application localization

I'm developing a web application that will need to be localized to English and Portuguese (and possible more languages later). I'm aware that the .NET Framework offers full support for UI ...
4
votes
3answers
148 views

ASP.NET MVC 3 jquery : French accent characters are showing as #233 characters on screen

I have ASP.NET MVC 3 application having resource files in english and french. A text 'Sélectionner la pharmacie' is stored in a french resource file. When the value is read from resource files with ...
4
votes
1answer
204 views

ASP.NET localization: Changing resources without restarting the application?

I have the requirement that the end-user can change localized resources and the changes should be visible in the application without the need to restart the application. Update to clarify the ...
4
votes
2answers
134 views

Msdn style address URL localization possible implementation

I am trying to come up with idea how to implement msdn like localization based on address string http://msdn.microsoft.com/en-us/library/system.string.aspx ...
4
votes
1answer
96 views

ASP.NET localization

When localizing an ASP.NET app (MVC or webforms, does't matter), how do you handle HTML strings in your resource file? In particular, how do you handle something like a paragraph with an embedded ...
4
votes
2answers
401 views

ASP.Net Localization (Satellite assemblies vs DB with custom ResourceProvider)

I am looking for the best solution to make it easy to add new languages to an asp.net website without deploying/building the existing code base. From what I have researched, it seems that you can ...
4
votes
1answer
216 views

Translation of a string in code behind in a localresource file

I created local resource files with VisualStudio (.resx and .fr.resx) for each page. All the text of controls in the .aspx page can be translated now. But can I also translate strings in my code ...
4
votes
3answers
1k views

DisplayAttribute: No good for resources in App_GlobalResources

This question applies to all projects really, however my demonstrating environment is an MVC3 app, hence that tag. I wrote a DisplayNameAttribute-derived class for our MVC2 projects, like so many ...
4
votes
1answer
1k views

Create pdf from persian html file by ITextSharp

I use ITextSharp library to convert html to pdf. My users use persian language sentence in her/his html files, So this library can't convert persian word. For resolve this and right to left problem i ...
4
votes
4answers
272 views

Is it possible to localize the appSettings information in web.config file?

I have something like this in mind: <appSettings> <add key="ConfigName" value="configuration" culture="1033" /> <add key="ConfigName" value="konfiguracja" culture="1045" /> ...
4
votes
3answers
244 views

Many ascx-to-one ascx.cs bug in VS2008

I'm developing second language support for the site. So I made duplicate .ascx and .aspx files for existing ascx.cs and aspx.cs Most of the time everything works fine.. but suddenly I'm getting: ...
4
votes
3answers
2k views

Is it possible to use data annotations for LabelFor,ValidationMessageFor, EditorFor with strongly typed resources?

I would like to use DataAnnotations in my ASP.NET MVC application. I have strongly typed resources class and would like to define in my view models: [DisplayName(CTRes.UserName)] string Username; ...
4
votes
5answers
2k views

How to use ResourceManager in a “website” mode?

I am trying here to do a manual translation for the application I am working with. (There is already a working LocalizationModule but it's working dodgy, so I can't use <asp:Localize /> tags. ...
4
votes
2answers
564 views

Why should I use global resources?

in some projects (web application projects) I'm using global resource files. (Stored in the App_GlobalResources folder) pro: Really easy to use: e.g. in the markup Property="<%$ ...
4
votes
1answer
417 views

How can I use an image or icon resource from global resource file in an asp:Image control to set the ImageUrl attribute?

How can I use an image or icon resource from global resource file in an asp:Image control to set the ImageUrl attribute?
4
votes
3answers
621 views

Need advice on ASP.NET localization - strings stored in a database & displayed in a gridview

I am looking for some advice on localization. I have an app that has been localized in the usual fashion (i.e., .resx files), which handles about 95% of the strings. However, I still need to ...
4
votes
2answers
631 views

ASP Themes: Skin Localization

Is any way to localize text in .skin file (asp.net theme)? Thanks
4
votes
4answers
410 views

What tools are available for adding Localization to an ASP.NET project?

An ASP.NET project I am working on will be adding localization in the next version. As we pull text from our ASPX pages into resource files and other data into database tables, what tools might we ...
4
votes
3answers
2k views

Why is this appearing in my c# strings: £

I have a a string in c# initialised as follows: string strVal = "£2000"; However whenever I write this string out the following is written: £2000 It does not do this with dollars. An example ...
4
votes
2answers
1k views

How to implement localization in web.sitemap

Can you explain how to implement localization in web.sitemap please?
3
votes
1answer
59 views

Globalization, Localization, Internationalization: Add Languages (French, etc.) / asp.net 4.0 / for dummies

I'm not a programmer, but I have a little company website that I developed with MS Visual Web Developer 2010 Express (not Visual Studio), so I'm not completely inept. I want to add French and Spanish ...
3
votes
1answer
143 views

ASP.NET localization: Do changes in resx files results in sessions being killed?

My observations in my development setup: I have a running ASP.NET application that displays localized resources from resx-files. I change the resx-files while the app is running Upon page refresh, ...
3
votes
3answers
467 views

asp.net read from other local resource

I have local resources files like on screenshot: How can I read local resource data of AddCustomer page in Default.aspx page? Thanks!
3
votes
1answer
122 views

Is there a way to set custom language strings for the ReCaptcha ASP.Net user control?

I'm using the ReCaptcha ASP.Net user control and I was wondering if anyone is aware of a way of setting custom language strings for the control from markup. I know how to do it if I'm not using the ...
3
votes
2answers
469 views

ASP.NET - What's the best practice for reading localized strings from XML file?

I got an assignment to localize the website and to store all string values into the XML file. The reason for that is to let the sys. admin to change the localized values himself by editing XML file. ...
3
votes
1answer
389 views

Is it safe to use an HttpModule for localization?

I'm considering making use of an HttpModule for localization purposes (based on the example in this article) - but I'm curious, is this safe? Here's the code, for reference: public class ...
3
votes
3answers
248 views

How to localize the Controller names and actions in an ASP.NET MVC application?

I'd like to fully localize my ASP.NET MVC application, and while there are many articles that deal with the various pitfalls of ASP.NET MVC localization, none of them deals with an aspect that I want ...

1 2 3 4 5 8