source: branches/1.2/workflow/js/htmlarea/plugins/UploadImage/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-SpellChecker');
28
29// I18N for the FullPage plugin
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?>
43UploadImage.I18N = {
44        "Alternate style-sheet:":               "<?php echo lang('Alternate style-sheet:'); ?>",
45        "Background color:":                    "<?php echo lang('Background color:'); ?>",
46        "Cancel":                               "<?php echo lang('Cancel'); ?>",
47        "DOCTYPE:":                             "<?php echo lang('DOCTYPE:'); ?>",
48        "Document properties":                  "<?php echo lang('Document properties'); ?>",
49        "Document title:":                      "<?php echo lang('Document title:'); ?>",
50        "OK":                                   "<?php echo lang('OK'); ?>",
51        "Primary style-sheet:":                 "<?php echo lang('Primary style-sheet:'); ?>",
52        "Text color:":                          "<?php echo lang('Text color:'); ?>",
53        "Upload Image":                         "<?php echo lang('Upload Image'); ?>"
54};
Note: See TracBrowser for help on using the repository browser.