SlideShare una empresa de Scribd logo
1 de 66
Descargar para leer sin conexión
@ThemeBoy 
THEME & 
PLUGIN 
LOCALISATION
FOOTBALL
¿POR QUÉ?
STATISTICS
55.7% OF WEBSITES ARE IN ENGLISH
55.7% OF WEBSITES ARE IN ENGLISH 
27% OF INTERNET USERS SPEAK ENGLISH
55.7% OF WEBSITES ARE IN ENGLISH
55.7% OF WEBSITES ARE IN ENGLISH 
JAPANESE
55.7% OF WEBSITES ARE IN ENGLISH 
5.1% JAPANESE
55.7% OF WEBSITES ARE IN ENGLISH 
GERMAN 5.1% JAPANESE
55.7% OF WEBSITES ARE IN ENGLISH 
6.1% GERMAN 5.1% JAPANESE
55.7% OF WEBSITES ARE IN ENGLISH 
5.1% JAPANESE 6.1% GERMAN FINNISH
55.7% OF WEBSITES ARE IN ENGLISH 
5.1% JAPANESE 6.1% GERMAN 0.2% FINNISH
BIENVENUE
CAN’T READ = WON’T BUY
NORWAY
LANGUAGES ARE 
ALL DIFFERENT
GENDER
GENDER 
ADD NEW PLAYER: 
AGGIUNGI NUOVO GIOCATORE 
!
GENDER 
ADD NEW PLAYER: 
AGGIUNGI NUOVO GIOCATORE 
! ADD NEW TEAM: 
AGGIUNGI NUOVA SQUADRA
GENDER 
ADD NEW PLAYER: 
AGGIUNGI NUOVO GIOCATORE 
! ADD NEW TEAM: 
AGGIUNGI NUOVA SQUADRA
WORD LENGTH
WORD LENGTH 
ENGLISH:
WORD LENGTH 
ENGLISH: TAGS
WORD LENGTH 
ENGLISH: TAGS 
CHINESE:
WORD LENGTH 
TAGS 
标签 
ENGLISH: 
CHINESE:
WORD LENGTH 
ENGLISH: 
CHINESE: 
GERMAN: 
TAGS 
标签
WORD LENGTH 
ENGLISH: 
CHINESE: 
GERMAN: 
TAGS 
标签 
SCHLAGWORTE
RTL
RTL 
DIRECTION OF 
TEXT
RTL 
DIRECTION OF 
INFORMATION
RTL 
INCLUDE AN 
RTL STYLESHEET
RTL STYLESHEET 
if ( is_rtl() ) { 
wp_enqueue_style( 
‘rtl-stylesheet’, 
get_template_directory_uri() . ‘/rtl.css’ 
); 
}
INTERNATIONALISATION 
(i18n) 
VS 
LOCALISATION 
(l10n)
i18n 
IS DEVELOPMENT 
l10n 
IS ADAPTATION
GNU GETTEXT
POEDIT
TRANSIFEX
WPML
SPORTSPRESS THE MOST ACTIVE WORDPRESS PROJECT ON 
TRANSIFEX
SPORTSPRESS THE ONLY SPORTS PLUGIN OFFICIALLY COMPATIBLE WITH 
WPML
COOL PLUGIN, BRO
LESS WORDS
GO GLOBAL 
WITH WPML
WORKFLOW
DOWNLOAD CORE STRINGS 
ALL TRANSLATIONS OF WP CORE: 
https://github.com/ThemeBoy/wp-languages
CODE (yay!)
SET IT UP 
LOAD THEME OR PLUGIN TRANSLATIONS 
<?php load_theme_textdomain( $domain, $path ) ?> 
<?php load_plugin_textdomain( $domain, false, $path ) ?> 
LOAD USER TRANSLATIONS: 
<?php 
$locale = apply_filters( 'plugin_locale', get_locale(), $domain ); 
load_textdomain( $domain, WP_LANG_DIR . "/$domain-$locale.mo" ); 
?>
GETTEXT FUNCTIONS 
// Return translation 
__( ‘Hello’, ‘my-text-domain’ ); 
// Echo translation 
_e( ‘Hello’, ‘my-text-domain’ ); 
// Placeholders 
printf( __( ‘Add New %s.’, 'my-text-domain' ), $label ); 
// Plurals 
printf( _n( ‘One post’, ‘%s posts’, $count, ‘my-text-domain’ ), $count ); 
// Disambiguation by context 
_x( ‘Post’, ‘noun’, ‘my-text-domain’ ); 
_x( ‘Post’, ‘verb’, ‘my-text-domain’ );
CREATE A POT FILE 
POEDIT SOURCE KEYWORDS 
__ 
_e 
_n:1,2 
_x:1,2 
_ex:1,2 
_nx:4c,1,2 
esc_attr__ 
esc_attr_e 
esc_attr_x:1,2c 
esc_html__ 
esc_html_e 
esc_html_x:1,2c 
_n_noop:1,2 
_nx_noop:3c,1,2 
__ngettext_noop:1,2
TRANSIFEX CLIENT 
GET PIP 
https://bootstrap.pypa.io/get-pip.py 
# python get-pip.py 
INSTALL THE TRANSIFEX CLIENT 
# pip install transifex-client
TRANSIFEX CLIENT 
INITIALISE & CONFIGURE 
$ cd my-plugin 
$ tx init 
$ nano .tx/config 
[main] 
host = https://www.transifex.com 
! 
[project_slug.resource_slug] 
file_filter = languages/my-plugin—<lang>.po 
source_file = languages/my-plugin.pot 
source_lang = en_US
TRANSIFEX CLIENT 
PUSH SOURCE STRINGS 
$ tx push -s 
PULL ALL TRANSLATIONS 
$ tx pull 
PULL TRANSLATIONS FROM A LANGUAGE 
$ tx pull -l en_GB
GNU GETTEXT 
DOWNLOAD & INSTALL 
http://www.gnu.org/software/gettext/ 
https://gist.github.com/mbillard/1647940 
COMPILE ALL .PO FILES TO .MO 
$ for file in $(find ./languages/ -name *.po -type f); 
do msgfmt "$file" -o “${file%po}mo”; 
done
RECAP
STATISTICS
CULTURE
CONVERSIONS
THINK ABOUT GENDER
LENGTH OF WORDS THINK ABOUT
RTL THINK ABOUT
IS DEVELOPMENT i18n
l10n IS ADAPTATION
NORWAY IS AWESOME
JOIN A TEAM ON TRANSIFEX
QUESTIONS 
@ThemeBoy

