Skip to content
Snippets Groups Projects
Unverified Commit 9ddfccc5 authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #7854 from nextcloud/comradekingu-patch-1

Spelling: FreeType
parents dbd1620c e81f30b1
No related branches found
No related tags found
No related merge requests found
...@@ -178,7 +178,7 @@ ...@@ -178,7 +178,7 @@
messages.push({ messages.push({
msg: t( msg: t(
'core', '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 type: OC.SetupChecks.MESSAGE_TYPE_INFO
}) })
......
...@@ -449,7 +449,7 @@ describe('OC.SetupChecks tests', function() { ...@@ -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(); var async = OC.SetupChecks.checkSetup();
suite.server.requests[0].respond( suite.server.requests[0].respond(
...@@ -474,7 +474,7 @@ describe('OC.SetupChecks tests', function() { ...@@ -474,7 +474,7 @@ describe('OC.SetupChecks tests', function() {
async.done(function( data, s, x ){ async.done(function( data, s, x ){
expect(data).toEqual([{ 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 type: OC.SetupChecks.MESSAGE_TYPE_INFO
}]); }]);
done(); done();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment