source: branches/1.2/workflow/js/htmlarea/plugins/ListType/lang/lang.php @ 1349

Revision 1349, 2.3 KB checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
Line 
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
15$GLOBALS['phpgw_info']['flags'] = Array(
16        'currentapp'  => 'home',                // can't be phpgwapi, nor htmlarea (no own directory)
17        'noheader'    => True,
18        'nonavbar'    => True,
19        'noappheader' => True,
20        'noappfooter' => True,
21        'nofooter'    => True,
22        'nocachecontrol' => True                        // allow cacheing
23);
24
25include('../../../../../../header.inc.php');
26header('Content-type: text/javascript; charset='.$GLOBALS['phpgw']->translation->charset());
27$GLOBALS['phpgw']->translation->add_app('htmlarea-ListType');
28
29// I18N constants
30
31// LANG: "en", ENCODING: UTF-8 | ISO-8859-1
32// Author: Mihai Bazon, http://dynarch.com/mishoo
33
34// FOR TRANSLATORS:
35//
36//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
37//      (at least a valid email address)
38//
39//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
40//      (if this is not possible, please include a comment
41//       that states what encoding is necessary.)
42?>
43ListType.I18N = {
44        "Decimal"                :    "<?php echo lang('Decimal numbers'); ?>",
45        "Lower roman"            :    "<?php echo lang('Lower roman numbers'); ?>",
46        "Upper roman"            :    "<?php echo lang('Upper roman numbers'); ?>",
47        "Lower latin"            :    "<?php echo lang('Lower latin letters'); ?>",
48        "Upper latin"            :    "<?php echo lang('Upper latin letters'); ?>",
49        "Lower greek"            :    "<?php echo lang('Lower greek letters'); ?>",
50        "ListStyleTooltip"       :    "<?php echo lang('Choose list style type (for ordered lists)'); ?>"
51};
Note: See TracBrowser for help on using the repository browser.