diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-15 11:05:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 11:05:36 +0100 |
commit | 9ddfccc52f6d7085bb590d7eb68e7025995a7547 (patch) | |
tree | 9dac30c0cec0a7fad293cbc2802016d67c018ea2 /core | |
parent | dbd1620cefb9508707b650284d0be00b6af73369 (diff) | |
parent | e81f30b1245e782683b62c06f545ecf2ae5bf901 (diff) | |
download | nextcloud-server-9ddfccc52f6d7085bb590d7eb68e7025995a7547.tar.gz nextcloud-server-9ddfccc52f6d7085bb590d7eb68e7025995a7547.zip |
Merge pull request #7854 from nextcloud/comradekingu-patch-1
Spelling: FreeType
Diffstat (limited to 'core')
-rw-r--r-- | core/js/setupchecks.js | 2 | ||||
-rw-r--r-- | core/js/tests/specs/setupchecksSpec.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 439826161d8..af769dd9b7c 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 }) diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index 00bc84f2a8f..aab72bbc592 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(); |