1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Merge pull request #938 from codedge/#426-Translate-hardcoded-string

Fix hardcoded translations for industry, country and payment types
This commit is contained in:
Hillel Coren 2016-07-03 13:16:20 +03:00 committed by GitHub
commit 3025fb3f0b
11 changed files with 1026 additions and 17 deletions

View File

@ -347,9 +347,7 @@ class AccountController extends BaseController
$data = [ $data = [
'account' => Account::with('users')->findOrFail(Auth::user()->account_id), 'account' => Account::with('users')->findOrFail(Auth::user()->account_id),
'countries' => Cache::get('countries'),
'sizes' => Cache::get('sizes'), 'sizes' => Cache::get('sizes'),
'industries' => Cache::get('industries'),
'title' => trans('texts.company_details'), 'title' => trans('texts.company_details'),
]; ];

View File

@ -205,10 +205,8 @@ class ClientController extends BaseController
'account' => Auth::user()->account, 'account' => Auth::user()->account,
'sizes' => Cache::get('sizes'), 'sizes' => Cache::get('sizes'),
'paymentTerms' => Cache::get('paymentTerms'), 'paymentTerms' => Cache::get('paymentTerms'),
'industries' => Cache::get('industries'),
'currencies' => Cache::get('currencies'), 'currencies' => Cache::get('currencies'),
'languages' => Cache::get('languages'), 'languages' => Cache::get('languages'),
'countries' => Cache::get('countries'),
'customLabel1' => Auth::user()->account->custom_client_label1, 'customLabel1' => Auth::user()->account->custom_client_label1,
'customLabel2' => Auth::user()->account->custom_client_label2, 'customLabel2' => Auth::user()->account->custom_client_label2,
]; ];

View File

@ -372,17 +372,16 @@ class InvoiceController extends BaseController
'languages' => Cache::get('languages'), 'languages' => Cache::get('languages'),
'sizes' => Cache::get('sizes'), 'sizes' => Cache::get('sizes'),
'paymentTerms' => Cache::get('paymentTerms'), 'paymentTerms' => Cache::get('paymentTerms'),
'industries' => Cache::get('industries'),
'invoiceDesigns' => InvoiceDesign::getDesigns(), 'invoiceDesigns' => InvoiceDesign::getDesigns(),
'invoiceFonts' => Cache::get('fonts'), 'invoiceFonts' => Cache::get('fonts'),
'frequencies' => array( 'frequencies' => array(
1 => 'Weekly', 1 => trans('texts.freq_weekly'),
2 => 'Two weeks', 2 => trans('texts.freq_two_weeks'),
3 => 'Four weeks', 3 => trans('texts.freq_four_weeks'),
4 => 'Monthly', 4 => trans('texts.freq_monthly'),
5 => 'Three months', 5 => trans('texts.freq_three_months'),
6 => 'Six months', 6 => trans('texts.freq_six_months'),
7 => 'Annually', 7 => trans('texts.freq_annually'),
), ),
'recurringDueDates' => $recurringDueDates, 'recurringDueDates' => $recurringDueDates,
'recurringHelp' => $recurringHelp, 'recurringHelp' => $recurringHelp,

View File

@ -71,7 +71,6 @@ class PaymentController extends BaseController
'method' => 'POST', 'method' => 'POST',
'url' => "payments", 'url' => "payments",
'title' => trans('texts.new_payment'), 'title' => trans('texts.new_payment'),
'paymentTypes' => Cache::get('paymentTypes'),
'paymentTypeId' => Input::get('paymentTypeId'), 'paymentTypeId' => Input::get('paymentTypeId'),
'clients' => Client::scope()->viewable()->with('contacts')->orderBy('name')->get(), ); 'clients' => Client::scope()->viewable()->with('contacts')->orderBy('name')->get(), );

View File

@ -0,0 +1,43 @@
<?php
namespace App\Http\ViewComposers;
use Cache;
use Illuminate\View\View;
/**
* TranslationComposer.php.
*
* @copyright See LICENSE file that was distributed with this source code.
*/
class TranslationComposer
{
/**
* Bind data to the view.
*
* @param View $view
*
* @return void
*/
public function compose(View $view)
{
$view->with('industries', Cache::get('industries')->each(function ($industry) {
$industry->name = trans('texts.industry_'.$industry->name);
})->sortBy(function ($industry) {
return $industry->name;
}));
$view->with('countries', Cache::get('countries')->each(function ($country) {
$country->name = trans('texts.country_'.$country->name);
})->sortBy(function ($country) {
return $country->name;
}));
$view->with('paymentTypes', Cache::get('paymentTypes')->each(function ($pType) {
$pType->name = trans('texts.payment_type_'.$pType->name);
})->sortBy(function ($pType) {
return $pType->name;
}));
}
}

View File

