SlideShare una empresa de Scribd logo
1 de 23
Descargar para leer sin conexión
Building Multilingual Websites
in Drupal 7
Robin Puga
Language embodies the intellectual wealth
of the people who use it. ~ Kenneth Hale
Overview
● Covering the basics
● Multilingual websites in Drupal 7
● Working with translators
● What’s happening in Drupal 8
http://affinitybridge.com
Basics
● Gettext is an internationalization (i18n)
system used for writing multilingual programs
● Drupal Code
$str = t("My name is @name.n", array('@name' => $user->name));
● fr.po file
#: src/name.module:36
msgid "My name is @name.n"
msgstr "Je m'appelle @name.n"
http://affinitybridge.com
Blasts in the past - Drupal 5 & 6
http://affinitybridge.comhttp://s.coop/d6convertlang
Drupal 7
● Definitive Guide by Gábor Hojtsy
http://hojtsy.hu/multilingual-drupal7
Read it!
● Books
Drupal 7 Multilingual Sites
By Kristen Pol
http://affinitybridge.com
Drupal 7
● University of Ottawa Calendar
http://uocal.uottawa.ca
English / French
● Participedia
http://Participedia.net
English then German
http://affinitybridge.com
Modules for Drupal 7
● Locale module in core
● Internationalization or i18n module
● Localization Update module
● Entity Translation module
http://affinitybridge.com
Setup for Multiple Languages
● Add languages
● Import the .po files
● Configure detection and selection
● Configure your site content types
http://affinitybridge.com
Node level translations
● Now using Entity Translation module
● Setting up the content type
● Synchronizing fields
● Translating content using translate tab
●
http://affinitybridge.com
Entity translations
● Allows translations for entities in Drupal
● User accounts fields
● Comments
● Any entities
http://affinitybridge.com
Field level translations
● One node with translatable fields
● Use case: Products in Commerce
http://affinitybridge.com
Other Modules for Drupal 7
● Variable module
● Translation Table module
● Potx module
● Localization Client module
● Translation Helpers module http://affinitybridge.com
Translating your site
● Menus
● Same page hierarchy - translate menu links
● Different page hierarchy options:
● One menu per language, or
● Add menu links in different languages
● Blocks
● Now translatable. Works great for static blocks
http://affinitybridge.com
Translating your site
● Taxonomy terms
● Localize - one term with translated title
● Translate - different terms per language
● Views
● Filter content by user language
● Translate view titles via Translation Interface
http://affinitybridge.com
Translation Interface
● Overview
● Translation Table
● Translate - find strings & translate them
● Import - import .po files
● Strings - refresh translation strings
● Update - grabs po files and updates strings
● Export - export po files from db strings
● Extract - export po files from code files
http://affinitybridge.com
Potential Pitfalls
● Indexing in Solr
● Index language fields and filter views by language
fields.
● Adding new language to existing site
● Synchronized fields created in English that have
translations added later can cause problems.
●
http://affinitybridge.com
Code Example
Grab this install profile for En/Fr with tools:
https://github.com/robinpuga/multilang
drush make --working-copy
--translations=fr stub.make ../multilang_site
http://affinitybridge.com
● Translation workflows offline
○ Working with .po files
○ Can be difficult to understand string context
■ “Home” = house or homepage
● Translation workflows online
○ Localization Client
○ Access to Translation Tools
○ Identifying content that needs translation
Working with Translators
http://affinitybridge.com
Basics
● Gettext is an internationalization (i18n)
system used for writing multilingual programs
● Drupal Code
$str = t("My name is @name.n", array('@name' => $user->name));
● fr.po file
#: src/name.module:36
msgid "My name is @name.n"
msgstr "Je m'appelle @name.n"
http://affinitybridge.com
.Po files beyond the basics
● Translation Contexts
$str = t("Home", array(), array('context' => 'Navigation');
● Plural strings
// These strings are run through the t() function.
$str = format_plural($count, ‘1 comment‘, ‘@count comments’);
● fr.po file for plurals
#: src/name.module:36
msgid "1 comment"
msgid_plural "@count comments"
msgstr[0] "1 commentaire"
msgstr[1] "@count commentaires"
http://affinitybridge.com
What’s happening in Drupal 8
● Much more in core
● Much of i18n functionality rolled into core
● Better language detection and config
● Name transliteration for machine names
http://affinitybridge.com
Where to find more info & support
● Follow Gábor - http://hojtsy.hu/
● https://localize.drupal.org/news
● https://groups.drupal.org/internationalization
● #drupal-i18n (i18n = internationalization)
● #drupal-l10n (l10n = localization)
http://affinitybridge.com
robin@affinitybridge.com
Questions?

Más contenido relacionado

Destacado

Data Visualization and Mapping using Javascript
Data Visualization and Mapping using JavascriptData Visualization and Mapping using Javascript
Data Visualization and Mapping using JavascriptMack Hardy
 
Behaviour Testing and Continuous Integration with Drupal
Behaviour Testing and Continuous Integration with DrupalBehaviour Testing and Continuous Integration with Drupal
Behaviour Testing and Continuous Integration with Drupalsmithmilner
 
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013Mack Hardy
 
Server side geo_tools_in_drupal_pnw_2012
Server side geo_tools_in_drupal_pnw_2012Server side geo_tools_in_drupal_pnw_2012
Server side geo_tools_in_drupal_pnw_2012Mack Hardy
 
Wikimaps kansallisarkisto
Wikimaps kansallisarkistoWikimaps kansallisarkisto
Wikimaps kansallisarkistoSusanna Ånäs
 
Wikimaps Wikimania 2013
Wikimaps Wikimania 2013Wikimaps Wikimania 2013
Wikimaps Wikimania 2013Susanna Ånäs
 

Destacado (6)

Data Visualization and Mapping using Javascript
Data Visualization and Mapping using JavascriptData Visualization and Mapping using Javascript
Data Visualization and Mapping using Javascript
 
Behaviour Testing and Continuous Integration with Drupal
Behaviour Testing and Continuous Integration with DrupalBehaviour Testing and Continuous Integration with Drupal
Behaviour Testing and Continuous Integration with Drupal
 
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013
Strategies and Tips for Building Enterprise Drupal Applications - PNWDS 2013
 
Server side geo_tools_in_drupal_pnw_2012
Server side geo_tools_in_drupal_pnw_2012Server side geo_tools_in_drupal_pnw_2012
Server side geo_tools_in_drupal_pnw_2012
 
Wikimaps kansallisarkisto
Wikimaps kansallisarkistoWikimaps kansallisarkisto
Wikimaps kansallisarkisto
 
Wikimaps Wikimania 2013
Wikimaps Wikimania 2013Wikimaps Wikimania 2013
Wikimaps Wikimania 2013
 

Similar a Building Multilingual Websites in Drupal 7

Barcelona Multilanguage
Barcelona MultilanguageBarcelona Multilanguage
Barcelona Multilanguageguest3a6661
 
PHP BASIC PRESENTATION
PHP BASIC PRESENTATIONPHP BASIC PRESENTATION
PHP BASIC PRESENTATIONkrutitrivedi
 
Drupal + composer = new love !?
Drupal + composer = new love !?Drupal + composer = new love !?
Drupal + composer = new love !?nuppla
 
[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?
[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?
[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?Wong Hoi Sing Edison
 
Efficient development workflows with composer
Efficient development workflows with composerEfficient development workflows with composer
Efficient development workflows with composernuppla
 
PyTorch for Delphi - Python Data Sciences Libraries.pdf
PyTorch for Delphi - Python Data Sciences Libraries.pdfPyTorch for Delphi - Python Data Sciences Libraries.pdf
PyTorch for Delphi - Python Data Sciences Libraries.pdfEmbarcadero Technologies
 
Apache Jena Elephas and Friends
Apache Jena Elephas and FriendsApache Jena Elephas and Friends
Apache Jena Elephas and FriendsRob Vesse
 
Drupalcamp Atlanta 2010 Internationalization Presentation
Drupalcamp Atlanta 2010 Internationalization PresentationDrupalcamp Atlanta 2010 Internationalization Presentation
Drupalcamp Atlanta 2010 Internationalization PresentationMediacurrent
 
Design Web Service API by HungerStation
Design Web Service API by HungerStationDesign Web Service API by HungerStation
Design Web Service API by HungerStationArabNet ME
 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCRDrupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCRGaurav Mishra
 
Introduction to PHP - SDPHP
Introduction to PHP - SDPHPIntroduction to PHP - SDPHP
Introduction to PHP - SDPHPEric Johnson
 
DrupalCon Paris Muiltilingual Panel
DrupalCon Paris Muiltilingual PanelDrupalCon Paris Muiltilingual Panel
DrupalCon Paris Muiltilingual PanelDoug Green
 
Your First Scala Web Application using Play 2.1
Your First Scala Web Application using Play 2.1Your First Scala Web Application using Play 2.1
Your First Scala Web Application using Play 2.1Matthew Barlocker
 
Drupal and the semantic web - SemTechBiz 2012
Drupal and the semantic web - SemTechBiz 2012Drupal and the semantic web - SemTechBiz 2012
Drupal and the semantic web - SemTechBiz 2012scorlosquet
 
Multilingual WordPress
Multilingual WordPressMultilingual WordPress
Multilingual WordPressMatt Smith
 
Hong Kong Drupal User Group - 2014 June 14th
Hong Kong Drupal User Group - 2014 June 14thHong Kong Drupal User Group - 2014 June 14th
Hong Kong Drupal User Group - 2014 June 14thWong Hoi Sing Edison
 
Writing multi-language documentation using Sphinx
Writing multi-language documentation using SphinxWriting multi-language documentation using Sphinx
Writing multi-language documentation using SphinxMarkus Zapke-Gründemann
 

Similar a Building Multilingual Websites in Drupal 7 (20)

Barcelona Multilanguage
Barcelona MultilanguageBarcelona Multilanguage
Barcelona Multilanguage
 
PHP BASIC PRESENTATION
PHP BASIC PRESENTATIONPHP BASIC PRESENTATION
PHP BASIC PRESENTATION
 
Drupal + composer = new love !?
Drupal + composer = new love !?Drupal + composer = new love !?
Drupal + composer = new love !?
 
[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?
[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?
[HKDUG] #20151017 - BarCamp 2015 - Drupal 8 is Coming! Are You Ready?
 
Introduction to Web Designing
Introduction to Web DesigningIntroduction to Web Designing
Introduction to Web Designing
 
Inside DocBlox
Inside DocBloxInside DocBlox
Inside DocBlox
 
Efficient development workflows with composer
Efficient development workflows with composerEfficient development workflows with composer
Efficient development workflows with composer
 
PyTorch for Delphi - Python Data Sciences Libraries.pdf
PyTorch for Delphi - Python Data Sciences Libraries.pdfPyTorch for Delphi - Python Data Sciences Libraries.pdf
PyTorch for Delphi - Python Data Sciences Libraries.pdf
 
Apache Jena Elephas and Friends
Apache Jena Elephas and FriendsApache Jena Elephas and Friends
Apache Jena Elephas and Friends
 
Php Vs Phyton
Php Vs PhytonPhp Vs Phyton
Php Vs Phyton
 
Drupalcamp Atlanta 2010 Internationalization Presentation
Drupalcamp Atlanta 2010 Internationalization PresentationDrupalcamp Atlanta 2010 Internationalization Presentation
Drupalcamp Atlanta 2010 Internationalization Presentation
 
Design Web Service API by HungerStation
Design Web Service API by HungerStationDesign Web Service API by HungerStation
Design Web Service API by HungerStation
 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCRDrupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
 
Introduction to PHP - SDPHP
Introduction to PHP - SDPHPIntroduction to PHP - SDPHP
Introduction to PHP - SDPHP
 
DrupalCon Paris Muiltilingual Panel
DrupalCon Paris Muiltilingual PanelDrupalCon Paris Muiltilingual Panel
DrupalCon Paris Muiltilingual Panel
 
Your First Scala Web Application using Play 2.1
Your First Scala Web Application using Play 2.1Your First Scala Web Application using Play 2.1
Your First Scala Web Application using Play 2.1
 
Drupal and the semantic web - SemTechBiz 2012
Drupal and the semantic web - SemTechBiz 2012Drupal and the semantic web - SemTechBiz 2012
Drupal and the semantic web - SemTechBiz 2012
 
Multilingual WordPress
Multilingual WordPressMultilingual WordPress
Multilingual WordPress
 
Hong Kong Drupal User Group - 2014 June 14th
Hong Kong Drupal User Group - 2014 June 14thHong Kong Drupal User Group - 2014 June 14th
Hong Kong Drupal User Group - 2014 June 14th
 
Writing multi-language documentation using Sphinx
Writing multi-language documentation using SphinxWriting multi-language documentation using Sphinx
Writing multi-language documentation using Sphinx
 

Último

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 

Último (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 

Building Multilingual Websites in Drupal 7

  • 1. Building Multilingual Websites in Drupal 7 Robin Puga Language embodies the intellectual wealth of the people who use it. ~ Kenneth Hale
  • 2. Overview ● Covering the basics ● Multilingual websites in Drupal 7 ● Working with translators ● What’s happening in Drupal 8 http://affinitybridge.com
  • 3. Basics ● Gettext is an internationalization (i18n) system used for writing multilingual programs ● Drupal Code $str = t("My name is @name.n", array('@name' => $user->name)); ● fr.po file #: src/name.module:36 msgid "My name is @name.n" msgstr "Je m'appelle @name.n" http://affinitybridge.com
  • 4. Blasts in the past - Drupal 5 & 6 http://affinitybridge.comhttp://s.coop/d6convertlang
  • 5. Drupal 7 ● Definitive Guide by Gábor Hojtsy http://hojtsy.hu/multilingual-drupal7 Read it! ● Books Drupal 7 Multilingual Sites By Kristen Pol http://affinitybridge.com
  • 6. Drupal 7 ● University of Ottawa Calendar http://uocal.uottawa.ca English / French ● Participedia http://Participedia.net English then German http://affinitybridge.com
  • 7. Modules for Drupal 7 ● Locale module in core ● Internationalization or i18n module ● Localization Update module ● Entity Translation module http://affinitybridge.com
  • 8. Setup for Multiple Languages ● Add languages ● Import the .po files ● Configure detection and selection ● Configure your site content types http://affinitybridge.com
  • 9. Node level translations ● Now using Entity Translation module ● Setting up the content type ● Synchronizing fields ● Translating content using translate tab ● http://affinitybridge.com
  • 10. Entity translations ● Allows translations for entities in Drupal ● User accounts fields ● Comments ● Any entities http://affinitybridge.com
  • 11. Field level translations ● One node with translatable fields ● Use case: Products in Commerce http://affinitybridge.com
  • 12. Other Modules for Drupal 7 ● Variable module ● Translation Table module ● Potx module ● Localization Client module ● Translation Helpers module http://affinitybridge.com
  • 13. Translating your site ● Menus ● Same page hierarchy - translate menu links ● Different page hierarchy options: ● One menu per language, or ● Add menu links in different languages ● Blocks ● Now translatable. Works great for static blocks http://affinitybridge.com
  • 14. Translating your site ● Taxonomy terms ● Localize - one term with translated title ● Translate - different terms per language ● Views ● Filter content by user language ● Translate view titles via Translation Interface http://affinitybridge.com
  • 15. Translation Interface ● Overview ● Translation Table ● Translate - find strings & translate them ● Import - import .po files ● Strings - refresh translation strings ● Update - grabs po files and updates strings ● Export - export po files from db strings ● Extract - export po files from code files http://affinitybridge.com
  • 16. Potential Pitfalls ● Indexing in Solr ● Index language fields and filter views by language fields. ● Adding new language to existing site ● Synchronized fields created in English that have translations added later can cause problems. ● http://affinitybridge.com
  • 17. Code Example Grab this install profile for En/Fr with tools: https://github.com/robinpuga/multilang drush make --working-copy --translations=fr stub.make ../multilang_site http://affinitybridge.com
  • 18. ● Translation workflows offline ○ Working with .po files ○ Can be difficult to understand string context ■ “Home” = house or homepage ● Translation workflows online ○ Localization Client ○ Access to Translation Tools ○ Identifying content that needs translation Working with Translators http://affinitybridge.com
  • 19. Basics ● Gettext is an internationalization (i18n) system used for writing multilingual programs ● Drupal Code $str = t("My name is @name.n", array('@name' => $user->name)); ● fr.po file #: src/name.module:36 msgid "My name is @name.n" msgstr "Je m'appelle @name.n" http://affinitybridge.com
  • 20. .Po files beyond the basics ● Translation Contexts $str = t("Home", array(), array('context' => 'Navigation'); ● Plural strings // These strings are run through the t() function. $str = format_plural($count, ‘1 comment‘, ‘@count comments’); ● fr.po file for plurals #: src/name.module:36 msgid "1 comment" msgid_plural "@count comments" msgstr[0] "1 commentaire" msgstr[1] "@count commentaires" http://affinitybridge.com
  • 21. What’s happening in Drupal 8 ● Much more in core ● Much of i18n functionality rolled into core ● Better language detection and config ● Name transliteration for machine names http://affinitybridge.com
  • 22. Where to find more info & support ● Follow Gábor - http://hojtsy.hu/ ● https://localize.drupal.org/news ● https://groups.drupal.org/internationalization ● #drupal-i18n (i18n = internationalization) ● #drupal-l10n (l10n = localization) http://affinitybridge.com