diff options
author | initial.commit@chromium.org <initial.commit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-02 02:14:31 +0000 |
---|---|---|
committer | initial.commit@chromium.org <initial.commit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-02 02:14:31 +0000 |
commit | 5a7bdf208c28c210b39cff63d1cf91302b02821b (patch) | |
tree | 5ff484561562f78b29d2670168a9e3b40b48dcab /ceee/firefox/locale | |
parent | 26a54a5e0f4603c8fda2fe51789d331125993c9a (diff) | |
download | chromium_src-5a7bdf208c28c210b39cff63d1cf91302b02821b.zip chromium_src-5a7bdf208c28c210b39cff63d1cf91302b02821b.tar.gz chromium_src-5a7bdf208c28c210b39cff63d1cf91302b02821b.tar.bz2 |
Checking in the initial version of CEEE (Chrome Extensions Execution
Environment), an optional feature of Chrome Frame that acts as an
adapter layer for a subset of the Chrome Extension APIs. This enables
extensions that stick to the supported subset of APIs to work in the
context of Chrome Frame with minimal or sometimes no changes.
See http://www.chromium.org/developers/design-documents/ceee for an
overview of the design of CEEE.
TEST=unit tests (run ceee/smoke_tests.bat as an administrator on Windows)
BUG=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64712 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee/firefox/locale')
-rw-r--r-- | ceee/firefox/locale/en-US/about.dtd | 10 | ||||
-rw-r--r-- | ceee/firefox/locale/en-US/ceee.dtd | 11 | ||||
-rw-r--r-- | ceee/firefox/locale/en-US/ceee.properties | 4 | ||||
-rw-r--r-- | ceee/firefox/locale/en-US/options.dtd | 14 |
4 files changed, 39 insertions, 0 deletions
diff --git a/ceee/firefox/locale/en-US/about.dtd b/ceee/firefox/locale/en-US/about.dtd new file mode 100644 index 0000000..6d426cd --- /dev/null +++ b/ceee/firefox/locale/en-US/about.dtd @@ -0,0 +1,10 @@ +<!-- Copyright (c) 2010 The Chromium Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. + + Defines string substitutions for the about.xul file. + --> +<!ENTITY about "About"> +<!ENTITY version "Version:"> +<!ENTITY createdBy "Created By:"> +<!ENTITY homepage "Home Page:"> diff --git a/ceee/firefox/locale/en-US/ceee.dtd b/ceee/firefox/locale/en-US/ceee.dtd new file mode 100644 index 0000000..4c227710 --- /dev/null +++ b/ceee/firefox/locale/en-US/ceee.dtd @@ -0,0 +1,11 @@ +<!-- Copyright (c) 2010 The Chromium Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. + + Defines string substitutions for the overlay.xul file. + --> +<!ENTITY ceee.browser.label "Google Chrome Extensions Execution Environment"> +<!ENTITY ceee.browser.tooltip "Google Chrome Extensions Execution Environment"> + +<!ENTITY ceee.toolstrip.label "Google Chrome Extensions Execution Environment"> +<!ENTITY ceee.toolstrip.accesskey "G"> diff --git a/ceee/firefox/locale/en-US/ceee.properties b/ceee/firefox/locale/en-US/ceee.properties new file mode 100644 index 0000000..cd726cb --- /dev/null +++ b/ceee/firefox/locale/en-US/ceee.properties @@ -0,0 +1,4 @@ +helloMessage=Google Chrome Extensions Execution Environment
+helloMessageTitle=Google Chrome Extensions Execution Environment
+prefMessage=Int Pref Value: %d
+extensions.ceee.description=Enable Google Chrome Extensions in Firefox.
diff --git a/ceee/firefox/locale/en-US/options.dtd b/ceee/firefox/locale/en-US/options.dtd new file mode 100644 index 0000000..c520b86 --- /dev/null +++ b/ceee/firefox/locale/en-US/options.dtd @@ -0,0 +1,14 @@ +<!-- Copyright (c) 2010 The Chromium Authors. All rights reserved. + Use of this source code is governed by a BSD-style license that can be + found in the LICENSE file. + + Defines string substitutions for the overlay.xul file. + --> +<!ENTITY options.title "Google Chrome Extensions Execution Environment Options"> +<!ENTITY options.path.accesskey "P"> +<!ENTITY options.path.label "Chrome Extension Path (Set to load extension from a specific location on disk)"> +<!ENTITY options.url.accesskey "U"> +<!ENTITY options.url.label "Chrome Extension URL (Set only to load from a URL that is not the default for the extension)"> +<!ENTITY options.debug.accesskey "D"> +<!ENTITY options.debug.label "Enable debugging of content scripts"> +<!ENTITY options.restart.text "[The browser must be restarted after any change is made.]"> |