1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Fix up missing-extension message

This commit is contained in:
J. King 2021-07-04 20:55:32 -04:00
parent 3c8ee42666
commit 88fe3e76cb
2 changed files with 8 additions and 5 deletions

View file

@ -80,9 +80,10 @@ return [
}',
// indicates programming error
'Exception.JKingWeb/Arsse/ExceptionType.typeUnknown' => 'Normalization type {0} is not implemented',
'Exception.JKingWeb/Arsse/Exception.extMissing' => 'The "{first}" PHP extension {total, plural, offset:1
=0 {is}
=1 {and one other extension are}
'Exception.JKingWeb/Arsse/Exception.extMissing' =>
'The "{first}" PHP extension {total, plural, offset:1
=1 {is}
one {and # other extension are}
other {and # other extensions are}
} not installed or not enabled.',
'Exception.JKingWeb/Arsse/Lang/Exception.defaultFileMissing' => 'Default language file "{0}" missing',

View file

@ -63,6 +63,8 @@ class TestArsse extends \JKingWeb\Arsse\Test\AbstractTest {
return [
[["pcre"], null],
[["foo", "bar", "baz"], new Exception("extMissing", ['first' => "foo", 'total' => 3])],
[["bar", "baz"], new Exception("extMissing", ['first' => "bar", 'total' => 2])],
[["baz"], new Exception("extMissing", ['first' => "baz", 'total' => 1])],
];
}
}