This commit is contained in:
alecf%netscape.com 1999-08-30 22:03:42 +00:00
Родитель bbef8d7223
Коммит cd890e0bf3
10 изменённых файлов: 207 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,23 @@
<!-- extracted from FilterEditor.xul -->
<!ENTITY subject.label "subject">
<!ENTITY sender.label "sender">
<!ENTITY date.label "date">
<!ENTITY anyText.label "any text">
<!ENTITY keyword.label "keyword">
<!ENTITY age.label "age in days">
<!ENTITY contains.label "contains">
<!ENTITY nocontains.label "doesn't contain">
<!ENTITY description.label "Description:">
<!ENTITY matchAny.label "Match any of the following">
<!ENTITY matchAll.label "Match all of the following">
<!ENTITY filterAction.label "Filter Action:">
<!ENTITY moveToFolder.label "Move To Folder">
<!ENTITY changePriority.label "Change Priority">
<!ENTITY delete.label "Delete">
<!ENTITY markRead.label "Mark read">
<!ENTITY ignoreThread.label "Ignore thread">
<!ENTITY watchThread.label "Watch thread">
<!ENTITY newFolderButton.label "New Folder...">
<!ENTITY more.label "More">
<!ENTITY less.label "Less">

Просмотреть файл

@ -0,0 +1,12 @@
<!-- extracted from FilterListDialog.xul -->
<!ENTITY numberColumn.label "Number">
<!ENTITY nameColumn.label "Name">
<!ENTITY activeColumn.label "Active">
<!ENTITY newButton.label "New">
<!ENTITY editButton.label "Edit">
<!ENTITY deleteButton.label "Delete">
<!ENTITY logFilterUseCheckbox.label "Log Filter Use">
<!ENTITY viewLogButton.label "View Log">
<!ENTITY description.label "Description">
<!ENTITY filterHeader.label "Filters will be applied in the following order:">

Просмотреть файл

@ -0,0 +1,4 @@
FilterEditor.dtd
FilterListDialog.dtd
SearchDialog.dtd
SearchOptions.dtd

Просмотреть файл

@ -0,0 +1,47 @@
#!gmake
#
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
# compliance with the NPL. You may obtain a copy of the NPL at
# http://www.mozilla.org/NPL/
#
# Software distributed under the NPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
# for the specific language governing rights and limitations under the
# NPL.
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
DEPTH = ../../../../../..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk
SAMPLES_DIR = $(DIST)/bin/chrome/messenger/locale/en-US
EXPORT_RESOURCE_SAMPLES = \
$(srcdir)/SearchDialog.xul \
$(srcdir)/SearchOptions.xul \
$(srcdir)/SearchDialog.js \
$(srcdir)/FilterListDialog.xul \
$(srcdir)/FilterListDialog.js \
$(srcdir)/FilterEditor.xul \
$(srcdir)/FilterEditor.js \
$(NULL)
EXPORT_RESOURCE_SAMPLES_TO_REMOVE := $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(EXPORT_RESOURCE_SAMPLES) $(SAMPLES_DIR)
clobber::
$(RM) $(EXPORT_RESOURCE_SAMPLES_TO_REMOVE)

Просмотреть файл

@ -0,0 +1,20 @@
<!-- extracted from SearchDialog.xul -->
<!ENTITY searchHeading.label "Search for messages in:">
<!ENTITY matchAll.label "Match all of the following:">
<!ENTITY matchAny.label "Match any of the following:">
<!ENTITY scopeSubject.label "subject">
<!ENTITY scopeSender.label "sender">
<!ENTITY scopeDate.label "date">
<!ENTITY scopeText.label "any text">
<!ENTITY scopeKeyword.label "keyword">
<!ENTITY scopeAgeDays.label "age in days">
<!ENTITY critContains.label "contains">
<!ENTITY critNotContains.label "doesn't contain">
<!ENTITY buttonMore.label "More">
<!ENTITY buttonFewer.label "Fewer">
<!ENTITY buttonClear.label "Clear">
<!ENTITY buttonSearch.label "Search">
<!ENTITY buttonOptions.label "Options">
<!ENTITY buttonClose.label "Close">
<!ENTITY searchDialogTitle.label "Search Messages">

Просмотреть файл

@ -0,0 +1,9 @@
<!-- extracted from SearchOptions.xul -->
<!ENTITY searchOptionsTitle.label "Search Options">
<!ENTITY searchSubfoldersCheckbox.label "Search Subfolders">
<!ENTITY localRemoteTitle.label "When online, search for messages:">
<!ENTITY localSearchRadio.label "on your local system">
<!ENTITY removeSearchRadio.label "on the specified serer">
<!ENTITY ok.label "OK">
<!ENTITY cancel.label "Cancel">

Просмотреть файл

@ -0,0 +1,37 @@
#!nmake
#
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
# compliance with the NPL. You may obtain a copy of the NPL at
# http://www.mozilla.org/NPL/
#
# Software distributed under the NPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
# for the specific language governing rights and limitations under the
# NPL.
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
DEPTH=..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) .\SearchDialog.xul $(DIST)\bin\chrome\messenger\locale\en-US
$(MAKE_INSTALL) .\SearchOptions.xul $(DIST)\bin\chrome\messenger\locale\en-US
$(MAKE_INSTALL) .\SearchDialog.js $(DIST)\bin\chrome\messenger\locale\en-US
$(MAKE_INSTALL) .\FilterListDialog.xul $(DIST)\bin\chrome\messenger\locale\en-US
$(MAKE_INSTALL) .\FilterListDialog.js $(DIST)\bin\chrome\messenger\locale\en-US
$(MAKE_INSTALL) .\FilterEditor.xul $(DIST)\bin\chrome\messenger\locale\en-US
$(MAKE_INSTALL) .\FilterEditor.js $(DIST)\bin\chrome\messenger\locale\en-US
clobber::
rm -f $(DIST)\chrome\messenger\locale\en-US\SearchDialog.xul
rm -f $(DIST)\chrome\messenger\locale\en-US\SearchDialog.js
rm -f $(DIST)\chrome\messenger\locale\en-US\FilterListDialog.xul
rm -f $(DIST)\chrome\messenger\locale\en-US\FilterListDialog.js
rm -f $(DIST)\chrome\messenger\locale\en-US\FilterEditor.xul
rm -f $(DIST)\chrome\messenger\locale\en-US\FilterEditor.js

Просмотреть файл

@ -0,0 +1,23 @@
<!-- extracted from FilterEditor.xul -->
<!ENTITY subject.label "subject">
<!ENTITY sender.label "sender">
<!ENTITY date.label "date">
<!ENTITY anyText.label "any text">
<!ENTITY keyword.label "keyword">
<!ENTITY age.label "age in days">
<!ENTITY contains.label "contains">
<!ENTITY nocontains.label "doesn't contain">
<!ENTITY description.label "Description:">
<!ENTITY matchAny.label "Match any of the following">
<!ENTITY matchAll.label "Match all of the following">
<!ENTITY filterAction.label "Filter Action:">
<!ENTITY moveToFolder.label "Move To Folder">
<!ENTITY changePriority.label "Change Priority">
<!ENTITY delete.label "Delete">
<!ENTITY markRead.label "Mark read">
<!ENTITY ignoreThread.label "Ignore thread">
<!ENTITY watchThread.label "Watch thread">
<!ENTITY newFolderButton.label "New Folder...">
<!ENTITY more.label "More">
<!ENTITY less.label "Less">

Просмотреть файл

@ -0,0 +1,12 @@
<!-- extracted from FilterListDialog.xul -->
<!ENTITY numberColumn.label "Number">
<!ENTITY nameColumn.label "Name">
<!ENTITY activeColumn.label "Active">
<!ENTITY newButton.label "New">
<!ENTITY editButton.label "Edit">
<!ENTITY deleteButton.label "Delete">
<!ENTITY logFilterUseCheckbox.label "Log Filter Use">
<!ENTITY viewLogButton.label "View Log">
<!ENTITY description.label "Description">
<!ENTITY filterHeader.label "Filters will be applied in the following order:">

Просмотреть файл

@ -0,0 +1,20 @@
<!-- extracted from SearchDialog.xul -->
<!ENTITY searchHeading.label "Search for messages in:">
<!ENTITY matchAll.label "Match all of the following:">
<!ENTITY matchAny.label "Match any of the following:">
<!ENTITY scopeSubject.label "subject">
<!ENTITY scopeSender.label "sender">
<!ENTITY scopeDate.label "date">
<!ENTITY scopeText.label "any text">
<!ENTITY scopeKeyword.label "keyword">
<!ENTITY scopeAgeDays.label "age in days">
<!ENTITY critContains.label "contains">
<!ENTITY critNotContains.label "doesn't contain">
<!ENTITY buttonMore.label "More">
<!ENTITY buttonFewer.label "Fewer">
<!ENTITY buttonClear.label "Clear">
<!ENTITY buttonSearch.label "Search">
<!ENTITY buttonOptions.label "Options">
<!ENTITY buttonClose.label "Close">
<!ENTITY searchDialogTitle.label "Search Messages">