diff --git a/src/jquery.uls.core.js b/src/jquery.uls.core.js
index 776aee6..9025f3f 100644
--- a/src/jquery.uls.core.js
+++ b/src/jquery.uls.core.js
@@ -43,7 +43,7 @@
America\
\
\
diff --git a/src/jquery.uls.lcd.js b/src/jquery.uls.lcd.js
index a165047..6e5e3a5 100644
--- a/src/jquery.uls.lcd.js
+++ b/src/jquery.uls.lcd.js
@@ -149,11 +149,21 @@
render: function() {
var that = this;
+ var regions = { // FIXME Remove this when i18n is in place.
+ WW: 'Worldwide',
+ AM: 'America',
+ EU: 'Europe',
+ ME: 'Middle East',
+ AS: 'Asia',
+ AF: 'Africa',
+ PA: 'Pacific'
+ };
var $section;
$.each( $.uls.data.regiongroups, function( regionCode, regionIndex ) {
$section = $( '
' ).addClass( 'twelve columns uls-lcd-region-section' ).prop( 'id', regionCode );
- $section.append( $( '
' ).addClass( 'eleven columns uls-lcd-region-section offset-by-one' ).html( regionCode ) );
- // FIXME this is regioncode(NA, EU etc). Should be proper localized region name.
+ $section.append( $( '' )
+ .addClass( 'eleven columns uls-lcd-region-section offset-by-one' )
+ .text( regions[regionCode] ) );
that.$element.append( $section );
$section.hide();
that.regionDivs[regionCode] = $section;