From 337ed1c719887b5dc2a595f0dfb945df02226f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Lo=CC=88sken?= Date: Sat, 2 Jul 2016 23:18:13 +0200 Subject: [PATCH] - Fix #426, closes #426 - Moved translations for industries, countries into texts.php - Removed nested arrays in texts.php --- app/Http/Controllers/InvoiceController.php | 14 +- .../ViewComposers/TranslationComposer.php | 6 +- .../Datatables/RecurringInvoiceDatatable.php | 2 +- app/Ninja/Presenters/InvoicePresenter.php | 2 +- resources/lang/cs/countries.php | 255 ------------- resources/lang/cs/industries.php | 37 -- resources/lang/da/countries.php | 255 ------------- resources/lang/da/industries.php | 37 -- resources/lang/de/countries.php | 255 ------------- resources/lang/de/industries.php | 37 -- resources/lang/de/texts.php | 9 +- resources/lang/en/countries.php | 255 ------------- resources/lang/en/industries.php | 37 -- resources/lang/en/texts.php | 336 ++++++++++++++++-- resources/lang/es/countries.php | 255 ------------- resources/lang/es/industries.php | 37 -- resources/lang/es_ES/countries.php | 255 ------------- resources/lang/es_ES/industries.php | 37 -- resources/lang/fr/countries.php | 255 ------------- resources/lang/fr/industries.php | 37 -- resources/lang/fr_CA/countries.php | 255 ------------- resources/lang/fr_CA/industries.php | 37 -- resources/lang/it/countries.php | 255 ------------- resources/lang/it/industries.php | 37 -- resources/lang/ja/countries.php | 255 ------------- resources/lang/ja/industries.php | 37 -- resources/lang/lt/countries.php | 255 ------------- resources/lang/lt/industries.php | 37 -- resources/lang/nb_NO/countries.php | 255 ------------- resources/lang/nb_NO/industries.php | 37 -- resources/lang/nl/countries.php | 255 ------------- resources/lang/nl/industries.php | 37 -- resources/lang/pl/countries.php | 255 ------------- resources/lang/pt_BR/countries.php | 255 ------------- resources/lang/pt_BR/industries.php | 37 -- resources/lang/sv/countries.php | 255 ------------- resources/lang/sv/industries.php | 37 -- 37 files changed, 329 insertions(+), 4675 deletions(-) delete mode 100644 resources/lang/cs/countries.php delete mode 100644 resources/lang/cs/industries.php delete mode 100644 resources/lang/da/countries.php delete mode 100644 resources/lang/da/industries.php delete mode 100644 resources/lang/de/countries.php delete mode 100644 resources/lang/de/industries.php delete mode 100644 resources/lang/en/countries.php delete mode 100644 resources/lang/en/industries.php delete mode 100644 resources/lang/es/countries.php delete mode 100644 resources/lang/es/industries.php delete mode 100644 resources/lang/es_ES/countries.php delete mode 100644 resources/lang/es_ES/industries.php delete mode 100644 resources/lang/fr/countries.php delete mode 100644 resources/lang/fr/industries.php delete mode 100644 resources/lang/fr_CA/countries.php delete mode 100644 resources/lang/fr_CA/industries.php delete mode 100644 resources/lang/it/countries.php delete mode 100644 resources/lang/it/industries.php delete mode 100644 resources/lang/ja/countries.php delete mode 100644 resources/lang/ja/industries.php delete mode 100644 resources/lang/lt/countries.php delete mode 100644 resources/lang/lt/industries.php delete mode 100644 resources/lang/nb_NO/countries.php delete mode 100644 resources/lang/nb_NO/industries.php delete mode 100644 resources/lang/nl/countries.php delete mode 100644 resources/lang/nl/industries.php delete mode 100644 resources/lang/pl/countries.php delete mode 100644 resources/lang/pt_BR/countries.php delete mode 100644 resources/lang/pt_BR/industries.php delete mode 100644 resources/lang/sv/countries.php delete mode 100644 resources/lang/sv/industries.php diff --git a/app/Http/Controllers/InvoiceController.php b/app/Http/Controllers/InvoiceController.php index 5e3dca7a3f..ab0fdd0bff 100644 --- a/app/Http/Controllers/InvoiceController.php +++ b/app/Http/Controllers/InvoiceController.php @@ -375,13 +375,13 @@ class InvoiceController extends BaseController 'invoiceDesigns' => InvoiceDesign::getDesigns(), 'invoiceFonts' => Cache::get('fonts'), 'frequencies' => array( - 1 => trans('texts.frequencies.weekly'), - 2 => trans('texts.frequencies.two_weeks'), - 3 => trans('texts.frequencies.four_weeks'), - 4 => trans('texts.frequencies.monthly'), - 5 => trans('texts.frequencies.three_months'), - 6 => trans('texts.frequencies.six_months'), - 7 => trans('texts.frequencies.annually'), + 1 => trans('texts.freq_weekly'), + 2 => trans('texts.freq_two_weeks'), + 3 => trans('texts.freq_four_weeks'), + 4 => trans('texts.freq_monthly'), + 5 => trans('texts.freq_three_months'), + 6 => trans('texts.freq_six_months'), + 7 => trans('texts.freq_annually'), ), 'recurringDueDates' => $recurringDueDates, 'recurringHelp' => $recurringHelp, diff --git a/app/Http/ViewComposers/TranslationComposer.php b/app/Http/ViewComposers/TranslationComposer.php index 62c6cc0b56..b809eada89 100644 --- a/app/Http/ViewComposers/TranslationComposer.php +++ b/app/Http/ViewComposers/TranslationComposer.php @@ -22,19 +22,19 @@ class TranslationComposer public function compose(View $view) { $view->with('industries', Cache::get('industries')->each(function ($industry) { - $industry->name = trans('industries.'.$industry->name); + $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('countries.'.$country->name); + $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_types.'.$pType->name); + $pType->name = trans('texts.payment_type_'.$pType->name); })->sortBy(function ($pType) { return $pType->name; })); diff --git a/app/Ninja/Datatables/RecurringInvoiceDatatable.php b/app/Ninja/Datatables/RecurringInvoiceDatatable.php index 2613437547..64a5bc3307 100644 --- a/app/Ninja/Datatables/RecurringInvoiceDatatable.php +++ b/app/Ninja/Datatables/RecurringInvoiceDatatable.php @@ -16,7 +16,7 @@ class RecurringInvoiceDatatable extends EntityDatatable function ($model) { $frequency = strtolower($model->frequency); $frequency = preg_replace('/\s/', '_', $frequency); - return link_to("invoices/{$model->public_id}", trans('texts.frequencies.'.$frequency))->toHtml(); + return link_to("invoices/{$model->public_id}", trans('texts.freq_'.$frequency))->toHtml(); } ], [ diff --git a/app/Ninja/Presenters/InvoicePresenter.php b/app/Ninja/Presenters/InvoicePresenter.php index 499422ffd2..d6cf83c40e 100644 --- a/app/Ninja/Presenters/InvoicePresenter.php +++ b/app/Ninja/Presenters/InvoicePresenter.php @@ -67,7 +67,7 @@ class InvoicePresenter extends EntityPresenter { { $frequency = $this->entity->frequency ? $this->entity->frequency->name : ''; $frequency = strtolower($frequency); - return trans('texts.frequencies.'.$frequency); + return trans('texts.freq_'.$frequency); } public function email() diff --git a/resources/lang/cs/countries.php b/resources/lang/cs/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/cs/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/cs/industries.php b/resources/lang/cs/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/cs/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/da/countries.php b/resources/lang/da/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/da/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/da/industries.php b/resources/lang/da/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/da/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/de/countries.php b/resources/lang/de/countries.php deleted file mode 100644 index 6200dae0f4..0000000000 --- a/resources/lang/de/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => 'Albanien', - 'Antarctica' => '', - 'Algeria' => 'Algerien', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => 'Argentinien', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => 'Frankreich', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => 'Deutschland', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/de/industries.php b/resources/lang/de/industries.php deleted file mode 100644 index 14c19a4c5b..0000000000 --- a/resources/lang/de/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Buchhaltung & Rechnungswesen', - 'Advertising' => 'Werbung', - 'Aerospace' => 'Luft- und Raumfahrt', - 'Agriculture' => 'Landwirtschaft', - 'Automotive' => 'Automobilbau', - 'Banking & Finance' => 'Bank- und Finanzwesen', - 'Biotechnology' => 'Biotechnologie', - 'Broadcasting' => 'Rundfunk', - 'Business Services' => 'Dienstleistungen', - 'Commodities & Chemicals' => 'Handelsgüter und Chemikalien', - 'Communications' => 'Kommunikation', - 'Computers & Hightech' => 'Computer und Hochtechnologie', - 'Defense' => 'Verteidigungsbereich', - 'Energy' => 'Energie', - 'Entertainment' => 'Unterhaltung', - 'Government' => 'Regierungsbereich', - 'Healthcare & Life Sciences' => 'Gesundheitswesen und Biowissenschaften', - 'Insurance' => 'Versicherung', - 'Manufacturing' => 'Herstellung', - 'Marketing' => 'Marketing', - 'Media' => 'Medien', - 'Nonprofit & Higher Ed' => 'Nonprofit-Bereich', - 'Pharmaceuticals' => 'Pharmazeutika', - 'Professional Services & Consulting' => 'Unternehmensberatung', - 'Real Estate' => 'Immobilien', - 'Retail & Wholesale' => 'Einzel- und Großhandel', - 'Sports' => 'Sport', - 'Transportation' => 'Transport', - 'Travel & Luxury' => 'Reisen und Luxus', - 'Other' => 'Andere', - 'Photography' => 'Fotografie', - -]; \ No newline at end of file diff --git a/resources/lang/de/texts.php b/resources/lang/de/texts.php index 816e31cebd..9a16dcb427 100644 --- a/resources/lang/de/texts.php +++ b/resources/lang/de/texts.php @@ -1420,7 +1420,11 @@ $LANG = array( 'industry_Travel & Luxury' => 'Reisen und Luxus', 'industry_Other' => 'Andere', 'industry_Photography' => 'Fotografie', +<<<<<<< b13b9a2d7d8ac931c44189a9ef85c8aeaf165f52 +======= + +>>>>>>> - Fix #426, closes #426 // Countries 'country_Afghanistan' => '', 'country_Albania' => 'Albanien', @@ -1672,7 +1676,10 @@ $LANG = array( 'country_Yemen' => '', 'country_Zambi' => '', ); +<<<<<<< b13b9a2d7d8ac931c44189a9ef85c8aeaf165f52 return $LANG; -?> \ No newline at end of file +?> +======= +>>>>>>> - Fix #426, closes #426 diff --git a/resources/lang/en/countries.php b/resources/lang/en/countries.php deleted file mode 100644 index 085e685aff..0000000000 --- a/resources/lang/en/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - 'Afghanistan', - 'Albania' => 'Albania', - 'Antarctica' => 'Antarctica', - 'Algeria' => 'Algeria', - 'American Samoa' => 'American Samoa', - 'Andorra' => 'Andorra', - 'Angola' => 'Angola', - 'Antigua and Barbuda' => 'Antigua and Barbuda', - 'Azerbaijan' => 'Azerbaijan', - 'Argentina' => 'Argentina', - 'Australia' => 'Australia', - 'Austria' => 'Austria', - 'Bahamas' => 'Bahamas', - 'Bahrain' => 'Bahrain', - 'Bangladesh' => 'Bangladesh', - 'Armenia' => 'Armenia', - 'Barbados' => 'Barbados', - 'Belgium' => 'Belgium', - 'Bermuda' => 'Bermuda', - 'Bhutan' => 'Bhutan', - 'Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of', - 'Bosnia and Herzegovina' => 'Bosnia and Herzegovina', - 'Botswana' => 'Botswana', - 'Bouvet Island' => 'Bouvet Island', - 'Brazil' => 'Brazil', - 'Belize' => 'Belize', - 'British Indian Ocean Territory' => 'British Indian Ocean Territory', - 'Solomon Islands' => 'Solomon Islands', - 'Virgin Islands, British' => 'Virgin Islands, British', - 'Brunei Darussalam' => 'Brunei Darussalam', - 'Bulgaria' => 'Bulgaria', - 'Myanmar' => 'Myanmar', - 'Burundi' => 'Burundi', - 'Belarus' => 'Belarus', - 'Cambodia' => 'Cambodia', - 'Cameroon' => 'Cameroon', - 'Canada' => 'Canada', - 'Cape Verde' => 'Cape Verde', - 'Cayman Islands' => 'Cayman Islands', - 'Central African Republic' => 'Central African Republic', - 'Sri Lanka' => 'Sri Lanka', - 'Chad' => 'Chad', - 'Chile' => 'Chile', - 'China' => 'China', - 'Taiwan, Province of China' => 'Taiwan, Province of China', - 'Christmas Island' => 'Christmas Island', - 'Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands', - 'Colombia' => 'Colombia', - 'Comoros' => 'Comoros', - 'Mayotte' => 'Mayotte', - 'Congo' => 'Congo', - 'Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the', - 'Cook Islands' => 'Cook Islands', - 'Costa Rica' => 'Costa Rica', - 'Croatia' => 'Croatia', - 'Cuba' => 'Cuba', - 'Cyprus' => 'Cyprus', - 'Czech Republic' => 'Czech Republic', - 'Benin' => 'Benin', - 'Denmark' => 'Denmark', - 'Dominica' => 'Dominica', - 'Dominican Republic' => 'Dominican Republic', - 'Ecuador' => 'Ecuador', - 'El Salvador' => 'El Salvador', - 'Equatorial Guinea' => 'Equatorial Guinea', - 'Ethiopia' => 'Ethiopia', - 'Eritrea' => 'Eritrea', - 'Estonia' => 'Estonia', - 'Faroe Islands' => 'Faroe Islands', - 'Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)', - 'South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands', - 'Fiji' => 'Fiji', - 'Finland' => 'Finland', - 'Åland Islands' => 'Åland Islands', - 'France' => 'France', - 'French Guiana' => 'French Guiana', - 'French Polynesia' => 'French Polynesia', - 'French Southern Territories' => 'French Southern Territories', - 'Djibouti' => 'Djibouti', - 'Gabon' => 'Gabon', - 'Georgia' => 'Georgia', - 'Gambia' => 'Gambia', - 'Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied', - 'Germany' => 'Germany', - 'Ghana' => 'Ghana', - 'Gibraltar' => 'Gibraltar', - 'Kiribati' => 'Kiribati', - 'Greece' => 'Greece', - 'Greenland' => 'Greenland', - 'Grenada' => 'Grenada', - 'Guadeloupe' => 'Guadeloupe', - 'Guam' => 'Guam', - 'Guatemala' => 'Guatemala', - 'Guinea' => 'Guinea', - 'Guyana' => 'Guyana', - 'Haiti' => 'Haiti', - 'Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands', - 'Holy See (Vatican City State)' => 'Holy See (Vatican City State)', - 'Honduras' => 'Honduras', - 'Hong Kong' => 'Hong Kong', - 'Hungary' => 'Hungary', - 'Iceland' => 'Iceland', - 'India' => 'India', - 'Indonesia' => 'Indonesia', - 'Iran, Islamic Republic of' => 'Iran, Islamic Republic of', - 'Iraq' => 'Iraq', - 'Ireland' => 'Ireland', - 'Israel' => 'Israel', - 'Italy' => 'Italy', - 'Côte d\'Ivoire' => 'Côte d\'Ivoire', - 'Jamaica' => 'Jamaica', - 'Japan' => 'Japan', - 'Kazakhstan' => 'Kazakhstan', - 'Jordan' => 'Jordan', - 'Kenya' => 'Kenya', - 'Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of', - 'Korea, Republic of' => 'Korea, Republic of', - 'Kuwait' => 'Kuwait', - 'Kyrgyzstan' => 'Kyrgyzstan', - 'Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic', - 'Lebanon' => 'Lebanon', - 'Lesotho' => 'Lesotho', - 'Latvia' => 'Latvia', - 'Liberia' => 'Liberia', - 'Libya' => 'Libya', - 'Liechtenstein' => 'Liechtenstein', - 'Lithuania' => 'Lithuania', - 'Luxembourg' => 'Luxembourg', - 'Macao' => 'Macao', - 'Madagascar' => 'Madagascar', - 'Malawi' => 'Malawi', - 'Malaysia' => 'Malaysia', - 'Maldives' => 'Maldives', - 'Mali' => 'Mali', - 'Malta' => 'Malta', - 'Martinique' => 'Martinique', - 'Mauritania' => 'Mauritania', - 'Mauritius' => 'Mauritius', - 'Mexico' => 'Mexico', - 'Monaco' => 'Monaco', - 'Mongolia' => 'Mongolia', - 'Moldova, Republic of' => 'Moldova, Republic of', - 'Montenegro' => 'Montenegro', - 'Montserrat' => 'Montserrat', - 'Morocco' => 'Morocco', - 'Mozambique' => 'Mozambique', - 'Oman' => 'Oman', - 'Namibia' => 'Namibia', - 'Nauru' => 'Nauru', - 'Nepal' => 'Nepal', - 'Netherlands' => 'Netherlands', - 'Curaçao' => 'Curaçao', - 'Aruba' => 'Aruba', - 'Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)', - 'Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba', - 'New Caledonia' => 'New Caledonia', - 'Vanuatu' => 'Vanuatu', - 'New Zealand' => 'New Zealand', - 'Nicaragua' => 'Nicaragua', - 'Niger' => 'Niger', - 'Nigeria' => 'Nigeria', - 'Niue' => 'Niue', - 'Norfolk Island' => 'Norfolk Island', - 'Norway' => 'Norway', - 'Northern Mariana Islands' => 'Northern Mariana Islands', - 'United States Minor Outlying Islands' => 'United States Minor Outlying Islands', - 'Micronesia, Federated States of' => 'Micronesia, Federated States of', - 'Marshall Islands' => 'Marshall Islands', - 'Palau' => 'Palau', - 'Pakistan' => 'Pakistan', - 'Panama' => 'Panama', - 'Papua New Guinea' => 'Papua New Guinea', - 'Paraguay' => 'Paraguay', - 'Peru' => 'Peru', - 'Philippines' => 'Philippines', - 'Pitcairn' => 'Pitcairn', - 'Poland' => 'Poland', - 'Portugal' => 'Portugal', - 'Guinea-Bissau' => 'Guinea-Bissau', - 'Timor-Leste' => 'Timor-Leste', - 'Puerto Rico' => 'Puerto Rico', - 'Qatar' => 'Qatar', - 'Réunion' => 'Réunion', - 'Romania' => 'Romania', - 'Russian Federation' => 'Russian Federation', - 'Rwanda' => 'Rwanda', - 'Saint Barthélemy' => 'Saint Barthélemy', - 'Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha', - 'Saint Kitts and Nevis' => 'Saint Kitts and Nevis', - 'Anguilla' => 'Anguilla', - 'Saint Lucia' => 'Saint Lucia', - 'Saint Martin (French part)' => 'Saint Martin (French part)', - 'Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon', - 'Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines', - 'San Marino' => 'San Marino', - 'Sao Tome and Principe' => 'Sao Tome and Principe', - 'Saudi Arabia' => 'Saudi Arabia', - 'Senegal' => 'Senegal', - 'Serbia' => 'Serbia', - 'Seychelles' => 'Seychelles', - 'Sierra Leone' => 'Sierra Leone', - 'Singapore' => 'Singapore', - 'Slovakia' => 'Slovakia', - 'Viet Nam' => 'Viet Nam', - 'Slovenia' => 'Slovenia', - 'Somalia' => 'Somalia', - 'South Africa' => 'South Africa', - 'Zimbabwe' => 'Zimbabwe', - 'Spain' => 'Spain', - 'South Sudan' => 'South Sudan', - 'Sudan' => 'Sudan', - 'Western Sahara' => 'Western Sahara', - 'Suriname' => 'Suriname', - 'Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen', - 'Swaziland' => 'Swaziland', - 'Sweden' => 'Sweden', - 'Switzerland' => 'Switzerland', - 'Syrian Arab Republic' => 'Syrian Arab Republic', - 'Tajikistan' => 'Tajikistan', - 'Thailand' => 'Thailand', - 'Togo' => 'Togo', - 'Tokelau' => 'Tokelau', - 'Tonga' => 'Tonga', - 'Trinidad and Tobago' => 'Trinidad and Tobago', - 'United Arab Emirates' => 'United Arab Emirates', - 'Tunisia' => 'Tunisia', - 'Turkey' => 'Turkey', - 'Turkmenistan' => 'Turkmenistan', - 'Turks and Caicos Islands' => 'Turks and Caicos Islands', - 'Tuvalu' => 'Tuvalu', - 'Uganda' => 'Uganda', - 'Ukraine' => 'Ukraine', - 'Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of', - 'Egypt' => 'Egypt', - 'United Kingdom' => 'United Kingdom', - 'Guernsey' => 'Guernsey', - 'Jersey' => 'Jersey', - 'Isle of Man' => 'Isle of Man', - 'Tanzania, United Republic of' => 'Tanzania, United Republic of', - 'United States' => 'United States', - 'Virgin Islands, U.S.' => 'Virgin Islands, U.S.', - 'Burkina Faso' => 'Burkina Faso', - 'Uruguay' => 'Uruguay', - 'Uzbekistan' => 'Uzbekistan', - 'Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of', - 'Wallis and Futuna' => 'Wallis and Futuna', - 'Samoa' => 'Samoa', - 'Yemen' => 'Yemen', - 'Zambi' => 'Zambi', - -]; \ No newline at end of file diff --git a/resources/lang/en/industries.php b/resources/lang/en/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/en/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 71c59c2d81..f92aa0b7aa 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -1362,34 +1362,316 @@ return [ 'gateway_exists' => 'This gateway already exists', 'manual_entry' => 'Manual entry', - 'frequencies' => [ - 'weekly' => 'Weekly', - 'two_weeks' => 'Two weeks', - 'four_weeks' => 'Four weeks', - 'monthly' => 'Monthly', - 'three_months' => 'Three months', - 'six_months' => 'Six months', - 'annually' => 'Annually', - ], + // 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' => [ - 'Apply Credit' => 'Apply Credit', - 'Bank Transfer' => 'Bank Transfer', - 'Cash' => 'Cash', - 'Debit' => 'Debit', - 'ACH' => 'ACH', - 'Visa Card' => 'Visa Card', - 'MasterCard' => 'MasterCard', - 'American Express' => 'American Express', - 'Discover Card' => 'Discover Card', - 'Diners Card' => 'Diners Card', - 'EuroCard' => 'EuroCard', - 'Nova' => 'Nova', - 'Credit Card Other' => 'Credit Card Other', - 'PayPal' => 'PayPal', - 'Google Wallet' => 'Google Wallet', - 'Check' => 'Check', - ], + // 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', ]; diff --git a/resources/lang/es/countries.php b/resources/lang/es/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/es/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/es/industries.php b/resources/lang/es/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/es/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/es_ES/countries.php b/resources/lang/es_ES/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/es_ES/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/es_ES/industries.php b/resources/lang/es_ES/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/es_ES/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/fr/countries.php b/resources/lang/fr/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/fr/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/fr/industries.php b/resources/lang/fr/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/fr/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/fr_CA/countries.php b/resources/lang/fr_CA/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/fr_CA/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/fr_CA/industries.php b/resources/lang/fr_CA/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/fr_CA/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/it/countries.php b/resources/lang/it/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/it/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/it/industries.php b/resources/lang/it/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/it/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/ja/countries.php b/resources/lang/ja/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/ja/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/ja/industries.php b/resources/lang/ja/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/ja/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/lt/countries.php b/resources/lang/lt/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/lt/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/lt/industries.php b/resources/lang/lt/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/lt/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/nb_NO/countries.php b/resources/lang/nb_NO/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/nb_NO/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/nb_NO/industries.php b/resources/lang/nb_NO/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/nb_NO/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/nl/countries.php b/resources/lang/nl/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/nl/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/nl/industries.php b/resources/lang/nl/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/nl/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/pl/countries.php b/resources/lang/pl/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/pl/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/pt_BR/countries.php b/resources/lang/pt_BR/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/pt_BR/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/pt_BR/industries.php b/resources/lang/pt_BR/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/pt_BR/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file diff --git a/resources/lang/sv/countries.php b/resources/lang/sv/countries.php deleted file mode 100644 index 686fb596fa..0000000000 --- a/resources/lang/sv/countries.php +++ /dev/null @@ -1,255 +0,0 @@ - '', - 'Albania' => '', - 'Antarctica' => '', - 'Algeria' => '', - 'American Samoa' => '', - 'Andorra' => '', - 'Angola' => '', - 'Antigua and Barbuda' => '', - 'Azerbaijan' => '', - 'Argentina' => '', - 'Australia' => '', - 'Austria' => '', - 'Bahamas' => '', - 'Bahrain' => '', - 'Bangladesh' => '', - 'Armenia' => '', - 'Barbados' => '', - 'Belgium' => '', - 'Bermuda' => '', - 'Bhutan' => '', - 'Bolivia, Plurinational State of' => '', - 'Bosnia and Herzegovina' => '', - 'Botswana' => '', - 'Bouvet Island' => '', - 'Brazil' => '', - 'Belize' => '', - 'British Indian Ocean Territory' => '', - 'Solomon Islands' => '', - 'Virgin Islands, British' => '', - 'Brunei Darussalam' => '', - 'Bulgaria' => '', - 'Myanmar' => '', - 'Burundi' => '', - 'Belarus' => '', - 'Cambodia' => '', - 'Cameroon' => '', - 'Canada' => '', - 'Cape Verde' => '', - 'Cayman Islands' => '', - 'Central African Republic' => '', - 'Sri Lanka' => '', - 'Chad' => '', - 'Chile' => '', - 'China' => '', - 'Taiwan, Province of China' => '', - 'Christmas Island' => '', - 'Cocos (Keeling) Islands' => '', - 'Colombia' => '', - 'Comoros' => '', - 'Mayotte' => '', - 'Congo' => '', - 'Congo, the Democratic Republic of the' => '', - 'Cook Islands' => '', - 'Costa Rica' => '', - 'Croatia' => '', - 'Cuba' => '', - 'Cyprus' => '', - 'Czech Republic' => '', - 'Benin' => '', - 'Denmark' => '', - 'Dominica' => '', - 'Dominican Republic' => '', - 'Ecuador' => '', - 'El Salvador' => '', - 'Equatorial Guinea' => '', - 'Ethiopia' => '', - 'Eritrea' => '', - 'Estonia' => '', - 'Faroe Islands' => '', - 'Falkland Islands (Malvinas)' => '', - 'South Georgia and the South Sandwich Islands' => '', - 'Fiji' => '', - 'Finland' => '', - 'Åland Islands' => '', - 'France' => '', - 'French Guiana' => '', - 'French Polynesia' => '', - 'French Southern Territories' => '', - 'Djibouti' => '', - 'Gabon' => '', - 'Georgia' => '', - 'Gambia' => '', - 'Palestinian Territory, Occupied' => '', - 'Germany' => '', - 'Ghana' => '', - 'Gibraltar' => '', - 'Kiribati' => '', - 'Greece' => '', - 'Greenland' => '', - 'Grenada' => '', - 'Guadeloupe' => '', - 'Guam' => '', - 'Guatemala' => '', - 'Guinea' => '', - 'Guyana' => '', - 'Haiti' => '', - 'Heard Island and McDonald Islands' => '', - 'Holy See (Vatican City State)' => '', - 'Honduras' => '', - 'Hong Kong' => '', - 'Hungary' => '', - 'Iceland' => '', - 'India' => '', - 'Indonesia' => '', - 'Iran, Islamic Republic of' => '', - 'Iraq' => '', - 'Ireland' => '', - 'Israel' => '', - 'Italy' => '', - 'Côte d\'Ivoire' => '', - 'Jamaica' => '', - 'Japan' => '', - 'Kazakhstan' => '', - 'Jordan' => '', - 'Kenya' => '', - 'Korea, Democratic People\'s Republic of' => '', - 'Korea, Republic of' => '', - 'Kuwait' => '', - 'Kyrgyzstan' => '', - 'Lao People\'s Democratic Republic' => '', - 'Lebanon' => '', - 'Lesotho' => '', - 'Latvia' => '', - 'Liberia' => '', - 'Libya' => '', - 'Liechtenstein' => '', - 'Lithuania' => '', - 'Luxembourg' => '', - 'Macao' => '', - 'Madagascar' => '', - 'Malawi' => '', - 'Malaysia' => '', - 'Maldives' => '', - 'Mali' => '', - 'Malta' => '', - 'Martinique' => '', - 'Mauritania' => '', - 'Mauritius' => '', - 'Mexico' => '', - 'Monaco' => '', - 'Mongolia' => '', - 'Moldova, Republic of' => '', - 'Montenegro' => '', - 'Montserrat' => '', - 'Morocco' => '', - 'Mozambique' => '', - 'Oman' => '', - 'Namibia' => '', - 'Nauru' => '', - 'Nepal' => '', - 'Netherlands' => '', - 'Curaçao' => '', - 'Aruba' => '', - 'Sint Maarten (Dutch part)' => '', - 'Bonaire, Sint Eustatius and Saba' => '', - 'New Caledonia' => '', - 'Vanuatu' => '', - 'New Zealand' => '', - 'Nicaragua' => '', - 'Niger' => '', - 'Nigeria' => '', - 'Niue' => '', - 'Norfolk Island' => '', - 'Norway' => '', - 'Northern Mariana Islands' => '', - 'United States Minor Outlying Islands' => '', - 'Micronesia, Federated States of' => '', - 'Marshall Islands' => '', - 'Palau' => '', - 'Pakistan' => '', - 'Panama' => '', - 'Papua New Guinea' => '', - 'Paraguay' => '', - 'Peru' => '', - 'Philippines' => '', - 'Pitcairn' => '', - 'Poland' => '', - 'Portugal' => '', - 'Guinea-Bissau' => '', - 'Timor-Leste' => '', - 'Puerto Rico' => '', - 'Qatar' => '', - 'Réunion' => '', - 'Romania' => '', - 'Russian Federation' => '', - 'Rwanda' => '', - 'Saint Barthélemy' => '', - 'Saint Helena, Ascension and Tristan da Cunha' => '', - 'Saint Kitts and Nevis' => '', - 'Anguilla' => '', - 'Saint Lucia' => '', - 'Saint Martin (French part)' => '', - 'Saint Pierre and Miquelon' => '', - 'Saint Vincent and the Grenadines' => '', - 'San Marino' => '', - 'Sao Tome and Principe' => '', - 'Saudi Arabia' => '', - 'Senegal' => '', - 'Serbia' => '', - 'Seychelles' => '', - 'Sierra Leone' => '', - 'Singapore' => '', - 'Slovakia' => '', - 'Viet Nam' => '', - 'Slovenia' => '', - 'Somalia' => '', - 'South Africa' => '', - 'Zimbabwe' => '', - 'Spain' => '', - 'South Sudan' => '', - 'Sudan' => '', - 'Western Sahara' => '', - 'Suriname' => '', - 'Svalbard and Jan Mayen' => '', - 'Swaziland' => '', - 'Sweden' => '', - 'Switzerland' => '', - 'Syrian Arab Republic' => '', - 'Tajikistan' => '', - 'Thailand' => '', - 'Togo' => '', - 'Tokelau' => '', - 'Tonga' => '', - 'Trinidad and Tobago' => '', - 'United Arab Emirates' => '', - 'Tunisia' => '', - 'Turkey' => '', - 'Turkmenistan' => '', - 'Turks and Caicos Islands' => '', - 'Tuvalu' => '', - 'Uganda' => '', - 'Ukraine' => '', - 'Macedonia, the former Yugoslav Republic of' => '', - 'Egypt' => '', - 'United Kingdom' => '', - 'Guernsey' => '', - 'Jersey' => '', - 'Isle of Man' => '', - 'Tanzania, United Republic of' => '', - 'United States' => '', - 'Virgin Islands, U.S.' => '', - 'Burkina Faso' => '', - 'Uruguay' => '', - 'Uzbekistan' => '', - 'Venezuela, Bolivarian Republic of' => '', - 'Wallis and Futuna' => '', - 'Samoa' => '', - 'Yemen' => '', - 'Zambi' => '', - -]; \ No newline at end of file diff --git a/resources/lang/sv/industries.php b/resources/lang/sv/industries.php deleted file mode 100644 index de457b8453..0000000000 --- a/resources/lang/sv/industries.php +++ /dev/null @@ -1,37 +0,0 @@ - 'Accounting & Legal', - 'Advertising' => 'Advertising', - 'Aerospace' => 'Aerospace', - 'Agriculture' => 'Agriculture', - 'Automotive' => 'Automotive', - 'Banking & Finance' => 'Banking & Finance', - 'Biotechnology' => 'Biotechnology', - 'Broadcasting' => 'Broadcasting', - 'Business Services' => 'Business Services', - 'Commodities & Chemicals' => 'Commodities & Chemicals', - 'Communications' => 'Communications', - 'Computers & Hightech' => 'Computers & Hightech', - 'Defense' => 'Defense', - 'Energy' => 'Energy', - 'Entertainment' => 'Entertainment', - 'Government' => 'Government', - 'Healthcare & Life Sciences' => 'Healthcare & Life Sciences', - 'Insurance' => 'Insurance', - 'Manufacturing' => 'Manufacturing', - 'Marketing' => 'Marketing', - 'Media' => 'Media', - 'Nonprofit & Higher Ed' => 'Nonprofit & Higher Ed', - 'Pharmaceuticals' => 'Pharmaceuticals', - 'Professional Services & Consulting' => 'Professional Services & Consulting', - 'Real Estate' => 'Real Estate', - 'Retail & Wholesale' => 'Retail & Wholesale', - 'Sports' => 'Sports', - 'Transportation' => 'Transportation', - 'Travel & Luxury' => 'Travel & Luxury', - 'Other' => 'Other', - 'Photography' =>'Photography', - -]; \ No newline at end of file