You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(5) |
Feb
(25) |
Mar
(18) |
Apr
|
May
(26) |
Jun
(14) |
Jul
(1) |
Aug
(5) |
Sep
(82) |
Oct
(3) |
Nov
(130) |
Dec
(9) |
| 2004 |
Jan
(4) |
Feb
(62) |
Mar
|
Apr
(3) |
May
(100) |
Jun
|
Jul
(6) |
Aug
(49) |
Sep
(33) |
Oct
(47) |
Nov
(2) |
Dec
(1) |
| 2005 |
Jan
|
Feb
(4) |
Mar
(1) |
Apr
(8) |
May
(17) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(26) |
Oct
(18) |
Nov
(37) |
Dec
(14) |
| 2006 |
Jan
(2) |
Feb
(18) |
Mar
(34) |
Apr
(52) |
May
(7) |
Jun
(3) |
Jul
(2) |
Aug
(10) |
Sep
|
Oct
|
Nov
(18) |
Dec
(4) |
| 2007 |
Jan
|
Feb
(7) |
Mar
(7) |
Apr
(6) |
May
(52) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(15) |
Nov
|
Dec
(1) |
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(250) |
| 2009 |
Jan
(35) |
Feb
(45) |
Mar
|
Apr
(4) |
May
(35) |
Jun
(13) |
Jul
(49) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(11) |
| 2010 |
Jan
(3) |
Feb
(30) |
Mar
|
Apr
(35) |
May
(12) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
|
From: <cl...@us...> - 2003-03-12 01:56:43
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv20857/includes Modified Files: header.inc.php Log Message: Mac line endings removed. Index: header.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/header.inc.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** header.inc.php 24 Nov 2002 23:04:45 -0000 1.1 --- header.inc.php 12 Mar 2003 01:56:40 -0000 1.2 *************** *** 1 **** ! <?php /* Begin Custom Header */ ?> <?php /* End Custom Header */ ?> \ No newline at end of file --- 1,4 ---- ! <?php /* Begin Custom Header */ ?> ! ! ! <?php /* End Custom Header */ ?> |
|
From: <cl...@us...> - 2003-03-11 23:02:56
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv24459/includes Modified Files: footer.inc.php Log Message: Started LOCATION support, changed version to 0.9.2. Index: footer.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** footer.inc.php 19 Feb 2003 22:45:59 -0000 1.4 --- footer.inc.php 11 Mar 2003 23:02:20 -0000 1.5 *************** *** 1,5 **** <?php ! echo "<center><font class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.1</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; --- 1,5 ---- <?php ! echo "<center><font class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.2</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; |
|
From: <cl...@us...> - 2003-03-11 23:02:53
|
Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv24459/functions
Modified Files:
ical_parser.php
Log Message:
Started LOCATION support, changed version to 0.9.2.
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.86
retrieving revision 1.87
diff -C2 -d -r1.86 -r1.87
*** ical_parser.php 10 Mar 2003 18:27:09 -0000 1.86
--- ical_parser.php 11 Mar 2003 23:02:15 -0000 1.87
***************
*** 893,905 ****
// Attendee support only testing in Apple iCal 1.0.2
case 'ATTENDEE':
! $field = ereg_replace("ATTENDEE;CN=", "", $field);
! $data = ereg_replace ("mailto:", "", $data);
$attendee[] = array ('name' => $field, 'email' => $data);
#print_r($attendee);
break;
case 'ORGANIZER':
! $field = ereg_replace("ORGANIZER;CN=", "", $field);
! $data = ereg_replace ("mailto:", "", $data);
$organizer[] = array ('name' => $field, 'email' => $data);
break;
}
--- 893,908 ----
// Attendee support only testing in Apple iCal 1.0.2
case 'ATTENDEE':
! $field = ereg_replace("ATTENDEE;CN=", "", $field);
! $data = ereg_replace ("mailto:", "", $data);
$attendee[] = array ('name' => $field, 'email' => $data);
#print_r($attendee);
break;
case 'ORGANIZER':
! $field = ereg_replace("ORGANIZER;CN=", "", $field);
! $data = ereg_replace ("mailto:", "", $data);
$organizer[] = array ('name' => $field, 'email' => $data);
+ break;
+ case 'LOCATION':
+ $data = $location;
break;
}
|
|
From: <cl...@us...> - 2003-03-11 23:02:48
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv24459 Modified Files: README Log Message: Started LOCATION support, changed version to 0.9.2. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** README 10 Mar 2003 17:24:16 -0000 1.42 --- README 11 Mar 2003 23:02:07 -0000 1.43 *************** *** 75,82 **** 0.9.2 -Fixed an extra .php on the preferences page. ! -Increased validations on many pages.y -Added support for CLASS (public, private, and confidential). -Added support for LOCATION -Added support for ATTENDEE 0.9.1 --- 75,83 ---- 0.9.2 -Fixed an extra .php on the preferences page. ! -Increased validations on many pages. -Added support for CLASS (public, private, and confidential). -Added support for LOCATION -Added support for ATTENDEE + -Added support for STATUS 0.9.1 *************** *** 85,89 **** --- 86,92 ---- -Fixed a bug with the latest version of Ximian. -Added the ability to hard-set cookie-uri and download-uri. + -Added Catalan and Tranditional Chinese languages. -Back button on preferences page now works. + -Allow_Preferences option now works. 0.9 |
|
From: <cl...@us...> - 2003-03-10 19:48:31
|
Update of /cvsroot/phpicalendar/phpicalendar/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv8484/includes
Modified Files:
event.php
Log Message:
Support for displaying event STATUS in the java pop-up.
Index: event.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** event.php 15 Feb 2003 20:07:09 -0000 1.4
--- event.php 10 Mar 2003 19:48:27 -0000 1.5
***************
*** 29,32 ****
--- 29,37 ----
$end = '';
}
+ if (isset($HTTP_GET_VARS['status']) && ($HTTP_GET_VARS['status'] !== '') ) {
+ $status = $HTTP_GET_VARS['status'];
+ } else {
+ $status = '';
+ }
$event = rawurldecode($event);
***************
*** 79,82 ****
--- 84,95 ----
<?php echo ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",
'<a target="_new" href="\0">\0</a>', $description); ?></td>
+ </tr>
+ <?php } ?>
+
+ <?php if ($status) { ?>
+ <tr>
+ <td width="1%"><img src="images/spacer.gif" width="6" height="1" alt=" "></td>
+ <td align="left" colspan="2" class="V12">
+ <?php echo "$status"; ?></td>
</tr>
<?php } ?>
|
|
From: <cl...@us...> - 2003-03-10 19:48:31
|
Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv8484
Modified Files:
day.php month.php week.php
Log Message:
Support for displaying event STATUS in the java pop-up.
Index: day.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v
retrieving revision 1.86
retrieving revision 1.87
diff -C2 -d -r1.86 -r1.87
*** day.php 10 Mar 2003 06:50:33 -0000 1.86
--- day.php 10 Mar 2003 19:48:22 -0000 1.87
***************
*** 107,117 ****
echo '<table width="100%" border="0" cellspacing="1" cellpadding="4">'."\n";
foreach($master_array[($getdate)]['-1'] as $allday) {
! $event_text = stripslashes(urldecode($allday['event_text']));
! $description = addslashes(urlencode($allday['description']));
! $event_text2 = rawurlencode(addslashes($allday['event_text']));
$event_start = '';
$event_end = '';
echo '<tr>'."\n";
! echo '<td valign="top" align="center" class="eventbg"><a class="psf" href="javascript:openEventInfo(\''.$event_text2.'\', \''.$calendar_name.'\', \''.$event_start.'\', \''.$event_end.'\', \''.$description.'\')"><font color="#ffffff"><i>'.$event_text.'</i></font></a></td>'."\n";
echo '</tr>'."\n";
}
--- 107,118 ----
echo '<table width="100%" border="0" cellspacing="1" cellpadding="4">'."\n";
foreach($master_array[($getdate)]['-1'] as $allday) {
! $event_text = stripslashes(urldecode($allday['event_text']));
! $description = addslashes(urlencode($allday['description']));
! $event_text2 = rawurlencode(addslashes($allday['event_text']));
! $status = $allday['status'];
$event_start = '';
$event_end = '';
echo '<tr>'."\n";
! echo '<td valign="top" align="center" class="eventbg"><a class="psf" href="javascript:openEventInfo(\''.$event_text2.'\', \''.$calendar_name.'\', \''.$event_start.'\', \''.$event_end.'\', \''.$description.'\', \''.$status.'\')"><font color="#ffffff"><i>'.$event_text.'</i></font></a></td>'."\n";
echo '</tr>'."\n";
}
***************
*** 247,250 ****
--- 248,252 ----
$event_end = date ($timeFormat, $event_end);
$calendar_name2 = rawurlencode(addslashes($calendar_name));
+ $status = $this_time_arr[($event_length[$i]['key'])]['status'];
echo '<td rowspan="' . $event_length[$i]['length'] . '" colspan="' . $drawWidth . '" align="left" valign="top" class="eventbg2">'."\n";
echo '<table width="100%" border="0" cellspacing="0" cellpadding="2">'."\n";
***************
*** 256,260 ****
echo '<table width="100%" border="0" cellpadding="1" cellspacing="0">'."\n";
echo '<tr>'."\n";
! echo '<td class="eventbg"><a class="psf" href="javascript:openEventInfo(\''.$event_text2.'\', \''.$calendar_name2.'\', \''.$event_start.'\', \''.$event_end.'\', \''.$description.'\')"><font class="eventfont">'.$event_text.'</font></a></td>'."\n";
echo '</tr>'."\n";
echo '</table>'."\n";
--- 258,262 ----
echo '<table width="100%" border="0" cellpadding="1" cellspacing="0">'."\n";
echo '<tr>'."\n";
! echo '<td class="eventbg"><a class="psf" href="javascript:openEventInfo(\''.$event_text2.'\', \''.$calendar_name2.'\', \''.$event_start.'\', \''.$event_end.'\', \''.$description.'\', \''.$status.'\')"><font class="eventfont">'.$event_text.'</font></a></td>'."\n";
echo '</tr>'."\n";
echo '</table>'."\n";
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** month.php 10 Mar 2003 18:27:00 -0000 1.85
--- month.php 10 Mar 2003 19:48:24 -0000 1.86
***************
*** 173,176 ****
--- 173,177 ----
$calendar_name2 = urlencode($calendar_name2);
$event_text = word_wrap($event_text, 12, $month_event_lines);
+ $status = $val["status"];
echo "<tr>\n";
echo "<td>\n";
***************
*** 180,186 ****
$event_start = '';
$event_end = '';
! echo "<td><font class=\"V10\"><center><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name2', '$event_start', '$event_end', '$description')\"><i>$event_text</i></a></center></font></td>\n";
} else {
! echo "<td align=\"left\" valign=\"top\"><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name2', '$event_start', '$event_end', '$description')\"><font class=\"V9\"> $event_start2 $event_text</font></a></td>\n";
}
echo "</tr>\n";
--- 181,187 ----
$event_start = '';
$event_end = '';
! echo "<td><font class=\"V10\"><center><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name2', '$event_start', '$event_end', '$description', '$status')\"><i>$event_text</i></a></center></font></td>\n";
} else {
! echo "<td align=\"left\" valign=\"top\"><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name2', '$event_start', '$event_end', '$description', '$status')\"><font class=\"V9\"> $event_start2 $event_text</font></a></td>\n";
}
echo "</tr>\n";
***************
*** 262,265 ****
--- 263,267 ----
$description = addslashes(urlencode($new_val2["description"]));
$description = str_replace("\"", """, $description);
+ $status = $new_val2["status"];
if (isset($new_val2["event_start"])) {
$event_start = $new_val2["event_start"];
***************
*** 281,285 ****
echo "<td align=\"left\" valign=\"top\" width =\"160\" class=\"montheventline\" nowrap><font $fontclass> <a class=\"psf\" href=\"day.php?cal=$cal&getdate=$key\">$dayofmonth</a></font> <font class=\"V9G\">($event_start)</font></td>\n";
echo "<td align=\"left\" valign=\"top\" colspan=\"2\">\n";
! echo " <a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name', '$event_start2', '$event_end', '$description')\"><font class=\"G10B\">$event_text</font></a>\n";
echo "</td>\n";
echo "</tr>\n";
--- 283,287 ----
echo "<td align=\"left\" valign=\"top\" width =\"160\" class=\"montheventline\" nowrap><font $fontclass> <a class=\"psf\" href=\"day.php?cal=$cal&getdate=$key\">$dayofmonth</a></font> <font class=\"V9G\">($event_start)</font></td>\n";
echo "<td align=\"left\" valign=\"top\" colspan=\"2\">\n";
! echo " <a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name', '$event_start2', '$event_end', '$description', '$status')\"><font class=\"G10B\">$event_text</font></a>\n";
echo "</td>\n";
echo "</tr>\n";
Index: week.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v
retrieving revision 1.86
retrieving revision 1.87
diff -C2 -d -r1.86 -r1.87
*** week.php 10 Mar 2003 18:27:01 -0000 1.86
--- week.php 10 Mar 2003 19:48:24 -0000 1.87
***************
*** 183,190 ****
$all_day_text = word_wrap($all_day_text, 12, $allday_week_lines);
$description = addslashes(urlencode($allday["description"]));
$event_start = '';
$event_end = '';
echo "<tr>\n";
! echo "<td valign=\"top\" align=\"center\" class=\"eventbg\"><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name', '$event_start', '$event_end', '$description')\"><font color=\"#ffffff\">$all_day_text</font></a></td>\n";
echo "</tr>\n";
}
--- 183,191 ----
$all_day_text = word_wrap($all_day_text, 12, $allday_week_lines);
$description = addslashes(urlencode($allday["description"]));
+ $status = $allday["status"];
$event_start = '';
$event_end = '';
echo "<tr>\n";
! echo "<td valign=\"top\" align=\"center\" class=\"eventbg\"><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name', '$event_start', '$event_end', '$description', '$status')\"><font color=\"#ffffff\">$all_day_text</font></a></td>\n";
echo "</tr>\n";
}
***************
*** 304,307 ****
--- 305,309 ----
$event_end = date ($timeFormat, $event_end);
$calendar_name2 = urlencode(addslashes($calendar_name));
+ $status = $this_time_arr[($event_length[$thisday][$i]["key"])]["status"];
echo "<td rowspan=\"" . $event_length[$thisday][$i]["length"] . "\" colspan=\"" . $drawWidth . "\" align=\"left\" valign=\"top\" class=\"eventbg2week\">\n";
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n";
***************
*** 313,317 ****
echo "<table width=\"100%\" border=\"0\" cellpadding=\"1\" cellspacing=\"0\">\n";
echo "<tr>\n";
! echo "<td class=\"eventbg\"><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name2', '$event_start', '$event_end', '$description')\"><font class=\"V10W\">$event_text</font></a></td>\n";
echo "</tr>\n";
echo "</table>\n";
--- 315,319 ----
echo "<table width=\"100%\" border=\"0\" cellpadding=\"1\" cellspacing=\"0\">\n";
echo "<tr>\n";
! echo "<td class=\"eventbg\"><a class=\"psf\" href=\"javascript:openEventInfo('$event_text2', '$calendar_name2', '$event_start', '$event_end', '$description', '$status')\"><font class=\"V10W\">$event_text</font></a></td>\n";
echo "</tr>\n";
echo "</table>\n";
|
|
From: <cl...@us...> - 2003-03-10 19:48:30
|
Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv8484/functions
Modified Files:
event.js
Log Message:
Support for displaying event STATUS in the java pop-up.
Index: event.js
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/event.js,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** event.js 8 Feb 2003 04:47:57 -0000 1.8
--- event.js 10 Mar 2003 19:48:26 -0000 1.9
***************
*** 5,9 ****
<script language="JavaScript" type="text/javascript">
<!--
! function openEventInfo(event, calendarname, start, end, description)
{
var windowW = 460;
--- 5,9 ----
<script language="JavaScript" type="text/javascript">
<!--
! function openEventInfo(event, calendarname, start, end, description, status)
{
var windowW = 460;
***************
*** 14,18 ****
"&start="+start+
"&end="+end+
! "&description="+description;
options = "scrollbars=yes,width="+windowW+",height="+windowH;
--- 14,19 ----
"&start="+start+
"&end="+end+
! "&description="+description+
! "&status="+status;
options = "scrollbars=yes,width="+windowW+",height="+windowH;
|
|
From: <cl...@us...> - 2003-03-10 18:34:22
|
Update of /cvsroot/phpicalendar/phpicalendar/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv30157/includes
Modified Files:
sidebar.php
Log Message:
Final html validation issues with day.php.
Index: sidebar.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/sidebar.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** sidebar.php 24 Feb 2003 20:23:43 -0000 1.8
--- sidebar.php 10 Mar 2003 18:34:18 -0000 1.9
***************
*** 7,11 ****
}
! $search_box = '<form action="search.php" method="GET"><input type="hidden" name="cal" value="'.$cal.'"><input type="hidden" name="getdate" value="'.$getdate.'"><input type="text" size="15" class="search_style" name="query" value="'.$search_lang.'" onfocus="javascript:if(this.value==\''.$search_lang.'\') {this.value=\'\';}" onblur="javascript:if(this.value==\'\') {this.value=\''.$search_lang.'\'}"><INPUT type="image" src="styles/'.$style_sheet.'/search.gif" border=0 height="19" width="18" name="submit" value="Search"></form>';
?>
--- 7,11 ----
}
! $search_box = '<form action="search.php" method="GET"><input type="hidden" name="cal" value="'.$cal.'"><input type="hidden" name="getdate" value="'.$getdate.'"><input type="text" size="15" class="search_style" name="query" value="'.$search_lang.'" onfocus="javascript:if(this.value==\''.$search_lang.'\') {this.value=\'\';}" onblur="javascript:if(this.value==\'\') {this.value=\''.$search_lang.'\'}"><INPUT type="image" src="styles/'.$style_sheet.'/search.gif" name="submit" value="Search"></form>';
?>
***************
*** 307,312 ****
?>
</tr>
! <tr height="3">
! <td colspan="7"><img src="images/spacer.gif" width="1" height="3" alt=" "></td>
</tr>
<?php
--- 307,312 ----
?>
</tr>
! <tr>
! <td colspan="7" height="3"><img src="images/spacer.gif" width="1" height="3" alt=" "></td>
</tr>
<?php
***************
*** 387,392 ****
?>
</tr>
! <tr height="3">
! <td colspan="7"><img src="images/spacer.gif" width="1" height="3" alt=" "></td>
</tr>
<?php
--- 387,392 ----
?>
</tr>
! <tr>
! <td colspan="7" height="3"><img src="images/spacer.gif" width="1" height="3" alt=" "></td>
</tr>
<?php
***************
*** 467,472 ****
?>
</tr>
! <tr height="3">
! <td colspan="7"><img src="images/spacer.gif" width="1" height="3" alt=" "></td>
</tr>
<?php
--- 467,472 ----
?>
</tr>
! <tr>
! <td colspan="7" height="3"><img src="images/spacer.gif" width="1" height="3" alt=" "></td>
</tr>
<?php
|
|
From: <cl...@us...> - 2003-03-10 18:27:42
|
Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv24671
Modified Files:
month.php week.php
Log Message:
More validation fixes, basic attendee parsing added.
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** month.php 30 Nov 2002 21:05:39 -0000 1.84
--- month.php 10 Mar 2003 18:27:00 -0000 1.85
***************
*** 229,233 ****
<td align="left" valign="top" width="160" class="sideback"><?php echo "<img src=\"images/spacer.gif\" alt=\" \" width=\"16\" height=\"20\" border=\"0\" align=\"left\">"; ?></td>
<td align="center" class="sideback" width="417" nowrap><font class="G10BOLD"><?php echo "$this_months_lang"; ?></font></td>
- <td align="right" valign="top" width="160" class="sideback"><?php echo "<img src=\"images/spacer.gif\" alt=\" \" width=\"16\" height=\"20\" border=\"0\" align=\"right\"></a>"; ?></td>
<td align="right" valign="top" width="160" class="sideback"><?php echo "<img src=\"images/spacer.gif\" alt=\" \" width=\"16\" height=\"20\" border=\"0\" align=\"right\">"; ?></td>
</tr>
--- 229,232 ----
Index: week.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** week.php 10 Mar 2003 17:25:53 -0000 1.85
--- week.php 10 Mar 2003 18:27:01 -0000 1.86
***************
*** 223,227 ****
} else {
! echo "<tr">\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
}
--- 223,227 ----
} else {
! echo "<tr>\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
}
|
|
From: <cl...@us...> - 2003-03-10 18:27:22
|
Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv24671/functions
Modified Files:
ical_parser.php list_icals.php list_months.php list_weeks.php
list_years.php
Log Message:
More validation fixes, basic attendee parsing added.
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** ical_parser.php 10 Mar 2003 05:37:46 -0000 1.85
--- ical_parser.php 10 Mar 2003 18:27:09 -0000 1.86
***************
*** 92,96 ****
$beginning, $rrule_array, $start_of_vevent, $description,
$valarm_description, $start_unixtime, $end_unixtime,
! $recurrence_id, $uid
);
--- 92,96 ----
$beginning, $rrule_array, $start_of_vevent, $description,
$valarm_description, $start_unixtime, $end_unixtime,
! $recurrence_id, $uid, $class, $attendee, $location, $organizer
);
***************
*** 891,896 ****
}
break;
case 'ATTENDEE':
! $attendee = $data;
break;
}
--- 891,905 ----
}
break;
+ // Attendee support only testing in Apple iCal 1.0.2
case 'ATTENDEE':
! $field = ereg_replace("ATTENDEE;CN=", "", $field);
! $data = ereg_replace ("mailto:", "", $data);
! $attendee[] = array ('name' => $field, 'email' => $data);
! #print_r($attendee);
! break;
! case 'ORGANIZER':
! $field = ereg_replace("ORGANIZER;CN=", "", $field);
! $data = ereg_replace ("mailto:", "", $data);
! $organizer[] = array ('name' => $field, 'email' => $data);
break;
}
Index: list_icals.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/list_icals.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** list_icals.php 2 Dec 2002 01:15:39 -0000 1.11
--- list_icals.php 10 Mar 2003 18:27:10 -0000 1.12
***************
*** 8,12 ****
$query="";
}
! print "<form>\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value+'$query');\">\n";
// open file
--- 8,12 ----
$query="";
}
! print "<form action=\"day.php\" method=\"GET\">\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value+'$query');\">\n";
// open file
Index: list_months.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/list_months.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** list_months.php 23 Nov 2002 23:42:03 -0000 1.5
--- list_months.php 10 Mar 2003 18:27:11 -0000 1.6
***************
*** 1,4 ****
<?php
! print "<form>\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value);\">\n";
$month_time = strtotime("$this_year-01-01");
$getdate_month = date("m", strtotime($getdate));
--- 1,4 ----
<?php
! print "<form action=\"day.php\" method=\"GET\">\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value);\">\n";
$month_time = strtotime("$this_year-01-01");
$getdate_month = date("m", strtotime($getdate));
Index: list_weeks.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/list_weeks.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** list_weeks.php 23 Nov 2002 23:42:03 -0000 1.5
--- list_weeks.php 10 Mar 2003 18:27:12 -0000 1.6
***************
*** 12,16 ****
$end_week_time = $start_week_time + (6 * 25 * 60 * 60);
! print "<form>\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value);\">\n";
// build the <option> tags
--- 12,16 ----
$end_week_time = $start_week_time + (6 * 25 * 60 * 60);
! print "<form action=\"day.php\" method=\"GET\">\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value);\">\n";
// build the <option> tags
Index: list_years.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/list_years.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** list_years.php 23 Nov 2002 23:42:03 -0000 1.2
--- list_years.php 10 Mar 2003 18:27:13 -0000 1.3
***************
*** 5,9 ****
$num_years2 = $num_years;
//echo "$num_years2";
! print "<form>\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value);\">\n";
// build the <option> tags
for ($i=0; $i < ($num_years2 +2); $i++) {
--- 5,9 ----
$num_years2 = $num_years;
//echo "$num_years2";
! print "<form action=\"day.php\" method=\"GET\">\n<select name=\"action\" class=\"query_style\" onChange=\"window.location=(this.options[this.selectedIndex].value);\">\n";
// build the <option> tags
for ($i=0; $i < ($num_years2 +2); $i++) {
|
|
From: <cl...@us...> - 2003-03-10 17:25:58
|
Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv25067
Modified Files:
week.php
Log Message:
Removed <tr> line heights for better validation.
Index: week.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** week.php 8 Dec 2002 09:45:58 -0000 1.84
--- week.php 10 Mar 2003 17:25:53 -0000 1.85
***************
*** 213,227 ****
if (ereg("([0-9]{1,2}):00", $key)) {
! echo "<tr height=\"" . $gridLength . "\">\n";
echo "<td rowspan=\"" . (60 / $gridLength) . "\" align=\"center\" valign=\"top\" width=\"60\" class=\"timeborder\">$key</td>\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
} elseif("$cal_time" == "$day_start") {
$size_tmp = 60 - (int)substr($cal_time,2,2);
! echo "<tr height=\"" . $gridLength . "\">\n";
echo "<td rowspan=\"" . ($size_tmp / $gridLength) . "\" align=\"center\" valign=\"top\" width=\"60\" class=\"timeborder\">$key</td>\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
} else {
! echo "<tr height=\"" . $gridLength . "\">\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
}
--- 213,227 ----
if (ereg("([0-9]{1,2}):00", $key)) {
! echo "<tr>\n";
echo "<td rowspan=\"" . (60 / $gridLength) . "\" align=\"center\" valign=\"top\" width=\"60\" class=\"timeborder\">$key</td>\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
} elseif("$cal_time" == "$day_start") {
$size_tmp = 60 - (int)substr($cal_time,2,2);
! echo "<tr>\n";
echo "<td rowspan=\"" . ($size_tmp / $gridLength) . "\" align=\"center\" valign=\"top\" width=\"60\" class=\"timeborder\">$key</td>\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
} else {
! echo "<tr">\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
}
|
|
From: <cl...@us...> - 2003-03-10 17:24:21
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv24255 Modified Files: README Log Message: Updated README with list of Calendar Applications. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** README 10 Mar 2003 06:59:24 -0000 1.41 --- README 10 Mar 2003 17:24:16 -0000 1.42 *************** *** 39,42 **** --- 39,52 ---- http://phpicalendar.sourceforge.net/phpBB2 + Supported Calendar Applications: + -------------------------------- + PHP iCalendar supports any calendar application that can generate + valid IETF 2445 files (.ics). Some of the supported applications are: + + -Apple iCal + -Mozilla Calendar + -Ximian Evolution + -KOrganizer + Bugs: ----- |
|
From: <cl...@us...> - 2003-03-10 06:59:27
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv32561 Modified Files: README Log Message: Outline for 0.9.2 Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** README 17 Feb 2003 18:43:31 -0000 1.40 --- README 10 Mar 2003 06:59:24 -0000 1.41 *************** *** 63,66 **** --- 63,73 ---- Changes: -------- + 0.9.2 + -Fixed an extra .php on the preferences page. + -Increased validations on many pages.y + -Added support for CLASS (public, private, and confidential). + -Added support for LOCATION + -Added support for ATTENDEE + 0.9.1 -Added unset preferences |
|
From: <cl...@us...> - 2003-03-10 06:50:36
|
Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv29889
Modified Files:
day.php
Log Message:
Removed tr line heights, better validation.
Index: day.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** day.php 30 Nov 2002 21:05:38 -0000 1.85
--- day.php 10 Mar 2003 06:50:33 -0000 1.86
***************
*** 209,222 ****
}
if (ereg('([0-9]{1,2}):00', $key)) {
! echo '<tr height="' . $gridLength . '">'."\n";
echo '<td rowspan="' . (60 / $gridLength) . '" align="center" valign="top" width="60" class="timeborder">'.$key.'</td>'."\n";
echo '<td width="1" height="' . $gridLength . '"></td>'."\n";
} elseif("$cal_time" == "$day_start") {
$size_tmp = 60 - (int)substr($cal_time,2,2);
! echo "<tr height=\"" . $gridLength . "\">\n";
echo "<td rowspan=\"" . ($size_tmp / $gridLength) . "\" align=\"center\" valign=\"top\" width=\"60\" class=\"timeborder\">$key</td>\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
} else {
! echo '<tr height="' . $gridLength . '">'."\n";
echo '<td width="1" height="' . $gridLength . '"></td>'."\n";
}
--- 209,222 ----
}
if (ereg('([0-9]{1,2}):00', $key)) {
! echo '<tr>'."\n";
echo '<td rowspan="' . (60 / $gridLength) . '" align="center" valign="top" width="60" class="timeborder">'.$key.'</td>'."\n";
echo '<td width="1" height="' . $gridLength . '"></td>'."\n";
} elseif("$cal_time" == "$day_start") {
$size_tmp = 60 - (int)substr($cal_time,2,2);
! echo "<tr>\n";
echo "<td rowspan=\"" . ($size_tmp / $gridLength) . "\" align=\"center\" valign=\"top\" width=\"60\" class=\"timeborder\">$key</td>\n";
echo "<td width=\"1\" height=\"" . $gridLength . "\"></td>\n";
} else {
! echo '<tr>'."\n";
echo '<td width="1" height="' . $gridLength . '"></td>'."\n";
}
|
|
From: <cl...@us...> - 2003-03-10 05:37:50
|
Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv10589/functions
Modified Files:
ical_parser.php
Log Message:
Support for private and confidential CLASS.
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** ical_parser.php 16 Feb 2003 20:36:20 -0000 1.84
--- ical_parser.php 10 Mar 2003 05:37:46 -0000 1.85
***************
*** 108,111 ****
--- 108,121 ----
} elseif ($line == 'END:VEVENT') {
+
+ // CLASS support
+ if ($class == 'PRIVATE') {
+ $summary ='**PRIVATE**';
+ $description ='**PRIVATE**';
+ } elseif ($class == 'CONFIDENTIAL') {
+ $summary ='**CONFIDENTIAL**';
+ $description ='**CONFIDENTIAL**';
+ }
+
// make sure we have some value for $uid
if (!isset($uid)) {
|
|
From: <cl...@us...> - 2003-02-25 17:35:26
|
Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv30738
Modified Files:
preferences.php
Log Message:
Fixed the back button, yet again! Go testing!
Index: preferences.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** preferences.php 24 Feb 2003 17:20:01 -0000 1.25
--- preferences.php 25 Feb 2003 17:35:22 -0000 1.26
***************
*** 7,13 ****
$cookie_uri = $HTTP_SERVER_VARS['SERVER_NAME'].substr($HTTP_SERVER_VARS['PHP_SELF'],0,strpos($HTTP_SERVER_VARS['PHP_SELF'], '/'));
}
$current_view = "preferences";
! $default_view = "$default_view" . ".php";
! if ($allow_preferences == 'no') header("Location: $default_view");
$action = $HTTP_GET_VARS['action'];
$startdays = array ('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
--- 7,15 ----
$cookie_uri = $HTTP_SERVER_VARS['SERVER_NAME'].substr($HTTP_SERVER_VARS['PHP_SELF'],0,strpos($HTTP_SERVER_VARS['PHP_SELF'], '/'));
}
+
$current_view = "preferences";
! $back_page = BASE.$default_view.'.php?cal='.$cal.'&getdate='.$getdate;
! if ($allow_preferences == 'no') header("Location: $back_page");
!
$action = $HTTP_GET_VARS['action'];
$startdays = array ('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
***************
*** 58,62 ****
}
- $back_page = BASE.$default_view.'.php?cal='.$cal.'&getdate='.$getdate;
?>
--- 60,63 ----
|
|
From: <cl...@us...> - 2003-02-24 20:24:15
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv11452 Modified Files: config.inc.php Log Message: Fixed a bug allowing preferences page to be displayed. Link now goes away if allow-preferences is set to no. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.97 retrieving revision 1.98 diff -C2 -d -r1.97 -r1.98 *** config.inc.php 24 Feb 2003 17:20:00 -0000 1.97 --- config.inc.php 24 Feb 2003 20:23:39 -0000 1.98 *************** *** 39,43 **** $daysofweek_dayview = 'no'; // Display the days of the week in day.php view. $enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). ! $show_search = 'no'; // Show the search box in the sidebar. $header_always = 'yes'; // Set to yes to have header on print.php $allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies. --- 39,43 ---- $daysofweek_dayview = 'no'; // Display the days of the week in day.php view. $enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). ! $show_search = 'yes'; // Show the search box in the sidebar. $header_always = 'yes'; // Set to yes to have header on print.php $allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies. |
|
From: <cl...@us...> - 2003-02-24 20:23:48
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv11452/includes Modified Files: calendar_nav.php sidebar.php Log Message: Fixed a bug allowing preferences page to be displayed. Link now goes away if allow-preferences is set to no. Index: calendar_nav.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/calendar_nav.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** calendar_nav.php 16 Feb 2003 20:25:21 -0000 1.4 --- calendar_nav.php 24 Feb 2003 20:23:42 -0000 1.5 *************** *** 192,204 **** <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> <td colspan="6" class="G10B"> ! <?php echo " ! <a class=\"psf\" href=\"day.php?cal=$cal&getdate=$today_today\">$goday_lang</a><br>\n ! <a class=\"psf\" href=\"week.php?cal=$cal&getdate=$today_today\">$goweek_lang</a><br>\n ! <a class=\"psf\" href=\"month.php?cal=$cal&getdate=$today_today\">$gomonth_lang</a><br>\n ! <a class=\"psf\" href=\"year.php?cal=$cal&getdate=$today_today\">$goyear_lang</a><br>\n ! <a class=\"psf\" href=\"print.php?cal=$cal&getdate=$getdate&printview=$current_view\">$goprint_lang</a><br>\n ! <a class=\"psf\" href=\"preferences.php?cal=$cal&getdate=$getdate\">$preferences_lang</a><br>\n ! <a class=\"psf\" href=\"$subscribe_path\">$subscribe_lang</a> | <a class=\"psf\" href=\"$download_filename\">$download_lang</a>\n ! "; ?> </td> </tr> --- 192,204 ---- <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> <td colspan="6" class="G10B"> ! <?php ! echo "<a class=\"psf\" href=\"day.php?cal=$cal&getdate=$today_today\">$goday_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"week.php?cal=$cal&getdate=$today_today\">$goweek_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"month.php?cal=$cal&getdate=$today_today\">$gomonth_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"year.php?cal=$cal&getdate=$today_today\">$goyear_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"print.php?cal=$cal&getdate=$getdate&printview=$current_view\">$goprint_lang</a><br>\n"; ! if ($allow_preferences != 'no') echo "<a class=\"psf\" href=\"preferences.php?cal=$cal&getdate=$getdate\">$preferences_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"$subscribe_path\">$subscribe_lang</a> | <a class=\"psf\" href=\"$download_filename\">$download_lang</a>\n"; ! ?> </td> </tr> Index: sidebar.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/sidebar.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** sidebar.php 16 Feb 2003 20:25:21 -0000 1.7 --- sidebar.php 24 Feb 2003 20:23:43 -0000 1.8 *************** *** 33,45 **** <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> <td colspan="6" class="G10B"> ! <?php echo " ! <a class=\"psf\" href=\"day.php?cal=$cal&getdate=$today_today\">$goday_lang</a><br>\n ! <a class=\"psf\" href=\"week.php?cal=$cal&getdate=$today_today\">$goweek_lang</a><br>\n ! <a class=\"psf\" href=\"month.php?cal=$cal&getdate=$today_today\">$gomonth_lang</a><br>\n ! <a class=\"psf\" href=\"year.php?cal=$cal&getdate=$today_today\">$goyear_lang</a><br>\n ! <a class=\"psf\" href=\"print.php?cal=$cal&getdate=$getdate&printview=$current_view\">$goprint_lang</a><br>\n ! <a class=\"psf\" href=\"preferences.php?cal=$cal&getdate=$getdate\">$preferences_lang</a><br>\n ! <a class=\"psf\" href=\"$subscribe_path\">$subscribe_lang</a> | <a class=\"psf\" href=\"$download_filename\">$download_lang</a>\n ! "; ?> </td> </tr> --- 33,45 ---- <td width="1%"><img src="images/spacer.gif" width="4" height="1" alt=" "></td> <td colspan="6" class="G10B"> ! <?php ! echo "<a class=\"psf\" href=\"day.php?cal=$cal&getdate=$today_today\">$goday_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"week.php?cal=$cal&getdate=$today_today\">$goweek_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"month.php?cal=$cal&getdate=$today_today\">$gomonth_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"year.php?cal=$cal&getdate=$today_today\">$goyear_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"print.php?cal=$cal&getdate=$getdate&printview=$current_view\">$goprint_lang</a><br>\n"; ! if ($allow_preferences != 'no') echo "<a class=\"psf\" href=\"preferences.php?cal=$cal&getdate=$getdate\">$preferences_lang</a><br>\n"; ! echo "<a class=\"psf\" href=\"$subscribe_path\">$subscribe_lang</a> | <a class=\"psf\" href=\"$download_filename\">$download_lang</a>\n"; ! ?> </td> </tr> |
|
From: <cl...@us...> - 2003-02-24 19:01:32
|
Update of /cvsroot/phpicalendar/phpicalendar/languages In directory sc8-pr-cvs1:/tmp/cvs-serv3930/languages Modified Files: portuguese.inc.php Log Message: 0.9.1 language include. Index: portuguese.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/portuguese.inc.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** portuguese.inc.php 19 Feb 2003 22:46:03 -0000 1.8 --- portuguese.inc.php 24 Feb 2003 19:01:22 -0000 1.9 *************** *** 59,73 **** $rss_week_date = '%e %b'; // Lists just the day $rss_month_date = '%e %b'; // Lists just the day ! $search_took_lang = 'A procura demorou %s segundos'; ! $recurring_event_lang = 'Evento de retorno'; ! $exception_lang = 'Excecao'; ! $no_query_lang = 'Nenhuma procura dada'; ! $preferences_lang = 'Preferencias'; ! $printer_lang = 'Impressora'; ! $select_lang_lang = 'Escolha a sua linguagem por defeito:'; ! $select_cal_lang = 'Escolha o seu calendário base:'; ! $select_view_lang = 'Selecione a sua vista por defeito :'; ! $select_time_lang = 'Selecione a sua hora de inicio:'; ! $select_day_lang = 'Selecione o seu dia de inicio da semana:'; $select_style_lang = 'Selecione o seu estilo por defeito:'; $set_prefs_lang = 'Ajuste preferencias'; --- 59,73 ---- $rss_week_date = '%e %b'; // Lists just the day $rss_month_date = '%e %b'; // Lists just the day ! $search_took_lang = 'A procura demorou %s segundos'; ! $recurring_event_lang = 'Evento de retorno'; ! $exception_lang = 'Excecao'; ! $no_query_lang = 'Nenhuma procura dada'; ! $preferences_lang = 'Preferencias'; ! $printer_lang = 'Impressora'; ! $select_lang_lang = 'Escolha a sua linguagem por defeito:'; ! $select_cal_lang = 'Escolha o seu calendário base:'; ! $select_view_lang = 'Selecione a sua vista por defeito :'; ! $select_time_lang = 'Selecione a sua hora de inicio:'; ! $select_day_lang = 'Selecione o seu dia de inicio da semana:'; $select_style_lang = 'Selecione o seu estilo por defeito:'; $set_prefs_lang = 'Ajuste preferencias'; *************** *** 87,102 **** // ----- New for 0.9.1 ! $prefs_set_lang = 'Your preferences have been set.'; ! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; ! $unset_prefs_lang = 'Unset preferences:'; // - navigation ! $back_lang = 'Back'; ! $next_lang = 'Next'; ! $prev_lang = 'Prev'; ! $day_view_lang = 'Day View'; ! $week_view_lang = 'Week View'; ! $month_view_lang = 'Month View'; ! $year_view_lang = 'Year View'; // --------------------------------- --- 87,102 ---- // ----- New for 0.9.1 ! $prefs_set_lang = 'A suas preferencias foram aplicadas.'; ! $prefs_unset_lang = 'Preferencias retiradas. Alteracoes aparecerao nas proxinas paginas.'; ! $unset_prefs_lang = 'Retirar preferencias:'; // - navigation ! $back_lang = 'Anterior'; ! $next_lang = 'Seguinte'; ! $prev_lang = 'Ver '; ! $day_view_lang = 'Ver Dia'; ! $week_view_lang = 'Ver Semana'; ! $month_view_lang = 'Ver Mes'; ! $year_view_lang = 'Ver Ano'; // --------------------------------- |
|
From: <cl...@us...> - 2003-02-24 17:20:08
|
Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv22814
Modified Files:
config.inc.php preferences.php
Log Message:
Fixed a bug where preferences set to no would still allow prefs to be set.
Index: config.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v
retrieving revision 1.96
retrieving revision 1.97
diff -C2 -d -r1.96 -r1.97
*** config.inc.php 18 Feb 2003 21:19:16 -0000 1.96
--- config.inc.php 24 Feb 2003 17:20:00 -0000 1.97
***************
*** 39,44 ****
$daysofweek_dayview = 'no'; // Display the days of the week in day.php view.
$enable_rss = 'yes'; // Enable RSS access to your calendars (good thing).
! $show_search = 'yes'; // Show the search box in the sidebar.
! $header_always = 'no'; // Set to yes to have header on print.php
$allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies.
$printview_default = 'no'; // Set print view as the default view. day, week, and month only supported views for $default_view (listed well above).
--- 39,44 ----
$daysofweek_dayview = 'no'; // Display the days of the week in day.php view.
$enable_rss = 'yes'; // Enable RSS access to your calendars (good thing).
! $show_search = 'no'; // Show the search box in the sidebar.
! $header_always = 'yes'; // Set to yes to have header on print.php
$allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies.
$printview_default = 'no'; // Set print view as the default view. day, week, and month only supported views for $default_view (listed well above).
Index: preferences.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** preferences.php 17 Feb 2003 22:02:17 -0000 1.24
--- preferences.php 24 Feb 2003 17:20:01 -0000 1.25
***************
*** 1,7 ****
<?php
if ($cookie_uri == '') {
$cookie_uri = $HTTP_SERVER_VARS['SERVER_NAME'].substr($HTTP_SERVER_VARS['PHP_SELF'],0,strpos($HTTP_SERVER_VARS['PHP_SELF'], '/'));
}
- define('BASE','./');
$current_view = "preferences";
$default_view = "$default_view" . ".php";
--- 1,10 ----
<?php
+
+ define('BASE','./');
+ include(BASE.'functions/ical_parser.php');
+
if ($cookie_uri == '') {
$cookie_uri = $HTTP_SERVER_VARS['SERVER_NAME'].substr($HTTP_SERVER_VARS['PHP_SELF'],0,strpos($HTTP_SERVER_VARS['PHP_SELF'], '/'));
}
$current_view = "preferences";
$default_view = "$default_view" . ".php";
***************
*** 43,47 ****
#print_r(unserialize($HTTP_COOKIE_VARS['phpicalendar']));
#print_r($phpicalendar);
! include(BASE.'functions/ical_parser.php');
if ((!isset($HTTP_COOKIE_VARS['phpicalendar'])) || ($cookie_unset)) {
--- 46,50 ----
#print_r(unserialize($HTTP_COOKIE_VARS['phpicalendar']));
#print_r($phpicalendar);
!
if ((!isset($HTTP_COOKIE_VARS['phpicalendar'])) || ($cookie_unset)) {
|
|
From: <cl...@us...> - 2003-02-22 00:01:37
|
Update of /cvsroot/phpicalendar/phpicalendar/languages
In directory sc8-pr-cvs1:/tmp/cvs-serv19872/languages
Modified Files:
danish.inc.php dutch.inc.php finnish.inc.php french.inc.php
italian.inc.php norwegian.inc.php polish.inc.php
spanish.inc.php swedish.inc.php traditional_chinese.inc.php
Log Message:
0.9.1 Translated files.
Index: danish.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/danish.inc.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** danish.inc.php 19 Feb 2003 22:46:02 -0000 1.20
--- danish.inc.php 22 Feb 2003 00:01:32 -0000 1.21
***************
*** 4,9 ****
// For version 0.9.1 PHP iCalendar
//
! // Translation by Henrik H¿jmark (st...@wo...)
! // and Jakob Peterhnsel (ma...@cr...)
//
// Submit new translations to ch...@ch...
--- 4,9 ----
// For version 0.9.1 PHP iCalendar
//
! // Translation by Henrik H�jmark (st...@wo...)
! // and Jakob Peterh�nsel (ma...@cr...)
//
// Submit new translations to ch...@ch...
***************
*** 88,103 ****
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
$unset_prefs_lang = 'Unset preferences:';
// - navigation
! $back_lang = 'Back';
! $next_lang = 'Next';
! $prev_lang = 'Prev';
! $day_view_lang = 'Day View';
! $week_view_lang = 'Week View';
! $month_view_lang = 'Month View';
! $year_view_lang = 'Year View';
// ---------------------------------
--- 88,103 ----
// ----- New for 0.9.1
! $prefs_set_lang = 'Dine indstillinger er gemt.'; //Your preferences have been set.
! $prefs_unset_lang = 'Indstillinger fjernet. Ændringer er synlig ved næste sidevisning.'; //Preferences unset. Changes will take place next page load.
$unset_prefs_lang = 'Unset preferences:';
// - navigation
! $back_lang = 'Tilbage';
! $next_lang = 'Næste';
! $prev_lang = 'Forrige';
! $day_view_lang = 'Vis Dag';
! $week_view_lang = 'Vis Uge';
! $month_view_lang = 'Vis Måned';
! $year_view_lang = 'Vis År';
// ---------------------------------
Index: dutch.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/dutch.inc.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** dutch.inc.php 19 Feb 2003 22:46:03 -0000 1.16
--- dutch.inc.php 22 Feb 2003 00:01:32 -0000 1.17
***************
*** 88,94 ****
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
// - navigation
--- 88,94 ----
// ----- New for 0.9.1
! $prefs_set_lang = 'Uw voorkeuren zijn bewaard.';
! $prefs_unset_lang = 'Voorkeuren niet bewaard. Aanpassingen zijn actief de volgende keer u de pagina laadt.';
! $unset_prefs_lang = 'Niet bewaarde voorkeuren:';
// - navigation
Index: finnish.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/finnish.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** finnish.inc.php 19 Feb 2003 22:46:03 -0000 1.3
--- finnish.inc.php 22 Feb 2003 00:01:32 -0000 1.4
***************
*** 1,171 ****
! <?php
!
! // Finnish language include
! // For version 0.9.1 PHP iCalendar
! //
! // Translation by Kari Somby (kar...@ra...)
! //
! // Submit new translations to ch...@ch...
!
!
!
! $day_lang = 'Päivä';
! $week_lang = 'Viikko';
! $month_lang = 'Kuukausi';
! $year_lang = 'Vuosi';
! $calendar_lang = 'Kalenteri';
! $next_day_lang = 'Seuraava Päivä';
! $next_month_lang = 'Seuraava Kuukausi';
! $next_week_lang = 'Seuraava Viikko';
! $next_year_lang = 'Seuraava Vuosi';
! $last_day_lang = 'Edellinen Päivä';
! $last_month_lang = 'Edellinen Kuukausi';
! $last_week_lang = 'Edellinen Viikko';
! $last_year_lang = 'Edellinen Vuosi';
! $subscribe_lang = 'Tilaa';
! $download_lang = 'Lataa tiedosto';
! $powered_by_lang = 'Powered by';
! $event_lang = 'Tapahtuma';
! $event_start_lang = 'Aloitusaika';
! $event_end_lang = 'Lopetusaika';
! $this_months_lang = 'Tämän Kuukauden tapahtumat';
! $date_lang = 'Päivä';
! $summary_lang = 'Yhteenveto';
! $all_day_lang = 'Koko päivän tapahtuma';
! $notes_lang = 'Muistiinpanot';
! $this_years_lang = 'Tämän Vuoden tapahtumat';
! $today_lang = 'Today';
! $this_week_lang = 'Tämä Viikko';
! $this_month_lang = 'Tämä Kuukausi';
! $jump_lang = 'Siirry';
! $tomorrows_lang = 'Huomisen Tapahtumat';
! $goday_lang = 'Mene Tähän Päivään';
! $goweek_lang = 'Mene Tähän Viikkoon';
! $gomonth_lang = 'Mene Tähän Kuukauteen';
! $goyear_lang = 'Mene Tähän Vuoteen';
! $search_lang = 'Etsi'; // the verb
! $results_lang = 'Etsinnän Tulokset';
! $query_lang = 'Kysely'; // will be followed by the search query
! $no_results_lang = 'Tapahtumia ei löytynyt';
! $goprint_lang = 'Tulostettava versio';
! $time_lang = 'Aika';
! $summary_lang = 'Yhteenveto';
! $description_lang = 'Selitys';
! $this_site_is_lang = 'Tämä sivusto on';
! $no_events_day_lang = 'Ei tapahtumia tänään.';
! $no_events_week_lang = 'Ei tapahtumia tällä viikolla.';
! $no_events_month_lang = 'Ei tapahtumia tässä kuussa.';
! $rss_day_date = 'g:i A'; // Lists just the time
! $rss_week_date = '%b %e'; // Lists just the day
! $rss_month_date = '%b %e'; // Lists just the day
! $rss_language = 'fi-fi';
! $search_took_lang = 'Etsimiseen meni %s sekuntia';
! $recurring_event_lang = 'Toistuva tapahtuma';
! $exception_lang = 'Poikkeus';
! $no_query_lang = 'Kyselyä ei annettu';
! $preferences_lang = 'Preferences';
! $printer_lang = 'Printer';
! $select_lang_lang = 'Select your default language:';
! $select_cal_lang = 'Select your default calendar:';
! $select_view_lang = 'Select your default view:';
! $select_time_lang = 'Select your default start time:';
! $select_day_lang = 'Select your default start day of week:';
! $select_style_lang = 'Select your default style:';
! $set_prefs_lang = 'Set preferences';
! $completed_date_lang = 'Completed on';
! $completed_lang = 'Completed';
! $created_lang = 'Created:';
! $due_lang = 'Due:';
! $priority_lang = 'Priority:';
! $priority_high_lang = 'High';
! $priority_low_lang = 'Low';
! $priority_medium_lang = 'Medium';
! $priority_none_lang = 'None';
! $status_lang = 'Status:';
! $todo_lang = 'To do items';
! $unfinished_lang = 'Unfinished';
!
! // ----- New for 0.9.1
!
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
!
! // - navigation
! $back_lang = 'Back';
! $next_lang = 'Next';
! $prev_lang = 'Prev';
! $day_view_lang = 'Day View';
! $week_view_lang = 'Week View';
! $month_view_lang = 'Month View';
! $year_view_lang = 'Year View';
!
! // ---------------------------------
!
! // $format_recur, items enclosed in % will be substituted with variables
! $format_recur_lang['delimiter'] = ', '; // ie, 'one, two, three'
!
! $format_recur_lang['yearly'] = array('vuosi','vuotta'); // for these, put singular
! $format_recur_lang['monthly'] = array('kuukausi','kuukautta'); // and plural forms
! $format_recur_lang['weekly'] = array('viikko','viikkoa'); // these will be %freq%
! $format_recur_lang['daily'] = array('päivä','päivää'); // in the replacement below
! $format_recur_lang['hourly'] = array('tunti','tuntia');
! $format_recur_lang['minutely'] = array('minuutti','minuuttia');
! $format_recur_lang['secondly'] = array('sekuntti','sekunttia');
!
! $format_recur_lang['start'] = 'Joka %int% %freq% %for%'; // ie, 'Every 1 day until January 4' or 'Every 1 day for a count of 5'
! $format_recur_lang['until'] = '%date% asti'; // ie, 'until January 4'
! $format_recur_lang['count'] = '%int% kertaa'; // ie, 'for 5 times'
!
! $format_recur_lang['bymonth'] = 'Kuukaudet: %list%'; // ie, 'In months: January, February, March'
! $format_recur_lang['bymonthday'] = 'Päivät: %list%'; // ie, 'On dates: 1, 2, 3, 4'
! $format_recur_lang['byday'] = 'Viikonpäivät: %list%'; // ie, 'On days: Mon, Tues, Wed, Thurs'
!
! // ---------------------------------
!
! $daysofweek_lang = array ('Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai');
! $daysofweekshort_lang = array ('Su','Ma','Ti','Ke','To','Pe','La');
! $daysofweekreallyshort_lang = array ('S','M','T','K','T','P','L');
! $monthsofyear_lang = array ('Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu','Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu');
! $monthsofyearshort_lang = array ('Tammi','Helmi','Maalis','Huhti','Touko','Kesä','Heinä','Elo','Syys','Loka','Marras','Joulu');
!
! // For time formatting, check out: http://www.php.net/manual/en/function.date.php
! //$timeFormat = 'g:i A';
! $timeFormat = 'H:i';
! $timeFormat_small = 'g:i';
!
! // For date formatting, see note below
! $dateFormat_day = '%A, %e %Bta';
! $dateFormat_week = '%e %B';
! $dateFormat_week_list = '%a, %e %b';
! $dateFormat_week_jump = '%b %e';
! $dateFormat_month = '%B %Y';
! $dateFormat_month_list = '%A, %B %e';
!
! /*
! Notes about dateFormat_*
! The pieces are similar to that of the PHP function strftime(),
! however only the following is supported at this time:
!
! %A - the full week day name as specified in $daysofweek_lang
! %a - the shortened week day name as specified in $daysofweekshort_lang
! %B - the full month name as specified in $monthsofyear_lang
! %b - the shortened month name as specified in $monthsofyearshort_lang
! %e - the day of the month as a decimal number (1 to 31)
! %Y - the 4-digit year
!
! If this causes problems with representing your language accurately, let
! us know. We will be happy to modify this if needed.
! */
!
! // Error messages - %s will be replaced with a variable
! $error_title_lang = 'Virhe!';
! $error_window_lang = 'Tapahtui virhe!';
! $error_calendar_lang = 'Kalenteria "%s" käsiteltiin virheen sattuessa.';
! $error_path_lang = 'Polkua: "%s" ei voi avata';
! $error_back_lang = 'Ole hyvä ja käytä "Takaisin" nappia palataksesi takaisin.';
! $error_remotecal_lang = 'Tämä palvelin sallii vain hyväksyttyjen etäkalentereiden käytön.';
! $error_restrictedcal_lang = 'Yritit käyttää kalenteria, jonka käyttö on rajoitettu.';
! $error_invalidcal_lang = 'Ei kelvollinen kalenterin nimi. Ole hyvä ja yritä toista kalenteria.';
!
! ?>
--- 1,173 ----
! <?php
!
! // Finnish language include
! // For version 0.9 PHP iCalendar
! //
! // Translation by Kari Somby (kar...@ra...)
! //
! // Submit new translations to ch...@ch...
!
!
!
! $day_lang = 'Päivä';
! $week_lang = 'Viikko';
! $month_lang = 'Kuukausi';
! $year_lang = 'Vuosi';
! $calendar_lang = 'Kalenteri';
! $next_day_lang = 'Seuraava Päivä';
! $next_month_lang = 'Seuraava Kuukausi';
! $next_week_lang = 'Seuraava Viikko';
! $next_year_lang = 'Seuraava Vuosi';
! $last_day_lang = 'Edellinen Päivä';
! $last_month_lang = 'Edellinen Kuukausi';
! $last_week_lang = 'Edellinen Viikko';
! $last_year_lang = 'Edellinen Vuosi';
! $subscribe_lang = 'Tilaa';
! $download_lang = 'Lataa tiedosto';
! $powered_by_lang = 'Powered by';
! $event_lang = 'Tapahtuma';
! $event_start_lang = 'Aloitusaika';
! $event_end_lang = 'Lopetusaika';
! $this_months_lang = 'Tämän Kuukauden tapahtumat';
! $date_lang = 'Päivä';
! $summary_lang = 'Yhteenveto';
! $all_day_lang = 'Koko päivän tapahtuma';
! $notes_lang = 'Muistiinpanot';
! $this_years_lang = 'Tämän Vuoden tapahtumat';
! $today_lang = 'Today';
! $this_week_lang = 'Tämä Viikko';
! $this_month_lang = 'Tämä Kuukausi';
! $jump_lang = 'Siirry';
! $tomorrows_lang = 'Huomisen Tapahtumat';
! $goday_lang = 'Mene Tähän Päivään';
! $goweek_lang = 'Mene Tähän Viikkoon';
! $gomonth_lang = 'Mene Tähän Kuukauteen';
! $goyear_lang = 'Mene Tähän Vuoteen';
! $search_lang = 'Etsi'; // the verb
! $results_lang = 'Etsinnän Tulokset';
! $query_lang = 'Kysely'; // will be followed by the search query
! $no_results_lang = 'Tapahtumia ei löytynyt';
! $goprint_lang = 'Tulostettava versio';
! $time_lang = 'Aika';
! $summary_lang = 'Yhteenveto';
! $description_lang = 'Selitys';
! $this_site_is_lang = 'Tämä sivusto on';
! $no_events_day_lang = 'Ei tapahtumia tänään.';
! $no_events_week_lang = 'Ei tapahtumia tällä viikolla.';
! $no_events_month_lang = 'Ei tapahtumia tässä kuussa.';
! $rss_day_date = 'g:i A'; // Lists just the time
! $rss_week_date = '%b %e'; // Lists just the day
! $rss_month_date = '%b %e'; // Lists just the day
! $rss_language = 'fi-fi';
! $search_took_lang = 'Etsimiseen meni %s sekuntia';
! $recurring_event_lang = 'Toistuva tapahtuma';
! $exception_lang = 'Poikkeus';
! $no_query_lang = 'Kyselyä ei annettu';
! $preferences_lang = 'Ominaisuudet';
! $printer_lang = 'Tulostin';
! $select_lang_lang = 'Valitse oletuskieli:';
! $select_cal_lang = 'Valitse oletuskalenteri:';
! $select_view_lang = 'Valitse oletusnäkymä:';
! $select_time_lang = 'Valitse oletusaloitusaika:';
! $select_day_lang = 'Valitse oletusaloituspäivä viikolle:';
! $select_style_lang = 'Valitse oletustyyli:';
! $set_prefs_lang = 'Aseta ominaisuudet';
! $completed_date_lang = 'Valmistuu';
! $completed_lang = 'Valmis';
! $created_lang = 'Luotu:';
! $due_lang = 'Erääntyy:';
! $priority_lang = 'Tärkeys:';
! $priority_high_lang = 'Korkea';
! $priority_low_lang = 'Matala';
! $priority_medium_lang = 'Keski';
! $priority_none_lang = 'Ei mitään';
! $status_lang = 'Tila:';
! $todo_lang = 'Tehtävät:';
! $unfinished_lang = 'Päättymättömät';
!
!
! // ----- New for 0.9.1
!
! $prefs_set_lang = 'Asetukset päivitetty';
! $prefs_unset_lang = 'Asetuksia ei päivitetty. Muutokset päivitetään seuraavan sivun ladattua';
! $unset_prefs_lang = 'Asetukset peruttu';
!
! // - navigation
! $back_lang = 'Takaisin';
! $next_lang = 'Seuraava';
! $prev_lang = 'Edellinen';
! $day_view_lang = 'Päivänäkymä';
! $week_view_lang = 'Viikkonäkymä';
! $month_view_lang = 'Kuukausinäkymä';
! $year_view_lang = 'Vuosinäkymä';
!
! // ---------------------------------
!
!
!
!
! // $format_recur, items enclosed in % will be substituted with variables
! $format_recur_lang['delimiter'] = ', '; // ie, 'one, two, three'
!
! $format_recur_lang['yearly'] = array('vuosi','vuotta'); // for these, put singular
! $format_recur_lang['monthly'] = array('kuukausi','kuukautta'); // and plural forms
! $format_recur_lang['weekly'] = array('viikko','viikkoa'); // these will be %freq%
! $format_recur_lang['daily'] = array('päivä','päivää'); // in the replacement below
! $format_recur_lang['hourly'] = array('tunti','tuntia');
! $format_recur_lang['minutely'] = array('minuutti','minuuttia');
! $format_recur_lang['secondly'] = array('sekuntti','sekunttia');
!
! $format_recur_lang['start'] = 'Joka %int% %freq% %for%'; // ie, 'Every 1 day until January 4' or 'Every 1 day for a count of 5'
! $format_recur_lang['until'] = '%date% asti'; // ie, 'until January 4'
! $format_recur_lang['count'] = '%int% kertaa'; // ie, 'for 5 times'
!
! $format_recur_lang['bymonth'] = 'Kuukaudet: %list%'; // ie, 'In months: January, February, March'
! $format_recur_lang['bymonthday'] = 'Päivät: %list%'; // ie, 'On dates: 1, 2, 3, 4'
! $format_recur_lang['byday'] = 'Viikonpäivät: %list%'; // ie, 'On days: Mon, Tues, Wed, Thurs'
!
! $daysofweek_lang = array ('Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai');
! $daysofweekshort_lang = array ('Su','Ma','Ti','Ke','To','Pe','La');
! $daysofweekreallyshort_lang = array ('S','M','T','K','T','P','L');
! $monthsofyear_lang = array ('Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu','Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu');
! $monthsofyearshort_lang = array ('Tammi','Helmi','Maalis','Huhti','Touko','Kesä','Heinä','Elo','Syys','Loka','Marras','Joulu');
!
! // For time formatting, check out: http://www.php.net/manual/en/function.date.php
! //$timeFormat = 'g:i A';
! $timeFormat = 'H:i';
! $timeFormat_small = 'g:i';
!
! // For date formatting, see note below
! $dateFormat_day = '%A, %e %Bta';
! $dateFormat_week = '%e %B';
! $dateFormat_week_list = '%a, %e %b';
! $dateFormat_week_jump = '%b %e';
! $dateFormat_month = '%B %Y';
! $dateFormat_month_list = '%A, %B %e';
!
! /*
! Notes about dateFormat_*
! The pieces are similar to that of the PHP function strftime(),
! however only the following is supported at this time:
!
! %A - the full week day name as specified in $daysofweek_lang
! %a - the shortened week day name as specified in $daysofweekshort_lang
! %B - the full month name as specified in $monthsofyear_lang
! %b - the shortened month name as specified in $monthsofyearshort_lang
! %e - the day of the month as a decimal number (1 to 31)
! %Y - the 4-digit year
!
! If this causes problems with representing your language accurately, let
! us know. We will be happy to modify this if needed.
! */
!
! // Error messages - %s will be replaced with a variable
! $error_title_lang = 'Virhe!';
! $error_window_lang = 'Tapahtui virhe!';
! $error_calendar_lang = 'Kalenteria "%s" käsiteltiin virheen sattuessa.';
! $error_path_lang = 'Polkua: "%s" ei voi avata';
! $error_back_lang = 'Ole hyvä ja käytä "Takaisin" nappia palataksesi takaisin.';
! $error_remotecal_lang = 'Tämä palvelin sallii vain hyväksyttyjen etäkalentereiden käytön.';
! $error_restrictedcal_lang = 'Yritit käyttää kalenteria, jonka käyttö on rajoitettu.';
! $error_invalidcal_lang = 'Ei kelvollinen kalenterin nimi. Ole hyvä ja yritä toista kalenteria.';
!
! ?>
Index: french.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/french.inc.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** french.inc.php 19 Feb 2003 22:46:03 -0000 1.19
--- french.inc.php 22 Feb 2003 00:01:32 -0000 1.20
***************
*** 86,103 ****
$unfinished_lang = 'Non faites';
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
- // - navigation
- $back_lang = 'Back';
- $next_lang = 'Next';
- $prev_lang = 'Prev';
- $day_view_lang = 'Day View';
- $week_view_lang = 'Week View';
- $month_view_lang = 'Month View';
- $year_view_lang = 'Year View';
// ---------------------------------
--- 86,104 ----
$unfinished_lang = 'Non faites';
+ // - navigation
+ $back_lang = 'Retour';
+ $next_lang = 'Suivant';
+ $prev_lang = 'Précédent';
+ $day_view_lang = 'Vue Journaliere';
+ $week_view_lang = 'Vue Hebdomadaire';
+ $month_view_lang = 'Vue Mensuelle';
+ $year_view_lang = 'Vue Annuelle';
+
// ----- New for 0.9.1
! $prefs_set_lang = 'Vos préférences ont été enregistrées';
! $prefs_unset_lang = 'Préférences non définies. Les Changements seront pris en compte au prochain chargement de la page.';
! $unset_prefs_lang = 'Préférences non définies:';
// ---------------------------------
Index: italian.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/italian.inc.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** italian.inc.php 19 Feb 2003 22:46:03 -0000 1.20
--- italian.inc.php 22 Feb 2003 00:01:32 -0000 1.21
***************
*** 89,104 ****
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
// - navigation
! $back_lang = 'Back';
! $next_lang = 'Next';
! $prev_lang = 'Prev';
! $day_view_lang = 'Day View';
! $week_view_lang = 'Week View';
! $month_view_lang = 'Month View';
! $year_view_lang = 'Year View';
// ---------------------------------
--- 89,104 ----
// ----- New for 0.9.1
! $prefs_set_lang = 'Le tue preferenze sono state registrate.';
! $prefs_unset_lang = 'Preferenze non impostate. Le modifiche avranno effetto al caricamento della prossima pagina.';
! $unset_prefs_lang = 'Preferenze non impostate:';
// - navigation
! $back_lang = 'Indietro';
! $next_lang = 'Avanti';
! $prev_lang = 'Precedente';
! $day_view_lang = 'Vista giornaliera';
! $week_view_lang = 'Vista settimanale';
! $month_view_lang = 'Vista mensile';
! $year_view_lang = 'Vista annuale';
// ---------------------------------
Index: norwegian.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/norwegian.inc.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** norwegian.inc.php 19 Feb 2003 22:46:03 -0000 1.20
--- norwegian.inc.php 22 Feb 2003 00:01:33 -0000 1.21
***************
*** 87,102 ****
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
// - navigation
! $back_lang = 'Back';
! $next_lang = 'Next';
! $prev_lang = 'Prev';
! $day_view_lang = 'Day View';
! $week_view_lang = 'Week View';
! $month_view_lang = 'Month View';
! $year_view_lang = 'Year View';
// ---------------------------------
--- 87,102 ----
// ----- New for 0.9.1
! $prefs_set_lang = 'Dine valg er satt.';
! $prefs_unset_lang = 'Valgene er tilbakestilt. Endringene vil vises neste gang siden lastes.';
! $unset_prefs_lang = 'Tilbakestill valgene:';
// - navigation
! $back_lang = 'Tilbake';
! $next_lang = 'Neste';
! $prev_lang = 'Forrige';
! $day_view_lang = 'Dagvisning';
! $week_view_lang = 'Ukesvisning';
! $month_view_lang = 'Månedsvisning';
! $year_view_lang = 'Årvisning';
// ---------------------------------
***************
*** 105,123 ****
$format_recur_lang['delimiter'] = ', '; // ie, 'one, two, three'
! $format_recur_lang['yearly'] = array('year','years'); // for these, put singular
! $format_recur_lang['monthly'] = array('month','months'); // and plural forms
! $format_recur_lang['weekly'] = array('week','weeks'); // these will be %freq%
! $format_recur_lang['daily'] = array('day','days'); // in the replacement below
! $format_recur_lang['hourly'] = array('hour','hours');
! $format_recur_lang['minutely'] = array('minute','minutes');
! $format_recur_lang['secondly'] = array('second','seconds');
! $format_recur_lang['start'] = 'Every %int% %freq% %for%'; // ie, 'Every 1 day until January 4' or 'Every 1 day for a count of 5'
! $format_recur_lang['until'] = 'until %date%'; // ie, 'until January 4'
! $format_recur_lang['count'] = 'for a count of %int%'; // ie, 'for 5 times'
! $format_recur_lang['bymonth'] = 'In months: %list%'; // ie, 'In months: January, February, March'
! $format_recur_lang['bymonthday'] = 'On dates: %list%'; // ie, 'On dates: 1, 2, 3, 4'
! $format_recur_lang['byday'] = 'On days: %list%'; // ie, 'On days: Mon, Tues, Wed, Thurs'
// ---------------------------------
--- 105,123 ----
$format_recur_lang['delimiter'] = ', '; // ie, 'one, two, three'
! $format_recur_lang['yearly'] = array('år','årlig'); // for these, put singular
! $format_recur_lang['monthly'] = array('måned','måneder'); // and plural forms
! $format_recur_lang['weekly'] = array('uke','uker'); // these will be %freq%
! $format_recur_lang['daily'] = array('dag','dager'); // in the replacement below
! $format_recur_lang['hourly'] = array('time','timer');
! $format_recur_lang['minutely'] = array('minutt','minutter');
! $format_recur_lang['secondly'] = array('sekund','sekunder');
! $format_recur_lang['start'] = 'Hver %int% %freq% %for%'; // ie, 'Every 1 day until January 4' or 'Every 1 day for a count of 5'
! $format_recur_lang['until'] = 'til %date%'; // ie, 'until January 4'
! $format_recur_lang['count'] = 'for et antall av %int%'; // ie, 'for 5 times'
! $format_recur_lang['bymonth'] = 'I mneder: %list%'; // ie, 'In months: January, February, March'
! $format_recur_lang['bymonthday'] = 'P datoene: %list%'; // ie, 'On dates: 1, 2, 3, 4'
! $format_recur_lang['byday'] = 'P dagene: %list%'; // ie, 'On days: Mon, Tues, Wed, Thurs'
// ---------------------------------
Index: polish.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/polish.inc.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** polish.inc.php 19 Feb 2003 22:46:03 -0000 1.20
--- polish.inc.php 22 Feb 2003 00:01:33 -0000 1.21
***************
*** 4,8 ****
// For version 0.9.1 PHP iCalendar
//
! // Translation by Stanislaw Cieslicki (st...@po...)
//
// Submit new translations to ch...@ch...
--- 4,8 ----
// For version 0.9.1 PHP iCalendar
//
! // Translation by StanisÅaw CieÅlicki (st...@po...)
//
// Submit new translations to ch...@ch...
***************
*** 88,94 ****
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
// - navigation
--- 88,94 ----
// ----- New for 0.9.1
! $prefs_set_lang = 'Twoje preferencje zostaÅy ustawione.';
! $prefs_unset_lang = 'Preferencje przywrócone. Zmiany bÄdÄ
widoczne po ponownym zaÅadowaniu strony.';
! $unset_prefs_lang = 'PrzywrÃ³Ä preferencje:';
// - navigation
Index: spanish.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/spanish.inc.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** spanish.inc.php 19 Feb 2003 22:46:03 -0000 1.10
--- spanish.inc.php 22 Feb 2003 00:01:33 -0000 1.11
***************
*** 86,101 ****
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
// - navigation
! $back_lang = 'Back';
! $next_lang = 'Next';
! $prev_lang = 'Prev';
! $day_view_lang = 'Day View';
! $week_view_lang = 'Week View';
! $month_view_lang = 'Month View';
! $year_view_lang = 'Year View';
// ---------------------------------
--- 86,101 ----
// ----- New for 0.9.1
! $prefs_set_lang = 'Sus preferencias han sido activadas.';
! $prefs_unset_lang = 'Preferencias no activas. Los cambios se activaran al recargar la página.';
! $unset_prefs_lang = 'Preferencias sin activar:';
// - navigation
! $back_lang = 'Atrás';
! $next_lang = 'Siguiente';
! $prev_lang = 'Anterior';
! $day_view_lang = 'Vista diaria';
! $week_view_lang = 'Vista semanal';
! $month_view_lang = 'Vista mensual';
! $year_view_lang = 'Vista anual';
// ---------------------------------
Index: swedish.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/swedish.inc.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
Binary files /tmp/cvsGlcGoL and /tmp/cvsEfmKqm differ
Index: traditional_chinese.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/languages/traditional_chinese.inc.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** traditional_chinese.inc.php 19 Feb 2003 22:46:04 -0000 1.2
--- traditional_chinese.inc.php 22 Feb 2003 00:01:33 -0000 1.3
***************
*** 88,94 ****
// ----- New for 0.9.1
! $prefs_set_lang = 'Your preferences have been set.';
! $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.';
! $unset_prefs_lang = 'Unset preferences:';
// - navigation
--- 88,94 ----
// ----- New for 0.9.1
! $prefs_set_lang = 'æ¨çå好è¨å®å·²è¨å®ã';
! $prefs_unset_lang = 'è¨å®å·²éåãæ´åçé¨ä»½æå¨è®åä¸ä¸é æçæã';
! $unset_prefs_lang = 'éåè¨å®:';
// - navigation
***************
*** 161,167 ****
$error_calendar_lang = 'èçè¡äºæ "%s" æç¼çæ¤é¯èª¤ã';
$error_path_lang = 'ç¡æ³éåæ¤è·¯å¾: "%s"';
! $error_back_lang = 'è«ä½¿ç¨ "åå»" æééå.';
$error_remotecal_lang = 'æ¬ä¼ºæå¨ææææªç¶å¯©æ ¸çé 端è¡äºæã';
! $error_restrictedcal_lang = 'æ¨è©¦ååå被æ¬ä¼ºæå¨éå¶ä½¿ç¨çè¡äºæã';
$error_invalidcal_lang = 'é¯èª¤çè¡äºææªæ¡ãè«æä¸åè¡äºæè©¦è©¦ã';
--- 161,167 ----
$error_calendar_lang = 'èçè¡äºæ "%s" æç¼çæ¤é¯èª¤ã';
$error_path_lang = 'ç¡æ³éåæ¤è·¯å¾: "%s"';
! $error_back_lang = 'è«ä½¿ç¨ "åå»" æééåã';
$error_remotecal_lang = 'æ¬ä¼ºæå¨ææææªç¶å¯©æ ¸çé 端è¡äºæã';
! $error_restrictedcal_lang = 'æ¨è©¦ååå被æ¬ä¼ºæå¨æéå¶ä½¿ç¨çè¡äºæã';
$error_invalidcal_lang = 'é¯èª¤çè¡äºææªæ¡ãè«æä¸åè¡äºæè©¦è©¦ã';
|
|
From: <cl...@us...> - 2003-02-19 22:46:35
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv9845/includes Modified Files: footer.inc.php Log Message: Added 0.9.1 text to all the language files. Index: footer.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** footer.inc.php 16 Feb 2003 20:25:21 -0000 1.3 --- footer.inc.php 19 Feb 2003 22:45:59 -0000 1.4 *************** *** 1,5 **** <?php ! echo "<center><font class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.1 CVS</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; --- 1,5 ---- <?php ! echo "<center><font class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.1</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; |
Update of /cvsroot/phpicalendar/phpicalendar/languages In directory sc8-pr-cvs1:/tmp/cvs-serv9845/languages Modified Files: brazilian.inc.php catalan.inc.php czech.inc.php danish.inc.php dutch.inc.php finnish.inc.php french.inc.php german.inc.php italian.inc.php japanese.inc.php norwegian.inc.php polish.inc.php portuguese.inc.php spanish.inc.php swedish.inc.php traditional_chinese.inc.php Log Message: Added 0.9.1 text to all the language files. Index: brazilian.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/brazilian.inc.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** brazilian.inc.php 30 Nov 2002 22:05:52 -0000 1.2 --- brazilian.inc.php 19 Feb 2003 22:46:00 -0000 1.3 *************** *** 2,6 **** // Brazilian Portuguese language include ! // For version 0.9 PHP iCalendar // // Translation by Wilton, Bennet (su...@be...) --- 2,6 ---- // Brazilian Portuguese language include ! // For version 0.9.1 PHP iCalendar // // Translation by Wilton, Bennet (su...@be...) *************** *** 60,66 **** $rss_month_date = '%b %e'; // Lists just the day $rss_language = 'en-us'; - - // new in 0.9 ---------------------- - $search_took_lang = 'Search took %s seconds'; $recurring_event_lang = 'Recurring event'; --- 60,63 ---- *************** *** 88,91 **** --- 85,105 ---- $todo_lang = 'To do items'; $unfinished_lang = 'Unfinished'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: catalan.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/catalan.inc.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** catalan.inc.php 18 Feb 2003 21:19:17 -0000 1.1 --- catalan.inc.php 19 Feb 2003 22:46:01 -0000 1.2 *************** *** 2,6 **** // Catalan language include ! // For version 0.9 PHP iCalendar // // Translation by Oriol Ferrer Mesia; (tm...@sa...) --- 2,6 ---- // Catalan language include ! // For version 0.9.1 PHP iCalendar // // Translation by Oriol Ferrer Mesia; (tm...@sa...) *************** *** 58,64 **** $rss_month_date = '%e de %b'; // Lists just the day $rss_language = 'en-us'; - - // new in 0.9 ---------------------- - $search_took_lang = 'La cerca ha trigat %s segons'; $recurring_event_lang = 'Event periòdic'; --- 58,61 ---- *************** *** 86,89 **** --- 83,103 ---- $todo_lang = 'Pendent'; $unfinished_lang = 'Sense acabar'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: czech.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/czech.inc.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** czech.inc.php 8 Dec 2002 21:20:00 -0000 1.2 --- czech.inc.php 19 Feb 2003 22:46:02 -0000 1.3 *************** *** 2,6 **** // Czech language include ! // For version 0.9 PHP iCalendar // // Translation by Whit, studio jižák (wh...@st...) --- 2,6 ---- // Czech language include ! // For version 0.9.1 PHP iCalendar // // Translation by Whit, studio jižák (wh...@st...) *************** *** 60,66 **** $rss_month_date = '%A, %e %B'; // Lists just the day $rss_language = 'cs-cz'; - - // new in 0.9 ---------------------- - $search_took_lang = 'Hledánà trvalo %s vteÅin'; $recurring_event_lang = 'OpakujÃcà se událost'; --- 60,63 ---- *************** *** 88,91 **** --- 85,94 ---- $todo_lang = 'Seznam úkolů'; $unfinished_lang = 'NedokonÄeno'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; // - navigation Index: danish.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/danish.inc.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** danish.inc.php 4 Dec 2002 07:22:02 -0000 1.19 --- danish.inc.php 19 Feb 2003 22:46:02 -0000 1.20 *************** *** 2,6 **** // Danish language include ! // For version 0.9 PHP iCalendar // // Translation by Henrik H¿jmark (st...@wo...) --- 2,6 ---- // Danish language include ! // For version 0.9.1 PHP iCalendar // // Translation by Henrik H¿jmark (st...@wo...) *************** *** 60,66 **** $rss_week_date = '%b %e'; // Lists just the day $rss_month_date = '%b %e'; // Lists just the day - - // new in 0.9 ---------------------- - $search_took_lang = 'Søgningen tog %s sekunder'; $recurring_event_lang = 'Gentagen aftale'; --- 60,63 ---- *************** *** 88,91 **** --- 85,105 ---- $todo_lang = 'Ting der skal gøres'; $unfinished_lang = 'Uafsluttet'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: dutch.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/dutch.inc.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** dutch.inc.php 4 Dec 2002 07:22:02 -0000 1.15 --- dutch.inc.php 19 Feb 2003 22:46:03 -0000 1.16 *************** *** 2,6 **** // Dutch language include ! // For version 0.9 PHP iCalendar // // Translation by Lieven Gekiere (Li...@ge...) --- 2,6 ---- // Dutch language include ! // For version 0.9.1 PHP iCalendar // // Translation by Lieven Gekiere (Li...@ge...) *************** *** 60,66 **** $rss_month_date = '%b %e'; // Lists just the day $rss_language = 'en-us'; - - // new in 0.9 ---------------------- - $search_took_lang = 'Zoeken duurde %s seconden'; $recurring_event_lang = 'Terugkerend evenement'; --- 60,63 ---- *************** *** 88,91 **** --- 85,105 ---- $todo_lang = 'Nog af te werken items'; $unfinished_lang = 'Niet afgewerkt'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: finnish.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/finnish.inc.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** finnish.inc.php 30 Nov 2002 22:05:52 -0000 1.2 --- finnish.inc.php 19 Feb 2003 22:46:03 -0000 1.3 *************** *** 2,6 **** // Finnish language include ! // For version 0.9 PHP iCalendar // // Translation by Kari Somby (kar...@ra...) --- 2,6 ---- // Finnish language include ! // For version 0.9.1 PHP iCalendar // // Translation by Kari Somby (kar...@ra...) *************** *** 60,66 **** $rss_month_date = '%b %e'; // Lists just the day $rss_language = 'fi-fi'; - - // new in 0.9 ---------------------- - $search_took_lang = 'Etsimiseen meni %s sekuntia'; $recurring_event_lang = 'Toistuva tapahtuma'; --- 60,63 ---- *************** *** 88,91 **** --- 85,105 ---- $todo_lang = 'To do items'; $unfinished_lang = 'Unfinished'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: french.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/french.inc.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** french.inc.php 4 Dec 2002 07:22:02 -0000 1.18 --- french.inc.php 19 Feb 2003 22:46:03 -0000 1.19 *************** *** 2,6 **** // French language include ! // For version 0.9 PHP iCalendar // // Translation by La Shampouineuse (in...@la...) --- 2,6 ---- // French language include ! // For version 0.9.1 PHP iCalendar // // Translation by La Shampouineuse (in...@la...) *************** *** 60,66 **** $rss_month_date = '%e %b'; // Lists just the day $rss_language = 'en-us'; - - // new in 0.9 ---------------------- - $search_took_lang = 'La recherche a pris %s secondes'; $recurring_event_lang = 'Événement récurent'; --- 60,63 ---- *************** *** 88,91 **** --- 85,105 ---- $todo_lang = 'Tâches à faire'; $unfinished_lang = 'Non faites'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: german.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/german.inc.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** german.inc.php 4 Dec 2002 07:22:02 -0000 1.20 --- german.inc.php 19 Feb 2003 22:46:03 -0000 1.21 *************** *** 2,6 **** // German language include ! // For version 0.8 PHP iCalendar // // Translation by David Reindl (dr...@an...) --- 2,6 ---- // German language include ! // For version 0.9.1 PHP iCalendar // // Translation by David Reindl (dr...@an...) *************** *** 61,67 **** $rss_month_date = '%e. %b'; // Lists just the day $rss_language = 'en-us'; - - // new in 0.9 ---------------------- - $search_took_lang = 'Suche dauerte %s Sekunden'; $recurring_event_lang = 'Wiederkehrender Eintrag'; --- 61,64 ---- *************** *** 89,92 **** --- 86,106 ---- $todo_lang = 'Aufgaben'; $unfinished_lang = 'Pendent'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: italian.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/italian.inc.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** italian.inc.php 4 Dec 2002 07:22:02 -0000 1.19 --- italian.inc.php 19 Feb 2003 22:46:03 -0000 1.20 *************** *** 2,6 **** // Italian language include ! // For version 0.9 PHP iCalendar // // First translation by Luca Cacciagrano (cl...@cl...) --- 2,6 ---- // Italian language include ! // For version 0.9.1 PHP iCalendar // // First translation by Luca Cacciagrano (cl...@cl...) *************** *** 61,67 **** $rss_month_date = '%e %B'; // Lists just the day $rss_language = 'it-it'; - - // new in 0.9 ---------------------- - $search_took_lang = 'La ricerca ha impiegato %s secondi'; $recurring_event_lang = 'Evento ricorrente'; --- 61,64 ---- *************** *** 89,92 **** --- 86,106 ---- $todo_lang = 'Attività'; $unfinished_lang = 'Non terminato'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: japanese.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/japanese.inc.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** japanese.inc.php 16 Dec 2002 21:04:51 -0000 1.26 --- japanese.inc.php 19 Feb 2003 22:46:03 -0000 1.27 *************** *** 2,6 **** // Japanese language include ! // For version 0.9 PHP iCalendar // // Translation by Jared Wangen (ja...@si...) --- 2,6 ---- // Japanese language include ! // For version 0.9.1 PHP iCalendar // // Translation by Jared Wangen (ja...@si...) *************** *** 55,60 **** $summary_lang = 'çµè¨'; $description_lang = 'ã¡ã¢'; - - // RSS text for 0.8 $this_site_is_lang = 'ãã®ã¦ã§ããµã¤ãã¯%sã§ãã'; $no_events_day_lang = '仿¥ã¯äºå®ãããã¾ããã'; --- 55,58 ---- *************** *** 65,69 **** $rss_month_date = '%b %eæ¥'; // Lists just the day $rss_language = 'ja'; - $search_took_lang = 'æ¤ç´¢ã«%sç§ãããã¾ããã'; $recurring_event_lang = 'å¼ãç¶ãäºå®'; --- 63,66 ---- *************** *** 91,94 **** --- 88,97 ---- $todo_lang = 'åå¿é²'; $unfinished_lang = '宿ããã¦ããªã'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; // - navigation Index: norwegian.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/norwegian.inc.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** norwegian.inc.php 4 Dec 2002 07:22:02 -0000 1.19 --- norwegian.inc.php 19 Feb 2003 22:46:03 -0000 1.20 *************** *** 2,6 **** // Norwegian language include ! // For version 0.9 PHP iCalendar // // Translation by Geir Kielland (gei...@ju...) --- 2,6 ---- // Norwegian language include ! // For version 0.9.1 PHP iCalendar // // Translation by Geir Kielland (gei...@ju...) *************** *** 59,65 **** $rss_week_date = '%b %e'; // Lists just the day $rss_month_date = '%b %e'; // Lists just the day - - // new in 0.9 ---------------------- - $search_took_lang = 'Søket tok %s sekunder'; $recurring_event_lang = 'Repeterende hendelse'; --- 59,62 ---- *************** *** 87,90 **** --- 84,104 ---- $todo_lang = 'Gjøremålsliste'; $unfinished_lang = 'Uferdig'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: polish.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/polish.inc.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** polish.inc.php 4 Dec 2002 07:22:03 -0000 1.19 --- polish.inc.php 19 Feb 2003 22:46:03 -0000 1.20 *************** *** 2,6 **** // Polish language include ! // For version 0.9 PHP iCalendar // // Translation by Stanislaw Cieslicki (st...@po...) --- 2,6 ---- // Polish language include ! // For version 0.9.1 PHP iCalendar // // Translation by Stanislaw Cieslicki (st...@po...) *************** *** 60,66 **** $rss_month_date = '%A, %e %B'; // Lists just the day $rss_language = 'en-us'; - - // new in 0.9 ---------------------- - $search_took_lang = 'Szukanie zajÄÅo %s sekund'; $recurring_event_lang = 'Zadanie rekurencyjne'; --- 60,63 ---- *************** *** 86,93 **** $priority_none_lang = 'Å»aden'; $status_lang = 'Status:'; - $todo_lang = 'Do zrobienia'; $unfinished_lang = 'Niewykonane'; // - navigation $back_lang = 'Back'; --- 83,95 ---- $priority_none_lang = 'Å»aden'; $status_lang = 'Status:'; $todo_lang = 'Do zrobienia'; $unfinished_lang = 'Niewykonane'; + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + // - navigation $back_lang = 'Back'; *************** *** 99,102 **** --- 101,105 ---- $year_view_lang = 'Year View'; + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: portuguese.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/portuguese.inc.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** portuguese.inc.php 4 Dec 2002 21:07:07 -0000 1.7 --- portuguese.inc.php 19 Feb 2003 22:46:03 -0000 1.8 *************** *** 2,6 **** // Portuguese language include ! // For version 0.9 PHP iCalendar // // Translation by Rui Costa (rui...@ub...) --- 2,6 ---- // Portuguese language include ! // For version 0.9.1 PHP iCalendar // // Translation by Rui Costa (rui...@ub...) *************** *** 59,65 **** $rss_week_date = '%e %b'; // Lists just the day $rss_month_date = '%e %b'; // Lists just the day - - // new in 0.9 ---------------------- - $search_took_lang = 'A procura demorou %s segundos'; $recurring_event_lang = 'Evento de retorno'; --- 59,62 ---- *************** *** 87,90 **** --- 84,104 ---- $todo_lang = 'Itens a fazer'; $unfinished_lang = 'Por terminar'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: spanish.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/spanish.inc.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** spanish.inc.php 4 Dec 2002 21:07:10 -0000 1.9 --- spanish.inc.php 19 Feb 2003 22:46:03 -0000 1.10 *************** *** 2,6 **** // Spanish language include ! // For version 0.9 PHP iCalendar // // Translation by Javier Navarro from XIPS (jna...@xi...) --- 2,6 ---- // Spanish language include ! // For version 0.9.1 PHP iCalendar // // Translation by Javier Navarro from XIPS (jna...@xi...) *************** *** 58,64 **** $rss_month_date = '%e de %b'; // Lists just the day $rss_language = 'en-us'; - - // new in 0.9 ---------------------- - $search_took_lang = 'La busqeda tardó %s segundos'; $recurring_event_lang = 'Evento peri&ocaute;dico'; --- 58,61 ---- *************** *** 86,89 **** --- 83,103 ---- $todo_lang = 'Por hacer'; $unfinished_lang = 'Sin terminar'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; + + // - navigation + $back_lang = 'Back'; + $next_lang = 'Next'; + $prev_lang = 'Prev'; + $day_view_lang = 'Day View'; + $week_view_lang = 'Week View'; + $month_view_lang = 'Month View'; + $year_view_lang = 'Year View'; + + // --------------------------------- // $format_recur, items enclosed in % will be substituted with variables Index: swedish.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/swedish.inc.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvsCjmgaV and /tmp/cvsIJYo4F differ Index: traditional_chinese.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/traditional_chinese.inc.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** traditional_chinese.inc.php 18 Feb 2003 21:19:17 -0000 1.1 --- traditional_chinese.inc.php 19 Feb 2003 22:46:04 -0000 1.2 *************** *** 2,6 **** // Trad. Chinese language include ! // For version 0.9 PHP iCalendar // // Translation by Kevin Fyure (di...@ma...) --- 2,6 ---- // Trad. Chinese language include ! // For version 0.9.1 PHP iCalendar // // Translation by Kevin Fyure (di...@ma...) *************** *** 60,66 **** $rss_month_date = '%b %e æ¥'; // Lists just the day $rss_language = 'zh-tw'; - - // new in 0.9 ---------------------- - $search_took_lang = 'æ¬æ¬¡æå°è±å»¢ %s ç§'; $recurring_event_lang = 'éè¤äºä»¶'; --- 60,63 ---- *************** *** 88,91 **** --- 85,94 ---- $todo_lang = 'å¾ è¾¦äºé '; $unfinished_lang = 'å°æªå®æ'; + + // ----- New for 0.9.1 + + $prefs_set_lang = 'Your preferences have been set.'; + $prefs_unset_lang = 'Preferences unset. Changes will take place next page load.'; + $unset_prefs_lang = 'Unset preferences:'; // - navigation |
|
From: <cl...@us...> - 2003-02-18 21:19:20
|
Update of /cvsroot/phpicalendar/phpicalendar/languages
In directory sc8-pr-cvs1:/tmp/cvs-serv14476/languages
Added Files:
catalan.inc.php traditional_chinese.inc.php
Log Message:
Added Catalan and Traditional Chinese to project.
--- NEW FILE: catalan.inc.php ---
<?php
// Catalan language include
// For version 0.9 PHP iCalendar
//
// Translation by Oriol Ferrer Mesia; (tm...@sa...)
$day_lang = "Dia";
$week_lang = "Setmana";
$month_lang = "Mes";
$year_lang = "Any";
$calendar_lang = "Calendari";
$next_day_lang = "Dia següent";
$next_month_lang = "Mes següent";
$next_week_lang = "Setmana següent";
$next_year_lang = "Any següent";
$last_day_lang = "Dia anterior";
$last_month_lang = "Mes anterior";
$last_week_lang = "Setmana anterior";
$last_year_lang = "Any anterior";
$subscribe_lang = "Subscriure";
$download_lang = "Descarregar";
$powered_by_lang = "Powered by";
$version_lang = "0.9";
$event_lang = 'Event';
$event_start_lang = 'Inici';
$event_end_lang = 'Fi';
$this_months_lang = 'Events d\'aquest mes';
$date_lang = 'Data';
$summary_lang = 'Descripció';
$all_day_lang = 'Event diario';
$notes_lang = 'Notes';
$this_years_lang = 'Events d\'aquest any';
$today_lang = 'Avui';
$this_week_lang = 'Aquesta setmana';
$this_month_lang = 'Aquesta mes';
$jump_lang = 'Anar a';
$tomorrows_lang = 'Events de demà';
$goday_lang = 'Anar a Avui';
$goweek_lang = 'Anar a aquesta Setmana';
$gomonth_lang = 'Anar a aquest Mes';
$goyear_lang = 'Anar a aquest Any';
$search_lang = 'Buscar'; // the verb
$results_lang = 'Resultats de la cerca';
$query_lang = 'Consulta: '; // will be followed by the search query
$no_results_lang = 'No s\'ha trobat cap event';
$goprint_lang = 'Format d\'impressió';
$time_lang = 'Hora';
$summary_lang = 'Resum';
$description_lang = 'Descripció';
$this_site_is_lang = 'Aquesta pàgina és';
$no_events_day_lang = 'No hi ha events per a avui.';
$no_events_week_lang = 'No hi ha events per a aquesta setmana.';
$no_events_month_lang = 'No hi ha events per a aquest mes.';
$rss_day_date = 'g:i A'; // Lists just the time
$rss_week_date = '%e de %b'; // Lists just the day
$rss_month_date = '%e de %b'; // Lists just the day
$rss_language = 'en-us';
// new in 0.9 ----------------------
$search_took_lang = 'La cerca ha trigat %s segons';
$recurring_event_lang = 'Event periòdic';
$exception_lang = 'Excepció';
$no_query_lang = 'Sense consulta';
$preferences_lang = 'Preferències';
$printer_lang = 'Impressora';
$select_lang_lang = 'Esculli el seu idioma per defecte:';
$select_cal_lang = 'Esculli el seu calendari per defecte:';
$select_view_lang = 'Esculli la seva vista per defecte:';
$select_time_lang = 'Esculli la seva hora d\'inici per defecte:';
$select_day_lang = 'Esculli el seu dia inicial de la setmana:';
$select_style_lang = 'Esculli el seu estil per defecte:';
$set_prefs_lang = 'Guardar preferències';
$completed_date_lang = 'Finalitzat a';
$completed_lang = 'Finalitzat';
$created_lang = 'Creat:';
$due_lang = 'Fins:';
$priority_lang = 'Prioritat:';
$priority_high_lang = 'Alta';
$priority_low_lang = 'Baixa';
$priority_medium_lang = 'Mitjana';
$priority_none_lang = 'Cap';
$status_lang = 'Estat:';
$todo_lang = 'Pendent';
$unfinished_lang = 'Sense acabar';
// $format_recur, items enclosed in % will be substituted with variables
$format_recur_lang['delimiter'] = ', '; // ie, 'one, two, three'
$format_recur_lang['yearly'] = array('any','anys'); // for these, put singular
$format_recur_lang['monthly'] = array('mes','mesos'); // and plural forms
$format_recur_lang['weekly'] = array('setmana','setmanes'); // these will be %freq%
$format_recur_lang['daily'] = array('dia','dies'); // in the replacement below
$format_recur_lang['hourly'] = array('hora','hores');
$format_recur_lang['minutely'] = array('minut','minuts');
$format_recur_lang['secondly'] = array('segon','segons');
$format_recur_lang['start'] = 'Cada %int% %freq% %for%'; // ie, 'Every 1 day until January 4' or 'Every 1 day for a count of 5'
$format_recur_lang['until'] = 'fins al %date%'; // ie, 'until January 4'
$format_recur_lang['count'] = '%int% vegades'; // ie, 'for 5 times'
$format_recur_lang['bymonth'] = 'Durant els mesos: %list%'; // ie, 'In months: January, February, March'
$format_recur_lang['bymonthday'] = 'Durant els dies: %list%'; // ie, 'On dates: 1, 2, 3, 4'
$format_recur_lang['byday'] = 'Durant els dies de la setmana: %list%'; // ie, 'On days: Mon, Tues, Wed, Thurs'
// ---------------------------------
$daysofweek_lang = array ('Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte');
$daysofweekshort_lang = array ('Dium','Dil','Dima','Dime','Dij','Div','Dis');
$daysofweekreallyshort_lang = array ('D','L','M','X','J','V','S');
$monthsofyear_lang = array ('Gener','Febrer','Març','Abril','Maig','Juny','Juliol','Agost','Setembre','Octubre','Novembre','Desembre');
$monthsofyearshort_lang = array ('Gen','Feb','Mar','Abr','Mai','Jun','Jul','Ago','Sep','Oct','Nov','Des');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = 'G:i';
$timeFormat_small = 'G:i';
// For date formatting, see note below
$dateFormat_day = '%A, %e de %B';
$dateFormat_week = '%e de %B';
$dateFormat_week_list = '%a, %e de %b';
$dateFormat_week_jump = '%e de %e';
$dateFormat_month = '%B de %Y';
$dateFormat_month_list = '%A, %e de %B';
/*
Notes about dateFormat_*
The pieces are similar to that of the PHP function strftime(),
however only the following is supported at this time:
%A - the full week day name as specified in $daysofweek_lang
%a - the shortened week day name as specified in $daysofweekshort_lang
%B - the full month name as specified in $monthsofyear_lang
%b - the shortened month name as specified in $monthsofyearshort_lang
%e - the day of the month as a decimal number (1 to 31)
%Y - the 4-digit year
If this causes problems with representing your language accurately, let
us know. We will be happy to modify this if needed.
*/
// Error messages - %s will be replaced with a variable
$error_title_lang = 'Error!';
$error_window_lang = 'Hi ha hagut error!';
$error_calendar_lang = 'L\'error s\'ha produït mentre es processava el calendari "%s".';
$error_path_lang = 'Incapaç d\'obrir: "%s"';
$error_back_lang = 'Per favor, utilitzi el botó "endarrera" per a tornar.';
$error_remotecal_lang = 'Aquest servidor bloqueja calendaris remots que no han estat acceptats.';
$error_restrictedcal_lang = 'Ha intentat arribar a un calendari que té l\'accés restringit.';
$error_invalidcal_lang = 'Fitxer de calendari invàlid. Per favor, provi un altre calendari.';
?>
--- NEW FILE: traditional_chinese.inc.php ---
<?php
// Trad. Chinese language include
// For version 0.9 PHP iCalendar
//
// Translation by Kevin Fyure (di...@ma...)
//
// Submit new translations to ch...@ch...
$day_lang = 'æ¥';
$week_lang = 'é±';
$month_lang = 'æ';
$year_lang = 'å¹´';
$calendar_lang = 'è¡äºæ';
$next_day_lang = 'æå¤©';
$next_month_lang = 'ä¸åæ';
$next_week_lang = 'ä¸é±';
$next_year_lang = 'æå¹´';
$last_day_lang = 'æ¨å¤©';
$last_month_lang = 'ä¸åæ';
$last_week_lang = 'ä¸é±';
$last_year_lang = 'å»å¹´';
$subscribe_lang = 'è¨é±';
$download_lang = 'ä¸è¼';
$powered_by_lang = 'Powered by';
$event_lang = 'äºä»¶';
$event_start_lang = 'éå§æé';
$event_end_lang = 'çµææé';
$this_months_lang = 'æ¬æäºä»¶';
$date_lang = 'æ¥æ';
$summary_lang = '主é¡';
$all_day_lang = 'æ´æ¥äºä»¶';
$notes_lang = 'é註';
$this_years_lang = 'ä»å¹´çäºä»¶';
$today_lang = 'ä»å¤©';
$this_week_lang = 'æ¬é±';
$this_month_lang = 'æ¬æ';
$jump_lang = 'ç§»è³';
$tomorrows_lang = 'æå¤©çäºä»¶';
$goday_lang = 'ä»å¤©çè¡äºæ';
$goweek_lang = 'æ¬é±çè¡äºæ';
$gomonth_lang = 'æ¬æçè¡äºæ';
$goyear_lang = 'ä»å¹´çè¡äºæ';
$search_lang = 'æå°'; // the verb
$results_lang = 'æå°çµæ';
$query_lang = 'æ¥å°'; // will be followed by the search query
$no_results_lang = 'æ²ææ¾å°ç¸éçäºä»¶';
$goprint_lang = 'åååå°';
$time_lang = 'æé';
$summary_lang = '主é¡';
$description_lang = 'é註';
$this_site_is_lang = 'æ¬ç«æ¯';
$no_events_day_lang = 'ä»å¤©æ²æä»»ä½äºä»¶';
$no_events_week_lang = 'æ¬é±æ²æä»»ä½äºä»¶';
$no_events_month_lang = 'æ¬ææ²æä»»ä½äºä»¶';
$rss_day_date = 'g:i A'; // Lists just the time
$rss_week_date = '%b %e æ¥'; // Lists just the day
$rss_month_date = '%b %e æ¥'; // Lists just the day
$rss_language = 'zh-tw';
// new in 0.9 ----------------------
$search_took_lang = 'æ¬æ¬¡æå°è±å»¢ %s ç§';
$recurring_event_lang = 'éè¤äºä»¶';
$exception_lang = 'ä¾å¤';
$no_query_lang = 'æ²ææ¥å°è³æ';
$preferences_lang = 'å好è¨å®';
$printer_lang = 'åååå°';
$select_lang_lang = 'è«é¸æé è¨çèªç³»:';
$select_cal_lang = 'è«é¸æé è¨çè¡äºæ:';
$select_view_lang = 'è«é¸æé è¨ç顯示æ¹å¼:';
$select_time_lang = 'è«é¸æé è¨çéå§æé:';
$select_day_lang = 'è«é¸æé è¨çæ¯é±ç¬¬ä¸å¤©:';
$select_style_lang = 'è«é¸æé è¨ç主é¡çé¢:';
$set_prefs_lang = 'å²åè¨å®';
$completed_date_lang = '宿æ¼';
$completed_lang = '已宿';
$created_lang = 'å»ºç«æ¥æ:';
$due_lang = 'å°ææ¥:';
$priority_lang = 'éè¦æ§:';
$priority_high_lang = 'å¾éè¦';
$priority_low_lang = 'ä¸éè¦';
$priority_medium_lang = 'éè¦';
$priority_none_lang = 'ç¡';
$status_lang = 'çæ
:';
$todo_lang = 'å¾
辦äºé
';
$unfinished_lang = 'å°æªå®æ';
// - navigation
$back_lang = 'åå»';
$next_lang = 'ä¸ä¸é ';
$prev_lang = 'åä¸é ';
$day_view_lang = 'ææ¥é¡¯ç¤º';
$week_view_lang = 'æé±é¡¯ç¤º';
$month_view_lang = 'ææé¡¯ç¤º';
$year_view_lang = 'æå¹´é¡¯ç¤º';
// $format_recur, items enclosed in % will be substituted with variables
$format_recur_lang['delimiter'] = ', '; // ie, 'one, two, three'
$format_recur_lang['yearly'] = array('å¹´','å¹´'); // for these, put singular
$format_recur_lang['monthly'] = array('æ','æ'); // and plural forms
$format_recur_lang['weekly'] = array('é±','é±'); // these will be %freq%
$format_recur_lang['daily'] = array('æ¥','æ¥'); // in the replacement below
$format_recur_lang['hourly'] = array('æ','å°æ');
$format_recur_lang['minutely'] = array('å','åé');
$format_recur_lang['secondly'] = array('ç§','ç§');
$format_recur_lang['start'] = '%freq% æ¯ %int% %for%'; // ie, 'Every 1 day until January 4' or 'Every 1 day for a count of 5'
$format_recur_lang['until'] = 'å° %date% ä¹å'; // ie, 'until January 4'
$format_recur_lang['count'] = '%int% 次'; // ie, 'for 5 times'
$format_recur_lang['bymonth'] = 'æ¼éå¹¾æ: %list%'; // ie, 'In months: January, February, March'
$format_recur_lang['bymonthday'] = 'æ¼éå¹¾è: %list%'; // ie, 'On dates: 1, 2, 3, 4'
$format_recur_lang['byday'] = 'æ¼é幾天: %list%'; // ie, 'On days: Mon, Tues, Wed, Thurs'
// ---------------------------------
$daysofweek_lang = array ('æææ¥','ææä¸','ææäº','ææä¸','ææå','ææäº','ææå
');
$daysofweekshort_lang = array ('鱿¥','é±ä¸','é±äº','é±ä¸','é±å','é±äº','é±å
');
$daysofweekreallyshort_lang = array ('æ¥','ä¸','äº','ä¸','å','äº','å
');
$monthsofyear_lang = array ('䏿','äºæ','䏿','åæ','äºæ','å
æ','䏿','å
«æ','乿','åæ','å䏿','åäºæ');
$monthsofyearshort_lang = array ('䏿','äºæ','䏿','åæ','äºæ','å
æ','䏿','å
«æ','乿','åæ','å䏿','åäºæ');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = 'g:i A';
$timeFormat_small = 'g:i';
// For date formatting, see note below
$dateFormat_day = '%A, %B %e æ¥';
$dateFormat_week = '%B %e æ¥';
$dateFormat_week_list = '%a, %b%eæ¥';
$dateFormat_week_jump = '%b %e æ¥';
$dateFormat_month = '%Y å¹´ %B';
$dateFormat_month_list = '%A, %B %e æ¥';
/*
Notes about dateFormat_*
The pieces are similar to that of the PHP function strftime(),
however only the following is supported at this time:
%A - the full week day name as specified in $daysofweek_lang
%a - the shortened week day name as specified in $daysofweekshort_lang
%B - the full month name as specified in $monthsofyear_lang
%b - the shortened month name as specified in $monthsofyearshort_lang
%e - the day of the month as a decimal number (1 to 31)
%Y - the 4-digit year
If this causes problems with representing your language accurately, let
us know. We will be happy to modify this if needed.
*/
// Error messages - %s will be replaced with a variable
$error_title_lang = 'é¯èª¤!';
$error_window_lang = 'æé¯èª¤ç¼ç!';
$error_calendar_lang = 'èçè¡äºæ "%s" æç¼çæ¤é¯èª¤ã';
$error_path_lang = 'ç¡æ³éåæ¤è·¯å¾: "%s"';
$error_back_lang = 'è«ä½¿ç¨ "åå»" æééå.';
$error_remotecal_lang = 'æ¬ä¼ºæå¨ææææªç¶å¯©æ ¸çé 端è¡äºæã';
$error_restrictedcal_lang = 'æ¨è©¦ååå被æ¬ä¼ºæå¨éå¶ä½¿ç¨çè¡äºæã';
$error_invalidcal_lang = 'é¯èª¤çè¡äºææªæ¡ãè«æä¸åè¡äºæè©¦è©¦ã';
?>
|
|
From: <cl...@us...> - 2003-02-18 21:19:20
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv14476 Modified Files: config.inc.php Log Message: Added Catalan and Traditional Chinese to project. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.95 retrieving revision 1.96 diff -C2 -d -r1.95 -r1.96 *** config.inc.php 16 Feb 2003 20:25:21 -0000 1.95 --- config.inc.php 18 Feb 2003 21:19:16 -0000 1.96 *************** *** 1,5 **** <?php ! // Configuration file for PHP iCalendar 0.9 // // To set values, change the text between the single quotes --- 1,5 ---- <?php ! // Configuration file for PHP iCalendar 0.9.1 // // To set values, change the text between the single quotes *************** *** 10,14 **** $minical_view = 'current'; // Where do the mini-calendars go when clicked? = 'day', 'week', 'month', 'current' $default_cal = 'School'; // Exact filename of calendar without .ics ! $language = 'English'; // Language support - 'English', 'Polish', 'German', 'French', 'Dutch', 'Danish', 'Italian', 'Japanese', 'Norwegian', 'Spanish', 'Swedish', 'Portuguese' $week_start_day = 'Sunday'; // Day of the week your week starts on $day_start = '0700'; // Start time for day grid --- 10,14 ---- $minical_view = 'current'; // Where do the mini-calendars go when clicked? = 'day', 'week', 'month', 'current' $default_cal = 'School'; // Exact filename of calendar without .ics ! $language = 'English'; // Language support - 'English', 'Polish', 'German', 'French', 'Dutch', 'Danish', 'Italian', 'Japanese', 'Norwegian', 'Spanish', 'Swedish', 'Portuguese', 'Catalan', 'Traditional_Chinese' $week_start_day = 'Sunday'; // Day of the week your week starts on $day_start = '0700'; // Start time for day grid |