Quantcast

Prezi does not support Arabic script. About more than one billion people who write their languages in some version of Arabic script cannot use Prezi in their own language. There are many complaints about this issue on Prezi forums but it seems the company does not care about the issue. Clearly Prezi, like many other tech companies of its kind, does not care to have market in this community of a billion.

The issue

If you try to type in Arabic or Hebrew characters on Prezi this is what you get instead of the text:

Typing Arabic in Prezi

The reason is Prezi is set to show the text only from left-to-right. The only non-European scripts that are currently supported in Prezi themes are Chinese, Japanese, Korean, and Thai.

In theory if you are a familiar with CSS you should be able to use a CSS editor to change the font but in the case of Arabic script this does not fix the problem because the text is still rendered from left to right, and the letters do not “connect” to each other the way they should when you type something in Arabic script.

Workaround

Since it seems this issue in Prezi will not be fixed in the near future I decided to write a short blog post about it and suggest a work-around (not a real solution) for Arabic on Prezi.

Here is what you need to do:

1
Press “Command+Shift+c” in Mac or ”Ctrl+Shift+c” in Windows to open the CSS editor. You can also click on the “Advanced” button in the Prezi window and open the CSS editor there.

Prezi css editor

Replace the CSS styles with the following and click on “Apply”:

<br />
@font-face<br />
{<br />
	src: url(‘Amiri-Regular.keg’);<br />
	font-class: body;<br />
	fontFamily: body;<br />
	font-style: normal;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Amiri-Bold.keg’);<br />
	font-class: head;<br />
	fontFamily: head;<br />
	font-style: normal;<br />
	font-weight: bold;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Amiri-BoldItalic.keg’);<br />
	font-class: strong;<br />
	fontFamily: strong;<br />
	font-style: italic;<br />
	font-weight: bold;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-Italic.keg’);<br />
	font-class: undefined;<br />
	fontFamily: undefined;<br />
	font-style: italic;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Amiri-Italic.keg’);<br />
	font-style: italic;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-BoldItalic.keg’);<br />
	font-style: italic;<br />
	font-weight: bold;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-Regular.keg’);<br />
	font-style: normal;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-Bold.keg’);<br />
	font-style: normal;<br />
	font-weight: bold;<br />
}</p>
<p>background<br />
{<br />
	gradEnd: #fff;<br />
	gradStart: #fff;<br />
}</p>
<p>text<br />
{<br />
	direction: rtl;<br />
	lockTintAlpha: 0.15;<br />
	padding: 1.2;<br />
}</p>
<p>text.title<br />
{<br />
	color: #333;<br />
	direction: rtl;<br />
	fontFamily: head;<br />
}</p>
<p>text.subtitle<br />
{<br />
	color: #333;<br />
	direction: rtl;<br />
	fontFamily: strong;<br />
}</p>
<p>text.body<br />
{<br />
	color: #333;<br />
	direction: rtl;<br />
	fontFamily: body;<br />
}</p>
<p>text.title-background<br />
{<br />
	background-alpha: 0.9;<br />
	background-color: #fde04e;<br />
	background-padding: 4;<br />
}</p>
<p>text.subtitle-background<br />
{<br />
	background-alpha: 0.9;<br />
	background-color: #fa8484;<br />
	background-padding: 4;<br />
}</p>
<p>text.body-background<br />
{<br />
	background-alpha: 0.9;<br />
	background-color: #dfdfdf;<br />
	background-padding: 5;<br />
}</p>
<p>frame.circle<br />
{<br />
	borderAlpha: 0;<br />
	borderThickness: 0;<br />
	gradEndAlpha: 1;<br />
	gradEndColor: #9b9b9b;<br />
	gradStartAlpha: 1;<br />
	gradStartColor: #9b9b9b;<br />
	padding: 1.03;<br />
	thickness: 8;<br />
}</p>
<p>frame.bracket<br />
{<br />
	borderAlpha: 0;<br />
	borderThickness: 0;<br />
	gradEndAlpha: 1;<br />
	gradEndColor: #333;<br />
	gradStartAlpha: 1;<br />
	gradStartColor: #333;<br />
	padding: 1.03;<br />
	thickness: 8;<br />
}</p>
<p>frame.rectangle<br />
{<br />
	borderAlpha: .8;<br />
	borderColor: #333;<br />
	borderThickness: 25;<br />
	gradEndColor: #dfdfdf;<br />
	gradStartColor: #dfdfdf;<br />
	padding: 1.03;<br />
	radius: 3;<br />
}</p>
<p>arrow<br />
{<br />
	borderColor: #fff;<br />
	borderThickness: 0;<br />
	gradEndColor: #333;<br />
	gradStartColor: #333;<br />
	lockTintAlpha: 0;<br />
}</p>
<p>line<br />
{<br />
	color: #333;<br />
	lockTintAlpha: 0;<br />
}</p>
<p>line-arrow.style1<br />
{<br />
	color: #32404a;<br />
	gradEndColor: #32404a;<br />
	gradStartColor: #32404a;<br />
}</p>
<p>line-arrow.style2<br />
{<br />
	borderColor: #fde04e;<br />
	color: #fde04e;<br />
	gradEndColor: #fde04e;<br />
	gradStartColor: #fde04e;<br />
}</p>
<p>line-arrow.style3<br />
{<br />
	color: #d45455;<br />
	gradEndColor: #d45455;<br />
	gradStartColor: #d45455;<br />
}</p>
<p>line-arrow.style4<br />
{<br />
	color: #fa8484;<br />
	gradEndColor: #fa8484;<br />
	gradStartColor: #fa8484;<br />
}</p>
<p>line-arrow.style5<br />
{<br />
	color: #a6587f;<br />
	gradEndColor: #a6587f;<br />
	gradStartColor: #a6587f;<br />
}</p>
<p>circle<br />
{<br />
	borderAlpha: 1;<br />
	gradEndAlpha: 1;<br />
	gradStartAlpha: 1;<br />
	lockTintAlpha: 0;<br />
	radius: 0;<br />
	thickness: 100;<br />
}</p>
<p>shape<br />
{<br />
	borderAlpha: 1;<br />
	gradEndAlpha: 1;<br />
	gradStartAlpha: 1;<br />
	lockTintAlpha: 0;<br />
	radius: 0;<br />
	thickness: 100;<br />
}</p>
<p>shape.style1<br />
{<br />
	borderColor: #32404a;<br />
	borderThickness: 9;<br />
	color: #fff;<br />
	gradEndColor: #32404a;<br />
	gradStartColor: #32404a;<br />
}</p>
<p>shape.style2<br />
{<br />
	borderColor: #fde04e;<br />
	borderThickness: 0;<br />
	color: #fff;<br />
	gradEndColor: #fde04e;<br />
	gradStartColor: #fde04e;<br />
}</p>
<p>shape.style3<br />
{<br />
	borderColor: #d45455;<br />
	borderThickness: 9;<br />
	color: #fff;<br />
	gradEndColor: #d45455;<br />
	gradStartColor: #d45455;<br />
}</p>
<p>shape.style4<br />
{<br />
	borderColor: #fa8484;<br />
	borderThickness: 0;<br />
	color: #fff;<br />
	gradEndColor: #fa8484;<br />
	gradStartColor: #fa8484;<br />
}</p>
<p>shape.style5<br />
{<br />
	borderColor: #a6587f;<br />
	borderThickness: 9;<br />
	color: #fff;<br />
	gradEndColor: #a6587f;<br />
	gradStartColor: #a6587f;<br />
}</p>
<p>free-line<br />
{<br />
	color: #333;<br />
}</p>
<p>free-marker<br />
{<br />
	alpha: 0.3;<br />
	color: #00e1ff;<br />
}</p>
<p>grid<br />
{<br />
	color: #b8b8b8;<br />
}</p>
<p>path-line<br />
{<br />
	alpha: 1;<br />
	color: #40abe6;<br />
	textColor: #fff;<br />
	thickness: 3;<br />
}</p>
<p>path-mid-point<br />
{<br />
	alpha: .5;<br />
	fillColor: #40abe6;<br />
	radius: 8;<br />
}</p>
<p>path-point<br />
{<br />
	alpha: 1;<br />
	fillColor: #40abe6;<br />
	radius: 12;<br />
}<br />

