From 006c6b6b9deda3f7d6622ff9fe11b88142d29126 Mon Sep 17 00:00:00 2001 From: nacin Date: Mon, 6 Feb 2012 19:43:26 +0000 Subject: [PATCH] Add a translator's comment. see #19924. git-svn-id: http://svn.automattic.com/wordpress/trunk@19837 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/locale.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/locale.php b/wp-includes/locale.php index 227e52c58..bc5037c72 100644 --- a/wp-includes/locale.php +++ b/wp-includes/locale.php @@ -180,6 +180,7 @@ class WP_Locale { // Set text direction. if ( isset( $GLOBALS['text_direction'] ) ) $this->text_direction = $GLOBALS['text_direction']; + /* translators: 'rtl' or 'ltr'. This sets the text direction for WordPress. */ elseif ( 'rtl' == _x( 'ltr', 'text direction' ) ) $this->text_direction = 'rtl'; }