Skip to content

Commit a63b6fa

Browse files
authored
Merge pull request #2311 from MGatner/language-quotes
Convert all language returns to single quote
2 parents 59b8edc + e56d3f5 commit a63b6fa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

system/Language/en/Encryption.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
return [
1717
'noDriverRequested' => 'No driver requested; Miss Daisy will be so upset!',
1818
'noHandlerAvailable' => 'Unable to find an available {0} encryption handler.',
19-
'unKnownHandler' => "'{0}' cannot be configured.",
19+
'unKnownHandler' => '"{0}" cannot be configured.',
2020
'starterKeyNeeded' => 'Encrypter needs a starter key.',
2121
'authenticationFailed' => 'Decrypting: authentication failed.',
2222
'encryptionFailed' => 'Encryption failed.',

system/Language/en/RESTful.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
*/
1515

1616
return [
17-
'notImplemented' => "'{0}' action not implemented.",
17+
'notImplemented' => '"{0}" action not implemented.',
1818
];

system/Language/en/Session.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

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

0 commit comments

Comments
 (0)