-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.php
28 lines (23 loc) · 862 Bytes
/
messages.php
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
<?php
/**
*
* $Id: messages.php 119 2017-09-16 11:04:33Z munix9 $
*
*/
/**
* we can not use define here, since we want to translate those messages
* and we do like this in a template: {$T_MSG_REMOVE_CONFIRM}
* to translate it
*/
$MSG_REMOVE_CONFIRM = 'Are you sure to delete this entry?';
// this is used on the time/period-log
$MSG_LOG_FOR_PROJECT = 'Log for the project';
$MSG_FOR = 'for:';
$MSG_ARE_YOUR_SURE = 'Are you sure?';
// Project overbooking alerts
$MSG_PROJECT_OVERBOOKED = 'CAUTION: Project overbooked!';
$MSG_PROJECT_OVERBOOKED21 = 'CAUTION: Only ';
$MSG_PROJECT_OVERBOOKED22 = 'hours left';
$MSG_PROJECT_BOOKING_CHOICE_QUESTION = 'Do you still want to book ?';
$MSG_PROJECT_BOOKING_CHOICE_CANCEL = 'CANCEL : No booking!';
$MSG_PROJECT_BOOKING_CHOICE_OK = 'OK : Booking will be done! (Project overbooked)';