install
This commit is contained in:
20
lang/en/auth.php
Normal file
20
lang/en/auth.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'password' => 'The provided password is incorrect.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
19
lang/en/pagination.php
Normal file
19
lang/en/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
22
lang/en/passwords.php
Normal file
22
lang/en/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| outcome such as failure due to an invalid password / reset token.
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset.',
|
||||
'sent' => 'We have emailed your password reset link.',
|
||||
'throttled' => 'Please wait before retrying.',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that email address.",
|
||||
|
||||
];
|
||||
199
lang/en/validation.php
Normal file
199
lang/en/validation.php
Normal file
@@ -0,0 +1,199 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute field must be accepted.',
|
||||
'accepted_if' => 'The :attribute field must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute field must be a valid URL.',
|
||||
'after' => 'The :attribute field must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute field must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.',
|
||||
'alpha_num' => 'The :attribute field must only contain letters and numbers.',
|
||||
'any_of' => 'The :attribute field is invalid.',
|
||||
'array' => 'The :attribute field must be an array.',
|
||||
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
|
||||
'before' => 'The :attribute field must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'array' => 'The :attribute field must have between :min and :max items.',
|
||||
'file' => 'The :attribute field must be between :min and :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must be between :min and :max.',
|
||||
'string' => 'The :attribute field must be between :min and :max characters.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'can' => 'The :attribute field contains an unauthorized value.',
|
||||
'confirmed' => 'The :attribute field confirmation does not match.',
|
||||
'contains' => 'The :attribute field is missing a required value.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute field must be a valid date.',
|
||||
'date_equals' => 'The :attribute field must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute field must match the format :format.',
|
||||
'decimal' => 'The :attribute field must have :decimal decimal places.',
|
||||
'declined' => 'The :attribute field must be declined.',
|
||||
'declined_if' => 'The :attribute field must be declined when :other is :value.',
|
||||
'different' => 'The :attribute field and :other must be different.',
|
||||
'digits' => 'The :attribute field must be :digits digits.',
|
||||
'digits_between' => 'The :attribute field must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute field has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'doesnt_contain' => 'The :attribute field must not contain any of the following: :values.',
|
||||
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.',
|
||||
'email' => 'The :attribute field must be a valid email address.',
|
||||
'ends_with' => 'The :attribute field must end with one of the following: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'extensions' => 'The :attribute field must have one of the following extensions: :values.',
|
||||
'file' => 'The :attribute field must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'array' => 'The :attribute field must have more than :value items.',
|
||||
'file' => 'The :attribute field must be greater than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than :value.',
|
||||
'string' => 'The :attribute field must be greater than :value characters.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'The :attribute field must have :value items or more.',
|
||||
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than or equal to :value.',
|
||||
'string' => 'The :attribute field must be greater than or equal to :value characters.',
|
||||
],
|
||||
'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
|
||||
'image' => 'The :attribute field must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field must exist in :other.',
|
||||
'in_array_keys' => 'The :attribute field must contain at least one of the following keys: :values.',
|
||||
'integer' => 'The :attribute field must be an integer.',
|
||||
'ip' => 'The :attribute field must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute field must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute field must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute field must be a valid JSON string.',
|
||||
'list' => 'The :attribute field must be a list.',
|
||||
'lowercase' => 'The :attribute field must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'The :attribute field must have less than :value items.',
|
||||
'file' => 'The :attribute field must be less than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than :value.',
|
||||
'string' => 'The :attribute field must be less than :value characters.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'The :attribute field must not have more than :value items.',
|
||||
'file' => 'The :attribute field must be less than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than or equal to :value.',
|
||||
'string' => 'The :attribute field must be less than or equal to :value characters.',
|
||||
],
|
||||
'mac_address' => 'The :attribute field must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => 'The :attribute field must not have more than :max items.',
|
||||
'file' => 'The :attribute field must not be greater than :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must not be greater than :max.',
|
||||
'string' => 'The :attribute field must not be greater than :max characters.',
|
||||
],
|
||||
'max_digits' => 'The :attribute field must not have more than :max digits.',
|
||||
'mimes' => 'The :attribute field must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute field must be a file of type: :values.',
|
||||
'min' => [
|
||||
'array' => 'The :attribute field must have at least :min items.',
|
||||
'file' => 'The :attribute field must be at least :min kilobytes.',
|
||||
'numeric' => 'The :attribute field must be at least :min.',
|
||||
'string' => 'The :attribute field must be at least :min characters.',
|
||||
],
|
||||
'min_digits' => 'The :attribute field must have at least :min digits.',
|
||||
'missing' => 'The :attribute field must be missing.',
|
||||
'missing_if' => 'The :attribute field must be missing when :other is :value.',
|
||||
'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
|
||||
'missing_with' => 'The :attribute field must be missing when :values is present.',
|
||||
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
|
||||
'multiple_of' => 'The :attribute field must be a multiple of :value.',
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute field format is invalid.',
|
||||
'numeric' => 'The :attribute field must be a number.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute field must contain at least one letter.',
|
||||
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute field must contain at least one number.',
|
||||
'symbols' => 'The :attribute field must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'present_if' => 'The :attribute field must be present when :other is :value.',
|
||||
'present_unless' => 'The :attribute field must be present unless :other is :value.',
|
||||
'present_with' => 'The :attribute field must be present when :values is present.',
|
||||
'present_with_all' => 'The :attribute field must be present when :values are present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_if_accepted' => 'The :attribute field is prohibited when :other is accepted.',
|
||||
'prohibited_if_declined' => 'The :attribute field is prohibited when :other is declined.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'The :attribute field format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_if_declined' => 'The :attribute field is required when :other is declined.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute field must match :other.',
|
||||
'size' => [
|
||||
'array' => 'The :attribute field must contain :size items.',
|
||||
'file' => 'The :attribute field must be :size kilobytes.',
|
||||
'numeric' => 'The :attribute field must be :size.',
|
||||
'string' => 'The :attribute field must be :size characters.',
|
||||
],
|
||||
'starts_with' => 'The :attribute field must start with one of the following: :values.',
|
||||
'string' => 'The :attribute field must be a string.',
|
||||
'timezone' => 'The :attribute field must be a valid timezone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'uppercase' => 'The :attribute field must be uppercase.',
|
||||
'url' => 'The :attribute field must be a valid URL.',
|
||||
'ulid' => 'The :attribute field must be a valid ULID.',
|
||||
'uuid' => 'The :attribute field must be a valid UUID.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap our attribute placeholder
|
||||
| with something more reader friendly such as "E-Mail Address" instead
|
||||
| of "email". This simply helps us make our message more expressive.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
663
lang/tk.json
Normal file
663
lang/tk.json
Normal file
@@ -0,0 +1,663 @@
|
||||
{
|
||||
"Actions": "Hereketler",
|
||||
"Details": "Goşmaça",
|
||||
"If you did not request a password reset, no further action is required.": "Açar sözüni üýtgetmegi talap etmedik bolsaňyz, hiç zat etmek gerek däl.",
|
||||
"Reset Password": "Açar sözü täzelemek",
|
||||
"Sorry! You are not authorized to perform this action.": "Bagyşlaň! Bu herekedi amala aşyrmak üçin siziň rugsadyňyz ýok.",
|
||||
"Confirm Password": "Açar sözü gaýtala",
|
||||
"Dashboard": "Baş sahypa",
|
||||
"Email Address": "E-mail adres",
|
||||
"Email": "E-poçta",
|
||||
"Forgot Password": "Açar sözüňi unutduňmy?",
|
||||
"Forgot your password?": "Açar sözüňi unutduňmy?",
|
||||
"Log In": "Içeri gir",
|
||||
"Logout": "Çykyş",
|
||||
"Password": "Açar söz",
|
||||
"Remember me": "Ýatda sakla",
|
||||
"Resources": "Maglumatlar",
|
||||
"Send Password Reset Link": "Açar söz täzeleme linkyny ugrat",
|
||||
"Welcome Back!": "Hoş geldiňiz!",
|
||||
"Delete Resource": "Maglumaty poz",
|
||||
"Delete": "Poz",
|
||||
"Detach Resource": "Maglumaty aýyr",
|
||||
"Detach": "Aýyr",
|
||||
"Detach Selected": "Saýlanany aýyr",
|
||||
"Delete Selected": "Saýlanany poz",
|
||||
"Force Delete Selected": "Saýlanany düýbünden poz",
|
||||
"Restore Selected": "Saýlanany dikelt",
|
||||
"Restore Resource": "Maglumaty dikelt",
|
||||
"Restore": "Dikelt",
|
||||
"Force Delete Resource": "Maglumaty düýbünden poz",
|
||||
"Force Delete": "Düýbünden poz",
|
||||
"Are you sure you want to delete this resource?": "Hakykatdan hem bu maglumaty pozmak isleýäňizmi?",
|
||||
"Are you sure you want to delete the selected resources?": "Hakykatdan hem bu saýlan maglumatyňyzy pozmak isleýäňizmi?",
|
||||
"Are you sure you want to detach this resource?": "Hakykatdan hem bu maglumaty aýyrmak isleýäňizmi?",
|
||||
"Are you sure you want to detach the selected resources?": "Hakykatdan hem bu saýlan maglumatyňyzy aýyrmak isleýäňizmi?",
|
||||
"Are you sure you want to force delete this resource?": "Hakykatdan hem bu maglumaty düýbünden pozmak isleýäňizmi?",
|
||||
"Are you sure you want to force delete the selected resources?": "Hakykatdan hem bu saýlan maglumatyňyzy düýbünden pozmak isleýäňizmi?",
|
||||
"Are you sure you want to restore this resource?": "Hakykatdan hem bu maglumaty yzyna gaýtarmak isleýäňizmi?",
|
||||
"Are you sure you want to restore the selected resources?": "Hakykatdan hem bu saýlan maglumatyňyzy yzyna gaýtarmak isleýäňizmi?",
|
||||
"No :resource matched the given criteria.": "Bu talap boýunça hiçhili :resource tapylmady.",
|
||||
"Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Bu maglumat başga bir ulanyjy tarapyndan üýtgedildi. Sahypany täzeläp, herekediňizi täzeden gaýtalap görüň",
|
||||
"Are you sure you want to delete this file?": "Hakykatdan hem bu faýly pozmak isleýäňizmi?",
|
||||
"Are you sure you want to run this action?": "Hakykatdan hem bu herekedi amala aşyrmak isleýäňizmi?",
|
||||
"Attach": "Bagla",
|
||||
"Attach & Attach Another": "Bagla & başga bagla",
|
||||
"Cancel": "Ýatyr",
|
||||
"Choose": "Saýla",
|
||||
"Choose File": "Faýl saýla",
|
||||
"Choose Type": "Görnüş saýla",
|
||||
"Choose an option": "Birini saýla",
|
||||
"Click to choose": "Saýlamak üçin bas",
|
||||
"Reset Filters": "Süzgüji täzele",
|
||||
"Create": "Goşmak",
|
||||
"Create & Add Another": "Goşmak & täze goşmak",
|
||||
"Delete File": "Faýl pozmak",
|
||||
"Edit": "Üýtgetmek",
|
||||
"Edit Attached": "Baglanany üýtget",
|
||||
"Go Home": "Baş sahypa git",
|
||||
"Hold Up!": "Saklan!",
|
||||
"Lens": "Lens",
|
||||
"New": "Täze",
|
||||
"Next": "Indiki",
|
||||
"Only Trashed": "Diňe pozulanlary",
|
||||
"Per Page": "Sahypa başyna",
|
||||
"Preview": "Görkez",
|
||||
"Previous": "Öňki",
|
||||
"No Data": "Maglumat ýok",
|
||||
"No Current Data": "Häzirki maglumat ýok",
|
||||
"No Prior Data": "Öňki maglumat ýok",
|
||||
"No Increase": "Artyş ýok",
|
||||
"No Results Found.": "Hiçhili maglumat tapylmady.",
|
||||
"Standalone Actions": "Özbaşdak hereketler",
|
||||
"Run Action": "Herekedi işlet",
|
||||
"Select Action": "Hereket saýla",
|
||||
"Search": "Gözle",
|
||||
"Press / to search": "Gözletmek üçin / bas",
|
||||
"Select all": "Hemmesini saýla",
|
||||
"Something went wrong.": "Näsazlyk ýüze çykdy.",
|
||||
"The action was executed successfully.": "Hereket üstünlikli tamamlandy!",
|
||||
"The government won't let us show you what's behind these doors": "Hökümet, ýapyk gapylar arkasynda nämeler bolup geçýänini bize görkezmez.",
|
||||
"Update": "Ýatda sakla",
|
||||
"Update & Continue Editing": "Ýatda sakla & üýtgetmäge dowam et",
|
||||
"View": "Görkez",
|
||||
"We're lost in space. The page you were trying to view does not exist.": "Görmek isleýän sahypaňyz ýok.",
|
||||
"Show Content": "Içini görkez",
|
||||
"Hide Content": "Içini buk",
|
||||
"Whoops": "Eýwaý",
|
||||
"Whoops!": "Eýwaý!",
|
||||
"With Trashed": "Pozulanlar bilen",
|
||||
"Trashed": "Pozulanlar",
|
||||
"Write": "Ýaz",
|
||||
"total": "jemi",
|
||||
"January": "Ýanwar",
|
||||
"February": "Fewral",
|
||||
"March": "Mart",
|
||||
"April": "Aprel",
|
||||
"May": "Maý",
|
||||
"June": "Iýun",
|
||||
"July": "Iýul",
|
||||
"August": "Awgust",
|
||||
"September": "Sentýabr",
|
||||
"October": "Oktýabr",
|
||||
"November": "Noýabr",
|
||||
"December": "Dekabr",
|
||||
"Afghanistan": "Owganystan",
|
||||
"Aland Islands": "Aland adalary",
|
||||
"Albania": "Albaniýa",
|
||||
"Algeria": "Alžir",
|
||||
"American Samoa": "Amerikan Samoasy",
|
||||
"Andorra": "Andorra",
|
||||
"Angola": "Angola",
|
||||
"Anguilla": "Angilýa",
|
||||
"Antarctica": "Antarktika",
|
||||
"Antigua And Barbuda": "Antigua we Barbuda",
|
||||
"Argentina": "Argentina",
|
||||
"Armenia": "Ermenistan",
|
||||
"Aruba": "Aruba",
|
||||
"Australia": "Awstraliýa",
|
||||
"Austria": "Awstriýa",
|
||||
"Azerbaijan": "Azerbaýjan",
|
||||
"Bahamas": "Bagama adalary",
|
||||
"Bahrain": "Bahreýn",
|
||||
"Bangladesh": "Bangladeş",
|
||||
"Barbados": "Barbados",
|
||||
"Belarus": "Belarus",
|
||||
"Belgium": "Belgiýa",
|
||||
"Belize": "Beliz",
|
||||
"Benin": "Benin",
|
||||
"Bermuda": "Bermuda",
|
||||
"Bhutan": "Butan",
|
||||
"Bolivia": "Boliwiýa",
|
||||
"Bonaire, Sint Eustatius and Saba": "Karib Niderlandlary",
|
||||
"Bosnia And Herzegovina": "Bosniýa we Gersegowina",
|
||||
"Botswana": "Botswana",
|
||||
"Bouvet Island": "Buwe adasy",
|
||||
"Brazil": "Braziliýa",
|
||||
"British Indian Ocean Territory": "Britaniýanyň Hindi okeanyndaky territoriýalary",
|
||||
"Brunei Darussalam": "Bruneý",
|
||||
"Bulgaria": "Bolgariýa",
|
||||
"Burkina Faso": "Burkina-Faso",
|
||||
"Burundi": "Burundi",
|
||||
"Cambodia": "Kamboja",
|
||||
"Cameroon": "Kamerun",
|
||||
"Canada": "Kanada",
|
||||
"Cape Verde": "Kabo-Werde",
|
||||
"Cayman Islands": "Kaýman adalary",
|
||||
"Central African Republic": "Merkezi Afrika Respublikasy",
|
||||
"Chad": "Çad",
|
||||
"Chile": "Çili",
|
||||
"China": "Hytaý",
|
||||
"Christmas Island": "Roždestwo adasy",
|
||||
"Cocos (Keeling) Islands": "Kokos (Kiling) adalary",
|
||||
"Colombia": "Kolumbiýa",
|
||||
"Comoros": "Komor adalary",
|
||||
"Congo": "Kongo - Brazzawil",
|
||||
"Congo, Democratic Republic": "Kongo - Kinşasa",
|
||||
"Cook Islands": "Kuk adalary",
|
||||
"Costa Rica": "Kosta-Rika",
|
||||
"Cote D'Ivoire": "Kot-d’Iwuar",
|
||||
"Croatia": "Horwatiýa",
|
||||
"Cuba": "Kuba",
|
||||
"Curaçao": "Kýurasao",
|
||||
"Cyprus": "Kipr",
|
||||
"Czech Republic": "Çehiýa",
|
||||
"Denmark": "Daniýa",
|
||||
"Djibouti": "Jibuti",
|
||||
"Dominica": "Dominika",
|
||||
"Dominican Republic": "Dominikan Respublikasy",
|
||||
"Ecuador": "Ekwador",
|
||||
"Egypt": "Müsür",
|
||||
"El Salvador": "Salwador",
|
||||
"Equatorial Guinea": "Ekwatorial Gwineýa",
|
||||
"Eritrea": "Eritreýa",
|
||||
"Estonia": "Estoniýa",
|
||||
"Ethiopia": "Efiopiýa",
|
||||
"Falkland Islands (Malvinas)": "Folklend adalary",
|
||||
"Faroe Islands": "Farer adalary",
|
||||
"Fiji": "Fiji",
|
||||
"Finland": "Finlýandiýa",
|
||||
"France": "Fransiýa",
|
||||
"French Guiana": "Fransuz Gwianasy",
|
||||
"French Polynesia": "Fransuz Polineziýasy",
|
||||
"French Southern Territories": "Fransuz günorta territoriýalary",
|
||||
"Gabon": "Gabon",
|
||||
"Gambia": "Gambiýa",
|
||||
"Georgia": "Gruziýa",
|
||||
"Germany": "Germaniýa",
|
||||
"Ghana": "Gana",
|
||||
"Gibraltar": "Gibraltar",
|
||||
"Greece": "Gresiýa",
|
||||
"Greenland": "Grenlandiýa",
|
||||
"Grenada": "Grenada",
|
||||
"Guadeloupe": "Gwadelupa",
|
||||
"Guam": "Guam",
|
||||
"Guatemala": "Gwatemala",
|
||||
"Guernsey": "Gernsi",
|
||||
"Guinea": "Gwineýa",
|
||||
"Guinea-Bissau": "Gwineýa-Bisau",
|
||||
"Guyana": "Gaýana",
|
||||
"Haiti": "Gaiti",
|
||||
"Heard Island & Mcdonald Islands": "Herd we Makdonald adalary",
|
||||
"Holy See (Vatican City State)": "Watikan",
|
||||
"Honduras": "Gonduras",
|
||||
"Hong Kong": "Gonkong",
|
||||
"Hungary": "Wengriýa",
|
||||
"Iceland": "Islandiýa",
|
||||
"India": "Hindistan",
|
||||
"Indonesia": "Indoneziýa",
|
||||
"Iran, Islamic Republic Of": "Eýran",
|
||||
"Iraq": "Yrak",
|
||||
"Ireland": "Irlandiýa",
|
||||
"Isle Of Man": "Men adasy",
|
||||
"Israel": "Ysraýyl",
|
||||
"Italy": "Italiýa",
|
||||
"Jamaica": "Ýamaýka",
|
||||
"Japan": "Ýaponiýa",
|
||||
"Jersey": "Jersi",
|
||||
"Jordan": "Iordaniýa",
|
||||
"Kazakhstan": "Gazagystan",
|
||||
"Kenya": "Keniýa",
|
||||
"Kiribati": "Kiribati",
|
||||
"Korea, Democratic People's Republic of": "Demirgazyk Koreýa",
|
||||
"Korea": "Günorta Koreýa",
|
||||
"Kosovo": "Kosowo",
|
||||
"Kuwait": "Kuweýt",
|
||||
"Kyrgyzstan": "Gyrgyzystan",
|
||||
"Lao People's Democratic Republic": "Laos",
|
||||
"Latvia": "Latwiýa",
|
||||
"Lebanon": "Liwan",
|
||||
"Lesotho": "Lesoto",
|
||||
"Liberia": "Liberiýa",
|
||||
"Libyan Arab Jamahiriya": "Liwiýa",
|
||||
"Liechtenstein": "Lihtenşteýn",
|
||||
"Lithuania": "Litwa",
|
||||
"Luxembourg": "Lýuksemburg",
|
||||
"Macao": "Makao",
|
||||
"Macedonia": "Demirgazyk Makedoniýa",
|
||||
"Madagascar": "Madagaskar",
|
||||
"Malawi": "Malawi",
|
||||
"Malaysia": "Malaýziýa",
|
||||
"Maldives": "Maldiwler",
|
||||
"Mali": "Mali",
|
||||
"Malta": "Malta",
|
||||
"Marshall Islands": "Marşall adalary",
|
||||
"Martinique": "Martinika",
|
||||
"Mauritania": "Mawritaniýa",
|
||||
"Mauritius": "Mawrikiý",
|
||||
"Mayotte": "Maýotta",
|
||||
"Mexico": "Meksika",
|
||||
"Micronesia, Federated States Of": "Mikroneziýa",
|
||||
"Moldova": "Moldowa",
|
||||
"Monaco": "Monako",
|
||||
"Mongolia": "Mongoliýa",
|
||||
"Montenegro": "Çernogoriýa",
|
||||
"Montserrat": "Monserrat",
|
||||
"Morocco": "Marokko",
|
||||
"Mozambique": "Mozambik",
|
||||
"Myanmar": "Mýanma (Birma)",
|
||||
"Namibia": "Namibiýa",
|
||||
"Nauru": "Nauru",
|
||||
"Nepal": "Nepal",
|
||||
"Netherlands": "Niderlandlar",
|
||||
"New Caledonia": "Täze Kaledoniýa",
|
||||
"New Zealand": "Täze Zelandiýa",
|
||||
"Nicaragua": "Nikaragua",
|
||||
"Niger": "Niger",
|
||||
"Nigeria": "Nigeriýa",
|
||||
"Niue": "Niue",
|
||||
"Norfolk Island": "Norfolk adasy",
|
||||
"Northern Mariana Islands": "Demirgazyk Mariana adalary",
|
||||
"Norway": "Norwegiýa",
|
||||
"Oman": "Oman",
|
||||
"Pakistan": "Pakistan",
|
||||
"Palau": "Palau",
|
||||
"Palestinian Territory, Occupied": "Palestina territoriýasy",
|
||||
"Panama": "Panama",
|
||||
"Papua New Guinea": "Papua - Täze Gwineýa",
|
||||
"Paraguay": "Paragwaý",
|
||||
"Peru": "Peru",
|
||||
"Philippines": "Filippinler",
|
||||
"Pitcairn": "Pitkern adalary",
|
||||
"Poland": "Polşa",
|
||||
"Portugal": "Portugaliýa",
|
||||
"Puerto Rico": "Puerto-Riko",
|
||||
"Qatar": "Katar",
|
||||
"Reunion": "Reýunýon",
|
||||
"Romania": "Rumyniýa",
|
||||
"Russian Federation": "Russiýa",
|
||||
"Rwanda": "Ruanda",
|
||||
"Saint Barthelemy": "Sen-Bartelemi",
|
||||
"Saint Helena": "Keramatly Ýelena adasy",
|
||||
"Saint Kitts And Nevis": "Sent-Kits we Newis",
|
||||
"Saint Lucia": "Sent-Lýusiýa",
|
||||
"Saint Martin": "Sen-Marten",
|
||||
"Saint Pierre And Miquelon": "Sen-Pýer we Mikelon",
|
||||
"Saint Vincent And Grenadines": "Sent-Winsent we Grenadinler",
|
||||
"Samoa": "Samoa",
|
||||
"San Marino": "San-Marino",
|
||||
"Sao Tome And Principe": "San-Tome we Prinsipi",
|
||||
"Saudi Arabia": "Saud Arabystany",
|
||||
"Senegal": "Senegal",
|
||||
"Serbia": "Serbiýa",
|
||||
"Seychelles": "Seýşel adalary",
|
||||
"Sierra Leone": "Sýerra-Leone",
|
||||
"Singapore": "Singapur",
|
||||
"Sint Maarten (Dutch part)": "Sint-Marten",
|
||||
"Slovakia": "Slowakiýa",
|
||||
"Slovenia": "Sloweniýa",
|
||||
"Solomon Islands": "Solomon adalary",
|
||||
"Somalia": "Somali",
|
||||
"South Africa": "Günorta Afrika",
|
||||
"South Georgia And Sandwich Isl.": "Günorta Georgiýa we Günorta Sendwiç adasy",
|
||||
"South Sudan": "Günorta Sudan",
|
||||
"Spain": "Ispaniýa",
|
||||
"Sri Lanka": "Şri-Lanka",
|
||||
"Sudan": "Sudan",
|
||||
"Surename": "Surename",
|
||||
"Svalbard And Jan Mayen": "Şpisbergen we Ýan-Maýen",
|
||||
"Swaziland": "Eswatini",
|
||||
"Sweden": "Şwesiýa",
|
||||
"Switzerland": "Şweýsariýa",
|
||||
"Syrian Arab Republic": "Siriýa",
|
||||
"Taiwan": "Taýwan",
|
||||
"Tajikistan": "Täjigistan",
|
||||
"Tanzania": "Tanzaniýa",
|
||||
"Thailand": "Taýland",
|
||||
"Timor-Leste": "Timor-Leste",
|
||||
"Togo": "Togo",
|
||||
"Tokelau": "Tokelau",
|
||||
"Tonga": "Tonga",
|
||||
"Trinidad And Tobago": "Trinidad we Tobago",
|
||||
"Tunisia": "Tunis",
|
||||
"Turkey": "Türkiýe",
|
||||
"Turkmenistan": "Türkmenistan",
|
||||
"Turks And Caicos Islands": "Terks we Kaýkos adalary",
|
||||
"Tuvalu": "Tuwalu",
|
||||
"Uganda": "Uganda",
|
||||
"Ukraine": "Ukraina",
|
||||
"United Arab Emirates": "Birleşen Arap Emirlikleri",
|
||||
"United Kingdom": "Birleşen Patyşalyk",
|
||||
"United States": "Amerikanyň Birleşen Ştatlary",
|
||||
"United States Outlying Islands": "ABŞ-nyň daşarky adalary",
|
||||
"Uruguay": "Urugwaý",
|
||||
"Uzbekistan": "Özbegistan",
|
||||
"Vanuatu": "Wanuatu",
|
||||
"Venezuela": "Wenesuela",
|
||||
"Viet Nam": "Wýetnam",
|
||||
"Virgin Islands, British": "Britan Wirgin adalary",
|
||||
"Virgin Islands, U.S.": "ABŞ-nyň Wirgin adalary",
|
||||
"Wallis And Futuna": "Uollis we Futuna",
|
||||
"Western Sahara": "Günbatar Sahara",
|
||||
"Yemen": "Ýemen",
|
||||
"Zambia": "Zambiýa",
|
||||
"Zimbabwe": "Zimbabwe",
|
||||
"Yes": "Hawa",
|
||||
"No": "Ýok",
|
||||
"Action Name": "Ady",
|
||||
"Action Initiated By": "Başladan",
|
||||
"Action Target": "Nyşan",
|
||||
"Action Status": "Ýagdaýy",
|
||||
"Action Happened At": "Bolan wagty",
|
||||
"resource": "maglumat",
|
||||
"resources": "maglumatlar",
|
||||
"Choose date": "Sene saýla",
|
||||
"The :resource was created!": ":resource goşuldy!",
|
||||
"The :resource was updated!": ":resource üýtgedildi!",
|
||||
"The resource was updated!": "Maglumat üýtgedildi!",
|
||||
"The :resource was deleted!": ":resource pozuldy!",
|
||||
"The :resource was restored!": ":resource dikeldildi!",
|
||||
"Increase": "Köpelme",
|
||||
"Constant": "Durnukly",
|
||||
"Decrease": "Peselme",
|
||||
"Reset Password Notification": "Açar söz täzeleme duýduruşy",
|
||||
"Nova User": "Nova Ulanyjysy",
|
||||
"of": "of",
|
||||
"no file selected": "hiçhili faýl saýlanmady",
|
||||
"Sorry, your session has expired.": "Bagyşlaň, siziň seansyňyz wagty doldy.",
|
||||
"Reload": "Täzele",
|
||||
"Key": "Açar",
|
||||
"Value": "Maglumat",
|
||||
"Add row": "Setir goş",
|
||||
"Attach :resource": ":resource bagla",
|
||||
"Create :resource": ":resource goşmak",
|
||||
"Choose :resource": ":resource saýla",
|
||||
"New :resource": "Täze :resource",
|
||||
"Edit :resource": ":resource üýtget",
|
||||
"Update :resource": ":resource ýatda sakla",
|
||||
"Start Polling": "Awto täzelenme",
|
||||
"Stop Polling": "Awto täzelenmäni sakla",
|
||||
"Choose :field": ":field saýla",
|
||||
"Download": "Indir",
|
||||
"Action": "Hereket",
|
||||
"Changes": "Üýtgeşmeler",
|
||||
"Original": "Orginal",
|
||||
"This resource no longer exists": "Bu maglumat elýeterli däl",
|
||||
":resource Details": ":resource maglumatlary",
|
||||
"There are no available options for this resource.": "Bu maglumata degişli hiç zat ýok.",
|
||||
"All resources loaded.": "Ähli maglumatlar ýüklendi.",
|
||||
"Load :perPage More": "Ýene :perPage ýükle",
|
||||
":amount Total": ":amount jemi",
|
||||
"Show All Fields": "Ähli sütünleri görkez",
|
||||
"There was a problem submitting the form.": "Formy ýatda saklamakda bir näsazlyk ýüze çykdy.",
|
||||
"There was a problem executing the action.": "Bu herekedi amala aşyrmakda bir näsazlyk ýüze çykdy.",
|
||||
"Do you really want to leave? You have unsaved changes.": "Siz hakykatdanam gitmek isleýärsiňizmi? Ýatda saklanmadyk üýtgeşmeleriňiz bar.",
|
||||
"The file was deleted!": "Bu faýl pozulan!",
|
||||
"This file field is read-only.": "Bu faýl meýdany diňe görmek niýetli.",
|
||||
"No additional information...": "Goşmaça maglumat ýok...",
|
||||
"ID": "ID",
|
||||
"30 Days": "30 Gün",
|
||||
"60 Days": "60 Gün",
|
||||
"90 Days": "90 Gün",
|
||||
"365 Days": "365 Gün",
|
||||
"Today": "Şugün",
|
||||
"Month To Date": "Aýyň başyndan bäri",
|
||||
"Quarter To Date": "Çärýekden bäri",
|
||||
"Year To Date": "Ýylyň başyndan bäri",
|
||||
"Customize": "Ütgetmek",
|
||||
"Update :resource: :title": ":resource: :title täzele",
|
||||
"Update attached :resource: :title": ":resource: :title baglanşygy täzele",
|
||||
":resource Details: :title": ":resource :title maglumaty:",
|
||||
"The HasOne relationship has already been filled.": "HasOne baglanşygy eýýäm bar.",
|
||||
"An error occurred while uploading the file.": "Faýl ýüklemekde näsazlyk döredi.",
|
||||
"Täze Karz sargyt": "Täze Karz sargyt",
|
||||
"Status": "Status",
|
||||
"Bellik": "Bellik",
|
||||
"Karz": "Karz",
|
||||
"Karz görnüşi": "Karz görnüşi",
|
||||
"Lokasiýa": "Lokasiýa",
|
||||
"Welaýat": "Welaýat",
|
||||
"Şahamça": "Şahamça",
|
||||
"Şahsy maglumatlar": "Şahsy maglumatlar",
|
||||
"Ady": "Ady",
|
||||
"Familiýasy": "Familiýasy",
|
||||
"Atasynyň ady": "Atasynyň ady",
|
||||
"Education": "Bilimi",
|
||||
"Marital status": "Maşgala ýagdaýy",
|
||||
"Doglan güni": "Doglan güni",
|
||||
"Proscription for home": "Yazgy edilen salgyňyz",
|
||||
"Current home address": "Häzirki ýaşaýyş ýeri",
|
||||
"Pasport": "Pasport",
|
||||
"Pasport seriýasy": "Pasport seriýasy",
|
||||
"Pasport belgisi": "Pasport belgisi",
|
||||
"Pasport berlen senesi": "Pasport berlen senesi",
|
||||
"Passport given by": "Kim tarapyndan berildi",
|
||||
"Born place (passport)": "Doglan ýeri (pasport)",
|
||||
"Habarlaşmak üçin maglumatlar": "Habarlaşmak üçin maglumatlar",
|
||||
"E-poçta": "E-poçta",
|
||||
"Telefon": "Telefon",
|
||||
"Telefon goşmaça": "Telefon goşmaça",
|
||||
"Home phone": "Öý telefony",
|
||||
"Work": "Iş",
|
||||
"Work company name": "Işleýän edaranyň/kärhananyň ady",
|
||||
"HR number": "Işgärler bölüminiň iş belgisi",
|
||||
"Işleýän welaýatyňyz": "Işleýän welaýatyňyz",
|
||||
"Işleýän etrabyňyz": "Işleýän etrabyňyz",
|
||||
"Work position": "Wezipe",
|
||||
"Salary": "Zähmet haky",
|
||||
"Işe başlan wagtyňyz": "Işe başlan wagtyňyz",
|
||||
"Pasport files": "Pasport faýýlar",
|
||||
"Passport (page 1)": "Pasport (sahypa 1)",
|
||||
"Passport (page 2-3)": "Pasport (2-3-nji sahypa)",
|
||||
"Passport (page 8-9)": "Pasport (8-9 sahypa)",
|
||||
"Passport (page 32)": "Pasport (32-nji sahypa)",
|
||||
"Karz maglumatlary": "Karz maglumatlary",
|
||||
"Settings": "Sazlamalar",
|
||||
"Branches and provinces": "Etraplar we şahamçalar",
|
||||
"Region": "Welaýat",
|
||||
"Name": "Ady",
|
||||
"Active": "Işjeň",
|
||||
"Created At": "Döredilen",
|
||||
"Updated At": "Üýtgedilen",
|
||||
"Unique code": "Unikal kod",
|
||||
"Province": "Etrap",
|
||||
"Provinces": "Etraplar",
|
||||
"Branch": "Şahamça",
|
||||
"Branches": "Şahamçalar",
|
||||
"Phone": "Telefon",
|
||||
"Additional phone": "Telefon goşmaça",
|
||||
"Phone numbers": "Telefon belgileri",
|
||||
"Phone number": "Telefon belgisi",
|
||||
"Add phone number": "Telefon belgisini goş",
|
||||
"Address": "Salgy",
|
||||
"Billing Credentials": "Billing maglumatlary",
|
||||
"Tax": "Salgyt",
|
||||
"Loan term": "Karz wagty",
|
||||
"Notes": "Bellikler",
|
||||
"New loan order": "Täze karz sargyt",
|
||||
"User": "Ulanyjy",
|
||||
"Users": "Ulanyjylar",
|
||||
"All users": "Ähli ulanyjylar",
|
||||
"Variant Also Negotiates": "Wariant hem gepleşik geçirýär",
|
||||
"Verify Phone Number": "Telefon beligiňizi tassyklaň",
|
||||
"Phone verified": "Telefon tassyklanan",
|
||||
"Verify Email Address": "E-poçta salgysyny barlaň",
|
||||
"Verify Your Email Address": "E-poçta salgyňyzy barlaň",
|
||||
"Web Server is Down": "Web Serwer ýapyk",
|
||||
"Widow": "Adamsy ýa-da aýaly aradan çykan",
|
||||
"Work province": "Işleýän etrabyňyz",
|
||||
"Work region": "Işleýän welaýatyňyz",
|
||||
"Work started at": "Işe başlan wagtyňyz",
|
||||
"You are logged in!": "Sessiýa açdyňyz",
|
||||
"You are receiving this email because we received a password reset request for your account.": "Bu e-poçta alýarsyňyz, sebäbi hasabyňyz üçin paroly täzeden düzmek haýyşyny aldyk.",
|
||||
"Write a correct data please": "Dogry maglumat girizmegiňizi Sizden haýyş edýäris.",
|
||||
"Full Name": "Doly ady",
|
||||
"Activity": "Işjeňlik",
|
||||
"Inactive": "Işjeň däl",
|
||||
"Online panel": "Onlaýn kabulhana",
|
||||
"Username": "Ulanyjy ady",
|
||||
"Go to login page": "Login sahypa geç",
|
||||
"Submit": "Tassyklamak",
|
||||
"Verification": "Tassyklamak",
|
||||
"verification": "tassyklamak",
|
||||
"Verification code": "Tassyklaýyş belgi",
|
||||
"Please, verify your phone": "Telefon beligiňizi tassyklamagyňyzy haýyş edýäris.",
|
||||
"Enter your username to continue": "Dowam etmek üçin ulanyjy adyny giriziň",
|
||||
"Incorrect verification code": "Nädogry belgi",
|
||||
"Now you can set your password, but please make sure that you don't forget it!": "Indi açar sözüni täzeläp bilersiňiz, ýöne ýatdan çykarmaň!",
|
||||
"Your password has been updated": "Siziň açar sözüňiz üýtgedildi",
|
||||
"We send you a verification code to": "Tassyklama belgini şu belgä ugratdyk",
|
||||
"Backups": "Bekaplar",
|
||||
"all": "ählisi",
|
||||
"Created by": "Sargyt eden",
|
||||
"Updated by": "Üýtgeden",
|
||||
"Passport files": "Pasport faýýlar",
|
||||
"Card order": "Kart sargyt",
|
||||
"Card orders": "Kart sargytlary",
|
||||
"Reason for issuing the card": "Kartyň çykarylmagynyň sebäbi",
|
||||
"Card state": "Kartyň çykarylmagynyň sebäbi",
|
||||
"Card states": "Kartyň çykarylmagynyň sebäpleri",
|
||||
"Card": "Kart",
|
||||
"Card type": "Kart görnüşi",
|
||||
"Card types": "Kart görnüşleri",
|
||||
"Old surname (if changed)": "Köne familiýaňyz (eger üýtgän bolsa)",
|
||||
"Work location and your position": "Işleýän ýeriňiz we wezipäňiz",
|
||||
"Reason": "Sebäp",
|
||||
"Loan department": "Karz bölümi",
|
||||
"Card department": "Kart bölümi",
|
||||
"Price": "Baha",
|
||||
"Citizenship": "Raýatlyk",
|
||||
"Permission": "Rugsat",
|
||||
"Permissions": "Rugsatlar",
|
||||
"Code": "Kod",
|
||||
"I accept terms of contract": "Şertnama bilen razylaşýaryn",
|
||||
"Click to read": "Okamak üçin bas",
|
||||
"Agree": "Razylaşýaryn",
|
||||
"I have read the contract": "Şertnama bilen tanyşdym",
|
||||
"Go to home": "Baş sahypa git",
|
||||
"Payment is successful": "Töleg geçdi",
|
||||
"Payment has failed": "Töleg geçmedi",
|
||||
"Help": "Kömek",
|
||||
"Successfully logged in": "Üstünlik bilen girdiňiz",
|
||||
"Please wait while we redirect you to your personal account": "Şahsy hasabyňyza geçýänçä garaşyň",
|
||||
"Press continue": "Dowam etmek düwme basyň",
|
||||
"Order new card": "Täze kart açmak",
|
||||
"Card requisite": "Kart rekwizit",
|
||||
"Card requisites": "Kart rekwizitler",
|
||||
"Order a cart requisite": "Kart rekwiziti üçin sargyt dörediň",
|
||||
"Update cart requisite": "Üýtget",
|
||||
"Card number": "Kart belgisi",
|
||||
"Card pin": "Kart pin bukja",
|
||||
"Card pins": "Kart pin bukjalar",
|
||||
"Certificate of loan repayment": "Karzyň ýapylandygy barada güwanama almak",
|
||||
"Certificates of loan repayment": "Karzyň ýapylandygy barada güwanamalar",
|
||||
"Ready files": "Taýýar faýllar",
|
||||
"Paid": "Tölenen",
|
||||
"Unpaid": "Tölenmedik",
|
||||
"Clients": "Müşderiler",
|
||||
"Client": "Müşderi",
|
||||
"Successfully registered": "Üstünlikli hasaba alyndyňyz",
|
||||
"Please, now verify your phone number to continue": "Dowam etmek üçin telefon belgiňizi tassyklaň",
|
||||
"Swift payments": "Swift tölegler",
|
||||
"Swift payment": "Swift töleg",
|
||||
"International payments": "Halkara tölegler",
|
||||
"Visa, Master, Sber, WU": "Visa, Master, Sber, WU",
|
||||
"Visa/Master payment": "Visa/Master tölegler",
|
||||
"Visa/Master payments": "Visa/Master tölegleri",
|
||||
"For students": "Talyplar üçin",
|
||||
"Application type": "Ýüztutmanyň görnüşi",
|
||||
"Payment sender data": "Tölegi ugradyjynyň maglumatlary",
|
||||
"Payee information": "Tölegi kabul edijiniň maglumatlary",
|
||||
"Reciver files": "Kabul ediji talyp boýunça resminamalary",
|
||||
"Sender files": "Ugradyjy boýunça resminamalary",
|
||||
"Previus": "Yza",
|
||||
"Loading": "Ýüklenilýär",
|
||||
"or": "ýada",
|
||||
"Amount of loan": "Karz mukdary",
|
||||
"Name on card": "Kartdaky ady",
|
||||
"Expiration": "Möhleti",
|
||||
"Expiration month": "Möhleti (aý)",
|
||||
"Expiration year": "Möhleti (ýyl)",
|
||||
"Guarantor": "Zamun",
|
||||
"Guarantor name": "Zamunyň ady",
|
||||
"Guarantor Surname": "Zamunyň familiýasy",
|
||||
"Guarantor Patronic name": "Zamunyň atasynyň ady",
|
||||
"Satisfiable": "Kanagatlanarly",
|
||||
"Insufficient": "Kanagatlanarsyz",
|
||||
"Unknown": "Näbelli",
|
||||
"Sber payments": "Sber tölegler",
|
||||
"Sber payment": "Sber töleg",
|
||||
"Select payment method": "Töleg görnüşini saýlaň",
|
||||
"Loan Card": "Karz karty",
|
||||
"Send payment": "Tölegi geçir",
|
||||
"Currencies": "Walýutalar",
|
||||
"Currency rate": "Walýuta kursy",
|
||||
"Passport number": "Pasport nomeri",
|
||||
"Fetch loan history": "Karz taryhyny görmek",
|
||||
"See": "Görmek",
|
||||
"Online payment": "Onlaýn töleg",
|
||||
"Online payment history": "Onlaýn töleg taryhy",
|
||||
"Make payment": "Töleg",
|
||||
"Visa/Master, Sber Settings": "Visa/Master, Sber sazlamalar",
|
||||
"Loan order required docs": "Karz gerekli resminamalary",
|
||||
"Required docs": "Gerekli resminamalar",
|
||||
"Required documents": "Gerekli resminamalar",
|
||||
"Payment items": "Тöleg taryhy",
|
||||
"This month": "Şul aý",
|
||||
"Retry payment": "Tölegi täzeden geçir",
|
||||
"Operators": "Operatorlar",
|
||||
"Operator": "Operator",
|
||||
"Loan order created": "Karz sargydy döredildi",
|
||||
"Loan order updated": "Karz sargydy üýtgedildi",
|
||||
"Loan order deleted": "Karz sargydy pozuldy",
|
||||
"Card transaction": "Kart herekedi",
|
||||
"Card transactions": "Kart hereketleri",
|
||||
"Card balance": "Kart galyndysy",
|
||||
"Card balances": "Kart galyndylary",
|
||||
"Card holder name": "Kartyň eýesiniň ady",
|
||||
"Money Balance": "Galyndy",
|
||||
"Start date": "Başlangyç sene",
|
||||
"End date": "Ahyrky sene",
|
||||
"Expiry date": "Möhleti",
|
||||
"Successfully created": "Üstünlikli döredildi",
|
||||
"Successfully updated": "Üstünlikli üýtgedildi",
|
||||
"Sync with system": "Ulgam bn birikdirmek",
|
||||
"Synced with system": "Ulgam bn birikdirilen",
|
||||
"Loan history": "Karz taryhy",
|
||||
"Completed": "Kanagatlandyrylan",
|
||||
"Cancelled": "Ýatyrylan",
|
||||
"Pending": "Garaşylýar",
|
||||
"Registered": "Bellige alyndy",
|
||||
"Processing": "Işlenilýär",
|
||||
"Loan & Bank": "Karz we Bank",
|
||||
"Loan type": "Karz görnüşi",
|
||||
"Loan amount": "Karz mukdary",
|
||||
"Location": "Lokasiýa",
|
||||
"Personal information": "Şahsy maglumatlar",
|
||||
"Patronic name": "Atasynyň ady",
|
||||
"Birth date": "Doglan güni",
|
||||
"Passport": "Pasport",
|
||||
"Passport serie": "Pasport seriýasy",
|
||||
"Passport serie and number": "Pasport seriýasy we belgisi",
|
||||
"Passport given date": "Pasport berlen senesi",
|
||||
"Passport serie and given date": "Pasport seriýasy we berlen senesi",
|
||||
"Loan type and amount": "Karzyň görnüşi we mukdary",
|
||||
"Max is 40 000 TMT": "40 000 TMT çenli",
|
||||
"Surname": "Familiýasy",
|
||||
"My profile": "Profilim",
|
||||
"Fill passport data": "Pasport maglumatlaryny dolduryň",
|
||||
"Profile updated": "Profile üýtgedildi",
|
||||
"Profile Information": "Profil maglumatlary",
|
||||
"Fill your account profile information": "Hasabyňyzyň profil maglumatyny dolduryň",
|
||||
"My loans": "Karzlarym"
|
||||
}
|
||||
9
lang/tk/auth.php
Normal file
9
lang/tk/auth.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'failed' => 'Bu şahsyýetnamalar, ýazgylarymyza gabat gelmeýär.',
|
||||
'password' => 'Parol nädogry',
|
||||
'throttle' => 'Giriş synanyşyklary gaty köp. :seconds sekuntda gaýtadan synanyşmagyňyzy haýyş edýäris.',
|
||||
];
|
||||
84
lang/tk/http-statuses.php
Normal file
84
lang/tk/http-statuses.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'0' => 'Näbelli säwlik',
|
||||
'100' => 'Dowam et',
|
||||
'101' => 'Protokollary çalyşmak',
|
||||
'102' => 'Gaýtadan işlemek',
|
||||
'200' => 'Bolýar',
|
||||
'201' => 'Döredildi',
|
||||
'202' => 'Kabul edildi',
|
||||
'203' => 'Ygtyýarly däl maglumatlar',
|
||||
'204' => 'Mazmuny ýok',
|
||||
'205' => 'Mazmuny täzeden düzmek',
|
||||
'206' => 'Bölekleýin mazmun',
|
||||
'207' => 'Köp ýagdaý',
|
||||
'208' => 'Eýýäm habar berildi',
|
||||
'226' => 'SH ulanylýar',
|
||||
'300' => 'Birnäçe saýlaw',
|
||||
'301' => 'Hemişelik göçürildi',
|
||||
'302' => 'Tapyldy',
|
||||
'303' => 'Başgalaryna serediň',
|
||||
'304' => 'Üýtgedilmedi',
|
||||
'305' => 'Proksi ulanyň',
|
||||
'307' => 'Wagtlaýyn gönükdirme',
|
||||
'308' => 'Hemişelik gönükdirme',
|
||||
'400' => 'Erbet haýyş',
|
||||
'401' => 'Rugsat berilmedik',
|
||||
'402' => 'Töleg talap edilýär',
|
||||
'403' => 'Gadagan',
|
||||
'404' => 'Tapylmady',
|
||||
'405' => 'Usul rugsat berilmedi',
|
||||
'406' => 'Kabul ederliksiz',
|
||||
'407' => 'Proksi tanamak zerur',
|
||||
'408' => 'Wagt gutarmagyny haýyş',
|
||||
'409' => 'Konflikt',
|
||||
'410' => 'Boldy',
|
||||
'411' => 'Uzynlyk talap edilýär',
|
||||
'412' => 'Deslapky şert şowsuz',
|
||||
'413' => 'Loadük gaty uly',
|
||||
'414' => 'URI gaty uzyn',
|
||||
'415' => 'Goldaw berilmeýän media görnüşi',
|
||||
'416' => 'Aralyk doýmaýar',
|
||||
'417' => 'Garaşmak başa barmady',
|
||||
'418' => 'Men çaýdan',
|
||||
'419' => 'Sessiýa gutardy',
|
||||
'421' => 'Nädogry haýyş',
|
||||
'422' => 'Işlenip bilinmeýän kärhana',
|
||||
'423' => 'Gulply',
|
||||
'424' => 'Şowsuzlyk',
|
||||
'425' => 'Örän ir',
|
||||
'426' => 'Döwrebaplaşdyrmak zerur',
|
||||
'428' => 'Deslapky şert',
|
||||
'429' => 'Gaty köp haýyş',
|
||||
'431' => 'Sözbaşy meýdanlaryny gaty uly haýyş',
|
||||
'444' => 'Jogapsyz birikme ýapyldy',
|
||||
'449' => 'Gaýtadan synanyşyň',
|
||||
'451' => 'Hukuk sebäpleri üçin elýeterli däl',
|
||||
'499' => 'Müşderiniň ýapyk haýyşy',
|
||||
'500' => 'Içerki serwer säwligi',
|
||||
'501' => 'Durmuşa geçirilmedi',
|
||||
'502' => 'Erbet şlıuz',
|
||||
'503' => 'Bejeriş tertibi',
|
||||
'504' => 'Derweze wagty',
|
||||
'505' => 'HTTP wersiýasy goldanylmaýar',
|
||||
'506' => 'Wariant hem gepleşik geçirýär',
|
||||
'507' => 'Ammary ýeterlik däl',
|
||||
'508' => 'Aýlaw tapyldy',
|
||||
'509' => 'Zolak giňligi çäklendirildi',
|
||||
'510' => 'Giňeldilmedik',
|
||||
'511' => 'Tor tanamak hökmany',
|
||||
'520' => 'Näbelli säwlik',
|
||||
'521' => 'Web Serwer ýapyk',
|
||||
'522' => 'Baglanyşyk wagty gutardy',
|
||||
'523' => 'Gelip çykyşy elýeterli däl',
|
||||
'524' => 'Wagt gutardy',
|
||||
'525' => 'SSL el çarpmak şowsuz boldy',
|
||||
'526' => 'Nädogry SSL şahadatnamasy',
|
||||
'527' => 'Demirýol säwligi',
|
||||
'598' => 'Tor okamak wagtynyň ýalňyşlygy',
|
||||
'599' => 'Ulgam birikdirmesiniň gutarmak säwligi',
|
||||
'unknownError' => 'Näbelli säwlik',
|
||||
];
|
||||
8
lang/tk/pagination.php
Normal file
8
lang/tk/pagination.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'next' => 'Indiki »',
|
||||
'previous' => '« Öňki',
|
||||
];
|
||||
11
lang/tk/passwords.php
Normal file
11
lang/tk/passwords.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'reset' => 'Açarsöz üýtgedildi!',
|
||||
'sent' => 'Açarsöz ýatlatmasy ugradyldy!',
|
||||
'throttled' => 'Gaýtadan synanyşmazdan ozal garaşmagyňyzy haýyş edýäris.',
|
||||
'token' => 'Açarsöz tazeleme söz birligi ýalňyş.',
|
||||
'user' => 'Bu e-mail adrese degişli ulanyjy tapylmady.',
|
||||
];
|
||||
223
lang/tk/validation.php
Normal file
223
lang/tk/validation.php
Normal file
@@ -0,0 +1,223 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'accepted' => ':Attribute kabul edilmelidir.',
|
||||
'accepted_if' => ':Other-i :value bolanda :attribute-i kabul etmeli.',
|
||||
'active_url' => ':Attribute dogry URL bolmalydyr.',
|
||||
'after' => ':Attribute şundan has köne sene bolmalydyr :date.',
|
||||
'after_or_equal' => ':Attribute-den soň bir sene bolmaly ýa-da :date-e deň bolmaly.',
|
||||
'alpha' => ':Attribute dine harplardan bolmaly.',
|
||||
'alpha_dash' => ':Attribute dine harplardan, sanlardan we çyzyjaklardan durmalydyr.',
|
||||
'alpha_num' => ':Attribute dine harplardan we sanlardan durmalydyr.',
|
||||
'array' => ':Attribute ýygyndy bolmalydyr.',
|
||||
'ascii' => ':Attribute-de diňe bir baýtly harp sanlary we nyşanlary bolmaly.',
|
||||
'before' => ':Attribute şundan has irki sene bolmalydyr :date.',
|
||||
'before_or_equal' => ':Attribute-den öň bir sene bolmaly ýa-da :date-e deň bolmaly.',
|
||||
'between' => [
|
||||
'array' => ':Attribute :min - :max arasynda madda eýe bolmalydyr.',
|
||||
'file' => ':Attribute :min - :max kilobaýt arasynda bolmalydyr.',
|
||||
'numeric' => ':Attribute :min - :max arasynda bolmalydyr.',
|
||||
'string' => ':Attribute :min - :max harplar arasynda bolmalydyr.',
|
||||
],
|
||||
'boolean' => ':Attribute diňe dogry ýada ýalňyş bolmalydyr.',
|
||||
'can' => ':Attribute meýdanda birugsat baha bar.',
|
||||
'confirmed' => ':Attribute tassyklamasy deň däl.',
|
||||
'current_password' => 'Açar sözi nädogry',
|
||||
'date' => ':Attribute dogry sene bolmalydyr.',
|
||||
'date_equals' => ':Attribute-i :date-e deň bolan sene bolmaly.',
|
||||
'date_format' => ':Attribute :format formatyna deň däl.',
|
||||
'decimal' => ':Attribute-de :decimal onluk ýer bolmaly.',
|
||||
'declined' => ':Attribute-den ýüz öwürmeli.',
|
||||
'declined_if' => ':Other :value bolanda :attribute-den ýüz öwürmeli.',
|
||||
'different' => ':Attribute bilen :other birbirinden tapawutly bolmalydyr.',
|
||||
'digits' => ':Attribute :digits san bolmalydyr.',
|
||||
'digits_between' => ':Attribute :min bilen :max arasynda san bolmalydyr.',
|
||||
'dimensions' => ':Attribute-de nädogry şekil ölçegleri bar.',
|
||||
'distinct' => ':Attribute meýdanyň dublikat bahasy bar.',
|
||||
'doesnt_end_with' => ':Attribute aşakdakylaryň biri bilen gutarman biler: :values.',
|
||||
'doesnt_start_with' => ':Attribute aşakdakylardan biri bilen başlamazlygy mümkin: :values.',
|
||||
'email' => ':Attribute formaty ýalňyş.',
|
||||
'ends_with' => ':Attribute aşakdakylaryň biri bilen gutarmaly: :values.',
|
||||
'enum' => 'Saýlanan :attribute nädogry.',
|
||||
'exists' => 'Saýlanan :attribute ýalňyş.',
|
||||
'extensions' => ':attribute meýdançada aşakdaky giňeltmeleriň biri bolmaly: :values.',
|
||||
'file' => ':Attribute faýl bolmaly.',
|
||||
'filled' => ':Attribute meýdany zerur.',
|
||||
'gt' => [
|
||||
'array' => ':Attribute-de :value-den gowrak zat bolmaly.',
|
||||
'file' => ':Attribute :value kilobaýtdan uly bolmaly.',
|
||||
'numeric' => ':Attribute-den :value-den uly bolmaly.',
|
||||
'string' => ':Attribute simwoldan uly bolmaly.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => ':Attribute-de :value element ýa-da ondan köp zat bolmaly.',
|
||||
'file' => ':Attribute :value kilobaýtdan uly ýa-da deň bolmaly.',
|
||||
'numeric' => ':Attribute :value-den uly ýa-da deň bolmaly.',
|
||||
'string' => ':Attribute :value simwoldan uly ýa-da deň bolmaly.',
|
||||
],
|
||||
'hex_color' => ':attribute meýdan dogry altyburç reňk bolmaly.',
|
||||
'image' => ':Attribute surat bolmalydyr.',
|
||||
'in' => ':Attribute mukdary ýalňyş.',
|
||||
'in_array' => ':Attribute meýdan :other-de ýok.',
|
||||
'integer' => ':Attribute san bolmalydyr.',
|
||||
'ip' => ':Attribute dogry IP adres bolmalydyr.',
|
||||
'ipv4' => ':Attribute dogry IPv4 salgy bolmaly.',
|
||||
'ipv6' => ':Attribute dogry IPv6 salgy bolmaly.',
|
||||
'json' => ':Attribute dogry JSON setiri bolmaly.',
|
||||
'lowercase' => ':Attribute kiçi harp bolmaly',
|
||||
'lt' => [
|
||||
'array' => ':Attribute-de :value-den az zat bolmaly.',
|
||||
'file' => ':Attribute :value kilobaýtdan az bolmalydyr.',
|
||||
'numeric' => ':Attribute-den :value-den az bolmaly.',
|
||||
'string' => ':Attribute simwoldan :value simwoldan az bolmaly.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => ':Attribute-de :value-den köp zat bolmaly däldir.',
|
||||
'file' => ':Attribute :value kilobaýtdan az ýa-da deň bolmaly.',
|
||||
'numeric' => ':Attribute-den :value-den az ýa-da deň bolmaly.',
|
||||
'string' => ':Attribute :value simwoldan az ýa-da deň bolmaly.',
|
||||
],
|
||||
'mac_address' => ':Attribute dogry MAC salgysy bolmaly.',
|
||||
'max' => [
|
||||
'array' => ':Attribute iň az :max maddadan ybarat bolmalydyr.',
|
||||
'file' => ':Attribute :max kilobaýtdan kiçi bolmalydyr.',
|
||||
'numeric' => ':Attribute :max den kiçi bolmalydyr.',
|
||||
'string' => ':Attribute :max harpdan kiçi bolmalydyr.',
|
||||
],
|
||||
'max_digits' => ':Attribute-de :max sandan köp bolmaly däldir.',
|
||||
'mimes' => ':Attribute faýlň formaty :values bolmalydyr.',
|
||||
'mimetypes' => ':Attribute faýlň formaty :values bolmalydyr.',
|
||||
'min' => [
|
||||
'array' => ':Attribute iň az :min harpdan bolmalydyr.',
|
||||
'file' => ':Attribute mukdary :min kilobaýtdan köp bolmalydyr.',
|
||||
'numeric' => ':Attribute mukdary :min dan köp bolmalydyr.',
|
||||
'string' => ':Attribute mukdary :min harpdan köp bolmalydyr.',
|
||||
],
|
||||
'min_digits' => ':Attribute-de azyndan :min san bolmaly.',
|
||||
'missing' => ':Attribute meýdan ýok bolmaly.',
|
||||
'missing_if' => ':Other meýdan :value bolanda :attribute meýdan ýok bolmaly.',
|
||||
'missing_unless' => ':Other meýdan :value bolmasa, :attribute meýdan ýok bolmaly.',
|
||||
'missing_with' => ':Values meýdançada :attribute meýdan ýok bolmaly.',
|
||||
'missing_with_all' => ':Values meýdançada :attribute meýdan ýok bolmaly.',
|
||||
'multiple_of' => ':Attribute :value-den köp bolmaly.',
|
||||
'not_in' => 'Saýlanan :attribute geçersiz.',
|
||||
'not_regex' => ':Attribute format nädogry.',
|
||||
'numeric' => ':Attribute san bolmalydyr.',
|
||||
'password' => [
|
||||
'letters' => ':Attribute-de azyndan bir harp bolmaly.',
|
||||
'mixed' => ':Attribute-de azyndan bir baş harp we bir kiçi harp bolmaly.',
|
||||
'numbers' => ':Attribute-de azyndan bir san bolmaly.',
|
||||
'symbols' => ':Attribute-de azyndan bir nyşan bolmaly.',
|
||||
'uncompromised' => 'Berlen :attribute maglumat syzdyrylyşynda peýda boldy. Başga :attribute saýlaň.',
|
||||
],
|
||||
'present' => ':Attribute meýdan bolmaly.',
|
||||
'present_if' => ':other meýdan :value bolanda :attribute meýdan bolmaly.',
|
||||
'present_unless' => ':other meýdan :value bolmasa, :attribute meýdan bolmaly.',
|
||||
'present_with' => ':values meýdan bolanda :attribute meýdan bolmaly.',
|
||||
'present_with_all' => ':values meýdança :values meýdança bar bolmaly.',
|
||||
'prohibited' => ':Attribute meýdan gadagan.',
|
||||
'prohibited_if' => ':Other meýdan :value bolanda :attribute meýdan gadagan.',
|
||||
'prohibited_unless' => ':Other meýdança :values bolmasa, :attribute meýdan gadagan.',
|
||||
'prohibits' => ':Attribute meýdança :other adamyň gatnaşmagyny gadagan edýär.',
|
||||
'regex' => ':Attribute formaty ýalňyş.',
|
||||
'required' => ':Attribute meýdany zerur.',
|
||||
'required_array_keys' => ':Attribute meýdançada: :values üçin ýazgylar bolmaly.',
|
||||
'required_if' => ':Attribute meýdany, :other :value hümmetine eýe bolanynda zerurdyr.',
|
||||
'required_if_accepted' => ':Other kabul edilende :attribute meýdan talap edilýär.',
|
||||
'required_unless' => ':Other meýdan :values-de bolmasa, :attribute meýdan talap edilýär.',
|
||||
'required_with' => ':Attribute meýdany :values bar bolanda zerurdyr.',
|
||||
'required_with_all' => ':Attribute meýdany haýsyda bolsa bir :values bar bolanda zerurdyr.',
|
||||
'required_without' => ':Attribute meýdany :values ýok bolanda zerurdyr.',
|
||||
'required_without_all' => ':Attribute meýdany :values dan haýsyda bolsa biri ýok bolanda zerurdyr.',
|
||||
'same' => ':Attribute bilen :other deň bolmalydyr.',
|
||||
'size' => [
|
||||
'array' => ':Attribute :size madda eýe bolmalydyr.',
|
||||
'file' => ':Attribute :size kilobaýt bolmalydyr.',
|
||||
'numeric' => ':Attribute :size sandan ybarat bolmalydyr.',
|
||||
'string' => ':Attribute :size harp bolmalydyr.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => ':Attribute setir bolmaly.',
|
||||
'timezone' => ':Attribute dogry zolak bolmalydyr.',
|
||||
'ulid' => ':Attribute-i dogry ULID bolmaly.',
|
||||
'unique' => ':Attribute önden hasaba alyndy.',
|
||||
'uploaded' => ':Attribute adam ýükläp bilmedi.',
|
||||
'uppercase' => ':Attribute baş harp bolmaly.',
|
||||
'url' => ':Attribute formaty ýalňyş.',
|
||||
'uuid' => ':Attribute-i dogry UUID bolmaly.',
|
||||
'attributes' => [
|
||||
'address' => 'salgysy',
|
||||
'age' => 'ýaşy',
|
||||
'amount' => 'mukdary',
|
||||
'area' => 'meýdany',
|
||||
'available' => 'elýeterli',
|
||||
'birthday' => 'doglan güni',
|
||||
'body' => 'beden',
|
||||
'city' => 'şäher',
|
||||
'content' => 'mazmuny',
|
||||
'country' => 'ýurt',
|
||||
'created_at' => 'döredildi',
|
||||
'creator' => 'dörediji',
|
||||
'current_password' => 'Hazirki açar sözüňiz',
|
||||
'date' => 'senesi',
|
||||
'date_of_birth' => 'doglan gün',
|
||||
'day' => 'gün',
|
||||
'deleted_at' => 'öçürildi',
|
||||
'description' => 'beýany',
|
||||
'district' => 'etrap',
|
||||
'duration' => 'dowamlylygy',
|
||||
'email' => 'e-poçta iberiň',
|
||||
'excerpt' => 'bölek',
|
||||
'filter' => 'süzgüç',
|
||||
'first_name' => 'ady',
|
||||
'gender' => 'jyns',
|
||||
'group' => 'topary',
|
||||
'hour' => 'sagat',
|
||||
'image' => 'şekil',
|
||||
'last_name' => 'familiýa',
|
||||
'lesson' => 'sapak',
|
||||
'line_address_1' => 'setir salgysy 1',
|
||||
'line_address_2' => 'setir salgysy 2',
|
||||
'message' => 'habar',
|
||||
'middle_name' => 'orta ady',
|
||||
'minute' => 'minut',
|
||||
'mobile' => 'ykjam',
|
||||
'month' => 'aý',
|
||||
'name' => 'ady',
|
||||
'national_code' => 'milli kod',
|
||||
'number' => 'sany',
|
||||
'password' => 'açar sözi',
|
||||
'password_confirmation' => 'açar sözini tassyklamak',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'surat',
|
||||
'postal_code' => 'poçta kody',
|
||||
'price' => 'bahasy',
|
||||
'province' => 'welaýaty',
|
||||
'recaptcha_response_field' => 'jogap meýdany',
|
||||
'remember' => 'ýadyňyzda saklaň',
|
||||
'restored_at' => 'dikeldildi',
|
||||
'result_text_under_image' => 'netijäniň teksti',
|
||||
'role' => 'roly',
|
||||
'second' => 'ikinji',
|
||||
'sex' => 'jyns',
|
||||
'short_text' => 'gysga tekst',
|
||||
'size' => 'ululygy',
|
||||
'state' => 'ýagdaýy',
|
||||
'street' => 'köçe',
|
||||
'student' => 'okuwçy',
|
||||
'subject' => 'mowzuk',
|
||||
'teacher' => 'mugallym',
|
||||
'terms' => 'şertleri',
|
||||
'test_description' => 'synag beýany',
|
||||
'test_locale' => 'synag sebiti',
|
||||
'test_name' => 'synag ady',
|
||||
'text' => 'tekst',
|
||||
'time' => 'wagt',
|
||||
'title' => 'ady',
|
||||
'updated_at' => 'täzelendi',
|
||||
'username' => 'ulanyjy ady',
|
||||
'year' => 'ýyl',
|
||||
],
|
||||
];
|
||||
45
lang/vendor/filament-actions/en/associate.php
vendored
Normal file
45
lang/vendor/filament-actions/en/associate.php
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Associate',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Associate :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Record',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => 'Associate',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => 'Associate & associate another',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => 'Associated',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
45
lang/vendor/filament-actions/en/attach.php
vendored
Normal file
45
lang/vendor/filament-actions/en/attach.php
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Attach',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Attach :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Record',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => 'Attach',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => 'Attach & attach another',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => 'Attached',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
37
lang/vendor/filament-actions/en/create.php
vendored
Normal file
37
lang/vendor/filament-actions/en/create.php
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'New :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Create :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Create',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Create & create another',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Created',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/en/delete.php
vendored
Normal file
73
lang/vendor/filament-actions/en/delete.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Delete',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Delete :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Delete',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Deleted',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Delete selected',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Delete selected :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Delete',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Deleted',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Deleted :count of :total',
|
||||
'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.',
|
||||
'missing_processing_failure_message' => ':count could not be deleted.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Failed to delete',
|
||||
'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.',
|
||||
'missing_processing_failure_message' => ':count could not be deleted.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
61
lang/vendor/filament-actions/en/detach.php
vendored
Normal file
61
lang/vendor/filament-actions/en/detach.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Detach',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Detach :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Detach',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Detached',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Detach selected',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Detach selected :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Detach',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Detached',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
61
lang/vendor/filament-actions/en/dissociate.php
vendored
Normal file
61
lang/vendor/filament-actions/en/dissociate.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Dissociate',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Dissociate :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Dissociate',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Dissociated',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Dissociate selected',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Dissociate selected :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Dissociate',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Dissociated',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
33
lang/vendor/filament-actions/en/edit.php
vendored
Normal file
33
lang/vendor/filament-actions/en/edit.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Edit',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Edit :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Save changes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Saved',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
77
lang/vendor/filament-actions/en/export.php
vendored
Normal file
77
lang/vendor/filament-actions/en/export.php
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Export :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Export :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => 'Columns',
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column enabled',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => ':column label',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => 'Export',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Export completed',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_csv' => [
|
||||
'label' => 'Download .csv',
|
||||
],
|
||||
|
||||
'download_xlsx' => [
|
||||
'label' => 'Download .xlsx',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Export is too large',
|
||||
'body' => 'You may not export more than 1 row at once.|You may not export more than :count rows at once.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Export started',
|
||||
'body' => 'Your export has begun and 1 row will be processed in the background. You will receive a notification with the download link when it is complete.|Your export has begun and :count rows will be processed in the background. You will receive a notification with the download link when it is complete.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => 'export-:export_id-:model',
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/en/force-delete.php
vendored
Normal file
73
lang/vendor/filament-actions/en/force-delete.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Force delete',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Force delete :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Delete',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Deleted',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Force delete selected',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Force delete selected :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Delete',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Deleted',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Deleted :count of :total',
|
||||
'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.',
|
||||
'missing_processing_failure_message' => ':count could not be deleted.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Failed to delete',
|
||||
'missing_authorization_failure_message' => 'You don\'t have permission to delete :count.',
|
||||
'missing_processing_failure_message' => ':count could not be deleted.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
9
lang/vendor/filament-actions/en/group.php
vendored
Normal file
9
lang/vendor/filament-actions/en/group.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => 'Actions',
|
||||
],
|
||||
|
||||
];
|
||||
85
lang/vendor/filament-actions/en/import.php
vendored
Normal file
85
lang/vendor/filament-actions/en/import.php
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Import :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Import :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => 'File',
|
||||
|
||||
'placeholder' => 'Upload a CSV file',
|
||||
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} The file must not contain more than one empty column header.|{1,*} The file must not contain duplicate column headers: :columns.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Columns',
|
||||
'placeholder' => 'Select a column',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'Download example CSV file',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'Import',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Import completed',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'Download information about the failed row|Download information about the failed rows',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Uploaded CSV file is too large',
|
||||
'body' => 'You may not import more than 1 row at once.|You may not import more than :count rows at once.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Import started',
|
||||
'body' => 'Your import has begun and 1 row will be processed in the background.|Your import has begun and :count rows will be processed in the background.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-example',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-failed-rows',
|
||||
'error_header' => 'error',
|
||||
'system_error' => 'System error, please contact support.',
|
||||
'column_mapping_required_for_new_record' => 'The :attribute column was not mapped to a column in the file, but it is required for creating new records.',
|
||||
],
|
||||
|
||||
];
|
||||
23
lang/vendor/filament-actions/en/modal.php
vendored
Normal file
23
lang/vendor/filament-actions/en/modal.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => 'Are you sure you would like to do this?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Cancel',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => 'Confirm',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Submit',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
10
lang/vendor/filament-actions/en/notifications.php
vendored
Normal file
10
lang/vendor/filament-actions/en/notifications.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
];
|
||||
33
lang/vendor/filament-actions/en/replicate.php
vendored
Normal file
33
lang/vendor/filament-actions/en/replicate.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Replicate',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Replicate :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => 'Replicate',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => 'Replicated',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/en/restore.php
vendored
Normal file
73
lang/vendor/filament-actions/en/restore.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Restore',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Restore :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Restore',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Restored',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Restore selected',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Restore selected :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Restore',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Restored',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => 'Restored :count of :total',
|
||||
'missing_authorization_failure_message' => 'You don\'t have permission to restore :count.',
|
||||
'missing_processing_failure_message' => ':count could not be restored.',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => 'Failed to restore',
|
||||
'missing_authorization_failure_message' => 'You don\'t have permission to restore :count.',
|
||||
'missing_processing_failure_message' => ':count could not be restored.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
25
lang/vendor/filament-actions/en/view.php
vendored
Normal file
25
lang/vendor/filament-actions/en/view.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'View',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'View :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Close',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
45
lang/vendor/filament-actions/ru/associate.php
vendored
Normal file
45
lang/vendor/filament-actions/ru/associate.php
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Подключить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Подключить :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Запись',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => 'Подключить',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => 'Подключить и Подключить другое',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => 'Подключено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
45
lang/vendor/filament-actions/ru/attach.php
vendored
Normal file
45
lang/vendor/filament-actions/ru/attach.php
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Прикрепить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Прикрепить :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Запись',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => 'Прикрепить',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => 'Прикрепить и прикрепить еще',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => 'Прикреплено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
37
lang/vendor/filament-actions/ru/create.php
vendored
Normal file
37
lang/vendor/filament-actions/ru/create.php
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Создать',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Создать :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Создать',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Создать и создать еще один',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Создано',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/ru/delete.php
vendored
Normal file
73
lang/vendor/filament-actions/ru/delete.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Удалить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Удалить :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Удалить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Удалено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Удалить отмеченное',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Удалить отмеченное :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Удалить отмеченное',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Удалено',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Удалено :count из :total',
|
||||
'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.',
|
||||
'missing_processing_failure_message' => ':count не может быть удалено.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Не удалось удалить',
|
||||
'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.',
|
||||
'missing_processing_failure_message' => ':count не может быть удалено.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
61
lang/vendor/filament-actions/ru/detach.php
vendored
Normal file
61
lang/vendor/filament-actions/ru/detach.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Открепить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Открепить :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Открепить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Откреплено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Открепить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Открепить отмеченное :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Открепить отмеченное',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Откреплено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
61
lang/vendor/filament-actions/ru/dissociate.php
vendored
Normal file
61
lang/vendor/filament-actions/ru/dissociate.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Отделить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Отделено :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Отделить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Отделено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Отделить отмеченное',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Отделить отмеченное :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Отделить отмеченное',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Отделено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
33
lang/vendor/filament-actions/ru/edit.php
vendored
Normal file
33
lang/vendor/filament-actions/ru/edit.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Изменить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Изменить :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Сохранить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Сохранено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
77
lang/vendor/filament-actions/ru/export.php
vendored
Normal file
77
lang/vendor/filament-actions/ru/export.php
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Экспорт :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Экспорт :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => 'Столбцы',
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column включено',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => ':column метка',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => 'Экспорт',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Экспорт завершен',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_csv' => [
|
||||
'label' => 'Скачать .csv',
|
||||
],
|
||||
|
||||
'download_xlsx' => [
|
||||
'label' => 'Скачать .xlsx',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Экспорт слишком велик',
|
||||
'body' => 'Вы не можете экспортировать более 1 строки одновременно.|Вы не можете экспортировать более :count строк одновременно.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Экспорт начался',
|
||||
'body' => 'Ваш экспорт начался, и 1 строка будет обработана в фоновом режиме.|Ваш экспорт начался, и :count строк будет обработан в фоновом режиме.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => 'export-:export_id-:model',
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/ru/force-delete.php
vendored
Normal file
73
lang/vendor/filament-actions/ru/force-delete.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Удалить навсегда',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Удалить навсегда :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Удалить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Запись удалена',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Удалить навсегда выбранное',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Удалить навсегда выбранное :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Удалить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Записи удалены',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Удалено :count из :total',
|
||||
'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.',
|
||||
'missing_processing_failure_message' => ':count не может быть удалено.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Не удалось удалить',
|
||||
'missing_authorization_failure_message' => 'У вас нет прав для удаления :count.',
|
||||
'missing_processing_failure_message' => ':count не может быть удалено.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
9
lang/vendor/filament-actions/ru/group.php
vendored
Normal file
9
lang/vendor/filament-actions/ru/group.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => 'Действия',
|
||||
],
|
||||
|
||||
];
|
||||
85
lang/vendor/filament-actions/ru/import.php
vendored
Normal file
85
lang/vendor/filament-actions/ru/import.php
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Импорт :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Импорт :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => 'Файл',
|
||||
|
||||
'placeholder' => 'Загрузить CSV-файл',
|
||||
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} Файл не должен содержать более одного пустого заголовка столбца.|{1,*} Файл не должен содержать повторяющихся заголовков столбцов: :columns.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Столбцы',
|
||||
'placeholder' => 'Выберите столбец',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'Скачать пример CSV-файла',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'Импорт',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Импорт завершен',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'Загрузить информацию о неудавшейся строке|Загрузить информацию о неудавшейся строке',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Загруженный файл CSV слишком велик.',
|
||||
'body' => 'Вы не можете импортировать более 1 строки одновременно.|Вы не можете импортировать более :count строк одновременно.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Импорт начался',
|
||||
'body' => 'Ваш импорт начался, и 1 строка будет обработана в фоновом режиме.|Ваш импорт начался, и :count строк будет обрабатываться в фоновом режиме.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-example',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-failed-rows',
|
||||
'error_header' => 'Ошибка',
|
||||
'system_error' => 'Системная ошибка, обратитесь в службу поддержки.',
|
||||
'column_mapping_required_for_new_record' => 'Для :attribute необходимо указать соответствие столбца в файле, так как он требуется при создании записей.',
|
||||
],
|
||||
|
||||
];
|
||||
23
lang/vendor/filament-actions/ru/modal.php
vendored
Normal file
23
lang/vendor/filament-actions/ru/modal.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => 'Вы уверены, что хотите это сделать?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Отменить',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => 'Подтвердить',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Отправить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
10
lang/vendor/filament-actions/ru/notifications.php
vendored
Normal file
10
lang/vendor/filament-actions/ru/notifications.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Слишком много попыток',
|
||||
'body' => 'Повторите попытку через :seconds сек.',
|
||||
],
|
||||
|
||||
];
|
||||
33
lang/vendor/filament-actions/ru/replicate.php
vendored
Normal file
33
lang/vendor/filament-actions/ru/replicate.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Копировать',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Копировать :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => 'Копировать',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => 'Запись скопирована',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/ru/restore.php
vendored
Normal file
73
lang/vendor/filament-actions/ru/restore.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Восстановить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Восстановить :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Восстановить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Запись восстановлена',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Восстановить выбранное',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Восстановить выбранное :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Восстановить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Записи восстановлены',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => 'Восстановлено :count из :total',
|
||||
'missing_authorization_failure_message' => 'У вас нет прав на восстановление :count.',
|
||||
'missing_processing_failure_message' => 'Не удалось восстановить :count.',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => 'Failed to restore',
|
||||
'missing_authorization_failure_message' => 'У вас нет прав на восстановление :count.',
|
||||
'missing_processing_failure_message' => 'Не удалось восстановить :count.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
25
lang/vendor/filament-actions/ru/view.php
vendored
Normal file
25
lang/vendor/filament-actions/ru/view.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Просмотр',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Просмотр :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Закрыть',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
45
lang/vendor/filament-actions/tk/associate.php
vendored
Normal file
45
lang/vendor/filament-actions/tk/associate.php
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Baglanyşdyr',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label baglanyşdyr',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Ýazgy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => 'Baglanyşdyr',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => 'Baglanyşdyr we başga birini baglanyşdyr',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => 'Baglanyşdyryldy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
45
lang/vendor/filament-actions/tk/attach.php
vendored
Normal file
45
lang/vendor/filament-actions/tk/attach.php
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Birikdir',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label birikdir',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Ýazgy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => 'Birikdir',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => 'Birikdir we başgasyny birikdir',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => 'Birikdirildi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
37
lang/vendor/filament-actions/tk/create.php
vendored
Normal file
37
lang/vendor/filament-actions/tk/create.php
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Täze :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label döret',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Döret',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Döret we başgasyny döret',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Döredildi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/tk/delete.php
vendored
Normal file
73
lang/vendor/filament-actions/tk/delete.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Poz',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label poz',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Poz',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Pozuldy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Saýlananlary poz',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Saýlanan :label poz',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Poz',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Pozuldy',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => ':total-dan :count pozuldy',
|
||||
'missing_authorization_failure_message' => ':count pozmaga ygtyýaryňyz ýok.',
|
||||
'missing_processing_failure_message' => ':count pozup bolmady.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Pozmak başartmady',
|
||||
'missing_authorization_failure_message' => ':count pozmaga ygtyýaryňyz ýok.',
|
||||
'missing_processing_failure_message' => ':count pozup bolmady.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
61
lang/vendor/filament-actions/tk/detach.php
vendored
Normal file
61
lang/vendor/filament-actions/tk/detach.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Aýyr',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label aýyr',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Aýyr',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Aýryldy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Saýlananlary aýyr',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Saýlanan :label aýyr',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Aýyr',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Aýryldy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
61
lang/vendor/filament-actions/tk/dissociate.php
vendored
Normal file
61
lang/vendor/filament-actions/tk/dissociate.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Baglanyşygy ýatyrmak',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label baglanyşygyny ýatyrmak',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Baglanyşygy ýatyrmak',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Baglanyşyk ýatyryldy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Saýlananlaryň baglanyşygyny ýatyrmak',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Saýlanan :label baglanyşygyny ýatyrmak',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Baglanyşygy ýatyrmak',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Baglanyşyk ýatyryldy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
33
lang/vendor/filament-actions/tk/edit.php
vendored
Normal file
33
lang/vendor/filament-actions/tk/edit.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Üýtget',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label üýtget',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Üýtgetmeleri ýatda sakla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Ýatda saklandy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
77
lang/vendor/filament-actions/tk/export.php
vendored
Normal file
77
lang/vendor/filament-actions/tk/export.php
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => ':label eksport et',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label eksport et',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => 'Sütünler',
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column açyk',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => ':column belligi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => 'Eksport et',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Eksport tamamlandy',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_csv' => [
|
||||
'label' => '.csv ýükle',
|
||||
],
|
||||
|
||||
'download_xlsx' => [
|
||||
'label' => '.xlsx ýükle',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Eksport gaty uly',
|
||||
'body' => 'Bir wagtda 1 setirden köp eksport edip bolmaýar.|Bir wagtda :count setirden köp eksport edip bolmaýar.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Eksport başlandy',
|
||||
'body' => 'Eksportyňyz başlandy we 1 setir arka fonda işlener. Tamamlanansoň ýükleme baglanyşygy bilen bildirijini alarsyňyz.|Eksportyňyz başlandy we :count setir arka fona işlener. Tamamlanansoň ýükleme baglanyşygy bilen bildirijini alarsyňyz.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => 'eksport-:export_id-:model',
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/tk/force-delete.php
vendored
Normal file
73
lang/vendor/filament-actions/tk/force-delete.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Güýç bilen poz',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label güýç bilen poz',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Poz',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Pozuldy',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Saýlananlary güýç bilen poz',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Saýlanan :label güýç bilen poz',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Poz',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Pozuldy',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => ':total-dan :count pozuldy',
|
||||
'missing_authorization_failure_message' => ':count pozmaga ygtyýaryňyz ýok.',
|
||||
'missing_processing_failure_message' => ':count pozup bolmady.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Pozmak başartmady',
|
||||
'missing_authorization_failure_message' => ':count pozmaga ygtyýaryňyz ýok.',
|
||||
'missing_processing_failure_message' => ':count pozup bolmady.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
9
lang/vendor/filament-actions/tk/group.php
vendored
Normal file
9
lang/vendor/filament-actions/tk/group.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => 'Hereketler',
|
||||
],
|
||||
|
||||
];
|
||||
85
lang/vendor/filament-actions/tk/import.php
vendored
Normal file
85
lang/vendor/filament-actions/tk/import.php
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => ':label import et',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label import et',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => 'Faýl',
|
||||
|
||||
'placeholder' => 'CSV faýl ýükle',
|
||||
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} Faýlda birden köp boş sütün sözbaşy bolmaly däldir.|{1,*} Faýlda gaýtalanýan sütün sözbaşylary bolmaly däldir: :columns.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Sütünler',
|
||||
'placeholder' => 'Sütün saýlaň',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'Mysal CSV faýlyny ýükle',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'Import et',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Import tamamlandy',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'Başartmadyk setir barada maglumaty ýükle|Başartmadyk setirler barada maglumaty ýükle',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Ýüklenen CSV faýl gaty uly',
|
||||
'body' => 'Bir wagtda 1 setirden köp import edip bolmaýar.|Bir wagtda :count setirden köp import edip bolmaýar.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Import başlandy',
|
||||
'body' => 'Importyňyz başlandy we 1 setir arka fona işlener.|Importyňyz başlandy we :count setir arka fona işlener.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-mysal',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-başartmadyk-setirler',
|
||||
'error_header' => 'ýalňyşlyk',
|
||||
'system_error' => 'Ulgam ýalňyşlygy, goldaw bilen habarlaşyň.',
|
||||
'column_mapping_required_for_new_record' => ':attribute sütüni faýldaky sütün bilen kartalaşdyrylmady, emma täze ýazgylary döretmek üçin zerurdyr.',
|
||||
],
|
||||
|
||||
];
|
||||
23
lang/vendor/filament-actions/tk/modal.php
vendored
Normal file
23
lang/vendor/filament-actions/tk/modal.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => 'Muny etmek isleýärsiňizmi?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Ýatyrmak',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => 'Tassykla',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Ugrat',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
10
lang/vendor/filament-actions/tk/notifications.php
vendored
Normal file
10
lang/vendor/filament-actions/tk/notifications.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Synanyşyklary köp boldy',
|
||||
'body' => ':seconds sekuntdan soň täzeden synanyşyň.',
|
||||
],
|
||||
|
||||
];
|
||||
33
lang/vendor/filament-actions/tk/replicate.php
vendored
Normal file
33
lang/vendor/filament-actions/tk/replicate.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Göçür',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label göçür',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => 'Göçür',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => 'Göçürildi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
73
lang/vendor/filament-actions/tk/restore.php
vendored
Normal file
73
lang/vendor/filament-actions/tk/restore.php
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Dikelt',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label dikelt',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Dikelt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Dikeldiildi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Saýlananlary dikelt',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Saýlanan :label dikelt',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Dikelt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Dikeldiildi',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => ':total-dan :count dikeldildi',
|
||||
'missing_authorization_failure_message' => ':count dikeltmäge ygtyýaryňyz ýok.',
|
||||
'missing_processing_failure_message' => ':count dikeldip bolmady.',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => 'Dikeltmek başartmady',
|
||||
'missing_authorization_failure_message' => ':count dikeltmäge ygtyýaryňyz ýok.',
|
||||
'missing_processing_failure_message' => ':count dikeldip bolmady.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
25
lang/vendor/filament-actions/tk/view.php
vendored
Normal file
25
lang/vendor/filament-actions/tk/view.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Görkez',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label görkez',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Ýap',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/ar/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/ar/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'تحرير الملف الشخصي',
|
||||
'profile_information' => 'معلومات الملف الشخصي',
|
||||
'profile_information_description' => 'قم بتحديث معلومات الملف الشخصي لحسابك وعنوان بريدك الإلكتروني.',
|
||||
'name' => 'الاسم',
|
||||
'email' => 'البريد الإلكتروني',
|
||||
'avatar' => 'صورة',
|
||||
'password' => 'كلمة المرور',
|
||||
'locale' => 'اللغة',
|
||||
'theme_color' => 'لون السمة',
|
||||
'update_password' => 'تحديث كلمة المرور',
|
||||
'current_password' => 'كلمة المرور الحالية',
|
||||
'new_password' => 'كلمة المرور الجديدة',
|
||||
'confirm_password' => 'تأكيد كلمة المرور',
|
||||
'ensure_your_password' => 'تأكد من أن حسابك يستخدم كلمة مرور طويلة وعشوائية ليظل آمنًا.',
|
||||
'delete_account' => 'حذف الحساب',
|
||||
'delete_account_description' => 'احذف حسابك نهائيًا.',
|
||||
'yes_delete_it' => 'نعم، احذفه!',
|
||||
'are_you_sure' => 'هل أنت متأكد من رغبتك في حذف حسابك؟ هذا لا يمكن التراجع عنها!',
|
||||
'incorrect_password' => 'كلمة المرور التي أدخلتها غير صحيحة. حاول مرة اخرى.',
|
||||
'user_load_error' => 'يجب أن يكون كائن المستخدم المصادق عليه نموذج Eloquent للسماح لصفحة الملف الشخصي بتحديثه.',
|
||||
'delete_account_card_description' => 'بمجرد حذف حسابك، سيتم مسح جميع مواردك وبياناتك نهائيًا. قبل حذف حسابك، يرجى تنزيل أي بيانات أو معلومات ترغب في الاحتفاظ بها.',
|
||||
'saved_successously' => 'تم حفظ معلومات ملفك الشخصي بنجاح.',
|
||||
'custom_fields' => 'حقول مخصصة',
|
||||
'custom_fields_description' => 'قم بتحديث حقولك المخصصة.',
|
||||
'save' => 'حفظ',
|
||||
'token_name' => 'اسم الرمز المميز',
|
||||
'token_abilities' => 'القدرات',
|
||||
'token_created_at' => 'تم الإنشاء في',
|
||||
'token_expires_at' => 'تنتهي صلاحيته عند',
|
||||
'token_section_title' => 'رموز واجهة برمجة التطبيقات',
|
||||
'token_section_description' => 'إدارة الرموز المميزة لواجهة برمجة التطبيقات التي تسمح لخدمات الجهات الخارجية بالوصول إلى هذا التطبيق نيابة عنك.',
|
||||
'token_action_label' => 'إنشاء رمز مميز',
|
||||
'token_modal_heading' => 'إنشاء',
|
||||
'token_create_notification' => 'تم إنشاء الرمز المميز بنجاح!',
|
||||
'token_helper_text' => 'يظهر رمزك المميز مرة واحدة فقط عند الإنشاء. إذا فقدت الرمز المميز الخاص بك، فسوف تحتاج إلى حذفه وإنشاء رمز جديد.',
|
||||
'token_modal_heading_2' => 'نسخ رمز الوصول الشخصي',
|
||||
'token_empty_state_heading' => 'إنشاء الرمز المميز الأول الخاص بك',
|
||||
'token_empty_state_description' => 'أنشئ رمز وصول شخصي للبدء.',
|
||||
'mfa_section_title' => 'المصادقة متعددة العوامل',
|
||||
'mfa_section_description' => 'إدارة إعدادات المصادقة متعددة العوامل لديك.',
|
||||
'browser_section_title' => 'جلسات المتصفح',
|
||||
'browser_section_description' => 'إدارة جلساتك النشطة وتسجيل الخروج منها على المتصفحات والأجهزة الأخرى.',
|
||||
'browser_sessions_content' => 'إذا لزم الأمر، يمكنك تسجيل الخروج من جميع جلسات المتصفح الأخرى عبر جميع أجهزتك. بعض جلساتك الأخيرة مذكورة أدناه؛ ومع ذلك، قد لا تكون هذه القائمة شاملة. إذا شعرت أن حسابك قد تم اختراقه، فيجب عليك أيضًا تحديث كلمة المرور الخاصة بك.',
|
||||
'browser_sessions_device' => 'هذا الجهاز',
|
||||
'browser_sessions_last_active' => 'آخر نشاط',
|
||||
'browser_sessions_log_out' => 'تسجيل الخروج من جلسات المتصفح الأخرى',
|
||||
'browser_sessions_confirm_pass' => 'يُرجى إدخال كلمة المرور الخاصة بك لتأكيد رغبتك في تسجيل الخروج من جلسات المتصفح الأخرى عبر جميع أجهزتك.',
|
||||
'browser_sessions_logout_success_notification' => 'تم تسجيل الخروج من جميع جلسات المتصفح الأخرى بنجاح.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/cs/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/cs/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Upravit profil',
|
||||
'profile_information' => 'Základní informace',
|
||||
'profile_information_description' => 'Upravte informace o svém profilu a e-mailovou adresu.',
|
||||
'name' => 'Jméno',
|
||||
'email' => 'E-mail',
|
||||
'avatar' => 'Fotografie',
|
||||
'password' => 'Heslo',
|
||||
'locale' => 'Jazyk',
|
||||
'theme_color' => 'Barva motivu',
|
||||
'update_password' => 'Aktualizovat heslo',
|
||||
'current_password' => 'Současné heslo',
|
||||
'new_password' => 'Nové heslo',
|
||||
'confirm_password' => 'Potvrďte nové heslo',
|
||||
'ensure_your_password' => 'Zajistěte, aby váš účet používal dlouhé a náhodné heslo, a zůstaňte tak v bezpečí.',
|
||||
'delete_account' => 'Odstranit účet',
|
||||
'delete_account_description' => 'Trvale vymazat účet.',
|
||||
'yes_delete_it' => 'Ano, vymazat účet!',
|
||||
'are_you_sure' => 'Opravdu chcete svůj účet smazat? Tato akce je nevratná.',
|
||||
'incorrect_password' => 'Zadané heslo bylo nesprávné. Zkuste to prosím znovu.',
|
||||
'user_load_error' => 'Uživatele musí být modelem Eloquent, aby jej stránka profilu mohla aktualizovat.',
|
||||
'delete_account_card_description' => 'Po smazání účtu budou všechny vaše prostředky a data trvale vymazány. Před odstraněním účtu si stáhněte všechna data nebo informace, které si přejete zachovat.',
|
||||
'saved_successfully' => 'Informace o vašem profilu byly úspěšně uloženy.',
|
||||
'custom_fields' => 'Vlastní pole',
|
||||
'custom_fields_description' => 'Upravit vlastní pole.',
|
||||
'save' => 'Uložit',
|
||||
'token_name' => 'Název tokenu',
|
||||
'token_abilities' => 'Oprávnění',
|
||||
'token_created_at' => 'Vytvořen',
|
||||
'token_expires_at' => 'Vyprší',
|
||||
'token_section_title' => 'API Tokeny',
|
||||
'token_section_description' => 'Spravujte tokeny API, které umožňují službám třetích stran přistupovat k této aplikaci vašim jménem.',
|
||||
'token_action_label' => 'Vytvořit token',
|
||||
'token_modal_heading' => 'Vytvořit',
|
||||
'token_create_notification' => 'Token byl úspěšně vytvořen!',
|
||||
'token_helper_text' => 'Token je možné zobrazit pouze jednou. Pokud svůj token ztratíte, musíte jej smazat a vytvořit nový.',
|
||||
'token_modal_heading_2' => 'Zkopírovat osobní přístupový token',
|
||||
'token_empty_state_heading' => 'Vytvořit první token',
|
||||
'token_empty_state_description' => 'Vytvořte si osobní přístupový token a začněte.',
|
||||
'mfa_section_title' => 'Vícefaktorové ověřování',
|
||||
'mfa_section_description' => 'Spravujte nastavení vícefaktorového ověřování.',
|
||||
'browser_section_title' => 'Relace prohlížeče',
|
||||
'browser_section_description' => 'Spravujte a odhlašujte své aktivní relace v jiných prohlížečích a zařízeních.',
|
||||
'browser_sessions_content' => 'V případě potřeby se můžete odhlásit ze všech ostatních relací na všech svých zařízeních. Některé z vašich posledních relací jsou uvedeny níže; tento seznam však nemusí být úplný. Pokud máte pocit, že byl váš účet kompromitován, měli byste také aktualizovat své heslo.',
|
||||
'browser_sessions_device' => 'Toto zařízení',
|
||||
'browser_sessions_last_active' => 'Naposledy aktivní',
|
||||
'browser_sessions_log_out' => 'Odhlášení ostatních relací',
|
||||
'browser_sessions_confirm_pass' => 'Zadejte své heslo a potvrďte, že se chcete odhlásit z ostatních relací ve všech zařízeních.',
|
||||
'browser_sessions_logout_success_notification' => 'Všechny ostatní relace byly úspěšně odhlášeny.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/de/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/de/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Profil bearbeiten',
|
||||
'profile_information' => 'Profilinformationen',
|
||||
'profile_information_description' => 'Aktualisieren Sie Ihre Kontoprofilinformationen und E-Mail-Adresse.',
|
||||
'name' => 'Name',
|
||||
'email' => 'E-Mail',
|
||||
'avatar' => 'Foto',
|
||||
'password' => 'Passwort',
|
||||
'locale' => 'Sprache',
|
||||
'theme_color' => 'Themenfarbe',
|
||||
'update_password' => 'Passwort aktualisieren',
|
||||
'current_password' => 'Aktuelles Passwort',
|
||||
'new_password' => 'Neues Passwort',
|
||||
'confirm_password' => 'Passwort bestätigen',
|
||||
'ensure_your_password' => 'Stellen Sie sicher, dass Ihr Konto ein langes, zufälliges Passwort verwendet, um sicher zu bleiben.',
|
||||
'delete_account' => 'Konto löschen',
|
||||
'delete_account_description' => 'Löschen Sie Ihr Konto dauerhaft.',
|
||||
'yes_delete_it' => 'Ja, löschen!',
|
||||
'are_you_sure' => 'Sind Sie sicher, dass Sie Ihr Konto löschen möchten? Dies kann nicht rückgängig gemacht werden!',
|
||||
'incorrect_password' => 'Das eingegebene Passwort ist falsch. Bitte versuchen Sie es erneut.',
|
||||
'user_load_error' => 'Das authentifizierte Benutzerobjekt muss ein Eloquent-Modell sein, um die Profilseite aktualisieren zu können.',
|
||||
'delete_account_card_description' => 'Sobald Ihr Konto gelöscht ist, werden alle Ihre Ressourcen und Daten dauerhaft gelöscht. Laden Sie vor dem Löschen Ihres Kontos alle Daten oder Informationen herunter, die Sie behalten möchten.',
|
||||
'saved_successfully' => 'Ihre Profilinformationen wurden erfolgreich gespeichert.',
|
||||
'custom_fields' => 'Benutzerdefinierte Felder',
|
||||
'custom_fields_description' => 'Aktualisieren Sie Ihre benutzerdefinierten Felder.',
|
||||
'save' => 'Speichern',
|
||||
'token_name' => 'Token-Name',
|
||||
'token_abilities' => 'Fähigkeiten',
|
||||
'token_created_at' => 'Erstellt am',
|
||||
'token_expires_at' => 'Läuft ab am',
|
||||
'token_section_title' => 'API-Tokens',
|
||||
'token_section_description' => 'Verwalten Sie API-Tokens, die Drittanbietern den Zugriff auf diese Anwendung in Ihrem Namen ermöglichen.',
|
||||
'token_action_label' => 'Token erstellen',
|
||||
'token_modal_heading' => 'Erstellen',
|
||||
'token_create_notification' => 'Token erfolgreich erstellt!',
|
||||
'token_helper_text' => 'Ihr Token wird nur einmal bei der Erstellung angezeigt. Wenn Sie Ihren Token verlieren, müssen Sie ihn löschen und einen neuen erstellen.',
|
||||
'token_modal_heading_2' => 'Persönlichen Zugriffstoken Kopieren',
|
||||
'token_empty_state_heading' => 'Erstellen Sie Ihren ersten Token',
|
||||
'token_empty_state_description' => 'Erstellen Sie einen persönlichen Zugriffstoken, um zu beginnen.',
|
||||
'mfa_section_title' => 'Mehrfaktor-Authentifizierung',
|
||||
'mfa_section_description' => 'Verwalten Sie Ihre Einstellungen für die Mehrfaktor-Authentifizierung.',
|
||||
'browser_section_title' => 'Browsersitzungen',
|
||||
'browser_section_description' => 'Verwalten und melden Sie sich von Ihren aktiven Sitzungen auf anderen Browsern und Geräten ab.',
|
||||
'browser_sessions_content' => 'Bei Bedarf können Sie sich von all Ihren anderen Browsersitzungen auf all Ihren Geräten abmelden. Einige Ihrer letzten Sitzungen sind unten aufgeführt; diese Liste ist jedoch möglicherweise nicht vollständig. Wenn Sie glauben, dass Ihr Konto kompromittiert wurde, sollten Sie auch Ihr Passwort aktualisieren.',
|
||||
'browser_sessions_device' => 'Dieses Gerät',
|
||||
'browser_sessions_last_active' => 'Zuletzt aktiv',
|
||||
'browser_sessions_log_out' => 'Von anderen Browsersitzungen abmelden',
|
||||
'browser_sessions_confirm_pass' => 'Bitte geben Sie Ihr Passwort ein, um zu bestätigen, dass Sie sich von Ihren anderen Browsersitzungen auf all Ihren Geräten abmelden möchten.',
|
||||
'browser_sessions_logout_success_notification' => 'Alle anderen Browsersitzungen wurden erfolgreich abgemeldet.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/en/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/en/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Edit Profile',
|
||||
'profile_information' => 'Profile Information',
|
||||
'profile_information_description' => 'Update your account profile information and email address.',
|
||||
'name' => 'Name',
|
||||
'email' => 'Email',
|
||||
'avatar' => 'Photo',
|
||||
'password' => 'Password',
|
||||
'locale' => 'Language',
|
||||
'theme_color' => 'Theme Color',
|
||||
'update_password' => 'Update Password',
|
||||
'current_password' => 'Current Password',
|
||||
'new_password' => 'New Password',
|
||||
'confirm_password' => 'Confirm Password',
|
||||
'ensure_your_password' => 'Ensure your account is using long, random password to stay secure.',
|
||||
'delete_account' => 'Delete Account',
|
||||
'delete_account_description' => 'Permanently delete your account.',
|
||||
'yes_delete_it' => 'Yes, delete it!',
|
||||
'are_you_sure' => 'Are you sure you would like to delete your account? This cannot be undone!',
|
||||
'incorrect_password' => 'The password you entered was incorrect. Please try again.',
|
||||
'user_load_error' => 'The authenticated user object must be an Eloquent model to allow the profile page to update it.',
|
||||
'delete_account_card_description' => 'Once your account is deleted, all of your resources and data will be permanently erased. Before deleting your account, please download any data or information you wish to keep.',
|
||||
'saved_successfully' => 'Your profile information has been saved successfully.',
|
||||
'custom_fields' => 'Custom Fields',
|
||||
'custom_fields_description' => 'Update your custom fields.',
|
||||
'save' => 'Save',
|
||||
'token_name' => 'Token name',
|
||||
'token_abilities' => 'Abilities',
|
||||
'token_created_at' => 'Created at',
|
||||
'token_expires_at' => 'Expires at',
|
||||
'token_section_title' => 'API Tokens',
|
||||
'token_section_description' => 'Manage API tokens that allow third-party services to access this application on your behalf.',
|
||||
'token_action_label' => 'Create Token',
|
||||
'token_modal_heading' => 'Create',
|
||||
'token_create_notification' => 'Token created successfully!',
|
||||
'token_helper_text' => 'Your token is only shown once upon creation. If you lose your token, you will need to delete it and create a new one.',
|
||||
'token_modal_heading_2' => 'Copy Personal Access Token',
|
||||
'token_empty_state_heading' => 'Create your first token',
|
||||
'token_empty_state_description' => 'Create a personal access token to get started.',
|
||||
'mfa_section_title' => 'Multi-Factor Authentication',
|
||||
'mfa_section_description' => 'Manage your multi factor authentication settings.',
|
||||
'browser_section_title' => 'Browser Sessions',
|
||||
'browser_section_description' => 'Manage and log out your active sessions on other browsers and devices.',
|
||||
'browser_sessions_content' => 'If necessary, you may log out of all of your other browser sessions across all of your devices. Some of your recent sessions are listed below; however, this list may not be exhaustive. If you feel your account has been compromised, you should also update your password.',
|
||||
'browser_sessions_device' => 'This device',
|
||||
'browser_sessions_last_active' => 'Last active',
|
||||
'browser_sessions_log_out' => 'Log Out Other Browser Sessions',
|
||||
'browser_sessions_confirm_pass' => 'Please enter your password to confirm you would like to log out of your other browser sessions across all of your devices.',
|
||||
'browser_sessions_logout_success_notification' => 'All other browser sessions have been logged out successfully.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/es/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/es/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Editar perfil',
|
||||
'profile_information' => 'Información del perfil',
|
||||
'profile_information_description' => 'Actualiza la información del perfil de tu cuenta y tu dirección de correo electrónico',
|
||||
'name' => 'Nombre',
|
||||
'email' => 'Correo Electrónico',
|
||||
'avatar' => 'Foto',
|
||||
'password' => 'Contraseña',
|
||||
'locale' => 'Idioma',
|
||||
'theme_color' => 'Color del tema',
|
||||
'update_password' => 'Actualizar Contraseña',
|
||||
'current_password' => 'Contraseña actual',
|
||||
'new_password' => 'Nueva Contraseña',
|
||||
'confirm_password' => 'Confirmar Contraseña',
|
||||
'ensure_your_password' => 'Asegúrate de que tu cuenta utiliza una contraseña larga y aleatoria para estar seguro',
|
||||
'delete_account' => 'Eliminar cuenta',
|
||||
'delete_account_description' => 'Elimina permanentemente tu cuenta',
|
||||
'yes_delete_it' => '¡Sí, elimínala!',
|
||||
'are_you_sure' => '¿Estás seguro de que deseas eliminar tu cuenta? Esto no se puede deshacer',
|
||||
'incorrect_password' => 'La contraseña introducida es incorrecta. Por favor, inténtalo de nuevo',
|
||||
'user_load_error' => 'El objeto de usuario autenticado debe ser un modelo Eloquent para permitir que la página de perfil lo actualice',
|
||||
'delete_account_card_description' => 'Una vez eliminada tu cuenta, todos tus recursos y datos serán borrados permanentemente. Antes de borrar tu cuenta, por favor descarga cualquier dato o información que desees conservar.',
|
||||
'saved_successfully' => 'La información de tu perfil se ha guardado correctamente',
|
||||
'custom_fields' => 'Campos personalizados',
|
||||
'custom_fields_description' => 'Actualiza tus campos personalizados',
|
||||
'save' => 'Guardar',
|
||||
'token_name' => 'Nombre del Token',
|
||||
'token_abilities' => 'Habilidades',
|
||||
'token_created_at' => 'Creado en',
|
||||
'token_expires_at' => 'Caduca a las',
|
||||
'token_section_title' => 'Tokens de API',
|
||||
'token_section_description' => 'Administrar tokens de API que permiten a servicios de terceros acceder a esta aplicación en su nombre',
|
||||
'token_action_label' => 'Crear token',
|
||||
'token_modal_heading' => 'Crear',
|
||||
'token_create_notification' => 'Token creado con éxito',
|
||||
'token_helper_text' => 'Tu token sólo se muestra una vez al crearlo. Si pierdes tu token, tendrás que borrarlo y crear uno nuevo',
|
||||
'token_modal_heading_2' => 'Copiar clave de acceso personal',
|
||||
'token_empty_state_heading' => 'Crea tu primer token',
|
||||
'token_empty_state_description' => 'Crea un token de acceso personal para empezar',
|
||||
'mfa_section_title' => 'Autenticación multifactor',
|
||||
'mfa_section_description' => 'Administra la configuración de la autenticación multifactor.',
|
||||
'browser_section_title' => 'Sesiones del navegador',
|
||||
'browser_section_description' => 'Gestiona y cierra tus sesiones activas en otros navegadores y dispositivos',
|
||||
'browser_sessions_content' => 'Si es necesario, puedes cerrar todas tus sesiones de navegación en todos tus dispositivos. Algunas de sus sesiones recientes se enumeran a continuación; sin embargo, esta lista puede no ser exhaustiva. Si cree que su cuenta ha sido comprometida, también debería actualizar su contraseña',
|
||||
'browser_sessions_device' => 'Este dispositivo',
|
||||
'browser_sessions_last_active' => 'Última activa',
|
||||
'browser_sessions_log_out' => 'Cerrar otras sesiones del navegador',
|
||||
'browser_sessions_confirm_pass' => 'Por favor, introduzca su contraseña para confirmar que desea salir de sus otras sesiones de navegación en todos sus dispositivos',
|
||||
'browser_sessions_logout_success_notification' => 'Se han cerrado todas las demás sesiones del navegador con éxito.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/fa/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/fa/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'ویرایش پروفایل',
|
||||
'profile_information' => 'اطلاعات پروفایل',
|
||||
'profile_information_description' => 'اطلاعات پروفایل و آدرس ایمیل خود را به روز کنید.',
|
||||
'name' => 'نام',
|
||||
'email' => 'ایمیل',
|
||||
'avatar' => 'آواتار',
|
||||
'password' => 'رمز عبور',
|
||||
'locale' => 'زبان',
|
||||
'theme_color' => 'رنگ تم',
|
||||
'update_password' => 'بروزرسانی رمز عبور',
|
||||
'current_password' => 'رمز عبور فعلی',
|
||||
'new_password' => 'رمز عبور جدید',
|
||||
'confirm_password' => 'تایید رمز عبور',
|
||||
'ensure_your_password' => 'اطمینان حاصل کنید که حساب شما از رمز عبور طولانی و تصادفی برای حفظ امنیت استفاده می کند.',
|
||||
'delete_account' => 'حذف حساب کاربری',
|
||||
'delete_account_description' => 'اکانت خود را برای همیشه حذف کنید',
|
||||
'yes_delete_it' => 'بله؛ حذف کن',
|
||||
'are_you_sure' => 'آیا مطمئن هستید که می خواهید حساب خود را حذف کنید؟ این قابل بازگشت نیست!',
|
||||
'incorrect_password' => 'رمز عبور ای که وارد کردید نادرست بود. لطفا دوباره تلاش کنید.',
|
||||
'user_load_error' => ' کاربر تأیید شده باید یک مدل Eloquent باشد تا به صفحه پروفایل اجازه به روز رسانی آن را بدهد.',
|
||||
'delete_account_card_description' => 'پس از حذف حساب شما، تمام منابع و داده های شما برای همیشه پاک می شوند. قبل از حذف حساب خود، لطفاً هر داده یا اطلاعاتی را که میخواهید نگه دارید دانلود کنید.',
|
||||
'saved_successfully' => 'اطلاعات پروفایل شما با موفقیت ذخیره شد.',
|
||||
'custom_fields' => 'فیلدهای سفارشی',
|
||||
'custom_fields_description' => 'فیلدهای سفارشی خود را به روز کنید.',
|
||||
'save' => 'ذخیره',
|
||||
'token_name' => 'نام توکن',
|
||||
'token_abilities' => 'توانایی ها',
|
||||
'token_created_at' => 'ساخته شده در',
|
||||
'token_expires_at' => 'منقضی در',
|
||||
'token_section_title' => 'توکن API',
|
||||
'token_section_description' => 'توکنهای API را مدیریت کنید که به سرویسهای شخص ثالث اجازه میدهند از طرف شما به این برنامه دسترسی داشته باشند.',
|
||||
'token_action_label' => 'ساخت توکن',
|
||||
'token_modal_heading' => 'ايجاد كردن',
|
||||
'token_create_notification' => 'توکن با موفقیت ساخته شد',
|
||||
'token_helper_text' => 'توکن شما تنها یک بار پس از ایجاد نشان داده می شود. اگر توکن خود را گم کردید، باید آن را حذف کرده و یک توکن جدید ایجاد کنید.',
|
||||
'token_modal_heading_2' => 'توکن دسترسی شخصی را کپی کنید',
|
||||
'token_empty_state_heading' => 'ایجاد اولین توکن شما',
|
||||
'token_empty_state_description' => 'برای شروع یک نشانه دسترسی شخصی ایجاد کنید.',
|
||||
'mfa_section_title' => 'احراز هویت چندمرحلهای',
|
||||
'mfa_section_description' => 'تنظیمات احراز هویت چندمرحلهای خود را مدیریت کنید.',
|
||||
'browser_section_title' => 'سشن های مرورگر',
|
||||
'browser_section_description' => 'سشن های فعال خود را در سایر مرورگرها و دستگاه ها مدیریت کرده و از سیستم خارج شوید.',
|
||||
'browser_sessions_content' => 'در صورت لزوم، می توانید از تمام سشن های مرورگر دیگر خود در همه دستگاه های خود خارج شوید. برخی از سشن های اخیر شما در زیر فهرست شده است. با این حال، این فهرست ممکن است جامع نباشد. اگر احساس می کنید حساب شما به خطر افتاده است، باید رمز عبور خود را نیز به روز کنید.',
|
||||
'browser_sessions_device' => 'این دستگاه',
|
||||
'browser_sessions_last_active' => 'آخرین فعالیت',
|
||||
'browser_sessions_log_out' => 'از سایر سشن های مرورگر خارج شوید',
|
||||
'browser_sessions_confirm_pass' => 'لطفاً رمز عبور خود را وارد کنید تا تأیید کنید که می خواهید از سایر سشن های مرورگر خود در همه دستگاه های خود خارج شوید.',
|
||||
'browser_sessions_logout_success_notification' => 'تمامی جلسات دیگر مرورگر با موفقیت خارج شدند.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/fr/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/fr/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Modifier le profil',
|
||||
'profile_information' => 'Informations de profil',
|
||||
'profile_information_description' => 'Mettez à jour les informations de votre profil de compte et votre adresse e-mail.',
|
||||
'name' => 'Nom',
|
||||
'email' => 'E-mail',
|
||||
'avatar' => 'Photo',
|
||||
'password' => 'Mot de passe',
|
||||
'locale' => 'Langue',
|
||||
'theme_color' => 'Couleur du thème',
|
||||
'update_password' => 'Mettre à jour le mot de passe',
|
||||
'current_password' => 'Mot de passe actuel',
|
||||
'new_password' => 'Nouveau mot de passe',
|
||||
'confirm_password' => 'Confirmer le mot de passe',
|
||||
'ensure_your_password' => 'Assurez-vous que votre compte utilise un mot de passe long et aléatoire pour rester en sécurité.',
|
||||
'delete_account' => 'Supprimer le compte',
|
||||
'delete_account_description' => 'Supprimer définitivement votre compte.',
|
||||
'yes_delete_it' => 'Oui, supprimez-le !',
|
||||
'are_you_sure' => 'Êtes-vous sûr de vouloir supprimer votre compte ? Ça ne peut pas être annulé!',
|
||||
'incorrect_password' => 'Le mot de passe que vous avez entré était incorrect. Veuillez réessayer.',
|
||||
'user_load_error' => 'L\'objet utilisateur authentifié doit être un modèle Eloquent pour permettre à la page de profil de le mettre à jour.',
|
||||
'delete_account_card_description' => 'Une fois votre compte supprimé, toutes vos ressources et données seront définitivement effacées. Avant de supprimer votre compte, veuillez télécharger toutes les données ou informations que vous souhaitez conserver.',
|
||||
'saved_successfully' => 'Les informations de votre profil ont été enregistrées avec succès.',
|
||||
'custom_fields' => 'Champs personnalisés',
|
||||
'custom_fields_description' => 'Mettez à jour vos champs personnalisés.',
|
||||
'save' => 'Enregistrer',
|
||||
'token_name' => 'Nom du jeton',
|
||||
'token_abilities' => 'Capacités',
|
||||
'token_created_at' => 'Créé à',
|
||||
'token_expires_at' => 'Expire à',
|
||||
'token_section_title' => 'Jetons API',
|
||||
'token_section_description' => 'Gérer les jetons API qui permettent aux services tiers d\'accéder à cette application en votre nom.',
|
||||
'token_action_label' => 'Créer un jeton',
|
||||
'token_modal_heading' => 'Créer',
|
||||
'token_create_notification' => 'Jeton créé avec succès !',
|
||||
'token_helper_text' => 'Votre token n\'est affiché qu\'une seule fois lors de sa création. Si vous perdez votre token, vous devrez le supprimer et en créer un nouveau.',
|
||||
'token_modal_heading_2' => 'Copier le jeton d\'accès personnel',
|
||||
'token_empty_state_heading' => 'Créez votre premier jeton',
|
||||
'token_empty_state_description' => 'Créez un jeton d\'accès personnel pour commencer.',
|
||||
'mfa_section_title' => 'Authentification multifacteur',
|
||||
'mfa_section_description' => 'Gérez les paramètres de votre authentification multifacteur.',
|
||||
'browser_section_title' => 'Sessions du navigateur',
|
||||
'browser_section_description' => 'Gérez et déconnectez-vous de vos sessions actives sur d\'autres navigateurs et appareils.',
|
||||
'browser_sessions_content' => 'Si nécessaire, vous pouvez vous déconnecter de toutes vos autres sessions de navigateur sur tous vos appareils. Certaines de vos sessions récentes sont répertoriées ci-dessous ; cependant, cette liste n\'est peut-être pas exhaustive. Si vous pensez que votre compte a été compromis, vous devez également mettre à jour votre mot de passe.',
|
||||
'browser_sessions_device' => 'Cet appareil',
|
||||
'browser_sessions_last_active' => 'Dernier actif',
|
||||
'browser_sessions_log_out' => 'Déconnexion des autres sessions du navigateur',
|
||||
'browser_sessions_confirm_pass' => 'Veuillez saisir votre mot de passe pour confirmer que vous souhaitez vous déconnecter de vos autres sessions de navigateur sur tous vos appareils.',
|
||||
'browser_sessions_logout_success_notification' => 'Toutes les autres sessions de navigateur ont été déconnectées avec succès.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/he/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/he/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'עריכת פרופיל',
|
||||
'profile_information' => 'פרטי פרופיל',
|
||||
'profile_information_description' => 'עדכן את פרטי החשבון ואת כתובת הדואר האלקטרוני בחשבונך.',
|
||||
'name' => 'שם',
|
||||
'email' => 'דואר אלקטרוני',
|
||||
'avatar' => 'תמונה',
|
||||
'password' => 'סיסמה',
|
||||
'locale' => 'שפה',
|
||||
'theme_color' => 'ערכת צבע',
|
||||
'update_password' => 'עדכון סיסמה',
|
||||
'current_password' => 'סיסמה נוכחית',
|
||||
'new_password' => 'סיסמה חדשה',
|
||||
'confirm_password' => 'אשר סיסמה',
|
||||
'ensure_your_password' => 'הקפד להשתמש בסיסמה ארוכה ומורכבת, כדי לשמור על החשבון מאובטח.',
|
||||
'delete_account' => 'מחיקת חשבון',
|
||||
'delete_account_description' => 'מחק את החשבון שלך לצמיתות.',
|
||||
'yes_delete_it' => 'כן, מחק!',
|
||||
'are_you_sure' => 'האם אתה בטוח שברצונך למחוק את חשבונך? פעולה זו אינה ניתנת לביטול!',
|
||||
'incorrect_password' => 'הסיסמה שהוזנה אינה נכונה. אנא נסה שנית.',
|
||||
'user_load_error' => 'The authenticated user object must be an Eloquent model to allow the profile page to update it.',
|
||||
'delete_account_card_description' => 'לאחר מחיקת החשבון, כל המידע והמשאבים של החשבון שלך יימחקו לצמיתות. אנא הורד את כל הנתונים או את המידע שברצונך לשמור לפני מחיקת החשבון.',
|
||||
'saved_successfully' => 'פרטי הפרופיל שלך נשמרו בהצלחה.',
|
||||
'custom_fields' => 'שדות בהתאמה אישית',
|
||||
'custom_fields_description' => 'עדכן את השדות המותאמות אישית.',
|
||||
'save' => 'שמירה',
|
||||
'token_name' => 'שם אסימון',
|
||||
'token_abilities' => 'יכולות',
|
||||
'token_created_at' => 'נוצר בתאריך',
|
||||
'token_expires_at' => 'יפוג בתאריך',
|
||||
'token_section_title' => 'אסימוני API',
|
||||
'token_section_description' => 'נהל אסימוני API המאפשרים לשירותי צד שלישי לגשת לאפליקציה זו בשמך.',
|
||||
'token_action_label' => 'יצירת אסימון',
|
||||
'token_modal_heading' => 'יצירה',
|
||||
'token_create_notification' => 'אסימון נוצר בהצלחה!',
|
||||
'token_helper_text' => 'האסימון מוצג רק פעם אחת בעת היצירה. אם תאבד את האסימון, יהיה עליך למחוק אותו וליצור אחד חדש.',
|
||||
'token_modal_heading_2' => 'העתק את אסימון הגישה',
|
||||
'token_empty_state_heading' => 'צור את האסימון הראשון שלך',
|
||||
'token_empty_state_description' => 'צור אסימון גישה כדי להתחיל.',
|
||||
'mfa_section_title' => 'אימות דו-שלבי',
|
||||
'mfa_section_description' => 'נהל את ההגדרות שלך עבור אימות דו-שלבי.',
|
||||
'browser_section_title' => 'חיבורים פעילים בדפדפן',
|
||||
'browser_section_description' => 'נהל ונתק חיבורים פעילים בדפדפנים ומכשירים אחרים.',
|
||||
'browser_sessions_content' => 'במידת הצורך, תוכל לנתק את כל החיבורים הפעילים בדפדפנים אחרים בכל המכשירים שלך. חלק מהחיבורים הפעילים מפורטים להלן; עם זאת, ייתכן שרשימה זו אינה מלאה. אם הינך סבור שחשבונך נפרץ, עליך לשנות בנוסף את הסיסמה שלך.',
|
||||
'browser_sessions_device' => 'מכשיר זה',
|
||||
'browser_sessions_last_active' => 'פעיל לאחרונה',
|
||||
'browser_sessions_log_out' => 'נתק חיבורים פעילים אחרים בדפדפן',
|
||||
'browser_sessions_confirm_pass' => 'אנא הזן את הסיסמה שלך כדי לאשר שברצונך לנתק חיבורים פעילים בדפדפנים אחרים בכל המכשירים שלך.',
|
||||
'browser_sessions_logout_success_notification' => 'כל החיבורים הפעילים בדפדפנים אחרים נותקו בהצלחה.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/hu/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/hu/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Profil szerkesztése',
|
||||
'profile_information' => 'Profil információk',
|
||||
'profile_information_description' => 'Frissítsd a fiókod profilinformációit és e-mail címed.',
|
||||
'name' => 'Név',
|
||||
'email' => 'E-mail',
|
||||
'avatar' => 'Fotó',
|
||||
'password' => 'Jelszó',
|
||||
'locale' => 'Nyelv',
|
||||
'theme_color' => 'Témaszín',
|
||||
'update_password' => 'Jelszó frissítése',
|
||||
'current_password' => 'Jelenlegi jelszó',
|
||||
'new_password' => 'Új jelszó',
|
||||
'confirm_password' => 'Jelszó megerősítése',
|
||||
'ensure_your_password' => 'Győződj meg róla, hogy a fiókod hosszú, véletlenszerű jelszót használ a biztonság érdekében.',
|
||||
'delete_account' => 'Fiók törlése',
|
||||
'delete_account_description' => 'Véglegesen töröld a fiókodat.',
|
||||
'yes_delete_it' => 'Igen, töröld!',
|
||||
'are_you_sure' => 'Biztosan törölni szeretnéd a fiókodat? Ez nem visszavonható!',
|
||||
'incorrect_password' => 'A megadott jelszó helytelen volt. Kérjük, próbáld újra.',
|
||||
'user_load_error' => 'A hitelesített felhasználó objektumnak egy Eloquent modellnek kell lennie, hogy lehetővé tegye a profiloldal frissítését.',
|
||||
'delete_account_card_description' => 'Miután a fiókod törlődik, az összes erőforrásod és adatod véglegesen törlődik. Mielőtt törölnéd a fiókodat, kérjük, töltsd le azokat az adatokat vagy információkat, amelyeket meg szeretnél tartani.',
|
||||
'saved_successfully' => 'Profilinformációid sikeresen elmentve.',
|
||||
'custom_fields' => 'Egyedi mezők',
|
||||
'custom_fields_description' => 'Frissítsd az egyedi mezőket.',
|
||||
'save' => 'Mentés',
|
||||
'token_name' => 'Token neve',
|
||||
'token_abilities' => 'Képességek',
|
||||
'token_created_at' => 'Létrehozva',
|
||||
'token_expires_at' => 'Lejárati dátum',
|
||||
'token_section_title' => 'API Tokenek',
|
||||
'token_section_description' => 'Kezeld az API tokeneket, amelyek lehetővé teszik harmadik féltől származó szolgáltatások számára, hogy hozzáférjenek ehhez az alkalmazáshoz a nevedben.',
|
||||
'token_action_label' => 'Token létrehozása',
|
||||
'token_modal_heading' => 'Létrehozás',
|
||||
'token_create_notification' => 'Token sikeresen létrehozva!',
|
||||
'token_helper_text' => 'A tokent csak egyszer mutatjuk meg létrehozáskor. Ha elveszíted a tokent, törölnöd kell, és újat kell létrehoznod.',
|
||||
'token_modal_heading_2' => 'Személyes hozzáférési token másolása',
|
||||
'token_empty_state_heading' => 'Hozd létre az első tokent',
|
||||
'token_empty_state_description' => 'Hozz létre egy személyes hozzáférési tokent a kezdéshez.',
|
||||
'mfa_section_title' => 'Többfaktoros hitelesítés',
|
||||
'mfa_section_description' => 'A többfaktoros hitelesítés beállításainak kezelése.',
|
||||
'browser_section_title' => 'Böngésző munkamenetek',
|
||||
'browser_section_description' => 'Kezeld és jelentkezz ki az aktív munkameneteidből más böngészőkben és eszközökön.',
|
||||
'browser_sessions_content' => 'Szükség esetén kijelentkezhetsz az összes többi böngésző munkamenetéből az összes eszközödön. Az alábbiakban néhány aktuális munkamenet látható; azonban ez a lista nem feltétlenül teljes. Ha úgy érzed, hogy a fiókodat feltörték, frissítsd jelszavad is.',
|
||||
'browser_sessions_device' => 'Ez az eszköz',
|
||||
'browser_sessions_last_active' => 'Legutóbbi aktivitás',
|
||||
'browser_sessions_log_out' => 'Kijelentkezés más böngésző munkamenetekből',
|
||||
'browser_sessions_confirm_pass' => 'Kérjük, add meg a jelszavad, hogy megerősítsd, ki szeretnél jelentkezni az összes többi böngésző munkamenetből az összes eszközödön.',
|
||||
'browser_sessions_logout_success_notification' => 'Az összes többi böngésző munkamenet sikeresen kijelentkezett.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/id/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/id/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Edit Profil',
|
||||
'profile_information' => 'Informasi Profil',
|
||||
'profile_information_description' => 'Perbarui informasi profil dan alamat email Anda.',
|
||||
'name' => 'Nama',
|
||||
'email' => 'Email',
|
||||
'avatar' => 'Foto',
|
||||
'password' => 'Kata Sandi',
|
||||
'locale' => 'Bahasa',
|
||||
'theme_color' => 'Warna Tema',
|
||||
'update_password' => 'Perbarui Kata Sandi',
|
||||
'current_password' => 'Kata Sandi Saat Ini',
|
||||
'new_password' => 'Kata Sandi Baru',
|
||||
'confirm_password' => 'Konfirmasi Kata Sandi',
|
||||
'ensure_your_password' => 'Pastikan akun Anda menggunakan kata sandi yang panjang dan acak untuk keamanan.',
|
||||
'delete_account' => 'Hapus Akun',
|
||||
'delete_account_description' => 'Hapus akun Anda secara permanen.',
|
||||
'yes_delete_it' => 'Ya, hapus!',
|
||||
'are_you_sure' => 'Apakah Anda yakin ingin menghapus akun Anda? Ini tidak dapat dibatalkan!',
|
||||
'incorrect_password' => 'Kata sandi yang Anda masukkan salah. Silakan coba lagi.',
|
||||
'user_load_error' => 'Objek pengguna yang terautentikasi harus merupakan model Eloquent agar halaman profil dapat memperbaruinya.',
|
||||
'delete_account_card_description' => 'Setelah akun Anda dihapus, semua data dan sumber daya Anda akan dihapus secara permanen. Sebelum menghapus akun, unduh data atau informasi yang ingin Anda simpan.',
|
||||
'saved_successfully' => 'Informasi profil Anda telah berhasil disimpan.',
|
||||
'custom_fields' => 'Bidang Kustom',
|
||||
'custom_fields_description' => 'Perbarui bidang kustom Anda.',
|
||||
'save' => 'Simpan',
|
||||
'token_name' => 'Nama Token',
|
||||
'token_abilities' => 'Kemampuan',
|
||||
'token_created_at' => 'Dibuat pada',
|
||||
'token_expires_at' => 'Berlaku hingga',
|
||||
'token_section_title' => 'Token API',
|
||||
'token_section_description' => 'Kelola token API yang memungkinkan layanan pihak ketiga mengakses aplikasi ini atas nama Anda.',
|
||||
'token_action_label' => 'Buat Token',
|
||||
'token_modal_heading' => 'Buat',
|
||||
'token_create_notification' => 'Token berhasil dibuat!',
|
||||
'token_helper_text' => 'Token Anda hanya ditampilkan sekali saat pembuatan. Jika Anda kehilangan token, Anda perlu menghapusnya dan membuat yang baru.',
|
||||
'token_modal_heading_2' => 'Salin Token Akses Pribadi',
|
||||
'token_empty_state_heading' => 'Buat token pertama Anda',
|
||||
'token_empty_state_description' => 'Buat token akses pribadi untuk memulai.',
|
||||
'mfa_section_title' => 'Autentikasi Multi-Faktor',
|
||||
'mfa_section_description' => 'Kelola pengaturan autentikasi multi-faktor Anda.',
|
||||
'browser_section_title' => 'Sesi Browser',
|
||||
'browser_section_description' => 'Kelola dan keluar dari sesi aktif Anda di browser dan perangkat lain.',
|
||||
'browser_sessions_content' => 'Jika perlu, Anda dapat keluar dari semua sesi browser Anda di semua perangkat. Beberapa sesi terbaru Anda terdaftar di bawah; daftar ini mungkin tidak lengkap. Jika Anda merasa akun Anda telah dikompromikan, perbarui kata sandi Anda.',
|
||||
'browser_sessions_device' => 'Perangkat ini',
|
||||
'browser_sessions_last_active' => 'Terakhir aktif',
|
||||
'browser_sessions_log_out' => 'Keluar dari Sesi Browser Lain',
|
||||
'browser_sessions_confirm_pass' => 'Masukkan kata sandi Anda untuk mengonfirmasi bahwa Anda ingin keluar dari sesi browser lain di semua perangkat.',
|
||||
'browser_sessions_logout_success_notification' => 'Semua sesi browser lainnya telah berhasil keluar.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/it/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/it/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Modifica Profilo',
|
||||
'profile_information' => 'Informazioni del Profilo',
|
||||
'profile_information_description' => "Aggiorna le informazioni del tuo profilo e l'indirizzo email del tuo account.",
|
||||
'name' => 'Nome',
|
||||
'email' => 'Email',
|
||||
'password' => 'Password',
|
||||
'avatar' => 'Avatar',
|
||||
'locale' => 'Lingua',
|
||||
'theme_color' => 'Colore del tema',
|
||||
'update_password' => 'Aggiorna Password',
|
||||
'current_password' => 'Password Attuale',
|
||||
'new_password' => 'Nuova Password',
|
||||
'confirm_password' => 'Conferma Password',
|
||||
'ensure_your_password' => 'Assicurati che il tuo account utilizzi una password lunga e casuale per rimanere sicuro.',
|
||||
'delete_account' => 'Elimina Account',
|
||||
'delete_account_description' => 'Elimina permanentemente il tuo account.',
|
||||
'yes_delete_it' => 'Sì, eliminalo!',
|
||||
'are_you_sure' => 'Sei sicuro di voler eliminare il tuo account? Questa operazione non può essere annullata!',
|
||||
'incorrect_password' => 'La password inserita è errata. Per favore riprova.',
|
||||
'user_load_error' => "L'oggetto utente autenticato deve essere un modello Eloquent per consentire alla pagina del profilo di aggiornarlo.",
|
||||
'delete_account_card_description' => 'Una volta eliminato il tuo account, tutte le tue risorse e dati saranno cancellati permanentemente. Prima di eliminare il tuo account, scarica eventuali dati o informazioni che desideri conservare.',
|
||||
'saved_successfully' => 'Le informazioni del tuo profilo sono state salvate con successo.',
|
||||
'custom_fields' => 'Campi Personalizzati',
|
||||
'custom_fields_description' => 'Aggiorna i tuoi campi personalizzati.',
|
||||
'save' => 'Salva',
|
||||
'token_name' => 'Nome del Token',
|
||||
'token_abilities' => 'Permessi',
|
||||
'token_created_at' => 'Creato il',
|
||||
'token_expires_at' => 'Scade il',
|
||||
'token_section_title' => 'Token API',
|
||||
'token_section_description' => 'Gestisci i token API che consentono ai servizi di terze parti di accedere a questa applicazione per tuo conto.',
|
||||
'token_action_label' => 'Crea Token',
|
||||
'token_modal_heading' => 'Crea',
|
||||
'token_create_notification' => 'Token creato con successo!',
|
||||
'token_helper_text' => 'Il tuo token viene mostrato solo una volta alla creazione. Se perdi il tuo token, dovrai eliminarlo e crearne uno nuovo.',
|
||||
'token_modal_heading_2' => 'Copia il Token di Accesso Personale',
|
||||
'token_empty_state_heading' => 'Crea il tuo primo token',
|
||||
'token_empty_state_description' => 'Crea un token di accesso personale per iniziare.',
|
||||
'mfa_section_title' => 'Autenticazione a più fattori',
|
||||
'mfa_section_description' => 'Gestisci le impostazioni della tua autenticazione a più fattori.',
|
||||
'browser_section_title' => 'Sessioni del Browser',
|
||||
'browser_section_description' => 'Gestisci e disconnetti le tue sessioni attive su altri browser e dispositivi.',
|
||||
'browser_sessions_content' => 'Se necessario, puoi disconnetterti da tutte le tue altre sessioni del browser su tutti i tuoi dispositivi. Alcune delle tue sessioni recenti sono elencate di seguito; tuttavia, questo elenco potrebbe non essere esaustivo. Se ritieni che il tuo account sia stato compromesso, dovresti anche aggiornare la tua password.',
|
||||
'browser_sessions_device' => 'Questo dispositivo',
|
||||
'browser_sessions_last_active' => 'Ultima attività',
|
||||
'browser_sessions_log_out' => 'Disconnetti altre sessioni del browser',
|
||||
'browser_sessions_confirm_pass' => 'Inserisci la tua password per confermare che desideri disconnettere le altre sessioni del browser su tutti i tuoi dispositivi.',
|
||||
'browser_sessions_logout_success_notification' => 'Tutte le altre sessioni del browser sono state disconnesse con successo.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/ja/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/ja/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'プロフィール編集',
|
||||
'profile_information' => 'プロフィール情報',
|
||||
'profile_information_description' => 'アカウントのプロフィール情報とメールアドレスを更新してください。',
|
||||
'name' => '名前',
|
||||
'email' => 'メールアドレス',
|
||||
'avatar' => '写真',
|
||||
'password' => 'パスワード',
|
||||
'locale' => '言語',
|
||||
'theme_color' => 'テーマカラー',
|
||||
'update_password' => 'パスワード更新',
|
||||
'current_password' => '現在のパスワード',
|
||||
'new_password' => '新しいパスワード',
|
||||
'confirm_password' => 'パスワード確認',
|
||||
'ensure_your_password' => 'アカウントのセキュリティを保つために、長くランダムなパスワードを使用していることを確認してください。',
|
||||
'delete_account' => 'アカウント削除',
|
||||
'delete_account_description' => 'アカウントを永久に削除します。',
|
||||
'yes_delete_it' => 'はい、削除します!',
|
||||
'are_you_sure' => '本当にアカウントを削除してもよろしいですか? この操作は元に戻せません!',
|
||||
'incorrect_password' => '入力されたパスワードが正しくありません。もう一度お試しください。',
|
||||
'user_load_error' => 'プロフィールページが更新できるように、認証されたユーザーオブジェクトは Eloquent モデルである必要があります。',
|
||||
'delete_account_card_description' => 'アカウントを削除すると、すべてのリソースとデータが永久に消去されます。アカウントを削除する前に、保存しておきたいデータや情報をダウンロードしてください。',
|
||||
'saved_successfully' => 'プロフィール情報が正常に保存されました。',
|
||||
'custom_fields' => 'カスタムフィールド',
|
||||
'custom_fields_description' => 'カスタムフィールドを更新してください。',
|
||||
'save' => '保存',
|
||||
'token_name' => 'トークン名',
|
||||
'token_abilities' => '権限',
|
||||
'token_created_at' => '作成日時',
|
||||
'token_expires_at' => '有効期限',
|
||||
'token_section_title' => 'APIトークン',
|
||||
'token_section_description' => 'サードパーティのサービスがあなたに代わってこのアプリケーションにアクセスできるようにするAPIトークンを管理します。',
|
||||
'token_action_label' => 'トークン作成',
|
||||
'token_modal_heading' => '作成',
|
||||
'token_create_notification' => 'トークンが正常に作成されました!',
|
||||
'token_helper_text' => 'トークンは作成時に一度だけ表示されます。紛失した場合は、削除して新しいトークンを作成する必要があります。',
|
||||
'token_modal_heading_2' => 'パーソナルアクセストークンをコピー',
|
||||
'token_empty_state_heading' => '最初のトークンを作成',
|
||||
'token_empty_state_description' => 'パーソナルアクセストークンを作成して始めましょう。',
|
||||
'mfa_section_title' => '多要素認証',
|
||||
'mfa_section_description' => '多要素認証の設定を管理します。',
|
||||
'browser_section_title' => 'ブラウザセッション',
|
||||
'browser_section_description' => '他のブラウザやデバイスでのアクティブなセッションを管理し、ログアウトします。',
|
||||
'browser_sessions_content' => '必要に応じて、すべてのデバイスでの他のブラウザセッションからログアウトすることができます。最近のセッションの一部が下に表示されていますが、すべてが表示されるわけではありません。アカウントが不正アクセスされた場合は、パスワードも更新してください。',
|
||||
'browser_sessions_device' => 'このデバイス',
|
||||
'browser_sessions_last_active' => '最終アクティブ時刻',
|
||||
'browser_sessions_log_out' => '他のブラウザセッションからログアウト',
|
||||
'browser_sessions_confirm_pass' => 'すべてのデバイスで他のブラウザセッションからログアウトすることを確認するために、パスワードを入力してください。',
|
||||
'browser_sessions_logout_success_notification' => '他のすべてのブラウザセッションから正常にログアウトしました。',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/nl/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/nl/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Profiel Bewerken',
|
||||
'profile_information' => 'Profielinformatie',
|
||||
'profile_information_description' => 'Werk uw accountprofielinformatie en e-mailadres bij.',
|
||||
'name' => 'Naam',
|
||||
'email' => 'E-mail',
|
||||
'avatar' => 'Foto',
|
||||
'password' => 'Wachtwoord',
|
||||
'locale' => 'Taal',
|
||||
'theme_color' => 'Themakleur',
|
||||
'update_password' => 'Wachtwoord Bijwerken',
|
||||
'current_password' => 'Huidig Wachtwoord',
|
||||
'new_password' => 'Nieuw Wachtwoord',
|
||||
'confirm_password' => 'Bevestig Wachtwoord',
|
||||
'ensure_your_password' => 'Zorg ervoor dat uw account een lang, willekeurig wachtwoord gebruikt om veilig te blijven.',
|
||||
'delete_account' => 'Account Verwijderen',
|
||||
'delete_account_description' => 'Verwijder uw account permanent.',
|
||||
'yes_delete_it' => 'Ja, verwijder het!',
|
||||
'are_you_sure' => 'Weet u zeker dat u uw account wilt verwijderen? Dit kan niet ongedaan worden gemaakt!',
|
||||
'incorrect_password' => 'Het ingevoerde wachtwoord is onjuist. Probeer het opnieuw.',
|
||||
'user_load_error' => 'Het geauthenticeerde gebruikersobject moet een Eloquent-model zijn om de profielpagina te kunnen bijwerken.',
|
||||
'delete_account_card_description' => 'Zodra uw account is verwijderd, worden al uw bronnen en gegevens permanent gewist. Download voor het verwijderen van uw account alle gegevens of informatie die u wilt bewaren.',
|
||||
'saved_successfully' => 'Uw profielinformatie is succesvol opgeslagen.',
|
||||
'custom_fields' => 'Aangepaste Velden',
|
||||
'custom_fields_description' => 'Werk uw aangepaste velden bij.',
|
||||
'save' => 'Opslaan',
|
||||
'token_name' => 'Tokennaam',
|
||||
'token_abilities' => 'Mogelijkheden',
|
||||
'token_created_at' => 'Aangemaakt op',
|
||||
'token_expires_at' => 'Verloopt op',
|
||||
'token_section_title' => 'API Tokens',
|
||||
'token_section_description' => 'Beheer API-tokens die derden toestaan toegang te krijgen tot deze applicatie namens u.',
|
||||
'token_action_label' => 'Token Aanmaken',
|
||||
'token_modal_heading' => 'Aanmaken',
|
||||
'token_create_notification' => 'Token succesvol aangemaakt!',
|
||||
'token_helper_text' => 'Uw token wordt slechts één keer weergegeven bij het aanmaken. Als u uw token verliest, moet u deze verwijderen en een nieuwe aanmaken.',
|
||||
'token_modal_heading_2' => 'Persoonlijke Toegangstoken Kopiëren',
|
||||
'token_empty_state_heading' => 'Maak uw eerste token aan',
|
||||
'token_empty_state_description' => 'Maak een persoonlijke toegangstoken om te beginnen.',
|
||||
'mfa_section_title' => 'Multi-factorauthenticatie',
|
||||
'mfa_section_description' => 'Beheer je instellingen voor multi-factorauthenticatie.',
|
||||
'browser_section_title' => 'Browsersessies',
|
||||
'browser_section_description' => 'Beheer en log uit uw actieve sessies op andere browsers en apparaten.',
|
||||
'browser_sessions_content' => 'Indien nodig kunt u uitloggen bij al uw andere browsersessies op al uw apparaten. Sommige van uw recente sessies worden hieronder vermeld; deze lijst is echter mogelijk niet uitputtend. Als u vermoedt dat uw account is gecompromitteerd, moet u ook uw wachtwoord bijwerken.',
|
||||
'browser_sessions_device' => 'Dit apparaat',
|
||||
'browser_sessions_last_active' => 'Laatst actief',
|
||||
'browser_sessions_log_out' => 'Log Uit bij Andere Browsersessies',
|
||||
'browser_sessions_confirm_pass' => 'Voer uw wachtwoord in om te bevestigen dat u wilt uitloggen bij uw andere browsersessies op al uw apparaten.',
|
||||
'browser_sessions_logout_success_notification' => 'Alle andere browsersessies zijn succesvol uitgelogd.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/pl/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/pl/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Mój profil',
|
||||
'profile_information' => 'Podstawowe informacje',
|
||||
'profile_information_description' => 'Zaktualizuj nazwę i adres e-mail swojego konta.',
|
||||
'name' => 'Nazwa użytkownika',
|
||||
'email' => 'E-mail',
|
||||
'avatar' => 'Zdjęcie',
|
||||
'password' => 'Hasło',
|
||||
'locale' => 'Język',
|
||||
'theme_color' => 'Kolor motywu',
|
||||
'update_password' => 'Zaktualizuj hasło',
|
||||
'current_password' => 'Obecne hasło',
|
||||
'new_password' => 'Nowe hasło',
|
||||
'confirm_password' => 'Powtórz hasło',
|
||||
'ensure_your_password' => 'Upewnij się, że Twoje konto używa długiego, losowego, bezpiecznego hasła, aby zachować bezpieczeństwo.',
|
||||
'delete_account' => 'Usuń konto',
|
||||
'delete_account_description' => 'Trwale usuń konto.',
|
||||
'yes_delete_it' => 'Tak, usuń!',
|
||||
'are_you_sure' => 'Czy na pewno chcesz usunąć swoje konto? Tej operacji nie można cofnąć!',
|
||||
'incorrect_password' => 'Wprowadzone hasło jest nieprawidłowe. Spróbuj ponownie.',
|
||||
'user_load_error' => 'Uwierzytelniony obiekt użytkownika musi być modelem Eloquent, aby umożliwić aktualizację strony profilu.',
|
||||
'delete_account_card_description' => 'Po usunięciu konta wszystkie Twoje zasoby i dane zostaną trwale usunięte. Przed usunięciem konta pobierz wszelkie dane lub informacje, które chcesz zachować.',
|
||||
'saved_successfully' => 'Informacje o Twoim profilu zostały pomyślnie zapisane.',
|
||||
'custom_fields' => 'Pola niestandardowe',
|
||||
'custom_fields_description' => 'Zaktualizuj pola niestandardowe.',
|
||||
'save' => 'Zapisz',
|
||||
'token_name' => 'Nazwa tokena',
|
||||
'token_abilities' => 'Uprawnienia',
|
||||
'token_created_at' => 'Utworzono',
|
||||
'token_expires_at' => 'Wygasa',
|
||||
'token_section_title' => 'Tokeny API',
|
||||
'token_section_description' => 'Zarządzaj tokenami API, które umożliwiają usługom zewnętrznym dostęp do tej aplikacji w Twoim imieniu.',
|
||||
'token_action_label' => 'Utwórz token',
|
||||
'token_modal_heading' => 'Utwórz',
|
||||
'token_create_notification' => 'Token został pomyślnie utworzony!',
|
||||
'token_helper_text' => 'Twój token jest wyświetlany tylko raz podczas tworzenia. Jeśli zgubisz token, będziesz musiał go usunąć i utworzyć nowy.',
|
||||
'token_modal_heading_2' => 'Skopiuj osobisty token dostępu',
|
||||
'token_empty_state_heading' => 'Utwórz swój pierwszy token',
|
||||
'token_empty_state_description' => 'Utwórz osobisty token dostępu, aby rozpocząć.',
|
||||
'mfa_section_title' => 'Uwierzytelnianie wieloskładnikowe',
|
||||
'mfa_section_description' => 'Zarządzaj ustawieniami uwierzytelniania wieloskładnikowego.',
|
||||
'browser_section_title' => 'Sesje przeglądarki',
|
||||
'browser_section_description' => 'Zarządzaj i wyloguj swoje aktywne sesje na innych przeglądarkach i urządzeniach.',
|
||||
'browser_sessions_content' => 'Jeśli to konieczne, możesz wylogować się ze wszystkich innych sesji przeglądarki na wszystkich swoich urządzeniach. Poniżej wymieniono niektóre z Twoich ostatnich sesji, jednak lista ta może nie być pełna. Jeśli uważasz, że Twoje konto zostało naruszone, powinieneś również zaktualizować hasło.',
|
||||
'browser_sessions_device' => 'To urządzenie',
|
||||
'browser_sessions_last_active' => 'Ostatnia aktywność',
|
||||
'browser_sessions_log_out' => 'Wyloguj inne sesje przeglądarki',
|
||||
'browser_sessions_confirm_pass' => 'Wprowadź swoje hasło, aby potwierdzić, że chcesz wylogować się z innych sesji przeglądarki na wszystkich swoich urządzeniach.',
|
||||
'browser_sessions_logout_success_notification' => 'Wszystkie inne sesje przeglądarki zostały pomyślnie wylogowane.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/pt_BR/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/pt_BR/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Editar Perfil',
|
||||
'profile_information' => 'Informação do Perfil',
|
||||
'profile_information_description' => 'Atualize as informações do seu perfil e endereço de e-mail.',
|
||||
'name' => 'Nome',
|
||||
'email' => 'E-mail',
|
||||
'avatar' => 'Foto',
|
||||
'password' => 'Senha',
|
||||
'locale' => 'Idioma',
|
||||
'theme_color' => 'Cor do tema',
|
||||
'update_password' => 'Atualizar Senha',
|
||||
'current_password' => 'Senha Atual',
|
||||
'new_password' => 'Nova Senha',
|
||||
'confirm_password' => 'Confirmar Senha',
|
||||
'ensure_your_password' => 'Certifique-se de que sua conta está usando uma senha longa e aleatória para se manter segura.',
|
||||
'delete_account' => 'Excluir Conta',
|
||||
'delete_account_description' => 'Excluir permanentemente sua conta.',
|
||||
'yes_delete_it' => 'Sim, exclua!',
|
||||
'are_you_sure' => 'Tem certeza de que deseja excluir sua conta? Isso não pode ser desfeito!',
|
||||
'incorrect_password' => 'A senha que você digitou estava incorreta. Por favor, tente novamente.',
|
||||
'user_load_error' => 'O objeto de usuário autenticado deve ser um modelo Eloquent para permitir que a página de perfil o atualize.',
|
||||
'delete_account_card_description' => 'Depois que sua conta for excluída, todos os seus recursos e dados serão apagados permanentemente. Antes de excluir sua conta, faça o download de quaisquer dados ou informações que deseja manter.',
|
||||
'saved_successfully' => 'Suas informações de perfil foram salvas com sucesso.',
|
||||
'custom_fields' => 'Campos Personalizados',
|
||||
'custom_fields_description' => 'Atualize seus campos personalizados.',
|
||||
'save' => 'Salvar',
|
||||
'token_name' => 'Nome do Token',
|
||||
'token_abilities' => 'Permissões',
|
||||
'token_created_at' => 'Criado em',
|
||||
'token_expires_at' => 'Expira em',
|
||||
'token_section_title' => 'API Tokens',
|
||||
'token_section_description' => 'Gerencie tokens de API que permitem que serviços de terceiros acessem este aplicativo em seu nome.',
|
||||
'token_action_label' => 'Criar Token',
|
||||
'token_modal_heading' => 'Criar',
|
||||
'token_create_notification' => 'Seu Token foi criado com sucesso!',
|
||||
'token_helper_text' => 'O token só é mostrado uma vez após a criação. Se você perder o token, precisará excluí-lo e criar um novo',
|
||||
'token_modal_heading_2' => 'Copiar Toke de Acesso',
|
||||
'token_empty_state_heading' => 'Crie seu primeiro token',
|
||||
'token_empty_state_description' => 'Crie um personal access token para começar.',
|
||||
'mfa_section_title' => 'Autenticação multifator',
|
||||
'mfa_section_description' => 'Gerencie as configurações da sua autenticação multifator.',
|
||||
'browser_section_title' => 'Sessões do navegador',
|
||||
'browser_section_description' => 'Gerencie e efetue logout de suas sessões ativas em outros navegadores e dispositivos.',
|
||||
'browser_sessions_content' => 'Se necessário, você pode sair de todas as outras sessões do navegador em todos os seus dispositivos. Algumas de suas sessões recentes estão listadas abaixo; no entanto, esta lista pode não ser exaustiva. Se você acha que sua conta foi comprometida, você também deve atualizar sua senha.',
|
||||
'browser_sessions_device' => 'Este dispositivo',
|
||||
'browser_sessions_last_active' => 'Ultima Atividade',
|
||||
'browser_sessions_log_out' => 'Sair de outras sessões do navegador',
|
||||
'browser_sessions_confirm_pass' => 'Digite sua senha para confirmar que deseja sair das outras sessões do navegador em todos os seus dispositivos.',
|
||||
'browser_sessions_logout_success_notification' => 'Todas as outras sessões do navegador foram desconectadas com sucesso.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/pt_PT/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/pt_PT/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Editar Perfil',
|
||||
'profile_information' => 'Informação do Perfil',
|
||||
'profile_information_description' => 'Atualize as informações do seu perfil e endereço de email.',
|
||||
'name' => 'Nome',
|
||||
'email' => 'Email',
|
||||
'avatar' => 'Foto',
|
||||
'password' => 'Palavra-passe',
|
||||
'locale' => 'Idioma',
|
||||
'theme_color' => 'Cor do tema',
|
||||
'update_password' => 'Atualizar Palavra-passe',
|
||||
'current_password' => 'Palavra-passe Atual',
|
||||
'new_password' => 'Nova Palavra-passe',
|
||||
'confirm_password' => 'Confirmar Palavra-passe',
|
||||
'ensure_your_password' => 'Garanta que a sua conta está a usar uma palavra-passe longa e aleatória para manter a segurança.',
|
||||
'delete_account' => 'Eliminar Conta',
|
||||
'delete_account_description' => 'Eliminar permanentemente a sua conta.',
|
||||
'yes_delete_it' => 'Sim, eliminar!',
|
||||
'are_you_sure' => 'Tem a certeza de que deseja eliminar a sua conta? Esta ação não pode ser desfeita!',
|
||||
'incorrect_password' => 'A palavra-passe que introduziu está incorreta. Por favor, tente novamente.',
|
||||
'user_load_error' => 'O objeto de utilizador autenticado deve ser um modelo Eloquent para permitir que a página do perfil o atualize.',
|
||||
'delete_account_card_description' => 'Uma vez eliminada a sua conta, todos os seus recursos e dados serão permanentemente apagados. Antes de eliminar a sua conta, por favor, descarregue quaisquer dados ou informações que deseje manter.',
|
||||
'saved_successfully' => 'As informações do seu perfil foram guardadas com sucesso.',
|
||||
'custom_fields' => 'Campos Personalizados',
|
||||
'custom_fields_description' => 'Atualize os seus campos personalizados.',
|
||||
'save' => 'Guardar',
|
||||
'token_name' => 'Nome do Token',
|
||||
'token_abilities' => 'Habilidades',
|
||||
'token_created_at' => 'Criado em',
|
||||
'token_expires_at' => 'Expira em',
|
||||
'token_section_title' => 'Tokens de API',
|
||||
'token_section_description' => 'Gerir tokens de API que permitem que serviços de terceiros acedam a esta aplicação em seu nome.',
|
||||
'token_action_label' => 'Criar Token',
|
||||
'token_modal_heading' => 'Criar',
|
||||
'token_create_notification' => 'Token criado com sucesso!',
|
||||
'token_helper_text' => 'O seu token é mostrado apenas uma vez aquando da criação. Se perder o seu token, terá de o eliminar e criar um novo.',
|
||||
'token_modal_heading_2' => 'Copiar Token de Acesso Pessoal',
|
||||
'token_empty_state_heading' => 'Crie o seu primeiro token',
|
||||
'token_empty_state_description' => 'Crie um token de acesso pessoal para começar.',
|
||||
'mfa_section_title' => 'Autenticação multifator',
|
||||
'mfa_section_description' => 'Gira as definições da sua autenticação multifator.',
|
||||
'browser_section_title' => 'Sessões do Navegador',
|
||||
'browser_section_description' => 'Gerir e terminar as suas sessões ativas em outros navegadores e dispositivos.',
|
||||
'browser_sessions_content' => 'Se necessário, pode terminar todas as suas outras sessões de navegador em todos os seus dispositivos. Algumas das suas sessões recentes estão listadas abaixo; no entanto, esta lista pode não ser exaustiva. Se sentir que a sua conta foi comprometida, deve também atualizar a sua palavra-passe.',
|
||||
'browser_sessions_device' => 'Este dispositivo',
|
||||
'browser_sessions_last_active' => 'Última atividade',
|
||||
'browser_sessions_log_out' => 'Terminar Sessões de Outros Navegadores',
|
||||
'browser_sessions_confirm_pass' => 'Por favor, introduza a sua palavra-passe para confirmar que deseja terminar as sessões de outros navegadores em todos os seus dispositivos.',
|
||||
'browser_sessions_logout_success_notification' => 'Todas as outras sessões do navegador foram desconectadas com êxito.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/sk/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/sk/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Upraviť profil',
|
||||
'profile_information' => 'Základné informácie',
|
||||
'profile_information_description' => 'Upravte základné informácie a e-mailovú adresu profilu.',
|
||||
'name' => 'Meno',
|
||||
'email' => 'E-mail',
|
||||
'avatar' => 'Fotografia',
|
||||
'password' => 'Heslo',
|
||||
'locale' => 'Jazyk',
|
||||
'theme_color' => 'Farba témy',
|
||||
'update_password' => 'Aktualizuj heslo',
|
||||
'current_password' => 'Aktuálne heslo',
|
||||
'new_password' => 'Nové heslo',
|
||||
'confirm_password' => 'Potvrďte nové heslo',
|
||||
'ensure_your_password' => 'Uistite sa že používate dlhé a bezpečné heslo s náhodnými znakmi, aby ste zostali v bezpečí.',
|
||||
'delete_account' => 'Odstrániť účet',
|
||||
'delete_account_description' => 'Odstrániť účet natrvalo.',
|
||||
'yes_delete_it' => 'Áno, odstrániť účet!',
|
||||
'are_you_sure' => 'Ste si istý, že chcete svoj účet odstrániť natrvalo? Túto akciu nemožno vrátiť späť!',
|
||||
'incorrect_password' => 'Chybné heslo. Skúste to prosím znova.',
|
||||
'user_load_error' => 'Autentifikovaný užívateľský účet musí byť modelom Eloquent, aby ho profilová stránka mohla aktualizovať.',
|
||||
'delete_account_card_description' => 'Po odstránení účtu budú všetky vaše súbory a údaje natrvalo vymazané. Pred odstránením účtu si stiahnite všetky veci, ktoré si chcete ponechať.',
|
||||
'saved_successfully' => 'Vaše profilové infomácie boli úspešne uložené.',
|
||||
'custom_fields' => 'Vlastné polia',
|
||||
'custom_fields_description' => 'Upravte Vaše vlastné polia.',
|
||||
'save' => 'Uložiť',
|
||||
'token_name' => 'Názov tokenu',
|
||||
'token_abilities' => 'Oprávnenia',
|
||||
'token_created_at' => 'Vytvorený',
|
||||
'token_expires_at' => 'Upravený',
|
||||
'token_section_title' => 'API Tokeny',
|
||||
'token_section_description' => 'Spravujte API tokeny, ktoré umožňujú službám tretích strán pristupovať k tejto aplikácii vo Vašom mene.',
|
||||
'token_action_label' => 'Vytvoriť token',
|
||||
'token_modal_heading' => 'Vytvoriť',
|
||||
'token_create_notification' => 'Token bol úspešne vytvorený!',
|
||||
'token_helper_text' => 'Váš token bude zobrazený iba raz a to pri jeho vytvorení. Ak ho stratíte, tak ho budete musieť vymazať a vytvoriť nový.',
|
||||
'token_modal_heading_2' => 'Kopírovať osobný prístupový token',
|
||||
'token_empty_state_heading' => 'Vytvorte svoj prvý token',
|
||||
'token_empty_state_description' => 'Vytvorte si osobný prístupový token, aby ho mohli začať používať.',
|
||||
'mfa_section_title' => 'Viacfaktorové overenie',
|
||||
'mfa_section_description' => 'Spravujte nastavenia viacfaktorového overenia.',
|
||||
'browser_section_title' => 'Vaše relácie na zariadeniach',
|
||||
'browser_section_description' => 'Spravujte a odhláste sa z aplikácie na ostatných zariadeniach.',
|
||||
'browser_sessions_content' => 'V prípade potreby sa môžete odhlásiť z ostatných relácií na svojich zariadeniach. Niektoré z vašich nedávnych prihlásení sú uvedené nižšie. Tento zoznam však nemusí byť úplný. Ak máte pocit, že váš účet bol odcudzený, mali by ste aktualizovať svoje heslo.',
|
||||
'browser_sessions_device' => 'Vaše aktuálna relácia',
|
||||
'browser_sessions_last_active' => 'Naposledy aktívna',
|
||||
'browser_sessions_log_out' => 'Odhláste sa z ostatných relácií',
|
||||
'browser_sessions_confirm_pass' => 'Zadajte prosím svoje heslo, aby ste potvrdili, že sa naozaj chcete odhlásiť z ostatných relácií na svojich zariadeniach.',
|
||||
'browser_sessions_logout_success_notification' => 'Boli ste úspešne odhlásený z ostatných relácií na svojich zariadeniach.',
|
||||
];
|
||||
52
lang/vendor/filament-edit-profile/tr/default.php
vendored
Normal file
52
lang/vendor/filament-edit-profile/tr/default.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Profili Düzenle',
|
||||
'profile_information' => 'Profil Bilgileri',
|
||||
'profile_information_description' => 'Hesap profil bilgilerinizi ve e-posta adresinizi güncelleyin.',
|
||||
'name' => 'İsim',
|
||||
'email' => 'E-posta',
|
||||
'avatar' => 'Fotoğraf',
|
||||
'password' => 'Şifre',
|
||||
'locale' => 'Dil',
|
||||
'theme_color' => 'Tema rengi',
|
||||
'update_password' => 'Şifreyi Güncelle',
|
||||
'current_password' => 'Mevcut Şifre',
|
||||
'new_password' => 'Yeni Şifre',
|
||||
'confirm_password' => 'Şifreyi Onayla',
|
||||
'ensure_your_password' => 'Hesabınızın güvenliğini sağlamak için uzun ve rastgele bir şifre kullanın.',
|
||||
'delete_account' => 'Hesabı Sil',
|
||||
'delete_account_description' => 'Hesabınızı kalıcı olarak silin.',
|
||||
'yes_delete_it' => 'Evet, sil!',
|
||||
'are_you_sure' => 'Hesabınızı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz!',
|
||||
'incorrect_password' => 'Girdiğiniz şifre hatalı. Lütfen tekrar deneyin.',
|
||||
'user_load_error' => 'Kimliği doğrulanmış kullanıcı nesnesi, profil sayfasının güncellenmesine izin vermek için bir Eloquent modeli olmalıdır.',
|
||||
'delete_account_card_description' => 'Hesabınız silindikten sonra tüm kaynaklarınız ve verileriniz kalıcı olarak silinecektir. Hesabınızı silmeden önce saklamak istediğiniz tüm verileri indirmenizi öneririz.',
|
||||
'saved_successfully' => 'Profil bilgileriniz başarıyla kaydedildi.',
|
||||
'custom_fields' => 'Özel Alanlar',
|
||||
'custom_fields_description' => 'Özel alanlarınızı güncelleyin.',
|
||||
'save' => 'Kaydet',
|
||||
'token_name' => 'Jeton Adı',
|
||||
'token_abilities' => 'Yetkiler',
|
||||
'token_created_at' => 'Oluşturulma Tarihi',
|
||||
'token_expires_at' => 'Son Kullanma Tarihi',
|
||||
'token_section_title' => 'API Jetonları',
|
||||
'token_section_description' => 'Üçüncü taraf hizmetlerin bu uygulamaya sizin adınıza erişmesini sağlayan API jetonlarını yönetin.',
|
||||
'token_action_label' => 'Jeton Oluştur',
|
||||
'token_modal_heading' => 'Oluştur',
|
||||
'token_create_notification' => 'Jeton başarıyla oluşturuldu!',
|
||||
'token_helper_text' => 'Jetonunuzu yalnızca oluşturulduğunda gösterilir. Eğer jetonunuzu kaybederseniz, onu silip yeni bir tane oluşturmanız gerekir.',
|
||||
'token_modal_heading_2' => 'Kişisel Erişim Jetonlarını Kopyala',
|
||||
'token_empty_state_heading' => 'İlk jetonunuzu oluşturun',
|
||||
'token_empty_state_description' => 'Başlamak için bir kişisel erişim jetonu oluşturun.',
|
||||
'mfa_section_title' => 'Çok Faktörlü Kimlik Doğrulama',
|
||||
'mfa_section_description' => 'Çok faktörlü kimlik doğrulama ayarlarınızı yönetin.',
|
||||
'browser_section_title' => 'Tarayıcı Oturumları',
|
||||
'browser_section_description' => 'Diğer tarayıcılar ve cihazlardaki aktif oturumlarınızı yönetin ve çıkış yapın.',
|
||||
'browser_sessions_content' => 'Gerekirse, diğer tüm tarayıcı oturumlarınızdan çıkış yapabilirsiniz. Aşağıda bazı son oturumlarınız listelenmiştir, ancak bu liste tam kapsamlı olmayabilir. Hesabınızın güvenliğinin ihlal edildiğini düşünüyorsanız, şifrenizi de güncellemeniz gerekir.',
|
||||
'browser_sessions_device' => 'Bu Cihaz',
|
||||
'browser_sessions_last_active' => 'Son aktif',
|
||||
'browser_sessions_log_out' => 'Diğer Tarayıcı Oturumlarından Çıkış Yap',
|
||||
'browser_sessions_confirm_pass' => 'Tüm cihazlarınızdaki diğer tarayıcı oturumlarından çıkış yapmak istediğinizi onaylamak için lütfen şifrenizi girin.',
|
||||
'browser_sessions_logout_success_notification' => 'Tüm diğer tarayıcı oturumlarından başarıyla çıkış yapıldı.',
|
||||
];
|
||||
725
lang/vendor/filament-forms/en/components.php
vendored
Normal file
725
lang/vendor/filament-forms/en/components.php
vendored
Normal file
@@ -0,0 +1,725 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'builder' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'clone' => [
|
||||
'label' => 'Clone',
|
||||
],
|
||||
|
||||
'add' => [
|
||||
|
||||
'label' => 'Add to :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Add to :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Add',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'add_between' => [
|
||||
|
||||
'label' => 'Insert between blocks',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Add to :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Add',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Delete',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
||||
'label' => 'Edit',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Edit block',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Save changes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Move',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Move down',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Move up',
|
||||
],
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Collapse',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Expand',
|
||||
],
|
||||
|
||||
'collapse_all' => [
|
||||
'label' => 'Collapse all',
|
||||
],
|
||||
|
||||
'expand_all' => [
|
||||
'label' => 'Expand all',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'checkbox_list' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Deselect all',
|
||||
],
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Select all',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_upload' => [
|
||||
|
||||
'editor' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Cancel',
|
||||
],
|
||||
|
||||
'drag_crop' => [
|
||||
'label' => 'Drag mode "crop"',
|
||||
],
|
||||
|
||||
'drag_move' => [
|
||||
'label' => 'Drag mode "move"',
|
||||
],
|
||||
|
||||
'flip_horizontal' => [
|
||||
'label' => 'Flip image horizontally',
|
||||
],
|
||||
|
||||
'flip_vertical' => [
|
||||
'label' => 'Flip image vertically',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Move image down',
|
||||
],
|
||||
|
||||
'move_left' => [
|
||||
'label' => 'Move image to left',
|
||||
],
|
||||
|
||||
'move_right' => [
|
||||
'label' => 'Move image to right',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Move image up',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Reset',
|
||||
],
|
||||
|
||||
'rotate_left' => [
|
||||
'label' => 'Rotate image to left',
|
||||
],
|
||||
|
||||
'rotate_right' => [
|
||||
'label' => 'Rotate image to right',
|
||||
],
|
||||
|
||||
'set_aspect_ratio' => [
|
||||
'label' => 'Set aspect ratio to :ratio',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Save',
|
||||
],
|
||||
|
||||
'zoom_100' => [
|
||||
'label' => 'Zoom image to 100%',
|
||||
],
|
||||
|
||||
'zoom_in' => [
|
||||
'label' => 'Zoom in',
|
||||
],
|
||||
|
||||
'zoom_out' => [
|
||||
'label' => 'Zoom out',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'height' => [
|
||||
'label' => 'Height',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'rotation' => [
|
||||
'label' => 'Rotation',
|
||||
'unit' => 'deg',
|
||||
],
|
||||
|
||||
'width' => [
|
||||
'label' => 'Width',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'x_position' => [
|
||||
'label' => 'X',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'y_position' => [
|
||||
'label' => 'Y',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aspect_ratios' => [
|
||||
|
||||
'label' => 'Aspect ratios',
|
||||
|
||||
'no_fixed' => [
|
||||
'label' => 'Free',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'svg' => [
|
||||
|
||||
'messages' => [
|
||||
'confirmation' => 'Editing SVG files is not recommended as it can result in quality loss when scaling.\n Are you sure you want to continue?',
|
||||
'disabled' => 'Editing SVG files is disabled as it can result in quality loss when scaling.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'key_value' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Add row',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Delete row',
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Reorder row',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'key' => [
|
||||
'label' => 'Key',
|
||||
],
|
||||
|
||||
'value' => [
|
||||
'label' => 'Value',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'markdown_editor' => [
|
||||
|
||||
'file_attachments_accepted_file_types_message' => 'Uploaded files must be of type: :values.',
|
||||
|
||||
'file_attachments_max_size_message' => 'Uploaded files must not be greater than :max kilobytes.',
|
||||
|
||||
'tools' => [
|
||||
'attach_files' => 'Attach files',
|
||||
'blockquote' => 'Blockquote',
|
||||
'bold' => 'Bold',
|
||||
'bullet_list' => 'Bullet list',
|
||||
'code_block' => 'Code block',
|
||||
'heading' => 'Heading',
|
||||
'italic' => 'Italic',
|
||||
'link' => 'Link',
|
||||
'ordered_list' => 'Numbered list',
|
||||
'redo' => 'Redo',
|
||||
'strike' => 'Strikethrough',
|
||||
'table' => 'Table',
|
||||
'undo' => 'Undo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'modal_table_select' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select' => [
|
||||
|
||||
'label' => 'Select',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select' => [
|
||||
'label' => 'Select',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'radio' => [
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Yes',
|
||||
'false' => 'No',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'repeater' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Add to :label',
|
||||
],
|
||||
|
||||
'add_between' => [
|
||||
'label' => 'Insert between',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Delete',
|
||||
],
|
||||
|
||||
'clone' => [
|
||||
'label' => 'Clone',
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Move',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Move down',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Move up',
|
||||
],
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Collapse',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Expand',
|
||||
],
|
||||
|
||||
'collapse_all' => [
|
||||
'label' => 'Collapse all',
|
||||
],
|
||||
|
||||
'expand_all' => [
|
||||
'label' => 'Expand all',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rich_editor' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach_files' => [
|
||||
|
||||
'label' => 'Upload file',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Upload file',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => [
|
||||
'new' => 'File',
|
||||
'existing' => 'Replace file',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'alt' => [
|
||||
|
||||
'label' => [
|
||||
'new' => 'Alt text',
|
||||
'existing' => 'Change alt text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'custom_block' => [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'insert' => [
|
||||
'label' => 'Insert',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Save',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grid' => [
|
||||
|
||||
'label' => 'Grid',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Grid',
|
||||
|
||||
'form' => [
|
||||
|
||||
'preset' => [
|
||||
|
||||
'label' => 'Preset',
|
||||
|
||||
'placeholder' => 'None',
|
||||
|
||||
'options' => [
|
||||
'two' => 'Two',
|
||||
'three' => 'Three',
|
||||
'four' => 'Four',
|
||||
'five' => 'Five',
|
||||
'two_start_third' => 'Two (Start Third)',
|
||||
'two_end_third' => 'Two (End Third)',
|
||||
'two_start_fourth' => 'Two (Start Fourth)',
|
||||
'two_end_fourth' => 'Two (End Fourth)',
|
||||
],
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Columns',
|
||||
],
|
||||
|
||||
'from_breakpoint' => [
|
||||
|
||||
'label' => 'From breakpoint',
|
||||
|
||||
'options' => [
|
||||
'default' => 'All',
|
||||
'sm' => 'Small',
|
||||
'md' => 'Medium',
|
||||
'lg' => 'Large',
|
||||
'xl' => 'Extra large',
|
||||
'2xl' => 'Two extra large',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_asymmetric' => [
|
||||
'label' => 'Two asymmetric columns',
|
||||
],
|
||||
|
||||
'start_span' => [
|
||||
'label' => 'Start span',
|
||||
],
|
||||
|
||||
'end_span' => [
|
||||
'label' => 'End span',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'link' => [
|
||||
|
||||
'label' => 'Link',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Link',
|
||||
|
||||
'form' => [
|
||||
|
||||
'url' => [
|
||||
'label' => 'URL',
|
||||
],
|
||||
|
||||
'should_open_in_new_tab' => [
|
||||
'label' => 'Open in new tab',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text_color' => [
|
||||
|
||||
'label' => 'Text color',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Text color',
|
||||
|
||||
'form' => [
|
||||
|
||||
'color' => [
|
||||
'label' => 'Color',
|
||||
],
|
||||
|
||||
'custom_color' => [
|
||||
'label' => 'Custom color',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_attachments_accepted_file_types_message' => 'Uploaded files must be of type: :values.',
|
||||
|
||||
'file_attachments_max_size_message' => 'Uploaded files must not be greater than :max kilobytes.',
|
||||
|
||||
'no_merge_tag_search_results_message' => 'No merge tag results.',
|
||||
|
||||
'tools' => [
|
||||
'align_center' => 'Align center',
|
||||
'align_end' => 'Align end',
|
||||
'align_justify' => 'Align justify',
|
||||
'align_start' => 'Align start',
|
||||
'attach_files' => 'Attach files',
|
||||
'blockquote' => 'Blockquote',
|
||||
'bold' => 'Bold',
|
||||
'bullet_list' => 'Bullet list',
|
||||
'clear_formatting' => 'Clear formatting',
|
||||
'code' => 'Code',
|
||||
'code_block' => 'Code block',
|
||||
'custom_blocks' => 'Blocks',
|
||||
'details' => 'Details',
|
||||
'h1' => 'Title',
|
||||
'h2' => 'Heading',
|
||||
'h3' => 'Subheading',
|
||||
'grid' => 'Grid',
|
||||
'grid_delete' => 'Delete grid',
|
||||
'highlight' => 'Highlight',
|
||||
'horizontal_rule' => 'Horizontal rule',
|
||||
'italic' => 'Italic',
|
||||
'lead' => 'Lead text',
|
||||
'link' => 'Link',
|
||||
'merge_tags' => 'Merge tags',
|
||||
'ordered_list' => 'Numbered list',
|
||||
'redo' => 'Redo',
|
||||
'small' => 'Small text',
|
||||
'strike' => 'Strikethrough',
|
||||
'subscript' => 'Subscript',
|
||||
'superscript' => 'Superscript',
|
||||
'table' => 'Table',
|
||||
'table_delete' => 'Delete table',
|
||||
'table_add_column_before' => 'Add column before',
|
||||
'table_add_column_after' => 'Add column after',
|
||||
'table_delete_column' => 'Delete column',
|
||||
'table_add_row_before' => 'Add row above',
|
||||
'table_add_row_after' => 'Add row below',
|
||||
'table_delete_row' => 'Delete row',
|
||||
'table_merge_cells' => 'Merge cells',
|
||||
'table_split_cell' => 'Split cell',
|
||||
'table_toggle_header_row' => 'Toggle header row',
|
||||
'text_color' => 'Text color',
|
||||
'underline' => 'Underline',
|
||||
'undo' => 'Undo',
|
||||
],
|
||||
|
||||
'uploading_file_message' => 'Uploading file...',
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create_option' => [
|
||||
|
||||
'label' => 'Create',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Create',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Create',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Create & create another',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'edit_option' => [
|
||||
|
||||
'label' => 'Edit',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Edit',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Save',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Yes',
|
||||
'false' => 'No',
|
||||
],
|
||||
|
||||
'loading_message' => 'Loading...',
|
||||
|
||||
'max_items_message' => 'Only :count can be selected.',
|
||||
|
||||
'no_search_results_message' => 'No options match your search.',
|
||||
|
||||
'placeholder' => 'Select an option',
|
||||
|
||||
'searching_message' => 'Searching...',
|
||||
|
||||
'search_prompt' => 'Start typing to search...',
|
||||
|
||||
],
|
||||
|
||||
'tags_input' => [
|
||||
'placeholder' => 'New tag',
|
||||
],
|
||||
|
||||
'text_input' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'copy' => [
|
||||
'label' => 'Copy',
|
||||
'message' => 'Copied',
|
||||
],
|
||||
|
||||
'hide_password' => [
|
||||
'label' => 'Hide password',
|
||||
],
|
||||
|
||||
'show_password' => [
|
||||
'label' => 'Show password',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'toggle_buttons' => [
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Yes',
|
||||
'false' => 'No',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
10
lang/vendor/filament-forms/en/validation.php
vendored
Normal file
10
lang/vendor/filament-forms/en/validation.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'distinct' => [
|
||||
'must_be_selected' => 'At least one :attribute field must be selected.',
|
||||
'only_one_must_be_selected' => 'Only one :attribute field must be selected.',
|
||||
],
|
||||
|
||||
];
|
||||
625
lang/vendor/filament-forms/ru/components.php
vendored
Normal file
625
lang/vendor/filament-forms/ru/components.php
vendored
Normal file
@@ -0,0 +1,625 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'builder' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'clone' => [
|
||||
'label' => 'Дублировать',
|
||||
],
|
||||
|
||||
'add' => [
|
||||
|
||||
'label' => 'Добавить к :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Добавить к :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Добавить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'add_between' => [
|
||||
|
||||
'label' => 'Вставить между',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Добавить к :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Добавить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Удалить',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
||||
'label' => 'Редактировать',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Редактирование блока',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Сохранить изменения',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Переместить',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Переместить вниз',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Переместить вверх',
|
||||
],
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Свернуть',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Развернуть',
|
||||
],
|
||||
|
||||
'collapse_all' => [
|
||||
'label' => 'Свернуть все',
|
||||
],
|
||||
|
||||
'expand_all' => [
|
||||
'label' => 'Развернуть все',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'checkbox_list' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Снять выделение',
|
||||
],
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Выделить все',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_upload' => [
|
||||
|
||||
'editor' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Отмена',
|
||||
],
|
||||
|
||||
'drag_crop' => [
|
||||
'label' => 'Режим "кадрирование"',
|
||||
],
|
||||
|
||||
'drag_move' => [
|
||||
'label' => 'Режим "перемещение"',
|
||||
],
|
||||
|
||||
'flip_horizontal' => [
|
||||
'label' => 'Отразить по горизонтали',
|
||||
],
|
||||
|
||||
'flip_vertical' => [
|
||||
'label' => 'Отразить по вертикали',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Переместить вниз',
|
||||
],
|
||||
|
||||
'move_left' => [
|
||||
'label' => 'Переместить влево',
|
||||
],
|
||||
|
||||
'move_right' => [
|
||||
'label' => 'Переместить вправо',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Переместить вверх',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Сбросить',
|
||||
],
|
||||
|
||||
'rotate_left' => [
|
||||
'label' => 'Повернуть влево',
|
||||
],
|
||||
|
||||
'rotate_right' => [
|
||||
'label' => 'Повернуть вправо',
|
||||
],
|
||||
|
||||
'set_aspect_ratio' => [
|
||||
'label' => 'Соотношение сторон :ratio',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Сохранить',
|
||||
],
|
||||
|
||||
'zoom_100' => [
|
||||
'label' => 'Увеличить до 100%',
|
||||
],
|
||||
|
||||
'zoom_in' => [
|
||||
'label' => 'Увеличить',
|
||||
],
|
||||
|
||||
'zoom_out' => [
|
||||
'label' => 'Уменьшить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'height' => [
|
||||
'label' => 'Высота',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'rotation' => [
|
||||
'label' => 'Вращение',
|
||||
'unit' => 'град',
|
||||
],
|
||||
|
||||
'width' => [
|
||||
'label' => 'Ширина',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'x_position' => [
|
||||
'label' => 'X',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'y_position' => [
|
||||
'label' => 'Y',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aspect_ratios' => [
|
||||
|
||||
'label' => 'Соотношения сторон',
|
||||
|
||||
'no_fixed' => [
|
||||
'label' => 'Свободное',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'svg' => [
|
||||
|
||||
'messages' => [
|
||||
'confirmation' => 'Не рекомендуется редактировать SVG-файлы, поскольку при масштабировании может быть потеряно качество.\n Уверены, что хотите продолжить?',
|
||||
'disabled' => 'Редактирование SVG-файлов заблокировано, поскольку при масштабировании может быть потеряно качество.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'key_value' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Добавить строку',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Удалить строку',
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Переместить строку',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'key' => [
|
||||
'label' => 'Ключ',
|
||||
],
|
||||
|
||||
'value' => [
|
||||
'label' => 'Значение',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'markdown_editor' => [
|
||||
|
||||
'tools' => [
|
||||
'attach_files' => 'Прикрепить файлы',
|
||||
'blockquote' => 'Цитата',
|
||||
'bold' => 'Жирный',
|
||||
'bullet_list' => 'Маркировочный список',
|
||||
'code_block' => 'Код',
|
||||
'heading' => 'Заголовок',
|
||||
'italic' => 'Курсив',
|
||||
'link' => 'Ссылка',
|
||||
'ordered_list' => 'Нумерованный список',
|
||||
'redo' => 'Вернуть',
|
||||
'strike' => 'Зачеркнутый',
|
||||
'table' => 'Таблица',
|
||||
'undo' => 'Отменить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'modal_table_select' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select' => [
|
||||
|
||||
'label' => 'Выбрать',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select' => [
|
||||
'label' => 'Выбрать',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'radio' => [
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Да',
|
||||
'false' => 'Нет',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'repeater' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Добавить к :label',
|
||||
],
|
||||
|
||||
'add_between' => [
|
||||
'label' => 'Добавить между',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Удалить',
|
||||
],
|
||||
|
||||
'clone' => [
|
||||
'label' => 'Дублировать',
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Переместить',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Переместить вниз',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Переместить вверх',
|
||||
],
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Свернуть',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Развернуть',
|
||||
],
|
||||
|
||||
'collapse_all' => [
|
||||
'label' => 'Свернуть все',
|
||||
],
|
||||
|
||||
'expand_all' => [
|
||||
'label' => 'Развернуть все',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rich_editor' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach_files' => [
|
||||
|
||||
'label' => 'Загрузить файл',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Загрузка файла',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => [
|
||||
'new' => 'Файл',
|
||||
'existing' => 'Заменить файл',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'alt' => [
|
||||
|
||||
'label' => [
|
||||
'new' => 'Альтернативный текст',
|
||||
'existing' => 'Изменить альтернативный текст',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'custom_block' => [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'insert' => [
|
||||
'label' => 'Вставить',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Сохранить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'link' => [
|
||||
|
||||
'label' => 'Изменить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ссылка',
|
||||
|
||||
'form' => [
|
||||
|
||||
'url' => [
|
||||
'label' => 'URL',
|
||||
],
|
||||
|
||||
'should_open_in_new_tab' => [
|
||||
'label' => 'Открывать в новой вкладке',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_merge_tag_search_results_message' => 'Нет результатов по тегам слияния.',
|
||||
|
||||
'tools' => [
|
||||
'align_center' => 'По центру',
|
||||
'align_end' => 'По правому краю',
|
||||
'align_justify' => 'По ширине',
|
||||
'align_start' => 'По левому краю',
|
||||
'attach_files' => 'Прикрепить файлы',
|
||||
'blockquote' => 'Цитата',
|
||||
'bold' => 'Жирный',
|
||||
'bullet_list' => 'Маркированный список',
|
||||
'clear_formatting' => 'Очистить форматирование',
|
||||
'code' => 'Код',
|
||||
'code_block' => 'Блок кода',
|
||||
'custom_blocks' => 'Блоки',
|
||||
'details' => 'Детали',
|
||||
'h1' => 'Название',
|
||||
'h2' => 'Заголовок',
|
||||
'h3' => 'Подзаголовок',
|
||||
'highlight' => 'Выделение',
|
||||
'horizontal_rule' => 'Горизонтальная линия',
|
||||
'italic' => 'Курсив',
|
||||
'lead' => 'Вводный текст',
|
||||
'link' => 'Ссылка',
|
||||
'merge_tags' => 'Теги слияния',
|
||||
'ordered_list' => 'Нумерованный список',
|
||||
'redo' => 'Повторить',
|
||||
'small' => 'Мелкий текст',
|
||||
'strike' => 'Зачеркнутый',
|
||||
'subscript' => 'Подстрочный',
|
||||
'superscript' => 'Надстрочный',
|
||||
'table' => 'Таблица',
|
||||
'table_delete' => 'Удалить таблицу',
|
||||
'table_add_column_before' => 'Добавить столбец слева',
|
||||
'table_add_column_after' => 'Добавить столбец справа',
|
||||
'table_delete_column' => 'Удалить столбец',
|
||||
'table_add_row_before' => 'Добавить строку выше',
|
||||
'table_add_row_after' => 'Добавить строку ниже',
|
||||
'table_delete_row' => 'Удалить строку',
|
||||
'table_merge_cells' => 'Объединить ячейки',
|
||||
'table_split_cell' => 'Разделить ячейку',
|
||||
'table_toggle_header_row' => 'Переключить заголовок',
|
||||
'underline' => 'Подчеркнутый',
|
||||
'undo' => 'Отменить',
|
||||
],
|
||||
|
||||
'uploading_file_message' => 'Загрузка файла...',
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create_option' => [
|
||||
|
||||
'label' => 'Создать',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Создать',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Создать',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Создать еще один',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'edit_option' => [
|
||||
|
||||
'label' => 'Изменить',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Изменить',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Сохранить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Да',
|
||||
'false' => 'Нет',
|
||||
],
|
||||
|
||||
'loading_message' => 'Загрузка...',
|
||||
|
||||
'max_items_message' => 'Только :count можно выбрать.',
|
||||
|
||||
'no_search_results_message' => 'Нет вариантов, соответствующих вашему запросу.',
|
||||
|
||||
'placeholder' => 'Выбрать вариант',
|
||||
|
||||
'searching_message' => 'Поиск...',
|
||||
|
||||
'search_prompt' => 'Введите текст для поиска...',
|
||||
|
||||
],
|
||||
|
||||
'tags_input' => [
|
||||
'placeholder' => 'Новый тег',
|
||||
],
|
||||
|
||||
'text_input' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'copy' => [
|
||||
'label' => 'Копировать',
|
||||
'message' => 'Скопировано',
|
||||
],
|
||||
|
||||
'hide_password' => [
|
||||
'label' => 'Скрыть пароль',
|
||||
],
|
||||
|
||||
'show_password' => [
|
||||
'label' => 'Показать пароль',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'toggle_buttons' => [
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Да',
|
||||
'false' => 'Нет',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
10
lang/vendor/filament-forms/ru/validation.php
vendored
Normal file
10
lang/vendor/filament-forms/ru/validation.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'distinct' => [
|
||||
'must_be_selected' => ' Должно быть выбрано хотя бы одно поле :attribute.',
|
||||
'only_one_must_be_selected' => 'Должно быть выбрано только одно поле :attribute.',
|
||||
],
|
||||
|
||||
];
|
||||
725
lang/vendor/filament-forms/tk/components.php
vendored
Normal file
725
lang/vendor/filament-forms/tk/components.php
vendored
Normal file
@@ -0,0 +1,725 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'builder' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'clone' => [
|
||||
'label' => 'Göçür',
|
||||
],
|
||||
|
||||
'add' => [
|
||||
|
||||
'label' => ':label-ä goş',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label-ä goş',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Goş',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'add_between' => [
|
||||
|
||||
'label' => 'Bloklaryň arasyna goý',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label-ä goş',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Goş',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Poz',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
||||
'label' => 'Üýtget',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Blogy üýtget',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Üýtgetmeleri ýatda sakla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Göçür',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Aşak göçür',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Ýokary göçür',
|
||||
],
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Ýygjamlaşdyr',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Giňelt',
|
||||
],
|
||||
|
||||
'collapse_all' => [
|
||||
'label' => 'Hemmesini ýygjamlaşdyr',
|
||||
],
|
||||
|
||||
'expand_all' => [
|
||||
'label' => 'Hemmesini giňelt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'checkbox_list' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Hemmesini saýlamagy ýatyrmak',
|
||||
],
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Hemmesini saýla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_upload' => [
|
||||
|
||||
'editor' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Ýatyrmak',
|
||||
],
|
||||
|
||||
'drag_crop' => [
|
||||
'label' => 'Çekmek reimi "kesmek"',
|
||||
],
|
||||
|
||||
'drag_move' => [
|
||||
'label' => 'Çekmek reimi "göçürmek"',
|
||||
],
|
||||
|
||||
'flip_horizontal' => [
|
||||
'label' => 'Suraty gorizontal öwür',
|
||||
],
|
||||
|
||||
'flip_vertical' => [
|
||||
'label' => 'Suraty wertikal öwür',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Suraty aşak göçür',
|
||||
],
|
||||
|
||||
'move_left' => [
|
||||
'label' => 'Suraty çepe göçür',
|
||||
],
|
||||
|
||||
'move_right' => [
|
||||
'label' => 'Suraty saga göçür',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Suraty ýokary göçür',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Täzeden dikelt',
|
||||
],
|
||||
|
||||
'rotate_left' => [
|
||||
'label' => 'Suraty çepe öwür',
|
||||
],
|
||||
|
||||
'rotate_right' => [
|
||||
'label' => 'Suraty saga öwür',
|
||||
],
|
||||
|
||||
'set_aspect_ratio' => [
|
||||
'label' => 'Görkezijiligi :ratio-a kesgitle',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Ýatda sakla',
|
||||
],
|
||||
|
||||
'zoom_100' => [
|
||||
'label' => 'Suraty 100% ulalt',
|
||||
],
|
||||
|
||||
'zoom_in' => [
|
||||
'label' => 'Ulalt',
|
||||
],
|
||||
|
||||
'zoom_out' => [
|
||||
'label' => 'Kiçelt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'height' => [
|
||||
'label' => 'Beýiklik',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'rotation' => [
|
||||
'label' => 'Aýlanma',
|
||||
'unit' => 'der.',
|
||||
],
|
||||
|
||||
'width' => [
|
||||
'label' => 'Ini',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'x_position' => [
|
||||
'label' => 'X',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
'y_position' => [
|
||||
'label' => 'Y',
|
||||
'unit' => 'px',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aspect_ratios' => [
|
||||
|
||||
'label' => 'Görkezijiler',
|
||||
|
||||
'no_fixed' => [
|
||||
'label' => 'Erkin',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'svg' => [
|
||||
|
||||
'messages' => [
|
||||
'confirmation' => 'SVG faýllaryny redaktirlemek maslahat berilmeýär, sebäbi ulaldylanda hil ýitgisi bolup biler.\n Dowam etmek isleýärsiňizmi?',
|
||||
'disabled' => 'SVG faýllaryny redaktirlemek öçürildi, sebäbi ulaldylanda hil ýitgisi bolup biler.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'key_value' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => 'Setir goş',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Setiri poz',
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Setiri tertipleşdir',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'key' => [
|
||||
'label' => 'Açar',
|
||||
],
|
||||
|
||||
'value' => [
|
||||
'label' => 'Baha',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'markdown_editor' => [
|
||||
|
||||
'file_attachments_accepted_file_types_message' => 'Ýüklenen faýllar şu görnüşlerde bolmaly: :values.',
|
||||
|
||||
'file_attachments_max_size_message' => 'Ýüklenen faýllar :max kilobaýtdan köp bolmaly däldir.',
|
||||
|
||||
'tools' => [
|
||||
'attach_files' => 'Faýl goş',
|
||||
'blockquote' => 'Sitata',
|
||||
'bold' => 'Galyň',
|
||||
'bullet_list' => 'Sanawsyz sanaw',
|
||||
'code_block' => 'Kod blogy',
|
||||
'heading' => 'Sözbaşy',
|
||||
'italic' => 'Egri',
|
||||
'link' => 'Baglanyşyk',
|
||||
'ordered_list' => 'Sanly sanaw',
|
||||
'redo' => 'Gaýtala',
|
||||
'strike' => 'Çyzyk',
|
||||
'table' => 'Tablisa',
|
||||
'undo' => 'Yza al',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'modal_table_select' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select' => [
|
||||
|
||||
'label' => 'Saýla',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select' => [
|
||||
'label' => 'Saýla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'radio' => [
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Hawa',
|
||||
'false' => 'Ýok',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'repeater' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add' => [
|
||||
'label' => ':label-ä goş',
|
||||
],
|
||||
|
||||
'add_between' => [
|
||||
'label' => 'Arasy goý',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Poz',
|
||||
],
|
||||
|
||||
'clone' => [
|
||||
'label' => 'Göçür',
|
||||
],
|
||||
|
||||
'reorder' => [
|
||||
'label' => 'Göçür',
|
||||
],
|
||||
|
||||
'move_down' => [
|
||||
'label' => 'Aşak göçür',
|
||||
],
|
||||
|
||||
'move_up' => [
|
||||
'label' => 'Ýokary göçür',
|
||||
],
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Ýygjamlaşdyr',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Giňelt',
|
||||
],
|
||||
|
||||
'collapse_all' => [
|
||||
'label' => 'Hemmesini ýygjamlaşdyr',
|
||||
],
|
||||
|
||||
'expand_all' => [
|
||||
'label' => 'Hemmesini giňelt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rich_editor' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach_files' => [
|
||||
|
||||
'label' => 'Faýl ýükle',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Faýl ýükle',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => [
|
||||
'new' => 'Faýl',
|
||||
'existing' => 'Faýly çalyş',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'alt' => [
|
||||
|
||||
'label' => [
|
||||
'new' => 'Alternatiw tekst',
|
||||
'existing' => 'Alternatiw teksti üýtget',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'custom_block' => [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'insert' => [
|
||||
'label' => 'Goý',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Ýatda sakla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grid' => [
|
||||
|
||||
'label' => 'Tor',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Tor',
|
||||
|
||||
'form' => [
|
||||
|
||||
'preset' => [
|
||||
|
||||
'label' => 'Taýýar',
|
||||
|
||||
'placeholder' => 'Hiç zat',
|
||||
|
||||
'options' => [
|
||||
'two' => 'Iki',
|
||||
'three' => 'Üç',
|
||||
'four' => 'Dört',
|
||||
'five' => 'Bäş',
|
||||
'two_start_third' => 'Iki (Başynda üçden)',
|
||||
'two_end_third' => 'Iki (Ahyrynda üçden)',
|
||||
'two_start_fourth' => 'Iki (Başynda dördüň)',
|
||||
'two_end_fourth' => 'Iki (Ahyrynda dördüň)',
|
||||
],
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Sütünler',
|
||||
],
|
||||
|
||||
'from_breakpoint' => [
|
||||
|
||||
'label' => 'Kesişme nokatyndan',
|
||||
|
||||
'options' => [
|
||||
'default' => 'Hemmesi',
|
||||
'sm' => 'Kiçi',
|
||||
'md' => 'Orta',
|
||||
'lg' => 'Uly',
|
||||
'xl' => 'Örän uly',
|
||||
'2xl' => 'Iki örän uly',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_asymmetric' => [
|
||||
'label' => 'Iki asimmetrik sütün',
|
||||
],
|
||||
|
||||
'start_span' => [
|
||||
'label' => 'Başlangyç giňligi',
|
||||
],
|
||||
|
||||
'end_span' => [
|
||||
'label' => 'Soňky giňligi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'link' => [
|
||||
|
||||
'label' => 'Baglanyşyk',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Baglanyşyk',
|
||||
|
||||
'form' => [
|
||||
|
||||
'url' => [
|
||||
'label' => 'URL',
|
||||
],
|
||||
|
||||
'should_open_in_new_tab' => [
|
||||
'label' => 'Täze bellikde aç',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text_color' => [
|
||||
|
||||
'label' => 'Tekst reňki',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Tekst reňki',
|
||||
|
||||
'form' => [
|
||||
|
||||
'color' => [
|
||||
'label' => 'Reňk',
|
||||
],
|
||||
|
||||
'custom_color' => [
|
||||
'label' => 'Ýörite reňk',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_attachments_accepted_file_types_message' => 'Ýüklenen faýllar şu görnüşlerde bolmaly: :values.',
|
||||
|
||||
'file_attachments_max_size_message' => 'Ýüklenen faýllar :max kilobaýtdan köp bolmaly däldir.',
|
||||
|
||||
'no_merge_tag_search_results_message' => 'Birleşdirme bellikleri netije tapylmady.',
|
||||
|
||||
'tools' => [
|
||||
'align_center' => 'Merkezleşdir',
|
||||
'align_end' => 'Soňuna',
|
||||
'align_justify' => 'Iki gyrana deňle',
|
||||
'align_start' => 'Başyna',
|
||||
'attach_files' => 'Faýl goş',
|
||||
'blockquote' => 'Sitata',
|
||||
'bold' => 'Galyň',
|
||||
'bullet_list' => 'Sanawsyz sanaw',
|
||||
'clear_formatting' => 'Formatlamagy arassala',
|
||||
'code' => 'Kod',
|
||||
'code_block' => 'Kod blogy',
|
||||
'custom_blocks' => 'Bloklar',
|
||||
'details' => 'Jikme-jiklikler',
|
||||
'h1' => 'Sözbaşy',
|
||||
'h2' => 'Kiçi sözbaşy',
|
||||
'h3' => 'Alt sözbaşy',
|
||||
'grid' => 'Tor',
|
||||
'grid_delete' => 'Tory poz',
|
||||
'highlight' => 'Bellendir',
|
||||
'horizontal_rule' => 'Gorizontal çyzyk',
|
||||
'italic' => 'Egri',
|
||||
'lead' => 'Esasy tekst',
|
||||
'link' => 'Baglanyşyk',
|
||||
'merge_tags' => 'Birleşdirme bellikleri',
|
||||
'ordered_list' => 'Sanly sanaw',
|
||||
'redo' => 'Gaýtala',
|
||||
'small' => 'Kiçi tekst',
|
||||
'strike' => 'Çyzyk',
|
||||
'subscript' => 'Aşakdaky ýazgy',
|
||||
'superscript' => 'Ýokardaky ýazgy',
|
||||
'table' => 'Tablisa',
|
||||
'table_delete' => 'Tablisany poz',
|
||||
'table_add_column_before' => 'Ozaldan sütün goş',
|
||||
'table_add_column_after' => 'Soňundan sütün goş',
|
||||
'table_delete_column' => 'Sütüni poz',
|
||||
'table_add_row_before' => 'Ýokardan setir goş',
|
||||
'table_add_row_after' => 'Aşakdan setir goş',
|
||||
'table_delete_row' => 'Setiri poz',
|
||||
'table_merge_cells' => 'Öýjükleri birleşdir',
|
||||
'table_split_cell' => 'Öýjügi böl',
|
||||
'table_toggle_header_row' => 'Sözbaşy setirini üýtget',
|
||||
'text_color' => 'Tekst reňki',
|
||||
'underline' => 'Aşaky çyzyk',
|
||||
'undo' => 'Yza al',
|
||||
],
|
||||
|
||||
'uploading_file_message' => 'Faýl ýüklenýär...',
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create_option' => [
|
||||
|
||||
'label' => 'Döret',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Döret',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Döret',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Döret we başgasyny döret',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'edit_option' => [
|
||||
|
||||
'label' => 'Üýtget',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Üýtget',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Ýatda sakla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Hawa',
|
||||
'false' => 'Ýok',
|
||||
],
|
||||
|
||||
'loading_message' => 'Ýüklenýär...',
|
||||
|
||||
'max_items_message' => 'Diňe :count saýlamak bolýar.',
|
||||
|
||||
'no_search_results_message' => 'Gözlegiňize gabat gelýän wariant tapylmady.',
|
||||
|
||||
'placeholder' => 'Saýlaň',
|
||||
|
||||
'searching_message' => 'Gözlenýär...',
|
||||
|
||||
'search_prompt' => 'Gözlemek üçin ýazmaga başlaň...',
|
||||
|
||||
],
|
||||
|
||||
'tags_input' => [
|
||||
'placeholder' => 'Täze bellik',
|
||||
],
|
||||
|
||||
'text_input' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'copy' => [
|
||||
'label' => 'Göçür',
|
||||
'message' => 'Göçürildi',
|
||||
],
|
||||
|
||||
'hide_password' => [
|
||||
'label' => 'Paroly gizle',
|
||||
],
|
||||
|
||||
'show_password' => [
|
||||
'label' => 'Paroly görkeziň',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'toggle_buttons' => [
|
||||
|
||||
'boolean' => [
|
||||
'true' => 'Hawa',
|
||||
'false' => 'Ýok',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
10
lang/vendor/filament-forms/tk/validation.php
vendored
Normal file
10
lang/vendor/filament-forms/tk/validation.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'distinct' => [
|
||||
'must_be_selected' => 'Azyndan bir :attribute meýdany saýlanmaly.',
|
||||
'only_one_must_be_selected' => 'Diňe bir :attribute meýdany saýlanmaly.',
|
||||
],
|
||||
|
||||
];
|
||||
38
lang/vendor/filament-infolists/en/components.php
vendored
Normal file
38
lang/vendor/filament-infolists/en/components.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'entries' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Show :count less',
|
||||
'expand_list' => 'Show :count more',
|
||||
],
|
||||
|
||||
'more_list_items' => 'and :count more',
|
||||
|
||||
],
|
||||
|
||||
'key_value' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'key' => [
|
||||
'label' => 'Key',
|
||||
],
|
||||
|
||||
'value' => [
|
||||
'label' => 'Value',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'placeholder' => 'No entries',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
38
lang/vendor/filament-infolists/ru/components.php
vendored
Normal file
38
lang/vendor/filament-infolists/ru/components.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'entries' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Скрыть :count',
|
||||
'expand_list' => 'Показать еще :count',
|
||||
],
|
||||
|
||||
'more_list_items' => 'и еще :count',
|
||||
|
||||
],
|
||||
|
||||
'key_value' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'key' => [
|
||||
'label' => 'Ключ',
|
||||
],
|
||||
|
||||
'value' => [
|
||||
'label' => 'Значение',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'placeholder' => 'Нет записей',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
38
lang/vendor/filament-infolists/tk/components.php
vendored
Normal file
38
lang/vendor/filament-infolists/tk/components.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'entries' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Show :count less',
|
||||
'expand_list' => 'Show :count more',
|
||||
],
|
||||
|
||||
'more_list_items' => 'and :count more',
|
||||
|
||||
],
|
||||
|
||||
'key_value' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'key' => [
|
||||
'label' => 'Key',
|
||||
],
|
||||
|
||||
'value' => [
|
||||
'label' => 'Value',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'placeholder' => 'No entries',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
28
lang/vendor/filament-notifications/en/database.php
vendored
Normal file
28
lang/vendor/filament-notifications/en/database.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Notifications',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'clear' => [
|
||||
'label' => 'Clear',
|
||||
],
|
||||
|
||||
'mark_all_as_read' => [
|
||||
'label' => 'Mark all as read',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'No notifications',
|
||||
'description' => 'Please check again later.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
28
lang/vendor/filament-notifications/ru/database.php
vendored
Normal file
28
lang/vendor/filament-notifications/ru/database.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Уведомления',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'clear' => [
|
||||
'label' => 'Удалить',
|
||||
],
|
||||
|
||||
'mark_all_as_read' => [
|
||||
'label' => 'Отметить как прочитанное',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'Нет уведомлений',
|
||||
'description' => 'Пожалуйста, проверьте позже',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
28
lang/vendor/filament-notifications/tk/database.php
vendored
Normal file
28
lang/vendor/filament-notifications/tk/database.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Bildirişler',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'clear' => [
|
||||
'label' => 'Poz',
|
||||
],
|
||||
|
||||
'mark_all_as_read' => [
|
||||
'label' => 'Hemmesini oka',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'Bildiriş ýok',
|
||||
'description' => 'Bildiriş ýpl.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'blocked' => [
|
||||
'title' => 'Email address change blocked',
|
||||
'body' => 'You have successfully blocked an email address change attempt to :email. If you did not make the original request, please contact us immediately.',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'title' => 'Failed to block email address change',
|
||||
'body' => 'Unfortunately, you were unable to prevent the email address from being changed to :email, since it was already verified before you blocked it. If you did not make the original request, please contact us immediately.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
14
lang/vendor/filament-panels/en/auth/http/controllers/email-change-verification-controller.php
vendored
Normal file
14
lang/vendor/filament-panels/en/auth/http/controllers/email-change-verification-controller.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'verified' => [
|
||||
'title' => 'Email address changed',
|
||||
'body' => 'Your email address has been successfully changed to :email.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
71
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/disable.php
vendored
Normal file
71
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/disable.php
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Turn off',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Disable authenticator app',
|
||||
|
||||
'description' => 'Are you sure you want to stop using the authenticator app? Disabling this will remove an extra layer of security from your account.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'use_recovery_code' => [
|
||||
'label' => 'Use a recovery code instead',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'recovery_code' => [
|
||||
|
||||
'label' => 'Or, enter a recovery code',
|
||||
|
||||
'validation_attribute' => 'recovery code',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The recovery code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Disable authenticator app',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'disabled' => [
|
||||
'title' => 'Authenticator app has been disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
77
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/regenerate-recovery-codes.php
vendored
Normal file
77
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/regenerate-recovery-codes.php
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Regenerate recovery codes',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Regenerate authenticator app recovery codes',
|
||||
|
||||
'description' => 'If you lose your recovery codes, you can regenerate them here. Your old recovery codes will be invalidated immediately.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'password' => [
|
||||
|
||||
'label' => 'Or, enter your current password',
|
||||
|
||||
'validation_attribute' => 'password',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Regenerate recovery codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'regenerated' => [
|
||||
'title' => 'New authenticator app recovery codes have been generated',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'show_new_recovery_codes' => [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'New recovery codes',
|
||||
|
||||
'description' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Close',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
81
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/set-up.php
vendored
Normal file
81
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/set-up.php
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Set up',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Set up authenticator app',
|
||||
|
||||
'description' => <<<'BLADE'
|
||||
You'll need an app like Google Authenticator (<x-filament::link href="https://itunes.apple.com/us/app/google-authenticator/id388497605" target="_blank">iOS</x-filament::link>, <x-filament::link href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2" target="_blank">Android</x-filament::link>) to complete this process.
|
||||
BLADE,
|
||||
|
||||
'content' => [
|
||||
|
||||
'qr_code' => [
|
||||
|
||||
'instruction' => 'Scan this QR code with your authenticator app:',
|
||||
|
||||
'alt' => 'QR code to scan with an authenticator app',
|
||||
|
||||
],
|
||||
|
||||
'text_code' => [
|
||||
|
||||
'instruction' => 'Or enter this code manually:',
|
||||
|
||||
'messages' => [
|
||||
'copied' => 'Copied',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'recovery_codes' => [
|
||||
|
||||
'instruction' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'below_content' => 'You will need to enter the 6-digit code from your authenticator app each time you sign in or perform sensitive actions.',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Enable authenticator app',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'enabled' => [
|
||||
'title' => 'Authenticator app has been enabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
64
lang/vendor/filament-panels/en/auth/multi-factor/app/provider.php
vendored
Normal file
64
lang/vendor/filament-panels/en/auth/multi-factor/app/provider.php
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'management_schema' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'label' => 'Authenticator app',
|
||||
|
||||
'below_content' => 'Use a secure app to generate a temporary code for login verification.',
|
||||
|
||||
'messages' => [
|
||||
'enabled' => 'Enabled',
|
||||
'disabled' => 'Disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'login_form' => [
|
||||
|
||||
'label' => 'Use a code from your authenticator app',
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'use_recovery_code' => [
|
||||
'label' => 'Use a recovery code instead',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'recovery_code' => [
|
||||
|
||||
'label' => 'Or, enter a recovery code',
|
||||
|
||||
'validation_attribute' => 'recovery code',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The recovery code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php
vendored
Normal file
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Turn off',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Disable email verification codes',
|
||||
|
||||
'description' => 'Are you sure you want to stop receiving email verification codes? Disabling this will remove an extra layer of security from your account.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Disable email verification codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'disabled' => [
|
||||
'title' => 'Email verification codes have been disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Set up',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Set up email verification codes',
|
||||
|
||||
'description' => 'You\'ll need to enter the 6-digit code we send you by email each time you sign in or perform sensitive actions. Check your email for a 6-digit code to complete the setup.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Enable email verification codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'enabled' => [
|
||||
'title' => 'Email verification codes have been enabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'subject' => 'Here\'s your sign-in code',
|
||||
|
||||
'lines' => [
|
||||
'Your sign-in code is: :code',
|
||||
'This code will expire in a minute.|This code will expire in :minutes minutes.',
|
||||
],
|
||||
|
||||
];
|
||||
60
lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php
vendored
Normal file
60
lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'management_schema' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'label' => 'Email verification codes',
|
||||
|
||||
'below_content' => 'Receive a temporary code at your email address to verify your identity during login.',
|
||||
|
||||
'messages' => [
|
||||
'enabled' => 'Enabled',
|
||||
'disabled' => 'Disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'login_form' => [
|
||||
|
||||
'label' => 'Send a code to your email',
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Set up two-factor authentication (2FA)',
|
||||
|
||||
'heading' => 'Set up two-factor authentication',
|
||||
|
||||
'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'continue' => [
|
||||
'label' => 'Continue',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
27
lang/vendor/filament-panels/en/auth/multi-factor/recovery-codes-modal-content.php
vendored
Normal file
27
lang/vendor/filament-panels/en/auth/multi-factor/recovery-codes-modal-content.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'Click to',
|
||||
|
||||
'copy' => [
|
||||
'label' => 'copy',
|
||||
],
|
||||
|
||||
'or',
|
||||
|
||||
'download' => [
|
||||
'label' => 'download',
|
||||
],
|
||||
|
||||
'all the codes at once.',
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'copied' => 'Copied',
|
||||
],
|
||||
|
||||
];
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user