<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>bring the pixel support forum &#187; Topic: Translations of Flare Theme</title>
		<link>http://bringthepixel.com/support/topic/translations-of-flare-theme</link>
		<description>bring the pixel support forum &raquo; Topic: Translations of Flare Theme</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 09:14:45 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.3</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://bringthepixel.com/support/search.php</link>
		</textInput>
		<atom:link href="http://bringthepixel.com/support/rss/topic/translations-of-flare-theme" rel="self" type="application/rss+xml" />

		<item>
			<title>luke_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-7662</link>
			<pubDate>Thu, 11 Oct 2012 09:45:17 +0000</pubDate>
			<dc:creator>luke_btp</dc:creator>
			<guid isPermaLink="false">7662@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;To translation works correctly in the whole admin panel we need to&#60;br /&#62;
modify the previous solution:&#60;br /&#62;
1) from &#34;flare/functions.php&#34; remove the line &#34;btp_init_localization();&#34;&#60;br /&#62;
2) before the line &#34;require_once( BTP_FRAMEWORK_DIR . '/lib/config.php' );&#34; add the code below:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
function btp_init_localization_before_theme() {&#60;br /&#62;
    load_theme_textdomain( 'btp_theme', get_template_directory().'/languages' );&#60;/p&#62;
&#60;p&#62;    $locale  = get_locale();&#60;br /&#62;
    $locale_file = TEMPLATEPATH . &#34;/languages/$locale.php&#34;;&#60;br /&#62;
    if ( is_readable($locale_file) )&#60;br /&#62;
        require_once($locale_file);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;btp_init_localization_before_theme();&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;regards,&#60;br /&#62;
Luke
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luke_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-7187</link>
			<pubDate>Mon, 24 Sep 2012 17:02:10 +0000</pubDate>
			<dc:creator>luke_btp</dc:creator>
			<guid isPermaLink="false">7187@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;No, this is a temporary fix that need to be applied in the file &#34;functions.php&#34;,&#60;br /&#62;
in the main &#34;flare&#34; folder (not in the &#34;flare-child-theme&#34;).&#60;br /&#62;
In the upcoming release we will fix this, so this change will be overwritten.&#60;/p&#62;
&#60;p&#62;regards,&#60;br /&#62;
Luke
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jlsfernandez on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-7174</link>
			<pubDate>Mon, 24 Sep 2012 07:19:19 +0000</pubDate>
			<dc:creator>jlsfernandez</dc:creator>
			<guid isPermaLink="false">7174@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;sorry you mean&#60;/p&#62;
&#60;p&#62;copy functions.php to flare_child_them and add there the line, correct?&#60;/p&#62;
&#60;p&#62;all this kind of changes and addons you mention on all the post are to be done on the child theme if not say nothing?&#60;/p&#62;
&#60;p&#62;this is my functions.php file, where?&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
/* Prevent direct script access */&#60;br /&#62;
if ( !empty( $_SERVER[ 'SCRIPT_FILENAME' ] ) &#38;amp;&#38;amp; 'functions.php' == basename( $_SERVER['SCRIPT_FILENAME'] ) ) {&#60;br /&#62;
	die ( 'No direct script access allowed' );&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/**&#60;br /&#62;
* Flare Child Theme Setup&#60;br /&#62;
*&#60;br /&#62;
* Always use child theme if you want to make some custom modifications.&#60;br /&#62;
* This way theme updates will be a lot easier.&#60;br /&#62;
*/&#60;br /&#62;
function btp_flarechild_setup() {&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
add_action( 'after_setup_theme', 'btp_flarechild_setup' );&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;Tx
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luke_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-7052</link>
			<pubDate>Mon, 17 Sep 2012 14:25:58 +0000</pubDate>
			<dc:creator>luke_btp</dc:creator>
			<guid isPermaLink="false">7052@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;For now, to fix this problem you have to add below code after line 29 (require_once( BTP_LIB_DIR . '/functions.php' );) in file &#34;flare/functions.php&#34;&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
btp_init_localization();&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;regards,&#60;br /&#62;
Luke
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jlsfernandez on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-7048</link>
			<pubDate>Mon, 17 Sep 2012 10:34:50 +0000</pubDate>
			<dc:creator>jlsfernandez</dc:creator>
			<guid isPermaLink="false">7048@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Hello&#60;br /&#62;
please this is fixed?&#60;br /&#62;
how is the filly translated should be called?&#60;br /&#62;
where directory theme or child theme?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>admin_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3187</link>
			<pubDate>Wed, 11 Apr 2012 05:53:59 +0000</pubDate>
			<dc:creator>admin_btp</dc:creator>
			<guid isPermaLink="false">3187@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;thx!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aprott on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3182</link>
			<pubDate>Tue, 10 Apr 2012 21:52:24 +0000</pubDate>
			<dc:creator>aprott</dc:creator>
			<guid isPermaLink="false">3182@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;It's easy: Nothing under Theme Options is translated (the dark grey box)&#60;br /&#62;
Regards, Andreas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>admin_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3163</link>
			<pubDate>Tue, 10 Apr 2012 11:35:44 +0000</pubDate>
			<dc:creator>admin_btp</dc:creator>
			<guid isPermaLink="false">3163@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Could you please tell which phrase is not translated - it would be easier for me to track it :)&#60;/p&#62;
&#60;p&#62;thanks in advance&#60;/p&#62;
&#60;p&#62;regards,&#60;br /&#62;
Michael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>admin_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3156</link>
			<pubDate>Tue, 10 Apr 2012 06:24:00 +0000</pubDate>
			<dc:creator>admin_btp</dc:creator>
			<guid isPermaLink="false">3156@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;thx for sharing - I'll check it&#60;/p&#62;
&#60;p&#62;regards,&#60;br /&#62;
Michael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aprott on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3146</link>
			<pubDate>Mon, 09 Apr 2012 14:42:58 +0000</pubDate>
			<dc:creator>aprott</dc:creator>
			<guid isPermaLink="false">3146@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Sorry, me again.&#60;/p&#62;
&#60;p&#62;Seems like the texts under Theme Options (for example Theme Options -&#38;gt; Works -&#38;gt; Single) don't get the translations even though they are using the proper gettext functions and the translations are available. Seems like for example flare/lib/works/config.php doesn't read the mo file under flare/languages directory.&#60;/p&#62;
&#60;p&#62;Regards, Andreas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>admin_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3125</link>
			<pubDate>Sun, 08 Apr 2012 18:45:17 +0000</pubDate>
			<dc:creator>admin_btp</dc:creator>
			<guid isPermaLink="false">3125@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;thx for sharing!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aprott on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3124</link>
			<pubDate>Sun, 08 Apr 2012 18:27:15 +0000</pubDate>
			<dc:creator>aprott</dc:creator>
			<guid isPermaLink="false">3124@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;OK, have it figured out now. It is &#34;de_DE.mo&#34; under &#34;\wp-content\themes\flare\languages\&#34;.&#60;br /&#62;
Thanks, Andreas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aprott on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3123</link>
			<pubDate>Sun, 08 Apr 2012 18:22:36 +0000</pubDate>
			<dc:creator>aprott</dc:creator>
			<guid isPermaLink="false">3123@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
sorry can you be a bit more specific?&#60;br /&#62;
I now placed the file named &#34;de_DE.mo&#34; into &#34;\wp-content\themes\flare\&#34; and under &#34;\wp-content\themes\flare\languages\&#34; but this seems to not work. Do I need to somehow need to make wordpress aware of the new file?&#60;/p&#62;
&#60;p&#62;Best Regards, Andreas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>admin_btp on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3116</link>
			<pubDate>Sat, 07 Apr 2012 23:16:25 +0000</pubDate>
			<dc:creator>admin_btp</dc:creator>
			<guid isPermaLink="false">3116@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;hi,&#60;/p&#62;
&#60;p&#62;try to use just &#34;de_de&#34;  &#60;/p&#62;
&#60;p&#62;regards,Michael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aprott on "Translations of Flare Theme"</title>
			<link>http://bringthepixel.com/support/topic/translations-of-flare-theme#post-3111</link>
			<pubDate>Sat, 07 Apr 2012 11:03:14 +0000</pubDate>
			<dc:creator>aprott</dc:creator>
			<guid isPermaLink="false">3111@http://bringthepixel.com/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am just doing the translation to German. Two questions:&#60;/p&#62;
&#60;p&#62;1. Did anyone already do it, so that I can save my time?&#60;/p&#62;
&#60;p&#62;2. How to install it?&#60;br /&#62;
The original .po file is named btp_theme.po. So the newly translated should then be btp_theme-de_DE.po/mo?? Or shouldn't it be named flare-de_DE.po/mo so that WP finds it? And where to place it? Directly in the themes/flare folder or - as I also read somewhere - in wp-content/languages/themes/ ? Do I need to do anything to activate? (I don't have activated Cache yet in test)&#60;/p&#62;
&#60;p&#62;Thanks for your help with this!&#60;/p&#62;
&#60;p&#62;Cheers, Andreas
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
