Minor fixes for translations

This commit is contained in:
David Bomba 2023-05-18 16:25:38 +10:00
parent b27c77324e
commit 3e8171f2a8
2 changed files with 3 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class UpdateCompanyRequest extends Request
if (Ninja::isHosted()) { if (Ninja::isHosted()) {
$rules['subdomain'] = ['nullable', 'regex:/^[a-zA-Z0-9.-]+[a-zA-Z0-9]$/', new ValidSubdomain($this->all())]; $rules['subdomain'] = ['nullable', 'regex:/^[a-zA-Z0-9.-]+[a-zA-Z0-9]$/', new ValidSubdomain($this->all())];
} else { } else {
$rules['subdomain'] = 'nullable|alpha_num'; $rules['subdomain'] = 'nullable|regex:/^[a-zA-Z0-9.-]+[a-zA-Z0-9]$/';
} }
} }

View File

@ -5087,6 +5087,8 @@ $LANG = array(
'light_dark_mode' => 'Light/Dark Mode', 'light_dark_mode' => 'Light/Dark Mode',
'activities' => 'Activities', 'activities' => 'Activities',
'recent_transactions' => "Here are your company's most recent transactions:", 'recent_transactions' => "Here are your company's most recent transactions:",
'country_Palestine' => "Palestine",
'country_Taiwan' => 'Taiwan',
); );