/usr/share/IlohaMail/lang/eng/calendar.inc is in ilohamail 0.8.14-0rc3sid6.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | <?php
/********************************************************
lang/<lang>/calendar.inc
(C)2003 Ryo Chijiiwa <Ryo@IlohaMail.org>
This file is part of IlohaMail, and released under GPL.
See COPYING, or http://www.fsf.org/copyleft/gpl.html
********************************************************/
//TRANSLATORS: Uncomment next line for all non-English languages!!
//include("../lang/eng/calendar.inc");
$calStr["add_schedule"] = "Add Schedule";
$calStr["edit_schedule"] = "Edit Schedule";
$calStr["weekof"] = "Week of: %d";
$calStr["title"] = "Title:";
$calStr["color"] = "Color:";
$calStr["colors"] = array("#990000"=>"Dark Red", "#FF0000"=>"Red", "#000099"=>"Deep Blue", "#0000FF"=>"Blue",
"#006600"=>"Dark Green", "#00FF00"=>"Green", "#9900FF"=>"Purple", "#00FFFF"=>"Cyan",
"#FF6600"=>"Orange", "#FFFF00"=>"Yellow", "#FF00FF"=>"Magenta", ""=>"No color");
$calStr["starts"] = "Starts on:";
$calStr["ends"] = "Ends on:";
$calStr["from"] = "from:";
$calStr["until"] = "until:";
$calStr["repeat_on"] = "Repeat on";
$calStr["of"] = "of every";
$calStr["weeks"] = array(1=>"first week", 2=>"second week", 3=>"third week", 4=>"fourth week");
$calStr["week_blurb"] = "...of every month (until end date).<br>Will repeat on all weeks if none are selected.";
$calStr["monthly"] = "Repeat monthly";
$calStr["yearly"] = "Repeat annually";
$calStr["place"] = "Place:";
$calStr["description"] = "Description:";
$calStr["add"] = "Add";
$calStr["update"] = "Update";
$calStr["Delete"] = "Delete";
$calStr["go"] = "Go";
$calStr["disabled"] = "The calendar feature is disabled.";
?>
|