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

Spelling: FreeType
This commit is contained in:
Morris Jobke 2018-01-15 11:05:36 +01:00 committed by GitHub
commit 9ddfccc52f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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
})

View File

@ -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();