- الرئيسية
- ما الجديد !
-
الصفحات▼
الصفحات
أهلا وسهلا بك زائرنا الكريم في منتدى دعم PBBoard الرسمي، لكي تتمكن من المشاركة ومشاهدة جميع أقسام المنتدى وكافة الميزات ، يجب عليك إنشاء حساب جديد بالتسجيل بالضغط هنا أو تسجيل الدخول اضغط هنا إذا كنت عضواً .
Translate portal to Persian
-
موضوع مغلق
-
- [مطلوب]:
-
17-10-2011 06:29 مساءً
-
pbb center iranمعلومات الكاتبالأعضاءعضو فعال
- انضم في :
- 11-10-2011
- رقم العضوية :
- 1868
- المشاركات :
- 142
- الدولة :
- ایران (IRAN)
- الجنس:
- تاريخ الميلاد :
- 13-7-1991
- الدعوات:
- 2
- قوة السمعة:
- 510
- موقعي:
- زيارة موقعي
-
we want to translate portal but we could\'t find where is the language file of thatplz help me
-
-
Translate portal to Persian17-10-2011 06:43 مساءً [1]
-
محمد الصاويمعلومات الكاتبالأعضاءعضـو بـارز
- انضم في :
- 31-10-2010
- رقم العضوية :
- 901
- المشاركات :
- 1155
- الدولة :
- مصر
- الجنس:
- تاريخ الميلاد :
- 20-2-1990
- الدعوات:
- 1
- قوة السمعة:
- 3272
- موقعي:
- زيارة موقعي
-
in language.php
you search on specified sentence and translate it
-
-
Translate portal to Persian17-10-2011 06:51 مساءً [2]
-
baha_odehمعلومات الكاتبالأعضاءعضو فعال
-
this is the language file
language.php
language_Admin.php
and you will found it in the
CODEforum\lang\en
-
-
Translate portal to Persian17-10-2011 07:10 مساءً [3]
-
pbb center iranمعلومات الكاتبالأعضاءعضو فعال
- انضم في :
- 11-10-2011
- رقم العضوية :
- 1868
- المشاركات :
- 142
- الدولة :
- ایران (IRAN)
- الجنس:
- تاريخ الميلاد :
- 13-7-1991
- الدعوات:
- 2
- قوة السمعة:
- 510
- موقعي:
- زيارة موقعي
-
we have searched but we couldn't find itwhat's Function Of it?
-
-
Translate portal to Persian17-10-2011 07:22 مساءً [4]
-
pbb center iranمعلومات الكاتبالأعضاءعضو فعال
- انضم في :
- 11-10-2011
- رقم العضوية :
- 1868
- المشاركات :
- 142
- الدولة :
- ایران (IRAN)
- الجنس:
- تاريخ الميلاد :
- 13-7-1991
- الدعوات:
- 2
- قوة السمعة:
- 510
- موقعي:
- زيارة موقعي
-
we have searched but we couldn't find itwhat's Function Of it؟
-
-
Translate portal to Persian17-10-2011 08:36 مساءً [5]
-
AHMEDمعلومات الكاتبالأعضاءعضـو ستـار
- انضم في :
- 20-07-2009
- رقم العضوية :
- 18
- المشاركات :
- 2796
- الجنس:
- تاريخ الميلاد :
- 1-10-1981
- الدعوات:
- 31
- قوة السمعة:
- 4978
- موقعي:
- زيارة موقعي
-
language file attached
-
-
Translate portal to Persian17-10-2011 08:52 مساءً [6]
-
Solimanمعلومات الكاتبالادارة العامةPBBoard developer
- انضم في :
- 18-07-2009
- رقم العضوية :
- 1
- المشاركات :
- 13422
- الدولة :
- KSA
- الجنس:
- الدعوات:
- 55
- قوة السمعة:
- 82296
- موقعي:
- زيارة موقعي
-
!!Did you mean Blocks Titles
If this is what you mean
Open the file: setup/install/database_struct.php
And look for the function _InsertBlocks found in the last file:
CODEfunction _InsertBlocks() { global $PowerBB; $BlocksArray = array(); $BlocksArray[0] = array(); $BlocksArray[0]['title'] = 'الأقسام الرئيسية'; $BlocksArray[0]['text'] = '{template}portal_main_categories{/template}'; $BlocksArray[0]['place_block'] = 'left'; $BlocksArray[0]['sort'] = '1'; $BlocksArray[1] = array(); $BlocksArray[1]['title'] = 'إحصائيات'; $BlocksArray[1]['text'] = '{template}portal_static{/template}'; $BlocksArray[1]['place_block'] = 'left'; $BlocksArray[1]['sort'] = '2'; $BlocksArray[2] = array(); $BlocksArray[2]['title'] = 'الساعة'; $BlocksArray[2]['text'] = '{template}portal_clock{/template}'; $BlocksArray[2]['place_block'] = 'left'; $BlocksArray[2]['sort'] = '3'; $BlocksArray[3] = array(); $BlocksArray[3]['title'] = 'التقويم'; $BlocksArray[3]['text'] = '{template}portal_calendar{/template}'; $BlocksArray[3]['place_block'] = 'center'; $BlocksArray[3]['sort'] = '2'; $BlocksArray[4] = array(); $BlocksArray[4]['title'] = 'آخر الأخبار'; $BlocksArray[4]['text'] = '{template}portal_last_news{/template}'; $BlocksArray[4]['place_block'] = 'center'; $BlocksArray[4]['sort'] = '1'; $BlocksArray[5] = array(); $BlocksArray[5]['title'] = 'القائمة الرئيسية'; $BlocksArray[5]['text'] = '{template}portal_main_menu{/template}'; $BlocksArray[5]['place_block'] = 'right'; $BlocksArray[5]['sort'] = '1'; $BlocksArray[6] = array(); $BlocksArray[6]['title'] = 'المتواجدين الآن'; $BlocksArray[6]['text'] = '{template}portal_online{/template}'; $BlocksArray[6]['place_block'] = 'right'; $BlocksArray[6]['sort'] = '2'; $BlocksArray[7] = array(); $BlocksArray[7]['title'] = 'آخر المشاركات'; $BlocksArray[7]['text'] = '{template}portal_latest_posts{/template}'; $BlocksArray[7]['place_block'] = 'right'; $BlocksArray[7]['sort'] = '3'; $x = 0; $i = array(); while ($x < sizeof($BlocksArray)) { $insert = $PowerBB->DB->sql_query("INSERT INTO " . $PowerBB->prefix."blocks SET id='NULL', title='" . $BlocksArray[$x]['title'] . "', text='" . $BlocksArray[$x]['text'] . "', place_block='" . $BlocksArray[$x]['place_block'] . "', sort='" . $BlocksArray[$x]['sort'] . "'"); $i[$x] = ($insert) ? 'true' : 'false'; $x += 1; } return $i; }
-
-
Translate portal to Persian18-10-2011 08:58 صباحاً [7]
-
pbb center iranمعلومات الكاتبالأعضاءعضو فعال
- انضم في :
- 11-10-2011
- رقم العضوية :
- 1868
- المشاركات :
- 142
- الدولة :
- ایران (IRAN)
- الجنس:
- تاريخ الميلاد :
- 13-7-1991
- الدعوات:
- 2
- قوة السمعة:
- 510
- موقعي:
- زيارة موقعي
-
Thank you very much

-
-
Translate portal to Persian18-10-2011 01:18 مساءً [8]
-
Solimanمعلومات الكاتبالادارة العامةPBBoard developer
- انضم في :
- 18-07-2009
- رقم العضوية :
- 1
- المشاركات :
- 13422
- الدولة :
- KSA
- الجنس:
- الدعوات:
- 55
- قوة السمعة:
- 82296
- موقعي:
- زيارة موقعي
-
You are welcome
-
تم تحرير المشاركة بواسطة :Soliman بتاريخ:18-10-2011 01:19 مساءً
-
-