rafael          Sat Jun  8 12:05:38 2002 EDT

  Added files:                 
    /phpdoc-es/reference/pspell/functions       pspell-add-to-personal.xml 
                                                pspell-add-to-session.xml 
                                                pspell-clear-session.xml 

  Removed files:               
    /phpdoc-es/reference/pspell/functions       pspell-check.xml 
                                                pspell-new.xml 
                                                pspell-suggest.xml 
  Log:
  Translation updated to PHP 4.x
  
  

Index: phpdoc-es/reference/pspell/functions/pspell-add-to-personal.xml
+++ phpdoc-es/reference/pspell/functions/pspell-add-to-personal.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.2 Maintainer: diegof Status: ready -->
  <refentry id="function.pspell-add-to-personal">
   <refnamediv>
    <refname>pspell_add_to_personal</refname>
    <refpurpose>Agrega la palabra a la lista personal de palabras</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Descripci&oacute;n</title>
     <methodsynopsis>
      <type>int</type><methodname>pspell_add_to_personal</methodname>
      <methodparam><type>int</type><parameter>dictionary_link</parameter></methodparam>
      <methodparam><type>cadena</type><parameter>palabra</parameter></methodparam>
     </methodsynopsis>
    <simpara>
     <function>pspell_add_to_personal</function> agrega una palabra a la lista 
personal 
     de palabras. Si usas <function>pspell_new_config</function> con
     <function>pspell_config_personal</function> para abrir el diccionario,
     puedes salvar la lista de palabras luego, con
     <function>pspell_save_wordlist</function>. Nota: Esta funci&oacute;n no 
funcionar&aacute;
     hasta que tengas pspell .11.2 y aspell .32.5 o superior.
    </simpara>
    <para>
     <example>
      <title><function>pspell_add_to_personal</function></title>
      <programlisting role="php">
<![CDATA[
$pspell_config = pspell_config_create ("en");
pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws");
$pspell_link = pspell_new_config ($pspell_config);

pspell_add_to_personal ($pspell_link, "Vlad");
pspell_save_wordlist ($pspell_link);
]]>
      </programlisting>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-es/reference/pspell/functions/pspell-add-to-session.xml
+++ phpdoc-es/reference/pspell/functions/pspell-add-to-session.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.2 Maintainer: diegof Status: ready -->

  <refentry id="function.pspell-add-to-session">
   <refnamediv>
    <refname>pspell_add_to_session</refname>
    <refpurpose>Agrega la palabra a la lista de palabras en la sesi&oacute;n actual
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Descripci&oacute;n</title>
     <methodsynopsis>
      <type>int</type><methodname>pspell_add_to_session</methodname>
      <methodparam><type>int</type><parameter>dictionary_link</parameter></methodparam>
      <methodparam><type>cadena</type><parameter>palabra</parameter></methodparam>
     </methodsynopsis>
    <simpara>
     <function>pspell_add_to_session</function> agrega la palabra a la lista de 
palabras
     asociada con la sesi&oacute;n actual. Esto es muy similar a
     <function>pspell_add_to_personal</function>
    </simpara>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-es/reference/pspell/functions/pspell-clear-session.xml
+++ phpdoc-es/reference/pspell/functions/pspell-clear-session.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.2 Maintainer: diegof Status: ready -->

  <refentry id="function.pspell-clear-session">
   <refnamediv>
    <refname>pspell_clear_session</refname>
    <refpurpose>Limpia la sesi&oacute;n actual</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Descripci&oacute;n</title>
     <methodsynopsis>
      <type>int</type><methodname>pspell_clear_session</methodname>
      <methodparam><type>int</type><parameter>dictionary_link</parameter></methodparam>
     </methodsynopsis>
    <simpara>
     <function>pspell_clear_session</function> limpia la sesi&oacute;n actual.
     La lista de palabras actual queda vac&iacute;a, y, por ejemplo, si intentas 
salvarla
     con <function>pspell_save_wordlist</function>, nada ocurre.
    </simpara>
    <para>
     <example>
      <title><function>pspell_add_to_personal</function></title>
      <programlisting role="php">
<![CDATA[
$pspell_config = pspell_config_create ("en");
pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws");
$pspell_link = pspell_new_config ($pspell_config);

pspell_add_to_personal ($pspell_link, "Vlad");
pspell_clear_session ($pspell_link);
pspell_save_wordlist ($pspell_link);    //"Vlad" will not be saved
]]>
      </programlisting>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->


Reply via email to