From fdb8c707e15d063de73c6e5670d8514364fa8c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Lo=CC=88sken?= Date: Fri, 1 Jul 2016 23:19:09 +0200 Subject: [PATCH] Fix hardcoded translations for industry, country and payment types - Fixes #426, resolves #426 --- app/Http/Controllers/AccountController.php | 2 - app/Http/Controllers/ClientController.php | 2 - app/Http/Controllers/InvoiceController.php | 15 +- app/Http/Controllers/PaymentController.php | 1 - .../ViewComposers/TranslationComposer.php | 43 +++ .../Datatables/RecurringInvoiceDatatable.php | 4 +- app/Ninja/Presenters/InvoicePresenter.php | 4 +- app/Providers/ComposerServiceProvider.php | 31 +++ config/app.php | 1 + 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 | 29 ++ resources/lang/en/countries.php | 255 ++++++++++++++++++ resources/lang/en/industries.php | 37 +++ resources/lang/en/texts.php | 35 ++- 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 +++ 42 files changed, 4783 insertions(+), 19 deletions(-) create mode 100644 app/Http/ViewComposers/TranslationComposer.php create mode 100644 app/Providers/ComposerServiceProvider.php create mode 100644 resources/lang/cs/countries.php create mode 100644 resources/lang/cs/industries.php create mode 100644 resources/lang/da/countries.php create mode 100644 resources/lang/da/industries.php create mode 100644 resources/lang/de/countries.php create mode 100644 resources/lang/de/industries.php create mode 100644 resources/lang/en/countries.php create mode 100644 resources/lang/en/industries.php create mode 100644 resources/lang/es/countries.php create mode 100644 resources/lang/es/industries.php create mode 100644 resources/lang/es_ES/countries.php create mode 100644 resources/lang/es_ES/industries.php create mode 100644 resources/lang/fr/countries.php create mode 100644 resources/lang/fr/industries.php create mode 100644 resources/lang/fr_CA/countries.php create mode 100644 resources/lang/fr_CA/industries.php create mode 100644 resources/lang/it/countries.php create mode 100644 resources/lang/it/industries.php create mode 100644 resources/lang/ja/countries.php create mode 100644 resources/lang/ja/industries.php create mode 100644 resources/lang/lt/countries.php create mode 100644 resources/lang/lt/industries.php create mode 100644 resources/lang/nb_NO/countries.php create mode 100644 resources/lang/nb_NO/industries.php create mode 100644 resources/lang/nl/countries.php create mode 100644 resources/lang/nl/industries.php create mode 100644 resources/lang/pl/countries.php create mode 100644 resources/lang/pt_BR/countries.php create mode 100644 resources/lang/pt_BR/industries.php create mode 100644 resources/lang/sv/countries.php create mode 100644 resources/lang/sv/industries.php diff --git a/app/Http/Controllers/AccountController.php b/app/Http/Controllers/AccountController.php index abb88ef002fd..6e4d4f17c750 100644 --- a/app/Http/Controllers/AccountController.php +++ b/app/Http/Controllers/AccountController.php @@ -347,9 +347,7 @@ class AccountController extends BaseController $data = [ 'account' => Account::with('users')->findOrFail(Auth::user()->account_id), - 'countries' => Cache::get('countries'), 'sizes' => Cache::get('sizes'), - 'industries' => Cache::get('industries'), 'title' => trans('texts.company_details'), ]; diff --git a/app/Http/Controllers/ClientController.php b/app/Http/Controllers/ClientController.php index 66a5e1e25e0d..1cf49e724c54 100644 --- a/app/Http/Controllers/ClientController.php +++ b/app/Http/Controllers/ClientController.php @@ -205,10 +205,8 @@ class ClientController extends BaseController 'account' => Auth::user()->account, 'sizes' => Cache::get('sizes'), 'paymentTerms' => Cache::get('paymentTerms'), - 'industries' => Cache::get('industries'), 'currencies' => Cache::get('currencies'), 'languages' => Cache::get('languages'), - 'countries' => Cache::get('countries'), 'customLabel1' => Auth::user()->account->custom_client_label1, 'customLabel2' => Auth::user()->account->custom_client_label2, ]; diff --git a/app/Http/Controllers/InvoiceController.php b/app/Http/Controllers/InvoiceController.php index 28c73ba65e3c..5e3dca7a3ff3 100644 --- a/app/Http/Controllers/InvoiceController.php +++ b/app/Http/Controllers/InvoiceController.php @@ -372,17 +372,16 @@ class InvoiceController extends BaseController 'languages' => Cache::get('languages'), 'sizes' => Cache::get('sizes'), 'paymentTerms' => Cache::get('paymentTerms'), - 'industries' => Cache::get('industries'), 'invoiceDesigns' => InvoiceDesign::getDesigns(), 'invoiceFonts' => Cache::get('fonts'), 'frequencies' => array( - 1 => 'Weekly', - 2 => 'Two weeks', - 3 => 'Four weeks', - 4 => 'Monthly', - 5 => 'Three months', - 6 => 'Six months', - 7 => 'Annually', + 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'), ), 'recurringDueDates' => $recurringDueDates, 'recurringHelp' => $recurringHelp, diff --git a/app/Http/Controllers/PaymentController.php b/app/Http/Controllers/PaymentController.php index 4412c765236b..13c6cde91e40 100644 --- a/app/Http/Controllers/PaymentController.php +++ b/app/Http/Controllers/PaymentController.php @@ -71,7 +71,6 @@ class PaymentController extends BaseController 'method' => 'POST', 'url' => "payments", 'title' => trans('texts.new_payment'), - 'paymentTypes' => Cache::get('paymentTypes'), 'paymentTypeId' => Input::get('paymentTypeId'), 'clients' => Client::scope()->viewable()->with('contacts')->orderBy('name')->get(), ); diff --git a/app/Http/ViewComposers/TranslationComposer.php b/app/Http/ViewComposers/TranslationComposer.php new file mode 100644 index 000000000000..62c6cc0b56c2 --- /dev/null +++ b/app/Http/ViewComposers/TranslationComposer.php @@ -0,0 +1,43 @@ +with('industries', Cache::get('industries')->each(function ($industry) { + $industry->name = trans('industries.'.$industry->name); + })->sortBy(function ($industry) { + return $industry->name; + })); + + $view->with('countries', Cache::get('countries')->each(function ($country) { + $country->name = trans('countries.'.$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); + })->sortBy(function ($pType) { + return $pType->name; + })); + + } +} \ No newline at end of file diff --git a/app/Ninja/Datatables/RecurringInvoiceDatatable.php b/app/Ninja/Datatables/RecurringInvoiceDatatable.php index 7b5365814eca..261343754793 100644 --- a/app/Ninja/Datatables/RecurringInvoiceDatatable.php +++ b/app/Ninja/Datatables/RecurringInvoiceDatatable.php @@ -14,7 +14,9 @@ class RecurringInvoiceDatatable extends EntityDatatable [ 'frequency', function ($model) { - return link_to("invoices/{$model->public_id}", $model->frequency)->toHtml(); + $frequency = strtolower($model->frequency); + $frequency = preg_replace('/\s/', '_', $frequency); + return link_to("invoices/{$model->public_id}", trans('texts.frequencies.'.$frequency))->toHtml(); } ], [ diff --git a/app/Ninja/Presenters/InvoicePresenter.php b/app/Ninja/Presenters/InvoicePresenter.php index 282f5506cd83..499422ffd2b3 100644 --- a/app/Ninja/Presenters/InvoicePresenter.php +++ b/app/Ninja/Presenters/InvoicePresenter.php @@ -65,7 +65,9 @@ class InvoicePresenter extends EntityPresenter { public function frequency() { - return $this->entity->frequency ? $this->entity->frequency->name : ''; + $frequency = $this->entity->frequency ? $this->entity->frequency->name : ''; + $frequency = strtolower($frequency); + return trans('texts.frequencies.'.$frequency); } public function email() diff --git a/app/Providers/ComposerServiceProvider.php b/app/Providers/ComposerServiceProvider.php new file mode 100644 index 000000000000..8b1c76158707 --- /dev/null +++ b/app/Providers/ComposerServiceProvider.php @@ -0,0 +1,31 @@ +composer( + ['accounts.details', 'clients.edit', 'payments.edit', 'invoices.edit'], + 'App\Http\ViewComposers\TranslationComposer' + ); + } + + /** + * Register the service provider. + * + * @return void + */ + public function register() + { + + } +} \ No newline at end of file diff --git a/config/app.php b/config/app.php index bafe92b81d15..0ad7efcb3845 100644 --- a/config/app.php +++ b/config/app.php @@ -161,6 +161,7 @@ return [ 'App\Providers\AuthServiceProvider', 'App\Providers\AppServiceProvider', //'App\Providers\BusServiceProvider', + 'App\Providers\ComposerServiceProvider', 'App\Providers\ConfigServiceProvider', 'App\Providers\EventServiceProvider', 'App\Providers\RouteServiceProvider', diff --git a/resources/lang/cs/countries.php b/resources/lang/cs/countries.php new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/cs/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/cs/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/da/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/da/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..6200dae0f434 --- /dev/null +++ b/resources/lang/de/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..14c19a4c5b1f --- /dev/null +++ b/resources/lang/de/industries.php @@ -0,0 +1,37 @@ + '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 418fa6c3edc7..8b1e4108d588 100644 --- a/resources/lang/de/texts.php +++ b/resources/lang/de/texts.php @@ -1271,4 +1271,33 @@ return array( 'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.', 'return_to_app' => 'Return to app', + 'frequencies' => [ + 'weekly' => 'wöchentlich', + 'two_weeks' => 'zweiwöchentlich', + 'four_weeks' => 'vierwöchentlich', + 'monthly' => 'monatlich', + 'three_months' => 'dreimonatlich', + 'six_months' => 'halbjährlich', + 'annually' => 'jährlich', + ], + + 'payment_types' => [ + 'Apply Credit' => 'Kredit', + 'Bank Transfer' => 'Überweisung', + 'Cash' => 'Bar', + 'Debit' => 'Guthaben', + 'ACH' => 'ACH', + 'Visa Card' => 'VISA', + 'MasterCard' => 'MasterCard', + 'American Express' => 'American Express', + 'Discover Card' => 'Discover Card', + 'Diners Card' => 'Diners Card', + 'EuroCard' => 'EuroCard', + 'Nova' => 'Nova', + 'Credit Card Other' => 'Andere Kreditkarte', + 'PayPal' => 'PayPal', + 'Google Wallet' => 'Google Wallet', + 'Check' => 'Scheck', + ], + ); diff --git a/resources/lang/en/countries.php b/resources/lang/en/countries.php new file mode 100644 index 000000000000..085e685affc8 --- /dev/null +++ b/resources/lang/en/countries.php @@ -0,0 +1,255 @@ + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/en/industries.php @@ -0,0 +1,37 @@ + '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 f8c998321ebf..e602321136c1 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -1,6 +1,6 @@ 'Organization', 'name' => 'Name', 'website' => 'Website', @@ -1361,8 +1361,35 @@ $LANG = array( 'failed_remove_payment_method' => 'Failed to remove the payment method', 'gateway_exists' => 'This gateway already exists', -); + 'frequencies' => [ + 'weekly' => 'Weekly', + 'two_weeks' => 'Two weeks', + 'four_weeks' => 'Four weeks', + 'monthly' => 'Monthly', + 'three_months' => 'Three months', + 'six_months' => 'Six months', + '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', + ], + +]; -return $LANG; -?> diff --git a/resources/lang/es/countries.php b/resources/lang/es/countries.php new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/es/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/es/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/es_ES/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/es_ES/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/fr/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/fr/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/fr_CA/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/fr_CA/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/it/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/it/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/ja/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/ja/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/lt/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/lt/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/nb_NO/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/nb_NO/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/nl/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/nl/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/pl/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/pt_BR/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/pt_BR/industries.php @@ -0,0 +1,37 @@ + '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 new file mode 100644 index 000000000000..686fb596fa27 --- /dev/null +++ b/resources/lang/sv/countries.php @@ -0,0 +1,255 @@ + '', + '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 new file mode 100644 index 000000000000..de457b8453fe --- /dev/null +++ b/resources/lang/sv/industries.php @@ -0,0 +1,37 @@ + '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