We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf77b01 commit f84ee2aCopy full SHA for f84ee2a
1 file changed
language/fr/pages_common.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
'PAGES_VIEWONLINE' => 'Consulte la page %s',
43
-));
+]);
0 commit comments