Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added spanish translation #11

Merged
merged 2 commits into from
Jun 25, 2014
Merged
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
48 changes: 48 additions & 0 deletions src/lang/es/date.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

return array(

/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/

'ago' => 'Hace :time',
'from now' => 'Dentro de :time',
'after' => ':time después',
'before' => ':time antes',
'year' => '1 año|:number años',
'month' => '1 mes|:number meses',
'week' => '1 semana|:number semanas',
'day' => '1 día|:number días',
'hour' => '1 hora|:number horas',
'minute' => '1 minuto|:number minutos',
'second' => '1 segundo|:number segundos',

'january' => 'Enero',
'february' => 'Febrero',
'march' => 'Marzo',
'april' => 'Abril',
'may' => 'Mayo',
'june' => 'Junio',
'july' => 'Julio',
'august' => 'Agosto',
'september' => 'Septiembre',
'october' => 'Octubre',
'november' => 'Noviembre',
'december' => 'Diciembre',

'monday' => 'Lunes',
'tuesday' => 'Martes',
'wednesday' => 'Miércoles',
'thursday' => 'Jueves',
'friday' => 'Viernes',
'saturday' => 'Sábado',
'sunday' => 'Domingo',

);
48 changes: 48 additions & 0 deletions src/lang/eu/date.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

return array(

/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/

'ago' => 'Orain dela :time',
'from now' => ':time barru',
'after' => ':time geroago',
'before' => ':time lehenago',
'year' => 'Urte 1|:number urte',
'month' => 'Hile 1|:number hile',
'week' => 'Aste 1|:number aste',
'day' => 'Egun 1|:number egun',
'hour' => 'Ordu 1|:number ordu',
'minute' => 'Minutu 1|:number minutu',
'second' => 'Segundu 1|:number segundu',

'january' => 'Urtarrila',
'february' => 'Otsaila',
'march' => 'Martxoa',
'april' => 'Apirila',
'may' => 'Maiatza',
'june' => 'Ekaina',
'july' => 'Uztaila',
'august' => 'Abuztua',
'september' => 'Iraila',
'october' => 'Urria',
'november' => 'Azaroa',
'december' => 'Abendua',

'monday' => 'Astelehena',
'tuesday' => 'Asteartea',
'wednesday' => 'Asteazkena',
'thursday' => 'Osteguna',
'friday' => 'Ostirala',
'saturday' => 'Larunbata',
'sunday' => 'Igandea',

);