<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Non-English Support - eFiction Community Forums				            </title>
            <link>https://efiction.org/community/non-english-support/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 18 Jul 2026 18:49:49 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>L10N - general UTF-8 Russian fix </title>
                        <link>https://efiction.org/community/non-english-support/l10n-general-utf-8-russian-fix-how-to/</link>
                        <pubDate>Mon, 19 Mar 2012 14:47:03 +0000</pubDate>
                        <description><![CDATA[&#1050;&#1072;&#1082; &#1088;&#1072;&#1079; &#1080; &#1085;&#1072;&#1074;&#1089;&#1077;&#1075;&#1076;&#1072; &#1088;&#1077;&#1096;&#1080;&#1090;&#1100; &#1087;&#1088;&#1086;&#1073;&#1083;&amp;#1...]]></description>
                        <content:encoded><![CDATA[&#1050;&#1072;&#1082; &#1088;&#1072;&#1079; &#1080; &#1085;&#1072;&#1074;&#1089;&#1077;&#1075;&#1076;&#1072; &#1088;&#1077;&#1096;&#1080;&#1090;&#1100; &#1087;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; &#1083;&#1086;&#1082;&#1072;&#1083;&#1080;&#1079;&#1072;&#1094;&#1080;&#1077;&#1081;.<br><br>&#1055;&#1077;&#1088;&#1077;&#1074;&#1086;&#1076;&#1080;&#1084; &#1074;&#1089;&#1102; &#1041;&#1044; &#1080; &#1074;&#1089;&#1077; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;&#1099; &#1041;&#1044; &#1074; <b>utf8_general_ci</b><br><pre><br>ALTER TABLE `table_name` CONVERT TO CHARACTER SET &#039;utf8&#039;;<br></pre><br>&#1054;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1084; UTF-8 &#1074; &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080; &#1087;&#1086;&#1076;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1080;&#1103; &#1082; &#1041;&#1044;:<br><i><b>mysql_functions.php</b></i><br>&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1101;&#1090;&#1086;:<br><pre>function dbconnect($dbhost, $dbuser, $dbpass, $dbname ) {<br>$mysql_access = mysql_connect($dbhost, $dbuser, $dbpass);<br>if(!$mysql_access) {<br>include(_BASEDIR.&quot;languages/en.php&quot;);<br>die(_FATALERROR.&quot; &quot;._NOTCONNECTED);<br>}<br>mysql_select_db($dbname, $mysql_access);<br>return $mysql_access;<br>}</pre><br>&#1053;&#1072; &#1101;&#1090;&#1086;:<br><pre>function dbconnect($dbhost, $dbuser, $dbpass, $dbname ) {<br>$mysql_access = mysql_connect($dbhost, $dbuser, $dbpass);<br>if(!$mysql_access) {<br>include(_BASEDIR.&quot;languages/en.php&quot;);<br>die(_FATALERROR.&quot; &quot;._NOTCONNECTED);<br>}<br>mysql_select_db($dbname, $mysql_access);<br>mysql_set_charset(&quot;utf8&quot;, $mysql_access);<br>return $mysql_access;<br>}</pre><br><br><i><b>mysqli_functions.php</b></i><br>&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1101;&#1090;&#1086;:<br><pre>function dbconnect($dbhost, $dbuser, $dbpass, $dbname ) {<br>$mysql_access = new mysqli($dbhost, $dbuser, $dbpass, $dbname);<br>if(mysqli_connect_error()) {<br>include(_BASEDIR.&quot;languages/en.php&quot;); // Because we haven&#039;t got a language set yet.<br>die(_FATALERROR.&quot; &quot;._NOTCONNECTED);<br>}<br>return $mysql_access;<br>}</pre><br>&#1053;&#1072; &#1101;&#1090;&#1086;:<br><pre>function dbconnect($dbhost, $dbuser, $dbpass, $dbname ) {<br>$mysql_access = new mysqli($dbhost, $dbuser, $dbpass, $dbname);<br>if(mysqli_connect_error()) {<br>include(_BASEDIR.&quot;languages/en.php&quot;); // Because we haven&#039;t got a language set yet.<br>die(_FATALERROR.&quot; &quot;._NOTCONNECTED);<br>}<br>mysqli_set_charset($mysql_access, &quot;utf8&quot;);<br>return $mysql_access;<br>}</pre><br><br>&#1042; &#1092;&#1072;&#1081;&#1083;&#1077; &#1083;&#1086;&#1082;&#1072;&#1083;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080; &#1087;&#1088;&#1086;&#1087;&#1080;&#1089;&#1099;&#1074;&#1072;&#1077;&#1084;:<br><pre>define (&quot;_CHARSET&quot;, &quot;utf-8&quot;);</pre><br><a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://www.mediafire.com/?ajfd027d516nki4">&#1043;&#1086;&#1090;&#1086;&#1074;&#1099;&#1081; ru.php &#1076;&#1083;&#1103; eFiction 3.5.3</a><br>&#1042; &#1092;&#1072;&#1081;&#1083;&#1077; storyform.php (&#1089;&#1090;&#1088;&#1086;&#1082;&#1072; 48) &#1084;&#1077;&#1085;&#1103;&#1077;&#1084; htmlentities() &#1085;&#1072; htmlspecialchars()<br>&#1042; &#1092;&#1072;&#1081;&#1083;&#1077; javascript.js &#1084;&#1077;&#1085;&#1103;&#1077;&#1084; &#1074;&#1089;&#1077; &#1074;&#1099;&#1079;&#1086;&#1074;&#1099; unescape() &#1085;&#1072; decodeURI()<br><i><b>categorylist.php</b></i><br>&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1101;&#1090;&#1086;:<br><pre>$find = array (&#039;&quot;&#039;, chr(150), chr(147), chr(148), chr(146));<br>$replace = array (&#039;&quot;&#039;, &quot;-&quot;, &quot;&quot;&quot;, &quot;&quot;&quot;, &quot;&#039;&quot;);</pre><br>&#1053;&#1072; &#1101;&#1090;&#1086;:<br><pre>$find = array (&#039; &#039;);<br>$replace = array (&#039;+&#039;);</pre><br><br><i><b>characterlist.php</b></i><br>&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1101;&#1090;&#1086;:<br><pre>//header(&quot;Content-Type: text/html; charset=&quot;.CHARSET,true);</pre><br>&#1053;&#1072; &#1101;&#1090;&#1086;:<br><pre>header(&quot;Content-Type: text/html; charset=&quot;._CHARSET,true);</pre><br><br>&#1040; &#1090;&#1072;&#1082;&#1078;&#1077; &#1101;&#1090;&#1086;:<br><pre>$find = array (&#039;&quot;&#039;, chr(150), chr(147), chr(148), chr(146));<br>$replace = array (&#039;&quot;&#039;, &quot;-&quot;, &quot;&quot;&quot;, &quot;&quot;&quot;, &quot;&#039;&quot;);</pre><br>&#1053;&#1072; &#1101;&#1090;&#1086;:<br><pre>$find = array (&#039; &#039;);<br>$replace = array (&#039;+&#039;);</pre><br><br><i><b>&#1056;&#1072;&#1079;&#1088;&#1077;&#1096;&#1072;&#1077;&#1084; &#1083;&#1086;&#1075;&#1080;&#1085;&#1099; &#1074; UTF-8 (&#1085;&#1080;&#1082;&#1080; &#1082;&#1080;&#1088;&#1080;&#1083;&#1083;&#1080;&#1094;&#1077;&#1081;):</b></i><br>&#1042; &#1092;&#1072;&#1081;&#1083;&#1072;&#1093;:<br><i><b>user/editbio.php<br>user/login.php</b></i><br>&#1052;&#1077;&#1085;&#1103;&#1077;&#1084; &#1074;&#1089;&#1077; &#1074;&#1093;&#1086;&#1078;&#1076;&#1077;&#1085;&#1080;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086;:<br><pre>&quot;!^{3,30}$!i&quot;</pre><br>&#1053;&#1072; &#1101;&#1090;&#1086;:<br><pre>&quot;!^{3,30}$!iu&quot;</pre><br><br><i><b>&#1048;&#1089;&#1087;&#1088;&#1072;&#1074;&#1083;&#1103;&#1077;&#1084; &#1087;&#1086;&#1076;&#1089;&#1095;&#1105;&#1090; &#1089;&#1083;&#1086;&#1074;</b></i><br>&#1042; &#1092;&#1072;&#1081;&#1083;&#1077;:<br><i><b>stories.php</b></i><br>&#1052;&#1077;&#1085;&#1103;&#1077;&#1084; &#1074;&#1089;&#1077; &#1074;&#1093;&#1086;&#1078;&#1076;&#1077;&#1085;&#1080;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086;:<br><pre>$pattern = &quot;/+/&quot;;</pre><br>&#1053;&#1072; &#1101;&#1090;&#1086;:<br><pre>$pattern = &quot;/+/iu&quot;;</pre><br>(&#1057;&#1090;&#1088;&#1086;&#1082;&#1072; 174 &#1080; 501)<br>&#1069;&#1090;&#1086; &#1088;&#1077;&#1096;&#1072;&#1077;&#1090; <b>&#1074;&#1089;&#1077;</b> &#1087;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099; &#1089; &#1083;&#1086;&#1082;&#1072;&#1083;&#1080;&#1079;&#1072;&#1094;&#1080;&#1077;&#1081;.<br><i>P.S. &#1040;&#1074;&#1090;&#1086;&#1088;, &#1074;&#1099;&#1087;&#1091;&#1089;&#1082;&#1072;&#1081; &#1072;&#1087;&#1076;&#1077;&#1081;&#1090;!</i>]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>guest11233</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/l10n-general-utf-8-russian-fix-how-to/</guid>
                    </item>
				                    <item>
                        <title> Arabic translation</title>
                        <link>https://efiction.org/community/non-english-support/work-in-progress-arabic-translation/</link>
                        <pubDate>Tue, 24 Jan 2012 19:39:34 +0000</pubDate>
                        <description><![CDATA[Hello everyone &nbsp;:-D I installed efiction today on my site and loved it! I started translating it for my site, but i got tired after finishing the the en.php (now renamed to ar.php) that...]]></description>
                        <content:encoded><![CDATA[Hello everyone &nbsp;:-D <br>I installed efiction today on my site and loved it! <br>I started translating it for my site, but i got tired after finishing the the en.php (now renamed to ar.php) that i didn&#039;t have the energy to do the ar_admin.php. <br>I might finish it if i get time, but i&#039;m too scared that i&#039;ll forget and nobody will have at least the first file in a language they understand. <br><br>efiction ver. 3.5.3 (extract an put ar.php in folder Languages/ )<br><br><a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://baskoot.fatafeet.net/vn/efiction3.5.3_ar_WIP.zip">http://baskoot.fatafeet.net/vn/efiction3.5.3_ar_WIP.zip</a><br><br>I hope works in progress are allowed &#65288;´&#12539;&#969;&#12539;&#65344;&#65289;<br>----------------<br><br>&#1575;&#1604;&#1587;&#1604;&#1575;&#1605; &#1593;&#1604;&#1610;&#1603;&#1605; &#1608; &#1585;&#1581;&#1605;&#1577; &#1575;&#1604;&#1604;&#1607; &#1608; &#1576;&#1585;&#1603;&#1575;&#1578;&#1607;<br>&#1607;&#1606;&#1575; &#1575;&#1604;&#1605;&#1604;&#1601; &#1575;&#1604;&#1593;&#1585;&#1576;&#1610; &#1604;&#1608;&#1575;&#1580;&#1607;&#1577; &#1575;&#1604;&#1605;&#1608;&#1602;&#1593; (&#1578;&#1593;&#1576;&#1578; &#1608;&#1604;&#1605; &#1575;&#1587;&#1578;&#1591;&#1593; &#1575;&#1603;&#1605;&#1575;&#1604; &#1608;&#1575;&#1580;&#1607;&#1577; &#1575;&#1604;&#1605;&#1588;&#1585;&#1601;, &#1602;&#1583; &#1575;&#1603;&#1605;&#1604;&#1607;&#1575; &#1604;&#1575;&#1581;&#1602;&#1575;&#1611; &#1575;&#1608; &#1605;&#1606; &#1610;&#1585;&#1610;&#1583; &#1578;&#1593;&#1585;&#1610;&#1576;&#1607;&#1575; &#1601;&#1604;&#1610;&#1601;&#1593;&#1604; &#1608; &#1610;&#1585;&#1601;&#1593;&#1607;&#1575; &#1607;&#1606;&#1575; &#1605;&#1588;&#1603;&#1608;&#1585;&#1575;&#1611;) <br><br>&#1602;&#1605; &#1576;&#1601;&#1603; &#1575;&#1604;&#1590;&#1594;&#1591; &#1593;&#1606; &#1575;&#1604;&#1605;&#1604;&#1601; &#1608;&#1608;&#1590;&#1593;&#1607; &#1601;&#1610; &#1605;&#1580;&#1604;&#1583; languages/ <br><br>&#1575;&#1604;&#1578;&#1585;&#1580;&#1605;&#1607; &#1578;&#1605;&#1578; &#1601;&#1610; &#1606;&#1587;&#1582;&#1577; efiction3.5.3<br><a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://baskoot.fatafeet.net/vn/efiction3.5.3_ar_WIP.zip">http://baskoot.fatafeet.net/vn/efiction3.5.3_ar_WIP.zip</a><br><br><br>Edit <br>I forgot to put the website it is installed on (in case someone wants to see it before installing) http://rewayat.fatafeet.net<br>please note that the website was just installed today, i will edit the theme to make it RTL later XD]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>renoa</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/work-in-progress-arabic-translation/</guid>
                    </item>
				                    <item>
                        <title> Language pack &amp; support forum.</title>
                        <link>https://efiction.org/community/non-english-support/italian-support-language-pack-support-forum/</link>
                        <pubDate>Mon, 14 Sep 2009 11:48:01 +0000</pubDate>
                        <description><![CDATA[We are proud to present the italian translation of eFiction.There are more than one package: you can find the simple language pack, the translated default_tpl and the complete package with t...]]></description>
                        <content:encoded><![CDATA[We are proud to present the italian translation of eFiction.<br>There are more than one package: you can find the simple language pack, the translated default_tpl and the complete package with translated skins, install, panels, messages, and so on. We excluded some bridge from the package.<br><br>You can find them at <a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://www.immaginifico.com/EfictionHQ/news.php">EFHQ</a>. Please, note that you can dl the files only if you register to the site (say &quot;thank you!&quot; to thieves...)<br>We&#039;re sorry, but the site is italian only, except for <a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://www.immaginifico.com/EfictionHQ/e107_plugins/content/content.php?content.9">this page</a>.<br><br>If someone wants to join us, just leave us a message.<br><br>To the moderators: if I put this message in the wrong place, feel free to move it! Or even to rename it &nbsp;:-) Thank you!<br><br>---<br><br>Siamo lieti di presentarvi la traduzione italiana di eFiction. Abbiamo creato più di un pacchetto per la distribuzione: potrete trovare la semplice localizzazione, i default_tpl tradotti, e il pacchetto completo con skin tradotte, install, pannelli, messaggi e così via (utili se procedete con un&#039;installazione da zero). Abbiamo escluso alcuni bridges dal pacchetto, dato che non abbiamo mai visto qualcuno che li utilizzi, in Italia.<br><br>Li troverete presso <a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://www.immaginifico.com/EfictionHQ/news.php">EFHQ</a>. Per poter scaricare i file è obbligatoria la registrazione (del tutto gratuita. Non l&#039;avremmo mai messo in distribuzione controllata, se non fosse che tutti scaricavano e nessuno creditava).<br><br>Se volete unirvi a noi, ditecelo!]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>emmekappa</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/italian-support-language-pack-support-forum/</guid>
                    </item>
				                    <item>
                        <title>re-writing italian guide and Language pack</title>
                        <link>https://efiction.org/community/non-english-support/re-writing-italian-guide-and-language-pack/</link>
                        <pubDate>Fri, 31 Jul 2009 12:31:31 +0000</pubDate>
                        <description><![CDATA[Hi!I&#039;m here just to say that i&#039;m rewriting my italian guide to efiction and the translation =)If someone wants to cooperate, just send me a message =)]]></description>
                        <content:encoded><![CDATA[Hi!<br>I&#039;m here just to say that i&#039;m rewriting my italian guide to efiction and the translation =)<br><br>If someone wants to cooperate, just send me a message =)]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>emmekappa</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/re-writing-italian-guide-and-language-pack/</guid>
                    </item>
				                    <item>
                        <title> russian eFiction</title>
                        <link>https://efiction.org/community/non-english-support/language-pack-russian-efiction/</link>
                        <pubDate>Sun, 19 Jul 2009 18:14:17 +0000</pubDate>
                        <description><![CDATA[Mod name: eFiction 3.5.1 russian language packMod description:This package will help you to translate eFiction installation version 3.5.1 into russian language. Included filesru.php &nbsp;(t...]]></description>
                        <content:encoded><![CDATA[Mod name: eFiction 3.5.1 russian language pack<br><br>Mod description:This package will help you to translate eFiction installation version 3.5.1 into russian language. Included files<br>ru.php &nbsp;(translated)<br>ru_admin.php (not translated)<br>read me.txt - some tips in russian<br><br>download<br>www.transfictions.ru/languages/efiction_rus.zip<br><br>known problems &nbsp;described here (hope it will be solved)<br>https://efiction.org/forums/index.php?topic=5312.0<br><br>&#1052;&#1086;&#1076;, &#1087;&#1086;&#1079;&#1074;&#1086;&#1083;&#1103;&#1102;&#1097;&#1080;&#1081; &#1095;&#1072;&#1089;&#1090;&#1080;&#1095;&#1085;&#1086; &#1087;&#1077;&#1088;&#1077;&#1074;&#1077;&#1089;&#1090;&#1080; efiction (&#1074;&#1077;&#1088;&#1089;&#1080;&#1103; 3.5.1) &#1085;&#1072; &#1088;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; &#1103;&#1079;&#1099;&#1082;.<br>&#1042;&#1082;&#1083;&#1102;&#1095;&#1072;&#1077;&#1090; &#1092;&#1072;&#1081;&#1083;&#1099;:<br>ru.php &nbsp;(&#1087;&#1077;&#1088;&#1077;&#1074;&#1077;&#1076;&#1077;&#1085; &#1087;&#1086;&#1083;&#1085;&#1086;&#1089;&#1090;&#1100;&#1102;)<br>ru_admin.php (&#1087;&#1086;&#1082;&#1072; &#1085;&#1077; &#1087;&#1077;&#1088;&#1077;&#1074;&#1077;&#1076;&#1077;&#1085;, &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103; &#1091;&#1076;&#1086;&#1073;&#1089;&#1090;&#1074;&#1072;)<br>read me.txt - &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1082;&#1094;&#1080;&#1080; &#1085;&#1072; &#1088;&#1091;&#1089;&#1089;&#1082;&#1086;&#1084; &#1103;&#1079;&#1099;&#1082;&#1077;<br><br>&#1076;&#1083;&#1103; &#1095;&#1072;&#1089;&#1090;&#1080;&#1095;&#1085;&#1086;&#1081; &#1088;&#1091;&#1089;&#1080;&#1092;&#1080;&#1082;&#1072;&#1094;&#1080;&#1080; &#1089;&#1082;&#1086;&#1087;&#1080;&#1088;&#1091;&#1081;&#1090;&#1077; &#1092;&#1072;&#1081;&#1083;&#1099; ru.php &#1080; ru_admin.php &#1074; &#1087;&#1072;&#1087;&#1082;&#1091; /languages &#1080; &#1074;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1088;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; &#1103;&#1079;&#1099;&#1082; &#1074; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1072;&#1093; &#1072;&#1088;&#1093;&#1080;&#1074;&#1072;.<br><br>&#1089;&#1089;&#1099;&#1083;&#1082;&#1072; &#1076;&#1083;&#1103; &#1089;&#1082;&#1072;&#1095;&#1080;&#1074;&#1072;&#1085;&#1080;&#1103;<br>www.transfictions.ru/languages/efiction_rus.zip<br><br>&#1087;&#1088;&#1086;&#1073;&#1083;&#1077;&#1084;&#1099;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1074;&#1089;&#1090;&#1088;&#1077;&#1090;&#1080;&#1083;&#1080;&#1089;&#1100; &#1087;&#1088;&#1080; &#1088;&#1091;&#1089;&#1080;&#1092;&#1080;&#1082;&#1072;&#1094;&#1080;&#1080; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1099; &#1074; &#1101;&#1090;&#1086;&#1084; &#1090;&#1086;&#1087;&#1080;&#1082;&#1077;:<br>https://efiction.org/forums/index.php?topic=5312.0]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>JustWar</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/language-pack-russian-efiction/</guid>
                    </item>
				                    <item>
                        <title>Using This Forum</title>
                        <link>https://efiction.org/community/non-english-support/using-this-forum/</link>
                        <pubDate>Tue, 27 Jan 2009 21:07:21 +0000</pubDate>
                        <description><![CDATA[Currently, we have volunteers offering support in three different languages--Spanish, French and German. If you would like to add a new language, please ask here. Also, language packs now go...]]></description>
                        <content:encoded><![CDATA[Currently, we have volunteers offering support in three different languages--Spanish, French and German. If you would like to add a new language, please ask here. <br><br>Also, language packs now go in this forum.]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>Carissa</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/using-this-forum/</guid>
                    </item>
				                    <item>
                        <title> Spanish language pack</title>
                        <link>https://efiction.org/community/non-english-support/language-pack-spanish-language-pack/</link>
                        <pubDate>Mon, 12 May 2008 19:59:42 +0000</pubDate>
                        <description><![CDATA[Mod name: eFiction 3.4.2 spanish language packMod description: This package will translate eFiction installation version 3.4.2 into spanish language. Included are the main files for admin an...]]></description>
                        <content:encoded><![CDATA[Mod name: eFiction 3.4.2 spanish language pack<br><br>Mod description: This package will translate eFiction installation version 3.4.2 into <br>spanish language. Included are the main files for admin and user area, blocks and <br>modules. The language file for the install and upgrade scripts is also <br>provided. <br>Note: During the installation the messages are in English, but after Panel data,<br>site messages, blocks, page links and skin templates will be translated.<br>That is a beta version. Please report me for bugs. <br><br>Download: I put that in my skyspace of Hotmail:<br><a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://cid-193b1e2ad7c5a39a.skydrive.live.com/browse.aspx/Público/Efiction?uc=1">Files translate to Spanish efiction3.42</a><br><br>I wish that you can check this and that works fine. &nbsp;:wink:<br>]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>Drumy</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/language-pack-spanish-language-pack/</guid>
                    </item>
				                    <item>
                        <title>Tips for translators</title>
                        <link>https://efiction.org/community/non-english-support/tips-for-translators/</link>
                        <pubDate>Mon, 28 Apr 2008 14:28:18 +0000</pubDate>
                        <description><![CDATA[Problem: undocumented additions or updates to the language files from one version to another. Solution: A simple comparison of old and new file versions. There are many file comparison tools...]]></description>
                        <content:encoded><![CDATA[Problem: undocumented additions or updates to the language files from one version to another. <br><br>Solution: A simple comparison of old and new file versions. <br><br>There are many file comparison tools out there, but I prefer the command line tool which is already integrated in windows. <br><br>1. Open start menu and click &quot;run&quot;. <br>2. Enter cmd to start the command promt. <br>3. On the command line, enter: <br><pre><br>fc x:pathtoolden.php x:pathtonewen.php&gt;x:pathtoresult.txt<br></pre><br>Where X is the drive letter and Pathto... the path in where the old and new files are located. The path after the &gt; is the result file. Do this with every file you would like to check for updates. <br>4. When finished, enter exit to close the CLI. <br><br>Now open the result files you&#039;ve defined in the command before and check which additions were made. To find out where the changes were made, the text will show you one or two lines above and below the changed/added line. Now you can easily translate the new/updated lines and update the translated language files. <br><br>And if you don&#039;t like the command line interface, you may use <a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://efiction.schulle4u.de/downloads.php?cat_id=4&amp;download_id=3">this GUI version</a> of the same command. It&#039;s a html application (*.hta). It&#039;s german, but shouldn&#039;t be very difficult to understand. :) <br><br>Steffen]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>guest1448</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/tips-for-translators/</guid>
                    </item>
				                    <item>
                        <title> French eFiction</title>
                        <link>https://efiction.org/community/non-english-support/language-pack-french-efiction/</link>
                        <pubDate>Tue, 22 May 2007 15:12:20 +0000</pubDate>
                        <description><![CDATA[Hi,I don&#039;t know if somebody had already made this topic, but I didn&#039;t find one, so.... tel me if I need to delete it if one is already online!French Traduction of eFiction (beta fo...]]></description>
                        <content:encoded><![CDATA[Hi,<br><br>I don&#039;t know if somebody had already made this topic, but I didn&#039;t find one, so.... tel me if I need to delete it if one is already online!<br><br><b>French Traduction of eFiction</b> (beta for some time)!<br><br><a class="go2wpf-bbcode" rel="nofollow" target="_blank" href="http://satine01black.free.fr/eFiction32_fr.zip">http://satine01black.free.fr/eFiction32_fr.zip</a><br><br>I did it with a custom skin (for my slash site!), but it is all (mostly&nbsp; :| ) in french.<br><br>If you download this, can you sent me informations on bugs please?<br><br>Beware for the updates, I didn&#039;t test them yet (i don&#039;t know if it works whith the traduction!)]]></content:encoded>
						                            <category domain="https://efiction.org/community/non-english-support/">Non-English Support</category>                        <dc:creator>satine01black</dc:creator>
                        <guid isPermaLink="true">https://efiction.org/community/non-english-support/language-pack-french-efiction/</guid>
                    </item>
							        </channel>
        </rss>
		