From 13d8b7f190e57646837849bafe2ee80c494317ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Sun, 14 Jan 2018 15:58:36 +0100 Subject: [PATCH 1/2] Spelling: FreeType --- core/js/setupchecks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 439826161d..af769dd9b7 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -178,7 +178,7 @@ messages.push({ msg: t( 'core', - 'Your PHP does not have freetype support. This will result in broken profile pictures and settings interface.' + 'Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface.' ), type: OC.SetupChecks.MESSAGE_TYPE_INFO }) From e81f30b1245e782683b62c06f545ecf2ae5bf901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Sun, 14 Jan 2018 16:01:23 +0100 Subject: [PATCH 2/2] Spelling: FreeType --- core/js/tests/specs/setupchecksSpec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index 00bc84f2a8..aab72bbc59 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -449,7 +449,7 @@ describe('OC.SetupChecks tests', function() { }); }); - it('should return an info if server has no freetype support', function(done) { + it('should return an info if server has no FreeType support', function(done) { var async = OC.SetupChecks.checkSetup(); suite.server.requests[0].respond( @@ -474,7 +474,7 @@ describe('OC.SetupChecks tests', function() { async.done(function( data, s, x ){ expect(data).toEqual([{ - msg: 'Your PHP does not have freetype support. This will result in broken profile pictures and settings interface.', + msg: 'Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface.', type: OC.SetupChecks.MESSAGE_TYPE_INFO }]); done();