/usr/share/IlohaMail/lang/eng/prefs.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | <?php
/********************************************************
lang/eng/prefs.inc
(C)2001-2002 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/prefs.inc");
$prefHeaderStrings[0] = "Preferences";
$prefHeaderStrings[1] = "General";
$prefHeaderStrings[3] = "Identities";
$prefHeaderStrings[2] = "Appearance";
$prefsStrings["0.0"] = "Default Identity";
$prefsStrings["0.1"] = "Name: ";
$prefsStrings["0.2"] = "Email: ";
$prefsStrings["0.3"] = "Changes can be made in the \"%s\" page.";
$prefsStrings["0.4"] = "Unspecified";
$prefsStrings["1.0"] = "International";
$prefsStrings["1.1"] = "Interface: ";
$prefsStrings["1.2"] = "Character Set: ";
$prefsStrings["1.3"] = "Time Zone: ";
$prefsStrings["1.4"] = "Time Option: ";
$prefsStrings["1.5"] = array(12=>"12 hour clock", 24=>"24 hour clock");
$prefsStrings["2.0"] = "List View Options";
$prefsStrings["2.1"] = "Show up to ";
$prefsStrings["2.2"] = " items";
$prefsStrings["2.3"] = "Show size";
$prefsStrings["2.4"] = "Sort by: ";
$prefsStrings["2.5"] = "";
$prefsStrings["2.6"] = "Sort order: ";
$prefsStrings["2.7"] = "";
$prefsStrings["2.8"] = "Show folder list";
$prefsStrings["2.9"] = "Folder list width";
$prefsStrings["2.10"] = "Check for new messages every %n seconds";
$prefsStrings["2.11"] = "Show tool bar at %m";
$prefsStrings["2.12"] = array("b"=>"bottom", "t"=>"top", "bt"=>"top and bottom");
$prefsStrings["2.13"] = "Rearrange columns: ";
$prefsStrings["2.14"] = "click here";
$prefsStrings["3.0"] = "Auto-Save Options";
$prefsStrings["3.1"] = "Save sent items.";
$prefsStrings["3.2"] = "Save sent messages in folder: ";
$prefsStrings["3.3"] = "";
$prefsStrings["3.4"] = "Automatically delete trash";
$prefsStrings["3.5"] = "Move deleted items to folder: ";
$prefsStrings["3.6"] = "";
$prefsStrings["3.7"] = "Root Directory: ";
$prefsStrings["3.8"] = "Other";
$prefsStrings["3.9"] = "Hide unsubscribed folders";
$prefsStrings["3.10"] = "Show quota %m";
$prefsStrings["3.11"] = array(""=>"don't show", "m"=>"in message listing", "f"=>"in folder list");
$prefsStrings["4.0"] = "Message View Options";
$prefsStrings["4.1"] = "View in frame";
$prefsStrings["4.2"] = "Colorize quotes";
$prefsStrings["4.3"] = "Turning on this option may slow down the system.";
$prefsStrings["4.4"] = "Convert URLs to links";
$prefsStrings["4.5"] = "Show HTML messages";
$prefsStrings["4.6"] = "Show images inline";
$prefsStrings["4.7"] = "Show navigation links";
$prefsStrings["4.8"] = "Don't mark messages when traversing";
$prefsStrings["5.0"] = "Signature";
$prefsStrings["5.1"] = "Show signature by default";
$prefsStrings["5.2"] = "";
$prefsStrings["6.0"] = "Compose";
$prefsStrings["6.1"] = "Show contacts";
$prefsStrings["6.2"] = "Show CC/BCC fields";
$prefsStrings["6.3"] = "Close after sending";
$prefsStrings["6.4"] = "Compose inside frame";
$prefsStrings["7.0.0"] = "Disk & Folder Options";
$prefsStrings["7.0.1"] = "Quota Options";
$prefsStrings["7.1"] = "Show num unread";
$prefsStrings["7.2"] = "Refresh folder list every %n seconds";
$pref_col_title = "Rearrange Columns";
$pref_colstr["order"] = "Order";
$pref_colstr["field"] = "Field";
$pref_col_label['c'] = "Check box";
$pref_col_label['a'] = "Attachments";
$pref_col_label['m'] = "Flags/status";
$sort_fields=array("DATE"=>"Date", "SUBJECT"=>"Subject", "SIZE"=>"Size");
$sort_orders=array("ASC"=>"Ascending", "DESC"=>"Descending");
$prefsButtonStrings = array( 0=> "Update", 1=>"Apply", 2=> "Cancel", 3=> "Defaults");
$prefs_new_user = "You seem to be logging in for the first time...welcome!<br>";
$prefs_new_user .= "Please go through the following settings, then press \"Apply\"";
?>
|