Just now I have completed the first version of bangla_numbers extension for PunBB 1.3.x. When enabled, this function will converts numbers used in PunBB to Bangla. It will specially converts numbers of posts, topics, replies, members etc.
Installation:
Upload the unzipped files to extensions directory of PunBB and install the extension from Admin panel’s Extension tab. You’re [...]
Archive for Posts Tagged bangla:
Bangla Captcha!
অনেক দিন ধরেই ইচ্ছা একটা বাংলা ক্যাপচা (Bangla Captcha) স্ক্রিপ্ট করার। কিন্তু একবার চেষ্টা করে ব্যর্থ হয়েছি। কারণ ইউনিকোড অক্ষরগুলোকে জিডি দিয়ে ঠিকমত ইমেজে প্রিন্ট করতে পারছিলাম না। তবে কালকে মনে হল আপাতত ফন্ট পরিবর্তন করেই তো প্রাথমিক কাজটি করা যায়। তাই হাতের কাছেই যে ক্যাপচা স্ক্রিপ্টটি ছিল তাকে একটু পরিবর্তন করে কাজটি করলাম। কাজটি [...]
Speak your own language
Today is the age of Open Source. There is a win win situation everywhere for open source. Search the web, you will get a thousands of benefits about open source. But what you may not get is:
I strongly believe “Open source increases the passion to mother language”. How?
শুভ নববর্ষ

শুভ নববর্ষ। সবাইকে বাংলা ১৪১৫ সালের শুভেচ্ছা। সকলের জীবনে যেন নতুন বছরটি অনাবিল আনন্দ নিয়ে আসে সেই প্রত্যাশা রইল।
আপডেট:
Unicode Numeric figure converstion
Now a day, many open source packages are translating in Bangla. This is usually done by replacing the language file with equivalent Bangla language’s Unicode value. But problem is that the numeric figures are still in English. I faced this problem in Projanmo Forum. So today I make a script to convert these English numeric figures to Bangla.
[code]
function convert($char){
switch($char){
case "1":
return "১";
break;
case "2":
return "২";
break;
case "3":
return "৩";
break;
case "4":




