From fc12b9fa100c825c60d9ed10c60e26c297b3c81b Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 6 Feb 2012 19:43:26 +0000 Subject: [PATCH] Add a translator's comment. see #19924. git-svn-id: https://develop.svn.wordpress.org/trunk@19837 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/locale.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/locale.php b/wp-includes/locale.php index 227e52c58c..bc5037c723 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'; }