<$FOLDERID$> - the unique id of the folder. Folder ids are unique for the duration of a user's session.
文件夹唯一标识ID
<$FOLDERNAME$> - the folder name on the server, which includes the path to the folder.
Example Result: Inbox/Personal/Jokes List
文件夹在服务器上的名称,包含文件所在的路径
<$FOLDERDEPTH$> - the depth of the folder in the hierarchy of folders. If the folder is a child of the Inbox folder then its folder depth is 1. The Inbox folder depth is 0.
表示文件夹所在的深度,如果改文件夹是收件箱下的子文件夹,那么文件夹的深度为1,父收件箱文件夹深度为0
<$FOLDERPARENTID$> - the id of the current folder's parent, 0 if the current folder is a top level folder.
获取父文件夹的标识ID,
如果为0表示当前文件夹中是最高级别的文件夹
<$FOLDERDISPLAYNAME$> - the folder name preceded by the equivalent number of spaces ( ) for each folder depth.
Example Result: Jokes List
在文件夹名称之前,用相同数目的空格( ) 来缩进文件夹的名称,多用在公共文件夹下的
<$SUBFOLDERDISPLAYNAME$> - the folder’s name regardless of its being a parent or not.
Example Result: Jokes List
文件夹显示名称,如:收件箱、草稿箱、垃圾箱
例子:
<strong><label for="Folder">[$Folder$]:</label></strong> <input type="text" id="Folder" name="Folder" value="<$subfolderdisplayname$>" size="12"> [$subfolder of$]
<$MSGCOUNT$> - the total number of messages in the folder.
邮件文件夹的计数
<$UNREADCOUNT$> - the total number of unread messages in the folder.
邮件未读邮件数量
<$IF FOLDERISDRAFTS$> - the content in this tag will be output if the current folder is the drafts folder.
判断当前文件夹是否是草稿文件夹
<$IF FOLDERISSENT$> - the content in this tag will be output if the current folder is the sent items folder.
判断当前文件夹是否是已发送邮件文件夹
<$IF FOLDERISTRASH$> - the content in this tag will be output if the current folder is the trash folder.
判断当前文件夹是否是已删除邮件文件夹
<$IF FOLDERISCALENDAR$> - the content in this tag will be output if the current folder is a calendar folder.
判断当前文件夹是否是日历文件夹
<$IF FOLDERISADDRBOOK$> - the content in this tag will be output if the current folder is a contacts/address book folder.
判断当前文件夹是否是联系人文件夹
<$IF FOLDERISTASKS$> - the content in this tag will be output if the current folder is a tasks folder.
判断当前文件夹是否是任务文件夹
<$IF FOLDERHASUNREAD$> - the content in this tag will be output if the current folder has unread messages.
判断当前文件夹是未读邮件
<$IF FOLDERHASNEW$> - the content in this tag will be output if the current folder has new messages.
判断当前文件夹是否有新邮件
<$IF FOLDERISTOPLEVEL$> - the content in this tag will be output if the current folder is a top level folder.
判断当前文件夹是否是最高级别的文件夹
<$IF FOLDERHASSUBS$> - the content in this tag will be output if the current folder has sub folders.
判断当前文件夹是否有子文件夹
<$IF FOLDERISSHARED$> - the content in this tag will be output if the current folder is a shared folder from another user.
判断显示其他用户共享文件夹
<$IF FOLDERISPUBLIC$> - the content in this tag will be output if the current folder is a public folder.
判断当前文件夹是否是一个公共文件夹
<$IF FOLDERCANRENAME$> - the content in this tag will be output if the user can rename the current folder.
判断是否可以重新命名当前文件夹
<$IF FOLDERCANDELETE$> - the content in this tag will be output if the user can delete the current folder.
判断用户是否可以删除当前文件夹
<$IF FOLDERCANDELETE$><input type="button" value="[$Delete$]"><$ENDIF$>
<$IF FOLDERCANSUBSCRIBE$> - the content in this tag will be output if the user can subscribe to the current folder.
判断用户对当前文件夹是否可以订阅
<input type="checkbox" name="SubscribeID" value="<$FOLDERID$> "<$IF FOLDERSUBSCRIBED$> checked="checked"<$ENDIF$><$IF !FOLDERCANSUBSCRIBE$> disabled="disabled"<$ENDIF$>>
<$IF FOLDERSUBSCRIBED$> - the content in this tag will be output if the user is subscribed to the current folder.
判断用户订阅了当前文件夹
<$IF FOLDERHASCREATEPERMISSION$> - the content in this tag will be output if the user has create/insert permission for the current folder.
判断用户对当前文件夹是否允许创建/插入
<$IF FOLDERHASSEENPERMISSION$> - the content in this tag will be output if the user has seen/set flags permission for the current folder.
判断用户对当前文件夹是否允许查看/设置
<$IF FOLDERHASREADPERMISSION$> - the content in this tag will be output if the user has read permission for the current folder.
判断用户对当前文件夹是否具有阅读权限
<$IF FOLDERHASWRITEPERMISSION$> - the content in this tag will be output if the user has write permission for the current folder.
判断用户对当前文件夹是否具有写权限
<$IF FOLDERHASEDITPERMISSION$> - the content in this tag will be output if the user has edit permission for the current folder.
判断用户对当前文件夹是否具有编辑权限
<$IF FOLDERHASDELETEPERMISSION$> - the content in this tag will be output if the user has delete permission for the current folder.
判断用户对当前文件夹是否具有删除权限
<$IF FOLDERHASADMINPERMISSION$> - the content in this tag will be output if the user has admin permission for the current folder.
判断用户对当前文件夹是否具有管理员权限
以上Folder List 文件夹列表属性我的翻译,不知可行???