<?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"
	>

<channel>
	<title>Kakkoi &#187; wordpress admin</title>
	<atom:link href="http://42.kaizeku.com/taxonomy/wordpress-admin//feed/" rel="self" type="application/rss+xml" />
	<link>http://42.kaizeku.com</link>
	<description>web development, software, windows tips and trick</description>
	<pubDate>Sat, 12 Jul 2008 15:10:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Change Howdy to Hello - WordPress</title>
		<link>http://42.kaizeku.com/wordpress/how-to-change-howdy-to-hello-wordpress/</link>
		<comments>http://42.kaizeku.com/wordpress/how-to-change-howdy-to-hello-wordpress/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 18:11:10 +0000</pubDate>
		<dc:creator>Noah Ark</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[howdy]]></category>

		<category><![CDATA[l10n]]></category>

		<category><![CDATA[wordpress admin]]></category>

		<guid isPermaLink="false">http://blog.kakkoi.net/cms/wordpress/how-to-change-howdy-to-hello-wordpress/</guid>
		<description><![CDATA[This is funny thought. This issue has been around for quite awhile now. <a href="http://photomatt.net/">Matt's</a> said (<em>[wp-hackers] Decision time in re: admin rework</em>) they wont change the <strong>"Howdy"</strong> to "hello" or "G'day" as its a localization specific (l10n). Thats true I can agree with that. But If you think proper greeting is important, you can try the following steps.
<ul>
<li>Open <tt>*/wp-admin/admin-header.php</tt></li>
<li>find on line 46
<pre class="prebox" style="height:40px">
&#60;div id=&#34;user_info&#34;&#62;&#60;p&#62;&#60;?php printf(__('Howdy, &#60;strong&#62;%s&#60;/strong&#62;.'), $user_identity) ?&#62; [&#60;a href=&#34;&#60;?php echo get_option('siteurl'); ?&#62;/wp-login.php?action=logout&#34; title=&#34;&#60;?php _e('Log out of this account') ?&#62;&#34;&#62;&#60;?php _e('Sign Out'); ?&#62;&#60;/a&#62;, &#60;a href=&#34;profile.php&#34;&#62;&#60;?php _e('My Profile'); ?&#62;&#60;/a&#62;] &#60;/p&#62;&#60;/div&#62;
</pre>
</li>
<li>Replace with
<pre class="prebox" style="height:40px">
&#60;div id=&#34;user_info&#34;&#62;&#60;p&#62;&#60;?php echo __('Hello').', &#60;strong&#62;' $user_identity.'&#60;/strong&#62;'; ?&#62; [&#60;a href=&#34;&#60;?php echo get_option('siteurl'); ?&#62;/wp-login.php?action=logout&#34; title=&#34;&#60;?php _e('Log out of this account') ?&#62;&#34;&#62;&#60;?php _e('Sign Out'); ?&#62;&#60;/a&#62;, &#60;a href=&#34;profile.php&#34;&#62;&#60;?php _e('My Profile'); ?&#62;&#60;/a&#62;] &#60;/p&#62;&#60;/div&#62;
</pre>
</ul>


g'day :p]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>This is funny thought. This issue has been around for quite awhile now. <a href="http://photomatt.net/">Matt&#8217;s</a> said (<em>[wp-hackers] Decision time in re: admin rework</em>) they wont change the <strong>&#8220;Howdy&#8221;</strong> to &#8220;hello&#8221; or &#8220;G&#8217;day&#8221; as its a localization specific (l10n). Thats true. But If you think proper greeting is important, you can try the following steps.<br />
<span id="more-108"></span></p>
<h2>Wordpress admin-header.php</h2>
<ul>
<li>Open <tt>*/wp-admin/admin-header.php</tt></li>
<li>Login to WordPress Admin goto Manage > Files > Type in <tt>&#8220;wp-admin/admin-header.php&#8221;</tt><br />
<img src='http://blog.kakkoi.net/wp-content/uploads/2007/12/template-file-editing-wordpress.png' alt='template-file-editing-wordpress.png' />
</li>
<li>find on line 46
<pre class="prebox" style="height:60px;width:550px;overflow:auto">
&lt;div id=&quot;user_info&quot;&gt;&lt;p&gt;&lt;?php printf(__('Howdy, &lt;strong&gt;%s&lt;/strong&gt;.'), $user_identity) ?&gt; [&lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-login.php?action=logout&quot; title=&quot;&lt;?php _e('Log out of this account') ?&gt;&quot;&gt;&lt;?php _e('Sign Out'); ?&gt;&lt;/a&gt;, &lt;a href=&quot;profile.php&quot;&gt;&lt;?php _e('My Profile'); ?&gt;&lt;/a&gt;] &lt;/p&gt;&lt;/div&gt;
</pre>
</li>
<li>Replace with
<pre class="prebox" style="height:60px;width:550px;overflow:auto">
&lt;div id=&quot;user_info&quot;&gt;&lt;p&gt;&lt;?php echo __('Hello').', &lt;strong&gt;' $user_identity.'&lt;/strong&gt;'; ?&gt; [&lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-login.php?action=logout&quot; title=&quot;&lt;?php _e('Log out of this account') ?&gt;&quot;&gt;&lt;?php _e('Sign Out'); ?&gt;&lt;/a&gt;, &lt;a href=&quot;profile.php&quot;&gt;&lt;?php _e('My Profile'); ?&gt;&lt;/a&gt;] &lt;/p&gt;&lt;/div&gt;
</pre>
</ul>
<p>g&#8217;day :p</p>
<h2>Related Links</h2>
<ul>
<li><a href="http://wordpress.org/extend/ideas/topic.php?id=1023">Wordpress Ideas &#038; Suggestions</a></li>
</ul>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://42.kaizeku.com/wordpress/how-to-change-howdy-to-hello-wordpress/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