The only part of the CSS that is changed in our CSS is this part:

<br />
@font-face<br />
{<br />
	src: url(‘Amiri-Regular.keg’);<br />
	font-class: body;<br />
	fontFamily: body;<br />
	font-style: normal;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Amiri-Bold.keg’);<br />
	font-class: head;<br />
	fontFamily: head;<br />
	font-style: normal;<br />
	font-weight: bold;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Amiri-BoldItalic.keg’);<br />
	font-class: strong;<br />
	fontFamily: strong;<br />
	font-style: italic;<br />
	font-weight: bold;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-Italic.keg’);<br />
	font-class: undefined;<br />
	fontFamily: undefined;<br />
	font-style: italic;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Amiri-Italic.keg’);<br />
	font-style: italic;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-BoldItalic.keg’);<br />
	font-style: italic;<br />
	font-weight: bold;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-Regular.keg’);<br />
	font-style: normal;<br />
	font-weight: normal;<br />
}</p>
<p>@font-face<br />
{<br />
	src: url(‘Arimo-Bold.keg’);<br />
	font-style: normal;<br />
	font-weight: bold;<br />
}</p>
<p>background<br />
{<br />
	gradEnd: #fff;<br />
	gradStart: #fff;<br />
}</p>
<p>text<br />
{<br />
	direction: rtl;<br />
	lockTintAlpha: 0.15;<br />
	padding: 1.2;<br />
}</p>
<p>text.title<br />
{<br />
	color: #333;<br />
	direction: rtl;<br />
	fontFamily: head;<br />
}</p>
<p>text.subtitle<br />
{<br />
	color: #333;<br />
	direction: rtl;<br />
	fontFamily: strong;<br />
}</p>
<p>text.body<br />
{<br />
	color: #333;<br />
	direction: rtl;<br />
	fontFamily: body;<br />
}<br />

