Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions lang/ro/actions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php
return [
'merge' => [
'single' => [
'label' => '',
'modal' => [
'heading' => '',
'actions' => [
'merge' => [
'label' => '',
],
],
],
'notifications' => [
'merged' => [
'title' => '',
],
],
],
'multiple' => [
'label' => '',
'modal' => [
'heading' => '',
'actions' => [
'merge' => [
'label' => '',
],
],
],
'notifications' => [
'merged' => [
'title' => '',
],
],
],
],
];
1 change: 1 addition & 0 deletions lang/ro/app.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php
24 changes: 24 additions & 0 deletions lang/ro/auth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?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' => '',
'password' => '',
'throttle' => '',
'link_already_used' => '',
'invalid_signature' => '',
'invalid_user' => '',
'set_password' => '',
'suspended' => [
'title' => '',
'body' => '',
],
];
21 changes: 21 additions & 0 deletions lang/ro/email.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
return [
'greeting' => '',
'welcome' => [
'subject' => '',
'admin' => [
'line_1' => '',
'line_2' => '',
'line_3' => '',
'line_4' => '',
'action' => '',
],
'organization' => [
'line_1' => '',
'line_2' => '',
'line_3' => '',
'line_4' => '',
'action' => '',
],
],
];
175 changes: 175 additions & 0 deletions lang/ro/validation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
<?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' => '',
'accepted_if' => '',
'active_url' => '',
'after' => '',
'after_or_equal' => '',
'alpha' => '',
'alpha_dash' => '',
'alpha_num' => '',
'array' => '',
'ascii' => '',
'before' => '',
'before_or_equal' => '',
'between' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'boolean' => '',
'can' => '',
'confirmed' => '',
'contains' => '',
'current_password' => '',
'date' => '',
'date_equals' => '',
'date_format' => '',
'decimal' => '',
'declined' => '',
'declined_if' => '',
'different' => '',
'digits' => '',
'digits_between' => '',
'dimensions' => '',
'distinct' => '',
'doesnt_end_with' => '',
'doesnt_start_with' => '',
'email' => '',
'ends_with' => '',
'enum' => '',
'exists' => '',
'extensions' => '',
'file' => '',
'filled' => '',
'gt' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'gte' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'hex_color' => '',
'image' => '',
'in' => '',
'in_array' => '',
'integer' => '',
'ip' => '',
'ipv4' => '',
'ipv6' => '',
'json' => '',
'list' => '',
'lowercase' => '',
'lt' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'lte' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'mac_address' => '',
'max' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'max_digits' => '',
'mimes' => '',
'mimetypes' => '',
'min' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'min_digits' => '',
'missing' => '',
'missing_if' => '',
'missing_unless' => '',
'missing_with' => '',
'missing_with_all' => '',
'multiple_of' => '',
'not_in' => '',
'not_regex' => '',
'numeric' => '',
'password' => [
'letters' => '',
'mixed' => '',
'numbers' => '',
'symbols' => '',
'uncompromised' => '',
],
'present' => '',
'present_if' => '',
'present_unless' => '',
'present_with' => '',
'present_with_all' => '',
'prohibited' => '',
'prohibited_if' => '',
'prohibited_unless' => '',
'prohibits' => '',
'regex' => '',
'required' => '',
'required_array_keys' => '',
'required_if' => '',
'required_if_accepted' => '',
'required_if_declined' => '',
'required_unless' => '',
'required_with' => '',
'required_with_all' => '',
'required_without' => '',
'required_without_all' => '',
'same' => '',
'size' => [
'array' => '',
'file' => '',
'numeric' => '',
'string' => '',
],
'starts_with' => '',
'string' => '',
'timezone' => '',
'unique' => '',
'uploaded' => '',
'uppercase' => '',
'url' => '',
'ulid' => '',
'uuid' => '',
'custom' => [
'attribute-name' => [
/*
|--------------------------------------------------------------------------
| 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.
|
*/
'rule-name' => '',
],
],
];
Loading