Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert all language returns to single quote #2311

Merged
merged 1 commit into from Oct 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion system/Language/en/Encryption.php
Expand Up @@ -16,7 +16,7 @@
return [
'noDriverRequested' => 'No driver requested; Miss Daisy will be so upset!',
'noHandlerAvailable' => 'Unable to find an available {0} encryption handler.',
'unKnownHandler' => "'{0}' cannot be configured.",
'unKnownHandler' => '"{0}" cannot be configured.',
'starterKeyNeeded' => 'Encrypter needs a starter key.',
'authenticationFailed' => 'Decrypting: authentication failed.',
'encryptionFailed' => 'Encryption failed.',
Expand Down
2 changes: 1 addition & 1 deletion system/Language/en/RESTful.php
Expand Up @@ -14,5 +14,5 @@
*/

return [
'notImplemented' => "'{0}' action not implemented.",
'notImplemented' => '"{0}" action not implemented.',
];
4 changes: 2 additions & 2 deletions system/Language/en/Session.php
Expand Up @@ -16,8 +16,8 @@

return [
'missingDatabaseTable' => '`sessionSavePath` must have the table name for the Database Session Handler to work.',
'invalidSavePath' => "Session: Configured save path '{0}' is not a directory, doesn't exist or cannot be created.",
'writeProtectedSavePath' => "Session: Configured save path '{0}' is not writable by the PHP process.",
'invalidSavePath' => 'Session: Configured save path "{0}" is not a directory, does not exist or cannot be created.',
'writeProtectedSavePath' => 'Session: Configured save path "{0}" is not writable by the PHP process.',
'emptySavePath' => 'Session: No save path configured.',
'invalidSavePathFormat' => 'Session: Invalid Redis save path format: {0}',
];