We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f84ee2a commit 2b0dea3Copy full SHA for 2b0dea3
1 file changed
language/fr/pages_controller.php
@@ -19,7 +19,7 @@
19
20
if (empty($lang) || !is_array($lang))
21
{
22
- $lang = array();
+ $lang = [];
23
}
24
25
// DEVELOPERS PLEASE NOTE
@@ -35,9 +35,9 @@
35
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
36
//
37
// Some characters you may want to copy&paste:
38
-// ’ » “ ” …
+// ’ « » “ ” …
39
40
41
-$lang = array_merge($lang, array(
+$lang = array_merge($lang, [
42
'PAGE_NOT_AVAILABLE' => 'La page « %s » n’est pas disponible.',
43
-));
+]);
0 commit comments