<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Solution on Blogarious</title>
    <link>https://blogarious.kairopath.net/categories/solution/</link>
    <description>Recent content in Solution on Blogarious</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 11 Jan 2025 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://blogarious.kairopath.net/categories/solution/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Xfce4 4.20 upgrade issue on font size</title>
      <link>https://blogarious.kairopath.net/posts/2025-01-11-xfce4-4-20-upgrade-issue-on-font-size/</link>
      <pubDate>Sat, 11 Jan 2025 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2025-01-11-xfce4-4-20-upgrade-issue-on-font-size/</guid>
      <description>&lt;p&gt;With the recent upgrade of Xfce4 4.20, I was facing the font size issue on my laptop. I am using &lt;code&gt;icewm&lt;/code&gt; . And the upgrade causes my fonts become too small. But some applications are too big, like Brave and FreeFileSync. I spent some time to fix this. And this is my final solution,&lt;/p&gt;&#xA;&lt;p&gt;Allow &lt;code&gt;xfsettingsd&lt;/code&gt; at startup,&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;xfsettingsd --daemon -D&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;And use &lt;code&gt;xfce4-appearance-settings&lt;/code&gt;, at the Fonts &amp;gt; DPI, enable Custom and set the value to 120 as in .Xresources . The effect is immediate. This solves the font size for all applications.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Android playing iOS MOV video</title>
      <link>https://blogarious.kairopath.net/posts/2023-11-10-android-playing-ios-mov-video/</link>
      <pubDate>Fri, 10 Nov 2023 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2023-11-10-android-playing-ios-mov-video/</guid>
      <description>&lt;p&gt;I am using an Android phone, specifically Vivo. I found that when I play the MOV video transferred from iOS, only sound is able to be played properly but the picture is not showing.&lt;/p&gt;&#xA;&lt;p&gt;None of the solutions from the Internet helped me to solve my problem. After trial and error, I found that the MOV file can be converted to MP4 format using &lt;code&gt;ffmpeg&lt;/code&gt; with some parameters. Eg,&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;fmpeg -i input.MOV -c:v libx264 -c:a aac -vf &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;scale=720:1280,fps=29&amp;#34;&lt;/span&gt; -ac &lt;span style=&#34;color:#ae81ff&#34;&gt;1&lt;/span&gt; -x264opts &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;ref=0:cabac=0:b_pyramid=0:bframes=0&amp;#34;&lt;/span&gt; -profile:v baseline -pix_fmt yuv420p output.mp4&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Based on my experience, the most crucial parameter is &amp;ldquo;-pix_fmt yuv420p&amp;rdquo;, so the MP4 video is 8-bit depth.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Switching from Openbox to IceWM</title>
      <link>https://blogarious.kairopath.net/posts/2023-03-19-switching-from-openbox-to-icewm/</link>
      <pubDate>Sun, 19 Mar 2023 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2023-03-19-switching-from-openbox-to-icewm/</guid>
      <description>&lt;p&gt;Bye-bye Openbox, welcome IceWM.&lt;/p&gt;&#xA;&lt;p&gt;Due to the recent upgrade of &lt;code&gt;glib2&lt;/code&gt; on Arch Linux, it &lt;a href=&#34;https://bbs.archlinux.org/viewtopic.php?id=284299&#34;&gt;crashes&lt;/a&gt; my Openbox when I am running Wine or Proton. Downgrade to 2.74.6 is not a solution, because Nemo, Caja, Nautilus are using 2.76.0.&lt;/p&gt;&#xA;&lt;p&gt;As a result, I have to find an alternative. From Wikipedia, I found that LXDE can be configured with other window manager rather than Openbox, eg Fluxbox, IceWM, or Xfwm.&lt;/p&gt;&#xA;&lt;p&gt;I tried Xfwm, but it fails to run. Probably needs extra configuration, but I didn&amp;rsquo;t continue trying. I tried Fluxbox long time ago, can&amp;rsquo;t remember the feature. Then I found that, compare to Openbox, IceWM is still in development. Hence I decided to try IceWM.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Twitter interests deselection bookmarklet</title>
      <link>https://blogarious.kairopath.net/posts/2022-11-13-twitter-interests-deselection-bookmarklet/</link>
      <pubDate>Sun, 13 Nov 2022 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2022-11-13-twitter-interests-deselection-bookmarklet/</guid>
      <description>&lt;p&gt;I like to use Twitter, but the new Topics and Interests feature of Twitter is damn annoying. It keep showing something I am not interested of.&lt;/p&gt;&#xA;&lt;p&gt;I looked for the solution from Internet, and finally I come out with this bookmarklet, which can be used in Settings &amp;gt; Privacy and Safety &amp;gt; Content You See &amp;gt; Interests.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code class=&#34;language-jscript&#34; data-lang=&#34;jscript&#34;&gt;javascript:(async()=&amp;gt;{const sleep=ms=&amp;gt;new Promise(r=&amp;gt;setTimeout(r,ms));const inputs=document.querySelectorAll(&amp;#39;section[aria-label=&amp;#34;Section details&amp;#34;] input:checked&amp;#39;);for(let i=0;i&amp;lt;inputs.length;i+=1){const rand=Math.floor(Math.random()*2e3);await sleep(9e3+rand);const input=inputs[i];input.click()}})();&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;After trigger the bookmarklet, just leave the page there, it will slowly deselect one by one.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Not able to boot</title>
      <link>https://blogarious.kairopath.net/posts/2022-04-03-not-able-to-boot/</link>
      <pubDate>Sun, 03 Apr 2022 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2022-04-03-not-able-to-boot/</guid>
      <description>&lt;p&gt;Recently, I failed to boot into my laptop. I was shocked.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;home contains a file system with errors, check forced.&#xA;home: Inode 12976129 seems to contain garbage.&#xA;home: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.&#xA;        (i.e., without -a or -p options)&#xA;fsck failed with exit status 4.&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Then not able to mount the home partition, I was prompted to login as root. However, I was too nervous, I forgot what is my root password.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Reviving Samsung Galaxy Tab 10.1 (GT-P7500)</title>
      <link>https://blogarious.kairopath.net/posts/2021-10-03-reviving-samsung-galaxy-tab-10-1-gt-p7500/</link>
      <pubDate>Sun, 03 Oct 2021 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2021-10-03-reviving-samsung-galaxy-tab-10-1-gt-p7500/</guid>
      <description>&lt;p&gt;I bought a Samsung Galaxy Tab 10.1 many many years ago. But recently, I am trying to revive it so that, it will be a possible solution to allow my son to watch cartoon on an old tablet, in future.&lt;/p&gt;&#xA;&lt;p&gt;Reviving this Galaxy Tab (P7500) takes me so much time to try out those custom ROMs and the apps. But it is an interesting experience.&lt;/p&gt;&#xA;&lt;p&gt;I tried several ROMs, flashed with &lt;a href=&#34;https://twrp.me/&#34;&gt;TWRP&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Solution on Evernote login issue</title>
      <link>https://blogarious.kairopath.net/posts/2020-06-09-solution-on-evernote-login-issue/</link>
      <pubDate>Tue, 09 Jun 2020 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2020-06-09-solution-on-evernote-login-issue/</guid>
      <description>&lt;p&gt;I faced the login issue with Evernote since around two weeks ago. It leads me to a blank page, with the HTTP status code 418. There is similar issue reported &lt;a href=&#34;https://webcache.googleusercontent.com/search?q=cache:PRKCT_whuMIJ:https://discussion.evernote.com/topic/124479-sync-issuesconnectivity-issues/+&amp;amp;cd=3&amp;amp;hl=en&amp;amp;ct=clnk&amp;amp;gl=my&#34;&gt;here&lt;/a&gt;. I made the bug report, but the issue not yet solved. Looks like it happened in Malaysia and Vietnam according to the forum. Suggested solution in the forum was to use VPN.&lt;/p&gt;&#xA;&lt;p&gt;This is how I solved the issue as a temporary solution to login.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft To Do</title>
      <link>https://blogarious.kairopath.net/posts/2020-04-18-microsoft-to-do/</link>
      <pubDate>Sat, 18 Apr 2020 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2020-04-18-microsoft-to-do/</guid>
      <description>&lt;p&gt;In my previous post, I mentioned I &lt;a href=&#34;https://blogarious.kairopath.net/posts/2020-02-14-wunderlist/&#34;&gt;migrated Wunderlist to Microsoft To Do&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;However, there are two annoying things. Firstly, do not expect there will be Chrome App version of Microsoft To Do similar to Wunderlist and Google Keep, because Chrome Apps is going to be &lt;a href=&#34;https://blog.chromium.org/2020/01/moving-forward-from-chrome-apps.html&#34;&gt;discontinued&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Secondly, I frequently experienced To Do web page doesn&amp;rsquo;t load properly, either stuck at the loading page, or the tasks not showing or showing partially.&lt;/p&gt;</description>
    </item>
    <item>
      <title>LightDM background image</title>
      <link>https://blogarious.kairopath.net/posts/2019-10-20-lightdm-background-image/</link>
      <pubDate>Sun, 20 Oct 2019 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2019-10-20-lightdm-background-image/</guid>
      <description>&lt;p&gt;Recently my old laptop, due to some unknown configuration, it shows a background image in the LightDM login. It is annoying, and it is user specific. Meaning, if I choose another user, the background image will be changed to black background.&lt;/p&gt;&#xA;&lt;p&gt;Searched for the solution on Internet, most of links are about &lt;code&gt;gsettings&lt;/code&gt;, or edit the image in &lt;code&gt;/etc/lightdm/lightdm.conf&lt;/code&gt;. But none of the related to my issue.&lt;/p&gt;&#xA;&lt;p&gt;Finally, I found the solution. The problem is not LightDM itself, but related to AccountsService.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dell Vostro 5459 hibernation</title>
      <link>https://blogarious.kairopath.net/posts/2017-03-11-dell-vostro-5459-hibernation/</link>
      <pubDate>Sat, 11 Mar 2017 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2017-03-11-dell-vostro-5459-hibernation/</guid>
      <description>&lt;p&gt;In the &lt;a href=&#34;https://blogarious.kairopath.net/posts/2016-02-16-dell-vostro-5459-review-and-setup/&#34;&gt;previous post&lt;/a&gt; (1 year ago), I mentioned the hibernation issue. I believed that it was related to the NVidia graphic card. Related forum can be found &lt;a href=&#34;https://bbs.archlinux.org/viewtopic.php?pid=1696489&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;But these few days, I notice that whenever I shut down the laptop, it will show the systemd messages. Previously, if I did suspend my laptop, then resume, then shut down will show only black blank screen, until the power off. I believe that the graphic card issue is being fixed with the recent update.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Linux no sound after boot into Windows</title>
      <link>https://blogarious.kairopath.net/posts/2016-10-14-linux-no-sound-after-boot-into-windows/</link>
      <pubDate>Fri, 14 Oct 2016 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2016-10-14-linux-no-sound-after-boot-into-windows/</guid>
      <description>&lt;p&gt;Just now was trying to boot into Windows, &lt;strong&gt;by plugged in the HDMI cable&lt;/strong&gt;, which supports for video only. But then, I rebooted into Linux without plugged out the HDMI cable. Then, it caused no sound in Linux.&lt;/p&gt;&#xA;&lt;p&gt;Try 1: I killed the pulseaudio, then delete the ~/.config/pulse, and rebooted Linux. Failed.&lt;/p&gt;&#xA;&lt;p&gt;Try 2: Run alsamixer, turned on everything, and do Try 1 again. Failed.&lt;/p&gt;&#xA;&lt;p&gt;Then I guessed it was caused by the HDMI cable, which the Windows may assume there is audio, then caused my computer somehow ouptut the audio through the HDMI, even I rebooted into Linux.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Cloud9</title>
      <link>https://blogarious.kairopath.net/posts/2016-07-21-cloud9/</link>
      <pubDate>Thu, 21 Jul 2016 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2016-07-21-cloud9/</guid>
      <description>&lt;p&gt;Cloud9 is a web-based IDE good for collaboration and online development. You can store your large project on the remote server, and use any computer including netbook with a web browser to develop your system.&lt;/p&gt;&#xA;&lt;p&gt;Now, the problem I faced when using C9 on my Chromium. Firstly, the address bar, tabs, and bookmarks occupy some space in the window. This results a non-editor look and feel. This makes me feel lacking of something. Secondly, the worst part is the shortcut key like Ctrl+W. By pressing this shortcut key, it will invoke the web browser closing window instead of the C9 shortcut key. Meaning, the shortcut key of the web browser has higher precedence than C9 itself.&lt;/p&gt;</description>
    </item>
    <item>
      <title>External HDD struggling</title>
      <link>https://blogarious.kairopath.net/posts/2016-06-10-external-hdd-struggling/</link>
      <pubDate>Fri, 10 Jun 2016 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2016-06-10-external-hdd-struggling/</guid>
      <description>&lt;p&gt;I have an HP 1T external HDD. It is dying. Sh*t!&lt;/p&gt;&#xA;&lt;p&gt;So, I made my final struggling onto it. Though it is not 100% work as planned, I still have around 320G usable space.&lt;/p&gt;&#xA;&lt;h3 id=&#34;symptoms&#34;&gt;Symptoms&lt;/h3&gt;&#xA;&lt;p&gt;Firstly, I found that some files cannot be deleted, I had no choice but plug out the USB cable manually. Try to chkdsk with Windows since it is NTFS partition, but the chkdsk stopped and no response during the progress. Then I know, these were the bad signs. So, have to avoid using it and get a new HDD, and move whatever files able to be moved.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Search song that plays on your computer (Linux)</title>
      <link>https://blogarious.kairopath.net/posts/2016-05-31-search-song-that-plays-on-your-computer-linux/</link>
      <pubDate>Tue, 31 May 2016 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2016-05-31-search-song-that-plays-on-your-computer-linux/</guid>
      <description>&lt;p&gt;Since I am working as freelance developer, I spent most of my &amp;ldquo;otaku&amp;rdquo; time with &lt;a href=&#34;http://www.liveonlineradio.net/japanish/animenfo-radio.htm&#34;&gt;Animenfo Radio&lt;/a&gt;. Now, when listening with some nice songs you like, and you would like to know what the song is, then you can use &lt;a href=&#34;http://www.shazam.com/&#34;&gt;Shazam&lt;/a&gt; to detect it. But using Shazam requires you to turn on your volume and use your mobile phone to detect it.&lt;/p&gt;&#xA;&lt;p&gt;What if, you are listening the songs with your ear-phone?&lt;/p&gt;</description>
    </item>
    <item>
      <title>MIUI 7 Google Calendar sync problem</title>
      <link>https://blogarious.kairopath.net/posts/2016-04-11-miui-7-google-calendar-sync-problem/</link>
      <pubDate>Mon, 11 Apr 2016 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2016-04-11-miui-7-google-calendar-sync-problem/</guid>
      <description>&lt;p&gt;Recently, I found that, the calendar item (agenda) created in MIUI 7 Calendar does not sync to my Google Calendar. Then I ignore it.&lt;/p&gt;&#xA;&lt;p&gt;And until today, I found that, the agenda from Google Calendar does not sync to MIUI7 Calendar too. Then this will be serious. So, I search around the forum, and finally get this solution.&lt;/p&gt;&#xA;&lt;p&gt;Install &lt;strong&gt;Google Calendar&lt;/strong&gt;! This will solve the calendar syncing problem. Enjoy!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Xfce4 Power Manager, NVIDIA, Nouveau backlight issue</title>
      <link>https://blogarious.kairopath.net/posts/2015-11-08-xfce4-power-manager-nvidia-nouveau-backlight-issue/</link>
      <pubDate>Sun, 08 Nov 2015 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2015-11-08-xfce4-power-manager-nvidia-nouveau-backlight-issue/</guid>
      <description>&lt;p&gt;Recently I move back to use my (around) 4 years old laptop, HP Pavilion dv3. It has NVIDIA graphic card. But since I (re-)installed Arch Linux 64 bit on it, I failed to run the X11 with the proprietary NVIDIA driver. As a result, I used the Nouveau module instead. Then, I tried several times and finally successfully run the X11 with NVIDIA driver.&lt;/p&gt;&#xA;&lt;p&gt;To use the Nouveau module, in the mkinitcpio.conf, we have to add in &amp;ldquo;nouveau&amp;rdquo; module, then build the initramfs (refer to wiki &lt;a href=&#34;https://wiki.archlinux.org/index.php/Nouveau#Enable_early_KMS&#34;&gt;page&lt;/a&gt;). And use the &amp;ldquo;Xorg -configure&amp;rdquo; to generate the xorg.conf.&lt;/p&gt;</description>
    </item>
    <item>
      <title>MIUI upgrade</title>
      <link>https://blogarious.kairopath.net/posts/2015-10-28-miui-upgrade/</link>
      <pubDate>Wed, 28 Oct 2015 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2015-10-28-miui-upgrade/</guid>
      <description>&lt;p&gt;Today I just upgraded the MIUI to version 7. Actually, it prompted for the  upgrade since some times last week. But I failed to upgrade, expected to be server problem.&lt;/p&gt;&#xA;&lt;p&gt;So, today I determined to find the solution for manual upgrade. The upgrade version is MIUI 7.0.5.0. I visited the official site and searched the ROM, but the official site does not have this ROM. As a result, just did a search, and found the target ROM in the MIUI official forum. Then everything becomes easy now.&lt;/p&gt;</description>
    </item>
    <item>
      <title>LibreOffice Writer table tips</title>
      <link>https://blogarious.kairopath.net/posts/2015-08-21-libreoffice-writer-table-tips-2/</link>
      <pubDate>Fri, 21 Aug 2015 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2015-08-21-libreoffice-writer-table-tips-2/</guid>
      <description>&lt;h3 id=&#34;preface&#34;&gt;Preface&lt;/h3&gt;&#xA;&lt;p&gt;LibreOffice Writer is better than Microsoft Word. If you are a web developer, you should understand that there are class and style. Using LibreOffice is tended to using class-like style, instead of direct formatting, which causes a lot of inconsistent, troublesome, and time consuming modification throughout the word processing. And this is happened when the newbies are using Microsoft Word to create templates for the advanced user like me, and causes me full of trouble as being tortured.&lt;/p&gt;</description>
    </item>
    <item>
      <title>WINE and CDemu</title>
      <link>https://blogarious.kairopath.net/posts/2015-02-26-wine-and-cdemu/</link>
      <pubDate>Thu, 26 Feb 2015 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2015-02-26-wine-and-cdemu/</guid>
      <description>&lt;p&gt;Previously I &lt;a href=&#34;https://blogarious.kairopath.net/posts/2012-05-26-installing-games-with-cd-iso-images-and-change-disc-in-wine/&#34; title=&#34;Installing games with CD iso images and change disc in WINE&#34;&gt;posted&lt;/a&gt; about installing software/game with different CD/DVD ISO images in WINE. But this method does not work in some installation ISO images. Because these installation will detect for the CD/DVD. The method above does not solve the problem because the installation does not detect the CD/DVD.&lt;/p&gt;&#xA;&lt;p&gt;Recently, I found a better solution. It is &lt;a href=&#34;http://cdemu.sourceforge.net/&#34;&gt;CDemu&lt;/a&gt;. It is similar to DAEMON Tools in Windows. It will emulate the optical disc drive in Linux. As a result, it will produce /dev/sr0, /dev/sr1, and so on. Because it is a virtual CD/DVD, thus we have to load the image. It can be easily loaded by using &lt;strong&gt;gcdemu&lt;/strong&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>JDownloader 2 BETA Japanese font</title>
      <link>https://blogarious.kairopath.net/posts/2015-02-23-jdownloader-2-beta-japanese-font/</link>
      <pubDate>Mon, 23 Feb 2015 00:00:00 +0000</pubDate>
      <guid>https://blogarious.kairopath.net/posts/2015-02-23-jdownloader-2-beta-japanese-font/</guid>
      <description>&lt;p&gt;Previously I was reluctant to use JDownloader 2 BETA version. The main reason is that I will see boxes when the files contain Japanese characters. But this problem solved now.&lt;/p&gt;&#xA;&lt;p&gt;As I am using Arch Linux, the JDownloader 2 is installed at /opt/JDownloader. We have to create two files:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;/opt/JDownloader/translations/org/jdownloader/gui/translate/GuiTranslation.en_custom.lng&lt;/li&gt;&#xA;&lt;li&gt;/opt/JDownloader/translations/org/appwork/swing/synthetica/LanguageFileSetup.en_custom.lng&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;The GuiTranslation.en_custom.lng is a copy of &lt;strong&gt;GuiTranslation.en.lng&lt;/strong&gt;. So that the interface is still using English language. Then LanguageFileSetup.en_custom.lng is a copy of &lt;strong&gt;LanguageFileSetup.ja.lng&lt;/strong&gt;. So that the font is using Japanese language font instead.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
