.resx files are resource lists used in .NET applications.

learn more… | top users | synonyms

0
votes
0answers
15 views

MVC4 localization strange behaviour when deployed

I have a mvc4 website localized with 2 languages. resx files are in separated project: Resources.resx and Resources.ru.resx Today I have noticed strange behaviour on localhost everything works fine, ...
1
vote
1answer
17 views

do I need to deploy .resx files for an SSRS custom extension?

When using .resx files within a VS2010 project using .NET 2.0, do the .resx files get compiled into the .dll for the project or do I need to deploy something else separately? I'm trying to ensure ...
2
votes
0answers
23 views

When using resx files, can you have variables replacing with constant values

We're working on an application that will probably change its name. What I'd like to do is have a row defined as ProductName = 'Temp Product Name' and then in other resources, something like Welcome = ...
0
votes
0answers
21 views

CSC.exe and cvtres.exe constantly running since resx changes

I've just deployed a multilingual version of our site using resx files (in a separate dll). Ever since deployment there are lots of cvtres.exe (Microsoft Resource File to COFF Object Conversion ...
1
vote
1answer
13 views

MVC3 Resource Files -Basics

I am very much new to MVC3 and wanted to know about Resource files and their usage in MVC3. Can any one give me a brief idea about basics of Resource files and their usage in MVC3 Also help me with ...
0
votes
1answer
11 views

Manage delta changes in .resx files before go live

In our web site we use .resx files to provide labels and GUI in 4 different languages (English, Spanish, French and German). A specific department is in charge to provide translations, given the ...
0
votes
1answer
24 views

Compile resx to Javascript

Is there a way to compile resx file to Javascript during build time? I found only this: Localize Strings in Javascript which is useless in my case because I have really many strings to put in ...
0
votes
0answers
19 views

Best way to automatically change text direction to “Right to Left” in a .net multilingual App

I have a .net MVC app that has recently been completed and gone live. The website is right now in English with the text all drived from the .resx files. I can certainly add a new .resx file for each ...
0
votes
1answer
17 views

Add timestamp to resource file entry

Hello it is possible to add a time stamp to the entries of resource file. It will help the translation workflow. I want to do something like this: Name value note ModDate key1 ...
0
votes
1answer
21 views

Cache resource files to improve performance

I want to cache resource files to improve performance. Are resource files actually cached? When i get a value from resources file like this: Label1.text= Resource1.String1 The resourcemanager ...
1
vote
0answers
9 views

MVC3 Resources File into culture specific folder

I'm currently developing an Web App in MVC3 with C#. Currently I am attempting to get resources file into their specific culture. I've had success when they are in the same folder Localization\ ...
0
votes
1answer
24 views

How can I use resorce for Description attribute for a property?

I have property below: [Description("Name Of Person")] public string FirstName {get; set;} is there any way to use resource for "Name of person" statement similar below: ...
0
votes
1answer
43 views

resx files not being deployed

I have a asp.net mvc4 web application. I have localized my application fully with the .resx files, with the files contained within a separate project to my main web application. When I deploy my ...
0
votes
1answer
70 views

Accessing embedded resources in C++/CLI

I've been working with C# for a while, and I'm trying to write a .NET app in C++ this time. In C# I was able to access the managed resources from the code quite easily, the name of the resource file ...
2
votes
1answer
55 views

Dictionary properties are always null despite dictionaries being instantiated

To begin with, I have two projects under the names of Components and WindowsFormsApplication5 as part of my solution (there are more, but those are irrelevant). The dictionaries I am referring to are ...
0
votes
1answer
35 views

Access denied of random Global Resources in Azure application

Whenever I run the web application, it is fine and the login screen shows. However, when I run the web application in the Azure emulator things go wrong. It cannot execute the operation "CreateFile" ...
1
vote
1answer
56 views

Invalid Resx file. Could not find a part of the path

