1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
<?php include_once 'includes/init.php'; print_header('','','',true); ?>
<h2><?php etranslate("Help")?>: <?php etranslate("Adding/Editing Calendar Entries")?></h2>
<table style="border-width:0px;"> <tr><td class="help"> <?php etranslate("Brief Description")?>:</td><td> <?php etranslate("brief-description-help")?> </td></tr> <tr><td class="help"> <?php etranslate("Full Description")?>:</td><td> <?php etranslate("full-description-help")?> </td></tr> <tr><td class="help"> <?php etranslate("Date")?>:</td><td> <?php etranslate("date-help")?> </td></tr> <tr><td class="help"> <?php etranslate("Time")?>:</td><td> <?php etranslate("time-help")?> </td></tr> <?php if ( $GLOBALS['TIMED_EVT_LEN'] != 'E' ) { ?> <tr><td class="help"> <?php etranslate("Duration")?>:</td><td> <?php etranslate("duration-help")?> </td></tr> <?php } else { ?> <tr><td class="help"> <?php etranslate("End Time")?>:</td><td> <?php etranslate("end-time-help")?> </td></tr> <?php } ?> <?php if ( $disable_priority_field != "Y" ) { ?> <tr><td class="help"> <?php etranslate("Priority")?>:</td><td> <?php etranslate("priority-help")?> </td></tr> <?php } ?> <?php if ( $disable_access_field != "Y" ) { ?> <tr><td class="help"> <?php etranslate("Access")?>:</td><td> <?php etranslate("access-help")?> </td></tr> <?php } ?> <?php $show_participants = ( $disable_participants_field != "Y" ); if ( $is_admin ) $show_participants = true; if ( $single_user == "N" && $show_participants ) { ?> <tr><td class="help"> <?php etranslate("Participants")?>:</td><td> <?php etranslate("participants-help")?> </td></tr> <?php } ?> <?php if ( $disable_repeating_field != "Y" ) { ?> <tr><td class="help"> <?php etranslate("Repeat Type")?>:</td><td> <?php etranslate("repeat-type-help")?> </td></tr> <tr><td class="help"> <?php etranslate("Repeat End Date")?>:</td><td> <?php etranslate("repeat-end-date-help")?> </td></tr> <tr><td class="help"> <?php etranslate("Repeat Day")?>:</td><td> <?php etranslate("repeat-day-help")?> </td></tr> <tr><td class="help"> <?php etranslate("Frequency")?>:</td><td> <?php etranslate("repeat-frequency-help")?> </td></tr> <?php } ?> </table>
<?php include_once "includes/help_trailer.php"; ?>
</body> </html>
|