mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Fix hardcoded translations for industry, country and payment types
- Fixes #426, resolves #426
This commit is contained in:
parent
cbe39f9aaf
commit
fdb8c707e1
@ -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'),
|
||||
];
|
||||
|
||||
|
@ -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,
|
||||
];
|
||||
|
@ -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,
|
||||
|
@ -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(), );
|
||||
|
||||
|
43
app/Http/ViewComposers/TranslationComposer.php
Normal file
43
app/Http/ViewComposers/TranslationComposer.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\ViewComposers;
|
||||
|
||||
use Cache;
|
||||
use Illuminate\View\View;
|
||||
|
||||
/**
|
||||
* TranslationComposer.php.
|
||||
*
|
||||
* @copyright See LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
class TranslationComposer
|
||||
{
|
||||
/**
|
||||
* Bind data to the view.
|
||||
*
|
||||
* @param View $view
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function compose(View $view)
|
||||
{
|
||||
$view->with('industries', Cache::get('industries')->each(function ($industry) {
|
||||
$industry->name = trans('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;
|
||||
}));
|
||||
|
||||
}
|
||||
}
|
@ -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();
|
||||
}
|
||||
],
|
||||
[
|
||||
|
@ -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()
|
||||
|
31
app/Providers/ComposerServiceProvider.php
Normal file
31
app/Providers/ComposerServiceProvider.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class ComposerServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register bindings in the container.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
view()->composer(
|
||||
['accounts.details', 'clients.edit', 'payments.edit', 'invoices.edit'],
|
||||
'App\Http\ViewComposers\TranslationComposer'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the service provider.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -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',
|
||||
|
255
resources/lang/cs/countries.php
Normal file
255
resources/lang/cs/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/cs/industries.php
Normal file
37
resources/lang/cs/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/da/countries.php
Normal file
255
resources/lang/da/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/da/industries.php
Normal file
37
resources/lang/da/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/de/countries.php
Normal file
255
resources/lang/de/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/de/industries.php
Normal file
37
resources/lang/de/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
@ -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',
|
||||
],
|
||||
|
||||
);
|
||||
|
255
resources/lang/en/countries.php
Normal file
255
resources/lang/en/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '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',
|
||||
|
||||
];
|
37
resources/lang/en/industries.php
Normal file
37
resources/lang/en/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
$LANG = array(
|
||||
return [
|
||||
'organization' => '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;
|
||||
|
||||
?>
|
||||
|
255
resources/lang/es/countries.php
Normal file
255
resources/lang/es/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/es/industries.php
Normal file
37
resources/lang/es/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/es_ES/countries.php
Normal file
255
resources/lang/es_ES/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/es_ES/industries.php
Normal file
37
resources/lang/es_ES/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/fr/countries.php
Normal file
255
resources/lang/fr/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/fr/industries.php
Normal file
37
resources/lang/fr/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/fr_CA/countries.php
Normal file
255
resources/lang/fr_CA/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/fr_CA/industries.php
Normal file
37
resources/lang/fr_CA/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/it/countries.php
Normal file
255
resources/lang/it/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/it/industries.php
Normal file
37
resources/lang/it/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/ja/countries.php
Normal file
255
resources/lang/ja/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/ja/industries.php
Normal file
37
resources/lang/ja/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/lt/countries.php
Normal file
255
resources/lang/lt/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/lt/industries.php
Normal file
37
resources/lang/lt/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/nb_NO/countries.php
Normal file
255
resources/lang/nb_NO/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/nb_NO/industries.php
Normal file
37
resources/lang/nb_NO/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/nl/countries.php
Normal file
255
resources/lang/nl/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/nl/industries.php
Normal file
37
resources/lang/nl/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/pl/countries.php
Normal file
255
resources/lang/pl/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
255
resources/lang/pt_BR/countries.php
Normal file
255
resources/lang/pt_BR/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/pt_BR/industries.php
Normal file
37
resources/lang/pt_BR/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
255
resources/lang/sv/countries.php
Normal file
255
resources/lang/sv/countries.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Afghanistan' => '',
|
||||
'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' => '',
|
||||
|
||||
];
|
37
resources/lang/sv/industries.php
Normal file
37
resources/lang/sv/industries.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accounting & Legal' => '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',
|
||||
|
||||
];
|
Loading…
x
Reference in New Issue
Block a user