arabic Translation [ar]

Board3 Portal Translations in Development
Post Reply

Topic author
Scout4all
Active Member
Posts: 3
Joined: 24. April 2009 00:00
phpBB.com User: Scout4all
Location: Alexandria /Egypt
Contact:

arabic Translation [ar]

Post by Scout4all »

hello
I have translate board3portal in to Arabic language
download link for portal with rtl style block fix: http://code.google.com/p/arabictranslat ... /downloads
Demo arabic translation :http://flasheg.com/community/portal.php
now my translation is validating by Translators team in Arabic support forum
User avatar

Mike
Former Team Member
Posts: 1862
Joined: 3. July 2008 23:59
Location: Schwarzwald / FDS
Contact:

Re: arabic Translation [ar]

Post by Mike »

Thank you for Translation. :)

Nevertheless i have to say, that B3P 1.0.5 (newest Version) already have an RTL fix ;)
kein Support per PN / Messenger
no Support via PM / Messenger

Topic author
Scout4all
Active Member
Posts: 3
Joined: 24. April 2009 00:00
phpBB.com User: Scout4all
Location: Alexandria /Egypt
Contact:

Re: arabic Translation [ar]

Post by Scout4all »

Mike wrote:Thank you for Translation. :)

Nevertheless i have to say, that B3P 1.0.5 (newest Version) already have an RTL fix ;)
style block fixes like last members block -- i fixed it to cope with RTL page
and i also fixed RTL in 1.0.4
User avatar

Marc
Dev
Posts: 2504
Joined: 17. July 2008 21:08
phpBB.de User: marc1706
phpBB.com User: Marc
Location: Clausthal-Zellerfeld / München
Contact:

Re: arabic Translation [ar]

Post by Marc »

A code explanation of what you did would kind of help me to understand you.

Topic author
Scout4all
Active Member
Posts: 3
Joined: 24. April 2009 00:00
phpBB.com User: Scout4all
Location: Alexandria /Egypt
Contact:

Re: arabic Translation [ar]

Post by Scout4all »

block like top_poster.html

was in ltr

Code: Select all

	<span style="float:left;"><strong>{L_USERNAME}</strong></span>
	<span style="float:right;padding-right:10px;"><strong>{L_POSTS}</strong></span><br style="clear:both" />
	<!-- BEGIN top_poster -->
		<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;">{top_poster.USERNAME_FULL}</span>
		<span style="float:right;padding-right:10px; padding-top:2px;"><a href="{top_poster.S_SEARCH_ACTION}">{top_poster.POSTER_POSTS}</a></span><br style="clear:both" />
now in rtl

Code: Select all

<span style="float:right;padding-right:10px;"><strong>{L_USERNAME}</strong></span>
	<span style="float:left;"><strong>{L_POSTS}</strong></span><br style="clear:both" />
	<!-- BEGIN top_poster -->
		<span style="float:right;padding-right:10px; padding-top:2px;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:right; padding-right:5px; padding-top:2px;">{top_poster.USERNAME_FULL}</span>
		<span style="float:left;"><a href="{top_poster.S_SEARCH_ACTION}">{top_poster.POSTER_POSTS}</a></span><br style="clear:both" />
and i have changed in files random_member.html ,leaders_ext.html ,leaders.html ,attachments.html ,latest_members.html ,online_friends.html
like previous changes
previous and next month in mini calender images in mini-cal.php
was

Code: Select all

$prev_month = '<a href="' . append_sid("{$phpbb_root_path}portal.$phpEx", "m=$down#minical") . '"><img src="' . $phpbb_root_path . 'styles/' . $user->theme['theme_path'] . '/theme/images/portal/mini_cal_icon_left_arrow.png' . '" title="' . $user->lang['VIEW_PREVIOUS_MONTH'] . '" height="16" width="16" alt="<<" /></a>';
$next_month = '<a href="' . append_sid("{$phpbb_root_path}portal.$phpEx", "m=$up#minical") . '"><img src="' . $phpbb_root_path . 'styles/' . $user->theme['theme_path'] . '/theme/images/portal/mini_cal_icon_right_arrow.png' . '" title="' . $user->lang['VIEW_NEXT_MONTH'] . '" height="16" width="16" alt=">>" /></a>'; 
now in rtl

Code: Select all

$prev_month = '<a href="' . append_sid("{$phpbb_root_path}portal.$phpEx", "m=$down#minical") . '"><img src="' . $phpbb_root_path . 'styles/' . $user->theme['theme_path'] . '/theme/images/portal/mini_cal_icon_right_arrow.png' . '" title="' . $user->lang['VIEW_PREVIOUS_MONTH'] . '" height="16" width="16" alt="<<" /></a>';
$next_month = '<a href="' . append_sid("{$phpbb_root_path}portal.$phpEx", "m=$up#minical") . '"><img src="' . $phpbb_root_path . 'styles/' . $user->theme['theme_path'] . '/theme/images/portal/mini_cal_icon_left_arrow.png' . '" title="' . $user->lang['VIEW_NEXT_MONTH'] . '" height="16" width="16" alt=">>" /></a>'; 
list arrow in css
added rtl css code

Code: Select all

.rtl .portal-navigation ul li a{
background-position: center right; /*custom bullet list image*/
padding-right: 19px; /*link text is indented 19px*/
}
User avatar

Marc
Dev
Posts: 2504
Joined: 17. July 2008 21:08
phpBB.de User: marc1706
phpBB.com User: Marc
Location: Clausthal-Zellerfeld / München
Contact:

Re: arabic Translation [ar]

Post by Marc »

Thank you. We will include that in the next release.
Post Reply

Return to “Translations in Development”