Projet

Général

Profil

options.php

Laurent Brillard, 17/04/2013 07:30

Télécharger (2,16 ko)

 
1
<?php
2
/****************************************************************************\
3
* TaskFreak!                                                                 *
4
* multi user                                                                 *
5
******************************************************************************
6
* Version: 0.6.3                                                             *
7
* Authors: Stan Ozier <taskfreak@gmail.com>                                  *
8
* License:  http://www.gnu.org/licenses/gpl.txt (GPL)                        *
9
\****************************************************************************/
10

    
11
// project status
12
$GLOBALS['langProjectStatus'] = array(
13
        0         => 'Nouveau',           // 0 is for new project
14
        10        => 'Proposition',      // anything between 0 and 40
15
        20         => 'En cours',   // is free to be customized
16
        40        => 'Terminé',     // anything 40 and over
17
        50        => 'Annulé'      // is for non active projects
18
);
19

    
20
// project position
21
$GLOBALS['langProjectPosition'] = array(
22
        1        => 'Invité',        // see only, no action
23
        2        => 'Officiel',        // add comments
24
        3        => 'Membre',        // add tasks, add comments, task status
25
        4        => 'Modérateur', // add/edit all tasks, comments, project members and status
26
        5        => 'Responsable'     // everything
27
);
28

    
29
// members global position
30
$GLOBALS['langGlobalPosition'] = array(
31
        1        => 'Invité',     // access own projects, view only public tasks
32
        2        => 'Participant',    // access own projects, create projects, create tasks
33
        3        => 'Chef de projet',   // access own projects, create projects, tasks
34
        4        => 'Administrateur' // everything
35
);
36

    
37
// task (item) status
38
$GLOBALS['langItemStatus'] = array(
39
        0        => '0%',
40
        1        => '20%',
41
        2        => '40%',
42
        3        => '60%',
43
        4        => '80%',
44
        5        => '100%'
45
);
46

    
47
// contexts
48

    
49
$GLOBALS['langItemContext'] = array (
50
        1 => 'Tâches',
51
        2 => 'Réunion',
52
        3 => 'Document',
53
        4 => 'Internet',        
54
        5 => 'Téléphone',
55
        6 => 'Email',
56
        7 => 'Personnel',
57
        8 => 'Autre'
58
);
59

    
60
$GLOBALS['langItemPriority'] = array (
61
        1 => 'Urgent !',
62
        2 => 'Priorité haute',
63
        3 => 'Priorité modérée',
64
        4 => 'Priorité normale',        
65
        5 => 'Priorité basse',
66
        6 => 'Priorité basse',
67
        7 => 'Priorité très basse',
68
        8 => 'Priorité très basse',
69
        9 => 'Pas prioritaire'
70
);
71