Show
Ignore:
Timestamp:
11/23/10 18:22:45 (18 months ago)
Author:
baby
Message:

traduzco al castellano los cambios entre r3227:3408

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • txp/plugins/TOOLS/trunk/ort_plugintemplate/ort_CAMBIAR_EL_NOMBRE_plugin.php

    r822 r823  
    5050 
    5151 
    52 // Plugin 'flags' signal the presence of optional capabilities to the core plugin loader. 
    53 // Use an appropriately OR-ed combination of these flags. 
    54 // The four high-order bits 0xf000 are available for this plugin's private use. 
    55 if (!defined('PLUGIN_HAS_PREFS')) define('PLUGIN_HAS_PREFS', 0x0001); // This plugin wants to receive "plugin_prefs.{$plugin['name']}" events 
    56 if (!defined('PLUGIN_LIFECYCLE_NOTIFY')) define('PLUGIN_LIFECYCLE_NOTIFY', 0x0002); // This plugin wants to receive "plugin_lifecycle.{$plugin['name']}" events 
     52// Los 'flags' del plugin indican al cargador de plugins del core la presencia de capacidades opcionales. 
     53// Usá una combinación OR de estos flags. 
     54// Los cuatro bits más altos (0xf000) son para us privado de este plugin. 
     55if (!defined('PLUGIN_HAS_PREFS')) define('PLUGIN_HAS_PREFS', 0x0001); // Este plugin quiere recibir eventos "plugin_prefs.{$plugin['nombre']}" 
     56if (!defined('PLUGIN_LIFECYCLE_NOTIFY')) define('PLUGIN_LIFECYCLE_NOTIFY', 0x0002); // Este plugin quiere recibir eventos "plugin_lifecycle.{$plugin['name']}" 
    5757 
    5858# $plugin['flags'] = PLUGIN_HAS_PREFS | PLUGIN_LIFECYCLE_NOTIFY; 
    5959 
    60 // Plugin 'textpack' is optional. It provides i18n strings to be used in conjunction with gTxt(). 
    61 // Syntax: 
    62 // ## arbitrary comment 
    63 // #@event 
    64 // #@language ISO-LANGUAGE-CODE 
    65 // abc_string_name => Localized String 
     60// El 'textpack' del plugin es opcional. Esto provee textos i18n para ser utilizados en conjunto con gTxt(). 
     61// Sintáxis: 
     62// ## comentario arbitrario 
     63// #@evento 
     64// #@language CODIGO-ISO-DE-IDIOMA 
     65// ort_cadena_de_texto => Texto localizado en el idioma 
    6666 
    67 /** Uncomment me, if you need a textpack 
     67/** Descomentar esto si se necesita un textpack 
    6868$plugin['textpack'] = <<< EOT 
    6969#@admin 
    7070#@language en-gb 
    71 abc_sample_string => Sample String 
    72 abc_one_more => One more 
     71ort_cadena => Sample String 
     72ort_otra => One more 
    7373#@language es-es 
    74 abc_sample_string => Texto de ejemplo 
    75 abc_one_more => Uno más 
     74ort_cadena => Texto de ejemplo 
     75ort_otra => Uno más 
    7676EOT; 
    7777**/ 
    78 // End of textpack 
     78// Fin del textpack 
    7979 
    8080if (!defined('txpinterface'))