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
arabic Translation [ar]
Re: arabic Translation [ar]
Thank you for Translation.
Nevertheless i have to say, that B3P 1.0.5 (newest Version) already have an RTL fix
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
no Support via PM / Messenger
-
Topic author - Active Member
- Posts: 3
- Joined: 24. April 2009 00:00
- phpBB.com User: Scout4all
- Location: Alexandria /Egypt
- Contact:
Re: arabic Translation [ar]
style block fixes like last members block -- i fixed it to cope with RTL pageMike wrote:Thank you for Translation.
Nevertheless i have to say, that B3P 1.0.5 (newest Version) already have an RTL fix
and i also fixed RTL in 1.0.4
-
- 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]
A code explanation of what you did would kind of help me to understand you.
-
Topic author - Active Member
- Posts: 3
- Joined: 24. April 2009 00:00
- phpBB.com User: Scout4all
- Location: Alexandria /Egypt
- Contact:
Re: arabic Translation [ar]
block like top_poster.html
was in ltr
now in rtl
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
now in rtl
list arrow in css
added rtl css code
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" />
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" />
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>';
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>';
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*/
}
-
- 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]
Thank you. We will include that in the next release.