From: Liangent Date: Tue, 23 Oct 2012 11:50:05 +0000 (+0800) Subject: Localize parentheses in Linker::formatTemplates() X-Git-Tag: 1.31.0-rc.0~21902^2 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=7323171000be9a395bb027f2832ddf5254ce2a95;p=lhc%2Fweb%2Fwiklou.git Localize parentheses in Linker::formatTemplates() Change-Id: I27c4c26206ba1e9c27a5c120a95491eb30e55522 --- 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 .= ''; }