From 2ab4d666fb3909c45718ebe5e85725a1c72f754e Mon Sep 17 00:00:00 2001 From: JustOff Date: Mon, 18 Jun 2018 18:51:16 +0300 Subject: Correct the browser and platform names in `devtools\client` --- devtools/client/locales/en-US/aboutdebugging.dtd | 6 +++++- devtools/client/locales/en-US/connection-screen.dtd | 6 +++++- devtools/client/locales/en-US/markers.properties | 12 ++++++------ devtools/client/locales/en-US/performance.dtd | 16 ++++++++++------ devtools/client/locales/en-US/performance.properties | 2 +- devtools/client/locales/en-US/responsive.properties | 2 +- devtools/client/locales/en-US/sourceeditor.properties | 2 +- devtools/client/locales/en-US/toolbox.dtd | 4 ++-- devtools/client/locales/en-US/webide.dtd | 8 ++++++-- devtools/client/locales/en-US/webide.properties | 4 ++-- 10 files changed, 39 insertions(+), 23 deletions(-) (limited to 'devtools/client') diff --git a/devtools/client/locales/en-US/aboutdebugging.dtd b/devtools/client/locales/en-US/aboutdebugging.dtd index 1f38a9443..2b2615c10 100644 --- a/devtools/client/locales/en-US/aboutdebugging.dtd +++ b/devtools/client/locales/en-US/aboutdebugging.dtd @@ -2,4 +2,8 @@ - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> - + + %brandDTD; + + diff --git a/devtools/client/locales/en-US/connection-screen.dtd b/devtools/client/locales/en-US/connection-screen.dtd index 674a408d5..15d70f764 100644 --- a/devtools/client/locales/en-US/connection-screen.dtd +++ b/devtools/client/locales/en-US/connection-screen.dtd @@ -7,6 +7,10 @@ - in the Web Developer menu. - --> + + %brandDTD; + @@ -24,7 +28,7 @@ - + diff --git a/devtools/client/locales/en-US/markers.properties b/devtools/client/locales/en-US/markers.properties index 11fe9bd7f..81e68fef0 100644 --- a/devtools/client/locales/en-US/markers.properties +++ b/devtools/client/locales/en-US/markers.properties @@ -141,7 +141,7 @@ marker.nurseryCollection=Nursery Collection # These strings are used to give an expanded description of why a GC occurred. marker.gcreason.description.API=There was an API call to force garbage collection. marker.gcreason.description.EAGER_ALLOC_TRIGGER=JavaScript returned to the event loop and there were enough bytes allocated since the last GC that a new GC cycle was triggered. -marker.gcreason.description.DESTROY_RUNTIME=Firefox destroyed a JavaScript runtime or context, and this was the final garbage collection before shutting down. +marker.gcreason.description.DESTROY_RUNTIME=The browser destroyed a JavaScript runtime or context, and this was the final garbage collection before shutting down. marker.gcreason.description.LAST_DITCH=JavaScript attempted to allocate, but there was no memory available. Doing a full compacting garbage collection as an attempt to free up memory for the allocation. marker.gcreason.description.TOO_MUCH_MALLOC=JavaScript allocated too many bytes, and forced a garbage collection. marker.gcreason.description.ALLOC_TRIGGER=JavaScript allocated too many times, and forced a garbage collection. @@ -152,7 +152,7 @@ marker.gcreason.description.OUT_OF_NURSERY=JavaScript allocated enough new objec marker.gcreason.description.EVICT_NURSERY=Work needed to be done on the tenured heap, requiring the nursery to be empty. marker.gcreason.description.FULL_STORE_BUFFER=There were too many properties on tenured objects whose value was an object in the nursery. marker.gcreason.description.SHARED_MEMORY_LIMIT=A large allocation was requested, but there was not enough memory. -marker.gcreason.description.PERIODIC_FULL_GC=JavaScript returned to the event loop, and it has been a relatively long time since Firefox performed a garbage collection. +marker.gcreason.description.PERIODIC_FULL_GC=JavaScript returned to the event loop, and it has been a relatively long time since the browser performed a garbage collection. marker.gcreason.description.INCREMENTAL_TOO_SLOW=A full, non-incremental garbage collection was triggered because there was a faster rate of allocations than the existing incremental garbage collection cycle could keep up with. marker.gcreason.description.COMPONENT_UTILS=Components.utils.forceGC() was called to force a garbage collection. marker.gcreason.description.MEM_PRESSURE=There was very low memory available. @@ -160,7 +160,7 @@ marker.gcreason.description.CC_WAITING=The cycle collector required a garbage co marker.gcreason.description.CC_FORCED=The cycle collector required a garbage collection. marker.gcreason.description.LOAD_END=The document finished loading. marker.gcreason.description.PAGE_HIDE=The tab or window was moved to the background. -marker.gcreason.description.NSJSCONTEXT_DESTROY=Firefox destroyed a JavaScript runtime or context, and this was the final garbage collection before shutting down. +marker.gcreason.description.NSJSCONTEXT_DESTROY=The browser destroyed a JavaScript runtime or context, and this was the final garbage collection before shutting down. marker.gcreason.description.SET_NEW_DOCUMENT=The page has been navigated to a new document. marker.gcreason.description.SET_DOC_SHELL=The page has been navigated to a new document. marker.gcreason.description.DOM_UTILS=There was an API call to force garbage collection. @@ -168,7 +168,7 @@ marker.gcreason.description.DOM_IPC=Received an inter-process message that reque marker.gcreason.description.DOM_WORKER=The worker was idle for a relatively long time. marker.gcreason.description.INTER_SLICE_GC=There has been a relatively long time since the last incremental GC slice. marker.gcreason.description.FULL_GC_TIMER=JavaScript returned to the event loop, and it has been a relatively long time since we performed a garbage collection. -marker.gcreason.description.SHUTDOWN_CC=Firefox destroyed a JavaScript runtime or context, and this was the final garbage collection before shutting down. -marker.gcreason.description.FINISH_LARGE_EVALUATE=Firefox finished evaluating a large script, and performed a GC because the script will never be run again. +marker.gcreason.description.SHUTDOWN_CC=The browser destroyed a JavaScript runtime or context, and this was the final garbage collection before shutting down. +marker.gcreason.description.FINISH_LARGE_EVALUATE=The browser finished evaluating a large script, and performed a GC because the script will never be run again. marker.gcreason.description.DOM_WINDOW_UTILS=The user was inactive for a long time. Took the opportunity to perform GC when it was unlikely to be noticed. -marker.gcreason.description.USER_INACTIVE=The user was inactive for a long time. Firefox took the opportunity to perform GC when it was unlikely to be noticed. +marker.gcreason.description.USER_INACTIVE=The user was inactive for a long time. The browser took the opportunity to perform GC when it was unlikely to be noticed. diff --git a/devtools/client/locales/en-US/performance.dtd b/devtools/client/locales/en-US/performance.dtd index 4009ae104..bbbe339c0 100644 --- a/devtools/client/locales/en-US/performance.dtd +++ b/devtools/client/locales/en-US/performance.dtd @@ -11,6 +11,10 @@ - A good criteria is the language in which you'd find the best - documentation on web development on the web. --> + + %brandDTD; + @@ -18,12 +22,12 @@ - + - + - when running on a build that can run multiprocess browser, but just is not enabled. --> + @@ -88,10 +92,10 @@ - - + + - + +Goanna platform symbols"> diff --git a/devtools/client/locales/en-US/webide.dtd b/devtools/client/locales/en-US/webide.dtd index 5e1a80ccd..554488f6d 100644 --- a/devtools/client/locales/en-US/webide.dtd +++ b/devtools/client/locales/en-US/webide.dtd @@ -2,7 +2,11 @@ - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> - + + %brandDTD; + + @@ -59,7 +63,7 @@ - + diff --git a/devtools/client/locales/en-US/webide.properties b/devtools/client/locales/en-US/webide.properties index 2368ad7f1..af6e48516 100644 --- a/devtools/client/locales/en-US/webide.properties +++ b/devtools/client/locales/en-US/webide.properties @@ -2,8 +2,8 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -title_noApp=Firefox WebIDE -title_app=Firefox WebIDE: %S +title_noApp=WebIDE +title_app=WebIDE: %S runtimeButton_label=Select Runtime projectButton_label=Open App -- cgit v1.2.3