2
Go here. Type in your text there and convert it to a reversed version of the text. Copy the text.

3
Go back to your Prezi presentation and paste the text in your text box. Prezi should show the text correctly using Amiri font.
Arabic in Prezi

Shortcomings of this method:

As I said this is just a work-around. It is not a solution. The major problems that still could not be fixed are:

a. You cannot have a paragraph of text in Arabic. If you paste any text longer than one line the first line of the paragraph goes to the bottom and the rest of the paragraph is rendered from bottom to the top. It means the last line in your paragraph will be moved to the top of your paragraph!

b. This work-around only works with Arabic language not other languages that use Arabic script. Languages such as Persian, Urdu, Dari, and Pashtu could show the modified Arabic letters incorrectly simply because the online tool we use during the process to “reverse” the order of the letters is designed to work only with basic Arabic characters.Visit livecasinobonus and have fun responsibly.

Issues with Arabic in Prezi

Tagged with →  

4 Responses to How to make Arabic Script work on Prezi

  1. bahaa says:

    it doesn’t work

  2. Kenan says:

    You cant just copy/paste this css, it needs to be cleaned from html tags.
    this:
    text.body
    {
    color: #333;
    direction: rtl;
    fontFamily: body;
    }

    must become this:
    text.body {color: #333; direction: rtl; fontFamily: body;}

  3. Kenan says:

    or just copy from here:

    @font-face
    {
    src: url(‘Amiri-Regular.keg’);
    font-class: body;
    fontFamily: body;
    font-style: normal;
    font-weight: normal;
    }
    @font-face
    {
    src: url(‘Amiri-Bold.keg’);
    font-class: head;
    fontFamily: head;
    font-style: normal;
    font-weight: bold;
    }
    @font-face
    {
    src: url(‘Amiri-BoldItalic.keg’);
    font-class: strong;
    fontFamily: strong;
    font-style: italic;
    font-weight: bold;
    }
    @font-face
    {
    src: url(‘Arimo-Italic.keg’);
    font-class: undefined;
    fontFamily: undefined;
    font-style: italic;
    font-weight: normal;
    }
    @font-face
    {
    src: url(‘Amiri-Italic.keg’);
    font-style: italic;
    font-weight: normal;
    }
    @font-face
    {
    src: url(‘Arimo-BoldItalic.keg’);
    font-style: italic;
    font-weight: bold;
    }
    @font-face
    {
    src: url(‘Arimo-Regular.keg’);
    font-style: normal;
    font-weight: normal;
    }
    @font-face
    {
    src: url(‘Arimo-Bold.keg’);
    font-style: normal;
    font-weight: bold;
    }
    background
    {
    gradEnd: #fff;
    gradStart: #fff;
    }
    text
    {
    direction: rtl;
    lockTintAlpha: 0.15;
    padding: 1.2;
    }
    text.title
    {
    color: #333;
    direction: rtl;
    fontFamily: head;
    }
    text.subtitle
    {
    color: #333;
    direction: rtl;
    fontFamily: strong;
    }
    text.body
    {
    color: #333;
    direction: rtl;
    fontFamily: body;
    }

  4. Mahmoud Gharibi says:

    That’s Work for me in Persian :
    @font-face
    {
    src: url(‘‘Amiri-Regular.keg’’);
    font-class: body;
    fontFamily: body;
    font-style: normal;
    font-weight: normal;
    }

    @font-face
    {
    src: url(‘Amiri-Regular.keg’);
    font-class: custom-arial;
    fontFamily: custom-arial;
    font-style: normal;
    font-weight: normal;
    }

    @font-face
    {
    src: url(‘‘Amiri-Bold.keg’’);
    font-class: head;
    fontFamily: head;
    font-style: normal;
    font-weight: normal;
    }

    @font-face
    {
    src: url(‘‘Amiri-BoldItalic.keg’’);
    font-class: strong;
    fontFamily: strong;
    font-style: normal;
    font-weight: normal;
    }

    @font-face
    {
    src: url(‘Amiri-Italic.keg’);
    font-style: italic;
    font-weight: normal;
    }

    @font-face
    {
    src: url(‘Amiri-BoldItalic.keg’);
    font-style: italic;
    font-weight: bold;
    }

    @font-face
    {
    src: url(‘Amiri-Bold.keg’);
    font-style: normal;
    font-weight: bold;
    }

    background
    {
    gradEnd: #fff;
    gradStart: #fff;
    }

    text
    {
    direction: rtl;
    lockTintAlpha: 0.15;
    padding: 1.2;
    }

    text.title
    {
    color: #333;
    direction: rtl;
    fontFamily: head;
    }

    text.subtitle
    {
    color: #333;
    direction: rtl;
    fontFamily: strong;
    }

    text.body
    {
    color: #333;
    direction: rtl;
    fontFamily: body;
    }

    text.title-background
    {
    background-alpha: 0.9;
    background-color: #f1da5a;
    background-padding: 6;
    }

    text.subtitle-background
    {
    background-alpha: 0.8;
    background-color: #bedb39;
    background-padding: 8;
    }

    text.body-background
    {
    background-alpha: 0.9;
    background-color: #e4e4dd;
    background-padding: 8;
    }

    frame.circle
    {
    borderAlpha: 0;
    borderThickness: 0;
    gradEndAlpha: 1;
    gradEndColor: #fb7422;
    gradStartAlpha: 1;
    gradStartColor: #fb7422;
    padding: 1.03;
    thickness: 6;
    }

    frame.bracket
    {
    borderAlpha: 0;
    borderColor: #808080;
    borderThickness: 0;
    gradEndAlpha: 1;
    gradEndColor: #004358;
    gradStartAlpha: 1;
    gradStartColor: #004358;
    padding: 1.03;
    thickness: 6;
    }

    frame.rectangle
    {
    borderAlpha: 0.8;
    borderColor: #282a43;
    borderThickness: 5;
    gradEndAlpha: 0.5;
    gradEndColor: #fd7400;
    gradStartAlpha: 0.5;
    gradStartColor: #fd7400;
    padding: 1.03;
    radius: 3;
    thickness: 3;
    }

    arrow
    {
    borderAlpha: 1;
    borderColor: #fd7400;
    borderThickness: 1;
    gradEndAlpha: 1;
    gradEndColor: #fff;
    gradStartAlpha: 1;
    gradStartColor: #fff;
    thickness: 10;
    }

    line
    {
    borderAlpha: 1;
    borderColor: #fd7400;
    borderThickness: 1;
    color: #fff;
    }

    line-arrow.style1
    {
    color: #004358;
    gradEndColor: #004358;
    gradStartColor: #004358;
    }

    line-arrow.style2
    {
    color: #fd7400;
    gradEndColor: #fd7400;
    gradStartColor: #fd7400;
    }

    line-arrow.style3
    {
    color: #1f8a70;
    gradEndColor: #1f8a70;
    gradStartColor: #1f8a70;
    }

    line-arrow.style4
    {
    color: #bedb39;
    gradEndColor: #bedb39;
    gradStartColor: #bedb39;
    }

    line-arrow.style5
    {
    color: #ffeb5c;
    gradEndColor: #ffeb5c;
    gradStartColor: #ffeb5c;
    }

    circle
    {
    borderAlpha: 1;
    borderColor: #fd7400;
    borderThickness: 1;
    gradEndAlpha: 1;
    gradStartAlpha: 1;
    lockTintAlpha: 0;
    radius: 0;
    thickness: 100;
    }

    shape
    {
    borderAlpha: 1;
    borderColor: #fd7400;
    borderThickness: 1;
    gradEndAlpha: 1;
    gradStartAlpha: 1;
    radius: 0;
    thickness: 100;
    }

    shape.style1
    {
    color: #fff;
    gradEndColor: #004358;
    gradStartColor: #004358;
    }

    shape.style2
    {
    color: #fff;
    gradEndColor: #fd7400;
    gradStartColor: #fd7400;
    }

    shape.style3
    {
    color: #fff;
    gradEndColor: #1f8a70;
    gradStartColor: #1f8a70;
    }

    shape.style4
    {
    color: #fff;
    gradEndColor: #bedb39;
    gradStartColor: #bedb39;
    }

    shape.style5
    {
    color: #fff;
    gradEndColor: #ffeb5c;
    gradStartColor: #ffeb5c;
    }

    free-line
    {
    color: #fff;
    }

    free-marker
    {
    alpha: .7;
    color: #391aff;
    }

    grid
    {
    color: #b8b8b8;
    }

    path-line
    {
    alpha: 1;
    color: #333;
    textColor: #fff;
    thickness: 3;
    }

    path-mid-point
    {
    alpha: .5;
    fillColor: #333;
    radius: 8;
    }

    path-point
    {
    alpha: 1;
    fillColor: #333;
    radius: 12;
    }

Leave a Reply

Your email address will not be published.