Minor grammar fix.

This commit is contained in:
Luke Sneeringer 2014-08-20 12:11:35 -04:00
parent 356532424e
commit ab1456f4a2

View File

@ -94,6 +94,10 @@ function($rootScope, $compile, CreateDialog, Store, LicenseUpdateForm, GenerateF
} else {
html += "<p>After this license expires, playbooks will no longer run and hosts cannot be added. If you are ready to renew or upgrade, contact us at " + renew + ". Thanks!</p>";
}
// If there is exactly one day remaining, change "days remaining"
// to "day remaining".
html = html.replace('has 1 days remaining', 'has 1 day remaining');
}
else if (license.free_instances <= 0) {
title = "Host Count Exceeded";
@ -604,4 +608,4 @@ function ($location, $rootScope, $compile, $filter, GenerateForm, Rest, Alert, G
};
}
]);
*/
*/