作者 zhangFan

机场口岸通关物流辅助管理系统

运行版
正在显示 46 个修改的文件 包含 4861 行增加0 行删除

要显示太多修改。

为保证性能只显示 46 of 46+ 个文件。

  1 +#
  2 +# Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +# For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +#
  5 +
  6 +#
  7 +# On some specific Linux installations you could face problems with Firefox.
  8 +# It could give you errors when loading the editor saying that some illegal
  9 +# characters were found (three strange chars in the beginning of the file).
  10 +# This could happen if you map the .js or .css files to PHP, for example.
  11 +#
  12 +# Those characters are the Byte Order Mask (BOM) of the Unicode encoded files.
  13 +# All FCKeditor files are Unicode encoded.
  14 +#
  15 +
  16 +AddType application/x-javascript .js
  17 +AddType text/css .css
  18 +
  19 +#
  20 +# If PHP is mapped to handle XML files, you could have some issues. The
  21 +# following will disable it.
  22 +#
  23 +
  24 +AddType text/xml .xml
  1 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2 +<!--
  3 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  4 +For licensing, see LICENSE.html or http://ckeditor.com/license
  5 +-->
  6 +<html xmlns="http://www.w3.org/1999/xhtml">
  7 +<head>
  8 + <title>Installation Guide - CKEditor</title>
  9 + <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  10 + <style type="text/css">
  11 + h3
  12 + {
  13 + border-bottom: 1px solid #AAAAAA;
  14 + }
  15 + pre
  16 + {
  17 + background-color: #F9F9F9;
  18 + border: 1px dashed #2F6FAB;
  19 + padding: 1em;
  20 + line-height: 1.1em;
  21 + }
  22 + #footer hr
  23 + {
  24 + margin: 10px 0 15px 0;
  25 + height: 1px;
  26 + border: solid 1px gray;
  27 + border-bottom: none;
  28 + }
  29 + #footer p
  30 + {
  31 + margin: 0 10px 10px 10px;
  32 + float: left;
  33 + }
  34 + #footer #copy
  35 + {
  36 + float: right;
  37 + }
  38 + </style>
  39 +</head>
  40 +<body>
  41 + <h1>
  42 + CKEditor Installation Guide</h1>
  43 + <h3>
  44 + What&#39;s CKEditor?</h3>
  45 + <p>
  46 + CKEditor is a text editor to be used inside web pages. It&#39;s not a replacement
  47 + for desktop text editors like Word or OpenOffice, but a component to be used as
  48 + part of web applications and web sites.</p>
  49 + <h3>
  50 + Installation</h3>
  51 + <p>
  52 + Installing CKEditor is an easy task. Just follow these simple steps:</p>
  53 + <ol>
  54 + <li><strong>Download</strong> the latest version of the editor from our web site: <a
  55 + href="http://ckeditor.com">http://ckeditor.com</a>. You should have already completed
  56 + this step, but be sure you have the very latest version.</li>
  57 + <li><strong>Extract</strong> (decompress) the downloaded file into the root of your
  58 + web site.</li>
  59 + </ol>
  60 + <p>
  61 + <strong>Note:</strong> CKEditor is by default installed in the &quot;ckeditor&quot;
  62 + folder. You can place the files in whichever you want though.</p>
  63 + <h3>
  64 + Checking Your Installation
  65 + </h3>
  66 + <p>
  67 + The editor comes with a few sample pages that can be used to verify that installation
  68 + proceeded properly. Take a look at the <a href="_samples">_samples</a> directory.</p>
  69 + <p>
  70 + To test your installation, just call the following page at your web site:</p>
  71 + <pre>
  72 +http://&lt;your site&gt;/&lt;CKEditor installation path&gt;/_samples/index.html
  73 +
  74 +For example:
  75 +http://www.example.com/ckeditor/_samples/index.html</pre>
  76 + <h3>
  77 + Documentation</h3>
  78 + <p>
  79 + The full editor documentation is available online at the following address:<br />
  80 + <a href="http://docs.cksource.com/ckeditor">http://docs.cksource.com/ckeditor</a></p>
  81 + <div id="footer">
  82 + <hr />
  83 + <p>
  84 + CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
  85 + </p>
  86 + <p id="copy">
  87 + Copyright &copy; 2003-2012, <a href="http://cksource.com/">CKSource</a> - Frederico
  88 + Knabben. All rights reserved.
  89 + </p>
  90 + </div>
  91 +</body>
  92 +</html>
  1 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3 +<!--
  4 +== BEGIN TEXT ONLY VERSION ==
  5 +
  6 +Software License Agreement
  7 +==========================
  8 +
  9 +CKEditor - The text editor for Internet - http://ckeditor.com
  10 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  11 +
  12 +Licensed under the terms of any of the following licenses at your
  13 +choice:
  14 +
  15 + - GNU General Public License Version 2 or later (the "GPL")
  16 + http://www.gnu.org/licenses/gpl.html
  17 + (See Appendix A)
  18 +
  19 + - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  20 + http://www.gnu.org/licenses/lgpl.html
  21 + (See Appendix B)
  22 +
  23 + - Mozilla Public License Version 1.1 or later (the "MPL")
  24 + http://www.mozilla.org/MPL/MPL-1.1.html
  25 + (See Appendix C)
  26 +
  27 +You are not required to, but if you want to explicitly declare the
  28 +license you have chosen to be bound to when using, reproducing,
  29 +modifying and distributing this software, just include a text file
  30 +titled "legal.txt" in your version of this software, indicating your
  31 +license choice.
  32 +
  33 +Sources of Intellectual Property Included in CKEditor
  34 +=====================================================
  35 +
  36 +Where not otherwise indicated, all CKEditor content is authored by
  37 +CKSource engineers and consists of CKSource-owned intellectual
  38 +property. In some specific instances, CKEditor will incorporate work
  39 +done by developers outside of CKSource with their express permission.
  40 +
  41 +Trademarks
  42 +==========
  43 +
  44 +CKEditor is a trademark of CKSource - Frederico Knabben. All other brand
  45 +and product names are trademarks, registered trademarks or service
  46 +marks of their respective holders.
  47 +
  48 +Appendix A: The GPL License
  49 +===========================
  50 +
  51 + GNU GENERAL PUBLIC LICENSE
  52 + Version 2, June 1991
  53 +
  54 + Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
  55 + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  56 + Everyone is permitted to copy and distribute verbatim copies
  57 + of this license document, but changing it is not allowed.
  58 +
  59 + Preamble
  60 +
  61 + The licenses for most software are designed to take away your
  62 +freedom to share and change it. By contrast, the GNU General Public
  63 +License is intended to guarantee your freedom to share and change free
  64 +software-to make sure the software is free for all its users. This
  65 +General Public License applies to most of the Free Software
  66 +Foundation's software and to any other program whose authors commit to
  67 +using it. (Some other Free Software Foundation software is covered by
  68 +the GNU Lesser General Public License instead.) You can apply it to
  69 +your programs, too.
  70 +
  71 + When we speak of free software, we are referring to freedom, not
  72 +price. Our General Public Licenses are designed to make sure that you
  73 +have the freedom to distribute copies of free software (and charge for
  74 +this service if you wish), that you receive source code or can get it
  75 +if you want it, that you can change the software or use pieces of it
  76 +in new free programs; and that you know you can do these things.
  77 +
  78 + To protect your rights, we need to make restrictions that forbid
  79 +anyone to deny you these rights or to ask you to surrender the rights.
  80 +These restrictions translate to certain responsibilities for you if you
  81 +distribute copies of the software, or if you modify it.
  82 +
  83 + For example, if you distribute copies of such a program, whether
  84 +gratis or for a fee, you must give the recipients all the rights that
  85 +you have. You must make sure that they, too, receive or can get the
  86 +source code. And you must show them these terms so they know their
  87 +rights.
  88 +
  89 + We protect your rights with two steps: (1) copyright the software, and
  90 +(2) offer you this license which gives you legal permission to copy,
  91 +distribute and/or modify the software.
  92 +
  93 + Also, for each author's protection and ours, we want to make certain
  94 +that everyone understands that there is no warranty for this free
  95 +software. If the software is modified by someone else and passed on, we
  96 +want its recipients to know that what they have is not the original, so
  97 +that any problems introduced by others will not reflect on the original
  98 +authors' reputations.
  99 +
  100 + Finally, any free program is threatened constantly by software
  101 +patents. We wish to avoid the danger that redistributors of a free
  102 +program will individually obtain patent licenses, in effect making the
  103 +program proprietary. To prevent this, we have made it clear that any
  104 +patent must be licensed for everyone's free use or not licensed at all.
  105 +
  106 + The precise terms and conditions for copying, distribution and
  107 +modification follow.
  108 +
  109 + GNU GENERAL PUBLIC LICENSE
  110 + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  111 +
  112 + 0. This License applies to any program or other work which contains
  113 +a notice placed by the copyright holder saying it may be distributed
  114 +under the terms of this General Public License. The "Program", below,
  115 +refers to any such program or work, and a "work based on the Program"
  116 +means either the Program or any derivative work under copyright law:
  117 +that is to say, a work containing the Program or a portion of it,
  118 +either verbatim or with modifications and/or translated into another
  119 +language. (Hereinafter, translation is included without limitation in
  120 +the term "modification".) Each licensee is addressed as "you".
  121 +
  122 +Activities other than copying, distribution and modification are not
  123 +covered by this License; they are outside its scope. The act of
  124 +running the Program is not restricted, and the output from the Program
  125 +is covered only if its contents constitute a work based on the
  126 +Program (independent of having been made by running the Program).
  127 +Whether that is true depends on what the Program does.
  128 +
  129 + 1. You may copy and distribute verbatim copies of the Program's
  130 +source code as you receive it, in any medium, provided that you
  131 +conspicuously and appropriately publish on each copy an appropriate
  132 +copyright notice and disclaimer of warranty; keep intact all the
  133 +notices that refer to this License and to the absence of any warranty;
  134 +and give any other recipients of the Program a copy of this License
  135 +along with the Program.
  136 +
  137 +You may charge a fee for the physical act of transferring a copy, and
  138 +you may at your option offer warranty protection in exchange for a fee.
  139 +
  140 + 2. You may modify your copy or copies of the Program or any portion
  141 +of it, thus forming a work based on the Program, and copy and
  142 +distribute such modifications or work under the terms of Section 1
  143 +above, provided that you also meet all of these conditions:
  144 +
  145 + a) You must cause the modified files to carry prominent notices
  146 + stating that you changed the files and the date of any change.
  147 +
  148 + b) You must cause any work that you distribute or publish, that in
  149 + whole or in part contains or is derived from the Program or any
  150 + part thereof, to be licensed as a whole at no charge to all third
  151 + parties under the terms of this License.
  152 +
  153 + c) If the modified program normally reads commands interactively
  154 + when run, you must cause it, when started running for such
  155 + interactive use in the most ordinary way, to print or display an
  156 + announcement including an appropriate copyright notice and a
  157 + notice that there is no warranty (or else, saying that you provide
  158 + a warranty) and that users may redistribute the program under
  159 + these conditions, and telling the user how to view a copy of this
  160 + License. (Exception: if the Program itself is interactive but
  161 + does not normally print such an announcement, your work based on
  162 + the Program is not required to print an announcement.)
  163 +
  164 +These requirements apply to the modified work as a whole. If
  165 +identifiable sections of that work are not derived from the Program,
  166 +and can be reasonably considered independent and separate works in
  167 +themselves, then this License, and its terms, do not apply to those
  168 +sections when you distribute them as separate works. But when you
  169 +distribute the same sections as part of a whole which is a work based
  170 +on the Program, the distribution of the whole must be on the terms of
  171 +this License, whose permissions for other licensees extend to the
  172 +entire whole, and thus to each and every part regardless of who wrote it.
  173 +
  174 +Thus, it is not the intent of this section to claim rights or contest
  175 +your rights to work written entirely by you; rather, the intent is to
  176 +exercise the right to control the distribution of derivative or
  177 +collective works based on the Program.
  178 +
  179 +In addition, mere aggregation of another work not based on the Program
  180 +with the Program (or with a work based on the Program) on a volume of
  181 +a storage or distribution medium does not bring the other work under
  182 +the scope of this License.
  183 +
  184 + 3. You may copy and distribute the Program (or a work based on it,
  185 +under Section 2) in object code or executable form under the terms of
  186 +Sections 1 and 2 above provided that you also do one of the following:
  187 +
  188 + a) Accompany it with the complete corresponding machine-readable
  189 + source code, which must be distributed under the terms of Sections
  190 + 1 and 2 above on a medium customarily used for software interchange; or,
  191 +
  192 + b) Accompany it with a written offer, valid for at least three
  193 + years, to give any third party, for a charge no more than your
  194 + cost of physically performing source distribution, a complete
  195 + machine-readable copy of the corresponding source code, to be
  196 + distributed under the terms of Sections 1 and 2 above on a medium
  197 + customarily used for software interchange; or,
  198 +
  199 + c) Accompany it with the information you received as to the offer
  200 + to distribute corresponding source code. (This alternative is
  201 + allowed only for noncommercial distribution and only if you
  202 + received the program in object code or executable form with such
  203 + an offer, in accord with Subsection b above.)
  204 +
  205 +The source code for a work means the preferred form of the work for
  206 +making modifications to it. For an executable work, complete source
  207 +code means all the source code for all modules it contains, plus any
  208 +associated interface definition files, plus the scripts used to
  209 +control compilation and installation of the executable. However, as a
  210 +special exception, the source code distributed need not include
  211 +anything that is normally distributed (in either source or binary
  212 +form) with the major components (compiler, kernel, and so on) of the
  213 +operating system on which the executable runs, unless that component
  214 +itself accompanies the executable.
  215 +
  216 +If distribution of executable or object code is made by offering
  217 +access to copy from a designated place, then offering equivalent
  218 +access to copy the source code from the same place counts as
  219 +distribution of the source code, even though third parties are not
  220 +compelled to copy the source along with the object code.
  221 +
  222 + 4. You may not copy, modify, sublicense, or distribute the Program
  223 +except as expressly provided under this License. Any attempt
  224 +otherwise to copy, modify, sublicense or distribute the Program is
  225 +void, and will automatically terminate your rights under this License.
  226 +However, parties who have received copies, or rights, from you under
  227 +this License will not have their licenses terminated so long as such
  228 +parties remain in full compliance.
  229 +
  230 + 5. You are not required to accept this License, since you have not
  231 +signed it. However, nothing else grants you permission to modify or
  232 +distribute the Program or its derivative works. These actions are
  233 +prohibited by law if you do not accept this License. Therefore, by
  234 +modifying or distributing the Program (or any work based on the
  235 +Program), you indicate your acceptance of this License to do so, and
  236 +all its terms and conditions for copying, distributing or modifying
  237 +the Program or works based on it.
  238 +
  239 + 6. Each time you redistribute the Program (or any work based on the
  240 +Program), the recipient automatically receives a license from the
  241 +original licensor to copy, distribute or modify the Program subject to
  242 +these terms and conditions. You may not impose any further
  243 +restrictions on the recipients' exercise of the rights granted herein.
  244 +You are not responsible for enforcing compliance by third parties to
  245 +this License.
  246 +
  247 + 7. If, as a consequence of a court judgment or allegation of patent
  248 +infringement or for any other reason (not limited to patent issues),
  249 +conditions are imposed on you (whether by court order, agreement or
  250 +otherwise) that contradict the conditions of this License, they do not
  251 +excuse you from the conditions of this License. If you cannot
  252 +distribute so as to satisfy simultaneously your obligations under this
  253 +License and any other pertinent obligations, then as a consequence you
  254 +may not distribute the Program at all. For example, if a patent
  255 +license would not permit royalty-free redistribution of the Program by
  256 +all those who receive copies directly or indirectly through you, then
  257 +the only way you could satisfy both it and this License would be to
  258 +refrain entirely from distribution of the Program.
  259 +
  260 +If any portion of this section is held invalid or unenforceable under
  261 +any particular circumstance, the balance of the section is intended to
  262 +apply and the section as a whole is intended to apply in other
  263 +circumstances.
  264 +
  265 +It is not the purpose of this section to induce you to infringe any
  266 +patents or other property right claims or to contest validity of any
  267 +such claims; this section has the sole purpose of protecting the
  268 +integrity of the free software distribution system, which is
  269 +implemented by public license practices. Many people have made
  270 +generous contributions to the wide range of software distributed
  271 +through that system in reliance on consistent application of that
  272 +system; it is up to the author/donor to decide if he or she is willing
  273 +to distribute software through any other system and a licensee cannot
  274 +impose that choice.
  275 +
  276 +This section is intended to make thoroughly clear what is believed to
  277 +be a consequence of the rest of this License.
  278 +
  279 + 8. If the distribution and/or use of the Program is restricted in
  280 +certain countries either by patents or by copyrighted interfaces, the
  281 +original copyright holder who places the Program under this License
  282 +may add an explicit geographical distribution limitation excluding
  283 +those countries, so that distribution is permitted only in or among
  284 +countries not thus excluded. In such case, this License incorporates
  285 +the limitation as if written in the body of this License.
  286 +
  287 + 9. The Free Software Foundation may publish revised and/or new versions
  288 +of the General Public License from time to time. Such new versions will
  289 +be similar in spirit to the present version, but may differ in detail to
  290 +address new problems or concerns.
  291 +
  292 +Each version is given a distinguishing version number. If the Program
  293 +specifies a version number of this License which applies to it and "any
  294 +later version", you have the option of following the terms and conditions
  295 +either of that version or of any later version published by the Free
  296 +Software Foundation. If the Program does not specify a version number of
  297 +this License, you may choose any version ever published by the Free Software
  298 +Foundation.
  299 +
  300 + 10. If you wish to incorporate parts of the Program into other free
  301 +programs whose distribution conditions are different, write to the author
  302 +to ask for permission. For software which is copyrighted by the Free
  303 +Software Foundation, write to the Free Software Foundation; we sometimes
  304 +make exceptions for this. Our decision will be guided by the two goals
  305 +of preserving the free status of all derivatives of our free software and
  306 +of promoting the sharing and reuse of software generally.
  307 +
  308 + NO WARRANTY
  309 +
  310 + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
  311 +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
  312 +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
  313 +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
  314 +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  315 +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
  316 +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
  317 +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
  318 +REPAIR OR CORRECTION.
  319 +
  320 + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  321 +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
  322 +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
  323 +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
  324 +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
  325 +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
  326 +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
  327 +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
  328 +POSSIBILITY OF SUCH DAMAGES.
  329 +
  330 + END OF TERMS AND CONDITIONS
  331 +
  332 +
  333 +Appendix B: The LGPL License
  334 +============================
  335 +
  336 + GNU LESSER GENERAL PUBLIC LICENSE
  337 + Version 2.1, February 1999
  338 +
  339 + Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  340 + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  341 + Everyone is permitted to copy and distribute verbatim copies
  342 + of this license document, but changing it is not allowed.
  343 +
  344 +[This is the first released version of the Lesser GPL. It also counts
  345 + as the successor of the GNU Library Public License, version 2, hence
  346 + the version number 2.1.]
  347 +
  348 + Preamble
  349 +
  350 + The licenses for most software are designed to take away your
  351 +freedom to share and change it. By contrast, the GNU General Public
  352 +Licenses are intended to guarantee your freedom to share and change
  353 +free software-to make sure the software is free for all its users.
  354 +
  355 + This license, the Lesser General Public License, applies to some
  356 +specially designated software packages-typically libraries-of the
  357 +Free Software Foundation and other authors who decide to use it. You
  358 +can use it too, but we suggest you first think carefully about whether
  359 +this license or the ordinary General Public License is the better
  360 +strategy to use in any particular case, based on the explanations below.
  361 +
  362 + When we speak of free software, we are referring to freedom of use,
  363 +not price. Our General Public Licenses are designed to make sure that
  364 +you have the freedom to distribute copies of free software (and charge
  365 +for this service if you wish); that you receive source code or can get
  366 +it if you want it; that you can change the software and use pieces of
  367 +it in new free programs; and that you are informed that you can do
  368 +these things.
  369 +
  370 + To protect your rights, we need to make restrictions that forbid
  371 +distributors to deny you these rights or to ask you to surrender these
  372 +rights. These restrictions translate to certain responsibilities for
  373 +you if you distribute copies of the library or if you modify it.
  374 +
  375 + For example, if you distribute copies of the library, whether gratis
  376 +or for a fee, you must give the recipients all the rights that we gave
  377 +you. You must make sure that they, too, receive or can get the source
  378 +code. If you link other code with the library, you must provide
  379 +complete object files to the recipients, so that they can relink them
  380 +with the library after making changes to the library and recompiling
  381 +it. And you must show them these terms so they know their rights.
  382 +
  383 + We protect your rights with a two-step method: (1) we copyright the
  384 +library, and (2) we offer you this license, which gives you legal
  385 +permission to copy, distribute and/or modify the library.
  386 +
  387 + To protect each distributor, we want to make it very clear that
  388 +there is no warranty for the free library. Also, if the library is
  389 +modified by someone else and passed on, the recipients should know
  390 +that what they have is not the original version, so that the original
  391 +author's reputation will not be affected by problems that might be
  392 +introduced by others.
  393 +
  394 + Finally, software patents pose a constant threat to the existence of
  395 +any free program. We wish to make sure that a company cannot
  396 +effectively restrict the users of a free program by obtaining a
  397 +restrictive license from a patent holder. Therefore, we insist that
  398 +any patent license obtained for a version of the library must be
  399 +consistent with the full freedom of use specified in this license.
  400 +
  401 + Most GNU software, including some libraries, is covered by the
  402 +ordinary GNU General Public License. This license, the GNU Lesser
  403 +General Public License, applies to certain designated libraries, and
  404 +is quite different from the ordinary General Public License. We use
  405 +this license for certain libraries in order to permit linking those
  406 +libraries into non-free programs.
  407 +
  408 + When a program is linked with a library, whether statically or using
  409 +a shared library, the combination of the two is legally speaking a
  410 +combined work, a derivative of the original library. The ordinary
  411 +General Public License therefore permits such linking only if the
  412 +entire combination fits its criteria of freedom. The Lesser General
  413 +Public License permits more lax criteria for linking other code with
  414 +the library.
  415 +
  416 + We call this license the "Lesser" General Public License because it
  417 +does Less to protect the user's freedom than the ordinary General
  418 +Public License. It also provides other free software developers Less
  419 +of an advantage over competing non-free programs. These disadvantages
  420 +are the reason we use the ordinary General Public License for many
  421 +libraries. However, the Lesser license provides advantages in certain
  422 +special circumstances.
  423 +
  424 + For example, on rare occasions, there may be a special need to
  425 +encourage the widest possible use of a certain library, so that it becomes
  426 +a de-facto standard. To achieve this, non-free programs must be
  427 +allowed to use the library. A more frequent case is that a free
  428 +library does the same job as widely used non-free libraries. In this
  429 +case, there is little to gain by limiting the free library to free
  430 +software only, so we use the Lesser General Public License.
  431 +
  432 + In other cases, permission to use a particular library in non-free
  433 +programs enables a greater number of people to use a large body of
  434 +free software. For example, permission to use the GNU C Library in
  435 +non-free programs enables many more people to use the whole GNU
  436 +operating system, as well as its variant, the GNU/Linux operating
  437 +system.
  438 +
  439 + Although the Lesser General Public License is Less protective of the
  440 +users' freedom, it does ensure that the user of a program that is
  441 +linked with the Library has the freedom and the wherewithal to run
  442 +that program using a modified version of the Library.
  443 +
  444 + The precise terms and conditions for copying, distribution and
  445 +modification follow. Pay close attention to the difference between a
  446 +"work based on the library" and a "work that uses the library". The
  447 +former contains code derived from the library, whereas the latter must
  448 +be combined with the library in order to run.
  449 +
  450 + GNU LESSER GENERAL PUBLIC LICENSE
  451 + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  452 +
  453 + 0. This License Agreement applies to any software library or other
  454 +program which contains a notice placed by the copyright holder or
  455 +other authorized party saying it may be distributed under the terms of
  456 +this Lesser General Public License (also called "this License").
  457 +Each licensee is addressed as "you".
  458 +
  459 + A "library" means a collection of software functions and/or data
  460 +prepared so as to be conveniently linked with application programs
  461 +(which use some of those functions and data) to form executables.
  462 +
  463 + The "Library", below, refers to any such software library or work
  464 +which has been distributed under these terms. A "work based on the
  465 +Library" means either the Library or any derivative work under
  466 +copyright law: that is to say, a work containing the Library or a
  467 +portion of it, either verbatim or with modifications and/or translated
  468 +straightforwardly into another language. (Hereinafter, translation is
  469 +included without limitation in the term "modification".)
  470 +
  471 + "Source code" for a work means the preferred form of the work for
  472 +making modifications to it. For a library, complete source code means
  473 +all the source code for all modules it contains, plus any associated
  474 +interface definition files, plus the scripts used to control compilation
  475 +and installation of the library.
  476 +
  477 + Activities other than copying, distribution and modification are not
  478 +covered by this License; they are outside its scope. The act of
  479 +running a program using the Library is not restricted, and output from
  480 +such a program is covered only if its contents constitute a work based
  481 +on the Library (independent of the use of the Library in a tool for
  482 +writing it). Whether that is true depends on what the Library does
  483 +and what the program that uses the Library does.
  484 +
  485 + 1. You may copy and distribute verbatim copies of the Library's
  486 +complete source code as you receive it, in any medium, provided that
  487 +you conspicuously and appropriately publish on each copy an
  488 +appropriate copyright notice and disclaimer of warranty; keep intact
  489 +all the notices that refer to this License and to the absence of any
  490 +warranty; and distribute a copy of this License along with the
  491 +Library.
  492 +
  493 + You may charge a fee for the physical act of transferring a copy,
  494 +and you may at your option offer warranty protection in exchange for a
  495 +fee.
  496 +
  497 + 2. You may modify your copy or copies of the Library or any portion
  498 +of it, thus forming a work based on the Library, and copy and
  499 +distribute such modifications or work under the terms of Section 1
  500 +above, provided that you also meet all of these conditions:
  501 +
  502 + a) The modified work must itself be a software library.
  503 +
  504 + b) You must cause the files modified to carry prominent notices
  505 + stating that you changed the files and the date of any change.
  506 +
  507 + c) You must cause the whole of the work to be licensed at no
  508 + charge to all third parties under the terms of this License.
  509 +
  510 + d) If a facility in the modified Library refers to a function or a
  511 + table of data to be supplied by an application program that uses
  512 + the facility, other than as an argument passed when the facility
  513 + is invoked, then you must make a good faith effort to ensure that,
  514 + in the event an application does not supply such function or
  515 + table, the facility still operates, and performs whatever part of
  516 + its purpose remains meaningful.
  517 +
  518 + (For example, a function in a library to compute square roots has
  519 + a purpose that is entirely well-defined independent of the
  520 + application. Therefore, Subsection 2d requires that any
  521 + application-supplied function or table used by this function must
  522 + be optional: if the application does not supply it, the square
  523 + root function must still compute square roots.)
  524 +
  525 +These requirements apply to the modified work as a whole. If
  526 +identifiable sections of that work are not derived from the Library,
  527 +and can be reasonably considered independent and separate works in
  528 +themselves, then this License, and its terms, do not apply to those
  529 +sections when you distribute them as separate works. But when you
  530 +distribute the same sections as part of a whole which is a work based
  531 +on the Library, the distribution of the whole must be on the terms of
  532 +this License, whose permissions for other licensees extend to the
  533 +entire whole, and thus to each and every part regardless of who wrote
  534 +it.
  535 +
  536 +Thus, it is not the intent of this section to claim rights or contest
  537 +your rights to work written entirely by you; rather, the intent is to
  538 +exercise the right to control the distribution of derivative or
  539 +collective works based on the Library.
  540 +
  541 +In addition, mere aggregation of another work not based on the Library
  542 +with the Library (or with a work based on the Library) on a volume of
  543 +a storage or distribution medium does not bring the other work under
  544 +the scope of this License.
  545 +
  546 + 3. You may opt to apply the terms of the ordinary GNU General Public
  547 +License instead of this License to a given copy of the Library. To do
  548 +this, you must alter all the notices that refer to this License, so
  549 +that they refer to the ordinary GNU General Public License, version 2,
  550 +instead of to this License. (If a newer version than version 2 of the
  551 +ordinary GNU General Public License has appeared, then you can specify
  552 +that version instead if you wish.) Do not make any other change in
  553 +these notices.
  554 +
  555 + Once this change is made in a given copy, it is irreversible for
  556 +that copy, so the ordinary GNU General Public License applies to all
  557 +subsequent copies and derivative works made from that copy.
  558 +
  559 + This option is useful when you wish to copy part of the code of
  560 +the Library into a program that is not a library.
  561 +
  562 + 4. You may copy and distribute the Library (or a portion or
  563 +derivative of it, under Section 2) in object code or executable form
  564 +under the terms of Sections 1 and 2 above provided that you accompany
  565 +it with the complete corresponding machine-readable source code, which
  566 +must be distributed under the terms of Sections 1 and 2 above on a
  567 +medium customarily used for software interchange.
  568 +
  569 + If distribution of object code is made by offering access to copy
  570 +from a designated place, then offering equivalent access to copy the
  571 +source code from the same place satisfies the requirement to
  572 +distribute the source code, even though third parties are not
  573 +compelled to copy the source along with the object code.
  574 +
  575 + 5. A program that contains no derivative of any portion of the
  576 +Library, but is designed to work with the Library by being compiled or
  577 +linked with it, is called a "work that uses the Library". Such a
  578 +work, in isolation, is not a derivative work of the Library, and
  579 +therefore falls outside the scope of this License.
  580 +
  581 + However, linking a "work that uses the Library" with the Library
  582 +creates an executable that is a derivative of the Library (because it
  583 +contains portions of the Library), rather than a "work that uses the
  584 +library". The executable is therefore covered by this License.
  585 +Section 6 states terms for distribution of such executables.
  586 +
  587 + When a "work that uses the Library" uses material from a header file
  588 +that is part of the Library, the object code for the work may be a
  589 +derivative work of the Library even though the source code is not.
  590 +Whether this is true is especially significant if the work can be
  591 +linked without the Library, or if the work is itself a library. The
  592 +threshold for this to be true is not precisely defined by law.
  593 +
  594 + If such an object file uses only numerical parameters, data
  595 +structure layouts and accessors, and small macros and small inline
  596 +functions (ten lines or less in length), then the use of the object
  597 +file is unrestricted, regardless of whether it is legally a derivative
  598 +work. (Executables containing this object code plus portions of the
  599 +Library will still fall under Section 6.)
  600 +
  601 + Otherwise, if the work is a derivative of the Library, you may
  602 +distribute the object code for the work under the terms of Section 6.
  603 +Any executables containing that work also fall under Section 6,
  604 +whether or not they are linked directly with the Library itself.
  605 +
  606 + 6. As an exception to the Sections above, you may also combine or
  607 +link a "work that uses the Library" with the Library to produce a
  608 +work containing portions of the Library, and distribute that work
  609 +under terms of your choice, provided that the terms permit
  610 +modification of the work for the customer's own use and reverse
  611 +engineering for debugging such modifications.
  612 +
  613 + You must give prominent notice with each copy of the work that the
  614 +Library is used in it and that the Library and its use are covered by
  615 +this License. You must supply a copy of this License. If the work
  616 +during execution displays copyright notices, you must include the
  617 +copyright notice for the Library among them, as well as a reference
  618 +directing the user to the copy of this License. Also, you must do one
  619 +of these things:
  620 +
  621 + a) Accompany the work with the complete corresponding
  622 + machine-readable source code for the Library including whatever
  623 + changes were used in the work (which must be distributed under
  624 + Sections 1 and 2 above); and, if the work is an executable linked
  625 + with the Library, with the complete machine-readable "work that
  626 + uses the Library", as object code and/or source code, so that the
  627 + user can modify the Library and then relink to produce a modified
  628 + executable containing the modified Library. (It is understood
  629 + that the user who changes the contents of definitions files in the
  630 + Library will not necessarily be able to recompile the application
  631 + to use the modified definitions.)
  632 +
  633 + b) Use a suitable shared library mechanism for linking with the
  634 + Library. A suitable mechanism is one that (1) uses at run time a
  635 + copy of the library already present on the user's computer system,
  636 + rather than copying library functions into the executable, and (2)
  637 + will operate properly with a modified version of the library, if
  638 + the user installs one, as long as the modified version is
  639 + interface-compatible with the version that the work was made with.
  640 +
  641 + c) Accompany the work with a written offer, valid for at
  642 + least three years, to give the same user the materials
  643 + specified in Subsection 6a, above, for a charge no more
  644 + than the cost of performing this distribution.
  645 +
  646 + d) If distribution of the work is made by offering access to copy
  647 + from a designated place, offer equivalent access to copy the above
  648 + specified materials from the same place.
  649 +
  650 + e) Verify that the user has already received a copy of these
  651 + materials or that you have already sent this user a copy.
  652 +
  653 + For an executable, the required form of the "work that uses the
  654 +Library" must include any data and utility programs needed for
  655 +reproducing the executable from it. However, as a special exception,
  656 +the materials to be distributed need not include anything that is
  657 +normally distributed (in either source or binary form) with the major
  658 +components (compiler, kernel, and so on) of the operating system on
  659 +which the executable runs, unless that component itself accompanies
  660 +the executable.
  661 +
  662 + It may happen that this requirement contradicts the license
  663 +restrictions of other proprietary libraries that do not normally
  664 +accompany the operating system. Such a contradiction means you cannot
  665 +use both them and the Library together in an executable that you
  666 +distribute.
  667 +
  668 + 7. You may place library facilities that are a work based on the
  669 +Library side-by-side in a single library together with other library
  670 +facilities not covered by this License, and distribute such a combined
  671 +library, provided that the separate distribution of the work based on
  672 +the Library and of the other library facilities is otherwise
  673 +permitted, and provided that you do these two things:
  674 +
  675 + a) Accompany the combined library with a copy of the same work
  676 + based on the Library, uncombined with any other library
  677 + facilities. This must be distributed under the terms of the
  678 + Sections above.
  679 +
  680 + b) Give prominent notice with the combined library of the fact
  681 + that part of it is a work based on the Library, and explaining
  682 + where to find the accompanying uncombined form of the same work.
  683 +
  684 + 8. You may not copy, modify, sublicense, link with, or distribute
  685 +the Library except as expressly provided under this License. Any
  686 +attempt otherwise to copy, modify, sublicense, link with, or
  687 +distribute the Library is void, and will automatically terminate your
  688 +rights under this License. However, parties who have received copies,
  689 +or rights, from you under this License will not have their licenses
  690 +terminated so long as such parties remain in full compliance.
  691 +
  692 + 9. You are not required to accept this License, since you have not
  693 +signed it. However, nothing else grants you permission to modify or
  694 +distribute the Library or its derivative works. These actions are
  695 +prohibited by law if you do not accept this License. Therefore, by
  696 +modifying or distributing the Library (or any work based on the
  697 +Library), you indicate your acceptance of this License to do so, and
  698 +all its terms and conditions for copying, distributing or modifying
  699 +the Library or works based on it.
  700 +
  701 + 10. Each time you redistribute the Library (or any work based on the
  702 +Library), the recipient automatically receives a license from the
  703 +original licensor to copy, distribute, link with or modify the Library
  704 +subject to these terms and conditions. You may not impose any further
  705 +restrictions on the recipients' exercise of the rights granted herein.
  706 +You are not responsible for enforcing compliance by third parties with
  707 +this License.
  708 +
  709 + 11. If, as a consequence of a court judgment or allegation of patent
  710 +infringement or for any other reason (not limited to patent issues),
  711 +conditions are imposed on you (whether by court order, agreement or
  712 +otherwise) that contradict the conditions of this License, they do not
  713 +excuse you from the conditions of this License. If you cannot
  714 +distribute so as to satisfy simultaneously your obligations under this
  715 +License and any other pertinent obligations, then as a consequence you
  716 +may not distribute the Library at all. For example, if a patent
  717 +license would not permit royalty-free redistribution of the Library by
  718 +all those who receive copies directly or indirectly through you, then
  719 +the only way you could satisfy both it and this License would be to
  720 +refrain entirely from distribution of the Library.
  721 +
  722 +If any portion of this section is held invalid or unenforceable under any
  723 +particular circumstance, the balance of the section is intended to apply,
  724 +and the section as a whole is intended to apply in other circumstances.
  725 +
  726 +It is not the purpose of this section to induce you to infringe any
  727 +patents or other property right claims or to contest validity of any
  728 +such claims; this section has the sole purpose of protecting the
  729 +integrity of the free software distribution system which is
  730 +implemented by public license practices. Many people have made
  731 +generous contributions to the wide range of software distributed
  732 +through that system in reliance on consistent application of that
  733 +system; it is up to the author/donor to decide if he or she is willing
  734 +to distribute software through any other system and a licensee cannot
  735 +impose that choice.
  736 +
  737 +This section is intended to make thoroughly clear what is believed to
  738 +be a consequence of the rest of this License.
  739 +
  740 + 12. If the distribution and/or use of the Library is restricted in
  741 +certain countries either by patents or by copyrighted interfaces, the
  742 +original copyright holder who places the Library under this License may add
  743 +an explicit geographical distribution limitation excluding those countries,
  744 +so that distribution is permitted only in or among countries not thus
  745 +excluded. In such case, this License incorporates the limitation as if
  746 +written in the body of this License.
  747 +
  748 + 13. The Free Software Foundation may publish revised and/or new
  749 +versions of the Lesser General Public License from time to time.
  750 +Such new versions will be similar in spirit to the present version,
  751 +but may differ in detail to address new problems or concerns.
  752 +
  753 +Each version is given a distinguishing version number. If the Library
  754 +specifies a version number of this License which applies to it and
  755 +"any later version", you have the option of following the terms and
  756 +conditions either of that version or of any later version published by
  757 +the Free Software Foundation. If the Library does not specify a
  758 +license version number, you may choose any version ever published by
  759 +the Free Software Foundation.
  760 +
  761 + 14. If you wish to incorporate parts of the Library into other free
  762 +programs whose distribution conditions are incompatible with these,
  763 +write to the author to ask for permission. For software which is
  764 +copyrighted by the Free Software Foundation, write to the Free
  765 +Software Foundation; we sometimes make exceptions for this. Our
  766 +decision will be guided by the two goals of preserving the free status
  767 +of all derivatives of our free software and of promoting the sharing
  768 +and reuse of software generally.
  769 +
  770 + NO WARRANTY
  771 +
  772 + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  773 +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  774 +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  775 +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  776 +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  777 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  778 +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  779 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  780 +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  781 +
  782 + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  783 +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  784 +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  785 +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  786 +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  787 +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  788 +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  789 +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  790 +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  791 +DAMAGES.
  792 +
  793 + END OF TERMS AND CONDITIONS
  794 +
  795 +
  796 +Appendix C: The MPL License
  797 +===========================
  798 +
  799 + MOZILLA PUBLIC LICENSE
  800 + Version 1.1
  801 +
  802 + ===============
  803 +
  804 +1. Definitions.
  805 +
  806 + 1.0.1. "Commercial Use" means distribution or otherwise making the
  807 + Covered Code available to a third party.
  808 +
  809 + 1.1. "Contributor" means each entity that creates or contributes to
  810 + the creation of Modifications.
  811 +
  812 + 1.2. "Contributor Version" means the combination of the Original
  813 + Code, prior Modifications used by a Contributor, and the Modifications
  814 + made by that particular Contributor.
  815 +
  816 + 1.3. "Covered Code" means the Original Code or Modifications or the
  817 + combination of the Original Code and Modifications, in each case
  818 + including portions thereof.
  819 +
  820 + 1.4. "Electronic Distribution Mechanism" means a mechanism generally
  821 + accepted in the software development community for the electronic
  822 + transfer of data.
  823 +
  824 + 1.5. "Executable" means Covered Code in any form other than Source
  825 + Code.
  826 +
  827 + 1.6. "Initial Developer" means the individual or entity identified
  828 + as the Initial Developer in the Source Code notice required by Exhibit
  829 + A.
  830 +
  831 + 1.7. "Larger Work" means a work which combines Covered Code or
  832 + portions thereof with code not governed by the terms of this License.
  833 +
  834 + 1.8. "License" means this document.
  835 +
  836 + 1.8.1. "Licensable" means having the right to grant, to the maximum
  837 + extent possible, whether at the time of the initial grant or
  838 + subsequently acquired, any and all of the rights conveyed herein.
  839 +
  840 + 1.9. "Modifications" means any addition to or deletion from the
  841 + substance or structure of either the Original Code or any previous
  842 + Modifications. When Covered Code is released as a series of files, a
  843 + Modification is:
  844 + A. Any addition to or deletion from the contents of a file
  845 + containing Original Code or previous Modifications.
  846 +
  847 + B. Any new file that contains any part of the Original Code or
  848 + previous Modifications.
  849 +
  850 + 1.10. "Original Code" means Source Code of computer software code
  851 + which is described in the Source Code notice required by Exhibit A as
  852 + Original Code, and which, at the time of its release under this
  853 + License is not already Covered Code governed by this License.
  854 +
  855 + 1.10.1. "Patent Claims" means any patent claim(s), now owned or
  856 + hereafter acquired, including without limitation, method, process,
  857 + and apparatus claims, in any patent Licensable by grantor.
  858 +
  859 + 1.11. "Source Code" means the preferred form of the Covered Code for
  860 + making modifications to it, including all modules it contains, plus
  861 + any associated interface definition files, scripts used to control
  862 + compilation and installation of an Executable, or source code
  863 + differential comparisons against either the Original Code or another
  864 + well known, available Covered Code of the Contributor's choice. The
  865 + Source Code can be in a compressed or archival form, provided the
  866 + appropriate decompression or de-archiving software is widely available
  867 + for no charge.
  868 +
  869 + 1.12. "You" (or "Your") means an individual or a legal entity
  870 + exercising rights under, and complying with all of the terms of, this
  871 + License or a future version of this License issued under Section 6.1.
  872 + For legal entities, "You" includes any entity which controls, is
  873 + controlled by, or is under common control with You. For purposes of
  874 + this definition, "control" means (a) the power, direct or indirect,
  875 + to cause the direction or management of such entity, whether by
  876 + contract or otherwise, or (b) ownership of more than fifty percent
  877 + (50%) of the outstanding shares or beneficial ownership of such
  878 + entity.
  879 +
  880 +2. Source Code License.
  881 +
  882 + 2.1. The Initial Developer Grant.
  883 + The Initial Developer hereby grants You a world-wide, royalty-free,
  884 + non-exclusive license, subject to third party intellectual property
  885 + claims:
  886 + (a) under intellectual property rights (other than patent or
  887 + trademark) Licensable by Initial Developer to use, reproduce,
  888 + modify, display, perform, sublicense and distribute the Original
  889 + Code (or portions thereof) with or without Modifications, and/or
  890 + as part of a Larger Work; and
  891 +
  892 + (b) under Patents Claims infringed by the making, using or
  893 + selling of Original Code, to make, have made, use, practice,
  894 + sell, and offer for sale, and/or otherwise dispose of the
  895 + Original Code (or portions thereof).
  896 +
  897 + (c) the licenses granted in this Section 2.1(a) and (b) are
  898 + effective on the date Initial Developer first distributes
  899 + Original Code under the terms of this License.
  900 +
  901 + (d) Notwithstanding Section 2.1(b) above, no patent license is
  902 + granted: 1) for code that You delete from the Original Code; 2)
  903 + separate from the Original Code; or 3) for infringements caused
  904 + by: i) the modification of the Original Code or ii) the
  905 + combination of the Original Code with other software or devices.
  906 +
  907 + 2.2. Contributor Grant.
  908 + Subject to third party intellectual property claims, each Contributor
  909 + hereby grants You a world-wide, royalty-free, non-exclusive license
  910 +
  911 + (a) under intellectual property rights (other than patent or
  912 + trademark) Licensable by Contributor, to use, reproduce, modify,
  913 + display, perform, sublicense and distribute the Modifications
  914 + created by such Contributor (or portions thereof) either on an
  915 + unmodified basis, with other Modifications, as Covered Code
  916 + and/or as part of a Larger Work; and
  917 +
  918 + (b) under Patent Claims infringed by the making, using, or
  919 + selling of Modifications made by that Contributor either alone
  920 + and/or in combination with its Contributor Version (or portions
  921 + of such combination), to make, use, sell, offer for sale, have
  922 + made, and/or otherwise dispose of: 1) Modifications made by that
  923 + Contributor (or portions thereof); and 2) the combination of
  924 + Modifications made by that Contributor with its Contributor
  925 + Version (or portions of such combination).
  926 +
  927 + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are
  928 + effective on the date Contributor first makes Commercial Use of
  929 + the Covered Code.
  930 +
  931 + (d) Notwithstanding Section 2.2(b) above, no patent license is
  932 + granted: 1) for any code that Contributor has deleted from the
  933 + Contributor Version; 2) separate from the Contributor Version;
  934 + 3) for infringements caused by: i) third party modifications of
  935 + Contributor Version or ii) the combination of Modifications made
  936 + by that Contributor with other software (except as part of the
  937 + Contributor Version) or other devices; or 4) under Patent Claims
  938 + infringed by Covered Code in the absence of Modifications made by
  939 + that Contributor.
  940 +
  941 +3. Distribution Obligations.
  942 +
  943 + 3.1. Application of License.
  944 + The Modifications which You create or to which You contribute are
  945 + governed by the terms of this License, including without limitation
  946 + Section 2.2. The Source Code version of Covered Code may be
  947 + distributed only under the terms of this License or a future version
  948 + of this License released under Section 6.1, and You must include a
  949 + copy of this License with every copy of the Source Code You
  950 + distribute. You may not offer or impose any terms on any Source Code
  951 + version that alters or restricts the applicable version of this
  952 + License or the recipients' rights hereunder. However, You may include
  953 + an additional document offering the additional rights described in
  954 + Section 3.5.
  955 +
  956 + 3.2. Availability of Source Code.
  957 + Any Modification which You create or to which You contribute must be
  958 + made available in Source Code form under the terms of this License
  959 + either on the same media as an Executable version or via an accepted
  960 + Electronic Distribution Mechanism to anyone to whom you made an
  961 + Executable version available; and if made available via Electronic
  962 + Distribution Mechanism, must remain available for at least twelve (12)
  963 + months after the date it initially became available, or at least six
  964 + (6) months after a subsequent version of that particular Modification
  965 + has been made available to such recipients. You are responsible for
  966 + ensuring that the Source Code version remains available even if the
  967 + Electronic Distribution Mechanism is maintained by a third party.
  968 +
  969 + 3.3. Description of Modifications.
  970 + You must cause all Covered Code to which You contribute to contain a
  971 + file documenting the changes You made to create that Covered Code and
  972 + the date of any change. You must include a prominent statement that
  973 + the Modification is derived, directly or indirectly, from Original
  974 + Code provided by the Initial Developer and including the name of the
  975 + Initial Developer in (a) the Source Code, and (b) in any notice in an
  976 + Executable version or related documentation in which You describe the
  977 + origin or ownership of the Covered Code.
  978 +
  979 + 3.4. Intellectual Property Matters
  980 + (a) Third Party Claims.
  981 + If Contributor has knowledge that a license under a third party's
  982 + intellectual property rights is required to exercise the rights
  983 + granted by such Contributor under Sections 2.1 or 2.2,
  984 + Contributor must include a text file with the Source Code
  985 + distribution titled "LEGAL" which describes the claim and the
  986 + party making the claim in sufficient detail that a recipient will
  987 + know whom to contact. If Contributor obtains such knowledge after
  988 + the Modification is made available as described in Section 3.2,
  989 + Contributor shall promptly modify the LEGAL file in all copies
  990 + Contributor makes available thereafter and shall take other steps
  991 + (such as notifying appropriate mailing lists or newsgroups)
  992 + reasonably calculated to inform those who received the Covered
  993 + Code that new knowledge has been obtained.
  994 +
  995 + (b) Contributor APIs.
  996 + If Contributor's Modifications include an application programming
  997 + interface and Contributor has knowledge of patent licenses which
  998 + are reasonably necessary to implement that API, Contributor must
  999 + also include this information in the LEGAL file.
  1000 +
  1001 + (c) Representations.
  1002 + Contributor represents that, except as disclosed pursuant to
  1003 + Section 3.4(a) above, Contributor believes that Contributor's
  1004 + Modifications are Contributor's original creation(s) and/or
  1005 + Contributor has sufficient rights to grant the rights conveyed by
  1006 + this License.
  1007 +
  1008 + 3.5. Required Notices.
  1009 + You must duplicate the notice in Exhibit A in each file of the Source
  1010 + Code. If it is not possible to put such notice in a particular Source
  1011 + Code file due to its structure, then You must include such notice in a
  1012 + location (such as a relevant directory) where a user would be likely
  1013 + to look for such a notice. If You created one or more Modification(s)
  1014 + You may add your name as a Contributor to the notice described in
  1015 + Exhibit A. You must also duplicate this License in any documentation
  1016 + for the Source Code where You describe recipients' rights or ownership
  1017 + rights relating to Covered Code. You may choose to offer, and to
  1018 + charge a fee for, warranty, support, indemnity or liability
  1019 + obligations to one or more recipients of Covered Code. However, You
  1020 + may do so only on Your own behalf, and not on behalf of the Initial
  1021 + Developer or any Contributor. You must make it absolutely clear than
  1022 + any such warranty, support, indemnity or liability obligation is
  1023 + offered by You alone, and You hereby agree to indemnify the Initial
  1024 + Developer and every Contributor for any liability incurred by the
  1025 + Initial Developer or such Contributor as a result of warranty,
  1026 + support, indemnity or liability terms You offer.
  1027 +
  1028 + 3.6. Distribution of Executable Versions.
  1029 + You may distribute Covered Code in Executable form only if the
  1030 + requirements of Section 3.1-3.5 have been met for that Covered Code,
  1031 + and if You include a notice stating that the Source Code version of
  1032 + the Covered Code is available under the terms of this License,
  1033 + including a description of how and where You have fulfilled the
  1034 + obligations of Section 3.2. The notice must be conspicuously included
  1035 + in any notice in an Executable version, related documentation or
  1036 + collateral in which You describe recipients' rights relating to the
  1037 + Covered Code. You may distribute the Executable version of Covered
  1038 + Code or ownership rights under a license of Your choice, which may
  1039 + contain terms different from this License, provided that You are in
  1040 + compliance with the terms of this License and that the license for the
  1041 + Executable version does not attempt to limit or alter the recipient's
  1042 + rights in the Source Code version from the rights set forth in this
  1043 + License. If You distribute the Executable version under a different
  1044 + license You must make it absolutely clear that any terms which differ
  1045 + from this License are offered by You alone, not by the Initial
  1046 + Developer or any Contributor. You hereby agree to indemnify the
  1047 + Initial Developer and every Contributor for any liability incurred by
  1048 + the Initial Developer or such Contributor as a result of any such
  1049 + terms You offer.
  1050 +
  1051 + 3.7. Larger Works.
  1052 + You may create a Larger Work by combining Covered Code with other code
  1053 + not governed by the terms of this License and distribute the Larger
  1054 + Work as a single product. In such a case, You must make sure the
  1055 + requirements of this License are fulfilled for the Covered Code.
  1056 +
  1057 +4. Inability to Comply Due to Statute or Regulation.
  1058 +
  1059 + If it is impossible for You to comply with any of the terms of this
  1060 + License with respect to some or all of the Covered Code due to
  1061 + statute, judicial order, or regulation then You must: (a) comply with
  1062 + the terms of this License to the maximum extent possible; and (b)
  1063 + describe the limitations and the code they affect. Such description
  1064 + must be included in the LEGAL file described in Section 3.4 and must
  1065 + be included with all distributions of the Source Code. Except to the
  1066 + extent prohibited by statute or regulation, such description must be
  1067 + sufficiently detailed for a recipient of ordinary skill to be able to
  1068 + understand it.
  1069 +
  1070 +5. Application of this License.
  1071 +
  1072 + This License applies to code to which the Initial Developer has
  1073 + attached the notice in Exhibit A and to related Covered Code.
  1074 +
  1075 +6. Versions of the License.
  1076 +
  1077 + 6.1. New Versions.
  1078 + Netscape Communications Corporation ("Netscape") may publish revised
  1079 + and/or new versions of the License from time to time. Each version
  1080 + will be given a distinguishing version number.
  1081 +
  1082 + 6.2. Effect of New Versions.
  1083 + Once Covered Code has been published under a particular version of the
  1084 + License, You may always continue to use it under the terms of that
  1085 + version. You may also choose to use such Covered Code under the terms
  1086 + of any subsequent version of the License published by Netscape. No one
  1087 + other than Netscape has the right to modify the terms applicable to
  1088 + Covered Code created under this License.
  1089 +
  1090 + 6.3. Derivative Works.
  1091 + If You create or use a modified version of this License (which you may
  1092 + only do in order to apply it to code which is not already Covered Code
  1093 + governed by this License), You must (a) rename Your license so that
  1094 + the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
  1095 + "MPL", "NPL" or any confusingly similar phrase do not appear in your
  1096 + license (except to note that your license differs from this License)
  1097 + and (b) otherwise make it clear that Your version of the license
  1098 + contains terms which differ from the Mozilla Public License and
  1099 + Netscape Public License. (Filling in the name of the Initial
  1100 + Developer, Original Code or Contributor in the notice described in
  1101 + Exhibit A shall not of themselves be deemed to be modifications of
  1102 + this License.)
  1103 +
  1104 +7. DISCLAIMER OF WARRANTY.
  1105 +
  1106 + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
  1107 + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
  1108 + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
  1109 + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
  1110 + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
  1111 + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
  1112 + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
  1113 + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
  1114 + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
  1115 + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
  1116 +
  1117 +8. TERMINATION.
  1118 +
  1119 + 8.1. This License and the rights granted hereunder will terminate
  1120 + automatically if You fail to comply with terms herein and fail to cure
  1121 + such breach within 30 days of becoming aware of the breach. All
  1122 + sublicenses to the Covered Code which are properly granted shall
  1123 + survive any termination of this License. Provisions which, by their
  1124 + nature, must remain in effect beyond the termination of this License
  1125 + shall survive.
  1126 +
  1127 + 8.2. If You initiate litigation by asserting a patent infringement
  1128 + claim (excluding declatory judgment actions) against Initial Developer
  1129 + or a Contributor (the Initial Developer or Contributor against whom
  1130 + You file such action is referred to as "Participant") alleging that:
  1131 +
  1132 + (a) such Participant's Contributor Version directly or indirectly
  1133 + infringes any patent, then any and all rights granted by such
  1134 + Participant to You under Sections 2.1 and/or 2.2 of this License
  1135 + shall, upon 60 days notice from Participant terminate prospectively,
  1136 + unless if within 60 days after receipt of notice You either: (i)
  1137 + agree in writing to pay Participant a mutually agreeable reasonable
  1138 + royalty for Your past and future use of Modifications made by such
  1139 + Participant, or (ii) withdraw Your litigation claim with respect to
  1140 + the Contributor Version against such Participant. If within 60 days
  1141 + of notice, a reasonable royalty and payment arrangement are not
  1142 + mutually agreed upon in writing by the parties or the litigation claim
  1143 + is not withdrawn, the rights granted by Participant to You under
  1144 + Sections 2.1 and/or 2.2 automatically terminate at the expiration of
  1145 + the 60 day notice period specified above.
  1146 +
  1147 + (b) any software, hardware, or device, other than such Participant's
  1148 + Contributor Version, directly or indirectly infringes any patent, then
  1149 + any rights granted to You by such Participant under Sections 2.1(b)
  1150 + and 2.2(b) are revoked effective as of the date You first made, used,
  1151 + sold, distributed, or had made, Modifications made by that
  1152 + Participant.
  1153 +
  1154 + 8.3. If You assert a patent infringement claim against Participant
  1155 + alleging that such Participant's Contributor Version directly or
  1156 + indirectly infringes any patent where such claim is resolved (such as
  1157 + by license or settlement) prior to the initiation of patent
  1158 + infringement litigation, then the reasonable value of the licenses
  1159 + granted by such Participant under Sections 2.1 or 2.2 shall be taken
  1160 + into account in determining the amount or value of any payment or
  1161 + license.
  1162 +
  1163 + 8.4. In the event of termination under Sections 8.1 or 8.2 above,
  1164 + all end user license agreements (excluding distributors and resellers)
  1165 + which have been validly granted by You or any distributor hereunder
  1166 + prior to termination shall survive termination.
  1167 +
  1168 +9. LIMITATION OF LIABILITY.
  1169 +
  1170 + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
  1171 + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
  1172 + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
  1173 + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
  1174 + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
  1175 + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
  1176 + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
  1177 + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
  1178 + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
  1179 + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
  1180 + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
  1181 + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
  1182 + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
  1183 + THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
  1184 +
  1185 +10. U.S. GOVERNMENT END USERS.
  1186 +
  1187 + The Covered Code is a "commercial item," as that term is defined in
  1188 + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
  1189 + software" and "commercial computer software documentation," as such
  1190 + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
  1191 + C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
  1192 + all U.S. Government End Users acquire Covered Code with only those
  1193 + rights set forth herein.
  1194 +
  1195 +11. MISCELLANEOUS.
  1196 +
  1197 + This License represents the complete agreement concerning subject
  1198 + matter hereof. If any provision of this License is held to be
  1199 + unenforceable, such provision shall be reformed only to the extent
  1200 + necessary to make it enforceable. This License shall be governed by
  1201 + California law provisions (except to the extent applicable law, if
  1202 + any, provides otherwise), excluding its conflict-of-law provisions.
  1203 + With respect to disputes in which at least one party is a citizen of,
  1204 + or an entity chartered or registered to do business in the United
  1205 + States of America, any litigation relating to this License shall be
  1206 + subject to the jurisdiction of the Federal Courts of the Northern
  1207 + District of California, with venue lying in Santa Clara County,
  1208 + California, with the losing party responsible for costs, including
  1209 + without limitation, court costs and reasonable attorneys' fees and
  1210 + expenses. The application of the United Nations Convention on
  1211 + Contracts for the International Sale of Goods is expressly excluded.
  1212 + Any law or regulation which provides that the language of a contract
  1213 + shall be construed against the drafter shall not apply to this
  1214 + License.
  1215 +
  1216 +12. RESPONSIBILITY FOR CLAIMS.
  1217 +
  1218 + As between Initial Developer and the Contributors, each party is
  1219 + responsible for claims and damages arising, directly or indirectly,
  1220 + out of its utilization of rights under this License and You agree to
  1221 + work with Initial Developer and Contributors to distribute such
  1222 + responsibility on an equitable basis. Nothing herein is intended or
  1223 + shall be deemed to constitute any admission of liability.
  1224 +
  1225 +13. MULTIPLE-LICENSED CODE.
  1226 +
  1227 + Initial Developer may designate portions of the Covered Code as
  1228 + "Multiple-Licensed". "Multiple-Licensed" means that the Initial
  1229 + Developer permits you to utilize portions of the Covered Code under
  1230 + Your choice of the NPL or the alternative licenses, if any, specified
  1231 + by the Initial Developer in the file described in Exhibit A.
  1232 +
  1233 +EXHIBIT A -Mozilla Public License.
  1234 +
  1235 + ``The contents of this file are subject to the Mozilla Public License
  1236 + Version 1.1 (the "License"); you may not use this file except in
  1237 + compliance with the License. You may obtain a copy of the License at
  1238 + http://www.mozilla.org/MPL/
  1239 +
  1240 + Software distributed under the License is distributed on an "AS IS"
  1241 + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  1242 + License for the specific language governing rights and limitations
  1243 + under the License.
  1244 +
  1245 + The Original Code is ______________________________________.
  1246 +
  1247 + The Initial Developer of the Original Code is ________________________.
  1248 + Portions created by ______________________ are Copyright (C) ______
  1249 + _______________________. All Rights Reserved.
  1250 +
  1251 + Contributor(s): ______________________________________.
  1252 +
  1253 + Alternatively, the contents of this file may be used under the terms
  1254 + of the _____ license (the "[___] License"), in which case the
  1255 + provisions of [______] License are applicable instead of those
  1256 + above. If you wish to allow use of your version of this file only
  1257 + under the terms of the [____] License and not to allow others to use
  1258 + your version of this file under the MPL, indicate your decision by
  1259 + deleting the provisions above and replace them with the notice and
  1260 + other provisions required by the [___] License. If you do not delete
  1261 + the provisions above, a recipient may use your version of this file
  1262 + under either the MPL or the [___] License."
  1263 +
  1264 + [NOTE: The text of this Exhibit A may differ slightly from the text of
  1265 + the notices in the Source Code files of the Original Code. You should
  1266 + use the text of this Exhibit A rather than the text found in the
  1267 + Original Code Source Code for Your Modifications.]
  1268 +
  1269 +== END TEXT ONLY VERSION ==
  1270 +-->
  1271 +<html xmlns="http://www.w3.org/1999/xhtml">
  1272 +<head>
  1273 + <title>License - CKEditor</title>
  1274 +</head>
  1275 +<body>
  1276 + <h1>
  1277 + Software License Agreement
  1278 + </h1>
  1279 + <p>
  1280 + <strong>CKEditor&trade;</strong> - The text editor for Internet&trade; - <a href="http://ckeditor.com">
  1281 + http://ckeditor.com</a><br />
  1282 + Copyright &copy; 2003-2012, <a href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
  1283 + </p>
  1284 + <p>
  1285 + Licensed under the terms of any of the following licenses at your choice:
  1286 + </p>
  1287 + <ul>
  1288 + <li><a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a> Version
  1289 + 2 or later (the "GPL");</li>
  1290 + <li><a href="http://www.gnu.org/licenses/lgpl.html">GNU Lesser General Public License</a>
  1291 + Version 2.1 or later (the "LGPL");</li>
  1292 + <li><a href="http://www.mozilla.org/MPL/MPL-1.1.html">Mozilla Public License</a> Version
  1293 + 1.1 or later (the "MPL").</li>
  1294 + </ul>
  1295 + <p>
  1296 + You are not required to, but if you want to explicitly declare the license you have
  1297 + chosen to be bound to when using, reproducing, modifying and distributing this software,
  1298 + just include a text file titled "LEGAL" in your version of this software, indicating
  1299 + your license choice. In any case, your choice will not restrict any recipient of
  1300 + your version of this software to use, reproduce, modify and distribute this software
  1301 + under any of the above licenses.
  1302 + </p>
  1303 + <h2>
  1304 + Sources of Intellectual Property Included in CKEditor
  1305 + </h2>
  1306 + <p>
  1307 + Where not otherwise indicated, all CKEditor content is authored by CKSource engineers
  1308 + and consists of CKSource-owned intellectual property. In some specific instances,
  1309 + CKEditor will incorporate work done by developers outside of CKSource with their
  1310 + express permission.
  1311 + </p>
  1312 + <p>
  1313 + <a href="http://developer.yahoo.com/yui/yuitest/">YUI Test</a>: At _source/tests/yuitest.js
  1314 + can be found part of the source code of YUI, which is licensed under the terms of
  1315 + the <a href="http://developer.yahoo.com/yui/license.txt">BSD License</a>. YUI is
  1316 + Copyright &copy; 2008, Yahoo! Inc.
  1317 + </p>
  1318 + <h2>
  1319 + Trademarks
  1320 + </h2>
  1321 + <p>
  1322 + CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product
  1323 + names are trademarks, registered trademarks or service marks of their respective
  1324 + holders.
  1325 + </p>
  1326 +</body>
  1327 +</html>
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +/**
  7 + * @fileOverview jQuery adapter provides easy use of basic CKEditor functions
  8 + * and access to internal API. It also integrates some aspects of CKEditor with
  9 + * jQuery framework.
  10 + *
  11 + * Every TEXTAREA, DIV and P elements can be converted to working editor.
  12 + *
  13 + * Plugin exposes some of editor's event to jQuery event system. All of those are namespaces inside
  14 + * ".ckeditor" namespace and can be binded/listened on supported textarea, div and p nodes.
  15 + *
  16 + * Available jQuery events:
  17 + * - instanceReady.ckeditor( editor, rootNode )
  18 + * Triggered when new instance is ready.
  19 + * - destroy.ckeditor( editor )
  20 + * Triggered when instance is destroyed.
  21 + * - getData.ckeditor( editor, eventData )
  22 + * Triggered when getData event is fired inside editor. It can change returned data using eventData reference.
  23 + * - setData.ckeditor( editor )
  24 + * Triggered when getData event is fired inside editor.
  25 + *
  26 + * @example
  27 + * <script src="jquery.js"></script>
  28 + * <script src="ckeditor.js"></script>
  29 + * <script src="adapters/jquery/adapter.js"></script>
  30 + */
  31 +
  32 +(function()
  33 +{
  34 + /**
  35 + * Allows CKEditor to override jQuery.fn.val(), making it possible to use the val()
  36 + * function on textareas, as usual, having it synchronized with CKEditor.<br>
  37 + * <br>
  38 + * This configuration option is global and executed during the jQuery Adapter loading.
  39 + * It can't be customized across editor instances.
  40 + * @type Boolean
  41 + * @example
  42 + * &lt;script&gt;
  43 + * CKEDITOR.config.jqueryOverrideVal = true;
  44 + * &lt;/script&gt;
  45 + * &lt;!-- Important: The JQuery adapter is loaded *after* setting jqueryOverrideVal --&gt;
  46 + * &lt;script src="/ckeditor/adapters/jquery.js"&gt;&lt;/script&gt;
  47 + * @example
  48 + * // ... then later in the code ...
  49 + *
  50 + * $( 'textarea' ).ckeditor();
  51 + * // ...
  52 + * $( 'textarea' ).val( 'New content' );
  53 + */
  54 + CKEDITOR.config.jqueryOverrideVal = typeof CKEDITOR.config.jqueryOverrideVal == 'undefined'
  55 + ? true : CKEDITOR.config.jqueryOverrideVal;
  56 +
  57 + var jQuery = window.jQuery;
  58 +
  59 + if ( typeof jQuery == 'undefined' )
  60 + return;
  61 +
  62 + // jQuery object methods.
  63 + jQuery.extend( jQuery.fn,
  64 + /** @lends jQuery.fn */
  65 + {
  66 + /**
  67 + * Return existing CKEditor instance for first matched element.
  68 + * Allows to easily use internal API. Doesn't return jQuery object.
  69 + *
  70 + * Raised exception if editor doesn't exist or isn't ready yet.
  71 + *
  72 + * @name jQuery.ckeditorGet
  73 + * @return CKEDITOR.editor
  74 + * @see CKEDITOR.editor
  75 + */
  76 + ckeditorGet: function()
  77 + {
  78 + var instance = this.eq( 0 ).data( 'ckeditorInstance' );
  79 + if ( !instance )
  80 + throw "CKEditor not yet initialized, use ckeditor() with callback.";
  81 + return instance;
  82 + },
  83 + /**
  84 + * Triggers creation of CKEditor in all matched elements (reduced to DIV, P and TEXTAREAs).
  85 + * Binds callback to instanceReady event of all instances. If editor is already created, than
  86 + * callback is fired right away.
  87 + *
  88 + * Mixed parameter order allowed.
  89 + *
  90 + * @param callback Function to be run on editor instance. Passed parameters: [ textarea ].
  91 + * Callback is fiered in "this" scope being ckeditor instance and having source textarea as first param.
  92 + *
  93 + * @param config Configuration options for new instance(s) if not already created.
  94 + * See URL
  95 + *
  96 + * @example
  97 + * $( 'textarea' ).ckeditor( function( textarea ) {
  98 + * $( textarea ).val( this.getData() )
  99 + * } );
  100 + *
  101 + * @name jQuery.fn.ckeditor
  102 + * @return jQuery.fn
  103 + */
  104 + ckeditor: function( callback, config )
  105 + {
  106 + if ( !CKEDITOR.env.isCompatible )
  107 + return this;
  108 +
  109 + if ( !jQuery.isFunction( callback ))
  110 + {
  111 + var tmp = config;
  112 + config = callback;
  113 + callback = tmp;
  114 + }
  115 + config = config || {};
  116 +
  117 + this.filter( 'textarea, div, p' ).each( function()
  118 + {
  119 + var $element = jQuery( this ),
  120 + editor = $element.data( 'ckeditorInstance' ),
  121 + instanceLock = $element.data( '_ckeditorInstanceLock' ),
  122 + element = this;
  123 +
  124 + if ( editor && !instanceLock )
  125 + {
  126 + if ( callback )
  127 + callback.apply( editor, [ this ] );
  128 + }
  129 + else if ( !instanceLock )
  130 + {
  131 + // CREATE NEW INSTANCE
  132 +
  133 + // Handle config.autoUpdateElement inside this plugin if desired.
  134 + if ( config.autoUpdateElement
  135 + || ( typeof config.autoUpdateElement == 'undefined' && CKEDITOR.config.autoUpdateElement ) )
  136 + {
  137 + config.autoUpdateElementJquery = true;
  138 + }
  139 +
  140 + // Always disable config.autoUpdateElement.
  141 + config.autoUpdateElement = false;
  142 + $element.data( '_ckeditorInstanceLock', true );
  143 +
  144 + // Set instance reference in element's data.
  145 + editor = CKEDITOR.replace( element, config );
  146 + $element.data( 'ckeditorInstance', editor );
  147 +
  148 + // Register callback.
  149 + editor.on( 'instanceReady', function( event )
  150 + {
  151 + var editor = event.editor;
  152 + setTimeout( function()
  153 + {
  154 + // Delay bit more if editor is still not ready.
  155 + if ( !editor.element )
  156 + {
  157 + setTimeout( arguments.callee, 100 );
  158 + return;
  159 + }
  160 +
  161 + // Remove this listener.
  162 + event.removeListener( 'instanceReady', this.callee );
  163 +
  164 + // Forward setData on dataReady.
  165 + editor.on( 'dataReady', function()
  166 + {
  167 + $element.trigger( 'setData' + '.ckeditor', [ editor ] );
  168 + });
  169 +
  170 + // Forward getData.
  171 + editor.on( 'getData', function( event ) {
  172 + $element.trigger( 'getData' + '.ckeditor', [ editor, event.data ] );
  173 + }, 999 );
  174 +
  175 + // Forward destroy event.
  176 + editor.on( 'destroy', function()
  177 + {
  178 + $element.trigger( 'destroy.ckeditor', [ editor ] );
  179 + });
  180 +
  181 + // Integrate with form submit.
  182 + if ( editor.config.autoUpdateElementJquery && $element.is( 'textarea' ) && $element.parents( 'form' ).length )
  183 + {
  184 + var onSubmit = function()
  185 + {
  186 + $element.ckeditor( function()
  187 + {
  188 + editor.updateElement();
  189 + });
  190 + };
  191 +
  192 + // Bind to submit event.
  193 + $element.parents( 'form' ).submit( onSubmit );
  194 +
  195 + // Bind to form-pre-serialize from jQuery Forms plugin.
  196 + $element.parents( 'form' ).bind( 'form-pre-serialize', onSubmit );
  197 +
  198 + // Unbind when editor destroyed.
  199 + $element.bind( 'destroy.ckeditor', function()
  200 + {
  201 + $element.parents( 'form' ).unbind( 'submit', onSubmit );
  202 + $element.parents( 'form' ).unbind( 'form-pre-serialize', onSubmit );
  203 + });
  204 + }
  205 +
  206 + // Garbage collect on destroy.
  207 + editor.on( 'destroy', function()
  208 + {
  209 + $element.data( 'ckeditorInstance', null );
  210 + });
  211 +
  212 + // Remove lock.
  213 + $element.data( '_ckeditorInstanceLock', null );
  214 +
  215 + // Fire instanceReady event.
  216 + $element.trigger( 'instanceReady.ckeditor', [ editor ] );
  217 +
  218 + // Run given (first) code.
  219 + if ( callback )
  220 + callback.apply( editor, [ element ] );
  221 + }, 0 );
  222 + }, null, null, 9999);
  223 + }
  224 + else
  225 + {
  226 + // Editor is already during creation process, bind our code to the event.
  227 + CKEDITOR.on( 'instanceReady', function( event )
  228 + {
  229 + var editor = event.editor;
  230 + setTimeout( function()
  231 + {
  232 + // Delay bit more if editor is still not ready.
  233 + if ( !editor.element )
  234 + {
  235 + setTimeout( arguments.callee, 100 );
  236 + return;
  237 + }
  238 +
  239 + if ( editor.element.$ == element )
  240 + {
  241 + // Run given code.
  242 + if ( callback )
  243 + callback.apply( editor, [ element ] );
  244 + }
  245 + }, 0 );
  246 + }, null, null, 9999);
  247 + }
  248 + });
  249 + return this;
  250 + }
  251 + });
  252 +
  253 + // New val() method for objects.
  254 + if ( CKEDITOR.config.jqueryOverrideVal )
  255 + {
  256 + jQuery.fn.val = CKEDITOR.tools.override( jQuery.fn.val, function( oldValMethod )
  257 + {
  258 + /**
  259 + * CKEditor-aware val() method.
  260 + *
  261 + * Acts same as original jQuery val(), but for textareas which have CKEditor instances binded to them, method
  262 + * returns editor's content. It also works for settings values.
  263 + *
  264 + * @param oldValMethod
  265 + * @name jQuery.fn.val
  266 + */
  267 + return function( newValue, forceNative )
  268 + {
  269 + var isSetter = typeof newValue != 'undefined',
  270 + result;
  271 +
  272 + this.each( function()
  273 + {
  274 + var $this = jQuery( this ),
  275 + editor = $this.data( 'ckeditorInstance' );
  276 +
  277 + if ( !forceNative && $this.is( 'textarea' ) && editor )
  278 + {
  279 + if ( isSetter )
  280 + editor.setData( newValue );
  281 + else
  282 + {
  283 + result = editor.getData();
  284 + // break;
  285 + return null;
  286 + }
  287 + }
  288 + else
  289 + {
  290 + if ( isSetter )
  291 + oldValMethod.call( $this, newValue );
  292 + else
  293 + {
  294 + result = oldValMethod.call( $this );
  295 + // break;
  296 + return null;
  297 + }
  298 + }
  299 +
  300 + return true;
  301 + });
  302 + return isSetter ? this : result;
  303 + };
  304 + });
  305 + }
  306 +})();
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.dialog.add( 'a11yHelp', function( editor )
  7 +{
  8 + var lang = editor.lang.accessibilityHelp,
  9 + id = CKEDITOR.tools.getNextId();
  10 +
  11 + // CharCode <-> KeyChar.
  12 + var keyMap =
  13 + {
  14 + 8 : "BACKSPACE",
  15 + 9 : "TAB" ,
  16 + 13 : "ENTER" ,
  17 + 16 : "SHIFT" ,
  18 + 17 : "CTRL" ,
  19 + 18 : "ALT" ,
  20 + 19 : "PAUSE" ,
  21 + 20 : "CAPSLOCK" ,
  22 + 27 : "ESCAPE" ,
  23 + 33 : "PAGE UP" ,
  24 + 34 : "PAGE DOWN" ,
  25 + 35 : "END" ,
  26 + 36 : "HOME" ,
  27 + 37 : "LEFT ARROW" ,
  28 + 38 : "UP ARROW" ,
  29 + 39 : "RIGHT ARROW" ,
  30 + 40 : "DOWN ARROW" ,
  31 + 45 : "INSERT" ,
  32 + 46 : "DELETE" ,
  33 + 91 : "LEFT WINDOW KEY" ,
  34 + 92 : "RIGHT WINDOW KEY" ,
  35 + 93 : "SELECT KEY" ,
  36 + 96 : "NUMPAD 0" ,
  37 + 97 : "NUMPAD 1" ,
  38 + 98 : "NUMPAD 2" ,
  39 + 99 : "NUMPAD 3" ,
  40 + 100 : "NUMPAD 4" ,
  41 + 101 : "NUMPAD 5" ,
  42 + 102 : "NUMPAD 6" ,
  43 + 103 : "NUMPAD 7" ,
  44 + 104 : "NUMPAD 8" ,
  45 + 105 : "NUMPAD 9" ,
  46 + 106 : "MULTIPLY" ,
  47 + 107 : "ADD" ,
  48 + 109 : "SUBTRACT" ,
  49 + 110 : "DECIMAL POINT" ,
  50 + 111 : "DIVIDE" ,
  51 + 112 : "F1" ,
  52 + 113 : "F2" ,
  53 + 114 : "F3" ,
  54 + 115 : "F4" ,
  55 + 116 : "F5" ,
  56 + 117 : "F6" ,
  57 + 118 : "F7" ,
  58 + 119 : "F8" ,
  59 + 120 : "F9" ,
  60 + 121 : "F10" ,
  61 + 122 : "F11" ,
  62 + 123 : "F12" ,
  63 + 144 : "NUM LOCK" ,
  64 + 145 : "SCROLL LOCK" ,
  65 + 186 : "SEMI-COLON" ,
  66 + 187 : "EQUAL SIGN" ,
  67 + 188 : "COMMA" ,
  68 + 189 : "DASH" ,
  69 + 190 : "PERIOD" ,
  70 + 191 : "FORWARD SLASH" ,
  71 + 192 : "GRAVE ACCENT" ,
  72 + 219 : "OPEN BRACKET" ,
  73 + 220 : "BACK SLASH" ,
  74 + 221 : "CLOSE BRAKET" ,
  75 + 222 : "SINGLE QUOTE"
  76 + };
  77 +
  78 + // Modifier keys override.
  79 + keyMap[ CKEDITOR.ALT ] = 'ALT';
  80 + keyMap[ CKEDITOR.SHIFT ] = 'SHIFT';
  81 + keyMap[ CKEDITOR.CTRL ] = 'CTRL';
  82 +
  83 + // Sort in desc.
  84 + var modifiers = [ CKEDITOR.ALT, CKEDITOR.SHIFT, CKEDITOR.CTRL ];
  85 +
  86 + function representKeyStroke( keystroke )
  87 + {
  88 + var quotient,
  89 + modifier,
  90 + presentation = [];
  91 +
  92 + for ( var i = 0; i < modifiers.length; i++ )
  93 + {
  94 + modifier = modifiers[ i ];
  95 + quotient = keystroke / modifiers[ i ];
  96 + if ( quotient > 1 && quotient <= 2 )
  97 + {
  98 + keystroke -= modifier;
  99 + presentation.push( keyMap[ modifier ] );
  100 + }
  101 + }
  102 +
  103 + presentation.push( keyMap[ keystroke ]
  104 + || String.fromCharCode( keystroke ) );
  105 +
  106 + return presentation.join( '+' );
  107 + }
  108 +
  109 + var variablesPattern = /\$\{(.*?)\}/g;
  110 + function replaceVariables( match, name )
  111 + {
  112 + var keystrokes = editor.config.keystrokes,
  113 + definition,
  114 + length = keystrokes.length;
  115 +
  116 + for ( var i = 0; i < length; i++ )
  117 + {
  118 + definition = keystrokes[ i ];
  119 + if ( definition[ 1 ] == name )
  120 + break;
  121 + }
  122 + return representKeyStroke( definition[ 0 ] );
  123 + }
  124 +
  125 + // Create the help list directly from lang file entries.
  126 + function buildHelpContents()
  127 + {
  128 + var pageTpl = '<div class="cke_accessibility_legend" role="document" aria-labelledby="' + id + '_arialbl" tabIndex="-1">%1</div>' +
  129 + '<span id="' + id + '_arialbl" class="cke_voice_label">' + lang.contents + ' </span>',
  130 + sectionTpl = '<h1>%1</h1><dl>%2</dl>',
  131 + itemTpl = '<dt>%1</dt><dd>%2</dd>';
  132 +
  133 + var pageHtml = [],
  134 + sections = lang.legend,
  135 + sectionLength = sections.length;
  136 +
  137 + for ( var i = 0; i < sectionLength; i++ )
  138 + {
  139 + var section = sections[ i ],
  140 + sectionHtml = [],
  141 + items = section.items,
  142 + itemsLength = items.length;
  143 +
  144 + for ( var j = 0; j < itemsLength; j++ )
  145 + {
  146 + var item = items[ j ],
  147 + itemHtml;
  148 + itemHtml = itemTpl.replace( '%1', item.name ).
  149 + replace( '%2', item.legend.replace( variablesPattern, replaceVariables ) );
  150 + sectionHtml.push( itemHtml );
  151 + }
  152 +
  153 + pageHtml.push( sectionTpl.replace( '%1', section.name ).replace( '%2', sectionHtml.join( '' ) ) );
  154 + }
  155 +
  156 + return pageTpl.replace( '%1', pageHtml.join( '' ) );
  157 + }
  158 +
  159 + return {
  160 + title : lang.title,
  161 + minWidth : 600,
  162 + minHeight : 400,
  163 + contents : [
  164 + {
  165 + id : 'info',
  166 + label : editor.lang.common.generalTab,
  167 + expand : true,
  168 + elements :
  169 + [
  170 + {
  171 + type : 'html',
  172 + id : 'legends',
  173 + style : 'white-space:normal;',
  174 + focus : function() {},
  175 + html : buildHelpContents() +
  176 + '<style type="text/css">' +
  177 + '.cke_accessibility_legend' +
  178 + '{' +
  179 + 'width:600px;' +
  180 + 'height:400px;' +
  181 + 'padding-right:5px;' +
  182 + 'overflow-y:auto;' +
  183 + 'overflow-x:hidden;' +
  184 + '}' +
  185 + // Some adjustments are to be done for IE6 and Quirks to work "properly" (#5757)
  186 + '.cke_browser_quirks .cke_accessibility_legend,' +
  187 + '.cke_browser_ie6 .cke_accessibility_legend' +
  188 + '{' +
  189 + 'height:390px' +
  190 + '}' +
  191 + // Override non-wrapping white-space rule in reset css.
  192 + '.cke_accessibility_legend *' +
  193 + '{' +
  194 + 'white-space:normal;' +
  195 + '}' +
  196 + '.cke_accessibility_legend h1' +
  197 + '{' +
  198 + 'font-size: 20px;' +
  199 + 'border-bottom: 1px solid #AAA;' +
  200 + 'margin: 5px 0px 15px;' +
  201 + '}' +
  202 + '.cke_accessibility_legend dl' +
  203 + '{' +
  204 + 'margin-left: 5px;' +
  205 + '}' +
  206 + '.cke_accessibility_legend dt' +
  207 + '{' +
  208 + 'font-size: 13px;' +
  209 + 'font-weight: bold;' +
  210 + '}' +
  211 + '.cke_accessibility_legend dd' +
  212 + '{' +
  213 + 'margin:10px' +
  214 + '}' +
  215 + '</style>'
  216 + }
  217 + ]
  218 + }
  219 + ],
  220 + buttons : [ CKEDITOR.dialog.cancelButton ]
  221 + };
  222 +});
  1 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  2 +For licensing, see LICENSE.html or http://ckeditor.com/license
  3 +
  4 +cs.js Found: 30 Missing: 0
  5 +cy.js Found: 30 Missing: 0
  6 +da.js Found: 12 Missing: 18
  7 +de.js Found: 30 Missing: 0
  8 +el.js Found: 25 Missing: 5
  9 +eo.js Found: 30 Missing: 0
  10 +fa.js Found: 30 Missing: 0
  11 +fi.js Found: 30 Missing: 0
  12 +fr.js Found: 30 Missing: 0
  13 +gu.js Found: 12 Missing: 18
  14 +he.js Found: 30 Missing: 0
  15 +it.js Found: 30 Missing: 0
  16 +mk.js Found: 5 Missing: 25
  17 +nb.js Found: 30 Missing: 0
  18 +nl.js Found: 30 Missing: 0
  19 +no.js Found: 30 Missing: 0
  20 +pt-br.js Found: 30 Missing: 0
  21 +ro.js Found: 6 Missing: 24
  22 +tr.js Found: 30 Missing: 0
  23 +ug.js Found: 27 Missing: 3
  24 +vi.js Found: 6 Missing: 24
  25 +zh-cn.js Found: 30 Missing: 0
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'cs',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Instrukce pro přístupnost',
  11 + contents : 'Obsah nápovědy. Pro uzavření tohoto dialogu stiskněte klávesu ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Obecné',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Panel nástrojů editoru',
  20 + legend:
  21 + 'Stiskněte${toolbarFocus} k procházení panelu nástrojů. Přejděte na další a předchozí skupiny pomocí TAB a SHIFT-TAB. Přechod na další a předchozí tlačítko panelu nástrojů je pomocí ŠIPKA VPRAVO nebo ŠIPKA VLEVO. Stisknutím mezerníku nebo klávesy ENTER tlačítko aktivujete.'
  22 + },
  23 +
  24 + {
  25 + name : 'Dialogové okno editoru',
  26 + legend :
  27 + 'Uvnitř dialogového okna stiskněte TAB pro přesunutí na další pole, stiskněte SHIFT + TAB pro přesun na předchozí pole, stiskněte ENTER pro odeslání dialogu, stiskněte ESC pro jeho zrušení. Pro dialogová okna, která mají mnoho karet stiskněte ALT + F10 pr oprocházení seznamu karet. Pak se přesuňte na další kartu pomocí TAB nebo ŠIPKA VPRAVO. Pro přesun na předchozí stiskněte SHIFT + TAB nebo ŠIPKA VLEVO. Stiskněte MEZERNÍK nebo ENTER pro vybrání stránky karet.'
  28 + },
  29 +
  30 + {
  31 + name : 'Kontextové menu editoru',
  32 + legend :
  33 + 'Stiskněte ${contextMenu} nebo klávesu APPLICATION k otevření kontextového menu. Pak se přesuňte na další možnost menu pomocí TAB nebo ŠIPKY DOLŮ. Přesuňte se na předchozí možnost pomocí SHIFT+TAB nebo ŠIPKY NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti menu. Podmenu současné možnosti otevřete pomocí MEZERNÍKU nebo ENTER či ŠIPKY DOLEVA. Kontextové menu uzavřete stiskem ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Rámeček seznamu editoru',
  38 + legend :
  39 + 'Uvnitř rámečku seznamu se přesunete na další položku menu pomocí TAB nebo ŠIPKA DOLŮ. Na předchozí položku se přesunete SHIFT + TAB nebo ŠIPKA NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti seznamu. Stiskněte ESC pro uzavření seznamu.'
  40 + },
  41 +
  42 + {
  43 + name : 'Lišta cesty prvku v editoru',
  44 + legend :
  45 + 'Stiskněte ${elementsPathFocus} pro procházení lišty cesty prvku. Na další tlačítko prvku se přesunete pomocí TAB nebo ŠIPKA VPRAVO. Na předchozí položku se přesunete pomocí SHIFT + TAB nebo ŠIPKA VLEVO. Stiskněte MEZERNÍK nebo ENTER pro vybrání prvku v editoru.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Příkazy',
  51 + items :
  52 + [
  53 + {
  54 + name : ' Příkaz Zpět',
  55 + legend : 'Stiskněte ${undo}'
  56 + },
  57 + {
  58 + name : ' Příkaz Znovu',
  59 + legend : 'Stiskněte ${redo}'
  60 + },
  61 + {
  62 + name : ' Příkaz Tučné',
  63 + legend : 'Stiskněte ${bold}'
  64 + },
  65 + {
  66 + name : ' Příkaz Kurzíva',
  67 + legend : 'Stiskněte ${italic}'
  68 + },
  69 + {
  70 + name : ' Příkaz Podtržení',
  71 + legend : 'Stiskněte ${underline}'
  72 + },
  73 + {
  74 + name : ' Příkaz Odkaz',
  75 + legend : 'Stiskněte ${link}'
  76 + },
  77 + {
  78 + name : ' Příkaz Skrýt panel nástrojů',
  79 + legend : 'Stiskněte ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : ' Nápověda přístupnosti',
  83 + legend : 'Stiskněte ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'cy',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Canllawiau Hygyrchedd',
  11 + contents : 'Cynnwys Cymorth. I gau y deialog hwn, pwyswch ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Cyffredinol',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Bar Offer y Golygydd',
  20 + legend:
  21 + 'Pwyswch $ {toolbarFocus} i fynd at y bar offer. Symudwch i\'r grŵp bar offer nesaf a blaenorol gyda TAB a SHIFT-TAB. Symudwch i\'r botwm bar offer nesaf a blaenorol gyda SAETH DDE neu SAETH CHWITH. Pwyswch SPACE neu ENTER i wneud botwm y bar offer yn weithredol.'
  22 + },
  23 +
  24 + {
  25 + name : 'Deialog y Golygydd',
  26 + legend :
  27 + 'Tu mewn i\'r deialog, pwyswch TAB i fynd i\'r maes nesaf ar y deialog, pwyswch SHIFT + TAB i symud i faes blaenorol, pwyswch ENTER i gyflwyno\'r deialog, pwyswch ESC i ddiddymu\'r deialog. Ar gyfer deialogau sydd â thudalennau aml-tab, pwyswch ALT + F10 i lywio\'r tab-restr. Yna symudwch i\'r tab nesaf gyda TAB neu SAETH DDE. Symudwch i dab blaenorol gyda SHIFT + TAB neu\'r SAETH CHWITH. Pwyswch SPACE neu ENTER i ddewis y dudalen tab.'
  28 + },
  29 +
  30 + {
  31 + name : 'Dewislen Cyd-destun y Golygydd',
  32 + legend :
  33 + 'Pwyswch $ {contextMenu} neu\'r ALLWEDD \'APPLICATION\' i agor y ddewislen cyd-destun. Yna symudwch i\'r opsiwn ddewislen nesaf gyda\'r TAB neu\'r SAETH I LAWR. Symudwch i\'r opsiwn blaenorol gyda SHIFT + TAB neu\'r SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn ddewislen. Agorwch is-dewislen yr opsiwn cyfredol gyda SPACE neu ENTER neu SAETH DDE. Ewch yn ôl i\'r eitem ar y ddewislen uwch gydag ESC neu SAETH CHWITH. Ceuwch y ddewislen cyd-destun gydag ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Blwch Rhestr y Golygydd',
  38 + legend :
  39 + 'Tu mewn rhestr-bocs, ewch i\'r eitem rhestr nesaf gyda TAB neu\'r SAETH I LAWR. Symudwch i restr eitem flaenorol gyda SHIFT + TAB neu SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn o\'r rhestr. Pwyswch ESC i gau\'r rhestr.'
  40 + },
  41 +
  42 + {
  43 + name : 'Bar Llwybr Elfen y Golygydd',
  44 + legend :
  45 + 'Pwyswch $ {elementsPathFocus} i fynd i\'r elfennau llwybr bar. Symudwch i fotwm yr elfen nesaf gyda TAB neu SAETH DDE. Symudwch i fotwm blaenorol gyda SHIFT + TAB neu SAETH CHWITH. Pwyswch SPACE neu ENTER i ddewis yr elfen yn y golygydd.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Gorchmynion',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Gorchymyn dadwneud',
  55 + legend : 'Pwyswch ${undo}'
  56 + },
  57 + {
  58 + name : 'Gorchymyn ailadrodd',
  59 + legend : 'Pwyswch ${redo}'
  60 + },
  61 + {
  62 + name : 'Gorchymyn Bras',
  63 + legend : 'Pwyswch ${bold}'
  64 + },
  65 + {
  66 + name : 'Gorchymyn italig',
  67 + legend : 'Pwyswch ${italig}'
  68 + },
  69 + {
  70 + name : 'Gorchymyn tanlinellu',
  71 + legend : 'Pwyso ${underline}'
  72 + },
  73 + {
  74 + name : 'Gorchymyn dolen',
  75 + legend : 'Pwyswch ${link}'
  76 + },
  77 + {
  78 + name : 'Gorchymyn Cwympo\'r Dewislen',
  79 + legend : 'Pwyswch ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'Cymorth Hygyrchedd',
  83 + legend : 'Pwyswch ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'da',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Tilgængelighedsinstrukser',
  11 + contents : 'Help Contents. To close this dialog press ESC.', // MISSING
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Generelt',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Editor værktøjslinje',
  20 + legend:
  21 + 'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.' // MISSING
  22 + },
  23 +
  24 + {
  25 + name : 'Editor Dialog', // MISSING
  26 + legend :
  27 + 'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.' // MISSING
  28 + },
  29 +
  30 + {
  31 + name : 'Editor Context Menu', // MISSING
  32 + legend :
  33 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.' // MISSING
  34 + },
  35 +
  36 + {
  37 + name : 'Editor List Box', // MISSING
  38 + legend :
  39 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.' // MISSING
  40 + },
  41 +
  42 + {
  43 + name : 'Editor Element Path Bar', // MISSING
  44 + legend :
  45 + 'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.' // MISSING
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Kommandoer',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Fortryd kommando',
  55 + legend : 'Klik på ${undo}'
  56 + },
  57 + {
  58 + name : 'Gentag kommando',
  59 + legend : 'Klik ${redo}'
  60 + },
  61 + {
  62 + name : ' Bold command', // MISSING
  63 + legend : 'Klik ${bold}'
  64 + },
  65 + {
  66 + name : ' Italic command', // MISSING
  67 + legend : 'Press ${italic}' // MISSING
  68 + },
  69 + {
  70 + name : ' Underline command', // MISSING
  71 + legend : 'Klik ${underline}'
  72 + },
  73 + {
  74 + name : ' Link command', // MISSING
  75 + legend : 'Klik ${link}'
  76 + },
  77 + {
  78 + name : ' Toolbar Collapse command', // MISSING
  79 + legend : 'Press ${toolbarCollapse}' // MISSING
  80 + },
  81 + {
  82 + name : ' Accessibility Help', // MISSING
  83 + legend : 'Kilk ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'de',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Barrierefreiheitinformationen',
  11 + contents : 'Hilfeinhalt. Um den Dialog zu schliessen die Taste \'ESC\' drücken.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Allgemein',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Editor Symbolleiste',
  20 + legend:
  21 + 'Drücken Sie ${toolbarFocus} auf der Symbolleiste. Gehen Sie zur nächsten oder vorherigen Symbolleistengruppe mit TAB und SHIFT-TAB. Gehen Sie zur nächsten oder vorherigen Symbolleiste auf die Schaltfläche mit dem RECHTS- oder LINKS-Pfeil. Drücken Sie die Leertaste oder Eingabetaste, um die Schaltfläche in der Symbolleiste aktivieren.'
  22 + },
  23 +
  24 + {
  25 + name : 'Editor Dialog',
  26 + legend :
  27 + 'Innerhalb des Dialogs drücken Sie TAB um zum nächsten Dialogfeld zu gelangen, drücken Sie SHIFT-TAG um zum vorherigen Feld zu wechseln, drücken Sie ENTER um den Dialog abzusenden und ESC um den Dialog zu abzubrechen. Um zwischen den Reitern innerhalb eines Dialogs zu wechseln drücken sie ALT-F10. Um zum nächsten Reiter zu gelangen können Sie TAB oder die rechte Pfeiltaste. Zurück gelangt man mit SHIFT-TAB oder der linken Pfeiltaste. Mit der Leertaste oder Enter kann man den Reiter auswählen.'
  28 + },
  29 +
  30 + {
  31 + name : 'Editor Kontextmenü',
  32 + legend :
  33 + 'Dürcken Sie ${contextMenu} oder die Anwendungstaste um das Kontextmenü zu öffnen. Man kann die Pfeiltasten zum Wechsel benutzen. Mit der Leertaste oder der Enter-Taste kann man den Menüpunkt aufrufen. Schliessen Sie das Kontextmenü mit der ESC-Taste.'
  34 + },
  35 +
  36 + {
  37 + name : 'Editor Listen',
  38 + legend :
  39 + 'Innerhalb einer Listenbox kann man mit der TAB-Taste oder den Pfeilrunter-Taste den nächsten Menüeintrag wählen. Mit der Shift-TAB Tastenkombination oder der Pfeilhoch-Taste gelangt man zum vorherigen Menüpunkt. Mit der Leertaste oder Enter kann man den Menüpunkt auswählen. Drücken Sie ESC zum Verlassen des Menüs.'
  40 + },
  41 +
  42 + {
  43 + name : 'Editor Elementpfadleiste',
  44 + legend :
  45 + 'Drücken Sie ${elementsPathFocus} um sich durch die Pfadleiste zu bewegen. Um zum nächsten Element zu gelangen drücken Sie TAB oder die Pfeilrechts-Taste. Zum vorherigen Element gelangen Sie mit der SHIFT-TAB oder der Pfeillinks-Taste. Drücken Sie die Leertaste oder Enter um das Element auszuwählen.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Befehle',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Wiederholen Befehl',
  55 + legend : 'Drücken Sie ${undo}'
  56 + },
  57 + {
  58 + name : 'Rückgängig Befehl',
  59 + legend : 'Drücken Sie ${redo}'
  60 + },
  61 + {
  62 + name : 'Fettschrift Befehl',
  63 + legend : 'Drücken Sie ${bold}'
  64 + },
  65 + {
  66 + name : 'Italic Befehl',
  67 + legend : 'Drücken Sie ${italic}'
  68 + },
  69 + {
  70 + name : 'Unterstreichung Befehl',
  71 + legend : 'Drücken Sie ${underline}'
  72 + },
  73 + {
  74 + name : 'Link Befehl',
  75 + legend : 'Drücken Sie ${link}'
  76 + },
  77 + {
  78 + name : 'Symbolleiste zuammenklappen Befehl',
  79 + legend : 'Drücken Sie ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'Eingabehilfen',
  83 + legend : 'Drücken Sie ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'el',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Οδηγίες Προσβασιμότητας',
  11 + contents : 'Περιεχόμενα Βοήθειας. Πατήστε ESC για κλείσιμο.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Γενικά',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Εργαλειοθήκη Επεξεργαστή',
  20 + legend:
  21 + 'Πατήστε ${toolbarFocus} για να περιηγηθείτε στην γραμμή εργαλείων. Μετακινηθείτε ανάμεσα στις ομάδες της γραμμής εργαλείων με TAB και Shift-TAB. Μετακινηθείτε ανάμεσα στα κουμπία εργαλείων με ΔΕΞΙ και ΑΡΙΣΤΕΡΟ ΒΕΛΑΚΙ. Πατήστε ΚΕΝΟ ή ENTER για να ενεργοποιήσετε το ενεργό κουμπί εργαλείου.'
  22 + },
  23 +
  24 + {
  25 + name : 'Παράθυρο Διαλόγου Επεξεργαστή',
  26 + legend :
  27 + 'Μέσα σε ένα παράθυρο διαλόγου, πατήστε TAB για να μεταβείτε στο επόμενο πεδίο ή SHIFT + TAB για να μεταβείτε στο προηγούμενο. Πατήστε ENTER για να υποβάλετε την φόρμα. Πατήστε ESC για να ακυρώσετε την διαδικασία της φόρμας. Για παράθυρα διαλόγων που έχουν πολλές σελίδες σε καρτέλες πατήστε ALT + F10 για να μεταβείτε στην λίστα των καρτέλων. Στην συνέχεια μπορείτε να μεταβείτε στην επόμενη καρτέλα πατώντας TAB ή RIGHT ARROW. Μπορείτε να μεταβείτε στην προηγούμενη καρτέλα πατώντας SHIFT + TAB ή LEFT ARROW. Πατήστε SPACE ή ENTER για να επιλέξετε την καρτέλα για προβολή.'
  28 + },
  29 +
  30 + {
  31 + name : 'Αναδυόμενο Μενού Επεξεργαστή',
  32 + legend :
  33 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.' // MISSING
  34 + },
  35 +
  36 + {
  37 + name : 'Editor List Box', // MISSING
  38 + legend :
  39 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.' // MISSING
  40 + },
  41 +
  42 + {
  43 + name : 'Editor Element Path Bar', // MISSING
  44 + legend :
  45 + 'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.' // MISSING
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Εντολές',
  51 + items :
  52 + [
  53 + {
  54 + name : ' Εντολή αναίρεσης',
  55 + legend : 'Πατήστε ${undo}'
  56 + },
  57 + {
  58 + name : ' Εντολή επανάληψης',
  59 + legend : 'Πατήστε ${redo}'
  60 + },
  61 + {
  62 + name : ' Εντολή έντονης γραφής',
  63 + legend : 'Πατήστε ${bold}'
  64 + },
  65 + {
  66 + name : ' Εντολή πλάγιας γραφής',
  67 + legend : 'Πατήστε ${italic}'
  68 + },
  69 + {
  70 + name : ' Εντολή υπογράμμισης',
  71 + legend : 'Πατήστε ${underline}'
  72 + },
  73 + {
  74 + name : ' Εντολή συνδέσμου',
  75 + legend : 'Πατήστε ${link}'
  76 + },
  77 + {
  78 + name : ' Εντολή Σύμπτηξης Εργαλειοθήκης',
  79 + legend : 'Πατήστε ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : ' Βοήθεια Προσβασιμότητας',
  83 + legend : 'Πατήστε ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'en',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Accessibility Instructions',
  11 + contents : 'Help Contents. To close this dialog press ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'General',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Editor Toolbar',
  20 + legend:
  21 + 'Press ${toolbarFocus} to navigate to the toolbar. ' +
  22 + 'Move to the next and previous toolbar group with TAB and SHIFT-TAB. ' +
  23 + 'Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. ' +
  24 + 'Press SPACE or ENTER to activate the toolbar button.'
  25 + },
  26 +
  27 + {
  28 + name : 'Editor Dialog',
  29 + legend :
  30 + 'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. ' +
  31 + 'For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. ' +
  32 + 'Then move to next tab with TAB OR RIGTH ARROW. ' +
  33 + 'Move to previous tab with SHIFT + TAB or LEFT ARROW. ' +
  34 + 'Press SPACE or ENTER to select the tab page.'
  35 + },
  36 +
  37 + {
  38 + name : 'Editor Context Menu',
  39 + legend :
  40 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. ' +
  41 + 'Then move to next menu option with TAB or DOWN ARROW. ' +
  42 + 'Move to previous option with SHIFT+TAB or UP ARROW. ' +
  43 + 'Press SPACE or ENTER to select the menu option. ' +
  44 + 'Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. ' +
  45 + 'Go back to parent menu item with ESC or LEFT ARROW. ' +
  46 + 'Close context menu with ESC.'
  47 + },
  48 +
  49 + {
  50 + name : 'Editor List Box',
  51 + legend :
  52 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. ' +
  53 + 'Move to previous list item with SHIFT + TAB or UP ARROW. ' +
  54 + 'Press SPACE or ENTER to select the list option. ' +
  55 + 'Press ESC to close the list-box.'
  56 + },
  57 +
  58 + {
  59 + name : 'Editor Element Path Bar',
  60 + legend :
  61 + 'Press ${elementsPathFocus} to navigate to the elements path bar. ' +
  62 + 'Move to next element button with TAB or RIGHT ARROW. ' +
  63 + 'Move to previous button with SHIFT+TAB or LEFT ARROW. ' +
  64 + 'Press SPACE or ENTER to select the element in editor.'
  65 + }
  66 + ]
  67 + },
  68 + {
  69 + name : 'Commands',
  70 + items :
  71 + [
  72 + {
  73 + name : ' Undo command',
  74 + legend : 'Press ${undo}'
  75 + },
  76 + {
  77 + name : ' Redo command',
  78 + legend : 'Press ${redo}'
  79 + },
  80 + {
  81 + name : ' Bold command',
  82 + legend : 'Press ${bold}'
  83 + },
  84 + {
  85 + name : ' Italic command',
  86 + legend : 'Press ${italic}'
  87 + },
  88 + {
  89 + name : ' Underline command',
  90 + legend : 'Press ${underline}'
  91 + },
  92 + {
  93 + name : ' Link command',
  94 + legend : 'Press ${link}'
  95 + },
  96 + {
  97 + name : ' Toolbar Collapse command',
  98 + legend : 'Press ${toolbarCollapse}'
  99 + },
  100 + {
  101 + name : ' Accessibility Help',
  102 + legend : 'Press ${a11yHelp}'
  103 + }
  104 + ]
  105 + }
  106 + ]
  107 + }
  108 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'eo',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Uzindikoj pri atingeblo',
  11 + contents : 'Helpilenhavo. Por fermi tiun dialogon, premu la ESKAPAN klavon.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Ĝeneralaĵoj',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Ilbreto de la redaktilo',
  20 + legend:
  21 + 'Premu ${toolbarFocus} por atingi la ilbreton. Moviĝu al la sekva aŭ antaŭa grupoj de la ilbreto per la klavoj TABA kaj MAJUSKLIGA-TABA. Moviĝu al la sekva aŭ antaŭa butonoj de la ilbreto per la klavoj SAGO DEKSTREN kaj SAGO MALDEKSTREN. Premu la SPACETklavon aŭ la ENENklavon por aktivigi la ilbretbutonon.'
  22 + },
  23 +
  24 + {
  25 + name : 'Redaktildialogo',
  26 + legend :
  27 + 'En dialogo, premu la TABAN klavon por navigi al la sekva dialogkampo, premu la MAJUSKLIGAN + TABAN klavojn por reveni al la antaŭa kampo, premu la ENENklavon por sendi la dialogon, premu la ESKAPAN klavon por nuligi la dialogon. Por dialogoj kun pluraj retpaĝoj sub langetoj, premu ALT + F10 por navigi al la langetlisto. Poste moviĝu al la sekva langeto per la klavo TABA aŭ SAGO DEKSTREN. Moviĝu al la antaŭa langeto per la klavoj MAJUSKLIGA + TABA aŭ SAGO MALDEKSTREN. Premu la SPACETklavon aŭ la ENENklavon por selekti la langetretpaĝon.'
  28 + },
  29 +
  30 + {
  31 + name : 'Kunteksta menuo de la redaktilo',
  32 + legend :
  33 + 'Premu ${contextMenu} aŭ entajpu la KLAVKOMBINAĴON por malfermi la kuntekstan menuon. Poste moviĝu al la sekva opcio de la menuo per la klavoj TABA aŭ SAGO SUBEN. Moviĝu al la antaŭa opcio per la klavoj MAJUSKLGA + TABA aŭ SAGO SUPREN. Premu la SPACETklavon aŭ ENENklavon por selekti la menuopcion. Malfermu la submenuon de la kuranta opcio per la SPACETklavo aŭ la ENENklavo aŭ la SAGO DEKSTREN. Revenu al la elemento de la patra menuo per la klavoj ESKAPA aŭ SAGO MALDEKSTREN. Fermu la kuntekstan menuon per la ESKAPA klavo.'
  34 + },
  35 +
  36 + {
  37 + name : 'Fallisto de la redaktilo',
  38 + legend :
  39 + 'En fallisto, moviĝu al la sekva listelemento per la klavoj TABA aŭ SAGO SUBEN. Moviĝu al la antaŭa listelemento per la klavoj MAJUSKLIGA + TABA aŭ SAGO SUPREN. Premu la SPACETklavon aŭ ENENklavon por selekti la opcion en la listo. Premu la ESKAPAN klavon por fermi la falmenuon.'
  40 + },
  41 +
  42 + {
  43 + name : 'Breto indikanta la vojon al la redaktilelementoj',
  44 + legend :
  45 + 'Premu ${elementsPathFocus} por navigi al la breto indikanta la vojon al la redaktilelementoj. Moviĝu al la butono de la sekva elemento per la klavoj TABA aŭ SAGO DEKSTREN. Moviĝu al la butono de la antaŭa elemento per la klavoj MAJUSKLIGA + TABA aŭ SAGO MALDEKSTREN. Premu la SPACETklavon aŭ ENENklavon por selekti la elementon en la redaktilo.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Komandoj',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Komando malfari',
  55 + legend : 'Premu ${undo}'
  56 + },
  57 + {
  58 + name : 'Komando refari',
  59 + legend : 'Premu ${redo}'
  60 + },
  61 + {
  62 + name : 'Komando grasa',
  63 + legend : 'Premu ${bold}'
  64 + },
  65 + {
  66 + name : 'Komando kursiva',
  67 + legend : 'Premu ${italic}'
  68 + },
  69 + {
  70 + name : 'Komando substreki',
  71 + legend : 'Premu ${underline}'
  72 + },
  73 + {
  74 + name : 'Komando ligilo',
  75 + legend : 'Premu ${link}'
  76 + },
  77 + {
  78 + name : 'Komando faldi la ilbreton',
  79 + legend : 'Premu ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'Helpilo pri atingeblo',
  83 + legend : 'Premu ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'fa',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'دستورالعملهای دسترسی',
  11 + contents : 'راهنمای فهرست مطالب. برای بستن این کادر محاورهای ESC را فشار دهید.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'عمومی',
  16 + items :
  17 + [
  18 + {
  19 + name : 'نوار ابزار ویرایشگر',
  20 + legend:
  21 + '${toolbarFocus} را برای باز کردن نوار ابزار بفشارید. با کلید Tab و Shif-Tab در مجموعه نوار ابزار بعدی و قبلی حرکت کنید. برای حرکت در کلید نوار ابزار قبلی و بعدی با کلید جهتنمای راست و چپ جابجا شوید. کلید Space یا Enter را برای فعال کردن کلید نوار ابزار بفشارید.'
  22 + },
  23 +
  24 + {
  25 + name : 'پنجره محاورهای ویرایشگر',
  26 + legend :
  27 + 'در داخل یک پنجره محاورهای، کلید Tab را بفشارید تا به پنجرهی بعدی بروید، Shift+Tab برای حرکت به فیلد قبلی، فشردن Enter برای ثبت اطلاعات پنجره، فشردن Esc برای لغو پنجره محاورهای و برای پنجرههایی که چندین برگه دارند، فشردن Alt+F10 جهت رفتن به Tab-List. در نهایت حرکت به برگه بعدی با Tab یا کلید جهتنمای راست. حرکت به برگه قبلی با Shift+Tab یا کلید جهتنمای چپ. فشردن Space یا Enter برای انتخاب یک برگه.'
  28 + },
  29 +
  30 + {
  31 + name : 'منوی متنی ویرایشگر',
  32 + legend :
  33 + '${contextMenu} یا کلید برنامههای کاربردی را برای باز کردن منوی متن را بفشارید. سپس میتوانید برای حرکت به گزینه بعدی منو با کلید Tab و یا کلید جهتنمای پایین جابجا شوید. حرکت به گزینه قبلی با Shift+Tab یا کلید جهتنمای بالا. فشردن Space یا Enter برای انتخاب یک گزینه از منو. باز کردن زیر شاخه گزینه منو جاری با کلید Space یا Enter و یا کلید جهتنمای راست و چپ. بازگشت به منوی والد با کلید Esc یا کلید جهتنمای چپ. بستن منوی متن با Esc.'
  34 + },
  35 +
  36 + {
  37 + name : 'جعبه فهرست ویرایشگر',
  38 + legend :
  39 + 'در داخل جعبه لیست، قلم دوم از اقلام لیست بعدی را با TAB و یا Arrow Down حرکت دهید. انتقال به قلم دوم از اقلام لیست قبلی را با SHIFT + TAB یا UP ARROW. کلید Space یا ENTER را برای انتخاب گزینه لیست بفشارید. کلید ESC را برای بستن جعبه لیست بفشارید.'
  40 + },
  41 +
  42 + {
  43 + name : 'ویرایشگر عنصر نوار راه',
  44 + legend :
  45 + 'برای رفتن به مسیر عناصر ${elementsPathFocus} را بفشارید. حرکت به کلید عنصر بعدی با کلید Tab یا کلید جهتنمای راست. برگشت به کلید قبلی با Shift+Tab یا کلید جهتنمای چپ. فشردن Space یا Enter برای انتخاب یک عنصر در ویرایشگر.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'فرمانها',
  51 + items :
  52 + [
  53 + {
  54 + name : 'بازگشت فرمان',
  55 + legend : 'فشردن ${undo}'
  56 + },
  57 + {
  58 + name : 'انجام مجدد فرمان',
  59 + legend : 'فشردن ${redo}'
  60 + },
  61 + {
  62 + name : 'فرمان متن درشت',
  63 + legend : 'فشردن ${bold}'
  64 + },
  65 + {
  66 + name : 'فرمان متن کج',
  67 + legend : 'فشردن ${italic}'
  68 + },
  69 + {
  70 + name : 'فرمان متن زیرخطدار',
  71 + legend : 'فشردن ${underline}'
  72 + },
  73 + {
  74 + name : 'فرمان پیوند',
  75 + legend : 'فشردن ${link}'
  76 + },
  77 + {
  78 + name : 'بستن نوار ابزار فرمان',
  79 + legend : 'فشردن ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'راهنمای دسترسی',
  83 + legend : 'فشردن ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'fi',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Saavutettavuus ohjeet',
  11 + contents : 'Ohjeen sisällöt. Sulkeaksesi tämän dialogin paina ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Yleinen',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Editorin työkalupalkki',
  20 + legend:
  21 + 'Paina ${toolbarFocus} siirtyäksesi työkalupalkkiin. Siirry seuraavaan ja edelliseen työkalupalkin ryhmään TAB ja SHIFT-TAB näppäimillä. Siirry seuraavaan ja edelliseen työkalupainikkeeseen käyttämällä NUOLI OIKEALLE tai NUOLI VASEMMALLE näppäimillä. Paina VÄLILYÖNTI tai ENTER näppäintä aktivoidaksesi työkalupainikkeen.'
  22 + },
  23 +
  24 + {
  25 + name : 'Editorin dialogi',
  26 + legend :
  27 + 'Dialogin sisällä, painamalla TAB siirryt seuraavaan dialogin kenttään, painamalla SHIFT+TAB siirryt aiempaan kenttään, painamalla ENTER lähetät dialogin, painamalla ESC peruutat dialogin. Dialogeille joissa on useita välilehtiä, paina ALT+F10 siirtyäksesi välillehtilistaan. Siirtyäksesi seuraavaan välilehteen paina TAB tai NUOLI OIKEALLE. Siirry edelliseen välilehteen painamalla SHIFT+TAB tai nuoli vasemmalle. Paina VÄLILYÖNTI tai ENTER valitaksesi välilehden.'
  28 + },
  29 +
  30 + {
  31 + name : 'Editorin oheisvalikko',
  32 + legend :
  33 + 'Paina ${contextMenu} tai SOVELLUSPAINIKETTA avataksesi oheisvalikon. Liiku seuraavaan valikon vaihtoehtoon TAB tai NUOLI ALAS näppäimillä. Siirry edelliseen vaihtoehtoon SHIFT+TAB tai NUOLI YLÖS näppäimillä. Paina VÄLILYÖNTI tai ENTER valitaksesi valikon kohdan. Avataksesi nykyisen kohdan alivalikon paina VÄLILYÖNTI tai ENTER tai NUOLI OIKEALLE painiketta. Siirtyäksesi takaisin valikon ylemmälle tasolle paina ESC tai NUOLI vasemmalle. Oheisvalikko suljetaan ESC painikkeella.'
  34 + },
  35 +
  36 + {
  37 + name : 'Editorin listalaatikko',
  38 + legend :
  39 + 'Listalaatikon sisällä siirry seuraavaan listan kohtaan TAB tai NUOLI ALAS painikkeilla. Siirry edelliseen listan kohtaan SHIFT+TAB tai NUOLI YLÖS painikkeilla. Paina VÄLILYÖNTI tai ENTER valitaksesi listan vaihtoehdon. Paina ESC sulkeaksesi listalaatikon.'
  40 + },
  41 +
  42 + {
  43 + name : 'Editorin elementtipolun palkki',
  44 + legend :
  45 + 'Paina ${elementsPathFocus} siirtyäksesi elementtipolun palkkiin. Siirry seuraavaan elementtipainikkeeseen TAB tai NUOLI OIKEALLE painikkeilla. Siirry aiempaan painikkeeseen SHIFT+TAB tai NUOLI VASEMMALLE painikkeilla. Paina VÄLILYÖNTI tai ENTER valitaksesi elementin editorissa.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Komennot',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Peruuta komento',
  55 + legend : 'Paina ${undo}'
  56 + },
  57 + {
  58 + name : 'Tee uudelleen komento',
  59 + legend : 'Paina ${redo}'
  60 + },
  61 + {
  62 + name : 'Lihavoi komento',
  63 + legend : 'Paina ${bold}'
  64 + },
  65 + {
  66 + name : 'Kursivoi komento',
  67 + legend : 'Paina ${italic}'
  68 + },
  69 + {
  70 + name : 'Alleviivaa komento',
  71 + legend : 'Paina ${underline}'
  72 + },
  73 + {
  74 + name : 'Linkki komento',
  75 + legend : 'Paina ${link}'
  76 + },
  77 + {
  78 + name : 'Pienennä työkalupalkki komento',
  79 + legend : 'Paina ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'Saavutettavuus ohjeet',
  83 + legend : 'Paina ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'fr',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Instructions pour l\'accessibilité',
  11 + contents : 'Contenu de l\'aide. Pour fermer ce dialogue, appuyez sur la touche ESC (Echappement).',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Général',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Barre d\'outils de l\'éditeur',
  20 + legend:
  21 + 'Appuyer sur ${toolbarFocus} pour accéder à la barre d\'outils. Se déplacer vers les groupes suivant ou précédent de la barre d\'outil avec les touches TAB et SHIFT-TAB. Se déplacer vers les boutons suivant ou précédent de la barre d\'outils avec les touches FLECHE DROITE et FLECHE GAUCHE. Appuyer sur la barre d\'espace ou la touche ENTRER pour activer le bouton de barre d\'outils.'
  22 + },
  23 +
  24 + {
  25 + name : 'Dialogue de léditeur',
  26 + legend :
  27 + 'A l\'intérieur d\'un dialogue, appuyer sur la touche TAB pour naviguer jusqu\'au champ de dalogue suivant, appuyez sur les touches SHIFT + TAB pour revenir au champ précédent, appuyez sur la touche ENTRER pour soumettre le dialogue, appuyer sur la touche ESC pour annuler le dialogue. Pour les dialogues avec plusieurs pages d\'onglets, appuyer sur ALT + F10 pour naviguer jusqu\'à la liste des onglets. Puis se déplacer vers l\'onglet suivant avec la touche TAB ou FLECHE DROITE. Se déplacer vers l\'onglet précédent avec les touches SHIFT + TAB ou FLECHE GAUCHE. Appuyer sur la barre d\'espace ou la touche ENTRER pour sélectionner la page de l\'onglet.'
  28 + },
  29 +
  30 + {
  31 + name : 'Menu contextuel de l\'éditeur',
  32 + legend :
  33 + 'Appuyer sur ${contextMenu} ou entrer le RACCOURCI CLAVIER pour ouvrir le menu contextuel. Puis se déplacer vers l\'option suivante du menu avec les touches TAB ou FLECHE BAS. Se déplacer vers l\'option précédente avec les touches SHIFT+TAB ou FLECHE HAUT. appuyer sur la BARRE D\'ESPACE ou la touche ENTREE pour sélectionner l\'option du menu. Oovrir le sous-menu de l\'option courante avec la BARRE D\'ESPACE ou les touches ENTREE ou FLECHE DROITE. Revenir à l\'élément de menu parent avec les touches ESC ou FLECHE GAUCHE. Fermer le menu contextuel avec ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Zone de liste en menu déroulant de l\'éditeur',
  38 + legend :
  39 + 'A l\'intérieur d\'une liste en menu déroulant, se déplacer vers l\'élément suivant de la liste avec les touches TAB ou FLECHE BAS. Se déplacer vers l\'élément précédent de la liste avec les touches SHIFT + TAB ou FLECHE HAUT. Appuyer sur la BARRE D\'ESPACE ou sur ENTREE pour sélectionner l\'option dans la liste. Appuyer sur ESC pour fermer le menu déroulant.'
  40 + },
  41 +
  42 + {
  43 + name : 'Barre d\'emplacement des éléments de léditeur',
  44 + legend :
  45 + 'Appuyer sur ${elementsPathFocus} pour naviguer vers la barre d\'emplacement des éléments de léditeur. Se déplacer vers le bouton d\'élément suivant avec les touches TAB ou FLECHE DROITE. Se déplacer vers le bouton d\'élément précédent avec les touches SHIFT+TAB ou FLECHE GAUCHE. Appuyer sur la BARRE D\'ESPACE ou sur ENTREE pour sélectionner l\'élément dans l\'éditeur.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Commandes',
  51 + items :
  52 + [
  53 + {
  54 + name : ' Commande défaire',
  55 + legend : 'Appuyer sur ${undo}'
  56 + },
  57 + {
  58 + name : ' Commande refaire',
  59 + legend : 'Appuyer sur ${redo}'
  60 + },
  61 + {
  62 + name : ' Commande gras',
  63 + legend : 'Appuyer sur ${bold}'
  64 + },
  65 + {
  66 + name : ' Commande italique',
  67 + legend : 'Appuyer sur ${italic}'
  68 + },
  69 + {
  70 + name : ' Commande souligné',
  71 + legend : 'Appuyer sur ${underline}'
  72 + },
  73 + {
  74 + name : ' Commande lien',
  75 + legend : 'Appuyer sur ${link}'
  76 + },
  77 + {
  78 + name : ' Commande enrouler la barre d\'outils',
  79 + legend : 'Appuyer sur ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : ' Aide Accessibilité',
  83 + legend : 'Appuyer sur ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'gu',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'એક્ક્ષેબિલિટી ની વિગતો',
  11 + contents : 'હેલ્પ. આ બંધ કરવા ESC દબાવો.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'જનરલ',
  16 + items :
  17 + [
  18 + {
  19 + name : 'એડિટર ટૂલબાર',
  20 + legend:
  21 + 'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.' // MISSING
  22 + },
  23 +
  24 + {
  25 + name : 'એડિટર ડાયલોગ',
  26 + legend :
  27 + 'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.' // MISSING
  28 + },
  29 +
  30 + {
  31 + name : 'Editor Context Menu', // MISSING
  32 + legend :
  33 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.' // MISSING
  34 + },
  35 +
  36 + {
  37 + name : 'Editor List Box', // MISSING
  38 + legend :
  39 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.' // MISSING
  40 + },
  41 +
  42 + {
  43 + name : 'Editor Element Path Bar', // MISSING
  44 + legend :
  45 + 'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.' // MISSING
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'કમાંડસ',
  51 + items :
  52 + [
  53 + {
  54 + name : 'અન્ડું કમાંડ',
  55 + legend : '$ દબાવો {undo}'
  56 + },
  57 + {
  58 + name : 'ફરી કરો કમાંડ',
  59 + legend : '$ દબાવો {redo}'
  60 + },
  61 + {
  62 + name : 'બોલ્દનો કમાંડ',
  63 + legend : '$ દબાવો {bold}'
  64 + },
  65 + {
  66 + name : ' Italic command', // MISSING
  67 + legend : 'Press ${italic}' // MISSING
  68 + },
  69 + {
  70 + name : ' Underline command', // MISSING
  71 + legend : 'Press ${underline}' // MISSING
  72 + },
  73 + {
  74 + name : ' Link command', // MISSING
  75 + legend : 'Press ${link}' // MISSING
  76 + },
  77 + {
  78 + name : ' Toolbar Collapse command', // MISSING
  79 + legend : 'Press ${toolbarCollapse}' // MISSING
  80 + },
  81 + {
  82 + name : ' Accessibility Help', // MISSING
  83 + legend : 'Press ${a11yHelp}' // MISSING
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'he',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'הוראות נגישות',
  11 + contents : 'הוראות נגישות. לסגירה לחץ אסקייפ (ESC).',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'כללי',
  16 + items :
  17 + [
  18 + {
  19 + name : 'סרגל הכלים',
  20 + legend:
  21 + 'לחץ על ${toolbarFocus} כדי לנווט לסרגל הכלים. עבור לכפתור הבא עם מקש הטאב (TAB) או חץ שמאלי. עבור לכפתור הקודם עם מקש השיפט (SHIFT) + טאב (TAB) או חץ ימני. לחץ רווח או אנטר (ENTER) כדי להפעיל את הכפתור הנבחר.'
  22 + },
  23 +
  24 + {
  25 + name : 'דיאלוגים (חלונות תשאול)',
  26 + legend :
  27 + 'בתוך דיאלוג, לחץ טאב (TAB) כדי לנווט לשדה הבא, לחץ שיפט (SHIFT) + טאב (TAB) כדי לנווט לשדה הקודם, לחץ אנטר (ENTER) כדי לשלוח את הדיאלוג, לחץ אסקייפ (ESC) כדי לבטל. בתוך דיאלוגים בעלי מספר טאבים (לשוניות), לחץ אלט (ALT) + F10 כדי לנווט לשורת הטאבים. נווט לטאב הבא עם טאב (TAB) או חץ שמאלי. עבור לטאב הקודם עם שיפט (SHIFT) + טאב (TAB) או חץ שמאלי. לחץ רווח או אנטר (ENTER) כדי להיכנס לטאב.'
  28 + },
  29 +
  30 + {
  31 + name : 'תפריט ההקשר (Context Menu)',
  32 + legend :
  33 + 'לחץ ${contextMenu} או APPLICATION KEYכדי לפתוח את תפריט ההקשר. עבור לאפשרות הבאה עם טאב (TAB) או חץ למטה. עבור לאפשרות הקודמת עם שיפט (SHIFT) + טאב (TAB) או חץ למעלה. לחץ רווח או אנטר (ENTER) כדי לבחור את האפשרות. פתח את תת התפריט (Sub-menu) של האפשרות הנוכחית עם רווח או אנטר (ENTER) או חץ שמאלי. חזור לתפריט האב עם אסקייפ (ESC) או חץ שמאלי. סגור את תפריט ההקשר עם אסקייפ (ESC).'
  34 + },
  35 +
  36 + {
  37 + name : 'תפריטים צפים (List boxes)',
  38 + legend :
  39 + 'בתוך תפריט צף, עבור לפריט הבא עם טאב (TAB) או חץ למטה. עבור לתפריט הקודם עם שיפט (SHIFT) + טאב (TAB) or חץ עליון. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.'
  40 + },
  41 +
  42 + {
  43 + name : 'עץ אלמנטים (Elements Path)',
  44 + legend :
  45 + 'לחץ ${elementsPathFocus} כדי לנווט לעץ האלמנטים. עבור לפריט הבא עם טאב (TAB) או חץ ימני. עבור לפריט הקודם עם שיפט (SHIFT) + טאב (TAB) או חץ שמאלי. לחץ רווח או אנטר (ENTER) כדי לבחור את האלמנט בעורך.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'פקודות',
  51 + items :
  52 + [
  53 + {
  54 + name : ' ביטול צעד אחרון',
  55 + legend : 'לחץ ${undo}'
  56 + },
  57 + {
  58 + name : ' חזרה על צעד אחרון',
  59 + legend : 'לחץ ${redo}'
  60 + },
  61 + {
  62 + name : ' הדגשה',
  63 + legend : 'לחץ ${bold}'
  64 + },
  65 + {
  66 + name : ' הטייה',
  67 + legend : 'לחץ ${italic}'
  68 + },
  69 + {
  70 + name : ' הוספת קו תחתון',
  71 + legend : 'לחץ ${underline}'
  72 + },
  73 + {
  74 + name : ' הוספת לינק',
  75 + legend : 'לחץ ${link}'
  76 + },
  77 + {
  78 + name : ' כיווץ סרגל הכלים',
  79 + legend : 'לחץ ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : ' הוראות נגישות',
  83 + legend : 'לחץ ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'it',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Istruzioni di Accessibilità',
  11 + contents : 'Contenuti di Aiuto. Per chiudere questa finestra premi ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Generale',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Barra degli strumenti Editor',
  20 + legend:
  21 + 'Premi ${toolbarFocus} per navigare fino alla barra degli strumenti. Muoviti tra i gruppi della barra degli strumenti con i tasti Tab e Maiusc-Tab. Spostati tra il successivo ed il precedente pulsante della barra degli strumenti usando le frecce direzionali Destra e Sinistra. Premi Spazio o Invio per attivare il pulsante della barra degli strumenti.'
  22 + },
  23 +
  24 + {
  25 + name : 'Finestra Editor',
  26 + legend :
  27 + 'All\'interno di una finestra di dialogo, premi Tab per navigare fino al campo successivo della finestra di dialogo, premi Maiusc-Tab per tornare al campo precedente, premi Invio per inviare la finestra di dialogo, premi Esc per uscire. Per le finestre che hanno schede multiple, premi Alt+F10 per navigare nella lista delle schede. Quindi spostati alla scheda successiva con il tasto Tab oppure con la Freccia Destra. Torna alla scheda precedente con Maiusc+Tab oppure con la Freccia Sinistra. Premi Spazio o Invio per scegliere la scheda.'
  28 + },
  29 +
  30 + {
  31 + name : 'Menù contestuale Editor',
  32 + legend :
  33 + 'Premi ${contextMenu} o TASTO APPLICAZIONE per aprire il menu contestuale. Dunque muoviti all\'opzione successiva del menu con il tasto TAB o con la Freccia Sotto. Muoviti all\'opzione precedente con MAIUSC+TAB o con Freccia Sopra. Premi SPAZIO o INVIO per scegliere l\'opzione di menu. Apri il sottomenu dell\'opzione corrente con SPAZIO o INVIO oppure con la Freccia Destra. Torna indietro al menu superiore con ESC oppure Freccia Sinistra. Chiudi il menu contestuale con ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Box Lista Editor',
  38 + legend :
  39 + 'Dentro un box-lista, muoviti al prossimo elemento della lista con TAB o con la Freccia direzionale giù. Spostati all\'elemento precedente con MAIUSC+TAB oppure con Freccia direzionale sopra. Premi SPAZIO o INVIO per scegliere l\'opzione della lista. Premi ESC per chiudere il box-lista.'
  40 + },
  41 +
  42 + {
  43 + name : 'Barra percorso elementi editor',
  44 + legend :
  45 + 'Premi ${elementsPathFocus} per navigare tra gli elementi della barra percorso. Muoviti al prossimo pulsante di elemento con TAB o la Freccia direzionale destra. Muoviti al pulsante precedente con MAIUSC+TAB o la Freccia Direzionale Sinistra. Premi SPAZIO o INVIO per scegliere l\'elemento nell\'editor.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Comandi',
  51 + items :
  52 + [
  53 + {
  54 + name : ' Annulla comando',
  55 + legend : 'Premi ${undo}'
  56 + },
  57 + {
  58 + name : ' Ripeti comando',
  59 + legend : 'Premi ${redo}'
  60 + },
  61 + {
  62 + name : ' Comando Grassetto',
  63 + legend : 'Premi ${bold}'
  64 + },
  65 + {
  66 + name : ' Comando Corsivo',
  67 + legend : 'Premi ${italic}'
  68 + },
  69 + {
  70 + name : ' Comando Sottolineato',
  71 + legend : 'Premi ${underline}'
  72 + },
  73 + {
  74 + name : ' Comando Link',
  75 + legend : 'Premi ${link}'
  76 + },
  77 + {
  78 + name : ' Comando riduci barra degli strumenti',
  79 + legend : 'Premi ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : ' Aiuto Accessibilità',
  83 + legend : 'Premi ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'mk',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Инструкции за пристапност',
  11 + contents : 'Содржина на делот за помош. За да го затворите овој дијалот притиснете ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Општо',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Мени за едиторот',
  20 + legend:
  21 + 'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.' // MISSING
  22 + },
  23 +
  24 + {
  25 + name : 'Дијалот за едиторот',
  26 + legend :
  27 + 'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.' // MISSING
  28 + },
  29 +
  30 + {
  31 + name : 'Editor Context Menu', // MISSING
  32 + legend :
  33 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.' // MISSING
  34 + },
  35 +
  36 + {
  37 + name : 'Editor List Box', // MISSING
  38 + legend :
  39 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.' // MISSING
  40 + },
  41 +
  42 + {
  43 + name : 'Editor Element Path Bar', // MISSING
  44 + legend :
  45 + 'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.' // MISSING
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Commands', // MISSING
  51 + items :
  52 + [
  53 + {
  54 + name : ' Undo command', // MISSING
  55 + legend : 'Press ${undo}' // MISSING
  56 + },
  57 + {
  58 + name : ' Redo command', // MISSING
  59 + legend : 'Press ${redo}' // MISSING
  60 + },
  61 + {
  62 + name : ' Bold command', // MISSING
  63 + legend : 'Press ${bold}' // MISSING
  64 + },
  65 + {
  66 + name : ' Italic command', // MISSING
  67 + legend : 'Press ${italic}' // MISSING
  68 + },
  69 + {
  70 + name : ' Underline command', // MISSING
  71 + legend : 'Press ${underline}' // MISSING
  72 + },
  73 + {
  74 + name : ' Link command', // MISSING
  75 + legend : 'Press ${link}' // MISSING
  76 + },
  77 + {
  78 + name : ' Toolbar Collapse command', // MISSING
  79 + legend : 'Press ${toolbarCollapse}' // MISSING
  80 + },
  81 + {
  82 + name : ' Accessibility Help', // MISSING
  83 + legend : 'Press ${a11yHelp}' // MISSING
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'nb',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Instruksjoner for tilgjengelighet',
  11 + contents : 'Innhold for hjelp. Trykk ESC for å lukke denne dialogen.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Generelt',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Verktøylinje for editor',
  20 + legend:
  21 + 'Trykk ${toolbarFocus} for å navigere til verktøylinjen. Flytt til neste og forrige verktøylinjegruppe med TAB og SHIFT-TAB. Flytt til neste og forrige verktøylinjeknapp med HØYRE PILTAST og VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å aktivere verktøylinjeknappen.'
  22 + },
  23 +
  24 + {
  25 + name : 'Dialog for editor',
  26 + legend :
  27 + 'Mens du er i en dialog, trykk TAB for å navigere til neste dialogfelt, press SHIFT + TAB for å flytte til forrige felt, trykk ENTER for å akseptere dialogen, trykk ESC for å avbryte dialogen. For dialoger med flere faner, trykk ALT + F10 for å navigere til listen over faner. Gå til neste fane med TAB eller HØYRE PILTAST. Gå til forrige fane med SHIFT + TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge fanen.'
  28 + },
  29 +
  30 + {
  31 + name : 'Kontekstmeny for editor',
  32 + legend :
  33 + 'Trykk ${contextMenu} eller MENYKNAPP for å åpne kontekstmeny. Gå til neste alternativ i menyen med TAB eller PILTAST NED. Gå til forrige alternativ med SHIFT+TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge menyalternativet. Åpne undermenyen på valgt alternativ med MELLOMROM eller ENTER eller HØYRE PILTAST. Gå tilbake til overordnet menyelement med ESC eller VENSTRE PILTAST. Lukk kontekstmenyen med ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Listeboks for editor',
  38 + legend :
  39 + 'I en listeboks, gå til neste alternativ i listen med TAB eller PILTAST NED. Gå til forrige alternativ i listen med SHIFT + TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge alternativet i listen. Trykk ESC for å lukke listeboksen.'
  40 + },
  41 +
  42 + {
  43 + name : 'Verktøylinje for elementsti',
  44 + legend :
  45 + 'Trykk ${elementsPathFocus} for å navigere til verktøylinjen som viser elementsti. Gå til neste elementknapp med TAB eller HØYRE PILTAST. Gå til forrige elementknapp med SHIFT+TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge elementet i editoren.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Kommandoer',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Angre',
  55 + legend : 'Trykk ${undo}'
  56 + },
  57 + {
  58 + name : 'Gjør om',
  59 + legend : 'Trykk ${redo}'
  60 + },
  61 + {
  62 + name : 'Fet tekst',
  63 + legend : 'Trykk ${bold}'
  64 + },
  65 + {
  66 + name : 'Kursiv tekst',
  67 + legend : 'Trykk ${italic}'
  68 + },
  69 + {
  70 + name : 'Understreking',
  71 + legend : 'Trykk ${underline}'
  72 + },
  73 + {
  74 + name : 'Link',
  75 + legend : 'Trykk ${link}'
  76 + },
  77 + {
  78 + name : 'Skjul verktøylinje',
  79 + legend : 'Trykk ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'Hjelp for tilgjengelighet',
  83 + legend : 'Trykk ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'nl',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Toegankelijkheidsinstructies',
  11 + contents : 'Help inhoud. Druk op ESC om dit dialoog te sluiten.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Algemeen',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Werkbalk tekstverwerker',
  20 + legend:
  21 + 'Druk op ${toolbarFocus} om naar de werkbalk te navigeren. Om te schakelen naar de volgende en vorige werkbalkgroep, gebruik TAB en SHIFT+TAB. Om te schakelen naar de volgende en vorige werkbalkknop, gebruik de PIJL RECHTS en PIJL LINKS. Druk op SPATIE of ENTER om een werkbalkknop te activeren.'
  22 + },
  23 +
  24 + {
  25 + name : 'Dialoog tekstverwerker',
  26 + legend :
  27 + 'In een dialoogvenster, druk op TAB om te navigeren naar het volgende veld. Druk op SHIFT+TAB om naar het vorige veld te navigeren. Druk op ENTER om het dialoogvenster te verzenden. Druk op ESC om het dialoogvenster te sluiten. Voor dialoogvensters met meerdere tabbladen, druk op ALT+F10 om naar de tabset te navigeren. Schakel naar het volgende tabblad met TAB of PIJL RECHTS. Schakel naar het vorige tabblad met SHIFT+TAB of PIJL LINKS. Druk op SPATIE of ENTER om het tabblad te selecteren.'
  28 + },
  29 +
  30 + {
  31 + name : 'Contextmenu tekstverwerker',
  32 + legend :
  33 + 'Druk op ${contextMenu} of APPLICATION KEY om het contextmenu te openen. Schakel naar de volgende menuoptie met TAB of PIJL OMLAAG. Schakel naar de vorige menuoptie met SHIFT+TAB of PIJL OMHOOG. Druk op SPATIE of ENTER om een menuoptie te selecteren. Op een submenu van de huidige optie met SPATIE, ENTER of PIJL RECHTS. Ga terug naar de bovenliggende menuoptie met ESC of PIJL LINKS. Sluit het contextmenu met ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Keuzelijst tekstverwerker',
  38 + legend :
  39 + 'In een keuzelijst, schakel naar het volgende item met TAB of PIJL OMLAAG. Schakel naar het vorige item met SHIFT+TAB of PIJL OMHOOG. Druk op SPATIE of ENTER om het item te selecteren. Druk op ESC om de keuzelijst te sluiten.'
  40 + },
  41 +
  42 + {
  43 + name : 'Elementenpad werkbalk tekstverwerker',
  44 + legend :
  45 + 'Druk op ${elementsPathFocus} om naar het elementenpad te navigeren. Om te schakelen naar het volgende element, gebruik TAB of PIJL RECHTS. Om te schakelen naar het vorige element, gebruik SHIFT+TAB or PIJL LINKS. Druk op SPATIE of ENTER om een element te selecteren in de tekstverwerker.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Opdrachten',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Ongedaan maken opdracht',
  55 + legend : 'Druk op ${undo}'
  56 + },
  57 + {
  58 + name : 'Opnieuw uitvoeren opdracht',
  59 + legend : 'Druk op ${redo}'
  60 + },
  61 + {
  62 + name : 'Vetgedrukt opdracht',
  63 + legend : 'Druk up ${bold}'
  64 + },
  65 + {
  66 + name : 'Cursief opdracht',
  67 + legend : 'Druk op ${italic}'
  68 + },
  69 + {
  70 + name : 'Onderstrepen opdracht',
  71 + legend : 'Druk op ${underline}'
  72 + },
  73 + {
  74 + name : 'Link opdracht',
  75 + legend : 'Druk op ${link}'
  76 + },
  77 + {
  78 + name : 'Werkbalk inklappen opdracht',
  79 + legend : 'Druk op ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'Toegankelijkheidshulp',
  83 + legend : 'Druk op ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'no',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Instruksjoner for tilgjengelighet',
  11 + contents : 'Innhold for hjelp. Trykk ESC for å lukke denne dialogen.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Generelt',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Verktøylinje for editor',
  20 + legend:
  21 + 'Trykk ${toolbarFocus} for å navigere til verktøylinjen. Flytt til neste og forrige verktøylinjegruppe med TAB og SHIFT-TAB. Flytt til neste og forrige verktøylinjeknapp med HØYRE PILTAST og VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å aktivere verktøylinjeknappen.'
  22 + },
  23 +
  24 + {
  25 + name : 'Dialog for editor',
  26 + legend :
  27 + 'Mens du er i en dialog, trykk TAB for å navigere til neste dialogfelt, press SHIFT + TAB for å flytte til forrige felt, trykk ENTER for å akseptere dialogen, trykk ESC for å avbryte dialogen. For dialoger med flere faner, trykk ALT + F10 for å navigere til listen over faner. Gå til neste fane med TAB eller HØYRE PILTAST. Gå til forrige fane med SHIFT + TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge fanen.'
  28 + },
  29 +
  30 + {
  31 + name : 'Kontekstmeny for editor',
  32 + legend :
  33 + 'Trykk ${contextMenu} eller MENYKNAPP for å åpne kontekstmeny. Gå til neste alternativ i menyen med TAB eller PILTAST NED. Gå til forrige alternativ med SHIFT+TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge menyalternativet. Åpne undermenyen på valgt alternativ med MELLOMROM eller ENTER eller HØYRE PILTAST. Gå tilbake til overordnet menyelement med ESC eller VENSTRE PILTAST. Lukk kontekstmenyen med ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Listeboks for editor',
  38 + legend :
  39 + 'I en listeboks, gå til neste alternativ i listen med TAB eller PILTAST NED. Gå til forrige alternativ i listen med SHIFT + TAB eller PILTAST OPP. Trykk MELLOMROM eller ENTER for å velge alternativet i listen. Trykk ESC for å lukke listeboksen.'
  40 + },
  41 +
  42 + {
  43 + name : 'Verktøylinje for elementsti',
  44 + legend :
  45 + 'Trykk ${elementsPathFocus} for å navigere til verktøylinjen som viser elementsti. Gå til neste elementknapp med TAB eller HØYRE PILTAST. Gå til forrige elementknapp med SHIFT+TAB eller VENSTRE PILTAST. Trykk MELLOMROM eller ENTER for å velge elementet i editoren.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Kommandoer',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Angre',
  55 + legend : 'Trykk ${undo}'
  56 + },
  57 + {
  58 + name : 'Gjør om',
  59 + legend : 'Trykk ${redo}'
  60 + },
  61 + {
  62 + name : 'Fet tekst',
  63 + legend : 'Trykk ${bold}'
  64 + },
  65 + {
  66 + name : 'Kursiv tekst',
  67 + legend : 'Trykk ${italic}'
  68 + },
  69 + {
  70 + name : 'Understreking',
  71 + legend : 'Trykk ${underline}'
  72 + },
  73 + {
  74 + name : 'Link',
  75 + legend : 'Trykk ${link}'
  76 + },
  77 + {
  78 + name : 'Skjul verktøylinje',
  79 + legend : 'Trykk ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : 'Hjelp for tilgjengelighet',
  83 + legend : 'Trykk ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'pt-br',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Instruções de Acessibilidade',
  11 + contents : 'Conteúdo da Ajuda. Para fechar este diálogo pressione ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Geral',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Barra de Ferramentas do Editor',
  20 + legend:
  21 + 'Pressione ${toolbarFocus} para navegar para a barra de ferramentas. Mova para o anterior ou próximo grupo de ferramentas com TAB e SHIFT-TAB. Mova para o anterior ou próximo botão com SETA PARA DIREITA or SETA PARA ESQUERDA. Pressione ESPAÇO ou ENTER para ativar o botão da barra de ferramentas.'
  22 + },
  23 +
  24 + {
  25 + name : 'Diálogo do Editor',
  26 + legend :
  27 + 'Dentro de um diálogo, pressione TAB para navegar para o próximo campo, pressione SHIFT + TAB para mover para o campo anterior, pressione ENTER para enviar o diálogo, pressione ESC para cancelar o diálogo. Para diálogos que tem múltiplas abas, pressione ALT + F10 para navegar para a lista de abas, então mova para a próxima aba com SHIFT + TAB ou SETA PARA ESQUERDA. Pressione ESPAÇO ou ENTER para selecionar a aba.'
  28 + },
  29 +
  30 + {
  31 + name : 'Menu de Contexto do Editor',
  32 + legend :
  33 + 'Pressione ${contextMenu} ou TECLA DE MENU para abrir o menu de contexto, então mova para a próxima opção com TAB ou SETA PARA BAIXO. Mova para a anterior com SHIFT+TAB ou SETA PARA CIMA. Pressione ESPAÇO ou ENTER para selecionar a opção do menu. Abra o submenu da opção atual com ESPAÇO ou ENTER ou SETA PARA DIREITA. Volte para o menu pai com ESC ou SETA PARA ESQUERDA. Feche o menu de contexto com ESC.'
  34 + },
  35 +
  36 + {
  37 + name : 'Caixa de Lista do Editor',
  38 + legend :
  39 + 'Dentro de uma caixa de lista, mova para o próximo item com TAB ou SETA PARA BAIXO. Mova para o item anterior com SHIFT + TAB ou SETA PARA CIMA. Pressione ESPAÇO ou ENTER para selecionar uma opção na lista. Pressione ESC para fechar a caixa de lista.'
  40 + },
  41 +
  42 + {
  43 + name : 'Barra de Caminho do Elementos do Editor',
  44 + legend :
  45 + 'Pressione ${elementsPathFocus} para a barra de caminho dos elementos. Mova para o próximo botão de elemento com TAB ou SETA PARA DIREITA. Mova para o botão anterior com SHIFT+TAB ou SETA PARA ESQUERDA. Pressione ESPAÇO ou ENTER para selecionar o elemento no editor.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Comandos',
  51 + items :
  52 + [
  53 + {
  54 + name : ' Comando Desfazer',
  55 + legend : 'Pressione ${undo}'
  56 + },
  57 + {
  58 + name : ' Comando Refazer',
  59 + legend : 'Pressione ${redo}'
  60 + },
  61 + {
  62 + name : ' Comando Negrito',
  63 + legend : 'Pressione ${bold}'
  64 + },
  65 + {
  66 + name : ' Comando Itálico',
  67 + legend : 'Pressione ${italic}'
  68 + },
  69 + {
  70 + name : ' Comando Sublinhado',
  71 + legend : 'Pressione ${underline}'
  72 + },
  73 + {
  74 + name : ' Comando Link',
  75 + legend : 'Pressione ${link}'
  76 + },
  77 + {
  78 + name : ' Comando Fechar Barra de Ferramentas',
  79 + legend : 'Pressione ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : ' Ajuda de Acessibilidade',
  83 + legend : 'Pressione ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'ro',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Instrucțiuni de accesibilitate',
  11 + contents : 'Cuprins. Pentru a închide acest dialog, apăsați tasta ESC.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'General',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Editează bara.',
  20 + legend:
  21 + 'Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT-TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button.' // MISSING
  22 + },
  23 +
  24 + {
  25 + name : 'Dialog editor',
  26 + legend :
  27 + 'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.' // MISSING
  28 + },
  29 +
  30 + {
  31 + name : 'Editor meniu contextual',
  32 + legend :
  33 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.' // MISSING
  34 + },
  35 +
  36 + {
  37 + name : 'Editor List Box', // MISSING
  38 + legend :
  39 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.' // MISSING
  40 + },
  41 +
  42 + {
  43 + name : 'Editor Element Path Bar', // MISSING
  44 + legend :
  45 + 'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.' // MISSING
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Commands', // MISSING
  51 + items :
  52 + [
  53 + {
  54 + name : ' Undo command', // MISSING
  55 + legend : 'Press ${undo}' // MISSING
  56 + },
  57 + {
  58 + name : ' Redo command', // MISSING
  59 + legend : 'Press ${redo}' // MISSING
  60 + },
  61 + {
  62 + name : ' Bold command', // MISSING
  63 + legend : 'Press ${bold}' // MISSING
  64 + },
  65 + {
  66 + name : ' Italic command', // MISSING
  67 + legend : 'Press ${italic}' // MISSING
  68 + },
  69 + {
  70 + name : ' Underline command', // MISSING
  71 + legend : 'Press ${underline}' // MISSING
  72 + },
  73 + {
  74 + name : ' Link command', // MISSING
  75 + legend : 'Press ${link}' // MISSING
  76 + },
  77 + {
  78 + name : ' Toolbar Collapse command', // MISSING
  79 + legend : 'Press ${toolbarCollapse}' // MISSING
  80 + },
  81 + {
  82 + name : ' Accessibility Help', // MISSING
  83 + legend : 'Press ${a11yHelp}' // MISSING
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'tr',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Erişilebilirlik Talimatları',
  11 + contents : 'Yardım içeriği. Bu pencereyi kapatmak için ESC tuşuna basın.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Genel',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Araç Çubuğu Editörü',
  20 + legend:
  21 + 'Araç çubuğunda gezinmek için ${toolbarFocus} basın. TAB ve SHIFT-TAB ile önceki ve sonraki araç çubuğu grubuna taşıyın. SAĞ OK veya SOL OK ile önceki ve sonraki bir araç çubuğu düğmesini hareket ettirin. SPACE tuşuna basın veya araç çubuğu düğmesini etkinleştirmek için ENTER tuşna basın.'
  22 + },
  23 +
  24 + {
  25 + name : 'Dialog Editörü',
  26 + legend :
  27 + 'Dialog penceresi içinde, sonraki iletişim alanına gitmek için SEKME tuşuna basın, önceki alana geçmek için SHIFT + TAB tuşuna basın, pencereyi göndermek için ENTER tuşuna basın, dialog penceresini iptal etmek için ESC tuşuna basın. Birden çok sekme sayfaları olan diyalogların, sekme listesine gitmek için ALT + F10 tuşlarına basın. Sonra TAB veya SAĞ OK sonraki sekmeye taşıyın. SHIFT + TAB veya SOL OK ile önceki sekmeye geçin. Sekme sayfayı seçmek için SPACE veya ENTER tuşuna basın.'
  28 + },
  29 +
  30 + {
  31 + name : 'İçerik Menü Editörü',
  32 + legend :
  33 + 'İçerik menüsünü açmak için ${contextMenu} veya UYGULAMA TUŞU\'na basın. Daha sonra SEKME veya AŞAĞI OK ile bir sonraki menü seçeneği taşıyın. SHIFT + TAB veya YUKARI OK ile önceki seçeneğe gider. Menü seçeneğini seçmek için SPACE veya ENTER tuşuna basın. Seçili seçeneğin alt menüsünü SPACE ya da ENTER veya SAĞ OK açın. Üst menü öğesini geçmek için ESC veya SOL OK ile geri dönün. ESC ile bağlam menüsünü kapatın.'
  34 + },
  35 +
  36 + {
  37 + name : 'Liste Kutusu Editörü',
  38 + legend :
  39 + 'Liste kutusu içinde, bir sonraki liste öğesine SEKME VEYA AŞAĞI OK ile taşıyın. SHIFT + TAB veya YUKARI önceki liste öğesi taşıyın. Liste seçeneği seçmek için SPACE veya ENTER tuşuna basın. Liste kutusunu kapatmak için ESC tuşuna basın.'
  40 + },
  41 +
  42 + {
  43 + name : 'Element Yol Çubuğu Editörü',
  44 + legend :
  45 + 'Elementlerin yol çubuğunda gezinmek için ${ElementsPathFocus} basın. SEKME veya SAĞ OK ile sonraki element düğmesine taşıyın. SHIFT + TAB veya SOL OK önceki düğmeye hareket ettirin. Editör içindeki elementi seçmek için ENTER veya SPACE tuşuna basın.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Komutlar',
  51 + items :
  52 + [
  53 + {
  54 + name : 'Komutu geri al',
  55 + legend : '${undo} basın'
  56 + },
  57 + {
  58 + name : ' Tekrar komutu uygula',
  59 + legend : '${redo} basın'
  60 + },
  61 + {
  62 + name : ' Kalın komut',
  63 + legend : '${bold} basın'
  64 + },
  65 + {
  66 + name : ' İtalik komutu',
  67 + legend : '${italic} basın'
  68 + },
  69 + {
  70 + name : ' Alttan çizgi komutu',
  71 + legend : '${underline} basın'
  72 + },
  73 + {
  74 + name : ' Bağlantı komutu',
  75 + legend : '${link} basın'
  76 + },
  77 + {
  78 + name : ' Araç çubuğu Toplama komutu',
  79 + legend : '${toolbarCollapse} basın'
  80 + },
  81 + {
  82 + name : 'Erişilebilirlik Yardımı',
  83 + legend : '${a11yHelp} basın'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'ug',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'قوشۇمچە چۈشەندۈرۈش',
  11 + contents : 'ياردەم مەزمۇنى. بۇ سۆزلەشكۈنى ياپماقچى بولسىڭىز ESC نى بېسىڭ.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'ئادەتتىكى',
  16 + items :
  17 + [
  18 + {
  19 + name : 'قورال بالداق تەھرىر',
  20 + legend:
  21 + '${toolbarFocus} بېسىلسا قورال بالداققا يېتەكلەيدۇ، TAB ياكى SHIFT+TAB ئارقىلىق قورال بالداق گۇرۇپپىسى تاللىنىدۇ، ئوڭ سول يا ئوقتا توپچا تاللىنىدۇ، بوشلۇق ياكى Enter كۇنۇپكىسىدا تاللانغان توپچىنى قوللىنىدۇ.'
  22 + },
  23 +
  24 + {
  25 + name : 'تەھرىرلىگۈچ سۆزلەشكۈسى',
  26 + legend :
  27 + 'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.' // MISSING
  28 + },
  29 +
  30 + {
  31 + name : 'تەھرىرلىگۈچ تىل مۇھىت تىزىملىكى',
  32 + legend :
  33 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.' // MISSING
  34 + },
  35 +
  36 + {
  37 + name : 'تەھرىرلىگۈچ تىزىمى',
  38 + legend :
  39 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.' // MISSING
  40 + },
  41 +
  42 + {
  43 + name : 'تەھرىرلىگۈچ ئېلېمېنت يول بالداق',
  44 + legend :
  45 + '${elementsPathFocus} بېسىلسا ئېلېمېنت يول بالداققا يېتەكلەيدۇ، TAB ياكى ئوڭ يا ئوقتا كېيىنكى ئېلېمېنت تاللىنىدۇ، SHIFT+TAB ياكى سول يا ئوقتا ئالدىنقى ئېلېمېنت تاللىنىدۇ، بوشلۇق ياكى Enter كۇنۇپكىسىدا تەھرىرلىگۈچتىكى ئېلېمېنت تاللىنىدۇ.'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'بۇيرۇق',
  51 + items :
  52 + [
  53 + {
  54 + name : 'بۇيرۇقتىن يېنىۋال',
  55 + legend : '${undo} نى بېسىڭ'
  56 + },
  57 + {
  58 + name : 'قايتىلاش بۇيرۇقى',
  59 + legend : '${redo} نى بېسىڭ'
  60 + },
  61 + {
  62 + name : 'توملىتىش بۇيرۇقى',
  63 + legend : '${bold} نى بېسىڭ'
  64 + },
  65 + {
  66 + name : 'يانتۇ بۇيرۇقى',
  67 + legend : '${italic} نى بېسىڭ'
  68 + },
  69 + {
  70 + name : 'ئاستى سىزىق بۇيرۇقى',
  71 + legend : '${underline} نى بېسىڭ'
  72 + },
  73 + {
  74 + name : 'ئۇلانما بۇيرۇقى',
  75 + legend : '${link} نى بېسىڭ'
  76 + },
  77 + {
  78 + name : 'قورال بالداق قاتلاش بۇيرۇقى',
  79 + legend : '${toolbarCollapse} نى بېسىڭ'
  80 + },
  81 + {
  82 + name : 'توسالغۇسىز لايىھە چۈشەندۈرۈشى',
  83 + legend : '${a11yHelp} نى بېسىڭ'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'vi',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : 'Accessibility Instructions', // MISSING
  11 + contents : 'Nội dung Hỗ trợ. Nhấn ESC để đóng hộp thoại.',
  12 + legend :
  13 + [
  14 + {
  15 + name : 'Chung',
  16 + items :
  17 + [
  18 + {
  19 + name : 'Thanh công cụ soạn th',
  20 + legend:
  21 + 'Nhấn ${toolbarFocus} để điều hướng đến thanh công cụ. Nhấn TAB và SHIFT-TAB để chuyển đến nhóm thanh công cụ khác. Nhấn MŨI TÊN PHẢI hoặc MŨI TÊN TRÁI để chuyển sang nút khác trên thanh công cụ. Nhấn PHÍM CÁCH hoặc ENTER để kích hoạt nút trên thanh công c.'
  22 + },
  23 +
  24 + {
  25 + name : 'Hộp thoại Biên t',
  26 + legend :
  27 + 'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. Then move to next tab with TAB OR RIGTH ARROW. Move to previous tab with SHIFT + TAB or LEFT ARROW. Press SPACE or ENTER to select the tab page.' // MISSING
  28 + },
  29 +
  30 + {
  31 + name : 'Trình đơn Ngữ cảnh cBộ soạn thảo',
  32 + legend :
  33 + 'Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC.' // MISSING
  34 + },
  35 +
  36 + {
  37 + name : 'Editor List Box', // MISSING
  38 + legend :
  39 + 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT + TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box.' // MISSING
  40 + },
  41 +
  42 + {
  43 + name : 'Editor Element Path Bar', // MISSING
  44 + legend :
  45 + 'Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor.' // MISSING
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : 'Commands', // MISSING
  51 + items :
  52 + [
  53 + {
  54 + name : ' Undo command', // MISSING
  55 + legend : 'Press ${undo}' // MISSING
  56 + },
  57 + {
  58 + name : ' Redo command', // MISSING
  59 + legend : 'Press ${redo}' // MISSING
  60 + },
  61 + {
  62 + name : ' Bold command', // MISSING
  63 + legend : 'Press ${bold}' // MISSING
  64 + },
  65 + {
  66 + name : ' Italic command', // MISSING
  67 + legend : 'Press ${italic}' // MISSING
  68 + },
  69 + {
  70 + name : ' Underline command', // MISSING
  71 + legend : 'Press ${underline}' // MISSING
  72 + },
  73 + {
  74 + name : ' Link command', // MISSING
  75 + legend : 'Press ${link}' // MISSING
  76 + },
  77 + {
  78 + name : ' Toolbar Collapse command', // MISSING
  79 + legend : 'Press ${toolbarCollapse}' // MISSING
  80 + },
  81 + {
  82 + name : ' Accessibility Help', // MISSING
  83 + legend : 'Press ${a11yHelp}' // MISSING
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.setLang( 'a11yhelp', 'zh-cn',
  7 +{
  8 + accessibilityHelp :
  9 + {
  10 + title : '辅助说明',
  11 + contents : '帮助内容。要关闭此对话框请按 ESC 键。',
  12 + legend :
  13 + [
  14 + {
  15 + name : '常规',
  16 + items :
  17 + [
  18 + {
  19 + name : '编辑器工具栏',
  20 + legend:
  21 + '按 ${toolbarFocus} 以导航到工具栏,使用 TAB 键或 SHIFT+TAB 组合键以选择工具栏组,使用左右箭头键以选择按钮,按空格键或回车键以应用选中的按钮。'
  22 + },
  23 +
  24 + {
  25 + name : '编辑器对话框',
  26 + legend :
  27 + '在对话框内,TAB键移动到下一个字段,SHIFT + TAB 移动到上一个字段,ENTER键提交对话框,ESC键取消对话框。对于有多标签的对话框,用ALT + F10来移到标签列表。然后用TAB键或者向右箭头来移动到下一个标签;SHIFT + TAB或者向左箭头移动到上一个标签。用SPACE或者ENTER选择标签。'
  28 + },
  29 +
  30 + {
  31 + name : '编辑器上下文菜单',
  32 + legend :
  33 + '用 ${contextMenu}或者 应用程序键 打开上下文菜单。然后用TAB键或者向下箭头来移动到下一个菜单项;SHIFT + TAB或者向上箭头移动到上一个菜单项。用SPACE或者ENTER选择菜单项。用SPACE,ENTER或者向右箭头打开子菜单。返回菜单用ESC键或者向左箭头。用ESC关闭上下文菜单。'
  34 + },
  35 +
  36 + {
  37 + name : '编辑器列表框',
  38 + legend :
  39 + '在列表框中,移到下一列表项用TAB键或者向下箭头。移到上一列表项用SHIFT + TAB或者向上箭头,用SPACE或者ENTER选择列表项。用ESC收起列表框。'
  40 + },
  41 +
  42 + {
  43 + name : '编辑器元素路径栏',
  44 + legend :
  45 + '按 ${elementsPathFocus} 以导航到元素路径栏,使用 TAB 键或右箭头键选择下一个元素,使用 SHIFT+TAB 组合键或左箭头键选择上一个元素,按空格键或回车键以选定编辑器里的元素。'
  46 + }
  47 + ]
  48 + },
  49 + {
  50 + name : '命令',
  51 + items :
  52 + [
  53 + {
  54 + name : ' 撤消命令',
  55 + legend : '按 ${undo}'
  56 + },
  57 + {
  58 + name : ' 重做命令',
  59 + legend : '按 ${redo}'
  60 + },
  61 + {
  62 + name : ' 加粗命令',
  63 + legend : '按 ${bold}'
  64 + },
  65 + {
  66 + name : ' 倾斜命令',
  67 + legend : '按 ${italic}'
  68 + },
  69 + {
  70 + name : ' 下划线命令',
  71 + legend : '按 ${underline}'
  72 + },
  73 + {
  74 + name : ' 链接命令',
  75 + legend : '按 ${link}'
  76 + },
  77 + {
  78 + name : ' 工具栏折叠命令',
  79 + legend : '按 ${toolbarCollapse}'
  80 + },
  81 + {
  82 + name : ' 无障碍设计说明',
  83 + legend : '按 ${a11yHelp}'
  84 + }
  85 + ]
  86 + }
  87 + ]
  88 + }
  89 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +/**
  7 + * @fileOverview Plugin definition for the a11yhelp, which provides a dialog
  8 + * with accessibility related help.
  9 + */
  10 +
  11 +(function()
  12 +{
  13 + var pluginName = 'a11yhelp',
  14 + commandName = 'a11yHelp';
  15 +
  16 + CKEDITOR.plugins.add( pluginName,
  17 + {
  18 + requires: [ 'dialog' ],
  19 +
  20 + // List of available localizations.
  21 + availableLangs : { cs:1, cy:1, da:1, de:1, el:1, en:1, eo:1, fa:1, fi:1, fr:1, gu:1, he:1, it:1, mk:1, nb:1, nl:1, no:1, 'pt-br':1, ro:1, tr:1, ug:1, vi:1, 'zh-cn':1 },
  22 +
  23 + init : function( editor )
  24 + {
  25 + var plugin = this;
  26 + editor.addCommand( commandName,
  27 + {
  28 + exec : function()
  29 + {
  30 + var langCode = editor.langCode;
  31 + langCode = plugin.availableLangs[ langCode ] ? langCode : 'en';
  32 +
  33 + CKEDITOR.scriptLoader.load(
  34 + CKEDITOR.getUrl( plugin.path + 'lang/' + langCode + '.js' ),
  35 + function()
  36 + {
  37 + CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ langCode ] );
  38 + editor.openDialog( commandName );
  39 + });
  40 + },
  41 + modes : { wysiwyg:1, source:1 },
  42 + readOnly : 1,
  43 + canUndo : false
  44 + });
  45 +
  46 + CKEDITOR.dialog.add( commandName, this.path + 'dialogs/a11yhelp.js' );
  47 + }
  48 + });
  49 +})();
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.dialog.add( 'about', function( editor )
  7 +{
  8 + var lang = editor.lang.about;
  9 +
  10 + return {
  11 + title : CKEDITOR.env.ie ? lang.dlgTitle : lang.title,
  12 + minWidth : 390,
  13 + minHeight : 230,
  14 + contents : [
  15 + {
  16 + id : 'tab1',
  17 + label : '',
  18 + title : '',
  19 + expand : true,
  20 + padding : 0,
  21 + elements :
  22 + [
  23 + {
  24 + type : 'html',
  25 + html :
  26 + '<style type="text/css">' +
  27 + '.cke_about_container' +
  28 + '{' +
  29 + 'color:#000 !important;' +
  30 + 'padding:10px 10px 0;' +
  31 + 'margin-top:5px' +
  32 + '}' +
  33 + '.cke_about_container p' +
  34 + '{' +
  35 + 'margin: 0 0 10px;' +
  36 + '}' +
  37 + '.cke_about_container .cke_about_logo' +
  38 + '{' +
  39 + 'height:81px;' +
  40 + 'background-color:#fff;' +
  41 + 'background-image:url(' + CKEDITOR.plugins.get( 'about' ).path + 'dialogs/logo_ckeditor.png);' +
  42 + 'background-position:center; ' +
  43 + 'background-repeat:no-repeat;' +
  44 + 'margin-bottom:10px;' +
  45 + '}' +
  46 + '.cke_about_container a' +
  47 + '{' +
  48 + 'cursor:pointer !important;' +
  49 + 'color:blue !important;' +
  50 + 'text-decoration:underline !important;' +
  51 + '}' +
  52 + '</style>' +
  53 + '<div class="cke_about_container">' +
  54 + '<div class="cke_about_logo"></div>' +
  55 + '<p>' +
  56 + 'CKEditor ' + CKEDITOR.version + ' (revision ' + CKEDITOR.revision + ')<br>' +
  57 + '<a href="http://ckeditor.com/">http://ckeditor.com</a>' +
  58 + '</p>' +
  59 + '<p>' +
  60 + lang.help.replace( '$1', '<a href="http://docs.cksource.com/CKEditor_3.x/Users_Guide/Quick_Reference">' + lang.userGuide + '</a>' ) +
  61 + '</p>' +
  62 + '<p>' +
  63 + lang.moreInfo + '<br>' +
  64 + '<a href="http://ckeditor.com/license">http://ckeditor.com/license</a>' +
  65 + '</p>' +
  66 + '<p>' +
  67 + lang.copy.replace( '$1', '<a href="http://cksource.com/">CKSource</a> - Frederico Knabben' ) +
  68 + '</p>' +
  69 + '</div>'
  70 + }
  71 + ]
  72 + }
  73 + ],
  74 + buttons : [ CKEDITOR.dialog.cancelButton ]
  75 + };
  76 +} );
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.add( 'about',
  7 +{
  8 + requires : [ 'dialog' ],
  9 + init : function( editor )
  10 + {
  11 + var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
  12 + command.modes = { wysiwyg:1, source:1 };
  13 + command.canUndo = false;
  14 + command.readOnly = 1;
  15 +
  16 + editor.ui.addButton( 'About',
  17 + {
  18 + label : editor.lang.about.title,
  19 + command : 'about'
  20 + });
  21 +
  22 + CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
  23 + }
  24 +});
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +(function()
  7 +{
  8 + var eventNameList = [ 'click', 'keydown', 'mousedown', 'keypress', 'mouseover', 'mouseout' ];
  9 +
  10 + // Inline event callbacks assigned via innerHTML/outerHTML, such as
  11 + // onclick/onmouseover, are ignored in AIR.
  12 + // Use DOM2 event listeners to substitue inline handlers instead.
  13 + function convertInlineHandlers( container )
  14 + {
  15 + // TODO: document.querySelectorAll is not supported in AIR.
  16 + var children = container.getElementsByTag( '*' ),
  17 + count = children.count(),
  18 + child;
  19 +
  20 + for ( var i = 0; i < count; i++ )
  21 + {
  22 + child = children.getItem( i );
  23 +
  24 + (function( node )
  25 + {
  26 + for ( var j = 0; j < eventNameList.length; j++ )
  27 + {
  28 + (function( eventName )
  29 + {
  30 + var inlineEventHandler = node.getAttribute( 'on' + eventName );
  31 + if ( node.hasAttribute( 'on' + eventName ) )
  32 + {
  33 + node.removeAttribute( 'on' + eventName );
  34 + node.on( eventName, function( evt )
  35 + {
  36 + var callFunc = /(return\s*)?CKEDITOR\.tools\.callFunction\(([^)]+)\)/.exec( inlineEventHandler ),
  37 + hasReturn = callFunc && callFunc[ 1 ],
  38 + callFuncArgs = callFunc && callFunc[ 2 ].split( ',' ),
  39 + preventDefault = /return false;/.test( inlineEventHandler );
  40 +
  41 + if ( callFuncArgs )
  42 + {
  43 + var nums = callFuncArgs.length,
  44 + argName;
  45 +
  46 + for ( var i = 0; i < nums; i++ )
  47 + {
  48 + // Trim spaces around param.
  49 + callFuncArgs[ i ] = argName = CKEDITOR.tools.trim( callFuncArgs[ i ] );
  50 +
  51 + // String form param.
  52 + var strPattern = argName.match( /^(["'])([^"']*?)\1$/ );
  53 + if ( strPattern )
  54 + {
  55 + callFuncArgs[ i ] = strPattern[ 2 ];
  56 + continue;
  57 + }
  58 +
  59 + // Integer form param.
  60 + if ( argName.match( /\d+/ ) )
  61 + {
  62 + callFuncArgs[ i ] = parseInt( argName, 10 );
  63 + continue;
  64 + }
  65 +
  66 + // Speical variables.
  67 + switch( argName )
  68 + {
  69 + case 'this' :
  70 + callFuncArgs[ i ] = node.$;
  71 + break;
  72 + case 'event' :
  73 + callFuncArgs[ i ] = evt.data.$;
  74 + break;
  75 + case 'null' :
  76 + callFuncArgs [ i ] = null;
  77 + break;
  78 + }
  79 + }
  80 +
  81 + var retval = CKEDITOR.tools.callFunction.apply( window, callFuncArgs );
  82 + if ( hasReturn && retval === false )
  83 + preventDefault = 1;
  84 + }
  85 +
  86 + if ( preventDefault )
  87 + evt.data.preventDefault();
  88 + });
  89 + }
  90 + })( eventNameList[ j ] );
  91 + }
  92 + })( child );
  93 + }
  94 + }
  95 +
  96 + CKEDITOR.plugins.add( 'adobeair',
  97 + {
  98 + init : function( editor )
  99 + {
  100 + if ( !CKEDITOR.env.air )
  101 + return;
  102 +
  103 + // Body doesn't get default margin on AIR.
  104 + editor.addCss( 'body { padding: 8px }' );
  105 +
  106 + editor.on( 'uiReady', function()
  107 + {
  108 + convertInlineHandlers( editor.container );
  109 +
  110 + if ( editor.sharedSpaces )
  111 + {
  112 + for ( var space in editor.sharedSpaces )
  113 + convertInlineHandlers( editor.sharedSpaces[ space ] );
  114 + }
  115 +
  116 + editor.on( 'elementsPathUpdate', function( evt ) { convertInlineHandlers( evt.data.space ); } );
  117 + });
  118 +
  119 + editor.on( 'contentDom', function()
  120 + {
  121 + // Hyperlinks are enabled in editable documents in Adobe
  122 + // AIR. Prevent their click behavior.
  123 + editor.document.on( 'click', function( ev )
  124 + {
  125 + ev.data.preventDefault( true );
  126 + });
  127 + });
  128 + }
  129 + });
  130 +
  131 + CKEDITOR.ui.on( 'ready', function( evt )
  132 + {
  133 + var ui = evt.data;
  134 + // richcombo, panelbutton and menu
  135 + if ( ui._.panel )
  136 + {
  137 + var panel = ui._.panel._.panel,
  138 + holder;
  139 +
  140 + ( function()
  141 + {
  142 + // Adding dom event listeners off-line are not supported in AIR,
  143 + // waiting for panel iframe loaded.
  144 + if ( !panel.isLoaded )
  145 + {
  146 + setTimeout( arguments.callee, 30 );
  147 + return;
  148 + }
  149 + holder = panel._.holder;
  150 + convertInlineHandlers( holder );
  151 + })();
  152 + }
  153 + else if ( ui instanceof CKEDITOR.dialog )
  154 + convertInlineHandlers( ui._.element );
  155 + });
  156 +})();
  157 +
  158 +CKEDITOR.dom.document.prototype.write = CKEDITOR.tools.override( CKEDITOR.dom.document.prototype.write,
  159 + function( original_write )
  160 + {
  161 + function appendElement( parent, tagName, fullTag, text )
  162 + {
  163 + var node = parent.append( tagName ),
  164 + attrs = CKEDITOR.htmlParser.fragment.fromHtml( fullTag ).children[ 0 ].attributes;
  165 + attrs && node.setAttributes( attrs );
  166 + text && node.append( parent.getDocument().createText( text ) );
  167 + }
  168 +
  169 + return function( html, mode )
  170 + {
  171 + // document.write() or document.writeln() fail silently after
  172 + // the page load event in Adobe AIR.
  173 + // DOM manipulation could be used instead.
  174 + if ( this.getBody() )
  175 + {
  176 + // We're taking the below extra work only because innerHTML
  177 + // on <html> element doesn't work as expected.
  178 + var doc = this,
  179 + head = this.getHead();
  180 +
  181 + // Create style nodes for inline css. ( <style> content doesn't applied when setting via innerHTML )
  182 + html = html.replace( /(<style[^>]*>)([\s\S]*?)<\/style>/gi,
  183 + function ( match, startTag, styleText )
  184 + {
  185 + appendElement( head, 'style', startTag, styleText );
  186 + return '';
  187 + });
  188 +
  189 + html = html.replace( /<base\b[^>]*\/>/i,
  190 + function( match )
  191 + {
  192 + appendElement( head, 'base', match );
  193 + return '';
  194 + });
  195 +
  196 + html = html.replace( /<title>([\s\S]*)<\/title>/i,
  197 + function( match, title )
  198 + {
  199 + doc.$.title = title;
  200 + return '';
  201 + });
  202 +
  203 + // Move the rest of head stuff.
  204 + html = html.replace( /<head>([\s\S]*)<\/head>/i,
  205 + function( headHtml )
  206 + {
  207 + // Inject the <head> HTML inside a <div>.
  208 + // Do that before getDocumentHead because WebKit moves
  209 + // <link css> elements to the <head> at this point.
  210 + var div = new CKEDITOR.dom.element( 'div', doc );
  211 + div.setHtml( headHtml );
  212 + // Move the <div> nodes to <head>.
  213 + div.moveChildren( head );
  214 + return '';
  215 + });
  216 +
  217 + html.replace( /(<body[^>]*>)([\s\S]*)(?=$|<\/body>)/i,
  218 + function( match, startTag, innerHTML )
  219 + {
  220 + doc.getBody().setHtml( innerHTML );
  221 + var attrs = CKEDITOR.htmlParser.fragment.fromHtml( startTag ).children[ 0 ].attributes;
  222 + attrs && doc.getBody().setAttributes( attrs );
  223 + });
  224 + }
  225 + else
  226 + original_write.apply( this, arguments );
  227 + };
  228 + });
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +/**
  7 + * @fileOverview Defines the {@link CKEDITOR.ajax} object, which holds ajax methods for
  8 + * data loading.
  9 + */
  10 +
  11 +(function()
  12 +{
  13 + CKEDITOR.plugins.add( 'ajax',
  14 + {
  15 + requires : [ 'xml' ]
  16 + });
  17 +
  18 + /**
  19 + * Ajax methods for data loading.
  20 + * @namespace
  21 + * @example
  22 + */
  23 + CKEDITOR.ajax = (function()
  24 + {
  25 + var createXMLHttpRequest = function()
  26 + {
  27 + // In IE, using the native XMLHttpRequest for local files may throw
  28 + // "Access is Denied" errors.
  29 + if ( !CKEDITOR.env.ie || location.protocol != 'file:' )
  30 + try { return new XMLHttpRequest(); } catch(e) {}
  31 +
  32 + try { return new ActiveXObject( 'Msxml2.XMLHTTP' ); } catch (e) {}
  33 + try { return new ActiveXObject( 'Microsoft.XMLHTTP' ); } catch (e) {}
  34 +
  35 + return null;
  36 + };
  37 +
  38 + var checkStatus = function( xhr )
  39 + {
  40 + // HTTP Status Codes:
  41 + // 2xx : Success
  42 + // 304 : Not Modified
  43 + // 0 : Returned when running locally (file://)
  44 + // 1223 : IE may change 204 to 1223 (see http://dev.jquery.com/ticket/1450)
  45 +
  46 + return ( xhr.readyState == 4 &&
  47 + ( ( xhr.status >= 200 && xhr.status < 300 ) ||
  48 + xhr.status == 304 ||
  49 + xhr.status === 0 ||
  50 + xhr.status == 1223 ) );
  51 + };
  52 +
  53 + var getResponseText = function( xhr )
  54 + {
  55 + if ( checkStatus( xhr ) )
  56 + return xhr.responseText;
  57 + return null;
  58 + };
  59 +
  60 + var getResponseXml = function( xhr )
  61 + {
  62 + if ( checkStatus( xhr ) )
  63 + {
  64 + var xml = xhr.responseXML;
  65 + return new CKEDITOR.xml( xml && xml.firstChild ? xml : xhr.responseText );
  66 + }
  67 + return null;
  68 + };
  69 +
  70 + var load = function( url, callback, getResponseFn )
  71 + {
  72 + var async = !!callback;
  73 +
  74 + var xhr = createXMLHttpRequest();
  75 +
  76 + if ( !xhr )
  77 + return null;
  78 +
  79 + xhr.open( 'GET', url, async );
  80 +
  81 + if ( async )
  82 + {
  83 + // TODO: perform leak checks on this closure.
  84 + /** @ignore */
  85 + xhr.onreadystatechange = function()
  86 + {
  87 + if ( xhr.readyState == 4 )
  88 + {
  89 + callback( getResponseFn( xhr ) );
  90 + xhr = null;
  91 + }
  92 + };
  93 + }
  94 +
  95 + xhr.send(null);
  96 +
  97 + return async ? '' : getResponseFn( xhr );
  98 + };
  99 +
  100 + return /** @lends CKEDITOR.ajax */ {
  101 +
  102 + /**
  103 + * Loads data from an URL as plain text.
  104 + * @param {String} url The URL from which load data.
  105 + * @param {Function} [callback] A callback function to be called on
  106 + * data load. If not provided, the data will be loaded
  107 + * synchronously.
  108 + * @returns {String} The loaded data. For asynchronous requests, an
  109 + * empty string. For invalid requests, null.
  110 + * @example
  111 + * // Load data synchronously.
  112 + * var data = CKEDITOR.ajax.load( 'somedata.txt' );
  113 + * alert( data );
  114 + * @example
  115 + * // Load data asynchronously.
  116 + * var data = CKEDITOR.ajax.load( 'somedata.txt', function( data )
  117 + * {
  118 + * alert( data );
  119 + * } );
  120 + */
  121 + load : function( url, callback )
  122 + {
  123 + return load( url, callback, getResponseText );
  124 + },
  125 +
  126 + /**
  127 + * Loads data from an URL as XML.
  128 + * @param {String} url The URL from which load data.
  129 + * @param {Function} [callback] A callback function to be called on
  130 + * data load. If not provided, the data will be loaded
  131 + * synchronously.
  132 + * @returns {CKEDITOR.xml} An XML object holding the loaded data. For asynchronous requests, an
  133 + * empty string. For invalid requests, null.
  134 + * @example
  135 + * // Load XML synchronously.
  136 + * var xml = CKEDITOR.ajax.loadXml( 'somedata.xml' );
  137 + * alert( xml.getInnerXml( '//' ) );
  138 + * @example
  139 + * // Load XML asynchronously.
  140 + * var data = CKEDITOR.ajax.loadXml( 'somedata.xml', function( xml )
  141 + * {
  142 + * alert( xml.getInnerXml( '//' ) );
  143 + * } );
  144 + */
  145 + loadXml : function( url, callback )
  146 + {
  147 + return load( url, callback, getResponseXml );
  148 + }
  149 + };
  150 + })();
  151 +
  152 +})();
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +/**
  7 + * @file AutoGrow plugin
  8 + */
  9 +(function(){
  10 +
  11 + // Actual content height, figured out by appending check the last element's document position.
  12 + function contentHeight( scrollable )
  13 + {
  14 + var overflowY = scrollable.getStyle( 'overflow-y' );
  15 +
  16 + var doc = scrollable.getDocument();
  17 + // Create a temporary marker element.
  18 + var marker = CKEDITOR.dom.element.createFromHtml( '<span style="margin:0;padding:0;border:0;clear:both;width:1px;height:1px;display:block;">' + ( CKEDITOR.env.webkit ? '&nbsp;' : '' ) + '</span>', doc );
  19 + doc[ CKEDITOR.env.ie? 'getBody' : 'getDocumentElement']().append( marker );
  20 +
  21 + var height = marker.getDocumentPosition( doc ).y + marker.$.offsetHeight;
  22 + marker.remove();
  23 + scrollable.setStyle( 'overflow-y', overflowY );
  24 + return height;
  25 + }
  26 +
  27 + var resizeEditor = function( editor )
  28 + {
  29 + if ( !editor.window )
  30 + return;
  31 +
  32 + var doc = editor.document,
  33 + iframe = new CKEDITOR.dom.element( doc.getWindow().$.frameElement ),
  34 + body = doc.getBody(),
  35 + htmlElement = doc.getDocumentElement(),
  36 + currentHeight = editor.window.getViewPaneSize().height,
  37 + // Quirks mode overflows body, standards overflows document element
  38 + scrollable = doc.$.compatMode == 'BackCompat' ? body : htmlElement,
  39 + newHeight = contentHeight( scrollable );
  40 +
  41 + // Additional space specified by user.
  42 + newHeight += ( editor.config.autoGrow_bottomSpace || 0 );
  43 +
  44 + var min = editor.config.autoGrow_minHeight != undefined ? editor.config.autoGrow_minHeight : 200,
  45 + max = editor.config.autoGrow_maxHeight || Infinity;
  46 +
  47 + newHeight = Math.max( newHeight, min );
  48 + newHeight = Math.min( newHeight, max );
  49 +
  50 + if ( newHeight != currentHeight )
  51 + {
  52 + newHeight = editor.fire( 'autoGrow', { currentHeight : currentHeight, newHeight : newHeight } ).newHeight;
  53 + editor.resize( editor.container.getStyle( 'width' ), newHeight, true );
  54 + }
  55 +
  56 + if ( scrollable.$.scrollHeight > scrollable.$.clientHeight && newHeight < max )
  57 + scrollable.setStyle( 'overflow-y', 'hidden' );
  58 + else
  59 + scrollable.removeStyle( 'overflow-y' );
  60 +
  61 +
  62 + };
  63 +
  64 + CKEDITOR.plugins.add( 'autogrow',
  65 + {
  66 + init : function( editor )
  67 + {
  68 + editor.addCommand( 'autogrow', { exec : resizeEditor, modes : { wysiwyg:1 }, readOnly: 1, canUndo: false, editorFocus: false } );
  69 +
  70 + var eventsList = { contentDom:1, key:1, selectionChange:1, insertElement:1, mode:1 };
  71 + editor.config.autoGrow_onStartup && ( eventsList[ 'instanceReady' ] = 1 );
  72 + for ( var eventName in eventsList )
  73 + {
  74 + editor.on( eventName, function( evt )
  75 + {
  76 + var maximize = editor.getCommand( 'maximize' );
  77 + // Some time is required for insertHtml, and it gives other events better performance as well.
  78 + if ( evt.editor.mode == 'wysiwyg' &&
  79 + // Disable autogrow when the editor is maximized .(#6339)
  80 + ( !maximize || maximize.state != CKEDITOR.TRISTATE_ON ) )
  81 + {
  82 + setTimeout( function()
  83 + {
  84 + resizeEditor( evt.editor );
  85 + // Second pass to make correction upon
  86 + // the first resize, e.g. scrollbar.
  87 + resizeEditor( evt.editor );
  88 + }, 100 );
  89 + }
  90 + });
  91 + }
  92 + }
  93 + });
  94 +})();
  95 +/**
  96 + * The minimum height that the editor can reach using the AutoGrow feature.
  97 + * @name CKEDITOR.config.autoGrow_minHeight
  98 + * @type Number
  99 + * @default <code>200</code>
  100 + * @since 3.4
  101 + * @example
  102 + * config.autoGrow_minHeight = 300;
  103 + */
  104 +
  105 +/**
  106 + * The maximum height that the editor can reach using the AutoGrow feature. Zero means unlimited.
  107 + * @name CKEDITOR.config.autoGrow_maxHeight
  108 + * @type Number
  109 + * @default <code>0</code>
  110 + * @since 3.4
  111 + * @example
  112 + * config.autoGrow_maxHeight = 400;
  113 + */
  114 +
  115 + /**
  116 + * Whether to have the auto grow happen on editor creation.
  117 + * @name CKEDITOR.config.autoGrow_onStartup
  118 + * @type Boolean
  119 + * @default false
  120 + * @since 3.6.2
  121 + * @example
  122 + * config.autoGrow_onStartup = true;
  123 + */
  124 +
  125 +/**
  126 + * Fired when the AutoGrow plugin is about to change the size of the editor.
  127 + * @name CKEDITOR.editor#autogrow
  128 + * @event
  129 + * @param {Number} data.currentHeight The current height of the editor (before resizing).
  130 + * @param {Number} data.newHeight The new height of the editor (after resizing). It can be changed
  131 + * to determine a different height value to be used instead.
  132 + */
  133 +
  134 +
  135 +/**
  136 + * Extra height in pixel to leave between the bottom boundary of content with document size when auto resizing.
  137 + * @name CKEDITOR.config.autoGrow_bottomSpace
  138 + * @type Number
  139 + * @default 0
  140 + * @since 3.6.2
  141 + */
  1 +/*
  2 +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3 +For licensing, see LICENSE.html or http://ckeditor.com/license
  4 +*/
  5 +
  6 +CKEDITOR.plugins.add( 'basicstyles',
  7 +{
  8 + requires : [ 'styles', 'button' ],
  9 +
  10 + init : function( editor )
  11 + {
  12 + // All buttons use the same code to register. So, to avoid
  13 + // duplications, let's use this tool function.
  14 + var addButtonCommand = function( buttonName, buttonLabel, commandName, styleDefiniton )
  15 + {
  16 + var style = new CKEDITOR.style( styleDefiniton );
  17 +
  18 + editor.attachStyleStateChange( style, function( state )
  19 + {
  20 + !editor.readOnly && editor.getCommand( commandName ).setState( state );
  21 + });
  22 +
  23 + editor.addCommand( commandName, new CKEDITOR.styleCommand( style ) );
  24 +
  25 + editor.ui.addButton( buttonName,
  26 + {
  27 + label : buttonLabel,
  28 + command : commandName
  29 + });
  30 + };
  31 +
  32 + var config = editor.config,
  33 + lang = editor.lang;
  34 +
  35 + addButtonCommand( 'Bold' , lang.bold , 'bold' , config.coreStyles_bold );
  36 + addButtonCommand( 'Italic' , lang.italic , 'italic' , config.coreStyles_italic );
  37 + addButtonCommand( 'Underline' , lang.underline , 'underline' , config.coreStyles_underline );
  38 + addButtonCommand( 'Strike' , lang.strike , 'strike' , config.coreStyles_strike );
  39 + addButtonCommand( 'Subscript' , lang.subscript , 'subscript' , config.coreStyles_subscript );
  40 + addButtonCommand( 'Superscript' , lang.superscript , 'superscript' , config.coreStyles_superscript );
  41 + }
  42 +});
  43 +
  44 +// Basic Inline Styles.
  45 +
  46 +/**
  47 + * The style definition that applies the <strong>bold</strong> style to the text.
  48 + * @type Object
  49 + * @default <code>{ element : 'strong', overrides : 'b' }</code>
  50 + * @example
  51 + * config.coreStyles_bold = { element : 'b', overrides : 'strong' };
  52 + * @example
  53 + * config.coreStyles_bold =
  54 + * {
  55 + * element : 'span',
  56 + * attributes : { 'class' : 'Bold' }
  57 + * };
  58 + */
  59 +CKEDITOR.config.coreStyles_bold = { element : 'strong', overrides : 'b' };
  60 +
  61 +/**
  62 + * The style definition that applies the <em>italics</em> style to the text.
  63 + * @type Object
  64 + * @default <code>{ element : 'em', overrides : 'i' }</code>
  65 + * @example
  66 + * config.coreStyles_italic = { element : 'i', overrides : 'em' };
  67 + * @example
  68 + * CKEDITOR.config.coreStyles_italic =
  69 + * {
  70 + * element : 'span',
  71 + * attributes : { 'class' : 'Italic' }
  72 + * };
  73 + */
  74 +CKEDITOR.config.coreStyles_italic = { element : 'em', overrides : 'i' };
  75 +
  76 +/**
  77 + * The style definition that applies the <u>underline</u> style to the text.
  78 + * @type Object
  79 + * @default <code>{ element : 'u' }</code>
  80 + * @example
  81 + * CKEDITOR.config.coreStyles_underline =
  82 + * {
  83 + * element : 'span',
  84 + * attributes : { 'class' : 'Underline' }
  85 + * };
  86 + */
  87 +CKEDITOR.config.coreStyles_underline = { element : 'u' };
  88 +
  89 +/**
  90 + * The style definition that applies the <strike>strike-through</strike> style to the text.
  91 + * @type Object
  92 + * @default <code>{ element : 'strike' }</code>
  93 + * @example
  94 + * CKEDITOR.config.coreStyles_strike =
  95 + * {
  96 + * element : 'span',
  97 + * attributes : { 'class' : 'StrikeThrough' },
  98 + * overrides : 'strike'
  99 + * };
  100 + */
  101 +CKEDITOR.config.coreStyles_strike = { element : 'strike' };
  102 +
  103 +/**
  104 + * The style definition that applies the subscript style to the text.
  105 + * @type Object
  106 + * @default <code>{ element : 'sub' }</code>
  107 + * @example
  108 + * CKEDITOR.config.coreStyles_subscript =
  109 + * {
  110 + * element : 'span',
  111 + * attributes : { 'class' : 'Subscript' },
  112 + * overrides : 'sub'
  113 + * };
  114 + */
  115 +CKEDITOR.config.coreStyles_subscript = { element : 'sub' };
  116 +
  117 +/**
  118 + * The style definition that applies the superscript style to the text.
  119 + * @type Object
  120 + * @default <code>{ element : 'sup' }</code>
  121 + * @example
  122 + * CKEDITOR.config.coreStyles_superscript =
  123 + * {
  124 + * element : 'span',
  125 + * attributes : { 'class' : 'Superscript' },
  126 + * overrides : 'sup'
  127 + * };
  128 + */
  129 +CKEDITOR.config.coreStyles_superscript = { element : 'sup' };