Last change
on this file since 550 was 550, checked in by chronos, 12 years ago |
- Upraveno: Část týkající se překládání přepracována na aplikační modul.
|
File size:
918 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | include_once(dirname(__FILE__).'/Comparison.php');
|
---|
4 | include_once(dirname(__FILE__).'/Form.php');
|
---|
5 | include_once(dirname(__FILE__).'/Save.php');
|
---|
6 | include_once(dirname(__FILE__).'/TranslationList.php');
|
---|
7 |
|
---|
8 | class ModuleTranslation extends AppModule
|
---|
9 | {
|
---|
10 | function __construct($System)
|
---|
11 | {
|
---|
12 | parent::__construct($System);
|
---|
13 | $this->Name = 'Translation';
|
---|
14 | $this->Version = '1.0';
|
---|
15 | $this->Creator = 'Chronos';
|
---|
16 | $this->License = 'GNU/GPL';
|
---|
17 | $this->Description = 'Translation of text items and groups from original language to other languages.';
|
---|
18 | $this->Dependencies = array();
|
---|
19 | }
|
---|
20 |
|
---|
21 | function Start()
|
---|
22 | {
|
---|
23 | $this->System->RegisterPage('comparison.php', 'PageTranslationComparison');
|
---|
24 | $this->System->RegisterPage('form.php', 'PageTranslationForm');
|
---|
25 | $this->System->RegisterPage('save.php', 'PageTranslationSave');
|
---|
26 | $this->System->RegisterPage('TranslationList.php', 'PageTranslationList');
|
---|
27 | }
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.