function commerce_paypal_wps_languages in Commerce PayPal 7
Same name and namespace in other branches
- 7.2 modules/wps/commerce_paypal_wps.module \commerce_paypal_wps_languages()
Returns an array of all possible language codes.
1 call to commerce_paypal_wps_languages()
- commerce_paypal_wps_settings_form in modules/
wps/ commerce_paypal_wps.module - Payment method callback: settings form.
File
- modules/
wps/ commerce_paypal_wps.module, line 473 - Implements PayPal Website Payments Standard in Drupal Commerce checkout.
Code
function commerce_paypal_wps_languages() {
return array(
t('By country') => array(
'AU' => t('Australia'),
'AT' => t('Austria'),
'BE' => t('Belgium'),
'BR' => t('Brazil'),
'CA' => t('Canada'),
'CN' => t('China'),
'FR' => t('France'),
'DE' => t('Germany'),
'IT' => t('Italy'),
'NL' => t('Netherlands'),
'PL' => t('Poland'),
'PT' => t('Portugal'),
'RU' => t('Russia'),
'ES' => t('Spain'),
'CH' => t('Switzerland'),
'GB' => t('United Kingdom'),
'US' => t('United States'),
),
t('By language') => array(
'da_DK' => t('Danish (for Denmark only)'),
'he_IL' => t('Hebrew (for all)'),
'id_ID' => t('Indonesian (for Indonesia only)'),
'jp_JP' => t('Japanese (for Japan only)'),
'no_NO' => t('Norwegian (for Norway only)'),
'pt_BR' => t('Brazilian Portuguese (for Portugal and Brazil only)'),
'ru_RU' => t('Russian (for Lithuania, Latvia, and Ukraine only)'),
'sv_SE' => t('Swedish (for Sweden only)'),
'th_TH' => t('Thai (for Thailand only)'),
'tr_TR' => t('Turkish (for Turkey only)'),
'zh_CN' => t('Simplified Chinese (for China only)'),
'zh_HK' => t('Traditional Chinese (for Hong Kong only)'),
'zh_TW' => t('Traditional Chinese (for Taiwan only)'),
),
);
}