[ Index ]
 

Code source de eGroupWare 1.2.106-2

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/phpgwapi/js/htmlarea/plugins/ContextMenu/lang/ -> lang.php (source)

   1  <?php
   2  /**************************************************************************\
   3  * eGroupWare - API htmlarea translations (according to lang in user prefs) *
   4  * http: //www.eGroupWare.org                                                *
   5  * Modified by Ralf Becker <RalfBecker@outdoor-training.de>                 *
   6  * This file is derived from htmlareas's lang/en.js file                    *
   7  * --------------------------------------------                             *
   8  *  This program is free software; you can redistribute it and/or modify it *
   9  *  under the terms of the GNU General Public License as published by the   *
  10  *  Free Software Foundation; either version 2 of the License, or (at your  *
  11  *  option) any later version.                                              *
  12  \**************************************************************************/
  13  
  14  /* $Id: lang.php 20295 2006-02-15 12:31:25Z  $ */
  15  
  16  $GLOBALS['phpgw_info']['flags'] = Array(
  17      'currentapp'  => 'home',        // can't be phpgwapi, nor htmlarea (no own directory)
  18      'noheader'    => True,
  19      'nonavbar'    => True,
  20      'noappheader' => True,
  21      'noappfooter' => True,
  22      'nofooter'    => True,
  23      'nocachecontrol' => True            // allow cacheing
  24  );
  25  
  26  include('../../../../../../header.inc.php');
  27  header('Content-type: text/javascript; charset='.$GLOBALS['phpgw']->translation->charset());
  28  $GLOBALS['phpgw']->translation->add_app('htmlarea-ContextMenu');
  29  
  30  // I18N constants
  31  
  32  // LANG:  "en", ENCODING: UTF-8 | ISO-8859-1
  33  // Author: Mihai Bazon, http://dynarch.com/mishoo
  34  
  35  // FOR TRANSLATORS:
  36  //
  37  //   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
  38  //      (at least a valid email address)
  39  //
  40  //   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
  41  //      (if this is not possible, please include a comment
  42  //       that states what encoding is necessary.)
  43  ?>
  44  ContextMenu.I18N = {
  45      // Items that appear in menu.  Please note that an underscore (_)
  46      // character in the translation (right column) will cause the following
  47      // letter to become underlined and be shortcut for that menu option.
  48  
  49      "Cut"                                                   :  "<?php echo lang('Cut'); ?>",
  50      "Copy"                                                  :  "<?php echo lang('Copy'); ?>",
  51      "Paste"                                                 :  "<?php echo lang('Paste'); ?>",
  52      "Image Properties"                                      :  "<?php echo lang('_Image Properties...'); ?>",
  53      "Modify Link"                                           :  "<?php echo lang('_Modify Link...'); ?>",
  54      "Check Link"                                            :  "<?php echo lang('Chec_k Link...'); ?>",
  55      "Remove Link"                                           :  "<?php echo lang('_Remove Link...'); ?>",
  56      "Cell Properties"                                       :  "<?php echo lang('C_ell Properties...'); ?>",
  57      "Row Properties"                                        :  "<?php echo lang('Ro_w Properties...'); ?>",
  58      "Insert Row Before"                                     :  "<?php echo lang('I_nsert Row Before'); ?>",
  59      "Insert Row After"                                      :  "<?php echo lang('In_sert Row After'); ?>",
  60      "Delete Row"                                            :  "<?php echo lang('_Delete Row'); ?>",
  61      "Table Properties"                                      :  "<?php echo lang('_Table Properties...'); ?>",
  62      "Insert Column Before"                                  :  "<?php echo lang('Insert _Column Before'); ?>",
  63      "Insert Column After"                                   :  "<?php echo lang('Insert C_olumn After'); ?>",
  64      "Delete Column"                                         :  "<?php echo lang('De_lete Column'); ?>",
  65      "Justify Left"                                          :  "<?php echo lang('Justify Left'); ?>",
  66      "Justify Center"                                        :  "<?php echo lang('Justify Center'); ?>",
  67      "Justify Right"                                         :  "<?php echo lang('Justify Right'); ?>",
  68      "Justify Full"                                          :  "<?php echo lang('Justify Full'); ?>",
  69      "Make link"                                             :  "<?php echo lang('Make lin_k...'); ?>",
  70      "Remove the"                                            :  "<?php echo lang('Remove the'); ?>",
  71      "Element"                                               :  "<?php echo lang('Element...'); ?>",
  72  
  73      // Other labels (tooltips and alert/confirm box messages)
  74  
  75      "Please confirm that you want to remove this element:"  :  "<?php echo lang('Please confirm that you want to remove this element:'); ?>",
  76      "Remove this node from the document"                    :  "<?php echo lang('Remove this node from the document'); ?>",
  77      "How did you get here? (Please report!)"                :  "<?php echo lang('How did you get here? (Please report!)'); ?>",
  78      "Show the image properties dialog"                      :  "<?php echo lang('Show the image properties dialog'); ?>",
  79      "Modify URL"                                            :  "<?php echo lang('Modify URL'); ?>",
  80      "Current URL is"                                        :  "<?php echo lang('Current URL is'); ?>",
  81      "Opens this link in a new window"                       :  "<?php echo lang('Opens this link in a new window'); ?>",
  82      "Please confirm that you want to unlink this element."  :  "<?php echo lang('Please confirm that you want to unlink this element.'); ?>",
  83      "Link points to:"                                       :  "<?php echo lang('Link points to:'); ?>",
  84      "Unlink the current element"                            :  "<?php echo lang('Unlink the current element'); ?>",
  85      "Show the Table Cell Properties dialog"                 :  "<?php echo lang('Show the Table Cell Properties dialog'); ?>",
  86      "Show the Table Row Properties dialog"                  :  "<?php echo lang('Show the Table Row Properties dialog'); ?>",
  87      "Insert a new row before the current one"               :  "<?php echo lang('Insert a new row before the current one'); ?>",
  88      "Insert a new row after the current one"                :  "<?php echo lang('Insert a new row after the current one'); ?>",
  89      "Delete the current row"                                :  "<?php echo lang('Delete the current row'); ?>",
  90      "Show the Table Properties dialog"                      :  "<?php echo lang('Show the Table Properties dialog'); ?>",
  91      "Insert a new column before the current one"            :  "<?php echo lang('Insert a new column before the current one'); ?>",
  92      "Insert a new column after the current one"             :  "<?php echo lang('Insert a new column after the current one'); ?>",
  93      "Delete the current column"                             :  "<?php echo lang('Delete the current column'); ?>",
  94      "Create a link"                                         :  "<?php echo lang('Create a link'); ?>"
  95  };


Généré le : Sun Feb 25 17:20:01 2007 par Balluche grâce à PHPXref 0.7