@ -14,7 +14,9 @@ class RecurringInvoiceDatatable extends EntityDatatable
[ [
'frequency', 'frequency',
function ($model) { function ($model) {
return link_to("invoices/{$model->public_id}", $model->frequency)->toHtml(); $frequency = strtolower($model->frequency);
$frequency = preg_replace('/\s/', '_', $frequency);
return link_to("invoices/{$model->public_id}", trans('texts.freq_'.$frequency))->toHtml();
} }
], ],
[ [

View File

@ -65,7 +65,9 @@ class InvoicePresenter extends EntityPresenter {
public function frequency() public function frequency()
{ {
return $this->entity->frequency ? $this->entity->frequency->name : ''; $frequency = $this->entity->frequency ? $this->entity->frequency->name : '';
$frequency = strtolower($frequency);
return trans('texts.freq_'.$frequency);
} }
public function email() public function email()

View File

@ -0,0 +1,31 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class ComposerServiceProvider extends ServiceProvider
{
/**
* Register bindings in the container.
*
* @return void
*/
public function boot()
{
view()->composer(
['accounts.details', 'clients.edit', 'payments.edit', 'invoices.edit'],
'App\Http\ViewComposers\TranslationComposer'
);
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
}
}

View File

@ -159,6 +159,7 @@ return [
*/ */
'App\Providers\AuthServiceProvider', 'App\Providers\AuthServiceProvider',
'App\Providers\AppServiceProvider', 'App\Providers\AppServiceProvider',
'App\Providers\ComposerServiceProvider',
'App\Providers\ConfigServiceProvider', 'App\Providers\ConfigServiceProvider',
'App\Providers\EventServiceProvider', 'App\Providers\EventServiceProvider',
'App\Providers\RouteServiceProvider', 'App\Providers\RouteServiceProvider',

View File

@ -1,6 +1,8 @@
<?php <?php
$LANG = array( $LANG = array(
// client
'organization' => 'Organisation', 'organization' => 'Organisation',
'name' => 'Name', 'name' => 'Name',
'website' => 'Webseite', 'website' => 'Webseite',
@ -1166,7 +1168,6 @@ $LANG = array(
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments, :link to see the full list of features.', 'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments, :link to see the full list of features.',
'return_to_app' => 'Return to app', 'return_to_app' => 'Return to app',
// Payment updates // Payment updates
'refund_payment' => 'Zahlung erstatten', 'refund_payment' => 'Zahlung erstatten',
'refund_max' => 'Max:', 'refund_max' => 'Max:',
@ -1362,8 +1363,319 @@ $LANG = array(
'gateway_exists' => 'This gateway already exists', 'gateway_exists' => 'This gateway already exists',
'manual_entry' => 'Manual entry', 'manual_entry' => 'Manual entry',
// Frequencies
'freq_weekly' => 'wöchentlich',
'freq_two_weeks' => 'zweiwöchentlich',
'freq_four_weeks' => 'vierwöchentlich',
'freq_monthly' => 'monatlich',
'freq_three_months' => 'dreimonatlich',
'freq_six_months' => 'halbjährlich',
'freq_annually' => 'jährlich',
// Payment types
'payment_type_Apply Credit' => 'Kredit',
'payment_type_Bank Transfer' => 'Überweisung',
'payment_type_Cash' => 'Bar',
'payment_type_Debit' => 'Guthaben',
'payment_type_ACH' => 'ACH',
'payment_type_Visa Card' => 'VISA',
'payment_type_MasterCard' => 'MasterCard',
'payment_type_American Express' => 'American Express',
'payment_type_Discover Card' => 'Discover Card',
'payment_type_Diners Card' => 'Diners Card',
'payment_type_EuroCard' => 'EuroCard',
'payment_type_Nova' => 'Nova',
'payment_type_Credit Card Other' => 'Andere Kreditkarte',
'payment_type_PayPal' => 'PayPal',
'payment_type_Google Wallet' => 'Google Wallet',
'payment_type_Check' => 'Scheck',
// Industries
'industry_Accounting & Legal' => 'Buchhaltung & Rechnungswesen',
'industry_Advertising' => 'Werbung',
'industry_Aerospace' => 'Luft- und Raumfahrt',
'industry_Agriculture' => 'Landwirtschaft',
'industry_Automotive' => 'Automobilbau',
'industry_Banking & Finance' => 'Bank- und Finanzwesen',
'industry_Biotechnology' => 'Biotechnologie',
'industry_Broadcasting' => 'Rundfunk',
'industry_Business Services' => 'Dienstleistungen',
'industry_Commodities & Chemicals' => 'Handelsgüter und Chemikalien',
'industry_Communications' => 'Kommunikation',
'industry_Computers & Hightech' => 'Computer und Hochtechnologie',
'industry_Defense' => 'Verteidigungsbereich',
'industry_Energy' => 'Energie',
'industry_Entertainment' => 'Unterhaltung',
'industry_Government' => 'Regierungsbereich',
'industry_Healthcare & Life Sciences' => 'Gesundheitswesen und Biowissenschaften',
'industry_Insurance' => 'Versicherung',
'industry_Manufacturing' => 'Herstellung',
'industry_Marketing' => 'Marketing',
'industry_Media' => 'Medien',
'industry_Nonprofit & Higher Ed' => 'Nonprofit-Bereich',
'industry_Pharmaceuticals' => 'Pharmazeutika',
'industry_Professional Services & Consulting' => 'Unternehmensberatung',
'industry_Real Estate' => 'Immobilien',
'industry_Retail & Wholesale' => 'Einzel- und Großhandel',
'industry_Sports' => 'Sport',
'industry_Transportation' => 'Transport',
'industry_Travel & Luxury' => 'Reisen und Luxus',
'industry_Other' => 'Andere',
'industry_Photography' => 'Fotografie',
// Countries
'country_Afghanistan' => '',
'country_Albania' => 'Albanien',
'country_Antarctica' => '',
'country_Algeria' => 'Algerien',
'country_American Samoa' => '',
'country_Andorra' => '',
'country_Angola' => '',
'country_Antigua and Barbuda' => '',
'country_Azerbaijan' => '',
'country_Argentina' => 'Argentinien',
'country_Australia' => '',
'country_Austria' => '',
'country_Bahamas' => '',
'country_Bahrain' => '',
'country_Bangladesh' => '',
'country_Armenia' => '',
'country_Barbados' => '',
'country_Belgium' => '',
'country_Bermuda' => '',
'country_Bhutan' => '',
'country_Bolivia, Plurinational State of' => '',
'country_Bosnia and Herzegovina' => '',
'country_Botswana' => '',
'country_Bouvet Island' => '',
'country_Brazil' => '',
'country_Belize' => '',
'country_British Indian Ocean Territory' => '',
'country_Solomon Islands' => '',
'country_Virgin Islands, British' => '',
'country_Brunei Darussalam' => '',
'country_Bulgaria' => '',
'country_Myanmar' => '',
'country_Burundi' => '',
'country_Belarus' => '',
'country_Cambodia' => '',
'country_Cameroon' => '',
'country_Canada' => '',
'country_Cape Verde' => '',
'country_Cayman Islands' => '',
'country_Central African Republic' => '',
'country_Sri Lanka' => '',
'country_Chad' => '',
'country_Chile' => '',
'country_China' => '',
'country_Taiwan, Province of China' => '',
'country_Christmas Island' => '',
'country_Cocos (Keeling) Islands' => '',
'country_Colombia' => '',
'country_Comoros' => '',
'country_Mayotte' => '',
'country_Congo' => '',
'country_Congo, the Democratic Republic of the' => '',
'country_Cook Islands' => '',
'country_Costa Rica' => '',
'country_Croatia' => '',
'country_Cuba' => '',
'country_Cyprus' => '',
'country_Czech Republic' => '',
'country_Benin' => '',
'country_Denmark' => '',
'country_Dominica' => '',
'country_Dominican Republic' => '',
'country_Ecuador' => '',
'country_El Salvador' => '',
'country_Equatorial Guinea' => '',
'country_Ethiopia' => '',
'country_Eritrea' => '',
'country_Estonia' => '',
'country_Faroe Islands' => '',
'country_Falkland Islands (Malvinas)' => '',
'country_South Georgia and the South Sandwich Islands' => '',
'country_Fiji' => '',
'country_Finland' => '',
'country_Åland Islands' => '',
'country_France' => 'Frankreich',
'country_French Guiana' => '',
'country_French Polynesia' => '',
'country_French Southern Territories' => '',
'country_Djibouti' => '',
'country_Gabon' => '',
'country_Georgia' => '',
'country_Gambia' => '',
'country_Palestinian Territory, Occupied' => '',
'country_Germany' => 'Deutschland',
'country_Ghana' => '',
'country_Gibraltar' => '',
'country_Kiribati' => '',
'country_Greece' => '',
'country_Greenland' => '',
'country_Grenada' => '',
'country_Guadeloupe' => '',
'country_Guam' => '',
'country_Guatemala' => '',
'country_Guinea' => '',
'country_Guyana' => '',
'country_Haiti' => '',
'country_Heard Island and McDonald Islands' => '',
'country_Holy See (Vatican City State)' => '',
'country_Honduras' => '',
'country_Hong Kong' => '',
'country_Hungary' => '',
'country_Iceland' => '',
'country_India' => '',
'country_Indonesia' => '',
'country_Iran, Islamic Republic of' => '',
'country_Iraq' => '',
'country_Ireland' => '',
'country_Israel' => '',
'country_Italy' => '',
'country_Côte d\'Ivoire' => '',
'country_Jamaica' => '',
'country_Japan' => '',
'country_Kazakhstan' => '',
'country_Jordan' => '',
'country_Kenya' => '',
'country_Korea, Democratic People\'s Republic of' => '',
'country_Korea, Republic of' => '',
'country_Kuwait' => '',
'country_Kyrgyzstan' => '',
'country_Lao People\'s Democratic Republic' => '',
'country_Lebanon' => '',
'country_Lesotho' => '',
'country_Latvia' => '',
'country_Liberia' => '',
'country_Libya' => '',
'country_Liechtenstein' => '',
'country_Lithuania' => '',
'country_Luxembourg' => '',
'country_Macao' => '',
'country_Madagascar' => '',
'country_Malawi' => '',
'country_Malaysia' => '',
'country_Maldives' => '',
'country_Mali' => '',
'country_Malta' => '',
'country_Martinique' => '',
'country_Mauritania' => '',
'country_Mauritius' => '',
'country_Mexico' => '',
'country_Monaco' => '',
'country_Mongolia' => '',
'country_Moldova, Republic of' => '',
'country_Montenegro' => '',
'country_Montserrat' => '',
'country_Morocco' => '',
'country_Mozambique' => '',
'country_Oman' => '',
'country_Namibia' => '',
'country_Nauru' => '',
'country_Nepal' => '',
'country_Netherlands' => '',
'country_Curaçao' => '',
'country_Aruba' => '',
'country_Sint Maarten (Dutch part)' => '',
'country_Bonaire, Sint Eustatius and Saba' => '',
'country_New Caledonia' => '',
'country_Vanuatu' => '',
'country_New Zealand' => '',
'country_Nicaragua' => '',
'country_Niger' => '',
'country_Nigeria' => '',
'country_Niue' => '',
'country_Norfolk Island' => '',
'country_Norway' => '',
'country_Northern Mariana Islands' => '',
'country_United States Minor Outlying Islands' => '',
'country_Micronesia, Federated States of' => '',
'country_Marshall Islands' => '',
'country_Palau' => '',
'country_Pakistan' => '',
'country_Panama' => '',
'country_Papua New Guinea' => '',
'country_Paraguay' => '',
'country_Peru' => '',
'country_Philippines' => '',
'country_Pitcairn' => '',
'country_Poland' => '',
'country_Portugal' => '',
'country_Guinea-Bissau' => '',
'country_Timor-Leste' => '',
'country_Puerto Rico' => '',
'country_Qatar' => '',
'country_Réunion' => '',
'country_Romania' => '',
'country_Russian Federation' => '',
'country_Rwanda' => '',
'country_Saint Barthélemy' => '',
'country_Saint Helena, Ascension and Tristan da Cunha' => '',
'country_Saint Kitts and Nevis' => '',
'country_Anguilla' => '',
'country_Saint Lucia' => '',
'country_Saint Martin (French part)' => '',
'country_Saint Pierre and Miquelon' => '',
'country_Saint Vincent and the Grenadines' => '',
'country_San Marino' => '',
'country_Sao Tome and Principe' => '',
'country_Saudi Arabia' => '',
'country_Senegal' => '',
'country_Serbia' => '',
'country_Seychelles' => '',
'country_Sierra Leone' => '',
'country_Singapore' => '',
'country_Slovakia' => '',
'country_Viet Nam' => '',
'country_Slovenia' => '',
'country_Somalia' => '',
'country_South Africa' => '',
'country_Zimbabwe' => '',
'country_Spain' => '',
'country_South Sudan' => '',
'country_Sudan' => '',
'country_Western Sahara' => '',
'country_Suriname' => '',
'country_Svalbard and Jan Mayen' => '',
'country_Swaziland' => '',
'country_Sweden' => '',
'country_Switzerland' => '',
'country_Syrian Arab Republic' => '',
'country_Tajikistan' => '',
'country_Thailand' => '',
'country_Togo' => '',
'country_Tokelau' => '',
'country_Tonga' => '',
'country_Trinidad and Tobago' => '',
'country_United Arab Emirates' => '',
'country_Tunisia' => '',
'country_Turkey' => '',
'country_Turkmenistan' => '',
'country_Turks and Caicos Islands' => '',
'country_Tuvalu' => '',
'country_Uganda' => '',
'country_Ukraine' => '',
'country_Macedonia, the former Yugoslav Republic of' => '',
'country_Egypt' => '',
'country_United Kingdom' => '',
'country_Guernsey' => '',
'country_Jersey' => '',
'country_Isle of Man' => '',
'country_Tanzania, United Republic of' => '',
'country_United States' => '',
'country_Virgin Islands, U.S.' => '',
'country_Burkina Faso' => '',
'country_Uruguay' => '',
'country_Uzbekistan' => '',
'country_Venezuela, Bolivarian Republic of' => '',
'country_Wallis and Futuna' => '',
'country_Samoa' => '',
'country_Yemen' => '',
'country_Zambi' => '',
); );
return $LANG; return $LANG;
?> ?>

View File

@ -1,6 +1,7 @@
<?php <?php
$LANG = array( $LANG = array(
'organization' => 'Organization', 'organization' => 'Organization',
'name' => 'Name', 'name' => 'Name',
'website' => 'Website', 'website' => 'Website',
@ -1362,8 +1363,631 @@ $LANG = array(
'gateway_exists' => 'This gateway already exists', 'gateway_exists' => 'This gateway already exists',
'manual_entry' => 'Manual entry', 'manual_entry' => 'Manual entry',
// Frequencies
'freq_weekly' => 'Weekly',
'freq_two_weeks' => 'Two weeks',
'freq_four_weeks' => 'Four weeks',
'freq_monthly' => 'Monthly',
'freq_three_months' => 'Three months',
'freq_six_months' => 'Six months',
'freq_annually' => 'Annually',
// Payment types
'payment_type_Apply Credit' => 'Apply Credit',
'payment_type_Bank Transfer' => 'Bank Transfer',
'payment_type_Cash' => 'Cash',
'payment_type_Debit' => 'Debit',
'payment_type_ACH' => 'ACH',
'payment_type_Visa Card' => 'Visa Card',
'payment_type_MasterCard' => 'MasterCard',
'payment_type_American Express' => 'American Express',
'payment_type_Discover Card' => 'Discover Card',
'payment_type_Diners Card' => 'Diners Card',
'payment_type_EuroCard' => 'EuroCard',
'payment_type_Nova' => 'Nova',
'payment_type_Credit Card Other' => 'Credit Card Other',
'payment_type_PayPal' => 'PayPal',
'payment_type_Google Wallet' => 'Google Wallet',
'payment_type_Check' => 'Check',
// Industries
'industry_Accounting & Legal' => 'Accounting & Legal',
'industry_Advertising' => 'Advertising',
'industry_Aerospace' => 'Aerospace',
'industry_Agriculture' => 'Agriculture',
'industry_Automotive' => 'Automotive',
'industry_Banking & Finance' => 'Banking & Finance',
'industry_Biotechnology' => 'Biotechnology',
'industry_Broadcasting' => 'Broadcasting',
'industry_Business Services' => 'Business Services',
'industry_Commodities & Chemicals' => 'Commodities & Chemicals',
'industry_Communications' => 'Communications',
'industry_Computers & Hightech' => 'Computers & Hightech',
'industry_Defense' => 'Defense',
'industry_Energy' => 'Energy',
'industry_Entertainment' => 'Entertainment',
'industry_Government' => 'Government',
'industry_Healthcare & Life Sciences' => 'Healthcare & Life Sciences',
'industry_Insurance' => 'Insurance',
'industry_Manufacturing' => 'Manufacturing',
'industry_Marketing' => 'Marketing',
'industry_Media' => 'Media',
'industry_Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed',
'industry_Pharmaceuticals' => 'Pharmaceuticals',
'industry_Professional Services & Consulting' => 'Professional Services & Consulting',
'industry_Real Estate' => 'Real Estate',
'industry_Retail & Wholesale' => 'Retail & Wholesale',
'industry_Sports' => 'Sports',
'industry_Transportation' => 'Transportation',
'industry_Travel & Luxury' => 'Travel & Luxury',
'industry_Other' => 'Other',
'industry_Photography' =>'Photography',
// Countries
'country_Afghanistan' => 'Afghanistan',
'country_Albania' => 'Albania',
'country_Antarctica' => 'Antarctica',
'country_Algeria' => 'Algeria',
'country_American Samoa' => 'American Samoa',
'country_Andorra' => 'Andorra',
'country_Angola' => 'Angola',
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
'country_Azerbaijan' => 'Azerbaijan',
'country_Argentina' => 'Argentina',
'country_Australia' => 'Australia',
'country_Austria' => 'Austria',
'country_Bahamas' => 'Bahamas',
'country_Bahrain' => 'Bahrain',
'country_Bangladesh' => 'Bangladesh',
'country_Armenia' => 'Armenia',
'country_Barbados' => 'Barbados',
'country_Belgium' => 'Belgium',
'country_Bermuda' => 'Bermuda',
'country_Bhutan' => 'Bhutan',
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
'country_Botswana' => 'Botswana',
'country_Bouvet Island' => 'Bouvet Island',
'country_Brazil' => 'Brazil',
'country_Belize' => 'Belize',
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
'country_Solomon Islands' => 'Solomon Islands',
'country_Virgin Islands, British' => 'Virgin Islands, British',
'country_Brunei Darussalam' => 'Brunei Darussalam',
'country_Bulgaria' => 'Bulgaria',
'country_Myanmar' => 'Myanmar',
'country_Burundi' => 'Burundi',
'country_Belarus' => 'Belarus',
'country_Cambodia' => 'Cambodia',
'country_Cameroon' => 'Cameroon',
'country_Canada' => 'Canada',
'country_Cape Verde' => 'Cape Verde',
'country_Cayman Islands' => 'Cayman Islands',
'country_Central African Republic' => 'Central African Republic',
'country_Sri Lanka' => 'Sri Lanka',
'country_Chad' => 'Chad',
'country_Chile' => 'Chile',
'country_China' => 'China',
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
'country_Christmas Island' => 'Christmas Island',
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
'country_Colombia' => 'Colombia',
'country_Comoros' => 'Comoros',
'country_Mayotte' => 'Mayotte',
'country_Congo' => 'Congo',
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
'country_Cook Islands' => 'Cook Islands',
'country_Costa Rica' => 'Costa Rica',
'country_Croatia' => 'Croatia',
'country_Cuba' => 'Cuba',
'country_Cyprus' => 'Cyprus',
'country_Czech Republic' => 'Czech Republic',
'country_Benin' => 'Benin',
'country_Denmark' => 'Denmark',
'country_Dominica' => 'Dominica',
'country_Dominican Republic' => 'Dominican Republic',
'country_Ecuador' => 'Ecuador',
'country_El Salvador' => 'El Salvador',
'country_Equatorial Guinea' => 'Equatorial Guinea',
'country_Ethiopia' => 'Ethiopia',
'country_Eritrea' => 'Eritrea',
'country_Estonia' => 'Estonia',
'country_Faroe Islands' => 'Faroe Islands',
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
'country_Fiji' => 'Fiji',
'country_Finland' => 'Finland',
'country_Åland Islands' => 'Åland Islands',
'country_France' => 'France',
'country_French Guiana' => 'French Guiana',
'country_French Polynesia' => 'French Polynesia',
'country_French Southern Territories' => 'French Southern Territories',
'country_Djibouti' => 'Djibouti',
'country_Gabon' => 'Gabon',
'country_Georgia' => 'Georgia',
'country_Gambia' => 'Gambia',
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
'country_Germany' => 'Germany',
'country_Ghana' => 'Ghana',
'country_Gibraltar' => 'Gibraltar',
'country_Kiribati' => 'Kiribati',
'country_Greece' => 'Greece',
'country_Greenland' => 'Greenland',
'country_Grenada' => 'Grenada',
'country_Guadeloupe' => 'Guadeloupe',
'country_Guam' => 'Guam',
'country_Guatemala' => 'Guatemala',
'country_Guinea' => 'Guinea',
'country_Guyana' => 'Guyana',
'country_Haiti' => 'Haiti',
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
'country_Honduras' => 'Honduras',
'country_Hong Kong' => 'Hong Kong',
'country_Hungary' => 'Hungary',
'country_Iceland' => 'Iceland',
'country_India' => 'India',
'country_Indonesia' => 'Indonesia',
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
'country_Iraq' => 'Iraq',
'country_Ireland' => 'Ireland',
'country_Israel' => 'Israel',
'country_Italy' => 'Italy',
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
'country_Jamaica' => 'Jamaica',
'country_Japan' => 'Japan',
'country_Kazakhstan' => 'Kazakhstan',
'country_Jordan' => 'Jordan',
'country_Kenya' => 'Kenya',
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
'country_Korea, Republic of' => 'Korea, Republic of',
'country_Kuwait' => 'Kuwait',
'country_Kyrgyzstan' => 'Kyrgyzstan',
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
'country_Lebanon' => 'Lebanon',
'country_Lesotho' => 'Lesotho',
'country_Latvia' => 'Latvia',
'country_Liberia' => 'Liberia',
'country_Libya' => 'Libya',
'country_Liechtenstein' => 'Liechtenstein',
'country_Lithuania' => 'Lithuania',
'country_Luxembourg' => 'Luxembourg',
'country_Macao' => 'Macao',
'country_Madagascar' => 'Madagascar',
'country_Malawi' => 'Malawi',
'country_Malaysia' => 'Malaysia',
'country_Maldives' => 'Maldives',
'country_Mali' => 'Mali',
'country_Malta' => 'Malta',
'country_Martinique' => 'Martinique',
'country_Mauritania' => 'Mauritania',
'country_Mauritius' => 'Mauritius',
'country_Mexico' => 'Mexico',
'country_Monaco' => 'Monaco',
'country_Mongolia' => 'Mongolia',
'country_Moldova, Republic of' => 'Moldova, Republic of',
'country_Montenegro' => 'Montenegro',
'country_Montserrat' => 'Montserrat',
'country_Morocco' => 'Morocco',
'country_Mozambique' => 'Mozambique',
'country_Oman' => 'Oman',
'country_Namibia' => 'Namibia',
'country_Nauru' => 'Nauru',
'country_Nepal' => 'Nepal',
'country_Netherlands' => 'Netherlands',
'country_Curaçao' => 'Curaçao',
'country_Aruba' => 'Aruba',
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
'country_New Caledonia' => 'New Caledonia',
'country_Vanuatu' => 'Vanuatu',
'country_New Zealand' => 'New Zealand',
'country_Nicaragua' => 'Nicaragua',
'country_Niger' => 'Niger',
'country_Nigeria' => 'Nigeria',
'country_Niue' => 'Niue',
'country_Norfolk Island' => 'Norfolk Island',
'country_Norway' => 'Norway',
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
'country_Marshall Islands' => 'Marshall Islands',
'country_Palau' => 'Palau',
'country_Pakistan' => 'Pakistan',
'country_Panama' => 'Panama',
'country_Papua New Guinea' => 'Papua New Guinea',
'country_Paraguay' => 'Paraguay',
'country_Peru' => 'Peru',
'country_Philippines' => 'Philippines',
'country_Pitcairn' => 'Pitcairn',
'country_Poland' => 'Poland',
'country_Portugal' => 'Portugal',
'country_Guinea-Bissau' => 'Guinea-Bissau',
'country_Timor-Leste' => 'Timor-Leste',
'country_Puerto Rico' => 'Puerto Rico',
'country_Qatar' => 'Qatar',
'country_Réunion' => 'Réunion',
'country_Romania' => 'Romania',
'country_Russian Federation' => 'Russian Federation',
'country_Rwanda' => 'Rwanda',
'country_Saint Barthélemy' => 'Saint Barthélemy',
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
'country_Anguilla' => 'Anguilla',
'country_Saint Lucia' => 'Saint Lucia',
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
'country_San Marino' => 'San Marino',
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
'country_Saudi Arabia' => 'Saudi Arabia',
'country_Senegal' => 'Senegal',
'country_Serbia' => 'Serbia',
'country_Seychelles' => 'Seychelles',
'country_Sierra Leone' => 'Sierra Leone',
'country_Singapore' => 'Singapore',
'country_Slovakia' => 'Slovakia',
'country_Viet Nam' => 'Viet Nam',
'country_Slovenia' => 'Slovenia',
'country_Somalia' => 'Somalia',
'country_South Africa' => 'South Africa',
'country_Zimbabwe' => 'Zimbabwe',
'country_Spain' => 'Spain',
'country_South Sudan' => 'South Sudan',
'country_Sudan' => 'Sudan',
'country_Western Sahara' => 'Western Sahara',
'country_Suriname' => 'Suriname',
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
'country_Swaziland' => 'Swaziland',
'country_Sweden' => 'Sweden',
'country_Switzerland' => 'Switzerland',
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
'country_Tajikistan' => 'Tajikistan',
'country_Thailand' => 'Thailand',
'country_Togo' => 'Togo',
'country_Tokelau' => 'Tokelau',
'country_Tonga' => 'Tonga',
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
'country_United Arab Emirates' => 'United Arab Emirates',
'country_Tunisia' => 'Tunisia',
'country_Turkey' => 'Turkey',
'country_Turkmenistan' => 'Turkmenistan',
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
'country_Tuvalu' => 'Tuvalu',
'country_Uganda' => 'Uganda',
'country_Ukraine' => 'Ukraine',
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
'country_Egypt' => 'Egypt',
'country_United Kingdom' => 'United Kingdom',
'country_Guernsey' => 'Guernsey',
'country_Jersey' => 'Jersey',
'country_Isle of Man' => 'Isle of Man',
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
'country_United States' => 'United States',
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
'country_Burkina Faso' => 'Burkina Faso',
'country_Uruguay' => 'Uruguay',
'country_Uzbekistan' => 'Uzbekistan',
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
'country_Wallis and Futuna' => 'Wallis and Futuna',
'country_Samoa' => 'Samoa',
'country_Yemen' => 'Yemen',
'country_Zambi' => 'Zambi',
// Frequencies
'freq_weekly' => 'Weekly',
'freq_two_weeks' => 'Two weeks',
'freq_four_weeks' => 'Four weeks',
'freq_monthly' => 'Monthly',
'freq_three_months' => 'Three months',
'freq_six_months' => 'Six months',
'freq_annually' => 'Annually',
// Payment types
'payment_type_Apply Credit' => 'Apply Credit',
'payment_type_Bank Transfer' => 'Bank Transfer',
'payment_type_Cash' => 'Cash',
'payment_type_Debit' => 'Debit',
'payment_type_ACH' => 'ACH',
'payment_type_Visa Card' => 'Visa Card',
'payment_type_MasterCard' => 'MasterCard',
'payment_type_American Express' => 'American Express',
'payment_type_Discover Card' => 'Discover Card',
'payment_type_Diners Card' => 'Diners Card',
'payment_type_EuroCard' => 'EuroCard',
'payment_type_Nova' => 'Nova',
'payment_type_Credit Card Other' => 'Credit Card Other',
'payment_type_PayPal' => 'PayPal',
'payment_type_Google Wallet' => 'Google Wallet',
'payment_type_Check' => 'Check',
// Industries
'industry_Accounting & Legal' => 'Accounting & Legal',
'industry_Advertising' => 'Advertising',
'industry_Aerospace' => 'Aerospace',
'industry_Agriculture' => 'Agriculture',
'industry_Automotive' => 'Automotive',
'industry_Banking & Finance' => 'Banking & Finance',
'industry_Biotechnology' => 'Biotechnology',
'industry_Broadcasting' => 'Broadcasting',
'industry_Business Services' => 'Business Services',
'industry_Commodities & Chemicals' => 'Commodities & Chemicals',
'industry_Communications' => 'Communications',
'industry_Computers & Hightech' => 'Computers & Hightech',
'industry_Defense' => 'Defense',
'industry_Energy' => 'Energy',
'industry_Entertainment' => 'Entertainment',
'industry_Government' => 'Government',
'industry_Healthcare & Life Sciences' => 'Healthcare & Life Sciences',
'industry_Insurance' => 'Insurance',
'industry_Manufacturing' => 'Manufacturing',
'industry_Marketing' => 'Marketing',
'industry_Media' => 'Media',
'industry_Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed',
'industry_Pharmaceuticals' => 'Pharmaceuticals',
'industry_Professional Services & Consulting' => 'Professional Services & Consulting',
'industry_Real Estate' => 'Real Estate',
'industry_Retail & Wholesale' => 'Retail & Wholesale',
'industry_Sports' => 'Sports',
'industry_Transportation' => 'Transportation',
'industry_Travel & Luxury' => 'Travel & Luxury',
'industry_Other' => 'Other',
'industry_Photography' =>'Photography',
// Countries
'country_Afghanistan' => 'Afghanistan',
'country_Albania' => 'Albania',
'country_Antarctica' => 'Antarctica',
'country_Algeria' => 'Algeria',
'country_American Samoa' => 'American Samoa',
'country_Andorra' => 'Andorra',
'country_Angola' => 'Angola',
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
'country_Azerbaijan' => 'Azerbaijan',
'country_Argentina' => 'Argentina',
'country_Australia' => 'Australia',
'country_Austria' => 'Austria',
'country_Bahamas' => 'Bahamas',
'country_Bahrain' => 'Bahrain',
'country_Bangladesh' => 'Bangladesh',
'country_Armenia' => 'Armenia',
'country_Barbados' => 'Barbados',
'country_Belgium' => 'Belgium',
'country_Bermuda' => 'Bermuda',
'country_Bhutan' => 'Bhutan',
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
'country_Botswana' => 'Botswana',
'country_Bouvet Island' => 'Bouvet Island',
'country_Brazil' => 'Brazil',
'country_Belize' => 'Belize',
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
'country_Solomon Islands' => 'Solomon Islands',
'country_Virgin Islands, British' => 'Virgin Islands, British',
'country_Brunei Darussalam' => 'Brunei Darussalam',
'country_Bulgaria' => 'Bulgaria',
'country_Myanmar' => 'Myanmar',
'country_Burundi' => 'Burundi',
'country_Belarus' => 'Belarus',
'country_Cambodia' => 'Cambodia',
'country_Cameroon' => 'Cameroon',
'country_Canada' => 'Canada',
'country_Cape Verde' => 'Cape Verde',
'country_Cayman Islands' => 'Cayman Islands',
'country_Central African Republic' => 'Central African Republic',
'country_Sri Lanka' => 'Sri Lanka',
'country_Chad' => 'Chad',
'country_Chile' => 'Chile',
'country_China' => 'China',
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
'country_Christmas Island' => 'Christmas Island',
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
'country_Colombia' => 'Colombia',
'country_Comoros' => 'Comoros',
'country_Mayotte' => 'Mayotte',
'country_Congo' => 'Congo',
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
'country_Cook Islands' => 'Cook Islands',
'country_Costa Rica' => 'Costa Rica',
'country_Croatia' => 'Croatia',
'country_Cuba' => 'Cuba',
'country_Cyprus' => 'Cyprus',
'country_Czech Republic' => 'Czech Republic',
'country_Benin' => 'Benin',
'country_Denmark' => 'Denmark',
'country_Dominica' => 'Dominica',
'country_Dominican Republic' => 'Dominican Republic',
'country_Ecuador' => 'Ecuador',
'country_El Salvador' => 'El Salvador',
'country_Equatorial Guinea' => 'Equatorial Guinea',
'country_Ethiopia' => 'Ethiopia',
'country_Eritrea' => 'Eritrea',
'country_Estonia' => 'Estonia',
'country_Faroe Islands' => 'Faroe Islands',
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
'country_Fiji' => 'Fiji',
'country_Finland' => 'Finland',
'country_Åland Islands' => 'Åland Islands',
'country_France' => 'France',
'country_French Guiana' => 'French Guiana',
'country_French Polynesia' => 'French Polynesia',
'country_French Southern Territories' => 'French Southern Territories',
'country_Djibouti' => 'Djibouti',
'country_Gabon' => 'Gabon',
'country_Georgia' => 'Georgia',
'country_Gambia' => 'Gambia',
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
'country_Germany' => 'Germany',
'country_Ghana' => 'Ghana',
'country_Gibraltar' => 'Gibraltar',
'country_Kiribati' => 'Kiribati',
'country_Greece' => 'Greece',
'country_Greenland' => 'Greenland',
'country_Grenada' => 'Grenada',
'country_Guadeloupe' => 'Guadeloupe',
'country_Guam' => 'Guam',
'country_Guatemala' => 'Guatemala',
'country_Guinea' => 'Guinea',
'country_Guyana' => 'Guyana',
'country_Haiti' => 'Haiti',
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
'country_Honduras' => 'Honduras',
'country_Hong Kong' => 'Hong Kong',
'country_Hungary' => 'Hungary',
'country_Iceland' => 'Iceland',
'country_India' => 'India',
'country_Indonesia' => 'Indonesia',
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
'country_Iraq' => 'Iraq',
'country_Ireland' => 'Ireland',
'country_Israel' => 'Israel',
'country_Italy' => 'Italy',
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
'country_Jamaica' => 'Jamaica',
'country_Japan' => 'Japan',
'country_Kazakhstan' => 'Kazakhstan',
'country_Jordan' => 'Jordan',
'country_Kenya' => 'Kenya',
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
'country_Korea, Republic of' => 'Korea, Republic of',
'country_Kuwait' => 'Kuwait',
'country_Kyrgyzstan' => 'Kyrgyzstan',
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
'country_Lebanon' => 'Lebanon',
'country_Lesotho' => 'Lesotho',
'country_Latvia' => 'Latvia',
'country_Liberia' => 'Liberia',
'country_Libya' => 'Libya',
'country_Liechtenstein' => 'Liechtenstein',
'country_Lithuania' => 'Lithuania',
'country_Luxembourg' => 'Luxembourg',
'country_Macao' => 'Macao',
'country_Madagascar' => 'Madagascar',
'country_Malawi' => 'Malawi',
'country_Malaysia' => 'Malaysia',
'country_Maldives' => 'Maldives',
'country_Mali' => 'Mali',
'country_Malta' => 'Malta',
'country_Martinique' => 'Martinique',
'country_Mauritania' => 'Mauritania',
'country_Mauritius' => 'Mauritius',
'country_Mexico' => 'Mexico',
'country_Monaco' => 'Monaco',
'country_Mongolia' => 'Mongolia',
'country_Moldova, Republic of' => 'Moldova, Republic of',
'country_Montenegro' => 'Montenegro',
'country_Montserrat' => 'Montserrat',
'country_Morocco' => 'Morocco',
'country_Mozambique' => 'Mozambique',
'country_Oman' => 'Oman',
'country_Namibia' => 'Namibia',
'country_Nauru' => 'Nauru',
'country_Nepal' => 'Nepal',
'country_Netherlands' => 'Netherlands',
'country_Curaçao' => 'Curaçao',
'country_Aruba' => 'Aruba',
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
'country_New Caledonia' => 'New Caledonia',
'country_Vanuatu' => 'Vanuatu',
'country_New Zealand' => 'New Zealand',
'country_Nicaragua' => 'Nicaragua',
'country_Niger' => 'Niger',
'country_Nigeria' => 'Nigeria',
'country_Niue' => 'Niue',
'country_Norfolk Island' => 'Norfolk Island',
'country_Norway' => 'Norway',
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
'country_Marshall Islands' => 'Marshall Islands',
'country_Palau' => 'Palau',
'country_Pakistan' => 'Pakistan',
'country_Panama' => 'Panama',
'country_Papua New Guinea' => 'Papua New Guinea',
'country_Paraguay' => 'Paraguay',
'country_Peru' => 'Peru',
'country_Philippines' => 'Philippines',
'country_Pitcairn' => 'Pitcairn',
'country_Poland' => 'Poland',
'country_Portugal' => 'Portugal',
'country_Guinea-Bissau' => 'Guinea-Bissau',
'country_Timor-Leste' => 'Timor-Leste',
'country_Puerto Rico' => 'Puerto Rico',
'country_Qatar' => 'Qatar',
'country_Réunion' => 'Réunion',
'country_Romania' => 'Romania',
'country_Russian Federation' => 'Russian Federation',
'country_Rwanda' => 'Rwanda',
'country_Saint Barthélemy' => 'Saint Barthélemy',
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
'country_Anguilla' => 'Anguilla',
'country_Saint Lucia' => 'Saint Lucia',
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
'country_San Marino' => 'San Marino',
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
'country_Saudi Arabia' => 'Saudi Arabia',
'country_Senegal' => 'Senegal',
'country_Serbia' => 'Serbia',
'country_Seychelles' => 'Seychelles',
'country_Sierra Leone' => 'Sierra Leone',
'country_Singapore' => 'Singapore',
'country_Slovakia' => 'Slovakia',
'country_Viet Nam' => 'Viet Nam',
'country_Slovenia' => 'Slovenia',
'country_Somalia' => 'Somalia',
'country_South Africa' => 'South Africa',
'country_Zimbabwe' => 'Zimbabwe',
'country_Spain' => 'Spain',
'country_South Sudan' => 'South Sudan',
'country_Sudan' => 'Sudan',
'country_Western Sahara' => 'Western Sahara',
'country_Suriname' => 'Suriname',
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
'country_Swaziland' => 'Swaziland',
'country_Sweden' => 'Sweden',
'country_Switzerland' => 'Switzerland',
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
'country_Tajikistan' => 'Tajikistan',
'country_Thailand' => 'Thailand',
'country_Togo' => 'Togo',
'country_Tokelau' => 'Tokelau',
'country_Tonga' => 'Tonga',
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
'country_United Arab Emirates' => 'United Arab Emirates',
'country_Tunisia' => 'Tunisia',
'country_Turkey' => 'Turkey',
'country_Turkmenistan' => 'Turkmenistan',
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
'country_Tuvalu' => 'Tuvalu',
'country_Uganda' => 'Uganda',
'country_Ukraine' => 'Ukraine',
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
'country_Egypt' => 'Egypt',
'country_United Kingdom' => 'United Kingdom',
'country_Guernsey' => 'Guernsey',
'country_Jersey' => 'Jersey',
'country_Isle of Man' => 'Isle of Man',
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
'country_United States' => 'United States',
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
'country_Burkina Faso' => 'Burkina Faso',
'country_Uruguay' => 'Uruguay',
'country_Uzbekistan' => 'Uzbekistan',
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
'country_Wallis and Futuna' => 'Wallis and Futuna',
'country_Samoa' => 'Samoa',
'country_Yemen' => 'Yemen',
'country_Zambi' => 'Zambi',
); );
return $LANG; return $LANG;
?> ?>