<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Localization Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/category/localization/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/category/localization/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Thu, 10 Jan 2019 14:15:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>SharePoint 2007 Deployment: Using Resources in Features</title>
		<link>https://blogit.create.pt/andrevala/2009/05/02/sharepoint-2007-deployment-using-resources-in-features/</link>
					<comments>https://blogit.create.pt/andrevala/2009/05/02/sharepoint-2007-deployment-using-resources-in-features/#respond</comments>
		
		<dc:creator><![CDATA[André Vala]]></dc:creator>
		<pubDate>Sat, 02 May 2009 20:08:40 +0000</pubDate>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Localization]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[WSS]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/andrevala/?p=621</guid>

					<description><![CDATA[<p>This series of posts about SharePoint deployment would not be complete if I didn’t write one about using resources in Features to allow localization. After all, SharePoint’s out-of-the-box features use resources all the time. Check the first post SharePoint 2007 Deployment: Overview for an introduction and the series index. Why should I use Resources? In [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/andrevala/2009/05/02/sharepoint-2007-deployment-using-resources-in-features/">SharePoint 2007 Deployment: Using Resources in Features</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This series of posts about SharePoint deployment would not be complete if I didn’t write one about using resources in Features to allow localization. After all, SharePoint’s out-of-the-box features use resources all the time. Check the first post <a href="http://blogit.create.pt/blogs/andrevala/archive/2007/12/02/SharePoint-2007-Deployment_3A00_-Overview.aspx">SharePoint 2007 Deployment: Overview</a> for an introduction and the series index.</p>
<h3>Why should I use Resources?</h3>
<p>In my opinion, you should <strong>always</strong> use resource files for your features. Why? </p>
<ul>
<li>First, because it’s easy to do even if you only have one language. </li>
<li>Second, because if you do, all the objects you are provisioning in SharePoint will be localized and will be displayed in the correct language of the website (provided you have deployed the resource file for that language). </li>
</ul>
<p>Examples of things that should be placed in resource files:</p>
<ul>
<li><strong>Title</strong> and <strong>Description</strong> of you feature, so that they will be displayed in the language of the website; </li>
<li>Site column <strong>display name</strong> and <strong>description</strong>; </li>
<li>Content type <strong>name</strong> and <strong>description</strong>; </li>
<li>List template <strong>name</strong> and <strong>description</strong>; </li>
<li>List instance <strong>title</strong> and <strong>description</strong>; </li>
<li>Custom action <strong>title</strong> and <strong>description</strong>. </li>
</ul>
<h3>How do I use it?</h3>
<p>There are three steps to use resources in a feature:</p>
<ol>
<li>Build the resource (<code>.resx</code>) files; </li>
<li>Place the resource files in the correct folder; </li>
<li>Use the resource strings in the feature manifest and element manifests. </li>
</ol>
<p><strong>Note:</strong> The next sections show how to use feature-specific resources. I’ll briefly discuss shared resources in the end of the post.</p>
<h4>Building the resource (.resx) files</h4>
<p>The best way to build the resource files is using Visual Studio 2008, but you can do it manually on any text editor since they’re just XML text files.</p>
<pre class="code"><span style="color: blue">&lt;?</span><span style="color: #a31515">xml </span><span style="color: red">version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0</span>&quot; <span style="color: red">encoding</span><span style="color: blue">=</span>&quot;<span style="color: blue">utf-8</span>&quot;<span style="color: blue">?&gt;
&lt;</span><span style="color: #a31515">root</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">resheader </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">resmimetype</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;</span>text/microsoft-resx<span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">resheader</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">resheader </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">version</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;</span>2.0<span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">resheader</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">resheader </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">reader</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
      </span>System.Resources.ResXResourceReader, 
      System.Windows.Forms, 
      Version=2.0.0.0, 
      Culture=neutral, 
      PublicKeyToken=b77a5c561934e089
    <span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">resheader</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">resheader </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">writer</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
      </span>System.Resources.ResXResourceWriter, 
      System.Windows.Forms, 
      Version=2.0.0.0, 
      Culture=neutral, 
      PublicKeyToken=b77a5c561934e089
    <span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">resheader</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">data </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">MyFeatureName</span>&quot; <span style="color: red">xml:space</span><span style="color: blue">=</span>&quot;<span style="color: blue">preserve</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;</span>My Feature Name<span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">data</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">data </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">MyFieldDisplayName</span>&quot; <span style="color: red">xml:space</span><span style="color: blue">=</span>&quot;<span style="color: blue">preserve</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;</span>My Field Display Name<span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">data</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">data </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">MyFieldChoice1</span>&quot; <span style="color: red">xml:space</span><span style="color: blue">=</span>&quot;<span style="color: blue">preserve</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;</span>My Choice 1<span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">data</span><span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">data </span><span style="color: red">name</span><span style="color: blue">=</span>&quot;<span style="color: blue">MyFieldChoice2</span>&quot; <span style="color: red">xml:space</span><span style="color: blue">=</span>&quot;<span style="color: blue">preserve</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">value</span><span style="color: blue">&gt;</span>My Choice 2<span style="color: blue">&lt;/</span><span style="color: #a31515">value</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">data</span><span style="color: blue">&gt;
&lt;/</span><span style="color: #a31515">root</span><span style="color: blue">&gt;</span></pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p><a href="http://11011.net/software/vspaste"></a>See above an example of a resource (<code>.resx</code>) file. The <code>&lt;data&gt;</code> elements are the ones that hold the localized strings:</p>
<ul>
<li>The <code>name</code> attribute is the key used to retrieve the localized string; </li>
<li>The <code>&lt;value&gt;</code> child element is the localized string itself. </li>
</ul>
<p>Each language must have its own resource file which follows a specific naming convention:</p>
<ul>
<li>The main resource file must be called <code><strong>Resources.resx</strong></code>. This is the culture neutral resource file (or fall back resource file) which will be used by SharePoint whenever there is no resource file for a specific culture. </li>
<li>All culture specific resource files must be named <code><strong>Resources.[culture].resx</strong></code>. Some examples:
<ul>
<li><code>Resources.en-US.resx</code> (english – United States) </li>
<li><code>Resources.pt-PT.resx</code> (portuguese – Portugal) </li>
<li><code>Resources.fr-FR.resx</code> (french – France) </li>
<li><code>Resources.pt-BR.resx</code> (portuguese – Brazil) </li>
</ul>
</li>
</ul>
<h4>Placing the resource files in the correct folder</h4>
<p>These files must be placed in a <strong>Resources</strong> folder inside your feature’s folder. So, if your feature’s folder is <code>C:\…\12\TEMPLATE\FEATURES\MyFeature</code>, the resource files need to be placed in the folder <code>C:\…\12\TEMPLATE\FEATURES\MyFeature\Resources</code>.</p>
<h4>Resources and the Feature Manifest</h4>
<p>After you have created the resource files and placed the in the correct folder, you can now used them in your feature manifest (<code>feature.xml</code>).</p>
<pre class="code"><span style="color: blue">&lt;?</span><span style="color: #a31515">xml </span><span style="color: red">version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0</span>&quot; <span style="color: red">encoding</span><span style="color: blue">=</span>&quot;<span style="color: blue">utf-8</span>&quot; <span style="color: blue">?&gt;
&lt;</span><span style="color: #a31515">Feature </span><span style="color: red">xmlns</span><span style="color: blue">=</span>&quot;<span style="color: blue">http://schemas.microsoft.com/sharepoint/</span>&quot;
         <span style="color: red">Id</span><span style="color: blue">=</span>&quot;<span style="color: blue">5DFD12AF-D0AA-4c63-8FB8-C49DB1191083</span>&quot;
         <span style="color: red">Title</span><span style="color: blue">=</span>&quot;<span style="color: blue">$Resources:MyFeatureName</span>&quot;
         <span style="color: red">Scope</span><span style="color: blue">=</span>&quot;<span style="color: blue">Site</span>&quot;
         <span style="color: red">Version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0.0.0</span>&quot;<span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">ElementManifests</span><span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">ElementManifest </span><span style="color: red">Location</span><span style="color: blue">=</span>&quot;<span style="color: blue">SiteColumns.xml</span>&quot;<span style="color: blue">/&gt;
    &lt;</span><span style="color: #a31515">ElementFile </span><span style="color: red">Location</span><span style="color: blue">=</span>&quot;<span style="color: blue">Resources\Resources.resx</span>&quot; <span style="color: blue">/&gt;
    &lt;</span><span style="color: #a31515">ElementFile </span><span style="color: red">Location</span><span style="color: blue">=</span>&quot;<span style="color: blue">Resources\Resources.pt-PT.resx</span>&quot; <span style="color: blue">/&gt;
    &lt;</span><span style="color: #a31515">ElementFile </span><span style="color: red">Location</span><span style="color: blue">=</span>&quot;<span style="color: blue">Resources\Resources.es-ES.resx</span>&quot; <span style="color: blue">/&gt;
  &lt;/</span><span style="color: #a31515">ElementManifests</span><span style="color: blue">&gt;
&lt;/</span><span style="color: #a31515">Feature</span><span style="color: blue">&gt;</span></pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>The sample above, shows a feature manifest that uses resources to specify the feature title. As you can see, the value of the <code>Title</code> attribute is <code><strong>$Resources:MyFeatureName</strong></code>. This tells SharePoint that it should check the resource file for the current website’s culture and retrieve the string that has the key <code>MyFeatureName</code>.</p>
<p>Notice the use of <code>&lt;ElementFile&gt;</code> elements to reference the resource files in the feature. This is required if you are deploying this feature through a solution package (<code>.wsp</code>).</p>
<p><strong>Important:</strong> because we are using feature-specific resource files (resource files that are only used for this specific feature), you cannot use the <code>DefaultResourceFile</code> attribute on the <code>&lt;Feature&gt;</code> element. If you do, SharePoint will not look for resource files in the local <code>Resources</code> folder for this feature.</p>
<h4>Resources and the Element Manifest</h4>
<p>Besides using localized strings to specify the feature title and description, you can (and should) use localized strings for most feature elements.</p>
<pre class="code"><span style="color: blue">&lt;?</span><span style="color: #a31515">xml </span><span style="color: red">version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0</span>&quot; <span style="color: red">encoding</span><span style="color: blue">=</span>&quot;<span style="color: blue">utf-8</span>&quot; <span style="color: blue">?&gt;
&lt;</span><span style="color: #a31515">Elements </span><span style="color: red">xmlns</span><span style="color: blue">=</span>&quot;<span style="color: blue">http://schemas.microsoft.com/sharepoint/</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">Field </span><span style="color: red">Type</span><span style="color: blue">=</span>&quot;<span style="color: blue">Choice</span>&quot;
         <span style="color: red">DisplayName</span><span style="color: blue">=</span>&quot;<span style="color: blue"><strong>$Resources:MyFieldDisplayName</strong></span>&quot;
         <span style="color: red">Required</span><span style="color: blue">=</span>&quot;<span style="color: blue">FALSE</span>&quot;
         <span style="color: red">Format</span><span style="color: blue">=</span>&quot;<span style="color: blue">Dropdown</span>&quot;
         <span style="color: red">FillInChoice</span><span style="color: blue">=</span>&quot;<span style="color: blue">FALSE</span>&quot;
         <span style="color: red">ID</span><span style="color: blue">=</span>&quot;<span style="color: blue">{485b2176-4cfc-4923-8085-c003b85dab36}</span>&quot;
         <span style="color: red">StaticName</span><span style="color: blue">=</span>&quot;<span style="color: blue">MyField</span>&quot;
         <span style="color: red">Name</span><span style="color: blue">=</span>&quot;<span style="color: blue">MyField</span>&quot;<span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">Default</span><span style="color: blue">&gt;</span><strong>$Resources:MyFieldChoice1</strong><span style="color: blue">&lt;/</span><span style="color: #a31515">Default</span><span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">CHOICES</span><span style="color: blue">&gt;
      &lt;</span><span style="color: #a31515">CHOICE</span><span style="color: blue">&gt;</span><strong>$Resources:MyFieldChoice1</strong><span style="color: blue">&lt;/</span><span style="color: #a31515">CHOICE</span><span style="color: blue">&gt;
      &lt;</span><span style="color: #a31515">CHOICE</span><span style="color: blue">&gt;</span><strong>$Resources:MyFieldChoice2</strong><span style="color: blue">&lt;/</span><span style="color: #a31515">CHOICE</span><span style="color: blue">&gt;
    &lt;/</span><span style="color: #a31515">CHOICES</span><span style="color: blue">&gt;
  &lt;/</span><span style="color: #a31515">Field</span><span style="color: blue">&gt;
 &lt;/</span><span style="color: #a31515">Elements</span><span style="color: blue">&gt;</span></pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>The sample above specifies a choice field, and uses localized strings for:</p>
<ul>
<li>Field display name </li>
<li>Each of the field’s choices </li>
<li>The field’s default choice </li>
</ul>
<p>The theory is exactly the same as it was used for the feature manifest: you use the expression <code>$Resources:[key]</code> whenever you want SharePoint to retrieve a localized string from the resource file of the current website’s culture.</p>
<h3>Shared Resource Files</h3>
<p>The method shown in the previous sections assumed that each feature has its own resource files. However, that is not always the case and SharePoint itself uses shared resource files. That is, resource files that can be shared by multiple features.</p>
<p>There are only two differences when using shared resource files:</p>
<ul>
<li>The folder where the resource files are placed; </li>
<li>The way you reference the localized string in you feature manifest and element manifests. </li>
</ul>
<p>Other than that, the file format and contents can be exactly the same.</p>
<h4>Folder for Shared Resources</h4>
<p>Shared resource files must be placed in the folder <code>C:\…\12\Resources</code> instead of the local Resources folder inside the feature folder.</p>
<h4>Referencing Shared Resources</h4>
<p>Because the shared resources files can have any name you want, you must reference the localized strings in a more specific way, so as to tell SharePoint which resource file holds a particular string.</p>
<pre class="code"><span style="color: blue">&lt;?</span><span style="color: #a31515">xml </span><span style="color: red">version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0</span>&quot; <span style="color: red">encoding</span><span style="color: blue">=</span>&quot;<span style="color: blue">utf-8</span>&quot; <span style="color: blue">?&gt;
&lt;</span><span style="color: #a31515">Feature </span><span style="color: red">xmlns</span><span style="color: blue">=</span>&quot;<span style="color: blue">http://schemas.microsoft.com/sharepoint/</span>&quot;
         <span style="color: red">Id</span><span style="color: blue">=</span>&quot;<span style="color: blue">5DFD12AF-D0AA-4c63-8FB8-C49DB1191083</span>&quot;
         <span style="color: red">Title</span><span style="color: blue">=</span>&quot;<span style="color: blue"><strong>$Resources:MyResources,MyFeatureName</strong></span>&quot;
         <span style="color: red">Scope</span><span style="color: blue">=</span>&quot;<span style="color: blue">Site</span>&quot;
         <span style="color: red">Version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0.0.0</span>&quot;<span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">ElementManifests</span><span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">ElementManifest </span><span style="color: red">Location</span><span style="color: blue">=</span>&quot;<span style="color: blue">SiteColumns.xml</span>&quot;<span style="color: blue">/&gt;
  &lt;/</span><span style="color: #a31515">ElementManifests</span><span style="color: blue">&gt;
&lt;/</span><span style="color: #a31515">Feature</span><span style="color: blue">&gt;</span></pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<h5></h5>
<p>As you can see in the above sample, instead of <code>$Resources:MyFeatureName</code> I’m referencing the localized string with <code>$Resources:MyResources,MyFeatureName</code>. This tells SharePoint to look for:</p>
<ul>
<li>A localized string whose key is <code>MyFeatureName</code> </li>
<li>In a resource file named <code>MyResources.[Culture].resx</code> </li>
<li>In the <code>C:\…\12\Resources</code> folder </li>
</ul>
<p>If all your strings are in the same shared resource file, then you can specify that file as the default resource file and reference the strings as shown in the first sample.</p>
<pre class="code"><span style="color: blue">&lt;?</span><span style="color: #a31515">xml </span><span style="color: red">version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0</span>&quot; <span style="color: red">encoding</span><span style="color: blue">=</span>&quot;<span style="color: blue">utf-8</span>&quot; <span style="color: blue">?&gt;
&lt;</span><span style="color: #a31515">Feature </span><span style="color: red">xmlns</span><span style="color: blue">=</span>&quot;<span style="color: blue">http://schemas.microsoft.com/sharepoint/</span>&quot;
         <span style="color: red">Id</span><span style="color: blue">=</span>&quot;<span style="color: blue">5DFD12AF-D0AA-4c63-8FB8-C49DB1191083</span>&quot;
         <span style="color: red">Title</span><span style="color: blue">=</span>&quot;<span style="color: blue"><strong>$Resources:MyFeatureName</strong></span>&quot;
         <strong><span style="color: red">DefaultResourceFile</span><span style="color: blue">=</span>&quot;<span style="color: blue">MyResources</span>&quot;</strong>
         <span style="color: red">Scope</span><span style="color: blue">=</span>&quot;<span style="color: blue">Site</span>&quot;
         <span style="color: red">Version</span><span style="color: blue">=</span>&quot;<span style="color: blue">1.0.0.0</span>&quot;<span style="color: blue">&gt;
  &lt;</span><span style="color: #a31515">ElementManifests</span><span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">ElementManifest </span><span style="color: red">Location</span><span style="color: blue">=</span>&quot;<span style="color: blue">SiteColumns.xml</span>&quot;<span style="color: blue">/&gt;
  &lt;/</span><span style="color: #a31515">ElementManifests</span><span style="color: blue">&gt;
&lt;/</span><span style="color: #a31515">Feature</span><span style="color: blue">&gt;</span></pre>
<p>The sample above does exactly the same as the previous one. The only difference is that it specifies <code>MyResources.[culture].resx</code> as the default resource file and, because of that, you don’t need to specify it on all references to the localized strings.</p>
<h3>Additional Notes</h3>
<p>So, how does SharePoint choose which resource file to use when loading the localized strings?</p>
<ol>
<li>Looks for the resource file of the exact culture of the website. If you have a website based on a portuguese (pt-PT) site template, it will look for the <code>Resources.pt-PT.resx</code>. If it’s there, it loads all the strings from it. </li>
<li>If it’s not there, it looks for any resource files of the same culture, even if it has a different location. So if your website’s language is pt-PT (Portuguese – Portugal) and you don’t have a <code>Resources.pt-PT.resx</code> file, but you have a <code>Resources.pt-BR.resx</code> (Portuguese – Brazil) file, then SharePoint will use it. </li>
<li>If there is no resource file for the website’s culture, SharePoint will use the fall back resource file (<code>Resources.resx</code>). </li>
</ol>
<h3>Samples</h3>
<p>You can download samples for:</p>
<ul>
<li><a href="http://cid-b4544db7b7183eb8.skydrive.live.com/self.aspx/.Public/Blog%20Data/Feature%20Resources/LocalResources.zip" target="blank">Feature with Local Resources</a> </li>
<li><a href="http://cid-b4544db7b7183eb8.skydrive.live.com/self.aspx/.Public/Blog%20Data/Feature%20Resources/SharedResources.zip" target="blank">Feature with Shared Resources</a> </li>
</ul>
<p>These samples include:</p>
<ul>
<li>The solution manifest file (<code>manifest.xml</code>). </li>
<li>The solution cab structure file (<code>solution.ddf</code>). </li>
<li>The feature manifest file (<code>Feature.xml</code>). </li>
<li>The element manifest file (<code>SiteColumns.xml</code>). </li>
<li>The resource files (<code>.resx</code>) </li>
<li>A batch file (<code>build.bat</code>) that creates the solution package </li>
</ul>
<p><strong>Warning:</strong> Do not install both solutions in the same farm, since some of the IDs are the same and the feature has the same name on both solutions. If you want to use it as is, test each solution separately, removing one before installing the other.</p>
<p><strong>Notice: </strong>These samples are given for illustrative purposes only. Feel free to modify and use them as templates for your solutions and features. </p>
<p>The post <a href="https://blogit.create.pt/andrevala/2009/05/02/sharepoint-2007-deployment-using-resources-in-features/">SharePoint 2007 Deployment: Using Resources in Features</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/andrevala/2009/05/02/sharepoint-2007-deployment-using-resources-in-features/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
