<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://goldendict.org/wiki/skins/common/feed.css?195"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>GoldenDict Wiki - User contributions [en]</title>
		<link>http://goldendict.org/wiki/index.php/Special:Contributions</link>
		<description>From GoldenDict Wiki</description>
		<language>en</language>
		<generator>MediaWiki 1.14.0</generator>
		<lastBuildDate>Sun, 03 May 2026 02:36:49 GMT</lastBuildDate>
		<item>
			<title>FAQ</title>
			<link>http://goldendict.org/wiki/index.php/FAQ</link>
			<description>&lt;p&gt;Det: Adding description of new functionality, as discussed in http://goldendict.org/forum/viewtopic.php?f=5&amp;amp;t=876&amp;amp;sid=2f0010898267c9edf02ced8fc80b484a&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here we collect popular questions with answers, various tips and stuff like that. Please don't hesitate to add material here!&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
=== Where do I get a portable version of the program? ===&lt;br /&gt;
As of May 28, 2010, portable mode is supported by the main version of the program. You just need to create a directory named &amp;quot;portable&amp;quot; in the program's directory. This directory will then be used to store configuration and indices. Your dictionaries should be stored in the &amp;quot;content&amp;quot; directory, and morphologies in the &amp;quot;content/morphologies&amp;quot; directory. Sound directories aren't supported in portable mode.&lt;br /&gt;
&lt;br /&gt;
Use a recent enough Git build to have this functionality.&lt;br /&gt;
&lt;br /&gt;
=== How do I change the font used for the articles? Or alter its appearance in any other way? ===&lt;br /&gt;
The article text you see is actually an HTML page. It has its own CSS style which can be arbitrarily altered. To do so, you need to create a special text file ''article-style.css'', located in Linux in ''~/.goldendict'', and in Windows in ''%APPDATA%\GoldenDict''. You can put arbitrary CSS code there. Example:&lt;br /&gt;
 body&lt;br /&gt;
 {&lt;br /&gt;
   background: blue;&lt;br /&gt;
   font-family: Verdana;&lt;br /&gt;
   font-size: 16px;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
This would change the background color of the whole page to blue, and use font Verdana, 16 pixels large.&lt;br /&gt;
To see which attributes are available, see [http://git.berlios.de/cgi-bin/gitweb.cgi?p=goldendict;a=blob_plain;f=src/article-style.css;hb=HEAD this file], which defines all the initial default values.&lt;br /&gt;
&lt;br /&gt;
Another handy way to find the needed attributes is to save an article you would like to customize to HTML using '''File|Save Article''', and then use Firefox with the FireBug extension or another similar tool to explore the existing attributes.&lt;br /&gt;
&lt;br /&gt;
=== How do I change fonts for only a specific language? ===&lt;br /&gt;
Some scripts or languages (e.g. Hindi, Urdu, Bengali) are not rendered well with the default system fonts.  You can specify the fonts GoldenDict uses for these languages by customizing two CSS style sheets: ''article-style.css'' (see the previous question) for changes to the main article display pane, and ''qt-style.css'' for changes to the search box and word list.&lt;br /&gt;
&lt;br /&gt;
'''Article fonts''' are specified using the standard ''lang(xx)'' CSS pseudo-class, and also the special ''gdlangfrom-xx'' CSS class, where ''xx'' is an [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes ISO 639-1] two-letter language code.  The following examples can guide you in editing your ''article-style.css'':&lt;br /&gt;
 :lang(ru)&lt;br /&gt;
 {&lt;br /&gt;
   font-family: &amp;quot;Sans Comic MS&amp;quot;;&lt;br /&gt;
   font-size: 32px;&lt;br /&gt;
 }&lt;br /&gt;
This will apply to all articles containing translations to the Russian language. Now,&lt;br /&gt;
 .gdlangfrom-ru&lt;br /&gt;
 {&lt;br /&gt;
   font-family: &amp;quot;Sans Comic MS&amp;quot;;&lt;br /&gt;
   font-size: 32px;&lt;br /&gt;
 }&lt;br /&gt;
will apply to all articles containing translations ''from'' the Russian language. You can also specify both:&lt;br /&gt;
 .gdlangfrom-en:lang(ru)&lt;br /&gt;
 {&lt;br /&gt;
   font-family: &amp;quot;Sans Comic MS&amp;quot;;&lt;br /&gt;
   font-size: 32px;&lt;br /&gt;
 }&lt;br /&gt;
This will only apply to the articles translating from English to Russian. And here's how to match the ''either'' one:&lt;br /&gt;
 :lang(ru), .gdlangfrom-ru&lt;br /&gt;
 {&lt;br /&gt;
   font-family: &amp;quot;Sans Comic MS&amp;quot;;&lt;br /&gt;
   font-size: 32px;&lt;br /&gt;
 }&lt;br /&gt;
This will match articles translating either ''from'' Russian, or ''to'' Russian.&lt;br /&gt;
&lt;br /&gt;
'''Note''' that this feature is only available in the recent enough [[GIT version]] (one from April 3, 2010 or later).&lt;br /&gt;
&lt;br /&gt;
'''Search box and wordlist fonts''' are specified in ''qt-style.css'' (located in the same directory as ''article-style.css'') using the ''currentGroup'' property, which corresponds to defined dictionary groups.  For example, you can change the font used for searches in a ''Bengali'' dictionary group by adding the following to your ''qt-style.css'':&lt;br /&gt;
 MainWindow #searchPane #translateLine[currentGroup=&amp;quot;Bengali&amp;quot;], MainWindow #searchPane #wordList[currentGroup=&amp;quot;Bengali&amp;quot;]&lt;br /&gt;
 {&lt;br /&gt;
   background: white;&lt;br /&gt;
   color: black;&lt;br /&gt;
   font-family: &amp;quot;SolaimanLipi&amp;quot;;&lt;br /&gt;
   font-size: 20px;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
'''Note''' that this feature is only available in the recent enough [[GIT version]] (one from Nov 16, 2010 or later).&lt;/div&gt;</description>
			<pubDate>Wed, 17 Nov 2010 06:49:09 GMT</pubDate>			<dc:creator>Det</dc:creator>			<comments>http://goldendict.org/wiki/index.php/Talk:FAQ</comments>		</item>
	</channel>
</rss>