473,394 Members | 1,701 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

How to remove localization(get rid of meta keys metaresourcekey)?

Hi all,
i have simple question, suppose that we have a ASP.NET web site with
lots of local resource files, we can simple delete all of the resource
files (resx). Question is, how can remove all of the meta keys like
meta:resourcekey="blabla". Is there a simple way? (like replace all)

regards
Sep 19 '08 #1
4 4828
You could build a program to look for that attribute and strip it. Perhaps
someone has already done this? Other than that, I know of no easy way to
remove the resource keys. You can turn off localization without removing the
keys, of course, if this is your immediate goal. You will probably still
want to remove stuff, but it at least gives you an interim path. Wish I had
a better answer, but I do not.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://feeds.feedburner.com/GregoryBeamer#

or just read it:
http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! |
********************************************
"coderr" <co****@gmail.comwrote in message
news:97**********************************@y21g2000 hsf.googlegroups.com...
Hi all,
i have simple question, suppose that we have a ASP.NET web site with
lots of local resource files, we can simple delete all of the resource
files (resx). Question is, how can remove all of the meta keys like
meta:resourcekey="blabla". Is there a simple way? (like replace all)

regards
Sep 19 '08 #2
On Sep 19, 4:13*pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo...@comcast.netNoSpamMwrote:
You could build a program to look for that attribute and strip it. Perhaps
someone has already done this? Other than that, I know of no easy way to
remove the resource keys. You can turn off localization without removing the
keys, of course, if this is your immediate goal. You will probably still
want to remove stuff, but it at least gives you an interim path. Wish I had
a better answer, but I do not.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my bloghttp://feeds.feedburner.com/GregoryBeamer#

or just read it:http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! * * * * * * * * * * * * * * * |
********************************************"coder r" <cod...@gmail.comwrote in message

news:97**********************************@y21g2000 hsf.googlegroups.com...
Hi all,
i have simple question, suppose that we have a ASP.NET web site with
lots of local resource files, we can simple delete all of the resource
files (resx). Question is, how can remove all of the meta keys like
meta:resourcekey="blabla". Is there a simple way? (like replace all)
regards
Thanks, i could simply write a program using regular expressions, i
though there might be build-in feature in VisualStudio IDE
Sep 19 '08 #3
Generally when one goes to localization, they don't go back. That is
probably why there is no tool.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://feeds.feedburner.com/GregoryBeamer#

or just read it:
http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! |
********************************************
"coderr" <co****@gmail.comwrote in message
news:ee**********************************@l42g2000 hsc.googlegroups.com...
On Sep 19, 4:13 pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo...@comcast.netNoSpamMwrote:
You could build a program to look for that attribute and strip it. Perhaps
someone has already done this? Other than that, I know of no easy way to
remove the resource keys. You can turn off localization without removing
the
keys, of course, if this is your immediate goal. You will probably still
want to remove stuff, but it at least gives you an interim path. Wish I
had
a better answer, but I do not.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my bloghttp://feeds.feedburner.com/GregoryBeamer#

or just read it:http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! |
********************************************"coder r" <cod...@gmail.com>
wrote in message

news:97**********************************@y21g2000 hsf.googlegroups.com...
Hi all,
i have simple question, suppose that we have a ASP.NET web site with
lots of local resource files, we can simple delete all of the resource
files (resx). Question is, how can remove all of the meta keys like
meta:resourcekey="blabla". Is there a simple way? (like replace all)
regards
Thanks, i could simply write a program using regular expressions, i
though there might be build-in feature in VisualStudio IDE

Sep 19 '08 #4
On Sep 19, 10:51*pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo...@comcast.netNoSpamMwrote:
Generally when one goes to localization, they don't go back. That is
probably why there is no tool.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my bloghttp://feeds.feedburner.com/GregoryBeamer#

or just read it:http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! * * * * * * * * * * * * * * * |
********************************************"coder r" <cod...@gmail.comwrote in message

news:ee**********************************@l42g2000 hsc.googlegroups.com...
On Sep 19, 4:13 pm, "Cowboy \(Gregory A. Beamer\)"

<NoSpamMgbwo...@comcast.netNoSpamMwrote:
You could build a program to look for that attribute and strip it. Perhaps
someone has already done this? Other than that, I know of no easy way to
remove the resource keys. You can turn off localization without removing
the
keys, of course, if this is your immediate goal. You will probably still
want to remove stuff, but it at least gives you an interim path. Wish I
had
a better answer, but I do not.
--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
Subscribe to my bloghttp://feeds.feedburner.com/GregoryBeamer#
or just read it:http://feeds.feedburner.com/GregoryBeamer
********************************************
| Think outside the box! |
********************************************"coder r" <cod...@gmail.com>
wrote in message
news:97**********************************@y21g2000 hsf.googlegroups.com....
Hi all,
i have simple question, suppose that we have a ASP.NET web site with
lots of local resource files, we can simple delete all of the resource
files (resx). Question is, how can remove all of the meta keys like
meta:resourcekey="blabla". Is there a simple way? (like replace all)
regards

Thanks, i could simply write a program using regular expressions, i
though there might be build-in feature in VisualStudio IDE
i just tried "find & replace" feature of VS IDE, here is my solution:
{meta}:Po{resourcekey="}:i{"}
simply we can search for text using regular expressions no need to
write any code
Sep 25 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Tim N. van der Leeuw | last post by:
Hi, I'd like to remove keys from a dictionary, which are not found in a specific set. So it's kind of an intersection-operation. I can create a new dictionary, or a loop over all keys and test...
2
by: MFRASER | last post by:
How do I go about looping through a hash table and removing items. I know how do this in a collectionbase, but can't iterate through the hash table with out getting an error. Here is my sample...
1
by: Olivier Matrot | last post by:
Hello, I'm trying to use explicit localization expression to access global resources from an .inc file that's included into several ASPX pages. I may be wrong in my expression, bu accessing...
0
by: jonathan.eves | last post by:
Hi I am having a hard time with localization of the sitemap. I have created a custom SiteMapProvider which inherits from StaticSiteMapProvider. For which everything works fine. The next...
14
by: Ron M. Newman | last post by:
Hi group, I need similar functionality I'm getting from the hashtable, but without the value .all I need is keys. this of course negates the need for "hashing", but I wanted to know if there's a...
2
by: shumaker | last post by:
I am putting a key for my application to run at startup in SOFTWARE\Microsoft\Windows\CurrentVersion\Run My goal is to allow individual users to toggle this on and off, so I was placing the key...
2
by: Nathan Sokalski | last post by:
I have an application that is using Session state. On one page, I use the Session.Add() method to create the Key/Value pair for the first time. I am then sent to another page using...
3
by: Jordan S. | last post by:
I'm looking to localize an ASP.NET Web application for English, Spanish, and French (fr-CA), and was just considering the possibility of localizing the meta tags (e.g., keywords, title, and...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.