RTL Frontend Translate Fix

/**
 * RTL Frontend Translate Fix
 */
function pniber_gettext( $translation, $text, $domain ) {
	$translation = str_replace( 'Related Posts', 'المنشورات ذات الصلة', $translation );
	$translation = str_replace( 'Read more', 'اقرأ أكثر', $translation );
	$translation = str_replace( 'Comments', 'تعليقات', $translation );
	$translation = str_replace( 'Leave a Reply', 'اترك رد', $translation );
	$translation = str_replace( 'Submit comment', 'إرسال تعليق', $translation );
	$translation = str_replace( 'Search...', 'بحث...', $translation );
	$translation = str_replace( 'Comment', 'تعليق', $translation );
	$translation = str_replace( 'Website', 'موقع الكتروني', $translation );
	$translation = str_replace( 'Email', 'البريد الإلكتروني', $translation );
	$translation = str_replace( 'Name', 'اسم', $translation );
	$translation = str_replace( 'Load More', 'تحميل المزيد', $translation );
	$translation = str_replace( 'Loading...', 'جار التحميل...', $translation );
	$translation = str_replace( 'Next Page »', 'الصفحة التالية "', $translation );
	$translation = str_replace( '« Previous Page', '" الصفحة السابقة', $translation );
	$translation = str_replace( 'Next', 'التالى', $translation );
	$translation = str_replace( 'Previous', 'السابق', $translation );
	$translation = str_replace( 'Type your keywords...', 'اكتب كلماتك الرئيسية ...', $translation );
	$translation = str_replace( 'Hit enter to search', 'انقر فوق الزر إدخال للبحث', $translation );

	if ( $translation == 'by' ) {
		$translation = str_replace( 'by', '', $translation );
	}

	return $translation;
}
add_filter( 'gettext', 'pniber_gettext', 100, 3 );