Tagged Questions
2
votes
0answers
23 views
How can I stop ResourceManager from defaulting to my current culture if a key is not found
The question is pretty self-explanatory, but here's a sample reproduction case.
I have three resx files:
Translations.resx
Has code generation enabled and no key-value pairs
...
1
vote
1answer
38 views
Correct Resx file not being chosen for non-base languages
I have a working resx localization setup with Microsoft MVC4 for base languages such as English, French, German, etc., but I'm trying to extend it to more specific languages such as ...
1
vote
1answer
49 views
Access resource string for specific (non-current) culture
I have an ASP.NET MVC4 application with two resource files in a "Resources" folder, like so:
Project
Resources
Resources.fr-CA.resx
Resources.resx
I set the current culture based on a user ...
0
votes
2answers
74 views
C# Resource Files
My resources are stored in an assembly of their own, and I have a reference to that assembly in my web app. I am able to access resources in two different ways - via compiled constants or by using a ...
0
votes
2answers
338 views
MVC4 localization. Accessing resx from view
In my view I would like to access resource strings from the specific local resource on that file.. Just as you know it from web-forms:
(string)GetLocalResource("Title");
Painless and smooth. The ...
0
votes
1answer
46 views
wp7 quickly localizing a ton of strings in app
I have an app where I am trying to localize about 100 strings into 15+ languages. When it comes to using resx in visual studio, I can only copy/paste into one cell at a time. Naturally, I don't want ...
4
votes
1answer
65 views
Is there any .NET standard for dealing with localization yet allowing the users to customize the texts?
We're building an ASP.NET MVC application that is yet not localizable with a lot of Data Annotations DisplayAttribute with hard-coded strings and hard-coded message strings all over the code.
Now we ...
4
votes
6answers
351 views
.NET localization tools [closed]
Are there any tools, that ease work with localization in .NET? I mean work with resx files in VS is done pretty ugly from a developer point of view. For example, if I need to add a string to ...
1
vote
1answer
283 views
MVC3 using .resx for localisations of images
I have been using .resx files for localisation of text in my MVC3 app quite happily for a while now following these instructions, but have now got to a point where i need to do localisation of images ...
0
votes
0answers
115 views
Change language at runtime with different sort of forms (SplitContainer, MenuStrip…)
First of all my goal: I want to change the language of my whole GUI at runtime, which is IMHO not that big deal with things like the ResourceManager and the .resx Files. You can find many examples ...
0
votes
1answer
141 views
How to determine the language of a RESX file
I've read something from the web, and it makes me confused.
The .resx file (comes from any applications) can be:
+ 'Language' + '.' + + '.resX' (ex: Word.fr-CA.resx)
or just "Word.resx"
Then ...
0
votes
3answers
540 views
Run my C# application in different language
I have an application which I am trying to run and display in a language other than English which is the default language. I have assigned all text to use property files and have the relevant property ...
2
votes
0answers
161 views
Localization using resource files
I have a problem with resx based localization.
It's an ASP.NET MVC3 project. I have two assemblies: Web and Resource. Web contains all MVC related stuff, and Resource contains resx files for ...
0
votes
1answer
557 views
Localization resx files in separate assembly?
I have a scenario where I need to share localization between multiple project types (web front end, WCF, windows service, etc) so my idea was to create a localization assembly where I could embed all ...
2
votes
1answer
156 views
Resource(resx) Custom helper
I'm a first time poster long time listener and I would really be interested in reading about some of your localization architectures and, eventually, to get feedback on our approach (as follows).
I ...
0
votes
2answers
263 views
How to use resource file as data source for an editable listview?
My client wants to take control over the text contents on the website. And he wants an interface where he can see a and edit the resource file text.
I was successful showing the contents of resource ...
1
vote
1answer
288 views
localizing asp.net controls with custom classes without resx file
I have only 1 Label control in my test page called WebForm1.aspx.
<asp:Label ID="Label1" runat="server" Text="Label"
meta:resourcekey="Label1Resource1"></asp:Label>
I would like to ...
1
vote
3answers
637 views
XAML Resx localization not working as expected
I'm attempting to use a resx file to localize some strings I am using in a XAML file. I've looked around at other documentation on the web, and they all seem to recommend a two part process:
Add a ...
2
votes
1answer
70 views
Hyphens (dashes) in resx resource file not rendering IE7/8
I'm working on an MVC project which uses localisation via resource files, all other foreign characters seem to render no problem in Internet Explorer 7 & 8, except for hyphens.
It just displays a ...
0
votes
1answer
143 views
Monodroid and resx localisation does not work
I have a monodroid application that uses a .net library that contains normal .resx localisation. So i have to files CoreResources.resx and CoreResources.de-DE.resx
However the program always uses the ...
0
votes
2answers
131 views
Generating resource files
I have a default resource file (resx) for my VB.NET control. I want to generate resource files (resx) for Russian and some other languages based on this. How can I do that?
1
vote
1answer
181 views
Wpf localization without additional folders
I create a WPF application and want to add several languages for it. Localization is created via resx-files (smth like Labels.resx and Labels.en-US.resx). After project building a new folder bin\en-US ...
0
votes
1answer
213 views
Mixed font types in resx file for localization
I am doing some localization and have bumped into a problem that I cant seem to figure out.
I need the following displayed: tcpCO₂ (where tcp is in italic)
<Italic>tcp</Italic> CO₂
I ...
0
votes
1answer
295 views
Automatically adding missing resx files in visual studio
I have a solution which has approximately 30 win forms in it. These forms need to be localized for three other languages. I have written an application which generates resx files for these languages ...
2
votes
1answer
244 views
Get WinForms app to apply localisation set in user control that exists in another class library
I have a Windows Form Application Project that references a class library containing user controls.
The developer of the class library has set localisation in the same way I do (select a culture from ...
0
votes
1answer
678 views
.resx files not working with localisation
Here's a snippet:
<ext:MenuItem runat="server" ID="miMenuDetails" Text="Show details" Icon="ApplicationForm" meta:resourcekey="miMenuDetails">
I'm trying to localise it using .resx files, but ...
0
votes
0answers
526 views
ASP.NET User Controls ignore resx files in App_LocalResources
I have a problem regarding Asp.net User Controls ignoring localized Resource Files in the App_LocalResources folder. My folder structure looks like the following:
within my Web App:
"Pages" folder
...
4
votes
1answer
434 views
How to serve resx file in ASP.NET?
How can i serve a locale appropriate .resx file to a http client in ASP.NET?
e.g.
GET /App_LocalResources/MeshModdler.resx
Background
i have a client-side binary that needs to ask a web-server ...
1
vote
2answers
459 views
.net resx files and localization
I think I get it, but a couple of aspects are confusing me. Say I want strings localized for MyApp in Germany, Spain and the USA.
MyApp.resx
MyApp.de-DE.resx
MyApp.es-ES.resx
MyApp.en-US.resx // ...
0
votes
1answer
87 views
Changing application culture changes the capitalization of resource strings
I have an application which parses xml documents. I store the expected xml tag names in an RESX file. The first letter of the tag name is always lowercase. This works fine (and has done for several ...
0
votes
1answer
480 views
Asp.Net Mvc localization with embeded resx files
Hi we are making a site in Asp.Net Mvc which is localized with embeded resx files.
On the nightly server we have the site showing in english but switching to german does not work where as locally it ...
0
votes
1answer
507 views
Multiple Resource Files .resx in one project at runtime
I am using silver light 4 and for XAML text blocks binding i want to use multiple resource file but unable to implement it. one link is supporting the concept of not having multiple resource file of ...
2
votes
1answer
450 views
Getting Visual Studio to build pseudo-language (qps-ploc) satellite assemblies
I've generated pseudo-localized versions of an app's resource files (for example Order Summary and Payment is localized as [[[[[Òŕd̂ër̊ S̀úm̂m̈år̀ý ân̈d̊ P̀áŷm̈e̊ǹt́]]]]]) so that we can ...
0
votes
2answers
570 views
How to use neutral language in Windows Phone
I am facing the following issue:
I have translated my application into different languages using resx files. I want to use the same resx files in other apps as well.
For different apps, I should be ...
4
votes
1answer
310 views
Main assembly versus Satellite assembly problems when fetching both XAML and RESX resources in C# .Net
In a localized program containing a culture neutral XAML file, some culture neutral icons and localized strings, how do you organize these different resource types so they can all be found? No matter ...
3
votes
1answer
502 views
Localization in MonoDroid
My app is localized using the standard .NET RESX methods (ie. String.fr.resx, Strings.de.resx etc.) works great under Windows Phone.
I am porting to Android using MonoDroid and I do not see the ...
1
vote
2answers
845 views
Windows forms localization using *.resx and Common.resx
Lets say there are bunch of forms: A.cs, B.cs, C.cs...
Each form is localized - A.resx, A.NL-nl.resx, etc.
These forms contain some specific labels and some common in all forms used labels. So ...
0
votes
1answer
80 views
Localization glossary in .NET projects to reuse translations
We have a growing collection of .NET Web applications that have been localized in a few different languages over the years. Often there is a need to localize updates, new applications or new features, ...
0
votes
1answer
239 views
MVC3 localization code generator
I am trying to add two localization resource files into my MVC3 App_GlobalResources.
I add Global.resx and then Gloabl.fr.resx. However, only the first one generates code in .designer.cs. The second ...
9
votes
4answers
897 views
.resx vs database vs custom solution for providing Localization/Globalization
At my office, we have had a long-standing debate about Localization/Globalization and how to handle it. One side pushes for the Resource (.resx) file route built in to ASP.NET, one side pushes for a ...
2
votes
1answer
172 views
Programatically finding if an alternative translation exists or not in a .resx file
I have a project that has translations in multiple .resx files.
e.g.
Admin.resx
Admin.fr.resx
Admin.it.resx
Admin.de.resx
Does anyone know of a way to programatically find out if a translation ...
0
votes
1answer
195 views
When should I use Satellite Assemblies when it comes to localization? And When should I use Resources Files(.resx)?
I'm creating a windows appplication in which I wanna do some localization. That application will also use a DLL that might use a different language(CultureInfo) than the main application. Which one ...
1
vote
2answers
152 views
.NET windows WPF LOCALIZATION
I am new to localization ... ..I initially created a resource file(.resx file) then used resgen command to generate corresponding .resource file.. it got created.. then I used al.exe to generate ...
2
votes
2answers
881 views
User Controls not reading Resource Files… Organize Resource Files Properly on WebForms .NET?
I'm working on a project right now which has aspx files in the root folder and one folder named "UserControls" that contains all the ascx files. I had to localize it so I used the App_GlobalResources ...
1
vote
2answers
656 views
External .resx files during runtime
What options do i have, if i want to localize WPF applications. I would like to have option to fill .resx files for languages, and that works. But I need to get language during runtime from files.
...
0
votes
1answer
452 views
Reading RESX Content from the loaded DLL and NOT the RESX file
I need to be really clear on this. I am not trying to read the myfile.resx file. I am trying to read the content from the myresourcenamespace.myfile.dll.
My hopes is to create a dictionary of my KVPs ...
0
votes
1answer
462 views
.NET Resource File in different project: How to modify post build?
I have a ASP.NET website that references another project with contains as resx file. This file is currently set as an "Embedded Resource" and "Do not copy" to the output directory (although I can ...
8
votes
4answers
3k views
Best alternatives to using Resource files in .net site
In the past I have used asp.net's built in Resource files for handling localization. It's worked pretty well and we find it easy to use and maintain in our business.
There is one big drawback though ...
2
votes
1answer
658 views
How to write all three values using the resxresourcewriter?
http://msdn.microsoft.com/en-us/library/system.resources.resxresourcewriter.aspx
In this link and others like it, I see code to write in the "name" and "value" but not the "comment". I use the ...
2
votes
1answer
916 views
Asp.net localization - override which resx file the page will use
Trying to sort of combine themes and localization... what i am doing:
Localizing A.aspx, creates:
App_Localresources\a.aspx.resx
App_Localresources\a.aspx.resx.fr
...
However, i want to add more ...