So, I`m having a little trouble with a project, Error 9 Invalid Resx file. Could not find a part of the path 'D:\Documents and Settings\Dragoone\Desktop\HOME01\Resources\GDWG.wav'. Line 121, ...
0
votes
0answers
52 views

C# Write to .resx file

I need to write to my resx file, using user submitted values. Basically the user inputs a value, and the program has to check the resx file to see if the number exists. If the number doesn't exist, it ...
0
votes
1answer
51 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
25 views

ASP.NET inline expression Resources cannot find key

in my solution I have a project Web, which contains all the pages. I have resource file in project ProjectResources which is named MyResources.resx (and another one MyResources.de.resx) On all my ...
0
votes
1answer
84 views

asp.net CurrentUICulture and resx file

In my asp.net app I want to let user to change his profile language and then load respective resx file. I have two global .resx files: LocalizedText.resx LocalizedText.pl.resx protected void ...
0
votes
1answer
46 views

Check if all resources in .resx are used and find calls to nonexisting ones

I have a large Resources.resx file in my application and I'm accessing them with MyResources.GetString("res1"); How to check that for every entry "Entry" in the .resx file exists at least one call ...
2
votes
0answers
32 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
55 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
134 views

How to get Name by string Value from a .NET resource (RESX) file

Here's how my RESX file look like: Name Value Comments Rule_seconds seconds seconds Rule_Sound Sound Sound What I want is: Name by string Value, something like ...
0
votes
0answers
25 views

Add generated resource file into solution at runtime

I am creating resource file at run time through code its creating and displaying in resource folder but not showing in solution. But When i do it manually as add existing item, then it was working. ...
0
votes
1answer
36 views

xml:space in resource file of c# winform

I have a windows form application in that i have resource file(.resx)here i write all my error messages like below <data name="Link_Name" xml:space="preserve"> <value>The Link Name ...
0
votes
0answers
41 views

Add a resource to a generated EXE file

I have an issue with adding a resource file to my generated exe file in runtime. I used Microsoft.CSharp.CSharpCodeProvider and System.CodeDom.Compiler.CompilerParameters to generate an exe file in ...
0
votes
1answer
63 views

Method in xaml.cs to change text in xaml from localized resx resource

I have a WP7 application displaying 3 thumbnails at the bottom and a big one at the center of the screen. Upon clicking on each thumbnail, a method in the xaml.cs file is triggered replacing the ...
1
vote
1answer
93 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
0answers
30 views

GetObject for meta:resourcekey not being called in IResourceProvider

I need to move a site's .resx files to a database and implement a Custom Resource Provider using the IResourceProvider interface. I have followed the example at: ...
0
votes
1answer
142 views

dynamically add values to resources (C#)

I want to add values to the resources dynamically through codings(C#). My below coding runs without any error but the values are not getting added to the resource file. protected void ...
0
votes
1answer
36 views

Can I add non UTF-8 content to a .net resx file?

I'm using resx files to store localized content for some web apps. I've been asked to write a test mechanism to know if those resource files have non UTF-8 content on the values. The resx files are ...
0
votes
2answers
104 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
1answer
87 views

How to use a resx resource file in a T4 template

I cant figure out how to include the resource file (.resx) in the (.tt) T4 template. I tried so far... Importing the namespace <#@ import namespace="T4TemplateResources.resx" #> Also ...
0
votes
1answer
83 views

Cannot view resx file designer Visual Studio

I have a .resx file in my ASP.NET MVC 3 application and there's code in there that generates resources on the fly using the ResXResourceReader class. It's all been working fine but there was a bug ...
1
vote
0answers
69 views

Better tooltip formatting for resource file values?

When using resource files (*.resx) to implement translations, Visual Studio helpfully provides the base-language file's value in a tool-tip whenever you hover over a key: (there I have an entry ...
1
vote
1answer
156 views

How to Handle String Literals in Resource (.resx) Files

All, I have recently been learning a lot about localisation and the use of resource files (.resx). For a particular code, I have a .resx (and ascociated localised versions .de-DE.resx etc.) for each ...
4
votes
1answer
169 views

Performace Overheads when Using Resource Files (.resx)

Note, I am aware of the following questions on this topic: Are there any performance issues or caveats with resource (.resx) files? Are string resources (.resx) properties kept in memory? et ...
1
vote
2answers
236 views

Using resource files (.resx) in javascript

I'm trying to use localization in my project but I can't find a way to access my resx files from javascript. I have been looking around a bit and I don't think the 'AJAX call' method would be ideal ...
0
votes
1answer
237 views

Resource(.resx) file does not change on IIS

I have multilanguage web using resource files. I had them in App_GlobalResources directory and I want the users can modify resx files (language) by yourself. It works fine on my development computer ...
0
votes
1answer
52 views

windows phone - iterating through .resx

I am in the process of learning how to write apps for Windows Phone 7/8. I am working on a simple cookbook application. At first, I hard-coded all the values, but I then moved the data to .resx in ...
0
votes
1answer
95 views

store localized string in resx file?

I am using visual studio 2010 and I create the two resx file and input the localized string in resx file by opening it in visual studio. Here, I want to dynamically input the localized string name and ...
2
votes
1answer
142 views

Using Resources (resx) Inside a ClassLibrary, that can be changed without recompiling

I need to make a ClassLibrary, to contain different Resource Files (resx). This needs to be done, so I can reuse these resources on multiple projects. After reading for quite a while on how to ...
0
votes
1answer
97 views

Dynamically call localized string

I have two resx file (language.resx and language.ne.resx). Call localized string by razor syntax @language.Sports I have string to be changed to corresponding localized string which is retrieved ...
0
votes
2answers
510 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
0answers
60 views

How to prevent long strings from being written to resx file

Even though my form is not set to be localized, Visual Designer puts text into the .resx instead of directly in the code if I have a label whose text is over 200 characters long. This is problem ...
4
votes
2answers
113 views

How can set the `custom tool` property of an xml file to a T4 file?

we know that asp.net .resx files have an custom tool for generating some c# code (ResXFileCodeGenerator). I have an xml file and I want to set the custom tool property of that to a T4 file. how can ...
7
votes
1answer
117 views

How can i generate a file automatically when another file changes?

I have an xml file (resource.xml) in my asp.net mvc project and a T4 file (resource.tt) to convert that file to json in a .js file (resource.js). The issue is i want to run t4 file automatically when ...
1
vote
0answers
628 views

The item was specified more than once in the “Resources” parameter. Duplicate items are not supported by the “Resources” parameter

While compiling my Visual Studio C# project, i am getting the following error: The item "obj\Debug\SampleProject.Forms.MDIMain.resources" was specified more than once in the "Resources" parameter. ...

1 2 3 4 5 9