/usr/share/doc/libjs-edit-area/customization_language.html is in libjs-edit-area 0.8.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>EditArea documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="doc_style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class='header'>
<h1>Customization - Creating a language translation</h1>
</div>
<div class='content'>
<h2>Making language file</h2>
<p>Language packs are simply JavaScript name/value arrays placed in the ".js"
files in the "lang" directory. Notice there are two kinds of language packs.</p>
<ul>
<li><p>The first one is the general one located at "edit_area/langs/" and used by the EditArea core.
The example below shows how the search and replace texts are lang packed.</p>
<pre>editAreaLoader.lang["en"]={
search: "search",
replace: "replace"
};</pre>
</li>
<li><p>The second ones are plugins specific language packs. These are contained in
"edit_area/plugins/<plugin_name>/langs/". Here is the example of the test plugin.</p>
<pre>editArea.add_lang("en",{
test_select: "select tag",
test_but: "test button"
});</pre>
<p>For creating a new plugin, remember to always use the "<plugin_name>"
prefix for these value names so that they don't override other variables in the templates.
</p>
</li>
</ul>
<p>
Remember, the last translation line should not have a , character at the end.
</p>
<h3>Files to edit</h3>
<p>
When translating EditArea, these are the files that currently needs to be translated:
</p>
<p>
edit_area/langs/en.js<br />
edit_area/plugins/<plugin_name>/langs/en.js<br />
</p>
<h3>Contributing your language pack</h3>
<p>
Go to the <a href="http://sourceforge.net/tracker/?atid=829999&group_id=164008&func=browse">sourceforge patch page</a>
and upload a zip containing all the language files in the correct directory structure.<br /><br />
Please translate all the plugins, even if you aren't using them.<br />
</p>
</div>
<div class='footer'>
<div class="indexlink"><a href="index.html">Index</a></div>
<div class='copyright'>EditArea - © Christophe Dolivet 2007-2010</div>
<br style="clear: both" />
</div>
</body>
</html>
|