mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-22 15:30:57 -04:00
Merge branch 'release-3.3.3'
This commit is contained in:
commit
c89941187b
@ -21,3 +21,4 @@ DB_DATABASE2=ninja2
|
|||||||
MAIL_DRIVER=log
|
MAIL_DRIVER=log
|
||||||
TRAVIS=true
|
TRAVIS=true
|
||||||
API_SECRET=password
|
API_SECRET=password
|
||||||
|
TEST_USERNAME=user@example.com
|
||||||
|
@ -70,6 +70,8 @@ before_script:
|
|||||||
- php artisan ninja:create-test-data 4 true
|
- php artisan ninja:create-test-data 4 true
|
||||||
- php artisan db:seed --no-interaction --class=UserTableSeeder # development seed
|
- php artisan db:seed --no-interaction --class=UserTableSeeder # development seed
|
||||||
- sed -i 's/DB_TYPE=db-ninja-1/DB_TYPE=db-ninja-2/g' .env
|
- sed -i 's/DB_TYPE=db-ninja-1/DB_TYPE=db-ninja-2/g' .env
|
||||||
|
- sed -i 's/user@example.com/user2@example.com/g' .env
|
||||||
|
- php artisan db:seed --no-interaction --class=UserTableSeeder # development seed
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- php ./vendor/codeception/codeception/codecept run --debug acceptance APICest.php
|
- php ./vendor/codeception/codeception/codecept run --debug acceptance APICest.php
|
||||||
@ -92,6 +94,8 @@ script:
|
|||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
- php artisan ninja:check-data --no-interaction
|
- php artisan ninja:check-data --no-interaction
|
||||||
|
- php artisan ninja:init-lookup --validate=true --database='db-ninja-1'
|
||||||
|
- php artisan ninja:init-lookup --validate=true --database='db-ninja-2'
|
||||||
- cat .env
|
- cat .env
|
||||||
- mysql -u root -e 'select * from lookup_companies;' ninja0
|
- mysql -u root -e 'select * from lookup_companies;' ninja0
|
||||||
- mysql -u root -e 'select * from lookup_accounts;' ninja0
|
- mysql -u root -e 'select * from lookup_accounts;' ninja0
|
||||||
|
@ -80,12 +80,14 @@ class CheckData extends Command
|
|||||||
//$this->checkUserAccounts();
|
//$this->checkUserAccounts();
|
||||||
|
|
||||||
if (! $this->option('client_id')) {
|
if (! $this->option('client_id')) {
|
||||||
|
$this->checkOAuth();
|
||||||
$this->checkInvitations();
|
$this->checkInvitations();
|
||||||
$this->checkFailedJobs();
|
$this->checkFailedJobs();
|
||||||
$this->checkAccountData();
|
$this->checkAccountData();
|
||||||
|
$this->checkLookupData();
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->logMessage('Done');
|
$this->logMessage('Done: ' . strtoupper($this->isValid ? RESULT_SUCCESS : RESULT_FAILURE));
|
||||||
$errorEmail = env('ERROR_EMAIL');
|
$errorEmail = env('ERROR_EMAIL');
|
||||||
$this->info($this->log);
|
$this->info($this->log);
|
||||||
|
|
||||||
@ -105,6 +107,70 @@ class CheckData extends Command
|
|||||||
$this->log .= $str . "\n";
|
$this->log .= $str . "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function checkOAuth()
|
||||||
|
{
|
||||||
|
// check for duplicate oauth ids
|
||||||
|
$users = DB::table('users')
|
||||||
|
->whereNotNull('oauth_user_id')
|
||||||
|
->groupBy('users.oauth_user_id')
|
||||||
|
->havingRaw('count(users.id) > 1')
|
||||||
|
->get(['users.oauth_user_id']);
|
||||||
|
|
||||||
|
$this->logMessage(count($users) . ' users with duplicate oauth ids');
|
||||||
|
|
||||||
|
if (count($users) > 0) {
|
||||||
|
$this->isValid = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->option('fix') == 'true') {
|
||||||
|
foreach ($users as $user) {
|
||||||
|
$first = true;
|
||||||
|
$this->logMessage('checking ' . $user->oauth_user_id);
|
||||||
|
$matches = DB::table('users')
|
||||||
|
->where('oauth_user_id', '=', $user->oauth_user_id)
|
||||||
|
->orderBy('id')
|
||||||
|
->get(['id']);
|
||||||
|
|
||||||
|
foreach ($matches as $match) {
|
||||||
|
if ($first) {
|
||||||
|
$this->logMessage('skipping ' . $match->id);
|
||||||
|
$first = false;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$this->logMessage('updating ' . $match->id);
|
||||||
|
|
||||||
|
DB::table('users')
|
||||||
|
->where('id', '=', $match->id)
|
||||||
|
->where('oauth_user_id', '=', $user->oauth_user_id)
|
||||||
|
->update([
|
||||||
|
'oauth_user_id' => null,
|
||||||
|
'oauth_provider_id' => null,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function checkLookupData()
|
||||||
|
{
|
||||||
|
$tables = [
|
||||||
|
'account_tokens',
|
||||||
|
'accounts',
|
||||||
|
'companies',
|
||||||
|
'contacts',
|
||||||
|
'invitations',
|
||||||
|
'users',
|
||||||
|
];
|
||||||
|
|
||||||
|
foreach ($tables as $table) {
|
||||||
|
$count = DB::table('lookup_' . $table)->count();
|
||||||
|
if ($count > 0) {
|
||||||
|
$this->logMessage("Lookup table {$table} has {$count} records");
|
||||||
|
$this->isValid = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private function checkUserAccounts()
|
private function checkUserAccounts()
|
||||||
{
|
{
|
||||||
$userAccounts = DB::table('user_accounts')
|
$userAccounts = DB::table('user_accounts')
|
||||||
@ -176,7 +242,7 @@ class CheckData extends Command
|
|||||||
if ($this->option('fix') == 'true') {
|
if ($this->option('fix') == 'true') {
|
||||||
foreach ($contacts as $contact) {
|
foreach ($contacts as $contact) {
|
||||||
DB::table('contacts')
|
DB::table('contacts')
|
||||||
->where('id', $contact->id)
|
->where('id', '=', $contact->id)
|
||||||
->whereNull('contact_key')
|
->whereNull('contact_key')
|
||||||
->update([
|
->update([
|
||||||
'contact_key' => strtolower(str_random(RANDOM_KEY_LENGTH)),
|
'contact_key' => strtolower(str_random(RANDOM_KEY_LENGTH)),
|
||||||
|
@ -142,11 +142,17 @@ class InitLookup extends Command
|
|||||||
$this->logError("LookupUser - lookupAccountId: {$lookupAccount->id}, userId: {$user['user_id']} | Not found!");
|
$this->logError("LookupUser - lookupAccountId: {$lookupAccount->id}, userId: {$user['user_id']} | Not found!");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if ($user['email'] != $lookupUser->email || $user['oauth_user_key'] != $lookupUser->oauth_user_key || $user['referral_code'] != $lookupUser->referral_code) {
|
||||||
|
$this->logError("LookupUser - lookupAccountId: {$lookupAccount->id}, userId: {$user['user_id']} | Out of date!");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
LookupUser::create([
|
LookupUser::create([
|
||||||
'lookup_account_id' => $lookupAccount->id,
|
'lookup_account_id' => $lookupAccount->id,
|
||||||
'email' => $user['email'] ?: null,
|
'email' => $user['email'] ?: null,
|
||||||
'user_id' => $user['user_id'],
|
'user_id' => $user['user_id'],
|
||||||
|
'oauth_user_key' => $user['oauth_user_key'],
|
||||||
|
'referral_code' => $user['referral_code'],
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -206,7 +212,9 @@ class InitLookup extends Command
|
|||||||
|
|
||||||
config(['database.default' => $this->option('database')]);
|
config(['database.default' => $this->option('database')]);
|
||||||
|
|
||||||
$accounts = DB::table('accounts')->whereCompanyId($companyId)->orderBy('id')->get(['id', 'account_key']);
|
$accounts = DB::table('accounts')->whereCompanyId($companyId)->orderBy('id')->get([
|
||||||
|
'id', 'account_key'
|
||||||
|
]);
|
||||||
foreach ($accounts as $account) {
|
foreach ($accounts as $account) {
|
||||||
$data[$account->account_key] = $this->parseAccount($account->id);
|
$data[$account->account_key] = $this->parseAccount($account->id);
|
||||||
}
|
}
|
||||||
@ -223,22 +231,35 @@ class InitLookup extends Command
|
|||||||
'tokens' => [],
|
'tokens' => [],
|
||||||
];
|
];
|
||||||
|
|
||||||
$users = DB::table('users')->whereAccountId($accountId)->orderBy('id')->get(['email', 'id']);
|
$users = DB::table('users')->whereAccountId($accountId)->orderBy('id')->get([
|
||||||
|
'email',
|
||||||
|
'id',
|
||||||
|
'oauth_user_id',
|
||||||
|
'oauth_provider_id',
|
||||||
|
'referral_code',
|
||||||
|
]);
|
||||||
foreach ($users as $user) {
|
foreach ($users as $user) {
|
||||||
$data['users'][] = [
|
$data['users'][] = [
|
||||||
'email' => $user->email,
|
'email' => $user->email,
|
||||||
'user_id' => $user->id,
|
'user_id' => $user->id,
|
||||||
|
'oauth_user_key' => ($user->oauth_provider_id && $user->oauth_user_id) ? ($user->oauth_provider_id . '-' . $user->oauth_user_id) : null,
|
||||||
|
'referral_code' => $user->referral_code,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
$contacts = DB::table('contacts')->whereAccountId($accountId)->orderBy('id')->get(['contact_key']);
|
$contacts = DB::table('contacts')->whereAccountId($accountId)->orderBy('id')->get([
|
||||||
|
'contact_key'
|
||||||
|
]);
|
||||||
foreach ($contacts as $contact) {
|
foreach ($contacts as $contact) {
|
||||||
$data['contacts'][] = [
|
$data['contacts'][] = [
|
||||||
'contact_key' => $contact->contact_key,
|
'contact_key' => $contact->contact_key,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
$invitations = DB::table('invitations')->whereAccountId($accountId)->orderBy('id')->get(['invitation_key', 'message_id']);
|
$invitations = DB::table('invitations')->whereAccountId($accountId)->orderBy('id')->get([
|
||||||
|
'invitation_key',
|
||||||
|
'message_id'
|
||||||
|
]);
|
||||||
foreach ($invitations as $invitation) {
|
foreach ($invitations as $invitation) {
|
||||||
$data['invitations'][] = [
|
$data['invitations'][] = [
|
||||||
'invitation_key' => $invitation->invitation_key,
|
'invitation_key' => $invitation->invitation_key,
|
||||||
@ -246,7 +267,9 @@ class InitLookup extends Command
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
$tokens = DB::table('account_tokens')->whereAccountId($accountId)->orderBy('id')->get(['token']);
|
$tokens = DB::table('account_tokens')->whereAccountId($accountId)->orderBy('id')->get([
|
||||||
|
'token'
|
||||||
|
]);
|
||||||
foreach ($tokens as $token) {
|
foreach ($tokens as $token) {
|
||||||
$data['tokens'][] = [
|
$data['tokens'][] = [
|
||||||
'token' => $token->token,
|
'token' => $token->token,
|
||||||
|
@ -300,7 +300,7 @@ if (! defined('APP_NAME')) {
|
|||||||
define('NINJA_APP_URL', env('NINJA_APP_URL', 'https://app.invoiceninja.com'));
|
define('NINJA_APP_URL', env('NINJA_APP_URL', 'https://app.invoiceninja.com'));
|
||||||
define('NINJA_DOCS_URL', env('NINJA_DOCS_URL', 'http://docs.invoiceninja.com/en/latest'));
|
define('NINJA_DOCS_URL', env('NINJA_DOCS_URL', 'http://docs.invoiceninja.com/en/latest'));
|
||||||
define('NINJA_DATE', '2000-01-01');
|
define('NINJA_DATE', '2000-01-01');
|
||||||
define('NINJA_VERSION', '3.3.1' . env('NINJA_VERSION_SUFFIX'));
|
define('NINJA_VERSION', '3.3.3' . env('NINJA_VERSION_SUFFIX'));
|
||||||
|
|
||||||
define('SOCIAL_LINK_FACEBOOK', env('SOCIAL_LINK_FACEBOOK', 'https://www.facebook.com/invoiceninja'));
|
define('SOCIAL_LINK_FACEBOOK', env('SOCIAL_LINK_FACEBOOK', 'https://www.facebook.com/invoiceninja'));
|
||||||
define('SOCIAL_LINK_TWITTER', env('SOCIAL_LINK_TWITTER', 'https://twitter.com/invoiceninja'));
|
define('SOCIAL_LINK_TWITTER', env('SOCIAL_LINK_TWITTER', 'https://twitter.com/invoiceninja'));
|
||||||
@ -362,7 +362,7 @@ if (! defined('APP_NAME')) {
|
|||||||
define('USER_TYPE_CLOUD_HOST', 'CLOUD_HOST');
|
define('USER_TYPE_CLOUD_HOST', 'CLOUD_HOST');
|
||||||
define('NEW_VERSION_AVAILABLE', 'NEW_VERSION_AVAILABLE');
|
define('NEW_VERSION_AVAILABLE', 'NEW_VERSION_AVAILABLE');
|
||||||
|
|
||||||
define('TEST_USERNAME', 'user@example.com');
|
define('TEST_USERNAME', env('TEST_USERNAME', 'user@example.com'));
|
||||||
define('TEST_PASSWORD', 'password');
|
define('TEST_PASSWORD', 'password');
|
||||||
define('API_SECRET', 'API_SECRET');
|
define('API_SECRET', 'API_SECRET');
|
||||||
define('DEFAULT_API_PAGE_SIZE', 15);
|
define('DEFAULT_API_PAGE_SIZE', 15);
|
||||||
|
@ -39,7 +39,7 @@ class AccountApiController extends BaseAPIController
|
|||||||
|
|
||||||
public function register(RegisterRequest $request)
|
public function register(RegisterRequest $request)
|
||||||
{
|
{
|
||||||
if (! \App\Models\LookupUser::validateEmail($request->email)) {
|
if (! \App\Models\LookupUser::validateField('email', $request->email)) {
|
||||||
return $this->errorResponse(['message' => trans('texts.email_taken')], 500);
|
return $this->errorResponse(['message' => trans('texts.email_taken')], 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -399,7 +399,7 @@ class AccountController extends BaseController
|
|||||||
'user' => Auth::user(),
|
'user' => Auth::user(),
|
||||||
'oauthProviderName' => AuthService::getProviderName(Auth::user()->oauth_provider_id),
|
'oauthProviderName' => AuthService::getProviderName(Auth::user()->oauth_provider_id),
|
||||||
'oauthLoginUrls' => $oauthLoginUrls,
|
'oauthLoginUrls' => $oauthLoginUrls,
|
||||||
'referralCounts' => $this->referralRepository->getCounts(Auth::user()->id),
|
'referralCounts' => $this->referralRepository->getCounts(Auth::user()->referral_code),
|
||||||
];
|
];
|
||||||
|
|
||||||
return View::make('accounts.user_details', $data);
|
return View::make('accounts.user_details', $data);
|
||||||
@ -1102,7 +1102,7 @@ class AccountController extends BaseController
|
|||||||
$user = Auth::user();
|
$user = Auth::user();
|
||||||
$email = trim(strtolower(Input::get('email')));
|
$email = trim(strtolower(Input::get('email')));
|
||||||
|
|
||||||
if (! \App\Models\LookupUser::validateEmail($email, $user)) {
|
if (! \App\Models\LookupUser::validateField('email', $email, $user)) {
|
||||||
return Redirect::to('settings/' . ACCOUNT_USER_DETAILS)
|
return Redirect::to('settings/' . ACCOUNT_USER_DETAILS)
|
||||||
->withError(trans('texts.email_taken'))
|
->withError(trans('texts.email_taken'))
|
||||||
->withInput();
|
->withInput();
|
||||||
@ -1131,7 +1131,7 @@ class AccountController extends BaseController
|
|||||||
|
|
||||||
if (Utils::isNinja()) {
|
if (Utils::isNinja()) {
|
||||||
if (Input::get('referral_code') && ! $user->referral_code) {
|
if (Input::get('referral_code') && ! $user->referral_code) {
|
||||||
$user->referral_code = $this->accountRepo->getReferralCode();
|
$user->referral_code = strtolower(str_random(RANDOM_KEY_LENGTH));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1219,7 +1219,7 @@ class AccountController extends BaseController
|
|||||||
$email = trim(strtolower(Input::get('email')));
|
$email = trim(strtolower(Input::get('email')));
|
||||||
$user = Auth::user();
|
$user = Auth::user();
|
||||||
|
|
||||||
if (! \App\Models\LookupUser::validateEmail($email, $user)) {
|
if (! \App\Models\LookupUser::validateField('email', $email, $user)) {
|
||||||
return 'taken';
|
return 'taken';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1264,7 +1264,7 @@ class AccountController extends BaseController
|
|||||||
$email = trim(strtolower(Input::get('new_email')));
|
$email = trim(strtolower(Input::get('new_email')));
|
||||||
$password = trim(Input::get('new_password'));
|
$password = trim(Input::get('new_password'));
|
||||||
|
|
||||||
if (! \App\Models\LookupUser::validateEmail($email, $user)) {
|
if (! \App\Models\LookupUser::validateField('email', $email, $user)) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,6 +79,8 @@ class DashboardController extends BaseController
|
|||||||
'tasks' => $tasks,
|
'tasks' => $tasks,
|
||||||
'showBlueVinePromo' => $showBlueVinePromo,
|
'showBlueVinePromo' => $showBlueVinePromo,
|
||||||
'showWhiteLabelExpired' => $showWhiteLabelExpired,
|
'showWhiteLabelExpired' => $showWhiteLabelExpired,
|
||||||
|
'headerClass' => in_array(\App::getLocale(), ['lt', 'pl', 'cs', 'sl']) ? 'in-large' : 'in-thin',
|
||||||
|
'footerClass' => in_array(\App::getLocale(), ['lt', 'pl', 'cs', 'sl']) ? '' : 'in-thin',
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($showBlueVinePromo) {
|
if ($showBlueVinePromo) {
|
||||||
|
@ -182,7 +182,7 @@ class UserController extends BaseController
|
|||||||
->withInput();
|
->withInput();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! \App\Models\LookupUser::validateEmail(Input::get('email'), $user)) {
|
if (! \App\Models\LookupUser::validateField('email', Input::get('email'), $user)) {
|
||||||
return Redirect::to($userPublicId ? 'users/edit' : 'users/create')
|
return Redirect::to($userPublicId ? 'users/edit' : 'users/create')
|
||||||
->withError(trans('texts.email_taken'))
|
->withError(trans('texts.email_taken'))
|
||||||
->withInput();
|
->withInput();
|
||||||
@ -280,7 +280,7 @@ class UserController extends BaseController
|
|||||||
return Redirect::to($url)->with('message', $notice_msg);
|
return Redirect::to($url)->with('message', $notice_msg);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$error_msg = trans('texts.security.wrong_confirmation');
|
$error_msg = trans('texts.wrong_confirmation');
|
||||||
|
|
||||||
return Redirect::to('/login')->with('error', $error_msg);
|
return Redirect::to('/login')->with('error', $error_msg);
|
||||||
}
|
}
|
||||||
|
@ -158,6 +158,12 @@ class Company extends Eloquent
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getPlanDetails($includeInactive = false, $includeTrial = true)
|
||||||
|
{
|
||||||
|
$account = $this->accounts()->first();
|
||||||
|
return $account->getPlanDetails($includeInactive, $includeTrial);
|
||||||
|
}
|
||||||
|
|
||||||
public function processRefund($user)
|
public function processRefund($user)
|
||||||
{
|
{
|
||||||
if (! $this->payment) {
|
if (! $this->payment) {
|
||||||
|
@ -30,7 +30,7 @@ class LookupAccount extends LookupModel
|
|||||||
|
|
||||||
$current = config('database.default');
|
$current = config('database.default');
|
||||||
config(['database.default' => DB_NINJA_LOOKUP]);
|
config(['database.default' => DB_NINJA_LOOKUP]);
|
||||||
|
|
||||||
$server = DbServer::whereName($current)->firstOrFail();
|
$server = DbServer::whereName($current)->firstOrFail();
|
||||||
$lookupCompany = LookupCompany::whereDbServerId($server->id)
|
$lookupCompany = LookupCompany::whereDbServerId($server->id)
|
||||||
->whereCompanyId($companyId)->first();
|
->whereCompanyId($companyId)->first();
|
||||||
@ -49,4 +49,10 @@ class LookupAccount extends LookupModel
|
|||||||
|
|
||||||
static::setDbServer($current);
|
static::setDbServer($current);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getDbServer()
|
||||||
|
{
|
||||||
|
return $this->lookupCompany->dbServer->name;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -22,4 +22,9 @@ class LookupCompany extends LookupModel
|
|||||||
return $this->belongsTo('App\Models\DbServer');
|
return $this->belongsTo('App\Models\DbServer');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getDbServer()
|
||||||
|
{
|
||||||
|
return $this->dbServer->name;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -83,7 +83,14 @@ class LookupModel extends Eloquent
|
|||||||
static::setDbServer($server);
|
static::setDbServer($server);
|
||||||
|
|
||||||
// check entity is found on the server
|
// check entity is found on the server
|
||||||
if (! $entity::where($field, '=', $value)->first()) {
|
if ($field === 'oauth_user_key') {
|
||||||
|
list($providerId, $oauthId) = explode('-', $value);
|
||||||
|
$isFound = $entity::where('oauth_provider_id', '=', $providerId)
|
||||||
|
->where('oauth_user_id', '=', $oauthId)->first();
|
||||||
|
} else {
|
||||||
|
$isFound = $entity::where($field, '=', $value)->first();
|
||||||
|
}
|
||||||
|
if (! $isFound) {
|
||||||
abort("Looked up {$className} not found: {$field} => {$value}");
|
abort("Looked up {$className} not found: {$field} => {$value}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,9 +18,11 @@ class LookupUser extends LookupModel
|
|||||||
'email',
|
'email',
|
||||||
'user_id',
|
'user_id',
|
||||||
'confirmation_code',
|
'confirmation_code',
|
||||||
|
'oauth_user_key',
|
||||||
|
'referral_code',
|
||||||
];
|
];
|
||||||
|
|
||||||
public static function updateUser($accountKey, $userId, $email, $confirmationCode)
|
public static function updateUser($accountKey, $user)
|
||||||
{
|
{
|
||||||
if (! env('MULTI_DB_ENABLED')) {
|
if (! env('MULTI_DB_ENABLED')) {
|
||||||
return;
|
return;
|
||||||
@ -33,29 +35,33 @@ class LookupUser extends LookupModel
|
|||||||
->firstOrFail();
|
->firstOrFail();
|
||||||
|
|
||||||
$lookupUser = LookupUser::whereLookupAccountId($lookupAccount->id)
|
$lookupUser = LookupUser::whereLookupAccountId($lookupAccount->id)
|
||||||
->whereUserId($userId)
|
->whereUserId($user->id)
|
||||||
->firstOrFail();
|
->firstOrFail();
|
||||||
|
|
||||||
$lookupUser->email = $email;
|
$lookupUser->email = $user->email;
|
||||||
$lookupUser->confirmation_code = $confirmationCode;
|
$lookupUser->confirmation_code = $user->confirmation_code;
|
||||||
|
$lookupUser->oauth_user_key = ($user->oauth_provider_id && $user->oauth_user_id) ? ($user->oauth_provider_id . '-' . $user->oauth_user_id) : null;
|
||||||
|
$lookupUser->referral_code = $user->referral_code;
|
||||||
$lookupUser->save();
|
$lookupUser->save();
|
||||||
|
|
||||||
config(['database.default' => $current]);
|
config(['database.default' => $current]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function validateEmail($email, $user = false)
|
public static function validateField($field, $value, $user = false)
|
||||||
{
|
{
|
||||||
if (! env('MULTI_DB_ENABLED')) {
|
if (! env('MULTI_DB_ENABLED')) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$current = config('database.default');
|
$current = config('database.default');
|
||||||
|
$accountKey = $user ? $user->account->account_key : false;
|
||||||
|
|
||||||
config(['database.default' => DB_NINJA_LOOKUP]);
|
config(['database.default' => DB_NINJA_LOOKUP]);
|
||||||
|
|
||||||
$lookupUser = LookupUser::whereEmail($email)->first();
|
$lookupUser = LookupUser::where($field, '=', $value)->first();
|
||||||
|
|
||||||
if ($user) {
|
if ($user) {
|
||||||
$lookupAccount = LookupAccount::whereAccountKey($user->account->account_key)->firstOrFail();
|
$lookupAccount = LookupAccount::whereAccountKey($accountKey)->firstOrFail();
|
||||||
$isValid = ! $lookupUser || ($lookupUser->lookup_account_id == $lookupAccount->id && $lookupUser->user_id == $user->id);
|
$isValid = ! $lookupUser || ($lookupUser->lookup_account_id == $lookupAccount->id && $lookupUser->user_id == $user->id);
|
||||||
} else {
|
} else {
|
||||||
$isValid = ! $lookupUser;
|
$isValid = ! $lookupUser;
|
||||||
|
@ -426,8 +426,12 @@ User::updating(function ($user) {
|
|||||||
User::onUpdatingUser($user);
|
User::onUpdatingUser($user);
|
||||||
|
|
||||||
$dirty = $user->getDirty();
|
$dirty = $user->getDirty();
|
||||||
if (array_key_exists('email', $dirty) || array_key_exists('confirmation_code', $dirty)) {
|
if (array_key_exists('email', $dirty)
|
||||||
LookupUser::updateUser($user->account->account_key, $user->id, $user->email, $user->confirmation_code);
|
|| array_key_exists('confirmation_code', $dirty)
|
||||||
|
|| array_key_exists('oauth_user_id', $dirty)
|
||||||
|
|| array_key_exists('oauth_provider_id', $dirty)
|
||||||
|
|| array_key_exists('referral_code', $dirty)) {
|
||||||
|
LookupUser::updateUser($user->account->account_key, $user);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@ use App\Models\InvoiceItem;
|
|||||||
use App\Models\Language;
|
use App\Models\Language;
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use App\Models\UserAccount;
|
use App\Models\UserAccount;
|
||||||
|
use App\Models\LookupUser;
|
||||||
use Auth;
|
use Auth;
|
||||||
use Input;
|
use Input;
|
||||||
use Request;
|
use Request;
|
||||||
@ -37,6 +38,7 @@ class AccountRepository
|
|||||||
$company->utm_campaign = Input::get('utm_campaign');
|
$company->utm_campaign = Input::get('utm_campaign');
|
||||||
$company->utm_term = Input::get('utm_term');
|
$company->utm_term = Input::get('utm_term');
|
||||||
$company->utm_content = Input::get('utm_content');
|
$company->utm_content = Input::get('utm_content');
|
||||||
|
$company->referral_code = Session::get(SESSION_REFERRAL_CODE);
|
||||||
$company->save();
|
$company->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,13 +47,6 @@ class AccountRepository
|
|||||||
$account->account_key = strtolower(str_random(RANDOM_KEY_LENGTH));
|
$account->account_key = strtolower(str_random(RANDOM_KEY_LENGTH));
|
||||||
$account->company_id = $company->id;
|
$account->company_id = $company->id;
|
||||||
|
|
||||||
// Track referal code
|
|
||||||
if ($referralCode = Session::get(SESSION_REFERRAL_CODE)) {
|
|
||||||
if ($user = User::whereReferralCode($referralCode)->first()) {
|
|
||||||
$account->referral_user_id = $user->id;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($locale = Session::get(SESSION_LOCALE)) {
|
if ($locale = Session::get(SESSION_LOCALE)) {
|
||||||
if ($language = Language::whereLocale($locale)->first()) {
|
if ($language = Language::whereLocale($locale)->first()) {
|
||||||
$account->language_id = $language->id;
|
$account->language_id = $language->id;
|
||||||
@ -436,6 +431,15 @@ class AccountRepository
|
|||||||
|
|
||||||
public function updateUserFromOauth($user, $firstName, $lastName, $email, $providerId, $oauthUserId)
|
public function updateUserFromOauth($user, $firstName, $lastName, $email, $providerId, $oauthUserId)
|
||||||
{
|
{
|
||||||
|
if (! LookupUser::validateField('oauth_user_key', $providerId . '-' . $oauthUserId)) {
|
||||||
|
return trans('texts.oauth_taken');
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO remove once multi-db is enabled
|
||||||
|
if (User::whereOauthUserId($oauthUserId)->count() > 0) {
|
||||||
|
return trans('texts.oauth_taken');
|
||||||
|
}
|
||||||
|
|
||||||
if (! $user->registered) {
|
if (! $user->registered) {
|
||||||
$rules = ['email' => 'email|required|unique:users,email,'.$user->id.',id'];
|
$rules = ['email' => 'email|required|unique:users,email,'.$user->id.',id'];
|
||||||
$validator = Validator::make(['email' => $email], $rules);
|
$validator = Validator::make(['email' => $email], $rules);
|
||||||
@ -445,7 +449,7 @@ class AccountRepository
|
|||||||
return $messages->first('email');
|
return $messages->first('email');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! \App\Models\LookupUser::validateEmail($email, $user)) {
|
if (! LookupUser::validateField('email', $email, $user)) {
|
||||||
return trans('texts.email_taken');
|
return trans('texts.email_taken');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -655,18 +659,6 @@ class AccountRepository
|
|||||||
return Account::whereRaw('enable_reminder1 = 1 OR enable_reminder2 = 1 OR enable_reminder3 = 1')->get();
|
return Account::whereRaw('enable_reminder1 = 1 OR enable_reminder2 = 1 OR enable_reminder3 = 1')->get();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getReferralCode()
|
|
||||||
{
|
|
||||||
do {
|
|
||||||
$code = strtoupper(str_random(8));
|
|
||||||
$match = User::whereReferralCode($code)
|
|
||||||
->withTrashed()
|
|
||||||
->first();
|
|
||||||
} while ($match);
|
|
||||||
|
|
||||||
return $code;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function createTokens($user, $name)
|
public function createTokens($user, $name)
|
||||||
{
|
{
|
||||||
$name = trim($name) ?: 'TOKEN';
|
$name = trim($name) ?: 'TOKEN';
|
||||||
|
@ -2,32 +2,45 @@
|
|||||||
|
|
||||||
namespace App\Ninja\Repositories;
|
namespace App\Ninja\Repositories;
|
||||||
|
|
||||||
use App\Models\Account;
|
use App\Models\Company;
|
||||||
|
use App\Models\DbServer;
|
||||||
|
|
||||||
class ReferralRepository
|
class ReferralRepository
|
||||||
{
|
{
|
||||||
public function getCounts($userId)
|
public function getCounts($referralCode)
|
||||||
{
|
{
|
||||||
$accounts = Account::where('referral_user_id', $userId)->get();
|
|
||||||
|
|
||||||
$counts = [
|
$counts = [
|
||||||
'free' => 0,
|
'free' => 0,
|
||||||
'pro' => 0,
|
'pro' => 0,
|
||||||
'enterprise' => 0,
|
'enterprise' => 0,
|
||||||
];
|
];
|
||||||
|
|
||||||
foreach ($accounts as $account) {
|
if (! $referralCode) {
|
||||||
$counts['free']++;
|
return $counts;
|
||||||
$plan = $account->getPlanDetails(false, false);
|
}
|
||||||
|
|
||||||
if ($plan) {
|
$current = config('database.default');
|
||||||
$counts['pro']++;
|
$databases = env('MULTI_DB_ENABLED') ? DbServer::all()->pluck('name')->toArray() : [$current];
|
||||||
if ($plan['plan'] == PLAN_ENTERPRISE) {
|
|
||||||
$counts['enterprise']++;
|
foreach ($databases as $database) {
|
||||||
|
config(['database.default' => $database]);
|
||||||
|
$accounts = Company::whereReferralCode($referralCode)->get();
|
||||||
|
|
||||||
|
foreach ($accounts as $account) {
|
||||||
|
$counts['free']++;
|
||||||
|
$plan = $account->getPlanDetails(false, false);
|
||||||
|
|
||||||
|
if ($plan) {
|
||||||
|
$counts['pro']++;
|
||||||
|
if ($plan['plan'] == PLAN_ENTERPRISE) {
|
||||||
|
$counts['enterprise']++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
config(['database.default' => $current]);
|
||||||
|
|
||||||
return $counts;
|
return $counts;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -82,9 +82,9 @@ class AuthService
|
|||||||
Session::flash('error', $result);
|
Session::flash('error', $result);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
LookupUser::setServerByField('email', $email);
|
LookupUser::setServerByField('oauth_user_key', $providerId . '-' . $oauthUserId);
|
||||||
|
|
||||||
if ($user = $this->accountRepo->findUserByOauth($providerId, $socialiteUser->id)) {
|
if ($user = $this->accountRepo->findUserByOauth($providerId, $oauthUserId)) {
|
||||||
Auth::login($user, true);
|
Auth::login($user, true);
|
||||||
event(new UserLoggedIn());
|
event(new UserLoggedIn());
|
||||||
} else {
|
} else {
|
||||||
|
@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
|
||||||
|
class AddOauthToLookups extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('lookup_users', function ($table) {
|
||||||
|
$table->string('oauth_user_key')->nullable()->unique();
|
||||||
|
$table->string('referral_code')->nullable()->unique();
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::table('companies', function ($table) {
|
||||||
|
$table->string('referral_code')->nullable();
|
||||||
|
});
|
||||||
|
|
||||||
|
DB::statement('update companies
|
||||||
|
left join accounts on accounts.company_id = companies.id
|
||||||
|
left join users on users.id = accounts.referral_user_id
|
||||||
|
set companies.referral_code = users.referral_code
|
||||||
|
where users.id is not null');
|
||||||
|
|
||||||
|
Schema::table('accounts', function ($table) {
|
||||||
|
if (Schema::hasColumn('accounts', 'referral_user_id')) {
|
||||||
|
$table->dropColumn('referral_user_id');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('lookup_users', function ($table) {
|
||||||
|
$table->dropColumn('oauth_user_key');
|
||||||
|
$table->dropColumn('referral_code');
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::table('companies', function ($table) {
|
||||||
|
$table->dropColumn('referral_code');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -11,13 +11,15 @@ class CountriesSeeder extends Seeder
|
|||||||
*/
|
*/
|
||||||
public function run()
|
public function run()
|
||||||
{
|
{
|
||||||
//Empty the countries table
|
Eloquent::unguard();
|
||||||
DB::table('countries')->delete();
|
|
||||||
|
|
||||||
if (DB::table('countries')->count() == 0) {
|
$countries = Countries::getList();
|
||||||
//Get all of the countries
|
foreach ($countries as $countryId => $country) {
|
||||||
$countries = Countries::getList();
|
if ($record = Country::whereCountryCode($country['country-code'])->first()) {
|
||||||
foreach ($countries as $countryId => $country) {
|
$record->name = $country['name'];
|
||||||
|
$record->full_name = ((isset($country['full_name'])) ? $country['full_name'] : null);
|
||||||
|
$record->save();
|
||||||
|
} else {
|
||||||
DB::table('countries')->insert([
|
DB::table('countries')->insert([
|
||||||
'id' => $countryId,
|
'id' => $countryId,
|
||||||
'capital' => ((isset($country['capital'])) ? $country['capital'] : null),
|
'capital' => ((isset($country['capital'])) ? $country['capital'] : null),
|
||||||
@ -36,7 +38,7 @@ class CountriesSeeder extends Seeder
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Source: http://www.bitboost.com/ref/international-address-formats.html
|
// Source: http://www.bitboost.com/ref/international-address-formats.html
|
||||||
// Source: https://en.wikipedia.org/wiki/Linguistic_issues_concerning_the_euro
|
// Source: https://en.wikipedia.org/wiki/Linguistic_issues_concerning_the_euro
|
||||||
$countries = [
|
$countries = [
|
||||||
|
@ -74,6 +74,7 @@ class CurrenciesSeeder extends Seeder
|
|||||||
['name' => 'Chilean Peso', 'code' => 'CLP', 'symbol' => '$', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ','],
|
['name' => 'Chilean Peso', 'code' => 'CLP', 'symbol' => '$', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ','],
|
||||||
['name' => 'Icelandic Króna', 'code' => 'ISK', 'symbol' => 'kr', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ',', 'swap_currency_symbol' => true],
|
['name' => 'Icelandic Króna', 'code' => 'ISK', 'symbol' => 'kr', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ',', 'swap_currency_symbol' => true],
|
||||||
['name' => 'Papua New Guinean Kina', 'code' => 'PGK', 'symbol' => 'K', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
['name' => 'Papua New Guinean Kina', 'code' => 'PGK', 'symbol' => 'K', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||||
|
['name' => 'Jordanian Dinar', 'code' => 'JOD', 'symbol' => '', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||||
];
|
];
|
||||||
|
|
||||||
foreach ($currencies as $currency) {
|
foreach ($currencies as $currency) {
|
||||||
|
@ -11,6 +11,7 @@ class UpdateSeeder extends Seeder
|
|||||||
{
|
{
|
||||||
$this->command->info('Running UpdateSeeder...');
|
$this->command->info('Running UpdateSeeder...');
|
||||||
|
|
||||||
|
$this->call('CountriesSeeder');
|
||||||
$this->call('PaymentLibrariesSeeder');
|
$this->call('PaymentLibrariesSeeder');
|
||||||
$this->call('FontsSeeder');
|
$this->call('FontsSeeder');
|
||||||
$this->call('GatewayTypesSeeder');
|
$this->call('GatewayTypesSeeder');
|
||||||
|
File diff suppressed because one or more lines are too long
@ -59,7 +59,7 @@ author = u'Invoice Ninja'
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = u'3.3'
|
version = u'3.3'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = u'3.3.1'
|
release = u'3.3.3'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -29,7 +29,7 @@ Step 1: Download the code
|
|||||||
|
|
||||||
You can either download the zip file below or checkout the code from our GitHub repository. The zip includes all third party libraries whereas using GitHub requires you to use Composer to install the dependencies.
|
You can either download the zip file below or checkout the code from our GitHub repository. The zip includes all third party libraries whereas using GitHub requires you to use Composer to install the dependencies.
|
||||||
|
|
||||||
https://download.invoiceninja.com/ninja-v3.3.0.zip
|
https://download.invoiceninja.com/ninja-v3.3.1.zip
|
||||||
|
|
||||||
.. Note:: All Pro and Enterprise features from our hosted app are included in both the zip file and the GitHub repository. We offer a $20 per year white-label license to remove our branding.
|
.. Note:: All Pro and Enterprise features from our hosted app are included in both the zip file and the GitHub repository. We offer a $20 per year white-label license to remove our branding.
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/css/built.css
vendored
2
public/css/built.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
5
resources/assets/css/style.css
vendored
5
resources/assets/css/style.css
vendored
@ -494,9 +494,12 @@ background-clip: padding-box;
|
|||||||
|
|
||||||
.in-bold {
|
.in-bold {
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
font-weight: bold;;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.in-large {
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
.in-thin {
|
.in-thin {
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
|
@ -595,8 +595,8 @@ NINJA.invoiceDocuments = function(invoice) {
|
|||||||
NINJA.statementSubtotals = function(invoice)
|
NINJA.statementSubtotals = function(invoice)
|
||||||
{
|
{
|
||||||
var data = [[
|
var data = [[
|
||||||
{ text: invoiceLabels.balance_due, style: ['subtotalsLabel', 'balanceDueLabel'] },
|
{ text: invoiceLabels.balance_due, style: ['subtotalsLabel', 'subtotalsBalanceDueLabel'] },
|
||||||
{ text: formatMoneyInvoice(invoice.balance_amount, invoice), style: ['subtotals', 'balanceDue'] }
|
{ text: formatMoneyInvoice(invoice.balance_amount, invoice), style: ['subtotals', 'subtotalsBalanceDue'] }
|
||||||
]];
|
]];
|
||||||
|
|
||||||
return NINJA.prepareDataPairs(data, 'subtotals');
|
return NINJA.prepareDataPairs(data, 'subtotals');
|
||||||
@ -662,16 +662,16 @@ NINJA.subtotals = function(invoice, hideBalance)
|
|||||||
|
|
||||||
if (!hideBalance || isPartial) {
|
if (!hideBalance || isPartial) {
|
||||||
data.push([
|
data.push([
|
||||||
{ text: invoice.is_quote || invoice.balance_amount < 0 ? invoiceLabels.total : invoiceLabels.balance_due, style: ['subtotalsLabel', isPartial ? '' : 'balanceDueLabel'] },
|
{ text: invoice.is_quote || invoice.balance_amount < 0 ? invoiceLabels.total : invoiceLabels.balance_due, style: ['subtotalsLabel', isPartial ? '' : 'subtotalsBalanceDueLabel'] },
|
||||||
{ text: formatMoneyInvoice(invoice.total_amount, invoice), style: ['subtotals', isPartial ? '' : 'balanceDue'] }
|
{ text: formatMoneyInvoice(invoice.total_amount, invoice), style: ['subtotals', isPartial ? '' : 'subtotalsBalanceDue'] }
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hideBalance) {
|
if (!hideBalance) {
|
||||||
if (isPartial) {
|
if (isPartial) {
|
||||||
data.push([
|
data.push([
|
||||||
{ text: invoiceLabels.partial_due, style: ['subtotalsLabel', 'balanceDueLabel'] },
|
{ text: invoiceLabels.partial_due, style: ['subtotalsLabel', 'subtotalsBalanceDueLabel'] },
|
||||||
{ text: formatMoneyInvoice(invoice.balance_amount, invoice), style: ['subtotals', 'balanceDue'] }
|
{ text: formatMoneyInvoice(invoice.balance_amount, invoice), style: ['subtotals', 'subtotalsBalanceDue'] }
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -682,8 +682,8 @@ NINJA.subtotals = function(invoice, hideBalance)
|
|||||||
NINJA.subtotalsBalance = function(invoice) {
|
NINJA.subtotalsBalance = function(invoice) {
|
||||||
var isPartial = NINJA.parseFloat(invoice.partial);
|
var isPartial = NINJA.parseFloat(invoice.partial);
|
||||||
return [[
|
return [[
|
||||||
{text: isPartial ? invoiceLabels.partial_due : (invoice.is_quote || invoice.balance_amount < 0 ? invoiceLabels.total : invoiceLabels.balance_due), style:['subtotalsLabel', 'balanceDueLabel']},
|
{text: isPartial ? invoiceLabels.partial_due : (invoice.is_quote || invoice.balance_amount < 0 ? invoiceLabels.total : invoiceLabels.balance_due), style:['subtotalsLabel', 'subtotalsBalanceDueLabel']},
|
||||||
{text: formatMoneyInvoice(invoice.balance_amount, invoice), style:['subtotals', 'balanceDue']}
|
{text: formatMoneyInvoice(invoice.balance_amount, invoice), style:['subtotals', 'subtotalsBalanceDue']}
|
||||||
]];
|
]];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2493,7 +2242,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1692,7 +1692,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1776,257 +1776,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2495,7 +2244,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2493,7 +2242,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'country_Wallis and Futuna' => 'Wallis und Futuna',
|
'country_Wallis and Futuna' => 'Wallis und Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Jemen',
|
'country_Yemen' => 'Jemen',
|
||||||
'country_Zambi' => 'Sambia',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brasilianisches Portugiesisch',
|
'lang_Brazilian Portuguese' => 'Brasilianisches Portugiesisch',
|
||||||
@ -1774,257 +1774,6 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'industry_Other' => 'Andere',
|
'industry_Other' => 'Andere',
|
||||||
'industry_Photography' =>'Fotografie',
|
'industry_Photography' =>'Fotografie',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albanien',
|
|
||||||
'country_Antarctica' => 'Antarktis',
|
|
||||||
'country_Algeria' => 'Algerien',
|
|
||||||
'country_American Samoa' => 'Amerikanisch-Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua und Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Aserbaidschan',
|
|
||||||
'country_Argentina' => 'Argentinien',
|
|
||||||
'country_Australia' => 'Australien',
|
|
||||||
'country_Austria' => 'Österreich',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesch',
|
|
||||||
'country_Armenia' => 'Armenien',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgien',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivien',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnien und Herzigowina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brasilien',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'Britisches Territorium im Indischen Ozean',
|
|
||||||
'country_Solomon Islands' => 'Salomonen',
|
|
||||||
'country_Virgin Islands, British' => 'Britische Jungferninseln',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei',
|
|
||||||
'country_Bulgaria' => 'Bulgarien',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Weissrussland',
|
|
||||||
'country_Cambodia' => 'Kambodscha',
|
|
||||||
'country_Cameroon' => 'Kamerun',
|
|
||||||
'country_Canada' => 'Kanada',
|
|
||||||
'country_Cape Verde' => 'Kap Verde',
|
|
||||||
'country_Cayman Islands' => 'Kaimaninseln',
|
|
||||||
'country_Central African Republic' => 'Zentralafrikanische Republik',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Tschad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan',
|
|
||||||
'country_Christmas Island' => 'Weihnachtsinsel',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Kokosinseln',
|
|
||||||
'country_Colombia' => 'Kulumbien',
|
|
||||||
'country_Comoros' => 'Komoren',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Kongo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Kongo, Demokratische Republik',
|
|
||||||
'country_Cook Islands' => 'Cook Inseln',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Kroatien',
|
|
||||||
'country_Cuba' => 'Kuba',
|
|
||||||
'country_Cyprus' => 'Zypern',
|
|
||||||
'country_Czech Republic' => 'Tschechische Republik',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Dänemark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominikanische Republik',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Äquatorialguinea',
|
|
||||||
'country_Ethiopia' => 'Äthiopien',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estland',
|
|
||||||
'country_Faroe Islands' => 'Färöer-Inseln',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falklandinseln',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'Südgeorgien und die Südlichen Sandwichinseln',
|
|
||||||
'country_Fiji' => 'Fidschi',
|
|
||||||
'country_Finland' => 'Finnland',
|
|
||||||
'country_Åland Islands' => 'Åland',
|
|
||||||
'country_France' => 'Frankreich',
|
|
||||||
'country_French Guiana' => 'Französisch-Guayana',
|
|
||||||
'country_French Polynesia' => 'Französisch-Polynesien',
|
|
||||||
'country_French Southern Territories' => 'Französische Süd- und Antarktisgebiete',
|
|
||||||
'country_Djibouti' => 'Dschibuti',
|
|
||||||
'country_Gabon' => 'Gabun',
|
|
||||||
'country_Georgia' => 'Georgien',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palästinensische Autonomiegebiete',
|
|
||||||
'country_Germany' => 'Deutschland',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Griechenland',
|
|
||||||
'country_Greenland' => 'Grönland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard und McDonaldinseln',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Vatikanstadt',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hongkong',
|
|
||||||
'country_Hungary' => 'Ungarn',
|
|
||||||
'country_Iceland' => 'Island',
|
|
||||||
'country_India' => 'Indien',
|
|
||||||
'country_Indonesia' => 'Indonesien',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran',
|
|
||||||
'country_Iraq' => 'Irak',
|
|
||||||
'country_Ireland' => 'Irland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italien',
|
|
||||||
'country_Côte d\'Ivoire' => 'Elfenbeinküste',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kasachstan',
|
|
||||||
'country_Jordan' => 'Jordanien',
|
|
||||||
'country_Kenya' => 'Kenia',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kirgisistan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Libanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Lettland',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Lybien',
|
|
||||||
'country_Liechtenstein' => 'Lichtenstein',
|
|
||||||
'country_Lithuania' => 'Litauen',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Malediven',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauretanien',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexiko',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolei',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Marokko',
|
|
||||||
'country_Mozambique' => 'Mosambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Niederlande',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'Neuseeland',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolkinsel',
|
|
||||||
'country_Norway' => 'Norwegen',
|
|
||||||
'country_Northern Mariana Islands' => 'Nördliche Marianen',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshallinseln',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua-Neuguinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippienen',
|
|
||||||
'country_Pitcairn' => 'Pitcairninseln',
|
|
||||||
'country_Poland' => 'Polen',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Osttimor',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Katar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Rumänien',
|
|
||||||
'country_Russian Federation' => 'Russland',
|
|
||||||
'country_Rwanda' => 'Ruanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'St. Kitts und Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi-Arabien',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbien',
|
|
||||||
'country_Seychelles' => 'Seychellen',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapur',
|
|
||||||
'country_Slovakia' => 'Slowakei',
|
|
||||||
'country_Viet Nam' => 'Vietnam',
|
|
||||||
'country_Slovenia' => 'Slovenien',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'Südafrika',
|
|
||||||
'country_Zimbabwe' => 'Simbabwe',
|
|
||||||
'country_Spain' => 'Spanien',
|
|
||||||
'country_South Sudan' => 'Südsudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Schweden',
|
|
||||||
'country_Switzerland' => 'Schweiz',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tadschikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad und Tobago',
|
|
||||||
'country_United Arab Emirates' => 'Vereinigte Arabische Emirate',
|
|
||||||
'country_Tunisia' => 'Tunesien',
|
|
||||||
'country_Turkey' => 'Türkei',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks- und Caicosinseln',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Mazedonien',
|
|
||||||
'country_Egypt' => 'Ägypten',
|
|
||||||
'country_United Kingdom' => 'Vereinigtes Königreich',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'Vereinigte Staaten von Amerika',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Jungferninseln',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Usbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis und Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Jemen',
|
|
||||||
'country_Zambi' => 'Sambia',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Kundenportal anzeigen',
|
'view_client_portal' => 'Kundenportal anzeigen',
|
||||||
'view_portal' => 'Portal anzeigen',
|
'view_portal' => 'Portal anzeigen',
|
||||||
'vendor_contacts' => 'Lieferantenkontakte',
|
'vendor_contacts' => 'Lieferantenkontakte',
|
||||||
@ -2493,7 +2242,8 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ email που είναι συνδεδεμένη με το λογαριασμό σ
|
|||||||
'country_Wallis and Futuna' => 'Ουάλις',
|
'country_Wallis and Futuna' => 'Ουάλις',
|
||||||
'country_Samoa' => 'Σαμόα',
|
'country_Samoa' => 'Σαμόα',
|
||||||
'country_Yemen' => 'Υεμένη',
|
'country_Yemen' => 'Υεμένη',
|
||||||
'country_Zambi' => 'Ζάμπια',
|
'country_Zambia' => 'Ζάμπια',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Πορτογαλικά Βραζιλίας',
|
'lang_Brazilian Portuguese' => 'Πορτογαλικά Βραζιλίας',
|
||||||
@ -1774,257 +1774,6 @@ email που είναι συνδεδεμένη με το λογαριασμό σ
|
|||||||
'industry_Other' => 'Άλλο',
|
'industry_Other' => 'Άλλο',
|
||||||
'industry_Photography' =>'Φωτογραφία',
|
'industry_Photography' =>'Φωτογραφία',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Αφγανιστάν',
|
|
||||||
'country_Albania' => 'Αλβανία',
|
|
||||||
'country_Antarctica' => 'Ανταρκτική',
|
|
||||||
'country_Algeria' => 'Αλγερία',
|
|
||||||
'country_American Samoa' => 'Αμερικανική Σαμόα',
|
|
||||||
'country_Andorra' => 'Ανδόρα',
|
|
||||||
'country_Angola' => 'Αγκόλα',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Αζερμπαϊτζάν',
|
|
||||||
'country_Argentina' => 'Αργεντινή',
|
|
||||||
'country_Australia' => 'Αυστραλία',
|
|
||||||
'country_Austria' => 'Αυστρία',
|
|
||||||
'country_Bahamas' => 'Μπαχάμες',
|
|
||||||
'country_Bahrain' => 'Μπαχρέιν',
|
|
||||||
'country_Bangladesh' => 'Μπαγκλαντές',
|
|
||||||
'country_Armenia' => 'Αρμενία',
|
|
||||||
'country_Barbados' => 'Μπαρμπάντος ',
|
|
||||||
'country_Belgium' => 'Βέλγιο',
|
|
||||||
'country_Bermuda' => 'Βερμούδες',
|
|
||||||
'country_Bhutan' => 'Μπρουτάν',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Βολιβία',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Βοσνία - Ερζεγοβίνη',
|
|
||||||
'country_Botswana' => 'Μποτσουάνα',
|
|
||||||
'country_Bouvet Island' => 'Νησί Μπουβέτ',
|
|
||||||
'country_Brazil' => 'Βραζιλία',
|
|
||||||
'country_Belize' => 'Μπελίζ',
|
|
||||||
'country_British Indian Ocean Territory' => 'Βρετανική Ινδία',
|
|
||||||
'country_Solomon Islands' => 'Νησιά του Σολομώντα',
|
|
||||||
'country_Virgin Islands, British' => 'Βρετανικοί Παρθένοι Νήσοι',
|
|
||||||
'country_Brunei Darussalam' => 'Μπρουνέι',
|
|
||||||
'country_Bulgaria' => 'Βουλγαρία',
|
|
||||||
'country_Myanmar' => 'Νιαμάρ',
|
|
||||||
'country_Burundi' => 'Μπουρουντί',
|
|
||||||
'country_Belarus' => 'Λευκορωσία',
|
|
||||||
'country_Cambodia' => 'Καμπότζη',
|
|
||||||
'country_Cameroon' => 'Καμερούν',
|
|
||||||
'country_Canada' => 'Καναδάς',
|
|
||||||
'country_Cape Verde' => 'Πράσινο Ακρωτήρι',
|
|
||||||
'country_Cayman Islands' => 'Νησιά Cayman',
|
|
||||||
'country_Central African Republic' => 'Κεντρική Αφρικανική Δημοκρατία',
|
|
||||||
'country_Sri Lanka' => 'Σρι Λάνκα',
|
|
||||||
'country_Chad' => 'Τσαντ',
|
|
||||||
'country_Chile' => 'Χιλή',
|
|
||||||
'country_China' => 'Κίνα',
|
|
||||||
'country_Taiwan, Province of China' => 'Ταϊβάν',
|
|
||||||
'country_Christmas Island' => 'Νησί Χριστουγέννων',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Νησιά Cocos (Keeling)',
|
|
||||||
'country_Colombia' => 'Κολομβία',
|
|
||||||
'country_Comoros' => 'Κομόρος',
|
|
||||||
'country_Mayotte' => 'Μαγιότ',
|
|
||||||
'country_Congo' => 'Κονγκό',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Δημοκρατία του Κονγκό',
|
|
||||||
'country_Cook Islands' => 'Νησία Cook',
|
|
||||||
'country_Costa Rica' => 'Κόστα Ρίκα',
|
|
||||||
'country_Croatia' => 'Κροατία',
|
|
||||||
'country_Cuba' => 'Κούβα',
|
|
||||||
'country_Cyprus' => 'Κύπρος',
|
|
||||||
'country_Czech Republic' => 'Τσεχία',
|
|
||||||
'country_Benin' => 'Μπενίν',
|
|
||||||
'country_Denmark' => 'Δανία',
|
|
||||||
'country_Dominica' => 'Δομίνικος',
|
|
||||||
'country_Dominican Republic' => 'Δομινικανή Δημοκρατία',
|
|
||||||
'country_Ecuador' => 'Εκουαδόρ',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Γουινέα',
|
|
||||||
'country_Ethiopia' => 'Αιθιοπία',
|
|
||||||
'country_Eritrea' => 'Εριθρεά',
|
|
||||||
'country_Estonia' => 'Εστονία',
|
|
||||||
'country_Faroe Islands' => 'Νησία Faroe',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Νησιά Φόκλαντ',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'Βόρεια Γεωργία',
|
|
||||||
'country_Fiji' => 'Φίτζι',
|
|
||||||
'country_Finland' => 'Φιλανδία',
|
|
||||||
'country_Åland Islands' => 'Νησιά Αλάντ',
|
|
||||||
'country_France' => 'Γαλλία',
|
|
||||||
'country_French Guiana' => 'Γαλλική Γουιάνα',
|
|
||||||
'country_French Polynesia' => 'Γαλλική Πολυνησία',
|
|
||||||
'country_French Southern Territories' => 'Γαλλικές Βόρειες περιοχές',
|
|
||||||
'country_Djibouti' => 'Τζιμπουτί',
|
|
||||||
'country_Gabon' => 'Γκαμπόν',
|
|
||||||
'country_Georgia' => 'Γεωργία',
|
|
||||||
'country_Gambia' => 'Γκάμπια',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Παλαιστίνη',
|
|
||||||
'country_Germany' => 'Γερμανία',
|
|
||||||
'country_Ghana' => 'Γκάνα',
|
|
||||||
'country_Gibraltar' => 'Γιβλαρτάρ',
|
|
||||||
'country_Kiribati' => 'Κιριμπάτι',
|
|
||||||
'country_Greece' => 'Ελλάδα',
|
|
||||||
'country_Greenland' => 'Γροιλανδία',
|
|
||||||
'country_Grenada' => 'Γκρενάδα',
|
|
||||||
'country_Guadeloupe' => 'Γουαδελούπη',
|
|
||||||
'country_Guam' => 'Γκουάμ',
|
|
||||||
'country_Guatemala' => 'Γουατεμάλα',
|
|
||||||
'country_Guinea' => 'Γουινέα',
|
|
||||||
'country_Guyana' => 'Γουιάνα',
|
|
||||||
'country_Haiti' => 'Αϊτή',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Νησιά McDonalds',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Βατικάνό',
|
|
||||||
'country_Honduras' => 'Ονδούρα',
|
|
||||||
'country_Hong Kong' => 'Χονκ Κονκ',
|
|
||||||
'country_Hungary' => 'Ουγκαρία',
|
|
||||||
'country_Iceland' => 'Ισλανδία',
|
|
||||||
'country_India' => 'Ινδία',
|
|
||||||
'country_Indonesia' => 'Ινδονησία',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Ιράν',
|
|
||||||
'country_Iraq' => 'Ιράκ',
|
|
||||||
'country_Ireland' => 'Ιρλανδία',
|
|
||||||
'country_Israel' => 'Ισραήλ',
|
|
||||||
'country_Italy' => 'Ιταλία',
|
|
||||||
'country_Côte d\'Ivoire' => 'Ακτή Ελεφαντοστού',
|
|
||||||
'country_Jamaica' => 'Τζαμάικα',
|
|
||||||
'country_Japan' => 'Ιαπωνία',
|
|
||||||
'country_Kazakhstan' => 'Καζακστάν',
|
|
||||||
'country_Jordan' => 'Ιορδανία',
|
|
||||||
'country_Kenya' => 'Κένυα',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Βόρεια Κορέα',
|
|
||||||
'country_Korea, Republic of' => 'Νότια Κορέα',
|
|
||||||
'country_Kuwait' => 'Κουβέιτ',
|
|
||||||
'country_Kyrgyzstan' => 'Κιργιστάν',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Λάος',
|
|
||||||
'country_Lebanon' => 'Λίβανος',
|
|
||||||
'country_Lesotho' => 'Λεσόθο',
|
|
||||||
'country_Latvia' => 'Λετονία',
|
|
||||||
'country_Liberia' => 'Λιβερία',
|
|
||||||
'country_Libya' => 'Λιβύη',
|
|
||||||
'country_Liechtenstein' => 'Λιχνεστάιν',
|
|
||||||
'country_Lithuania' => 'Λιθουανία',
|
|
||||||
'country_Luxembourg' => 'Λουξεμβούργο',
|
|
||||||
'country_Macao' => 'Μακάο',
|
|
||||||
'country_Madagascar' => 'Μαδαγασκάρη',
|
|
||||||
'country_Malawi' => 'Μαλάουι',
|
|
||||||
'country_Malaysia' => 'Μαλαισία',
|
|
||||||
'country_Maldives' => 'Μαλδίβες',
|
|
||||||
'country_Mali' => 'Μάλι',
|
|
||||||
'country_Malta' => 'Μάλτα',
|
|
||||||
'country_Martinique' => 'Μαρτινίκα',
|
|
||||||
'country_Mauritania' => 'Μαβριτανία',
|
|
||||||
'country_Mauritius' => 'Μαυρίκιος',
|
|
||||||
'country_Mexico' => 'Μεξικό',
|
|
||||||
'country_Monaco' => 'Μονακό',
|
|
||||||
'country_Mongolia' => 'Μογκολία',
|
|
||||||
'country_Moldova, Republic of' => 'Μολδαβία',
|
|
||||||
'country_Montenegro' => 'Μαυροβούνιο',
|
|
||||||
'country_Montserrat' => 'Μονσεράτ',
|
|
||||||
'country_Morocco' => 'Μαρόκο',
|
|
||||||
'country_Mozambique' => 'Μοζαμβίκη',
|
|
||||||
'country_Oman' => 'Ομάν',
|
|
||||||
'country_Namibia' => 'Ναμίμπια',
|
|
||||||
'country_Nauru' => 'Ναουρού',
|
|
||||||
'country_Nepal' => 'Νεπάλ',
|
|
||||||
'country_Netherlands' => 'Ολλανδία',
|
|
||||||
'country_Curaçao' => 'Κουρακάο',
|
|
||||||
'country_Aruba' => 'Αρούμπα',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Άριος Μαρτίνος (Ολλανδία)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Άγιος Ευστάθιος',
|
|
||||||
'country_New Caledonia' => 'Νέα Καλιδονία',
|
|
||||||
'country_Vanuatu' => 'Βατουάτου',
|
|
||||||
'country_New Zealand' => 'Νέα Ζηλανδία',
|
|
||||||
'country_Nicaragua' => 'Νικαράγουα',
|
|
||||||
'country_Niger' => 'Νίγρας',
|
|
||||||
'country_Nigeria' => 'Νιγηρία',
|
|
||||||
'country_Niue' => 'Νίου',
|
|
||||||
'country_Norfolk Island' => 'Νησία Norfolk',
|
|
||||||
'country_Norway' => 'Νορβηγία',
|
|
||||||
'country_Northern Mariana Islands' => 'Νησιά Βόρειας Μαριάννας',
|
|
||||||
'country_United States Minor Outlying Islands' => 'Νησιά Ηνωμένων Πολιτειών',
|
|
||||||
'country_Micronesia, Federated States of' => 'Μικρονησία',
|
|
||||||
'country_Marshall Islands' => 'Νησιά Marshall',
|
|
||||||
'country_Palau' => 'Παλάου',
|
|
||||||
'country_Pakistan' => 'Πακιστάν',
|
|
||||||
'country_Panama' => 'Παναμάς',
|
|
||||||
'country_Papua New Guinea' => 'Παπούα',
|
|
||||||
'country_Paraguay' => 'Παραγουάη',
|
|
||||||
'country_Peru' => 'Περού',
|
|
||||||
'country_Philippines' => 'Φιλιπίνες',
|
|
||||||
'country_Pitcairn' => 'Πιτκέρν',
|
|
||||||
'country_Poland' => 'Πολωνία',
|
|
||||||
'country_Portugal' => 'Πορτογαλία',
|
|
||||||
'country_Guinea-Bissau' => 'Μπισάου',
|
|
||||||
'country_Timor-Leste' => 'Τιμόρ',
|
|
||||||
'country_Puerto Rico' => 'Πόρτο Ρίκο',
|
|
||||||
'country_Qatar' => 'Κατάρ',
|
|
||||||
'country_Réunion' => 'Ρεγιούνιον',
|
|
||||||
'country_Romania' => 'Ρουμανία',
|
|
||||||
'country_Russian Federation' => 'Ρωσία',
|
|
||||||
'country_Rwanda' => 'Ρουάντα',
|
|
||||||
'country_Saint Barthélemy' => 'Άγιος Βαρθολομαίος',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Τριστάν',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Νέβις',
|
|
||||||
'country_Anguilla' => 'Ανγκουίλα',
|
|
||||||
'country_Saint Lucia' => 'Αγία Λουκία',
|
|
||||||
'country_Saint Martin (French part)' => 'Άγιος Μαρτίνος (Γαλλία)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Άγιος Πέτρος',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Γρεναδίνη',
|
|
||||||
'country_San Marino' => 'Σαν Μαρίνο',
|
|
||||||
'country_Sao Tome and Principe' => 'Άγιος Θωμάς',
|
|
||||||
'country_Saudi Arabia' => 'Σαουδική Αραβία',
|
|
||||||
'country_Senegal' => 'Σενεγάλη',
|
|
||||||
'country_Serbia' => 'Σερβία',
|
|
||||||
'country_Seychelles' => 'Σευχέλες',
|
|
||||||
'country_Sierra Leone' => 'Σιέρρα Λεόνε',
|
|
||||||
'country_Singapore' => 'Σινγκαπούρη',
|
|
||||||
'country_Slovakia' => 'Σλοβακία',
|
|
||||||
'country_Viet Nam' => 'Βιετνάμ',
|
|
||||||
'country_Slovenia' => 'Σλοβενία',
|
|
||||||
'country_Somalia' => 'Σομαλία',
|
|
||||||
'country_South Africa' => 'Νότια Αφρική',
|
|
||||||
'country_Zimbabwe' => 'Σιμπάμπουε',
|
|
||||||
'country_Spain' => 'Ισπανία',
|
|
||||||
'country_South Sudan' => 'Νότιο Σουδάν',
|
|
||||||
'country_Sudan' => 'Σουδάν',
|
|
||||||
'country_Western Sahara' => 'Δυτική Σαχάρα',
|
|
||||||
'country_Suriname' => 'Σουρινάμ',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Σβαλμπάντ',
|
|
||||||
'country_Swaziland' => 'Σουαζουάλη',
|
|
||||||
'country_Sweden' => 'Σουηδία',
|
|
||||||
'country_Switzerland' => 'Ελβετία',
|
|
||||||
'country_Syrian Arab Republic' => 'Συρία',
|
|
||||||
'country_Tajikistan' => 'Τατζικιστάν',
|
|
||||||
'country_Thailand' => 'ταιλάνδη',
|
|
||||||
'country_Togo' => 'Τογκό',
|
|
||||||
'country_Tokelau' => 'Τοκελάου',
|
|
||||||
'country_Tonga' => 'Τόνγκα',
|
|
||||||
'country_Trinidad and Tobago' => 'Τρινιντάντ Τομπάκο',
|
|
||||||
'country_United Arab Emirates' => 'Αραβικά Εμιράτα',
|
|
||||||
'country_Tunisia' => 'Τηνυσία',
|
|
||||||
'country_Turkey' => 'Τουρκία',
|
|
||||||
'country_Turkmenistan' => 'Τουρμπεκιστάν',
|
|
||||||
'country_Turks and Caicos Islands' => 'Νησιά Caicos',
|
|
||||||
'country_Tuvalu' => 'Τουβαλού',
|
|
||||||
'country_Uganda' => 'Ουγκάντα',
|
|
||||||
'country_Ukraine' => 'Ουκρανία',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Σκόπια',
|
|
||||||
'country_Egypt' => 'Αίγυπτος',
|
|
||||||
'country_United Kingdom' => 'Αγγλία',
|
|
||||||
'country_Guernsey' => 'Γουερνσέυ',
|
|
||||||
'country_Jersey' => 'Τζέρσεϊ',
|
|
||||||
'country_Isle of Man' => 'Νησί του Πάσχα',
|
|
||||||
'country_Tanzania, United Republic of' => 'Ταζμανία',
|
|
||||||
'country_United States' => 'Ηνωμένες Πολιτείες',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Παρθένοι Νήσοι',
|
|
||||||
'country_Burkina Faso' => 'Μπουργκίνα Φάσο',
|
|
||||||
'country_Uruguay' => 'Ουρουγουάη',
|
|
||||||
'country_Uzbekistan' => 'Ουζμπεκιστάν',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Βενεζουέλα',
|
|
||||||
'country_Wallis and Futuna' => 'Ουάλις',
|
|
||||||
'country_Samoa' => 'Σαμόα',
|
|
||||||
'country_Yemen' => 'Υεμένη',
|
|
||||||
'country_Zambi' => 'Ζάμπια',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Προβολή portal πελάτη',
|
'view_client_portal' => 'Προβολή portal πελάτη',
|
||||||
'view_portal' => 'Προβολή portal',
|
'view_portal' => 'Προβολή portal',
|
||||||
'vendor_contacts' => 'Επαφές Προμηθευτών',
|
'vendor_contacts' => 'Επαφές Προμηθευτών',
|
||||||
@ -2493,7 +2242,8 @@ email που είναι συνδεδεμένη με το λογαριασμό σ
|
|||||||
'add_documents_to_invoice' => 'Προσθέστε έγγραφα στο τιμολόγιο',
|
'add_documents_to_invoice' => 'Προσθέστε έγγραφα στο τιμολόγιο',
|
||||||
'mark_expense_paid' => 'Σήμανση ως εξοφλημένο',
|
'mark_expense_paid' => 'Σήμανση ως εξοφλημένο',
|
||||||
'white_label_license_error' => 'Αδυναμία επικύρωσης της άδειας, ελέγξτε το αρχείο storage/logs/laravel-error.log για περισσότερες λεπτομέρειες.',
|
'white_label_license_error' => 'Αδυναμία επικύρωσης της άδειας, ελέγξτε το αρχείο storage/logs/laravel-error.log για περισσότερες λεπτομέρειες.',
|
||||||
'plan_price' => 'Τιμή Πλάνου'
|
'plan_price' => 'Τιμή Πλάνου',
|
||||||
|
'wrong_confirmation' => 'Λανθασμένος κωδικός επιβεβαίωσης',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2493,7 +2242,9 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
'oauth_taken' => 'The account is already registered',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1683,7 +1683,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1767,257 +1767,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2486,7 +2235,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1686,7 +1686,7 @@ Atención! tu password puede estar transmitida como texto plano, considera habil
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Portugués brasileño',
|
'lang_Brazilian Portuguese' => 'Portugués brasileño',
|
||||||
@ -1770,257 +1770,6 @@ Atención! tu password puede estar transmitida como texto plano, considera habil
|
|||||||
'industry_Other' => 'Otro',
|
'industry_Other' => 'Otro',
|
||||||
'industry_Photography' =>'Fotografía',
|
'industry_Photography' =>'Fotografía',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afganistán',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'Francia',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Alemania',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Grecia',
|
|
||||||
'country_Greenland' => 'Groenlandia',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'Sudáfrica',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'España',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Ver portal de cliente',
|
'view_client_portal' => 'Ver portal de cliente',
|
||||||
'view_portal' => 'Ver portal',
|
'view_portal' => 'Ver portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2489,7 +2238,8 @@ Atención! tu password puede estar transmitida como texto plano, considera habil
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1684,7 +1684,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'country_Wallis and Futuna' => 'Wallis et Futuna',
|
'country_Wallis and Futuna' => 'Wallis et Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yémen',
|
'country_Yemen' => 'Yémen',
|
||||||
'country_Zambi' => 'Zambie',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Portuguais - Brésil',
|
'lang_Brazilian Portuguese' => 'Portuguais - Brésil',
|
||||||
@ -1768,257 +1768,6 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'industry_Other' => 'Autres',
|
'industry_Other' => 'Autres',
|
||||||
'industry_Photography' =>'Photographie',
|
'industry_Photography' =>'Photographie',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albanie',
|
|
||||||
'country_Antarctica' => 'Antartique',
|
|
||||||
'country_Algeria' => 'Algérie',
|
|
||||||
'country_American Samoa' => 'Samoa américaines',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua-et-Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentine',
|
|
||||||
'country_Australia' => 'Australie',
|
|
||||||
'country_Austria' => 'Autriche',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Arménie',
|
|
||||||
'country_Barbados' => 'Barbades',
|
|
||||||
'country_Belgium' => 'Belgique',
|
|
||||||
'country_Bermuda' => 'Bermudes',
|
|
||||||
'country_Bhutan' => 'Bhoutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivie',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnie-Herzégovine',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Île Bouvet',
|
|
||||||
'country_Brazil' => 'Brésil',
|
|
||||||
'country_Belize' => 'Béize',
|
|
||||||
'country_British Indian Ocean Territory' => 'Territoire britannique de l\'océan Indien',
|
|
||||||
'country_Solomon Islands' => 'Iles Salomon',
|
|
||||||
'country_Virgin Islands, British' => 'Îles Vierges britanniques',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei',
|
|
||||||
'country_Bulgaria' => 'Bulgarie',
|
|
||||||
'country_Myanmar' => 'Birmanie',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Biélorussie',
|
|
||||||
'country_Cambodia' => 'Cambodge',
|
|
||||||
'country_Cameroon' => 'Cameroun',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cap-Vert',
|
|
||||||
'country_Cayman Islands' => 'Iles Cayman',
|
|
||||||
'country_Central African Republic' => 'République Centrafricaine',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Tchad',
|
|
||||||
'country_Chile' => 'Chili',
|
|
||||||
'country_China' => 'Chine',
|
|
||||||
'country_Taiwan, Province of China' => 'Taîwan',
|
|
||||||
'country_Christmas Island' => 'Île Christmas',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Îles Cocos (Keeling)',
|
|
||||||
'country_Colombia' => 'Colombie',
|
|
||||||
'country_Comoros' => 'Comores',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'République démocratique du Congo',
|
|
||||||
'country_Cook Islands' => 'Îles Cook',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Coatie',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Chypre',
|
|
||||||
'country_Czech Republic' => 'République tchèque',
|
|
||||||
'country_Benin' => 'Bénin',
|
|
||||||
'country_Denmark' => 'Danemark',
|
|
||||||
'country_Dominica' => 'Dominique',
|
|
||||||
'country_Dominican Republic' => 'République dominicaine',
|
|
||||||
'country_Ecuador' => 'Équateur',
|
|
||||||
'country_El Salvador' => 'Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Guinée équatoriale',
|
|
||||||
'country_Ethiopia' => 'Ethiopie',
|
|
||||||
'country_Eritrea' => 'Érythrée',
|
|
||||||
'country_Estonia' => 'Estonie',
|
|
||||||
'country_Faroe Islands' => 'Îles Féroé',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Îles Malouines',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'Géorgie du Sud-et-les Îles Sandwich du Sud',
|
|
||||||
'country_Fiji' => 'Fidji',
|
|
||||||
'country_Finland' => 'Finlande',
|
|
||||||
'country_Åland Islands' => 'Åland',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'Guyane française',
|
|
||||||
'country_French Polynesia' => 'Polynésie française',
|
|
||||||
'country_French Southern Territories' => 'Terres australes et antarctiques françaises',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Géorgie',
|
|
||||||
'country_Gambia' => 'Gambie',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Territoires palestiniens occupés',
|
|
||||||
'country_Germany' => 'Allemagne',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Grèce',
|
|
||||||
'country_Greenland' => 'Groenland',
|
|
||||||
'country_Grenada' => 'Grenade',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinée',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Îles Heard-et-MacDonald',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Vatican',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hongrie',
|
|
||||||
'country_Iceland' => 'Islande',
|
|
||||||
'country_India' => 'Inde',
|
|
||||||
'country_Indonesia' => 'Indonésie',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran',
|
|
||||||
'country_Iraq' => 'Irak',
|
|
||||||
'country_Ireland' => 'Irlande',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italie',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaique',
|
|
||||||
'country_Japan' => 'Japon',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordanie',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Corée du Nord',
|
|
||||||
'country_Korea, Republic of' => 'Corée du Sud',
|
|
||||||
'country_Kuwait' => 'Koweit',
|
|
||||||
'country_Kyrgyzstan' => 'Kirghizistan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Laos',
|
|
||||||
'country_Lebanon' => 'Liban',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Lettonie',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libye',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuanie',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaisie',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malte',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritanie',
|
|
||||||
'country_Mauritius' => 'Maurice',
|
|
||||||
'country_Mexico' => 'Mexique',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolie',
|
|
||||||
'country_Moldova, Republic of' => 'Moldavie',
|
|
||||||
'country_Montenegro' => 'Monténégro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Maroc',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibie',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Népal',
|
|
||||||
'country_Netherlands' => 'Pays-Bas',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Saint-Martin (partie Pays-Bas)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Pays-Bas caribéens',
|
|
||||||
'country_New Caledonia' => 'Nouvelle-Calédonie',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'Nouvelle-Zélande',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Île Norfolk',
|
|
||||||
'country_Norway' => 'Norvège',
|
|
||||||
'country_Northern Mariana Islands' => 'Îles Mariannes du Nord',
|
|
||||||
'country_United States Minor Outlying Islands' => 'Îles mineures éloignées des États-Unis',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronésie',
|
|
||||||
'country_Marshall Islands' => 'Îles Marshall',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papouasie-Nouvelle-Guinée',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Pérou',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Îles Pitcairn',
|
|
||||||
'country_Poland' => 'Pologne',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinée-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor oriental',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'La Réunion',
|
|
||||||
'country_Romania' => 'Roumanie',
|
|
||||||
'country_Russian Federation' => 'Fédération Russe',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Sainte-Hélène, Ascension et Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint-Kitts-et-Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Sainte-Lucie',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint-Martin (partie française)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre et Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint-Vincent-et-les-Grenadines',
|
|
||||||
'country_San Marino' => 'Saint-Marin',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tomé-et-Principe',
|
|
||||||
'country_Saudi Arabia' => 'Arabie Saoudite',
|
|
||||||
'country_Senegal' => 'Sénégal',
|
|
||||||
'country_Serbia' => 'Serbie',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovaquie',
|
|
||||||
'country_Viet Nam' => 'Viêt Nam',
|
|
||||||
'country_Slovenia' => 'Slovénie',
|
|
||||||
'country_Somalia' => 'Somalie',
|
|
||||||
'country_South Africa' => 'Afrique du Sud',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Espagne',
|
|
||||||
'country_South Sudan' => 'Soudan du Sud',
|
|
||||||
'country_Sudan' => 'Soudan',
|
|
||||||
'country_Western Sahara' => 'Sahara occidental',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard et Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Suède',
|
|
||||||
'country_Switzerland' => 'Suisse',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrie',
|
|
||||||
'country_Tajikistan' => 'Tadjikistan',
|
|
||||||
'country_Thailand' => 'Thaïlande',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinité-et-Tobago',
|
|
||||||
'country_United Arab Emirates' => 'Émirats arabes unis',
|
|
||||||
'country_Tunisia' => 'Tunisie',
|
|
||||||
'country_Turkey' => 'Turquie',
|
|
||||||
'country_Turkmenistan' => 'Turkménistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Îles Turques-et-Caïques',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Ouganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macédoine',
|
|
||||||
'country_Egypt' => 'Egypte',
|
|
||||||
'country_United Kingdom' => 'Royaume-Uni',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Île de Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzanie',
|
|
||||||
'country_United States' => 'États-Unis',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Îles Vierges des États-Unis',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Ouzbékistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Vénézuela',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis et Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yémen',
|
|
||||||
'country_Zambi' => 'Zambie',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Afficher le portail client',
|
'view_client_portal' => 'Afficher le portail client',
|
||||||
'view_portal' => 'Voir le portail',
|
'view_portal' => 'Voir le portail',
|
||||||
'vendor_contacts' => 'Fournisseur',
|
'vendor_contacts' => 'Fournisseur',
|
||||||
@ -2487,7 +2236,8 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'add_documents_to_invoice' => 'Ajouter un document à la facture',
|
'add_documents_to_invoice' => 'Ajouter un document à la facture',
|
||||||
'mark_expense_paid' => 'Marquer payé',
|
'mark_expense_paid' => 'Marquer payé',
|
||||||
'white_label_license_error' => 'Validation de licence échouée, vérifier storage/logs/laravel-error.log pour plus de détails.',
|
'white_label_license_error' => 'Validation de licence échouée, vérifier storage/logs/laravel-error.log pour plus de détails.',
|
||||||
'plan_price' => 'Prix du Plan'
|
'plan_price' => 'Prix du Plan',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1681,7 +1681,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'country_Wallis and Futuna' => 'Wallis et Futuna',
|
'country_Wallis and Futuna' => 'Wallis et Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yémen',
|
'country_Yemen' => 'Yémen',
|
||||||
'country_Zambi' => 'Zambie',
|
'country_Zambia' => 'Zambie',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Portuguais - Brésil',
|
'lang_Brazilian Portuguese' => 'Portuguais - Brésil',
|
||||||
@ -1765,257 +1765,6 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'industry_Other' => 'Autre',
|
'industry_Other' => 'Autre',
|
||||||
'industry_Photography' =>'Photographie',
|
'industry_Photography' =>'Photographie',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albanie',
|
|
||||||
'country_Antarctica' => 'Antartique',
|
|
||||||
'country_Algeria' => 'Algérie',
|
|
||||||
'country_American Samoa' => 'Samoa américaines',
|
|
||||||
'country_Andorra' => 'Andorre',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua-et-Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentine',
|
|
||||||
'country_Australia' => 'Australie',
|
|
||||||
'country_Austria' => 'Autriche',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahreïn',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Arménie',
|
|
||||||
'country_Barbados' => 'Barbade',
|
|
||||||
'country_Belgium' => 'Belgique',
|
|
||||||
'country_Bermuda' => 'Bermudes',
|
|
||||||
'country_Bhutan' => 'Bhoutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivie',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnie Herzégovine',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Île Bouvet',
|
|
||||||
'country_Brazil' => 'Brésil',
|
|
||||||
'country_Belize' => 'Bélize',
|
|
||||||
'country_British Indian Ocean Territory' => 'Territoire britannique de l\'océan Indien',
|
|
||||||
'country_Solomon Islands' => 'Iles Salomon',
|
|
||||||
'country_Virgin Islands, British' => 'Îles Vierges britanniques',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei',
|
|
||||||
'country_Bulgaria' => 'Bulgarie',
|
|
||||||
'country_Myanmar' => 'Birmanie',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Biélorussie',
|
|
||||||
'country_Cambodia' => 'Cambodge',
|
|
||||||
'country_Cameroon' => 'Cameroun',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cap-Vert',
|
|
||||||
'country_Cayman Islands' => 'Iles Cayman',
|
|
||||||
'country_Central African Republic' => 'République Centrafricaine',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Tchad',
|
|
||||||
'country_Chile' => 'Chili',
|
|
||||||
'country_China' => 'Chine',
|
|
||||||
'country_Taiwan, Province of China' => 'Taîwan',
|
|
||||||
'country_Christmas Island' => 'Île Christmas',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Îles Cocos (Keeling)',
|
|
||||||
'country_Colombia' => 'Colombie',
|
|
||||||
'country_Comoros' => 'Comores',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'République démocratique du Congo',
|
|
||||||
'country_Cook Islands' => 'Îles Cook',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatie',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Chypre',
|
|
||||||
'country_Czech Republic' => 'République tchèque',
|
|
||||||
'country_Benin' => 'Bénin',
|
|
||||||
'country_Denmark' => 'Danemark',
|
|
||||||
'country_Dominica' => 'Dominique',
|
|
||||||
'country_Dominican Republic' => 'République dominicaine',
|
|
||||||
'country_Ecuador' => 'Équateur',
|
|
||||||
'country_El Salvador' => 'Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Guinée équatoriale',
|
|
||||||
'country_Ethiopia' => 'Éthiopie',
|
|
||||||
'country_Eritrea' => 'Érythrée',
|
|
||||||
'country_Estonia' => 'Estonie',
|
|
||||||
'country_Faroe Islands' => 'Îles Féroé',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Îles Malouines',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'Géorgie du Sud-et-les Îles Sandwich du Sud',
|
|
||||||
'country_Fiji' => 'Fidji',
|
|
||||||
'country_Finland' => 'Finlande',
|
|
||||||
'country_Åland Islands' => 'Åland',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'Guyane française',
|
|
||||||
'country_French Polynesia' => 'Polynésie française',
|
|
||||||
'country_French Southern Territories' => 'Terres australes et antarctiques françaises',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Géorgie',
|
|
||||||
'country_Gambia' => 'Gambie',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Territoires palestiniens occupés',
|
|
||||||
'country_Germany' => 'Allemagne',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Grèce',
|
|
||||||
'country_Greenland' => 'Groenland',
|
|
||||||
'country_Grenada' => 'Grenade',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinée',
|
|
||||||
'country_Guyana' => 'Guyane',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Îles Heard-et-MacDonald',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Vatican',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hongrie',
|
|
||||||
'country_Iceland' => 'Islande',
|
|
||||||
'country_India' => 'Inde',
|
|
||||||
'country_Indonesia' => 'Indonésie',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran',
|
|
||||||
'country_Iraq' => 'Irak',
|
|
||||||
'country_Ireland' => 'Irlande',
|
|
||||||
'country_Israel' => 'Israël',
|
|
||||||
'country_Italy' => 'Italie',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaique',
|
|
||||||
'country_Japan' => 'Japon',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordanie',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Corée du Nord',
|
|
||||||
'country_Korea, Republic of' => 'Corée du Sud',
|
|
||||||
'country_Kuwait' => 'Koweit',
|
|
||||||
'country_Kyrgyzstan' => 'Kirghizistan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Laos',
|
|
||||||
'country_Lebanon' => 'Liban',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Lettonie',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libye',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lituanie',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaisie',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malte',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritanie',
|
|
||||||
'country_Mauritius' => 'Maurice',
|
|
||||||
'country_Mexico' => 'Mexique',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolie',
|
|
||||||
'country_Moldova, Republic of' => 'Moldavie',
|
|
||||||
'country_Montenegro' => 'Monténégro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Maroc',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibie',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Népal',
|
|
||||||
'country_Netherlands' => 'Pays-Bas',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Saint-Martin (partie Pays-Bas)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Pays-Bas caribéens',
|
|
||||||
'country_New Caledonia' => 'Nouvelle-Calédonie',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'Nouvelle-Zélande',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Île Norfolk',
|
|
||||||
'country_Norway' => 'Norvège',
|
|
||||||
'country_Northern Mariana Islands' => 'Îles Mariannes du Nord',
|
|
||||||
'country_United States Minor Outlying Islands' => 'Îles mineures éloignées des États-Unis',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronésie',
|
|
||||||
'country_Marshall Islands' => 'Îles Marshall',
|
|
||||||
'country_Palau' => 'Palaos',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papouasie-Nouvelle-Guinée',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Pérou',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Îles Pitcairn',
|
|
||||||
'country_Poland' => 'Pologne',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinée-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor oriental',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'La Réunion',
|
|
||||||
'country_Romania' => 'Roumanie',
|
|
||||||
'country_Russian Federation' => 'Fédération Russe',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Sainte-Hélène, Ascension et Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint-Kitts-et-Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Sainte-Lucie',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint-Martin (partie française)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre et Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint-Vincent-et-les-Grenadines',
|
|
||||||
'country_San Marino' => 'Saint-Marin',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tomé-et-Principe',
|
|
||||||
'country_Saudi Arabia' => 'Arabie Saoudite',
|
|
||||||
'country_Senegal' => 'Sénégal',
|
|
||||||
'country_Serbia' => 'Serbie',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovaquie',
|
|
||||||
'country_Viet Nam' => 'Viêt Nam',
|
|
||||||
'country_Slovenia' => 'Slovénie',
|
|
||||||
'country_Somalia' => 'Somalie',
|
|
||||||
'country_South Africa' => 'Afrique du Sud',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Espagne',
|
|
||||||
'country_South Sudan' => 'Soudan du Sud',
|
|
||||||
'country_Sudan' => 'Soudan',
|
|
||||||
'country_Western Sahara' => 'Sahara occidental',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard et Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Suède',
|
|
||||||
'country_Switzerland' => 'Suisse',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrie',
|
|
||||||
'country_Tajikistan' => 'Tadjikistan',
|
|
||||||
'country_Thailand' => 'Thaïlande',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinité-et-Tobago',
|
|
||||||
'country_United Arab Emirates' => 'Émirats arabes unis',
|
|
||||||
'country_Tunisia' => 'Tunisie',
|
|
||||||
'country_Turkey' => 'Turquie',
|
|
||||||
'country_Turkmenistan' => 'Turkménistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Îles Turques-et-Caïques',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Ouganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macédoine',
|
|
||||||
'country_Egypt' => 'Égypte',
|
|
||||||
'country_United Kingdom' => 'Royaume-Uni',
|
|
||||||
'country_Guernsey' => 'Guersney',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Île de Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzanie',
|
|
||||||
'country_United States' => 'États-Unis',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Îles Vierges des États-Unis',
|
|
||||||
'country_Burkina Faso' => 'Burkina faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Ouzbékistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Vénézuela',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis et Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yémen',
|
|
||||||
'country_Zambi' => 'Zambie',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Voir le portail client',
|
'view_client_portal' => 'Voir le portail client',
|
||||||
'view_portal' => 'Voir le portail',
|
'view_portal' => 'Voir le portail',
|
||||||
'vendor_contacts' => 'Contacts du fournisseur',
|
'vendor_contacts' => 'Contacts du fournisseur',
|
||||||
@ -2485,7 +2234,8 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'add_documents_to_invoice' => 'Ajouter un document à la facture',
|
'add_documents_to_invoice' => 'Ajouter un document à la facture',
|
||||||
'mark_expense_paid' => 'Marquer comme payé',
|
'mark_expense_paid' => 'Marquer comme payé',
|
||||||
'white_label_license_error' => 'La validation de la licence n\'a pas fonctionné. Veuillez consulter storage/logs/laravel-error.log pour plus d\'information.',
|
'white_label_license_error' => 'La validation de la licence n\'a pas fonctionné. Veuillez consulter storage/logs/laravel-error.log pour plus d\'information.',
|
||||||
'plan_price' => 'Tarification'
|
'plan_price' => 'Tarification',
|
||||||
|
'wrong_confirmation' => 'Code de confirmation incorrect',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2493,7 +2242,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1683,7 +1683,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1767,257 +1767,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2486,7 +2235,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2493,7 +2242,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afganistanas',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarktika',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andora',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaidžanas',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australija',
|
|
||||||
'country_Austria' => 'Austrija',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armėnija',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgija',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnija ir Hercegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazilija',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Baltarusija',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Kosta Rika',
|
|
||||||
'country_Croatia' => 'Kroatija',
|
|
||||||
'country_Cuba' => 'Kuba',
|
|
||||||
'country_Cyprus' => 'Kipras',
|
|
||||||
'country_Czech Republic' => 'Čekoslovakija',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Danija',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estija',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Suomija',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'Prancūzija',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Gruzija',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Graikija',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Vengrija',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'Indija',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Irakas',
|
|
||||||
'country_Ireland' => 'Airija',
|
|
||||||
'country_Israel' => 'Izrajelis',
|
|
||||||
'country_Italy' => 'Italija',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japonija',
|
|
||||||
'country_Kazakhstan' => 'Kazachstanas',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kirgizija',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvija',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lietuva',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Lenkija',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Rusija',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Švedija',
|
|
||||||
'country_Switzerland' => 'Šveicarija',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkija',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Rodyti kliento tinklapį',
|
'view_client_portal' => 'Rodyti kliento tinklapį',
|
||||||
'view_portal' => 'Rodyti tinklapį',
|
'view_portal' => 'Rodyti tinklapį',
|
||||||
'vendor_contacts' => 'Tiekėjo kontaktai',
|
'vendor_contacts' => 'Tiekėjo kontaktai',
|
||||||
@ -2493,7 +2242,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2493,7 +2242,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1681,7 +1681,7 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'country_Wallis and Futuna' => 'Wallis en Futuna',
|
'country_Wallis and Futuna' => 'Wallis en Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Jemen',
|
'country_Yemen' => 'Jemen',
|
||||||
'country_Zambi' => 'Zambia',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Braziliaans Portugees',
|
'lang_Brazilian Portuguese' => 'Braziliaans Portugees',
|
||||||
@ -1766,257 +1766,6 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'industry_Other' => 'Andere',
|
'industry_Other' => 'Andere',
|
||||||
'industry_Photography' =>'Fotografie',
|
'industry_Photography' =>'Fotografie',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albanië',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algerije',
|
|
||||||
'country_American Samoa' => 'Amerikaans-Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua en Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbeidzjan',
|
|
||||||
'country_Argentina' => 'Argentinië',
|
|
||||||
'country_Australia' => 'Australië',
|
|
||||||
'country_Austria' => 'Australië',
|
|
||||||
'country_Bahamas' => 'Bahama\'s',
|
|
||||||
'country_Bahrain' => 'Bahrein',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenië',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'België',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnië en Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouveteiland',
|
|
||||||
'country_Brazil' => 'Brazilië',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'Brits Indische Oceaanterritorium',
|
|
||||||
'country_Solomon Islands' => 'Salomonseilanden',
|
|
||||||
'country_Virgin Islands, British' => 'Britse Maagdeneilanden',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei',
|
|
||||||
'country_Bulgaria' => 'Bulgarije',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Wit-Rusland',
|
|
||||||
'country_Cambodia' => 'Cambodja',
|
|
||||||
'country_Cameroon' => 'Kameroen',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Kaapverdië',
|
|
||||||
'country_Cayman Islands' => 'Kaaimaneilanden',
|
|
||||||
'country_Central African Republic' => 'Centraal-Afrikaanse Republiek',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Tsjaad',
|
|
||||||
'country_Chile' => 'Chili',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan',
|
|
||||||
'country_Christmas Island' => 'Christmaseiland',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocoseilanden',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoren',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo-Kinshasa',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo',
|
|
||||||
'country_Cook Islands' => 'Cookeilanden',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Kroatië',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Tsjechië',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denemarken',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominicaanse Republiek',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatoriaal-Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopië',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estland',
|
|
||||||
'country_Faroe Islands' => 'Faeröer',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falklandeilanden',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'Zuid-Georgia en de Zuidelijke Sandwicheilanden',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland',
|
|
||||||
'country_France' => 'Frankrijk',
|
|
||||||
'country_French Guiana' => 'Frans-Guyana',
|
|
||||||
'country_French Polynesia' => 'Frans-Polynesië',
|
|
||||||
'country_French Southern Territories' => 'Franse Zuidelijke en Antarctische Gebieden',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgië',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Westelijke Jordaanoever',
|
|
||||||
'country_Germany' => 'Duitsland',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Griekenland',
|
|
||||||
'country_Greenland' => 'Groenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinee',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haïti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard en McDonaldeilanden',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Heilige Stoel',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hongkong',
|
|
||||||
'country_Hungary' => 'Hongarije',
|
|
||||||
'country_Iceland' => 'IJsland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesië',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran',
|
|
||||||
'country_Iraq' => 'Irak',
|
|
||||||
'country_Ireland' => 'Ierland',
|
|
||||||
'country_Israel' => 'Israël',
|
|
||||||
'country_Italy' => 'Italië',
|
|
||||||
'country_Côte d\'Ivoire' => 'Ivoorkust',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazachstan',
|
|
||||||
'country_Jordan' => 'Jordanië',
|
|
||||||
'country_Kenya' => 'Kenia',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Noord-Korea',
|
|
||||||
'country_Korea, Republic of' => 'Zuid-Korea',
|
|
||||||
'country_Kuwait' => 'Koeweit',
|
|
||||||
'country_Kyrgyzstan' => 'Kirgizië',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Laos',
|
|
||||||
'country_Lebanon' => 'Libanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Letland',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libië',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Litouwen',
|
|
||||||
'country_Luxembourg' => 'Luxemburg',
|
|
||||||
'country_Macao' => 'Macau',
|
|
||||||
'country_Madagascar' => 'Madagaskar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Maleisië',
|
|
||||||
'country_Maldives' => 'Maldiven',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritanië',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolië',
|
|
||||||
'country_Moldova, Republic of' => 'Moldavië',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Marokko',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibië',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Nederland',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Caribisch Nederland',
|
|
||||||
'country_New Caledonia' => 'Nieuw-Caledonië',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'Nieuw-Zeeland',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Nigeria',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk',
|
|
||||||
'country_Norway' => 'Noorwegen',
|
|
||||||
'country_Northern Mariana Islands' => 'Noordelijke Marianen',
|
|
||||||
'country_United States Minor Outlying Islands' => 'Kleine afgelegen eilanden van de Verenigde Staten',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia',
|
|
||||||
'country_Marshall Islands' => 'Marshalleilanden',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papoea-Nieuw-Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Filipijnen',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Polen',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinee-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Oost-Timor',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Roemenië',
|
|
||||||
'country_Russian Federation' => 'Rusland',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint-Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Sint-Helena, Ascension en Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts en Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint-Pierre en Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent en de Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tomé en Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saoedi-Arabië',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Servië',
|
|
||||||
'country_Seychelles' => 'Seychellen',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slowakije',
|
|
||||||
'country_Viet Nam' => 'Vietnam',
|
|
||||||
'country_Slovenia' => 'Slovenië',
|
|
||||||
'country_Somalia' => 'Somalië',
|
|
||||||
'country_South Africa' => 'Zuid-Afrika',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spanje',
|
|
||||||
'country_South Sudan' => 'Zuid-Soedan',
|
|
||||||
'country_Sudan' => 'Soedan',
|
|
||||||
'country_Western Sahara' => 'Westelijke Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Spitsbergen en Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Zweden',
|
|
||||||
'country_Switzerland' => 'Zwitserland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrië',
|
|
||||||
'country_Tajikistan' => 'Tadzjikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad en Tobago',
|
|
||||||
'country_United Arab Emirates' => 'Verenigde Arabische Emiraten',
|
|
||||||
'country_Tunisia' => 'Tunesië',
|
|
||||||
'country_Turkey' => 'Turkije',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks- en Caicoseilanden',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Oeganda',
|
|
||||||
'country_Ukraine' => 'Oekraïne',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonië',
|
|
||||||
'country_Egypt' => 'Egypte',
|
|
||||||
'country_United Kingdom' => 'Verenigd Koninkrijk',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania',
|
|
||||||
'country_United States' => 'Verenigde Staten',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Amerikaanse Maagdeneilanden',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Oezbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis en Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Jemen',
|
|
||||||
'country_Zambi' => 'Zambia',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Toon klantportaal',
|
'view_client_portal' => 'Toon klantportaal',
|
||||||
'view_portal' => 'Toon portaal',
|
'view_portal' => 'Toon portaal',
|
||||||
'vendor_contacts' => 'Leveranciercontacten',
|
'vendor_contacts' => 'Leveranciercontacten',
|
||||||
@ -2485,7 +2234,8 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'add_documents_to_invoice' => 'Voeg documenten toe aan factuur',
|
'add_documents_to_invoice' => 'Voeg documenten toe aan factuur',
|
||||||
'mark_expense_paid' => 'Markeer betaald',
|
'mark_expense_paid' => 'Markeer betaald',
|
||||||
'white_label_license_error' => 'Validatie van de licentie mislukt, controleer storage/logs/laravel-error.log voor meer informatie.',
|
'white_label_license_error' => 'Validatie van de licentie mislukt, controleer storage/logs/laravel-error.log voor meer informatie.',
|
||||||
'plan_price' => 'Plan prijs'
|
'plan_price' => 'Plan prijs',
|
||||||
|
'wrong_confirmation' => 'Incorrecte bevestigingscode',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'country_Wallis and Futuna' => 'Wallis i Futuna',
|
'country_Wallis and Futuna' => 'Wallis i Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Jemen',
|
'country_Yemen' => 'Jemen',
|
||||||
'country_Zambi' => 'Zambia',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazylijska odmiana języka portugalskiego',
|
'lang_Brazilian Portuguese' => 'Brazylijska odmiana języka portugalskiego',
|
||||||
@ -1774,257 +1774,6 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'industry_Other' => 'Inne',
|
'industry_Other' => 'Inne',
|
||||||
'industry_Photography' =>'Fotografia',
|
'industry_Photography' =>'Fotografia',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afganistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarktyda',
|
|
||||||
'country_Algeria' => 'Algieria',
|
|
||||||
'country_American Samoa' => 'Samoa Amerykańskie',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua i Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbejdżan',
|
|
||||||
'country_Argentina' => 'Argentyna',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamy',
|
|
||||||
'country_Bahrain' => 'Bahrajn',
|
|
||||||
'country_Bangladesh' => 'Bangladesz',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgia',
|
|
||||||
'country_Bermuda' => 'Bermudy',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Boliwia',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bośnia i Hercegowina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Wyspa Bouveta',
|
|
||||||
'country_Brazil' => 'Brazylia',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'Brytyjskie Terytorium Oceanu Indyjskiego',
|
|
||||||
'country_Solomon Islands' => 'Wyspy Salomona',
|
|
||||||
'country_Virgin Islands, British' => 'Brytyjskie Wyspy Dziewicze',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei',
|
|
||||||
'country_Bulgaria' => 'Bułgaria',
|
|
||||||
'country_Myanmar' => 'Mjanma/Birma',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Białoruś',
|
|
||||||
'country_Cambodia' => 'Kambodża',
|
|
||||||
'country_Cameroon' => 'Kamerun',
|
|
||||||
'country_Canada' => 'Kanada',
|
|
||||||
'country_Cape Verde' => 'Republika Zielonego Przylądka',
|
|
||||||
'country_Cayman Islands' => 'Kajmany',
|
|
||||||
'country_Central African Republic' => 'Republika Środkowoafrykańska',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Czad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'Chiny',
|
|
||||||
'country_Taiwan, Province of China' => 'Tajwan',
|
|
||||||
'country_Christmas Island' => 'Wyspa Bożego Narodzenia',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Wyspy Kokosowe',
|
|
||||||
'country_Colombia' => 'Kolumbia',
|
|
||||||
'country_Comoros' => 'Komory',
|
|
||||||
'country_Mayotte' => 'Majotta',
|
|
||||||
'country_Congo' => 'Kongo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Kongo',
|
|
||||||
'country_Cook Islands' => 'Wyspy Cooka',
|
|
||||||
'country_Costa Rica' => 'Kostaryka',
|
|
||||||
'country_Croatia' => 'Chorwacja',
|
|
||||||
'country_Cuba' => 'Kuba',
|
|
||||||
'country_Cyprus' => 'Cypr',
|
|
||||||
'country_Czech Republic' => 'Czechy',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Dania',
|
|
||||||
'country_Dominica' => 'Dominika',
|
|
||||||
'country_Dominican Republic' => 'Dominikana',
|
|
||||||
'country_Ecuador' => 'Ekwador',
|
|
||||||
'country_El Salvador' => 'Salwador',
|
|
||||||
'country_Equatorial Guinea' => 'Gwinea Równikowa',
|
|
||||||
'country_Ethiopia' => 'Etiopia',
|
|
||||||
'country_Eritrea' => 'Erytrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Wyspy Owcze',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falklandy (Malwiny)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'Georgia Południowa i Sandwich Południowy',
|
|
||||||
'country_Fiji' => 'Fidżi',
|
|
||||||
'country_Finland' => 'Finlandia',
|
|
||||||
'country_Åland Islands' => 'Wyspy Alandzkie',
|
|
||||||
'country_France' => 'Francja',
|
|
||||||
'country_French Guiana' => 'Gujana Francuska',
|
|
||||||
'country_French Polynesia' => 'Polinezja Francuska',
|
|
||||||
'country_French Southern Territories' => 'Francuskie Terytoria Południowe i Antarktyczne',
|
|
||||||
'country_Djibouti' => 'Dżibuti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Gruzja',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestyna',
|
|
||||||
'country_Germany' => 'Niemcy',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Grecja',
|
|
||||||
'country_Greenland' => 'Grenlandia',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Gwadelupa',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Gwatemala',
|
|
||||||
'country_Guinea' => 'Gwinea',
|
|
||||||
'country_Guyana' => 'Gujana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Wyspy Heard i McDonalda',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Stolica Apostolska (miasto Watykan)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Węgry',
|
|
||||||
'country_Iceland' => 'Islandia',
|
|
||||||
'country_India' => 'Indie',
|
|
||||||
'country_Indonesia' => 'Indonezja ',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran',
|
|
||||||
'country_Iraq' => 'Irak',
|
|
||||||
'country_Ireland' => 'Irlandia',
|
|
||||||
'country_Israel' => 'Izrael',
|
|
||||||
'country_Italy' => 'Włochy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamajka',
|
|
||||||
'country_Japan' => 'Japonia',
|
|
||||||
'country_Kazakhstan' => 'Kazachstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenia',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea Północna',
|
|
||||||
'country_Korea, Republic of' => 'Korea Południowa',
|
|
||||||
'country_Kuwait' => 'Kuwejt',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Liban',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Łotwa',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libia',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Litwa',
|
|
||||||
'country_Luxembourg' => 'Luksemburg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagaskar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauretania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Meksyk',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'Nowa Zelandia',
|
|
||||||
'country_Nicaragua' => 'Nikaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norwegia',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Wyspy Marshalla',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paragwaj',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Filipiny',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Polska',
|
|
||||||
'country_Portugal' => 'Portugalia',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Katar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Rumunia',
|
|
||||||
'country_Russian Federation' => 'Rosja',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Arabia Saudyjska',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seszele',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapur',
|
|
||||||
'country_Slovakia' => 'Słowacja',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Słowenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Hiszpania',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Szwecja',
|
|
||||||
'country_Switzerland' => 'Szwajcaria',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tadżikistan',
|
|
||||||
'country_Thailand' => 'Tajlandia',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunezja',
|
|
||||||
'country_Turkey' => 'Turcja',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraina',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia',
|
|
||||||
'country_Egypt' => 'Egipt',
|
|
||||||
'country_United Kingdom' => 'Wielka Brytania',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Wyspa Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania',
|
|
||||||
'country_United States' => 'Stany Zjednoczone',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Wyspy Dziewicze Stanów Zjednoczonych',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Urugwaj',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Wenezuela',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis i Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Jemen',
|
|
||||||
'country_Zambi' => 'Zambia',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Zobacz portal klienta',
|
'view_client_portal' => 'Zobacz portal klienta',
|
||||||
'view_portal' => 'Zobacz portal',
|
'view_portal' => 'Zobacz portal',
|
||||||
'vendor_contacts' => 'Dane kontaktowe dostawców',
|
'vendor_contacts' => 'Dane kontaktowe dostawców',
|
||||||
@ -2493,7 +2242,8 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1681,7 +1681,7 @@ Quando tiver os valores dos depósitos, volte a esta pagina e complete a verific
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1765,257 +1765,6 @@ Quando tiver os valores dos depósitos, volte a esta pagina e complete a verific
|
|||||||
'industry_Other' => 'Other',
|
'industry_Other' => 'Other',
|
||||||
'industry_Photography' =>'Photography',
|
'industry_Photography' =>'Photography',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2484,7 +2233,8 @@ Quando tiver os valores dos depósitos, volte a esta pagina e complete a verific
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1681,7 +1681,7 @@ Quando tiver os valores dos depósitos, volte a esta página e conclua a verific
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Português do Brasil',
|
'lang_Brazilian Portuguese' => 'Português do Brasil',
|
||||||
@ -1765,257 +1765,6 @@ Quando tiver os valores dos depósitos, volte a esta página e conclua a verific
|
|||||||
'industry_Other' => 'Outros',
|
'industry_Other' => 'Outros',
|
||||||
'industry_Photography' =>'Fotografia',
|
'industry_Photography' =>'Fotografia',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2485,7 +2234,8 @@ Quando tiver os valores dos depósitos, volte a esta página e conclua a verific
|
|||||||
'add_documents_to_invoice' => 'Adicionar documento à nota de pag.',
|
'add_documents_to_invoice' => 'Adicionar documento à nota de pag.',
|
||||||
'mark_expense_paid' => 'Marcar Pago',
|
'mark_expense_paid' => 'Marcar Pago',
|
||||||
'white_label_license_error' => 'Falhou a validar a licença, verifique storage/logs/laravel-error.log para mais detalhes.',
|
'white_label_license_error' => 'Falhou a validar a licença, verifique storage/logs/laravel-error.log para mais detalhes.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1688,7 +1688,7 @@ Pasi të keni pranuar shumat, kthehuni në faqen e metodave të pagesës dhe kli
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1772,257 +1772,6 @@ Pasi të keni pranuar shumat, kthehuni në faqen e metodave të pagesës dhe kli
|
|||||||
'industry_Other' => 'Të tjera',
|
'industry_Other' => 'Të tjera',
|
||||||
'industry_Photography' =>'Fotografi',
|
'industry_Photography' =>'Fotografi',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Hungary',
|
|
||||||
'country_Iceland' => 'Iceland',
|
|
||||||
'country_India' => 'India',
|
|
||||||
'country_Indonesia' => 'Indonesia',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran, Islamic Republic of',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Shiko portalin e klienti',
|
'view_client_portal' => 'Shiko portalin e klienti',
|
||||||
'view_portal' => 'Shiko portalin',
|
'view_portal' => 'Shiko portalin',
|
||||||
'vendor_contacts' => 'Kontakte te kompanive',
|
'vendor_contacts' => 'Kontakte te kompanive',
|
||||||
@ -2491,7 +2240,8 @@ Pasi të keni pranuar shumat, kthehuni në faqen e metodave të pagesës dhe kli
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1695,7 +1695,7 @@ Nya Kaledonien',
|
|||||||
'country_Wallis and Futuna' => 'Wallis och Futuna',
|
'country_Wallis and Futuna' => 'Wallis och Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yeme',
|
'country_Yemen' => 'Yeme',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brasiliansk Portugisiska',
|
'lang_Brazilian Portuguese' => 'Brasiliansk Portugisiska',
|
||||||
@ -1779,263 +1779,6 @@ Nya Kaledonien',
|
|||||||
'industry_Other' => 'Övrigt',
|
'industry_Other' => 'Övrigt',
|
||||||
'industry_Photography' =>'Fotografering',
|
'industry_Photography' =>'Fotografering',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albanien',
|
|
||||||
'country_Antarctica' => 'Antarktis',
|
|
||||||
'country_Algeria' => 'Algeriet',
|
|
||||||
'country_American Samoa' => '
|
|
||||||
Amerikanska Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua och Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australien',
|
|
||||||
'country_Austria' => 'Österrike',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenien',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgien',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnien och Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brasilien',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'Indiska oceanen',
|
|
||||||
'country_Solomon Islands' => 'Salomonöarna',
|
|
||||||
'country_Virgin Islands, British' => 'Brittiska jungfruöarna',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei',
|
|
||||||
'country_Bulgaria' => 'Bulgarien',
|
|
||||||
'country_Myanmar' => 'Burma',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Vitryssland',
|
|
||||||
'country_Cambodia' => 'Kambodja',
|
|
||||||
'country_Cameroon' => 'Kamerun',
|
|
||||||
'country_Canada' => 'Kanada',
|
|
||||||
'country_Cape Verde' => 'Kap Verde',
|
|
||||||
'country_Cayman Islands' => 'Caymanöarna',
|
|
||||||
'country_Central African Republic' => 'Centralafrikanska republiken',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Tchad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'Kina',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan',
|
|
||||||
'country_Christmas Island' => 'Julön',
|
|
||||||
'country_Cocos (Keeling) Islands' => '
|
|
||||||
Cocos (Keeling) Öarna',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Kongo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Kongo',
|
|
||||||
'country_Cook Islands' => 'Cooköarna',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Kroatien',
|
|
||||||
'country_Cuba' => 'Kuba',
|
|
||||||
'country_Cyprus' => 'Cypern',
|
|
||||||
'country_Czech Republic' => 'Tjeckien',
|
|
||||||
'country_Benin' => 'Beniin',
|
|
||||||
'country_Denmark' => 'Danmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominikanska Republiken',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Ekvatorialguinea',
|
|
||||||
'country_Ethiopia' => 'Etiopien',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estland',
|
|
||||||
'country_Faroe Islands' => 'Färöarna',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falklandsöarna (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => '
|
|
||||||
Sydgeorgien och Sydsandwichöarna',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland',
|
|
||||||
'country_France' => 'Frankrike',
|
|
||||||
'country_French Guiana' => 'Franska Guyana',
|
|
||||||
'country_French Polynesia' => 'Franska Polynesien',
|
|
||||||
'country_French Southern Territories' => 'Franska Sydterritorierna',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgien',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => '
|
|
||||||
Det ockuperade palestinska territoriet',
|
|
||||||
'country_Germany' => 'Tyskland',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Grekland',
|
|
||||||
'country_Greenland' => 'Grönland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadelope',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => '
|
|
||||||
Heard- och Mcdonaldöarna',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Heliga stolen (Vatikanstaten)',
|
|
||||||
'country_Honduras' => 'Hondura',
|
|
||||||
'country_Hong Kong' => 'Hong Kong',
|
|
||||||
'country_Hungary' => 'Ungern',
|
|
||||||
'country_Iceland' => 'Island',
|
|
||||||
'country_India' => 'Indien',
|
|
||||||
'country_Indonesia' => 'Indonesien',
|
|
||||||
'country_Iran, Islamic Republic of' => 'Iran',
|
|
||||||
'country_Iraq' => 'Irak',
|
|
||||||
'country_Ireland' => 'Irland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italien',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordanien',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea',
|
|
||||||
'country_Korea, Republic of' => 'Korea',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Laos Demokratiska folkrepubliken',
|
|
||||||
'country_Lebanon' => 'Libanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Lettland',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libyen',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuaien',
|
|
||||||
'country_Luxembourg' => 'Luxemburg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldiverna',
|
|
||||||
'country_Mali' => 'Mal',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauretanien',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexik',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongoliet',
|
|
||||||
'country_Moldova, Republic of' => 'Moldavien',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Marocko',
|
|
||||||
'country_Mozambique' => 'Moçambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Nederländerna',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (nederländska delen)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius och Saba',
|
|
||||||
'country_New Caledonia' => '
|
|
||||||
Nya Kaledonien',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'Nya Zeeland',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Ön',
|
|
||||||
'country_Norway' => 'Norge',
|
|
||||||
'country_Northern Mariana Islands' => 'Nordmarianerna',
|
|
||||||
'country_United States Minor Outlying Islands' => 'Förenta staternas avlägset belägna öar',
|
|
||||||
'country_Micronesia, Federated States of' => 'Mikronesien av',
|
|
||||||
'country_Marshall Islands' => 'Marshallöarna',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua Nya Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Filippinerna',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Polen',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Rumänien',
|
|
||||||
'country_Russian Federation' => 'Ryska Federationen',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension och Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts och Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (franska delen)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre och Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent och Grenadinerna',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tomé och Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabien',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbien',
|
|
||||||
'country_Seychelles' => 'Seychellerna',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakien',
|
|
||||||
'country_Viet Nam' => 'Vietnam',
|
|
||||||
'country_Slovenia' => 'Slovenien',
|
|
||||||
'country_Somalia' => 'Somalien',
|
|
||||||
'country_South Africa' => 'Syd Afrika',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spanien',
|
|
||||||
'country_South Sudan' => 'Syd Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Väst Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard och Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sverige',
|
|
||||||
'country_Switzerland' => 'Schweiz',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrien',
|
|
||||||
'country_Tajikistan' => 'Tadzjikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokela',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad och Tobago',
|
|
||||||
'country_United Arab Emirates' => 'Förenade arabemiraten',
|
|
||||||
'country_Tunisia' => 'Tunisien',
|
|
||||||
'country_Turkey' => 'Turkiet',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks- och Caicosöarna',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraina',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Makedonien, fd jugoslaviska republiken',
|
|
||||||
'country_Egypt' => 'Egypten',
|
|
||||||
'country_United Kingdom' => 'Storbritannien',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania',
|
|
||||||
'country_United States' => 'Förenta Staterna',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Jungfruöarna, US.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarianska republiken',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis och Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yeme',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'Se klient portal',
|
'view_client_portal' => 'Se klient portal',
|
||||||
'view_portal' => 'Se portal',
|
'view_portal' => 'Se portal',
|
||||||
'vendor_contacts' => 'Leverantörs kontakter',
|
'vendor_contacts' => 'Leverantörs kontakter',
|
||||||
@ -2506,7 +2249,8 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
|
|||||||
'add_documents_to_invoice' => 'Bifoga dokument till fakturan',
|
'add_documents_to_invoice' => 'Bifoga dokument till fakturan',
|
||||||
'mark_expense_paid' => 'Markera som betald',
|
'mark_expense_paid' => 'Markera som betald',
|
||||||
'white_label_license_error' => 'Misslyckas att validera licensen, kolla storage/logs/laravel-error.log för mer detaljer.',
|
'white_label_license_error' => 'Misslyckas att validera licensen, kolla storage/logs/laravel-error.log för mer detaljer.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1690,7 +1690,7 @@ $LANG = array(
|
|||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
||||||
'country_Samoa' => 'Samoa',
|
'country_Samoa' => 'Samoa',
|
||||||
'country_Yemen' => 'Yemen',
|
'country_Yemen' => 'Yemen',
|
||||||
'country_Zambi' => 'Zambi',
|
'country_Zambia' => 'Zambia',
|
||||||
|
|
||||||
// Languages
|
// Languages
|
||||||
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
'lang_Brazilian Portuguese' => 'Brazilian Portuguese',
|
||||||
@ -1774,257 +1774,6 @@ $LANG = array(
|
|||||||
'industry_Other' => 'อื่นๆ',
|
'industry_Other' => 'อื่นๆ',
|
||||||
'industry_Photography' =>'ภาพถ่าย',
|
'industry_Photography' =>'ภาพถ่าย',
|
||||||
|
|
||||||
// Countries
|
|
||||||
'country_Afghanistan' => 'Afghanistan',
|
|
||||||
'country_Albania' => 'Albania',
|
|
||||||
'country_Antarctica' => 'Antarctica',
|
|
||||||
'country_Algeria' => 'Algeria',
|
|
||||||
'country_American Samoa' => 'American Samoa',
|
|
||||||
'country_Andorra' => 'Andorra',
|
|
||||||
'country_Angola' => 'Angola',
|
|
||||||
'country_Antigua and Barbuda' => 'Antigua and Barbuda',
|
|
||||||
'country_Azerbaijan' => 'Azerbaijan',
|
|
||||||
'country_Argentina' => 'Argentina',
|
|
||||||
'country_Australia' => 'Australia',
|
|
||||||
'country_Austria' => 'Austria',
|
|
||||||
'country_Bahamas' => 'Bahamas',
|
|
||||||
'country_Bahrain' => 'Bahrain',
|
|
||||||
'country_Bangladesh' => 'Bangladesh',
|
|
||||||
'country_Armenia' => 'Armenia',
|
|
||||||
'country_Barbados' => 'Barbados',
|
|
||||||
'country_Belgium' => 'Belgium',
|
|
||||||
'country_Bermuda' => 'Bermuda',
|
|
||||||
'country_Bhutan' => 'Bhutan',
|
|
||||||
'country_Bolivia, Plurinational State of' => 'Bolivia, Plurinational State of',
|
|
||||||
'country_Bosnia and Herzegovina' => 'Bosnia and Herzegovina',
|
|
||||||
'country_Botswana' => 'Botswana',
|
|
||||||
'country_Bouvet Island' => 'Bouvet Island',
|
|
||||||
'country_Brazil' => 'Brazil',
|
|
||||||
'country_Belize' => 'Belize',
|
|
||||||
'country_British Indian Ocean Territory' => 'British Indian Ocean Territory',
|
|
||||||
'country_Solomon Islands' => 'Solomon Islands',
|
|
||||||
'country_Virgin Islands, British' => 'Virgin Islands, British',
|
|
||||||
'country_Brunei Darussalam' => 'Brunei Darussalam',
|
|
||||||
'country_Bulgaria' => 'Bulgaria',
|
|
||||||
'country_Myanmar' => 'Myanmar',
|
|
||||||
'country_Burundi' => 'Burundi',
|
|
||||||
'country_Belarus' => 'Belarus',
|
|
||||||
'country_Cambodia' => 'Cambodia',
|
|
||||||
'country_Cameroon' => 'Cameroon',
|
|
||||||
'country_Canada' => 'Canada',
|
|
||||||
'country_Cape Verde' => 'Cape Verde',
|
|
||||||
'country_Cayman Islands' => 'Cayman Islands',
|
|
||||||
'country_Central African Republic' => 'Central African Republic',
|
|
||||||
'country_Sri Lanka' => 'Sri Lanka',
|
|
||||||
'country_Chad' => 'Chad',
|
|
||||||
'country_Chile' => 'Chile',
|
|
||||||
'country_China' => 'China',
|
|
||||||
'country_Taiwan, Province of China' => 'Taiwan, Province of China',
|
|
||||||
'country_Christmas Island' => 'Christmas Island',
|
|
||||||
'country_Cocos (Keeling) Islands' => 'Cocos (Keeling) Islands',
|
|
||||||
'country_Colombia' => 'Colombia',
|
|
||||||
'country_Comoros' => 'Comoros',
|
|
||||||
'country_Mayotte' => 'Mayotte',
|
|
||||||
'country_Congo' => 'Congo',
|
|
||||||
'country_Congo, the Democratic Republic of the' => 'Congo, the Democratic Republic of the',
|
|
||||||
'country_Cook Islands' => 'Cook Islands',
|
|
||||||
'country_Costa Rica' => 'Costa Rica',
|
|
||||||
'country_Croatia' => 'Croatia',
|
|
||||||
'country_Cuba' => 'Cuba',
|
|
||||||
'country_Cyprus' => 'Cyprus',
|
|
||||||
'country_Czech Republic' => 'Czech Republic',
|
|
||||||
'country_Benin' => 'Benin',
|
|
||||||
'country_Denmark' => 'Denmark',
|
|
||||||
'country_Dominica' => 'Dominica',
|
|
||||||
'country_Dominican Republic' => 'Dominican Republic',
|
|
||||||
'country_Ecuador' => 'Ecuador',
|
|
||||||
'country_El Salvador' => 'El Salvador',
|
|
||||||
'country_Equatorial Guinea' => 'Equatorial Guinea',
|
|
||||||
'country_Ethiopia' => 'Ethiopia',
|
|
||||||
'country_Eritrea' => 'Eritrea',
|
|
||||||
'country_Estonia' => 'Estonia',
|
|
||||||
'country_Faroe Islands' => 'Faroe Islands',
|
|
||||||
'country_Falkland Islands (Malvinas)' => 'Falkland Islands (Malvinas)',
|
|
||||||
'country_South Georgia and the South Sandwich Islands' => 'South Georgia and the South Sandwich Islands',
|
|
||||||
'country_Fiji' => 'Fiji',
|
|
||||||
'country_Finland' => 'Finland',
|
|
||||||
'country_Åland Islands' => 'Åland Islands',
|
|
||||||
'country_France' => 'France',
|
|
||||||
'country_French Guiana' => 'French Guiana',
|
|
||||||
'country_French Polynesia' => 'French Polynesia',
|
|
||||||
'country_French Southern Territories' => 'French Southern Territories',
|
|
||||||
'country_Djibouti' => 'Djibouti',
|
|
||||||
'country_Gabon' => 'Gabon',
|
|
||||||
'country_Georgia' => 'Georgia',
|
|
||||||
'country_Gambia' => 'Gambia',
|
|
||||||
'country_Palestinian Territory, Occupied' => 'Palestinian Territory, Occupied',
|
|
||||||
'country_Germany' => 'Germany',
|
|
||||||
'country_Ghana' => 'Ghana',
|
|
||||||
'country_Gibraltar' => 'Gibraltar',
|
|
||||||
'country_Kiribati' => 'Kiribati',
|
|
||||||
'country_Greece' => 'Greece',
|
|
||||||
'country_Greenland' => 'Greenland',
|
|
||||||
'country_Grenada' => 'Grenada',
|
|
||||||
'country_Guadeloupe' => 'Guadeloupe',
|
|
||||||
'country_Guam' => 'Guam',
|
|
||||||
'country_Guatemala' => 'Guatemala',
|
|
||||||
'country_Guinea' => 'Guinea',
|
|
||||||
'country_Guyana' => 'Guyana',
|
|
||||||
'country_Haiti' => 'Haiti',
|
|
||||||
'country_Heard Island and McDonald Islands' => 'Heard Island and McDonald Islands',
|
|
||||||
'country_Holy See (Vatican City State)' => 'Holy See (Vatican City State)',
|
|
||||||
'country_Honduras' => 'Honduras',
|
|
||||||
'country_Hong Kong' => 'ฮ่องกง',
|
|
||||||
'country_Hungary' => 'ฮังการี่',
|
|
||||||
'country_Iceland' => 'ไอซ์แลนด์',
|
|
||||||
'country_India' => 'อินเดีย',
|
|
||||||
'country_Indonesia' => 'อินโดนีเซีย',
|
|
||||||
'country_Iran, Islamic Republic of' => 'อิหร่าน',
|
|
||||||
'country_Iraq' => 'Iraq',
|
|
||||||
'country_Ireland' => 'Ireland',
|
|
||||||
'country_Israel' => 'Israel',
|
|
||||||
'country_Italy' => 'Italy',
|
|
||||||
'country_Côte d\'Ivoire' => 'Côte d\'Ivoire',
|
|
||||||
'country_Jamaica' => 'Jamaica',
|
|
||||||
'country_Japan' => 'Japan',
|
|
||||||
'country_Kazakhstan' => 'Kazakhstan',
|
|
||||||
'country_Jordan' => 'Jordan',
|
|
||||||
'country_Kenya' => 'Kenya',
|
|
||||||
'country_Korea, Democratic People\'s Republic of' => 'Korea, Democratic People\'s Republic of',
|
|
||||||
'country_Korea, Republic of' => 'Korea, Republic of',
|
|
||||||
'country_Kuwait' => 'Kuwait',
|
|
||||||
'country_Kyrgyzstan' => 'Kyrgyzstan',
|
|
||||||
'country_Lao People\'s Democratic Republic' => 'Lao People\'s Democratic Republic',
|
|
||||||
'country_Lebanon' => 'Lebanon',
|
|
||||||
'country_Lesotho' => 'Lesotho',
|
|
||||||
'country_Latvia' => 'Latvia',
|
|
||||||
'country_Liberia' => 'Liberia',
|
|
||||||
'country_Libya' => 'Libya',
|
|
||||||
'country_Liechtenstein' => 'Liechtenstein',
|
|
||||||
'country_Lithuania' => 'Lithuania',
|
|
||||||
'country_Luxembourg' => 'Luxembourg',
|
|
||||||
'country_Macao' => 'Macao',
|
|
||||||
'country_Madagascar' => 'Madagascar',
|
|
||||||
'country_Malawi' => 'Malawi',
|
|
||||||
'country_Malaysia' => 'Malaysia',
|
|
||||||
'country_Maldives' => 'Maldives',
|
|
||||||
'country_Mali' => 'Mali',
|
|
||||||
'country_Malta' => 'Malta',
|
|
||||||
'country_Martinique' => 'Martinique',
|
|
||||||
'country_Mauritania' => 'Mauritania',
|
|
||||||
'country_Mauritius' => 'Mauritius',
|
|
||||||
'country_Mexico' => 'Mexico',
|
|
||||||
'country_Monaco' => 'Monaco',
|
|
||||||
'country_Mongolia' => 'Mongolia',
|
|
||||||
'country_Moldova, Republic of' => 'Moldova, Republic of',
|
|
||||||
'country_Montenegro' => 'Montenegro',
|
|
||||||
'country_Montserrat' => 'Montserrat',
|
|
||||||
'country_Morocco' => 'Morocco',
|
|
||||||
'country_Mozambique' => 'Mozambique',
|
|
||||||
'country_Oman' => 'Oman',
|
|
||||||
'country_Namibia' => 'Namibia',
|
|
||||||
'country_Nauru' => 'Nauru',
|
|
||||||
'country_Nepal' => 'Nepal',
|
|
||||||
'country_Netherlands' => 'Netherlands',
|
|
||||||
'country_Curaçao' => 'Curaçao',
|
|
||||||
'country_Aruba' => 'Aruba',
|
|
||||||
'country_Sint Maarten (Dutch part)' => 'Sint Maarten (Dutch part)',
|
|
||||||
'country_Bonaire, Sint Eustatius and Saba' => 'Bonaire, Sint Eustatius and Saba',
|
|
||||||
'country_New Caledonia' => 'New Caledonia',
|
|
||||||
'country_Vanuatu' => 'Vanuatu',
|
|
||||||
'country_New Zealand' => 'New Zealand',
|
|
||||||
'country_Nicaragua' => 'Nicaragua',
|
|
||||||
'country_Niger' => 'Niger',
|
|
||||||
'country_Nigeria' => 'Nigeria',
|
|
||||||
'country_Niue' => 'Niue',
|
|
||||||
'country_Norfolk Island' => 'Norfolk Island',
|
|
||||||
'country_Norway' => 'Norway',
|
|
||||||
'country_Northern Mariana Islands' => 'Northern Mariana Islands',
|
|
||||||
'country_United States Minor Outlying Islands' => 'United States Minor Outlying Islands',
|
|
||||||
'country_Micronesia, Federated States of' => 'Micronesia, Federated States of',
|
|
||||||
'country_Marshall Islands' => 'Marshall Islands',
|
|
||||||
'country_Palau' => 'Palau',
|
|
||||||
'country_Pakistan' => 'Pakistan',
|
|
||||||
'country_Panama' => 'Panama',
|
|
||||||
'country_Papua New Guinea' => 'Papua New Guinea',
|
|
||||||
'country_Paraguay' => 'Paraguay',
|
|
||||||
'country_Peru' => 'Peru',
|
|
||||||
'country_Philippines' => 'Philippines',
|
|
||||||
'country_Pitcairn' => 'Pitcairn',
|
|
||||||
'country_Poland' => 'Poland',
|
|
||||||
'country_Portugal' => 'Portugal',
|
|
||||||
'country_Guinea-Bissau' => 'Guinea-Bissau',
|
|
||||||
'country_Timor-Leste' => 'Timor-Leste',
|
|
||||||
'country_Puerto Rico' => 'Puerto Rico',
|
|
||||||
'country_Qatar' => 'Qatar',
|
|
||||||
'country_Réunion' => 'Réunion',
|
|
||||||
'country_Romania' => 'Romania',
|
|
||||||
'country_Russian Federation' => 'Russian Federation',
|
|
||||||
'country_Rwanda' => 'Rwanda',
|
|
||||||
'country_Saint Barthélemy' => 'Saint Barthélemy',
|
|
||||||
'country_Saint Helena, Ascension and Tristan da Cunha' => 'Saint Helena, Ascension and Tristan da Cunha',
|
|
||||||
'country_Saint Kitts and Nevis' => 'Saint Kitts and Nevis',
|
|
||||||
'country_Anguilla' => 'Anguilla',
|
|
||||||
'country_Saint Lucia' => 'Saint Lucia',
|
|
||||||
'country_Saint Martin (French part)' => 'Saint Martin (French part)',
|
|
||||||
'country_Saint Pierre and Miquelon' => 'Saint Pierre and Miquelon',
|
|
||||||
'country_Saint Vincent and the Grenadines' => 'Saint Vincent and the Grenadines',
|
|
||||||
'country_San Marino' => 'San Marino',
|
|
||||||
'country_Sao Tome and Principe' => 'Sao Tome and Principe',
|
|
||||||
'country_Saudi Arabia' => 'Saudi Arabia',
|
|
||||||
'country_Senegal' => 'Senegal',
|
|
||||||
'country_Serbia' => 'Serbia',
|
|
||||||
'country_Seychelles' => 'Seychelles',
|
|
||||||
'country_Sierra Leone' => 'Sierra Leone',
|
|
||||||
'country_Singapore' => 'Singapore',
|
|
||||||
'country_Slovakia' => 'Slovakia',
|
|
||||||
'country_Viet Nam' => 'Viet Nam',
|
|
||||||
'country_Slovenia' => 'Slovenia',
|
|
||||||
'country_Somalia' => 'Somalia',
|
|
||||||
'country_South Africa' => 'South Africa',
|
|
||||||
'country_Zimbabwe' => 'Zimbabwe',
|
|
||||||
'country_Spain' => 'Spain',
|
|
||||||
'country_South Sudan' => 'South Sudan',
|
|
||||||
'country_Sudan' => 'Sudan',
|
|
||||||
'country_Western Sahara' => 'Western Sahara',
|
|
||||||
'country_Suriname' => 'Suriname',
|
|
||||||
'country_Svalbard and Jan Mayen' => 'Svalbard and Jan Mayen',
|
|
||||||
'country_Swaziland' => 'Swaziland',
|
|
||||||
'country_Sweden' => 'Sweden',
|
|
||||||
'country_Switzerland' => 'Switzerland',
|
|
||||||
'country_Syrian Arab Republic' => 'Syrian Arab Republic',
|
|
||||||
'country_Tajikistan' => 'Tajikistan',
|
|
||||||
'country_Thailand' => 'Thailand',
|
|
||||||
'country_Togo' => 'Togo',
|
|
||||||
'country_Tokelau' => 'Tokelau',
|
|
||||||
'country_Tonga' => 'Tonga',
|
|
||||||
'country_Trinidad and Tobago' => 'Trinidad and Tobago',
|
|
||||||
'country_United Arab Emirates' => 'United Arab Emirates',
|
|
||||||
'country_Tunisia' => 'Tunisia',
|
|
||||||
'country_Turkey' => 'Turkey',
|
|
||||||
'country_Turkmenistan' => 'Turkmenistan',
|
|
||||||
'country_Turks and Caicos Islands' => 'Turks and Caicos Islands',
|
|
||||||
'country_Tuvalu' => 'Tuvalu',
|
|
||||||
'country_Uganda' => 'Uganda',
|
|
||||||
'country_Ukraine' => 'Ukraine',
|
|
||||||
'country_Macedonia, the former Yugoslav Republic of' => 'Macedonia, the former Yugoslav Republic of',
|
|
||||||
'country_Egypt' => 'Egypt',
|
|
||||||
'country_United Kingdom' => 'United Kingdom',
|
|
||||||
'country_Guernsey' => 'Guernsey',
|
|
||||||
'country_Jersey' => 'Jersey',
|
|
||||||
'country_Isle of Man' => 'Isle of Man',
|
|
||||||
'country_Tanzania, United Republic of' => 'Tanzania, United Republic of',
|
|
||||||
'country_United States' => 'United States',
|
|
||||||
'country_Virgin Islands, U.S.' => 'Virgin Islands, U.S.',
|
|
||||||
'country_Burkina Faso' => 'Burkina Faso',
|
|
||||||
'country_Uruguay' => 'Uruguay',
|
|
||||||
'country_Uzbekistan' => 'Uzbekistan',
|
|
||||||
'country_Venezuela, Bolivarian Republic of' => 'Venezuela, Bolivarian Republic of',
|
|
||||||
'country_Wallis and Futuna' => 'Wallis and Futuna',
|
|
||||||
'country_Samoa' => 'Samoa',
|
|
||||||
'country_Yemen' => 'Yemen',
|
|
||||||
'country_Zambi' => 'Zambi',
|
|
||||||
|
|
||||||
'view_client_portal' => 'View client portal',
|
'view_client_portal' => 'View client portal',
|
||||||
'view_portal' => 'View Portal',
|
'view_portal' => 'View Portal',
|
||||||
'vendor_contacts' => 'Vendor Contacts',
|
'vendor_contacts' => 'Vendor Contacts',
|
||||||
@ -2493,7 +2242,8 @@ $LANG = array(
|
|||||||
'add_documents_to_invoice' => 'Add documents to invoice',
|
'add_documents_to_invoice' => 'Add documents to invoice',
|
||||||
'mark_expense_paid' => 'Mark paid',
|
'mark_expense_paid' => 'Mark paid',
|
||||||
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
|
||||||
'plan_price' => 'Plan Price'
|
'plan_price' => 'Plan Price',
|
||||||
|
'wrong_confirmation' => 'Incorrect confirmation code',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -256,7 +256,7 @@
|
|||||||
<div class="panel panel-default">
|
<div class="panel panel-default">
|
||||||
<div class="panel-body revenue-panel">
|
<div class="panel-body revenue-panel">
|
||||||
<div style="overflow:hidden">
|
<div style="overflow:hidden">
|
||||||
<div class="in-thin">
|
<div class="{{ $headerClass }}">
|
||||||
{{ trans('texts.total_revenue') }}
|
{{ trans('texts.total_revenue') }}
|
||||||
</div>
|
</div>
|
||||||
<div class="revenue-div in-bold pull-right" style="color:#337ab7">
|
<div class="revenue-div in-bold pull-right" style="color:#337ab7">
|
||||||
@ -277,7 +277,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="range-label-div in-thin pull-right" style="color:#337ab7;font-size:16px;display:none;">
|
<div class="range-label-div {{ $footerClass }} pull-right" style="color:#337ab7;font-size:16px;display:none;">
|
||||||
{{ trans('texts.last_30_days') }}
|
{{ trans('texts.last_30_days') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -289,7 +289,7 @@
|
|||||||
<div class="panel-body expenses-panel">
|
<div class="panel-body expenses-panel">
|
||||||
<div style="overflow:hidden">
|
<div style="overflow:hidden">
|
||||||
@if (count($expenses))
|
@if (count($expenses))
|
||||||
<div class="in-thin">
|
<div class="{{ $headerClass }}">
|
||||||
{{ trans('texts.total_expenses') }}
|
{{ trans('texts.total_expenses') }}
|
||||||
</div>
|
</div>
|
||||||
<div class="expenses-div in-bold pull-right" style="color:#337ab7">
|
<div class="expenses-div in-bold pull-right" style="color:#337ab7">
|
||||||
@ -305,7 +305,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@else
|
@else
|
||||||
<div class="in-thin">
|
<div class="{{ $headerClass }}">
|
||||||
{{ trans('texts.average_invoice') }}
|
{{ trans('texts.average_invoice') }}
|
||||||
</div>
|
</div>
|
||||||
<div class="average-div in-bold pull-right" style="color:#337ab7">
|
<div class="average-div in-bold pull-right" style="color:#337ab7">
|
||||||
@ -327,7 +327,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
<div class="range-label-div in-thin pull-right" style="color:#337ab7;font-size:16px;display:none;">
|
<div class="range-label-div {{ $footerClass }} pull-right" style="color:#337ab7;font-size:16px;display:none;">
|
||||||
{{ trans('texts.last_30_days') }}
|
{{ trans('texts.last_30_days') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -338,7 +338,7 @@
|
|||||||
<div class="panel panel-default">
|
<div class="panel panel-default">
|
||||||
<div class="panel-body outstanding-panel">
|
<div class="panel-body outstanding-panel">
|
||||||
<div style="overflow:hidden">
|
<div style="overflow:hidden">
|
||||||
<div class="in-thin">
|
<div class="{{ $headerClass }}">
|
||||||
{{ trans('texts.outstanding') }}
|
{{ trans('texts.outstanding') }}
|
||||||
</div>
|
</div>
|
||||||
<div class="outstanding-div in-bold pull-right" style="color:#337ab7">
|
<div class="outstanding-div in-bold pull-right" style="color:#337ab7">
|
||||||
@ -359,7 +359,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="range-label-div in-thin pull-right" style="color:#337ab7;font-size:16px;display:none;">
|
<div class="range-label-div {{ $footerClass }} pull-right" style="color:#337ab7;font-size:16px;display:none;">
|
||||||
{{ trans('texts.last_30_days') }}
|
{{ trans('texts.last_30_days') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -909,7 +909,7 @@
|
|||||||
@if (isset($tasks) && $tasks)
|
@if (isset($tasks) && $tasks)
|
||||||
// move the blank invoice line item to the end
|
// move the blank invoice line item to the end
|
||||||
var blank = model.invoice().invoice_items.pop();
|
var blank = model.invoice().invoice_items.pop();
|
||||||
var tasks = {!! $tasks !!};
|
var tasks = {!! json_encode($tasks) !!};
|
||||||
|
|
||||||
for (var i=0; i<tasks.length; i++) {
|
for (var i=0; i<tasks.length; i++) {
|
||||||
var task = tasks[i];
|
var task = tasks[i];
|
||||||
|
@ -252,13 +252,12 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="background-color: #fff; padding-right:20px;padding-left:20px; display:none" id="signUpSuccessDiv">
|
<div style="background-color: #fff; padding-right:20px;padding-left:20px; display:none" id="signUpSuccessDiv">
|
||||||
<br/>
|
|
||||||
<h3>{{ trans('texts.success') }}</h3>
|
<h3>{{ trans('texts.success') }}</h3>
|
||||||
<br/>
|
<br/>
|
||||||
@if (Utils::isNinja())
|
@if (Utils::isNinja())
|
||||||
{{ trans('texts.success_message') }}
|
{{ trans('texts.success_message') }}
|
||||||
@endif
|
@endif
|
||||||
<br/>
|
<br/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -50,6 +50,12 @@ class TaskCest
|
|||||||
'client_id' => $clientId,
|
'client_id' => $clientId,
|
||||||
]);
|
]);
|
||||||
$I->seeInDatabase('projects', ['name' => $project]);
|
$I->seeInDatabase('projects', ['name' => $project]);
|
||||||
|
|
||||||
|
$I->click('More Actions');
|
||||||
|
$I->click('Invoice Task');
|
||||||
|
$I->click('Mark Sent');
|
||||||
|
$I->see('Sent');
|
||||||
|
$I->see('Successfully created invoice');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function createManualTask(AcceptanceTester $I)
|
public function createManualTask(AcceptanceTester $I)
|
||||||
|
@ -14,9 +14,9 @@ class TaxRatesCest
|
|||||||
$this->faker = Factory::create();
|
$this->faker = Factory::create();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function taxRates(AcceptanceTester $I)
|
public function lineItemTaxRates(AcceptanceTester $I)
|
||||||
{
|
{
|
||||||
$I->wantTo('test tax rates');
|
$I->wantTo('test line item tax rates');
|
||||||
|
|
||||||
$clientEmail = $this->faker->safeEmail;
|
$clientEmail = $this->faker->safeEmail;
|
||||||
$productKey = $this->faker->text(10);
|
$productKey = $this->faker->text(10);
|
||||||
@ -81,4 +81,70 @@ class TaxRatesCest
|
|||||||
$I->see("\${$total}");
|
$I->see("\${$total}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function invoiceTaxRates(AcceptanceTester $I)
|
||||||
|
{
|
||||||
|
$I->wantTo('test invoice tax rates');
|
||||||
|
|
||||||
|
$clientEmail = $this->faker->safeEmail;
|
||||||
|
$productKey = $this->faker->text(10);
|
||||||
|
$invoiceTaxRate = $this->faker->randomFloat(2, 5, 15);
|
||||||
|
$invoiceTaxName = $this->faker->word();
|
||||||
|
$itemCost = $this->faker->numberBetween(1, 20);
|
||||||
|
|
||||||
|
$total = $itemCost;
|
||||||
|
$total += round($itemCost * $invoiceTaxRate / 100, 2);
|
||||||
|
|
||||||
|
$invoiceTaxRate = number_format($invoiceTaxRate, 3);
|
||||||
|
|
||||||
|
// create tax rates
|
||||||
|
$I->createTaxRate($I, $invoiceTaxName, $invoiceTaxRate);
|
||||||
|
|
||||||
|
// enable line item taxes
|
||||||
|
$I->amOnPage('/settings/tax_rates');
|
||||||
|
$I->selectOption('#default_tax_rate_id', $invoiceTaxName . ': ' . $invoiceTaxRate . '%');
|
||||||
|
$I->click('Save');
|
||||||
|
|
||||||
|
// create product
|
||||||
|
$I->amOnPage('/products/create');
|
||||||
|
$I->fillField(['name' => 'product_key'], $productKey);
|
||||||
|
$I->fillField(['name' => 'notes'], $this->faker->text(80));
|
||||||
|
$I->fillField(['name' => 'cost'], $itemCost);
|
||||||
|
$I->click('Save');
|
||||||
|
$I->wait(1);
|
||||||
|
//$I->see($productKey);
|
||||||
|
|
||||||
|
// create client
|
||||||
|
$I->amOnPage('/clients/create');
|
||||||
|
$I->fillField(['name' => 'contacts[0][email]'], $clientEmail);
|
||||||
|
$I->click('Save');
|
||||||
|
$I->see($clientEmail);
|
||||||
|
|
||||||
|
// create invoice
|
||||||
|
$I->amOnPage('/invoices/create');
|
||||||
|
$I->selectDropdown($I, $clientEmail, '.client_select .dropdown-toggle');
|
||||||
|
$I->fillField('table.invoice-table tbody tr:nth-child(1) #product_key', $productKey);
|
||||||
|
$I->click('table.invoice-table tbody tr:nth-child(1) .tt-selectable');
|
||||||
|
$I->wait(3);
|
||||||
|
|
||||||
|
// check total is right before saving
|
||||||
|
$I->see("\${$total}");
|
||||||
|
$I->click('Save Draft');
|
||||||
|
$I->wait(3);
|
||||||
|
$I->see($clientEmail);
|
||||||
|
|
||||||
|
// check total is right after saving
|
||||||
|
$I->see("\${$total}");
|
||||||
|
$I->amOnPage('/invoices');
|
||||||
|
$I->wait(2);
|
||||||
|
|
||||||
|
// check total is right in list view
|
||||||
|
$I->see("\${$total}");
|
||||||
|
|
||||||
|
// enable line item taxes
|
||||||
|
$I->amOnPage('/settings/tax_rates');
|
||||||
|
$I->selectOption('#default_tax_rate_id', '');
|
||||||
|
$I->click('Save');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user