mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-28 13:21:28 +00:00
clean up in preparation for bug #14254. remove unused files. create
new string bundle (messenger.properties) for use by the messenger application fix widgetglue.js to use the string bundle. now we get the title of the new folder / subscribe dialog from the string bundle. also fix the problem where the new folder / subscribe dialog wouldn't open if zero, or more than one server / folder were selected.
This commit is contained in:
parent
7fb7c41a80
commit
45fc16c656
@ -43,12 +43,13 @@ Rights Reserved.
|
||||
windowtype="mail:3pane">
|
||||
|
||||
|
||||
<html:script src="chrome://global/content/strres.js"/>
|
||||
<html:script src="chrome://messenger/content/widgetglue.js"/>
|
||||
<html:script src="chrome://messenger/content/commandglue.js"/>
|
||||
<html:script src="chrome://messenger/content/shareglue.js"/>
|
||||
<html:script src="chrome://messenger/content/msgViewNavigation.js"/>
|
||||
<html:script src="chrome://messenger/content/msgMail3PaneWindow.js"/>
|
||||
<html:script src="chrome://navigator/content/contentframe.js" />
|
||||
<html:script src="chrome://navigator/content/contentframe.js"/>
|
||||
|
||||
<commands id="commands">
|
||||
<commandset id="CommandUpdate_Mail"
|
||||
|
@ -22,20 +22,25 @@ function newFolderNameOnLoad()
|
||||
var selectedParentFolder = document.getElementById('selectedparentfolder');
|
||||
// dump("selectedParentFolder = " + selectedParentFolder + "\n");
|
||||
|
||||
try {
|
||||
options = selectedParentFolder.options;
|
||||
for (i=1;i<options.length;i++) {
|
||||
var uri = options[i].getAttribute('uri');
|
||||
// dump(uri + " vs " + window.arguments[0].preselectedURI + "\n");
|
||||
if (uri == window.arguments[0].preselectedURI) {
|
||||
// dump("preselect: " + uri + " index = " + i + "\n");
|
||||
selectedParentFolder.selectedIndex = i;
|
||||
break;
|
||||
if (window.arguments[0].preselectedURI) {
|
||||
try {
|
||||
options = selectedParentFolder.options;
|
||||
for (i=1;i<options.length;i++) {
|
||||
var uri = options[i].getAttribute('uri');
|
||||
// dump(uri + " vs " + window.arguments[0].preselectedURI + "\n");
|
||||
if (uri == window.arguments[0].preselectedURI) {
|
||||
// dump("preselect: " + uri + " index = " + i + "\n");
|
||||
selectedParentFolder.selectedIndex = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (ex) {
|
||||
// dump("failed to preflight the select thing.\n");
|
||||
catch (ex) {
|
||||
// dump("failed to preflight the select thing.\n");
|
||||
}
|
||||
}
|
||||
else {
|
||||
dump("passed null for preselectedURI, do nothing\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
|
||||
var msgComposeType = Components.interfaces.nsIMsgCompType;
|
||||
var msgComposFormat = Components.interfaces.nsIMsgCompFormat;
|
||||
var Bundle = srGetStrBundle("chrome://messenger/locale/messenger.properties");
|
||||
|
||||
// Controller object for folder pane
|
||||
var FolderPaneController =
|
||||
@ -316,7 +317,7 @@ function MsgForwardMessage(event)
|
||||
var forwardType = 0;
|
||||
try {
|
||||
var forwardType = prefs.GetIntPref("mail.forward_message_mode");
|
||||
} catch (e) {dump ("faild to retrive pref mail.forward_message_mode");}
|
||||
} catch (e) {dump ("failed to retrieve pref mail.forward_message_mode");}
|
||||
|
||||
if (forwardType == 0)
|
||||
MsgForwardAsAttachment(null);
|
||||
@ -434,45 +435,59 @@ function MsgSortBySubject()
|
||||
|
||||
function MsgNewFolder()
|
||||
{
|
||||
MsgNewSubfolder("chrome://messenger/content/newFolderNameDialog.xul","New Folder");
|
||||
var windowTitle = Bundle.GetStringFromName("newFolderDialogTitle");
|
||||
dump(Bundle + windowTitle + "\n");
|
||||
MsgNewSubfolder("chrome://messenger/content/newFolderNameDialog.xul",windowTitle);
|
||||
}
|
||||
|
||||
function MsgSubscribe()
|
||||
{
|
||||
MsgNewSubfolder("chrome://messenger/content/subscribeDialog.xul","Subscribe");
|
||||
var windowTitle = Bundle.GetStringFromName("subscribeDialogTitle");
|
||||
dump(Bundle + windowTitle + "\n");
|
||||
MsgNewSubfolder("chrome://messenger/content/subscribeDialog.xul", windowTitle);
|
||||
}
|
||||
|
||||
function MsgNewSubfolder(chromeWindowURL,windowTitle)
|
||||
{
|
||||
var selectedFolder = null;
|
||||
try {
|
||||
var folderTree = GetFolderTree();
|
||||
var selectedFolderList = folderTree.selectedItems;
|
||||
|
||||
if (selectedFolderList.length != 1) {
|
||||
// dump("ERROR: you can only select one folder / server to add new folder / subscribe to.\n");
|
||||
return;
|
||||
// you can only select one folder / server to add new folder / subscribe to
|
||||
if (selectedFolderList.length == 1) {
|
||||
selectedFolder = selectedFolderList[0];
|
||||
}
|
||||
var selectedFolder = selectedFolderList[0];
|
||||
if (selectedFolder)
|
||||
{
|
||||
else {
|
||||
dump("number of selected folder was " + selectedFolderList.length + "\n");
|
||||
}
|
||||
}
|
||||
catch (ex) {
|
||||
//dump("failed to get the selected folder\n");
|
||||
}
|
||||
|
||||
try {
|
||||
var preselectedURI = null;
|
||||
|
||||
if (selectedFolder) {
|
||||
preselectedURI = selectedFolder.getAttribute('id');
|
||||
// dump("folder to preselect: " + preselectedURI + "\n");
|
||||
var dialog = window.openDialog(
|
||||
}
|
||||
var dialog = window.openDialog(
|
||||
chromeWindowURL,
|
||||
"",
|
||||
"chrome",
|
||||
{preselectedURI:preselectedURI, title:windowTitle,
|
||||
okCallback:NewFolder});
|
||||
}
|
||||
}
|
||||
catch (ex) {
|
||||
// dump("ERROR: perhaps nothing in the folder pane is selected?\n")
|
||||
dump("failed to open the new folder dialog\n");
|
||||
}
|
||||
}
|
||||
|
||||
function NewFolder(name)
|
||||
{
|
||||
var folderTree = GetFolderTree();
|
||||
var folderTree = GetFolderTree();
|
||||
var selectedFolderList = folderTree.selectedItems;
|
||||
var selectedFolder = selectedFolderList[0];
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
messenger.dtd
|
||||
messenger.properties
|
||||
threadpane.dtd
|
||||
folderpane.dtd
|
||||
newFolderNameDialog.dtd
|
||||
|
@ -28,6 +28,7 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/messenger.dtd \
|
||||
$(srcdir)/messenger.properties \
|
||||
$(srcdir)/threadpane.dtd \
|
||||
$(srcdir)/folderpane.dtd \
|
||||
$(srcdir)/newFolderNameDialog.dtd \
|
||||
|
@ -28,6 +28,7 @@ LOCALEDIR=$(DIST)\bin\chrome\messenger\locale\en-US
|
||||
|
||||
install::
|
||||
$(MAKE_INSTALL) messenger.dtd $(LOCALEDIR)
|
||||
$(MAKE_INSTALL) messenger.properties $(LOCALEDIR)
|
||||
$(MAKE_INSTALL) threadpane.dtd $(LOCALEDIR)
|
||||
$(MAKE_INSTALL) folderpane.dtd $(LOCALEDIR)
|
||||
$(MAKE_INSTALL) newFolderNameDialog.dtd $(LOCALEDIR)
|
||||
|
@ -16,36 +16,11 @@
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Seth Spitzer <sspitzer@netscape.com>
|
||||
#
|
||||
|
||||
#
|
||||
# The following are used by libmime for header display in XML & HTML
|
||||
# The following are used by the messenger application
|
||||
#
|
||||
TO=To
|
||||
BCC=BCC
|
||||
CC=CC
|
||||
DATE=Date
|
||||
DISTRIBUTION=Distribution
|
||||
FCC=FCC
|
||||
FOLLOWUP-TO=Followup-To
|
||||
FROM=From
|
||||
STATUS=Status
|
||||
LINES=Lines
|
||||
MESSAGE-ID=Message-ID
|
||||
MIME-VERSION=MIME-Version
|
||||
NEWSGROUPS=Newsgroups
|
||||
ORGANIZATION=Organization
|
||||
REFERENCES=References
|
||||
REPLY-TO=Reply-To
|
||||
RESENT-COMMENTS=Resent-Comments
|
||||
RESENT-DATE=Resent-Date
|
||||
RESENT-FROM=Resent-From
|
||||
RESENT-MESSAGE-ID=Resent-Message-ID
|
||||
RESENT-SENDER=Resent-Sender
|
||||
RESENT-TO=Resent-To
|
||||
RESENT-CC=Resent-CC
|
||||
SENDER=Sender
|
||||
SUBJECT=Subject
|
||||
APPROVED-BY=Approved-By
|
||||
USER-AGENT=User-Agent
|
||||
FILENAME=Filename
|
||||
newFolderDialogTitle=New Folder
|
||||
subscribeDialogTitle=Subscribe
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from "imapMsgs_en-US.properties.
|
||||
#
|
||||
# The following are used by the imap code to display progress/status/error messages
|
||||
#
|
||||
|
@ -1,278 +0,0 @@
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# The following are used by the imap code to display progress/status/error messages
|
||||
#
|
||||
|
||||
# Out of memory
|
||||
## @name IMAP_OUT_OF_MEMORY
|
||||
## @loc None
|
||||
-1000=Application is out of memory.
|
||||
|
||||
# Status - opening folder
|
||||
## @name IMAP_STATUS_SELECTING_MAILBOX
|
||||
## @loc None
|
||||
5000=Opening folder...
|
||||
|
||||
# Status - create folder
|
||||
## @name IMAP_STATUS_CREATING_MAILBOX
|
||||
## @loc None
|
||||
5001=Creating folder...
|
||||
|
||||
# Status - deleting a folder
|
||||
## @name IMAP_STATUS_DELETING_MAILBOX
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5002) : do not translate "%s" in below line
|
||||
5002=Deleting folder %s...
|
||||
|
||||
# Status - renaming mailbox
|
||||
## @name IMAP_STATUS_RENAMING_MAILBOX
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5003) : do not translate "%s" in below line
|
||||
5003=Renaming folder %s...
|
||||
|
||||
# Status - looking for mailboxes
|
||||
## @name IMAP_STATUS_LOOKING_FOR_MAILBOX
|
||||
## @loc None
|
||||
5004=Looking for folders...
|
||||
|
||||
# Status - subscribing to mailbox
|
||||
## @name IMAP_STATUS_SUBSCRIBE_TO_MAILBOX
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5005) : do not translate "%s" in below line
|
||||
5005=Subscribing to folder %s...
|
||||
|
||||
# Status - unsubscribing from mailbox
|
||||
## @name IMAP_STATUS_UNSUBSCRIBE_MAILBOX
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5006) : do not translate "%s" in below line
|
||||
5006=Unsubscribing from folder %s...
|
||||
|
||||
# Status - searching imap folder
|
||||
## @name IMAP_STATUS_SEARCH_MAILBOX
|
||||
## @loc None
|
||||
5007=Searching folder...
|
||||
|
||||
# Status - getting message info
|
||||
## @name IMAP_STATUS_MSG_INFO
|
||||
## @loc None
|
||||
5008=Getting message info...
|
||||
|
||||
# Status - closing a folder
|
||||
## @name IMAP_STATUS_CLOSE_MAILBOX
|
||||
## @loc None
|
||||
5009=Closing folder...
|
||||
|
||||
# Status - compacting a folder
|
||||
## @name IMAP_STATUS_EXPUNGING_MAILBOX
|
||||
## @loc None
|
||||
5010=Compacting folder...
|
||||
|
||||
# Status - logging out
|
||||
## @name IMAP_STATUS_LOGGING_OUT
|
||||
## @loc None
|
||||
5011=Logging out...
|
||||
|
||||
# Status - checking server capabilities
|
||||
## @name IMAP_STATUS_CHECK_COMPAT
|
||||
## @loc None
|
||||
5012=Checking mail server capabilities...
|
||||
|
||||
# Status - logging on
|
||||
## @name IMAP_STATUS_SENDING_LOGIN
|
||||
## @loc None
|
||||
5013=Sending login information...
|
||||
|
||||
# Status - auth logon
|
||||
## @name IMAP_STATUS_SENDING_AUTH_LOGIN
|
||||
## @loc None
|
||||
5014=Sending authenticate login information...
|
||||
|
||||
## @name IMAP_DOWNLOADING_MESSAGE
|
||||
## @loc None
|
||||
5015=Downloading message...
|
||||
|
||||
## @name IMAP_CREATE_FOLDER_BUT_NO_SUBSCRIBE
|
||||
## @loc None
|
||||
5016=Folder creation succeeded, but Netscape was unable to subscribe the new folder.
|
||||
|
||||
## @name IMAP_DELETE_FOLDER_BUT_NO_UNSUBSCRIBE
|
||||
## @loc None
|
||||
5017=Folder deletion succeeded, but Netscape was unable to unsubscribe from the folder.
|
||||
|
||||
## @name IMAP_RENAME_FOLDER_BUT_NO_SUBSCRIBE
|
||||
## @loc None
|
||||
5018=Folder move succeeded, but Netscape was unable to subscribe to the new folder name.
|
||||
|
||||
## @name IMAP_RENAME_FOLDER_BUT_NO_UNSUBSCRIBE
|
||||
## @loc None
|
||||
5019=Folder move succeeded, but Netscape was unable to unsubscribe from the old folder name.
|
||||
|
||||
## @name IMAP_STATUS_GETTING_NAMESPACE
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5020) : do not translate "IMAP" in below line
|
||||
5020=Checking IMAP Namespace...
|
||||
|
||||
## @name IMAP_UPGRADE_NO_PERSONAL_NAMESPACE
|
||||
## @loc Nones
|
||||
5021="The mail server indicates that you may not have any personal mail folders. Please verify your subscriptions.
|
||||
|
||||
## @name IMAP_UPGRADE_TOO_MANY_FOLDERS
|
||||
## @loc None
|
||||
5022=While trying to automatically subscribe, Netscape has found a large number of mail folders. Please select which folders you would like subscribed.
|
||||
|
||||
## @name IMAP_UPGRADE_PROMPT_USER
|
||||
## @loc None
|
||||
5023=Netscape has detected that you have upgraded from a previous version of Communicator. You will need to choose which mail folders you want subscribed.
|
||||
|
||||
## @name IMAP_UPGRADE_PROMPT_USER_2
|
||||
## @loc None
|
||||
5024=Any folders which are left unsubscribed will not appear in your folder lists, but can be subscribed to later by choosing File / Subscribe.
|
||||
|
||||
## @name IMAP_UPGRADE_PROMPT_QUESTION
|
||||
## @loc None
|
||||
5025=Would you like Netscape to try to automatically subscribe to all your folders?
|
||||
|
||||
## @name IMAP_UPGRADE_CUSTOM
|
||||
## @loc None
|
||||
5026=Please choose which folders you want subscribed in the Subscribe window...
|
||||
|
||||
## @name IMAP_UPGRADE_WAIT_WHILE_UPGRADE
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5027) : do not translate "IMAP" in below line
|
||||
5027=Please wait while Netscape upgrades you to use IMAP mail folder subscriptions...
|
||||
|
||||
## @name IMAP_UPGRADE_SUCCESSFUL
|
||||
## @loc None
|
||||
5028=The upgrade was successful.
|
||||
|
||||
## @name IMAP_GETTING_ACL_FOR_FOLDER
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5029) : do not translate "ACL" in below line
|
||||
5029=Getting folder ACL...
|
||||
|
||||
## @name IMAP_GETTING_SERVER_INFO
|
||||
## @loc None
|
||||
5030=Getting Server Configuration Info...
|
||||
|
||||
## @name IMAP_GETTING_MAILBOX_INFO
|
||||
## @loc None
|
||||
5031=Getting Mailbox Configuration Info...
|
||||
|
||||
## @name IMAP_EMPTY_MIME_PART
|
||||
## @loc None
|
||||
5032=This body part will be downloaded on demand.
|
||||
|
||||
## @name IMAP_UNABLE_TO_SAVE_MESSAGE
|
||||
## @loc None
|
||||
5033=IMAP Error: The message could not be saved due to an error.
|
||||
|
||||
## @name IMAP_NO_ONLINE_FOLDER
|
||||
## @loc None
|
||||
5034=IMAP Error: The online folder information could not be retrieved.
|
||||
|
||||
## @name IMAP_LOGIN_FAILED
|
||||
## @loc None
|
||||
5035=Login failed.
|
||||
|
||||
## @name IMAP_RECEIVING_MESSAGE_HEADERS_OF
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5036) : use following directions to translate below line
|
||||
# 1, do not translate "%s" and two of "%lu"
|
||||
# 2, keep the order of two "%lu" when the grammer need to change the order.
|
||||
# For example, in Japanese cases;
|
||||
# %s Receiving: message headers %lu (total %lu)
|
||||
5036=%s Receiving: message headers %lu of %lu
|
||||
|
||||
## @name IMAP_RECEIVING_MESSAGE_FLAGS_OF
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5037) : use following directions to translate below line
|
||||
# 1, do not translate "%s" and two of "%lu"
|
||||
# 2, keep the order of two "%lu" when the grammer need to change the order.
|
||||
# For example, in Japanese cases;
|
||||
# %s Receiving: message flags %lu (total %lu)
|
||||
5037=%s Receiving: message flags %lu of %lu
|
||||
|
||||
## @name IMAP_DELETING_MESSAGES
|
||||
## @loc None
|
||||
5038=Deleting messages...
|
||||
|
||||
## @name IMAP_DELETING_MESSAGE
|
||||
## @loc None
|
||||
5039=Deleting message...
|
||||
|
||||
## @name IMAP_MOVING_MESSAGES_TO
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5040) : do not translate "%s" in below line
|
||||
5040=Moving messages to %s...
|
||||
|
||||
## @name IMAP_MOVING_MESSAGE_TO
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5041) : do not translate "%s" in below line
|
||||
5041=Moving message to %s...
|
||||
|
||||
## @name IMAP_COPYING_MESSAGES_TO
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5042) : do not translate "%s" in below line
|
||||
5042=Copying messages %s...
|
||||
|
||||
## @name IMAP_COPYING_MESSAGE_TO
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5043) : do not translate "%s" in below line
|
||||
5043=Copying message %s...
|
||||
|
||||
## @name IMAP_SELECTING_MAILBOX
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5044) : do not translate "%s" in below line
|
||||
5044=Opening folder %s...
|
||||
|
||||
## @name IMAP_FOLDER_RECEIVING_MESSAGE_OF
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5045) : use following directions to translate below line
|
||||
# 1, do not translate "%s" and two of "%lu"
|
||||
# 2, keep the order of two "%lu" when the grammer need to change the order.
|
||||
# For example, in Japanese cases;
|
||||
# %s - Receiving: message %lu (total %lu)
|
||||
5045=%s - Receiving: message %lu of %lu
|
||||
|
||||
## @name IMAP_DISCOVERING_MAILBOX
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5046) : do not translate "%s" in below line
|
||||
5046=Found folder: %s
|
||||
|
||||
## @name IMAP_ENTER_PASSWORD_PROMPT
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5047) : do not translate "%1$s@%2$s" in below line
|
||||
5047=Enter your password for %1$s@%2$s.
|
||||
|
||||
## @name IMAP_SERVER_NOT_IMAP4
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (5048) : do not translate "IMAP4" in below line
|
||||
5048=This mail server is not an IMAP4 mail server.
|
||||
|
||||
## @name IMAP_SERVER_SAID
|
||||
## @loc None
|
||||
5049=The current command did not succeed. The mail server responded:
|
||||
|
||||
## @name IMAP_DONE
|
||||
## @loc None
|
||||
5050=Document: Done
|
||||
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from localMsgs_en-US.properties.
|
||||
#
|
||||
# The following are used by the local mail code to display progress/status/error messages
|
||||
#
|
||||
|
@ -1,50 +0,0 @@
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# The following are used by the local mail code to display progress/status/error messages
|
||||
#
|
||||
|
||||
# Out of memory
|
||||
## @name LOCAL_OUT_OF_MEMORY
|
||||
## @loc None
|
||||
-1000=Application is out of memory.
|
||||
|
||||
# Status - parsing folder
|
||||
## @name LOCAL_STATUS_SELECTING_MAILBOX
|
||||
## @loc None
|
||||
4000=Building summary file for %s...
|
||||
|
||||
# Status - parsing folder
|
||||
## @name LOCAL_STATUS_DOCUMENT_DONE
|
||||
## @loc None
|
||||
4001=Document: Done
|
||||
|
||||
# Status - parsing folder
|
||||
## @name LOCAL_STATUS_RECEIVING_MESSAGE_OF
|
||||
## @loc None
|
||||
# LOCALIZATION NOTE (4002) : use following directions to translate below line
|
||||
# 1, do not translate two of "%lu"
|
||||
# 2, keep the order of two "%lu" when the grammer need to change the order.
|
||||
# For example, in Japanese cases;
|
||||
# Receiving: message %lu (total %lu)
|
||||
4002=Receiving: message %lu of %lu
|
||||
|
||||
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from vcard_en.properties
|
||||
#
|
||||
# The following are used by the vcard content type handler to
|
||||
# to emit header display in HTML
|
||||
|
@ -1,339 +0,0 @@
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# The following are used by the vcard content type handler to
|
||||
# to emit header display in HTML
|
||||
#
|
||||
|
||||
# Out of memory
|
||||
## @name VCARD_OUT_OF_MEMORY
|
||||
## @loc None
|
||||
-1000=Application is out of memory.
|
||||
|
||||
# VCARD_LDAP_REGION
|
||||
## @name VCARD_LDAP_REGION
|
||||
## @loc None
|
||||
1001=State
|
||||
|
||||
# VCARD_LDAP_DOM_TYPE
|
||||
## @name VCARD_LDAP_DOM_TYPE
|
||||
## @loc None
|
||||
1002=Domestic
|
||||
|
||||
# VCARD_LDAP_INTL_TYPE
|
||||
## @name VCARD_LDAP_INTL_TYPE
|
||||
## @loc None
|
||||
1003=International
|
||||
|
||||
# VCARD_LDAP_POSTAL_TYPE
|
||||
## @name VCARD_LDAP_POSTAL_TYPE
|
||||
## @loc None
|
||||
1004=Postal
|
||||
|
||||
# VCARD_LDAP_PARCEL_TYPE
|
||||
## @name VCARD_LDAP_PARCEL_TYPE
|
||||
## @loc None
|
||||
1005=Parcel
|
||||
|
||||
# VCARD_LDAP_WORK_TYPE
|
||||
## @name VCARD_LDAP_WORK_TYPE
|
||||
## @loc None
|
||||
1006=Work
|
||||
|
||||
# VCARD_LDAP_HOME_TYPE
|
||||
## @name VCARD_LDAP_HOME_TYPE
|
||||
## @loc None
|
||||
1007=Home
|
||||
|
||||
# VCARD_LDAP_PREF_TYPE
|
||||
## @name VCARD_LDAP_PREF_TYPE
|
||||
## @loc None
|
||||
1008=Preferred
|
||||
|
||||
# VCARD_LDAP_VOICE_TYPE
|
||||
## @name VCARD_LDAP_VOICE_TYPE
|
||||
## @loc None
|
||||
1009=Voice
|
||||
|
||||
# VCARD_LDAP_FAX_TYPE
|
||||
## @name VCARD_LDAP_FAX_TYPE
|
||||
## @loc None
|
||||
1010=Fax
|
||||
|
||||
# VCARD_LDAP_MSG_TYPE
|
||||
## @name VCARD_LDAP_MSG_TYPE
|
||||
## @loc None
|
||||
1011=Message
|
||||
|
||||
# VCARD_LDAP_CELL_TYPE
|
||||
## @name VCARD_LDAP_CELL_TYPE
|
||||
## @loc None
|
||||
1012=Cellular
|
||||
|
||||
# VCARD_LDAP_PAGER_TYPE
|
||||
## @name VCARD_LDAP_PAGER_TYPE
|
||||
## @loc None
|
||||
1013=Pager
|
||||
|
||||
# VCARD_LDAP_BBS_TYPE
|
||||
## @name VCARD_LDAP_BBS_TYPE
|
||||
## @loc None
|
||||
1014=BBS
|
||||
|
||||
# VCARD_LDAP_MODEM_TYPE
|
||||
## @name VCARD_LDAP_MODEM_TYPE
|
||||
## @loc None
|
||||
1015=Modem
|
||||
|
||||
# VCARD_LDAP_CAR_TYPE
|
||||
## @name VCARD_LDAP_CAR_TYPE
|
||||
## @loc None
|
||||
1016=Car
|
||||
|
||||
# VCARD_LDAP_ISDN_TYPE
|
||||
## @name VCARD_LDAP_ISDN_TYPE
|
||||
## @loc None
|
||||
1017=ISDN
|
||||
|
||||
# VCARD_LDAP_VIDEO_TYPE
|
||||
## @name VCARD_LDAP_VIDEO_TYPE
|
||||
## @loc None
|
||||
1018=Video
|
||||
|
||||
# VCARD_LDAP_AOL_TYPE
|
||||
## @name VCARD_LDAP_AOL_TYPE
|
||||
## @loc None
|
||||
1019=AOL
|
||||
|
||||
# VCARD_LDAP_APPLELINK_TYPE
|
||||
## @name VCARD_LDAP_APPLELINK_TYPE
|
||||
## @loc None
|
||||
1020=Applelink
|
||||
|
||||
# VCARD_LDAP_ATTMAIL_TYPE
|
||||
## @name VCARD_LDAP_ATTMAIL_TYPE
|
||||
## @loc None
|
||||
1021=AT&T Mail
|
||||
|
||||
# VCARD_LDAP_CSI_TYPE
|
||||
## @name VCARD_LDAP_CSI_TYPE
|
||||
## @loc None
|
||||
1022=Compuserve
|
||||
|
||||
# VCARD_LDAP_EWORLD_TYPE
|
||||
## @name VCARD_LDAP_EWORLD_TYPE
|
||||
## @loc None
|
||||
1023=eWorld
|
||||
|
||||
# VCARD_LDAP_INTERNET_TYPE
|
||||
## @name VCARD_LDAP_INTERNET_TYPE
|
||||
## @loc None
|
||||
1024=Internet
|
||||
|
||||
# VCARD_LDAP_IBMMAIL_TYPE
|
||||
## @name VCARD_LDAP_IBMMAIL_TYPE
|
||||
## @loc None
|
||||
1025=IBM Mail
|
||||
|
||||
# VCARD_LDAP_MCIMAIL_TYPE
|
||||
## @name VCARD_LDAP_MCIMAIL_TYPE
|
||||
## @loc None
|
||||
1026=MCI Mail
|
||||
|
||||
# VCARD_LDAP_POWERSHARE_TYPE
|
||||
## @name VCARD_LDAP_POWERSHARE_TYPE
|
||||
## @loc None
|
||||
1027=Powershare
|
||||
|
||||
# VCARD_LDAP_PRODIGY_TYPE
|
||||
## @name VCARD_LDAP_PRODIGY_TYPE
|
||||
## @loc None
|
||||
1028=Prodigy
|
||||
|
||||
# VCARD_LDAP_TLX_TYPE
|
||||
## @name VCARD_LDAP_TLX_TYPE
|
||||
## @loc None
|
||||
1029=Telex
|
||||
|
||||
# VCARD_LDAP_MIDDLE_NAME
|
||||
## @name VCARD_LDAP_MIDDLE_NAME
|
||||
## @loc None
|
||||
1030=Additional Name
|
||||
|
||||
# VCARD_LDAP_NAME_PREFIX
|
||||
## @name VCARD_LDAP_NAME_PREFIX
|
||||
## @loc None
|
||||
1031=Prefix
|
||||
|
||||
# VCARD_LDAP_NAME_SUFFIX
|
||||
## @name VCARD_LDAP_NAME_SUFFIX
|
||||
## @loc None
|
||||
1032=Suffix
|
||||
|
||||
# VCARD_LDAP_TZ
|
||||
## @name VCARD_LDAP_TZ
|
||||
## @loc None
|
||||
1033=Time Zone
|
||||
|
||||
# VCARD_LDAP_GEO
|
||||
## @name VCARD_LDAP_GEO
|
||||
## @loc None
|
||||
1034=Geographic Position
|
||||
|
||||
# VCARD_LDAP_SOUND
|
||||
## @name VCARD_LDAP_SOUND
|
||||
## @loc None
|
||||
1035=Sound
|
||||
|
||||
# VCARD_LDAP_REVISION
|
||||
## @name VCARD_LDAP_REVISION
|
||||
## @loc None
|
||||
1036=Revision
|
||||
|
||||
# VCARD_LDAP_VERSION
|
||||
## @name VCARD_LDAP_VERSION
|
||||
## @loc None
|
||||
1037=Version
|
||||
|
||||
# VCARD_LDAP_KEY
|
||||
## @name VCARD_LDAP_KEY
|
||||
## @loc None
|
||||
1038=Public Key
|
||||
|
||||
# VCARD_LDAP_LOGO
|
||||
## @name VCARD_LDAP_LOGO
|
||||
## @loc None
|
||||
1039=Logo
|
||||
|
||||
# VCARD_LDAP_BIRTHDAY
|
||||
## @name VCARD_LDAP_BIRTHDAY
|
||||
## @loc None
|
||||
1040=Birthday
|
||||
|
||||
# VCARD_LDAP_X400
|
||||
## @name VCARD_LDAP_X400
|
||||
## @loc None
|
||||
1041=X400
|
||||
|
||||
# VCARD_LDAP_ADDRESS
|
||||
## @name VCARD_LDAP_ADDRESS
|
||||
## @loc None
|
||||
1042=Address
|
||||
|
||||
# VCARD_LDAP_LABEL
|
||||
## @name VCARD_LDAP_LABEL
|
||||
## @loc None
|
||||
1043=Label
|
||||
|
||||
# VCARD_LDAP_MAILER
|
||||
## @name VCARD_LDAP_MAILER
|
||||
## @loc None
|
||||
1044=Mailer
|
||||
|
||||
# VCARD_LDAP_ROLE
|
||||
## @name VCARD_LDAP_ROLE
|
||||
## @loc None
|
||||
1045=Role
|
||||
|
||||
# VCARD_LDAP_UPDATEURL
|
||||
## @name VCARD_LDAP_UPDATEURL
|
||||
## @loc None
|
||||
1046=Update From
|
||||
|
||||
# VCARD_LDAP_COOLTALKADDRESS
|
||||
## @name VCARD_LDAP_COOLTALKADDRESS
|
||||
## @loc None
|
||||
1047=Conference Address
|
||||
|
||||
# VCARD_LDAP_USEHTML
|
||||
## @name VCARD_LDAP_USEHTML
|
||||
## @loc None
|
||||
1048=HTML Mail
|
||||
|
||||
# VCARD_MSG_ADD_TO_ADDR_BOOK
|
||||
## @name VCARD_MSG_ADD_TO_ADDR_BOOK
|
||||
## @loc None
|
||||
1049=Add to Personal Address Book
|
||||
|
||||
# VCARD_ADDR_ADDINFO
|
||||
## @name VCARD_ADDR_ADDINFO
|
||||
## @loc None
|
||||
1050=Additional Information:
|
||||
|
||||
# VCARD_ADDR_VIEW_COMPLETE_VCARD
|
||||
## @name VCARD_ADDR_VIEW_COMPLETE_VCARD
|
||||
## @loc None
|
||||
1051=View Complete Card
|
||||
|
||||
# VCARD_ADDR_VIEW_CONDENSED_VCARD
|
||||
## @name VCARD_ADDR_VIEW_CONDENSED_VCARD
|
||||
## @loc None
|
||||
1052=View Condensed Card
|
||||
|
||||
# VCARD_ADDR_CONFINFO
|
||||
## @name VCARD_ADDR_CONFINFO
|
||||
## @loc None
|
||||
1053=Conference Address
|
||||
|
||||
# VCARD_ADDR_DEFAULT_DLS
|
||||
## @name VCARD_ADDR_DEFAULT_DLS
|
||||
## @loc None
|
||||
1054=Default Directory Server
|
||||
|
||||
# VCARD_ADDR_SPECIFIC_DLS
|
||||
## @name VCARD_ADDR_SPECIFIC_DLS
|
||||
## @loc None
|
||||
1055=Specific Directory Server
|
||||
|
||||
# VCARD_ADDR_HOSTNAMEIP
|
||||
## @name VCARD_ADDR_HOSTNAMEIP
|
||||
## @loc None
|
||||
1056=Hostname or IP Address
|
||||
|
||||
# VCARD_LDAP_PHONE_NUMBER
|
||||
## @name VCARD_LDAP_PHONE_NUMBER
|
||||
## @loc None
|
||||
1057=Phone Number
|
||||
|
||||
# VCARD_LDAP_PHOTOGRAPH
|
||||
## @name VCARD_LDAP_PHOTOGRAPH
|
||||
## @loc None
|
||||
1058=Photograph
|
||||
|
||||
# VCARD_LDAP_EMAIL_ADDRESS
|
||||
## @name VCARD_LDAP_EMAIL_ADDRESS
|
||||
## @loc None
|
||||
1059=Email
|
||||
|
||||
# VCARD_LDAP_SURNAME
|
||||
## @name VCARD_LDAP_SURNAME
|
||||
## @loc None
|
||||
1060=Last Name
|
||||
|
||||
# VCARD_LDAP_GIVEN_NAME
|
||||
## @name VCARD_LDAP_GIVEN_NAME
|
||||
## @loc None
|
||||
1061=First Name
|
||||
|
||||
# VCARD_LDAP_SECRETARY
|
||||
## @name VCARD_LDAP_SECRETARY
|
||||
## @loc None
|
||||
1062=Administrative Assistant
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from "mime_en.properties"
|
||||
#
|
||||
# The following are used by libmime to emit header display in HTML
|
||||
#
|
||||
|
@ -1,220 +0,0 @@
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# The following are used by libmime to emit header display in HTML
|
||||
#
|
||||
|
||||
# Out of memory
|
||||
## @name MIME_OUT_OF_MEMORY
|
||||
## @loc None
|
||||
-1000=Application is out of memory.
|
||||
|
||||
# Can't open a temp file
|
||||
## @name MIME_UNABLE_TO_OPEN_TMP_FILE
|
||||
## @loc None
|
||||
-1001=Unable to open the temporary file\n%.200s.\n\n\Check your `Temporary Directory' setting and try again.
|
||||
|
||||
# Can't write temp file
|
||||
## @name MIME_ERROR_WRITING_FILE
|
||||
## @loc None
|
||||
-1002=Error writing temporary file.
|
||||
|
||||
# Mail subject
|
||||
## @name MIME_MHTML_SUBJECT
|
||||
## @loc None
|
||||
1000=Subject
|
||||
|
||||
# Resent-Comments
|
||||
## @name MIME_MHTML_RESENT_COMMENTS
|
||||
## @loc
|
||||
1001=Resent-Comments
|
||||
|
||||
# Resent-Date
|
||||
## @name MIME_MHTML_RESENT_DATE
|
||||
## @loc
|
||||
1002=Resent-Date
|
||||
|
||||
# Resent-Sender
|
||||
## @name MIME_MHTML_RESENT_SENDER
|
||||
## @loc
|
||||
1003=Resent-Sender
|
||||
|
||||
# Resent-From
|
||||
## @name MIME_MHTML_RESENT_FROM
|
||||
## @loc
|
||||
1004=Resent-From
|
||||
|
||||
# Resent-To
|
||||
## @name MIME_MHTML_RESENT_TO
|
||||
## @loc
|
||||
1005=Resent-To
|
||||
|
||||
# Resent-CC
|
||||
## @name MIME_MHTML_RESENT_CC
|
||||
## @loc
|
||||
1006=Resent-CC
|
||||
|
||||
# Date
|
||||
## @name MIME_MHTML_DATE
|
||||
## @loc
|
||||
1007=Date
|
||||
|
||||
# Sender
|
||||
## @name MIME_MHTML_SENDER
|
||||
## @loc
|
||||
1008=Sender
|
||||
|
||||
# From
|
||||
## @name MIME_MHTML_FROM
|
||||
## @loc
|
||||
1009=From
|
||||
|
||||
# Reply-To
|
||||
## @name MIME_MHTML_REPLY_TO
|
||||
## @loc
|
||||
1010=Reply-To
|
||||
|
||||
# Organization
|
||||
## @name MIME_MHTML_ORGANIZATION
|
||||
## @loc
|
||||
1011=Organization
|
||||
|
||||
# To
|
||||
## @name MIME_MHTML_TO
|
||||
## @loc
|
||||
1012=To
|
||||
|
||||
# CC
|
||||
## @name MIME_MHTML_CC
|
||||
## @loc
|
||||
1013=CC
|
||||
|
||||
# Newsgroups
|
||||
## @name MIME_MHTML_NEWSGROUPS
|
||||
## @loc
|
||||
1014=Newsgroups
|
||||
|
||||
# Followup-To
|
||||
## @name MIME_MHTML_FOLLOWUP_TO
|
||||
## @loc
|
||||
1015=Followup-To
|
||||
|
||||
# References
|
||||
## @name MIME_MHTML_REFERENCES
|
||||
## @loc
|
||||
1016=References
|
||||
|
||||
# Name
|
||||
## @name MIME_MHTML_NAME
|
||||
## @loc
|
||||
1017=Name
|
||||
|
||||
# Type
|
||||
## @name MIME_MHTML_TYPE
|
||||
## @loc
|
||||
1018=Type
|
||||
|
||||
# Encoding
|
||||
## @name MIME_MHTML_ENCODING
|
||||
## @loc
|
||||
1019=Encoding
|
||||
|
||||
# Description
|
||||
## @name MIME_MHTML_DESCRIPTION
|
||||
## @loc
|
||||
1020=Description
|
||||
|
||||
# Message ID
|
||||
## @name MIME_MHTML_MESSAGE_ID
|
||||
## @loc
|
||||
1021=Message-ID
|
||||
|
||||
# Resent Message ID
|
||||
## @name MIME_MHTML_RESENT_MESSAGE_ID
|
||||
## @loc
|
||||
1022=Resent-Message-ID
|
||||
|
||||
# BCC
|
||||
## @name MIME_MHTML_BCC
|
||||
## @loc
|
||||
1023=BCC
|
||||
|
||||
# Download Status
|
||||
## @name MIME_MHTML_DOWNLOAD_STATUS_HEADER
|
||||
## @loc
|
||||
1024=Download Status
|
||||
|
||||
# Download status not downloaded
|
||||
## @name MIME_MHTML_DOWNLOAD_STATUS_NOT_DOWNLOADED
|
||||
## @loc
|
||||
1025=Not Downloaded Inline
|
||||
|
||||
# Link to doc
|
||||
## @name MIME_MSG_LINK_TO_DOCUMENT
|
||||
## @loc
|
||||
1026=Link to Document
|
||||
|
||||
# Get Doc info
|
||||
## @name MIME_MSG_DOCUMENT_INFO
|
||||
## @loc
|
||||
1027=<B>Document Info:</B>
|
||||
|
||||
# Msg Attachment
|
||||
## @name MIME_MSG_ATTACHMENT
|
||||
## @loc
|
||||
1028=Attachment
|
||||
|
||||
# Forwarded Msg Attachment
|
||||
## @name MIME_FORWARDED_MESSAGE_ATTACHMENT
|
||||
## @loc
|
||||
1029=forward.msg
|
||||
|
||||
# Mouseover text
|
||||
## @name MIME_MSG_ADDBOOK_MOUSEOVER_TEXT
|
||||
## @loc
|
||||
1030=Add %s to your Address Book
|
||||
|
||||
# XSender Internal
|
||||
## @name MIME_MSG_XSENDER_INTERNAL
|
||||
## @loc
|
||||
1031=<B><FONT COLOR=\042#808080\042> Internal</FONT></B>
|
||||
|
||||
# User wrote
|
||||
## @name MIME_MSG_X_USER_WROTE
|
||||
## @loc
|
||||
1032=In message %s %s wrote:<P>
|
||||
|
||||
# Msg user wrote
|
||||
## @name MIME_MSG_USER_WROTE
|
||||
## @loc
|
||||
1033=%s wrote:<P>
|
||||
|
||||
# No Headers
|
||||
## @name MIME_MSG_NO_HEADERS
|
||||
## @loc
|
||||
1034=(no headers)
|
||||
|
||||
# No Headers
|
||||
## @name MIME_MSG_SHOW_ATTACHMENT_PANE
|
||||
## @loc
|
||||
1035=Toggle Attachment Pane
|
||||
|
||||
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from "mimeheader_en.properties".
|
||||
#
|
||||
# The following are used by libmime for header display in XML & HTML
|
||||
#
|
||||
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from "imapMsgs_en-US.properties.
|
||||
#
|
||||
# The following are used by the imap code to display progress/status/error messages
|
||||
#
|
||||
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from localMsgs_en-US.properties.
|
||||
#
|
||||
# The following are used by the local mail code to display progress/status/error messages
|
||||
#
|
||||
|
26
suite/locales/en-US/chrome/mailnews/messenger.properties
Normal file
26
suite/locales/en-US/chrome/mailnews/messenger.properties
Normal file
@ -0,0 +1,26 @@
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Seth Spitzer <sspitzer@netscape.com>
|
||||
#
|
||||
|
||||
#
|
||||
# The following are used by the messenger application
|
||||
#
|
||||
newFolderDialogTitle=New Folder
|
||||
subscribeDialogTitle=Subscribe
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from "mime_en.properties"
|
||||
#
|
||||
# The following are used by libmime to emit header display in HTML
|
||||
#
|
||||
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from "mimeheader_en.properties".
|
||||
#
|
||||
# The following are used by libmime for header display in XML & HTML
|
||||
#
|
||||
|
@ -18,8 +18,6 @@
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
#
|
||||
# This file is renamed from vcard_en.properties
|
||||
#
|
||||
# The following are used by the vcard content type handler to
|
||||
# to emit header display in HTML
|
||||
|
Loading…
x
Reference in New Issue
Block a user