From 71b40da27911263b852a9c60b0243b04e4802d08 Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Sun, 11 Feb 2007 18:20:15 +0100 Subject: language-specific quotation marks (FS#438) darcs-hash:20070211172015-d5083-2cab923b001391012a0a469746438d4d4087a718.gz --- inc/parser/xhtml.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'inc/parser/xhtml.php') diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 5390ae843..ea5b72495 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -441,19 +441,23 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } function singlequoteopening() { - $this->doc .= "‘"; + global $lang; + $this->doc .= $lang['singlequoteopening']; } function singlequoteclosing() { - $this->doc .= "’"; + global $lang; + $this->doc .= $lang['singlequoteclosing']; } function doublequoteopening() { - $this->doc .= "“"; + global $lang; + $this->doc .= $lang['doublequoteopening']; } function doublequoteclosing() { - $this->doc .= "”"; + global $lang; + $this->doc .= $lang['doublequoteclosing']; } /** -- cgit v1.2.3