<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=8220</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=8220&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Arabic and other RTL ( Right to Left)  languages User Interface.]]></description>
		<lastBuildDate>Fri, 23 Sep 2022 04:39:04 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41484#p41484</link>
			<description><![CDATA[<p>@msuhail197</p><p>This is a very simple thing that should work immediate if all your setup is correct. Mainly utf-8 for English in installed_languages.inc and the default font dejavu&nbsp; mentioned in class.pdf.inc and that the font files are in /reporting/fonts. Thats all. Unless you have /reporting directory somewhere in /company/x that is overriding your changes. So please review your installation.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Fri, 23 Sep 2022 04:39:04 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41484#p41484</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41483#p41483</link>
			<description><![CDATA[<div class="quotebox"><cite>rafat wrote:</cite><blockquote><p>You need to change the English encoding to utf-8</p></blockquote></div><p>C&nbsp; &nbsp; English&nbsp; &nbsp; utf-8&nbsp; &nbsp; No&nbsp; &nbsp; Unknown&nbsp; &nbsp; None&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </p><p>I have changed the English encoding to utf-8, But even then, writing a note in Urdu when English is the default makes that Urdu question mark in the PDF.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Thu, 22 Sep 2022 22:46:51 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41483#p41483</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41482#p41482</link>
			<description><![CDATA[<div class="quotebox"><cite>rafat wrote:</cite><blockquote><p>You need to change the English encoding to utf-8</p></blockquote></div><p>How can I change it?&nbsp; Please guide me on this.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Thu, 22 Sep 2022 16:34:37 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41482#p41482</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41481#p41481</link>
			<description><![CDATA[<p>You need to change the English encoding to utf-8</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Thu, 22 Sep 2022 14:40:53 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41481#p41481</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41479#p41479</link>
			<description><![CDATA[<div class="quotebox"><cite>rafat wrote:</cite><blockquote><p>Can you list here the contents of your /lang/installed_languages.inc</p><p>Also make sure that </p><div class="codebox"><pre><code>                    default :          $fontname = &quot;dejavu&quot;;         break;</code></pre></div><p>is specified as the default font around line 162.</p></blockquote></div><p>My list here the contents of my /lang/installed_languages.inc</p><p>&lt;?php</p><p>/* How to make new entries here for non-packaged languages:</p><p>-- &#039;code&#039; should match the name of the directory for the language under \lang<br />.-- &#039;name&#039; is the name that will be displayed in the language selection list (in Users and Display Setup)<br />-- &#039;rtl&#039; only needs to be set for right-to-left languages like Arabic and Hebrew<br />-- &#039;encoding&#039; used in translation file<br />-- &#039;version&#039; always set to &#039;&#039; for manually installed languages.<br />-- &#039;path&#039; installation path related to FA root (e.g. &#039;lang/en_US&#039;).<br />*/</p><br /><p>$installed_languages = array (<br />&nbsp; 0 =&gt; <br />&nbsp; array (<br />&nbsp; &nbsp; &#039;code&#039; =&gt; &#039;C&#039;,<br />&nbsp; &nbsp; &#039;name&#039; =&gt; &#039;English&#039;,<br />&nbsp; &nbsp; &#039;encoding&#039; =&gt; &#039;iso-8859-1&#039;,<br />&nbsp; ),<br />&nbsp; 1 =&gt; <br />&nbsp; array (<br />&nbsp; &nbsp; &#039;name&#039; =&gt; &#039;Arabic&#039;,<br />&nbsp; &nbsp; &#039;package&#039; =&gt; &#039;ar_EG&#039;,<br />&nbsp; &nbsp; &#039;code&#039; =&gt; &#039;ar_EG&#039;,<br />&nbsp; &nbsp; &#039;encoding&#039; =&gt; &#039;utf-8&#039;,<br />&nbsp; &nbsp; &#039;version&#039; =&gt; &#039;2.4.1-3&#039;,<br />&nbsp; &nbsp; &#039;path&#039; =&gt; &#039;lang/ar_EG&#039;,<br />&nbsp; &nbsp; &#039;rtl&#039; =&gt; true,<br />&nbsp; ),<br />&nbsp; 2 =&gt; <br />&nbsp; array (<br />&nbsp; &nbsp; &#039;name&#039; =&gt; &#039;Urdu&#039;,<br />&nbsp; &nbsp; &#039;package&#039; =&gt; &#039;ur_PK&#039;,<br />&nbsp; &nbsp; &#039;code&#039; =&gt; &#039;ur_PK&#039;,<br />&nbsp; &nbsp; &#039;encoding&#039; =&gt; &#039;utf-8&#039;,<br />&nbsp; &nbsp; &#039;version&#039; =&gt; &#039;2.4.1-3&#039;,<br />&nbsp; &nbsp; &#039;path&#039; =&gt; &#039;lang/ur_PK&#039;,<br />&nbsp; &nbsp; &#039;rtl&#039; =&gt; true,<br />&nbsp; ),<br />);</p><p>$dflt_lang = &#039;C&#039;;</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Thu, 22 Sep 2022 12:01:12 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41479#p41479</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41477#p41477</link>
			<description><![CDATA[<p>Can you list here the contents of your /lang/installed_languages.inc</p><p>Also make sure that </p><div class="codebox"><pre><code>                    default :          $fontname = &quot;dejavu&quot;;         break;</code></pre></div><p>is specified as the default font around line 162.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Thu, 22 Sep 2022 02:26:49 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41477#p41477</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41476#p41476</link>
			<description><![CDATA[<div class="quotebox"><cite>rafat wrote:</cite><blockquote><p>Make sure that the language encoding is utf-8 then go:<br />https://frontaccounting.com/wbt/pages/download/downloads-for-release-2.3fonts.php<br />Download and install dejavu font as described in the instructions.</p><p>Also on the same page take a look at the Font Utility Package if you want to use your own fonts.</p></blockquote></div><p>Doing it this way has not solved my problem۔</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Wed, 21 Sep 2022 21:31:10 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41476#p41476</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41473#p41473</link>
			<description><![CDATA[<p>Make sure that the language encoding is utf-8 then go:<br />https://frontaccounting.com/wbt/pages/download/downloads-for-release-2.3fonts.php<br />Download and install dejavu font as described in the instructions.</p><p>Also on the same page take a look at the Font Utility Package if you want to use your own fonts.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Tue, 20 Sep 2022 06:14:00 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41473#p41473</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41469#p41469</link>
			<description><![CDATA[<p>When English is activated I want to write some reminders in Urdu to explain to some employees who don&#039;t know English.<br />Text is shown as ????????? in PDF.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Mon, 19 Sep 2022 23:58:07 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41469#p41469</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41466#p41466</link>
			<description><![CDATA[<p>Can its Noori Nastaliq font for Urdu language be installed in FA?</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Mon, 19 Sep 2022 22:18:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41466#p41466</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41465#p41465</link>
			<description><![CDATA[<p>When I write a note in Urdu language in FA, it is replaced by question marks in PDF. What is the solution?</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Mon, 19 Sep 2022 22:16:13 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41465#p41465</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=35553#p35553</link>
			<description><![CDATA[<p>Re-reading you may just want this:-<br />There is no css class defined just for this, so you need to add one:-<br /></p><div class="codebox"><pre><code>.repclass tbody tr td a {
    font-size: 12px;
}

Note:- .repclass a {... should work, but not tested</code></pre></div><p>That will do <strong>only</strong> the Reports For Class: list, to change the report classes: list read the following:-</p><p><strong>How do you see what css affects what element on a page?</strong><br />Either press the F12 key OR right-click on page element and select &#039;Inspect&#039;(Chrome) or &#039;Inspect Element&#039;(Firefox) You should now see a panel showing html and another panel showing the relevant css.</p><p>Have a play</p><p>Tips -<br />You can change what you want and instantly see the results(They are not saved, to cancel changes just press page refresh), then make the changes in the css file.<br />In Firefox only (sadly not chrome) if you right-click over an html element(in html panel) select &#039;Copy&#039; then &#039;CSS Path&#039;; paste that into a text editor and you will see the complete css path, shorten as necessary, then use.</p><p>Google &#039;how to use browser developer tools&#039; for more info</p>]]></description>
			<author><![CDATA[null@example.com (poncho1234)]]></author>
			<pubDate>Tue, 30 Jul 2019 20:07:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=35553#p35553</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=35548#p35548</link>
			<description><![CDATA[<p>Thanks @apmuthu</p><p>I guess you are right with the browser font -/+..but we really need to fix the starting font size.. Its minute with English and with Arabic its minuscule. I looked into the default.css and could not decipher where this font size is defined. I meant when one chooses Reports and Analysis (../reporting/reports_main.php?Class=6)</p><p>Thanks..</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Tue, 30 Jul 2019 11:32:09 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=35548#p35548</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=35519#p35519</link>
			<description><![CDATA[<p>Most browsers use CTRL +/- to adjust display font size. All reports have font settings tied to column widths.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sat, 27 Jul 2019 03:31:18 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=35519#p35519</guid>
		</item>
		<item>
			<title><![CDATA[Re: Arabic and other RTL ( Right to Left)  languages User Interface]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=35496#p35496</link>
			<description><![CDATA[<p>@poncho1234</p><p>I am getting there. One last thing .. Where can I change the font size of the Reports and Analysis screens?</p><p>Appreciate your help.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Thu, 25 Jul 2019 07:03:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=35496#p35496</guid>
		</item>
	</channel>
</rss>
