bchang
bchang

Reputation: 1402

Need help choosing a framework for bilingual site

First, some background information... I'm coming up on a medium-scale website for a non-profit that will require both English and Korean translations. Feature-set includes: CMS for normal content, a blog, some form submission/handling (including CSV/PDF exports), a job posting board, a directory of related businesses and non-profits (that accepts visitor submissions), and a basic (probably blog-driven) newsroom.

I have a fairly strong development background, and I've done some sites using Drupal, built some basic custom CMSes using frameworks like CodeIgniter, and I've recently started getting into Django. These are the primary options that I am exploring, and I would consider using different tools for different portions of the project, but what I'm mainly interested in, is if anyone has any experience to share with regards to localization/internationalization. I haven't yet put together a site that supports multiple languages, so before I get in trouble by underestimating the task, or making poor assumptions, I'd like to get some input to help guide my decision-making process.

Do you have any recommendations for frameworks (Drupal, Django, CodeIgniter) that handle localization/internationalization/translation well for a CMS? I know they all support it, but I'm looking for real-world experience here (or suggestions for modules/plugins given explanations).

Sorry for the longwinded question, but I wanted to be clear as possible. Thanks in advance!

Upvotes: 5

Views: 995

Answers (5)

kimus
kimus

Reputation: 61

Checkout django-blocks. Has multi-language Menu, Flatpages and even has a simple Shopping Cart!!

Upvotes: 0

bchang
bchang

Reputation: 1402

There is a distinction between "site" translation and content translation. Django handles the site translation great, out of the box. The content translation, however, requires making some decisions (there's no one right way at this point). This probably makes sense, because of the very nature of Django as a lower level framework (when compared to something like Drupal, which is intended to serve as a complete CMS).

There are applications for Django which are meant to add this functionality (in the form of translations configured at the model level):

Also, I found this question that is related.

The bottom line though, is that this is still being explored in the Django world, and neither approach has been decided upon for the framework. Also, although I haven't used it, Drupal has module support for this in the form of the i18n module.

I will update with more conclusions as I come to them. If you have anything to add about content translation in Django or in Drupal, feel free to add your own answer as well.

Upvotes: 5

ozan
ozan

Reputation: 9331

You probably already know that the native i18n support in django is quite good. As for translation, you might try the django-rosetta app which allows you to grant translation rights to a subset of users, who are then able to translate through an admin-like interface.

Upvotes: 4

Srikar Doddi
Srikar Doddi

Reputation: 15599

I liked Drupal over Joomla. You should also look into DotNetNuke, out of the box it has lot of things that will meet your needs.

Upvotes: 0

Till
Till

Reputation: 22406

Zend_Translate is pretty comprehensive. And if you decide to use PHP, I suggest you take a look at it. It provides multiple interfaces (e.g. an Array, CSV, Gettext, etc.) to manage your translations, which makes it IMHO unmatched when it comes to PHP.

I'm not sure how well it plays with Drupal, since Drupal is hardly a framework but more a CMS -- or maybe a CMS framework. I'm pretty sure that Drupal either has a thing build in or that there is a plugin for it.

With CodeIgniter you would start from scratch and Zend_Translate plays well with it.

Upvotes: 1

Related Questions