From ebe0f277d0d643109d2163a98b8a9bcd8f08dd88 Mon Sep 17 00:00:00 2001 From: JustOff Date: Thu, 19 Jul 2018 22:46:59 +0300 Subject: Fix a typo in aboutRights.dtd --- toolkit/locales/en-US/chrome/global/aboutRights.dtd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolkit/locales') diff --git a/toolkit/locales/en-US/chrome/global/aboutRights.dtd b/toolkit/locales/en-US/chrome/global/aboutRights.dtd index dfd5a1668..8ccbbb177 100644 --- a/toolkit/locales/en-US/chrome/global/aboutRights.dtd +++ b/toolkit/locales/en-US/chrome/global/aboutRights.dtd @@ -87,7 +87,7 @@ - + -- cgit v1.2.3 From e7f7100ba6759f30295dbc49f819ebb9c4785298 Mon Sep 17 00:00:00 2001 From: janekptacijarabaci Date: Wed, 1 Aug 2018 08:58:59 +0200 Subject: Bug 1335296 - Expand about:support WebGL information --- toolkit/locales/en-US/chrome/global/aboutSupport.properties | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'toolkit/locales') diff --git a/toolkit/locales/en-US/chrome/global/aboutSupport.properties b/toolkit/locales/en-US/chrome/global/aboutSupport.properties index 0bc612b79..115d91ca1 100644 --- a/toolkit/locales/en-US/chrome/global/aboutSupport.properties +++ b/toolkit/locales/en-US/chrome/global/aboutSupport.properties @@ -71,8 +71,14 @@ gpuRAM = RAM gpuDriverVersion = Driver Version gpuDriverDate = Driver Date gpuActive = Active -webglRenderer = WebGL Renderer -webgl2Renderer = WebGL2 Renderer +webgl1Renderer = WebGL 1 Renderer +webgl1Version = WebGL 1 GL Version +webgl1Extensions = WebGL 1 GL Extensions +webgl1WSIInfo = WebGL 1 WSI Info +webgl2Renderer = WebGL 2 Renderer +webgl2Version = WebGL 2 GL Version +webgl2Extensions = WebGL 2 GL Extensions +webgl2WSIInfo = WebGL 2 WSI Info GPU1 = GPU #1 GPU2 = GPU #2 blocklistedBug = Blocklisted due to known issues -- cgit v1.2.3 From d84ee90be10b67358a2a2340041337aec0cf04d8 Mon Sep 17 00:00:00 2001 From: janekptacijarabaci Date: Wed, 1 Aug 2018 09:34:24 +0200 Subject: Bug 1341957 - Add webgl.getSupportedExtensions() to about:support --- .../en-US/chrome/global/aboutSupport.properties | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'toolkit/locales') diff --git a/toolkit/locales/en-US/chrome/global/aboutSupport.properties b/toolkit/locales/en-US/chrome/global/aboutSupport.properties index 115d91ca1..564292e3d 100644 --- a/toolkit/locales/en-US/chrome/global/aboutSupport.properties +++ b/toolkit/locales/en-US/chrome/global/aboutSupport.properties @@ -71,14 +71,16 @@ gpuRAM = RAM gpuDriverVersion = Driver Version gpuDriverDate = Driver Date gpuActive = Active -webgl1Renderer = WebGL 1 Renderer -webgl1Version = WebGL 1 GL Version -webgl1Extensions = WebGL 1 GL Extensions -webgl1WSIInfo = WebGL 1 WSI Info -webgl2Renderer = WebGL 2 Renderer -webgl2Version = WebGL 2 GL Version -webgl2Extensions = WebGL 2 GL Extensions -webgl2WSIInfo = WebGL 2 WSI Info +webgl1WSIInfo = WebGL 1 Driver WSI Info +webgl1Renderer = WebGL 1 Driver Renderer +webgl1Version = WebGL 1 Driver Version +webgl1DriverExtensions = WebGL 1 Driver Extensions +webgl1Extensions = WebGL 1 Extensions +webgl2WSIInfo = WebGL 2 Driver WSI Info +webgl2Renderer = WebGL 2 Driver Renderer +webgl2Version = WebGL 2 Driver Version +webgl2DriverExtensions = WebGL 2 Driver Extensions +webgl2Extensions = WebGL 2 Extensions GPU1 = GPU #1 GPU2 = GPU #2 blocklistedBug = Blocklisted due to known issues -- cgit v1.2.3 From f86a80ee787fc2f0a0f4a9cb2cb43d2ec708011c Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Wed, 15 Aug 2018 03:19:07 -0400 Subject: Do not try and include devtools shared l10n when devtools is not built --- toolkit/locales/Makefile.in | 2 ++ 1 file changed, 2 insertions(+) (limited to 'toolkit/locales') diff --git a/toolkit/locales/Makefile.in b/toolkit/locales/Makefile.in index 189e0b1b0..198d9aaa8 100644 --- a/toolkit/locales/Makefile.in +++ b/toolkit/locales/Makefile.in @@ -16,7 +16,9 @@ libs-%: @$(MAKE) -C ../../netwerk/locales/ libs AB_CD=$* XPI_NAME=locale-$* @$(MAKE) -C ../../dom/locales/ libs AB_CD=$* XPI_NAME=locale-$* @$(MAKE) -C ../../security/manager/locales/ libs AB_CD=$* XPI_NAME=locale-$* +ifdef MOZ_DEVTOOLS_SERVER @$(MAKE) -C ../../devtools/shared/locales/ libs AB_CD=$* XPI_NAME=locale-$* +endif @$(MAKE) libs AB_CD=$* XPI_NAME=locale-$* # target to be used by multi-locale l10n builds, just add this locale -- cgit v1.2.3