Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
b914d079
Commit
b914d079
authored
Mar 28, 2013
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1662 from fla/master
Romanian language
parents
78883095
720480e7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
125 additions
and
0 deletions
+125
-0
pagination.php
application/language/ro/pagination.php
+19
-0
validation.php
application/language/ro/validation.php
+106
-0
No files found.
application/language/ro/pagination.php
0 → 100644
View file @
b914d079
<?php
return
array
(
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the pagination links. You're free to change them to anything you want.
| If you come up with something more exciting, let us know.
|
*/
'previous'
=>
'« Inapoi'
,
'next'
=>
'Inainte »'
,
);
\ No newline at end of file
application/language/ro/validation.php
0 → 100644
View file @
b914d079
<?php
return
array
(
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used
| by the validator class. Some of the rules contain multiple versions,
| such as the size (max, min, between) rules. These versions are used
| for different input types such as strings and files.
|
| These language lines may be easily changed to provide custom error
| messages in your application. Error messages for custom validation
| rules may also be added to this file.
|
*/
"accepted"
=>
"Campul :attribute trebuie sa fie acceptat."
,
"active_url"
=>
"Campul :attribute nu este un URL valid."
,
"after"
=>
"Campul :attribute trebuie sa fie o data dupa :date."
,
"alpha"
=>
"Campul :attribute poate contine numai litere."
,
"alpha_dash"
=>
"Campul :attribute poate contine numai litere, numere si liniute."
,
"alpha_num"
=>
"Campul :attribute poate contine numai litere si numere."
,
"array"
=>
"Campul :attribute trebuie sa aiba elemente selectate."
,
"before"
=>
"Campul :attribute trebuie sa fie o data inainte de :date."
,
"between"
=>
array
(
"numeric"
=>
"Campul :attribute trebuie sa fie intre :min si :max."
,
"file"
=>
"Campul :attribute trebuie sa fie intre :min si :max kilobytes."
,
"string"
=>
"Campul :attribute trebuie sa fie intre :min si :max caractere."
,
),
"confirmed"
=>
"Confirmarea :attribute nu se potriveste."
,
"count"
=>
"Campul :attribute trebuie sa aiba exact :count elemente selectate."
,
"countbetween"
=>
"Campul :attribute trebuie sa aiba intre :min si :max elemente selectate."
,
"countmax"
=>
"Campul :attribute trebuie sa aiba mai putin de :max elemente selectate."
,
"countmin"
=>
"Campul :attribute trebuie sa aiba cel putin :min elemente selectate."
,
"date_format"
=>
"Campul :attribute trebuie sa fie intr-un format valid."
,
"different"
=>
"Campurile :attribute si :other trebuie sa fie diferite."
,
"email"
=>
"Formatul campului :attribute este invalid."
,
"exists"
=>
"Campul :attribute selectat este invalid."
,
"image"
=>
"Campul :attribute trebuie sa fie o imagine."
,
"in"
=>
"Campul :attribute selectat este invalid."
,
"integer"
=>
"Campul :attribute trebuie sa fie un numar intreg."
,
"ip"
=>
"Campul :attribute trebuie sa fie o adresa IP valida."
,
"match"
=>
"Formatul campului :attribute este invalid."
,
"max"
=>
array
(
"numeric"
=>
"Campul :attribute trebuie sa fie mai mic de :max."
,
"file"
=>
"Campul :attribute trebuie sa fie mai mic de :max kilobytes."
,
"string"
=>
"Campul :attribute trebuie sa fie mai mic de :max caractere."
,
),
"mimes"
=>
"Campul :attribute trebuie sa fie un fisier de tipul: :values."
,
"min"
=>
array
(
"numeric"
=>
"Campul :attribute trebuie sa fie cel putin :min."
,
"file"
=>
"Campul :attribute trebuie sa aiba cel putin :min kilobytes."
,
"string"
=>
"Campul :attribute trebuie sa aiba cel putin :min caractere."
,
),
"not_in"
=>
"Campul :attribute selectat este invalid."
,
"numeric"
=>
"Campul :attribute trebuie sa fie un numar."
,
"required"
=>
"Campul :attribute este obligatoriu."
,
"required_with"
=>
"Campul :attribute este obligatoriu cu :field"
,
"same"
=>
"Campul :attribute si :other trebuie sa fie identice."
,
"size"
=>
array
(
"numeric"
=>
"Campul :attribute trebuie sa fie :size."
,
"file"
=>
"Campul :attribute trebuie sa aiba :size kilobyte."
,
"string"
=>
"Campul :attribute trebuie sa aiba :size caractere."
,
),
"unique"
=>
"Campul :attribute a fost deja folosit."
,
"url"
=>
"Campul :attribute nu este intr-un format valid."
,
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute_rule" to name the lines. This helps keep your
| custom validation clean and tidy.
|
| So, say you want to use a custom validation message when validating that
| the "email" attribute is unique. Just add "email_unique" to this array
| with your custom message. The Validator will handle the rest!
|
*/
'custom'
=>
array
(),
/*
|--------------------------------------------------------------------------
| Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as "E-Mail Address" instead
| of "email". Your users will thank you.
|
| The Validator class will automatically search this array of lines it
| is attempting to replace the :attribute place-holder in messages.
| It's pretty slick. We think you'll like it.
|
*/
'attributes'
=>
array
(),
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment