move global locale files into en-US
#20296 r=hangas git-svn-id: svn://10.0.0.236/trunk@58877 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
c751ef5f8d
commit
6f8c2333e2
@ -395,8 +395,8 @@ sub MakeResourceAliases()
|
||||
_InstallResources(":mozilla:xpfe:global:resources:content:mac:MANIFEST", "$global_chrome_dir:content:default");
|
||||
_InstallResources(":mozilla:xpfe:global:resources:skin:MANIFEST", "$global_chrome_dir:skin:default");
|
||||
_InstallResources(":mozilla:xpfe:global:resources:skin:MANIFEST_CHROME", "$chrome_dir");
|
||||
_InstallResources(":mozilla:xpfe:global:resources:locale:MANIFEST", "$global_chrome_dir:locale:en-US:", 0);
|
||||
_InstallResources(":mozilla:xpfe:global:resources:locale:mac:MANIFEST", "$global_chrome_dir:locale:en-US:", 0);
|
||||
_InstallResources(":mozilla:xpfe:global:resources:locale:en-US:MANIFEST", "$global_chrome_dir:locale:en-US:", 0);
|
||||
_InstallResources(":mozilla:xpfe:global:resources:locale:en-US:mac:MANIFEST", "$global_chrome_dir:locale:en-US:", 0);
|
||||
|
||||
_InstallResources(":mozilla:docshell:base:MANIFEST", "$global_chrome_dir:locale:en-US:", 0);
|
||||
|
||||
|
||||
@ -26,22 +26,7 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = unix
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/globalOverlay.dtd \
|
||||
$(srcdir)/dialogOverlay.dtd \
|
||||
$(srcdir)/tasksOverlay.dtd \
|
||||
$(srcdir)/commonDialog.dtd \
|
||||
$(srcdir)/charsetOverlay.dtd \
|
||||
$(srcdir)/charsetDetectorsOverlay.dtd \
|
||||
$(srcdir)/wizardManager.properties \
|
||||
$(srcdir)/wizardOverlay.dtd \
|
||||
$(srcdir)/about.dtd \
|
||||
$(NULL)
|
||||
DIRS = en-US
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/global/locale/en-US
|
||||
|
||||
|
||||
47
mozilla/xpfe/global/resources/locale/en-US/Makefile.in
Normal file
47
mozilla/xpfe/global/resources/locale/en-US/Makefile.in
Normal file
@ -0,0 +1,47 @@
|
||||
#
|
||||
# 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):
|
||||
#
|
||||
|
||||
DEPTH = ../../../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = unix
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/globalOverlay.dtd \
|
||||
$(srcdir)/dialogOverlay.dtd \
|
||||
$(srcdir)/tasksOverlay.dtd \
|
||||
$(srcdir)/commonDialog.dtd \
|
||||
$(srcdir)/charsetOverlay.dtd \
|
||||
$(srcdir)/charsetDetectorsOverlay.dtd \
|
||||
$(srcdir)/wizardManager.properties \
|
||||
$(srcdir)/wizardOverlay.dtd \
|
||||
$(srcdir)/about.dtd \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/global/locale/en-US
|
||||
|
||||
2
mozilla/xpfe/global/resources/locale/en-US/mac/MANIFEST
Normal file
2
mozilla/xpfe/global/resources/locale/en-US/mac/MANIFEST
Normal file
@ -0,0 +1,2 @@
|
||||
platformDialogOverlay.dtd
|
||||
platformGlobalOverlay.dtd
|
||||
@ -0,0 +1,5 @@
|
||||
<!-- mac -->
|
||||
|
||||
<!-- OK Cancel Buttons -->
|
||||
<!ENTITY okButton.label "OK">
|
||||
<!ENTITY cancelButton.label "Cancel">
|
||||
@ -0,0 +1,10 @@
|
||||
<!-- mac -->
|
||||
<!-- LOCALIZATION NOTE : FILE Do not translate all the Cmd.key-->
|
||||
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY quitApplicationCmd.label "Quit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Z">
|
||||
43
mozilla/xpfe/global/resources/locale/en-US/makefile.win
Normal file
43
mozilla/xpfe/global/resources/locale/en-US/makefile.win
Normal file
@ -0,0 +1,43 @@
|
||||
#!nmake
|
||||
#
|
||||
# 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):
|
||||
|
||||
DEPTH=..\..\..\..\..
|
||||
|
||||
DIRS=win
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
DISTBROWSER=$(DIST)\bin\chrome\global\locale\en-US
|
||||
|
||||
|
||||
install::
|
||||
$(MAKE_INSTALL) globalOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) dialogOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) tasksOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) commonDialog.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) charsetOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) charsetDetectorsOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) wizardManager.properties $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) wizardOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) about.dtd $(DISTBROWSER)
|
||||
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\chrome\global\locale\en-US\*.*
|
||||
38
mozilla/xpfe/global/resources/locale/en-US/unix/Makefile.in
Normal file
38
mozilla/xpfe/global/resources/locale/en-US/unix/Makefile.in
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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):
|
||||
#
|
||||
|
||||
DEPTH = ../../../../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
EXPORT_RESOURCE_CONTENT = \
|
||||
$(srcdir)/platformGlobalOverlay.dtd \
|
||||
$(srcdir)/platformDialogOverlay.dtd \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
install::
|
||||
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/global/locale/en-US
|
||||
|
||||
@ -0,0 +1,5 @@
|
||||
<!-- unix -->
|
||||
|
||||
<!-- OK Cancel Buttons -->
|
||||
<!ENTITY okButton.label "OK">
|
||||
<!ENTITY cancelButton.label "Cancel">
|
||||
@ -0,0 +1,14 @@
|
||||
<!-- unix -->
|
||||
<!-- LOCALIZATION NOTE : FILE Do not translate all the Cmd.key and accesskey -->
|
||||
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.accesskey "c">
|
||||
|
||||
<!ENTITY quitApplicationCmd.label "Quit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
<!ENTITY quitApplicationCmd.accesskey "q">
|
||||
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Z">
|
||||
<!ENTITY redoCmd.accesskey "r">
|
||||
34
mozilla/xpfe/global/resources/locale/en-US/win/makefile.win
Normal file
34
mozilla/xpfe/global/resources/locale/en-US/win/makefile.win
Normal file
@ -0,0 +1,34 @@
|
||||
#!nmake
|
||||
#
|
||||
# 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):
|
||||
|
||||
DEPTH=..\..\..\..\..\..
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
DISTBROWSER=$(DIST)\bin\chrome\global\locale\en-US
|
||||
|
||||
|
||||
install::
|
||||
$(MAKE_INSTALL) platformGlobalOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) platformDialogOverlay.dtd $(DISTBROWSER)
|
||||
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\chrome\global\locale\en-US\*.*
|
||||
@ -0,0 +1,5 @@
|
||||
<!-- win -->
|
||||
|
||||
<!-- OK Cancel Buttons -->
|
||||
<!ENTITY okButton.label "OK">
|
||||
<!ENTITY cancelButton.label "Cancel">
|
||||
@ -0,0 +1,14 @@
|
||||
<!-- win -->
|
||||
<!-- LOCALIZATION NOTE : FILE Do not translate all the Cmd.key and accesskey -->
|
||||
|
||||
<!ENTITY closeCmd.label "Close">
|
||||
<!ENTITY closeCmd.key "W">
|
||||
<!ENTITY closeCmd.accesskey "c">
|
||||
|
||||
<!ENTITY quitApplicationCmd.label "Quit">
|
||||
<!ENTITY quitApplicationCmd.key "Q">
|
||||
<!ENTITY quitApplicationCmd.accesskey "q">
|
||||
|
||||
<!ENTITY redoCmd.label "Redo">
|
||||
<!ENTITY redoCmd.key "Y">
|
||||
<!ENTITY redoCmd.accesskey "r">
|
||||
@ -21,23 +21,7 @@
|
||||
|
||||
DEPTH=..\..\..\..
|
||||
|
||||
DIRS=win
|
||||
DIRS=en-US
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
DISTBROWSER=$(DIST)\bin\chrome\global\locale\en-US
|
||||
|
||||
|
||||
install::
|
||||
$(MAKE_INSTALL) globalOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) dialogOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) tasksOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) commonDialog.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) charsetOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) charsetDetectorsOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) wizardManager.properties $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) wizardOverlay.dtd $(DISTBROWSER)
|
||||
$(MAKE_INSTALL) about.dtd $(DISTBROWSER)
|
||||
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\chrome\global\locale\en-US\*.*
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user