Más contenido relacionado

Destacado

Creating and Managing Content on Your WordPress Site
Creating and Managing Content on Your WordPress SiteCreating and Managing Content on Your WordPress Site
Creating and Managing Content on Your WordPress Site
Kelly Henderson
 
Categories, Tags, Custom Post Types! Oh My!
Categories, Tags, Custom Post Types! Oh My!Categories, Tags, Custom Post Types! Oh My!
Categories, Tags, Custom Post Types! Oh My!
sprclldr
 
WordPress per giornalisti freelance
WordPress per giornalisti freelance  WordPress per giornalisti freelance
WordPress per giornalisti freelance
GGDBologna
 

Destacado (17)

Future of wordpress in Nashville
Future of wordpress in NashvilleFuture of wordpress in Nashville
Future of wordpress in Nashville
 
Ecomm wp2014
Ecomm wp2014Ecomm wp2014
Ecomm wp2014
 
Simplicity
SimplicitySimplicity
Simplicity
 
Creating and Managing Content on Your WordPress Site
Creating and Managing Content on Your WordPress SiteCreating and Managing Content on Your WordPress Site
Creating and Managing Content on Your WordPress Site
 
Future of WordPress in Nashville 2013
Future of WordPress in Nashville 2013Future of WordPress in Nashville 2013
Future of WordPress in Nashville 2013
 
Adventures in Non-Profit Web Design
Adventures in Non-Profit Web DesignAdventures in Non-Profit Web Design
Adventures in Non-Profit Web Design
 
Scoping and Estimating WordPress Projects as an Agency
Scoping and Estimating WordPress Projects as an AgencyScoping and Estimating WordPress Projects as an Agency
Scoping and Estimating WordPress Projects as an Agency
 
Testing Made Easy
Testing Made EasyTesting Made Easy
Testing Made Easy
 
Wcoc preso
Wcoc presoWcoc preso
Wcoc preso
 
Categories, Tags, Custom Post Types! Oh My!
Categories, Tags, Custom Post Types! Oh My!Categories, Tags, Custom Post Types! Oh My!
Categories, Tags, Custom Post Types! Oh My!
 
WordPress as a CMS
WordPress as a CMSWordPress as a CMS
WordPress as a CMS
 
Using Web Fonts in WordPress
Using Web Fonts in WordPress Using Web Fonts in WordPress
Using Web Fonts in WordPress
 
Build your website before you install wordpress.
Build your website before you install wordpress.Build your website before you install wordpress.
Build your website before you install wordpress.
 
Object Oriented Programming for WordPress Plugin Development
Object Oriented Programming for WordPress Plugin DevelopmentObject Oriented Programming for WordPress Plugin Development
Object Oriented Programming for WordPress Plugin Development
 
Website Performance, Engagement, and Leads
Website Performance, Engagement, and LeadsWebsite Performance, Engagement, and Leads
Website Performance, Engagement, and Leads
 
Ten Things You Should Know About WordPress
Ten Things You Should Know About WordPressTen Things You Should Know About WordPress
Ten Things You Should Know About WordPress
 
WordPress per giornalisti freelance
WordPress per giornalisti freelance  WordPress per giornalisti freelance
WordPress per giornalisti freelance
 

Último

Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 

Último (20)

W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 

WordCamp Sydney 2014