Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drupal fields internationalization

Tags:

drupal


I want to create a new content type on Drupal with some new fields. These fields should be translatable which means having for one field many values for each available language.
Now to display the node I want to display only the field values of the current language, the current language should be calculated from the url :
/mysite.com/fr/produit_1 => show in Frensh
or
/mysite/en/my_product => show in English

Is that possible in Drupal even with custom development ? Which modules can I use to do that ?

like image 619
Houcem Berrayana Avatar asked Jan 29 '26 00:01

Houcem Berrayana


1 Answers

You should use Content translation module (part of drupal core modules).

You can also take a look at i18n module.

like image 151
soju Avatar answered Jan 31 '26 00:01

soju