From 7323171000be9a395bb027f2832ddf5254ce2a95 Mon Sep 17 00:00:00 2001 From: Liangent Date: Tue, 23 Oct 2012 19:50:05 +0800 Subject: [PATCH] Localize parentheses in Linker::formatTemplates() Change-Id: I27c4c26206ba1e9c27a5c120a95491eb30e55522 --- includes/Linker.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/includes/Linker.php b/includes/Linker.php index 28c59855d7..b947f8f4e7 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1899,7 +1899,11 @@ class Linker { array( 'action' => 'edit' ) ); } - $outText .= '
  • ' . self::link( $titleObj ) . ' (' . $editLink . ') ' . $protected . '
  • '; + $outText .= '
  • ' . self::link( $titleObj ) + . wfMessage( 'word-separator' )->escaped() + . wfMessage( 'parentheses' )->rawParams( $editLink )->escaped() + . wfMessage( 'word-separator' )->escaped() + . $protected . '
  • '; } $outText .= ''; } -- 2.20.1