Browse Source

Merge pull request #634 from urtzai/dev

Basque localization
daniel 6 years ago
parent
commit
42a6fadb1b

+ 20 - 0
resources/lang/eu/auth.php

@@ -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'   => 'Sartutako datuek ez dute balio.',
+    'throttle' => 'Saiakera gehiegi. Mesedez, saitu zaitez :seconds segundo barru.',
+
+];

+ 14 - 0
resources/lang/eu/navmenu.php

@@ -0,0 +1,14 @@
+<?php
+
+return [
+
+    'viewMyProfile'  => 'Ikusi nire profila',
+    'myTimeline'     => 'Nire denboralerroa',
+    'publicTimeline' => 'Denboralerro publikoa',
+    'remoteFollow'   => 'Urruneko Jarraipena',
+    'settings'       => 'Ezarpenak',
+    'admin'          => 'Admin',
+    'logout'         => 'Irten',
+    'directMessages' => 'Mezu zuzenak',
+
+];

+ 8 - 0
resources/lang/eu/notification.php

@@ -0,0 +1,8 @@
+<?php
+
+return [
+
+  'likedPhoto'          => '-(e)k argazkia gustuko du.',
+  'startedFollowingYou' => 'jarraitzen hasi zaizu.',
+
+];

+ 19 - 0
resources/lang/eu/pagination.php

@@ -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' => '« Aurrekoa',
+    'next'     => 'Hurrengoa »',
+
+];

+ 22 - 0
resources/lang/eu/passwords.php

@@ -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
+    | has failed, such as for an invalid token or invalid new password.
+    |
+    */
+
+    'password' => 'Pasahitzak gutxienez 6 karaktere izan behar ditu, eta konfirmazio pasahitzarekin bat etorri behar da.',
+    'reset'    => 'Pasahitza aldatu da!',
+    'sent'     => 'E-postara pasahitza aldatzeko esteka bidali dizugu.',
+    'token'    => 'Pasahitza aldatzeko "token"-ak ez du balio.',
+    'user'     => 'Ez dugu aurkitu pasahitz hori duen erabiltzailerik.',
+
+];

+ 8 - 0
resources/lang/eu/profile.php

@@ -0,0 +1,8 @@
+<?php
+
+return [
+  'emptyTimeline'  => 'Erabiltzaile honek oraindik ez du ezer bidali!',
+  'emptyFollowers' => 'Erabiltzaile honek ez du jarraitzailerik!',
+  'emptyFollowing' => 'Erabiltzaile honek oraindik ez du inor jarraitzen',
+  'savedWarning'   => 'Gordetakoa zuk bakarrik ikusi dezakezu',
+];

+ 13 - 0
resources/lang/eu/site.php

@@ -0,0 +1,13 @@
+<?php
+return [
+	'about'			=> 'Honi buruz',
+	'help'			=> 'Laguntza',
+	'language'		=> 'Hizkuntza',
+	'fediverse'		=> 'Fedibertsoa',
+	'opensource'	=> 'Kode irekia',
+	'terms'			=> 'Baldintzak',
+	'privacy'		=> 'Pribatutasuna',
+	'l10nWip'		=> 'Oraindik lokalizazioen sustenguan lanean ari gara',
+	'currentLocale' => 'Uneko lokalizazioa',
+	'selectLocale'  => 'Aukeratu onartutako hizkuntzetako bat',
+];

+ 5 - 0
resources/lang/eu/timeline.php

@@ -0,0 +1,5 @@
+<?php
+
+return [
+  'emptyPersonalTimeline' => 'Zure denbora lerroa hutsik dago.',
+];

+ 122 - 0
resources/lang/eu/validation.php

@@ -0,0 +1,122 @@
+<?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'             => ':attribute onartuak izan behar dira.',
+    'active_url'           => ':attribute helbideak ez du zuzena.',
+    'after'                => ':attribute datak :date baino beranduagokoa izan behar du.',
+    'after_or_equal'       => ':attribute datak :date baino beranduagokoa edo berdina izan behar du.',
+    'alpha'                => ':attribute -(e)k letrak bakarrik izan ditzake',
+    'alpha_dash'           => ':attribute -(e)k letrak, zenbakiak eta gidoiak bakarrik onartzen ditu.',
+    'alpha_num'            => ':attribute -(e)k letrak eta zenbakiak bakarrik onartzen ditu',
+    'array'                => ':attribute zerrenda izan behar da.',
+    'before'               => ':attribute datak :date baino lehenagokoa izan behar du.',
+    'before_or_equal'      => ':attribute datak :date baino lehenagokoa edo berdina izan behar du.',
+    'between'              => [
+        'numeric' => ':attribute :min eta :max -ren artean izan behar da.',
+        'file'    => ':attribute :min eta :max kilobytes artean izan behar da.',
+        'string'  => ':attribute -(e)k :min eta :max karaktere bitartean izan behar ditu.',
+        'array'   => ':attribute -(e)k :min eta :max elementu bitartean izan behar ditu.',
+    ],
+    'boolean'              => ':attribute eremua "True" edo "False" izan behar da.',
+    'confirmed'            => ':attribute-ren baieztapenak ez datoz bat.',
+    'date'                 => ':attribute ez da data formatu egokia.',
+    'date_format'          => ':attribute -(e)k ez du :format formatua betetzen.',
+    'different'            => ':attribute eta :other ezberdinak izan behar dira.',
+    'digits'               => ':attribute -(e)k :digits zifra izan behar ditu.',
+    'digits_between'       => ':attribute -(e)k :min eta :max zifra bitartean izan behar ditu.',
+    'dimensions'           => ':attribute -(e)k onartzen ez diren tamainak ditu.',
+    'distinct'             => ':attribute eremuak bikoiztutako balorea du.',
+    'email'                => ':attribute eremua e-posta izan behar da.',
+    'exists'               => 'Aukeratutako :attribute ez da baliozkoa.',
+    'file'                 => ':attribute eremua fitxategia izan behar da.',
+    'filled'               => ':attribute eremuak balio egokia izan behar du.',
+    'image'                => ':attribute eremua irudia izan behar da.',
+    'in'                   => 'Aukeratutako :attribute elementua ez da baliozkoa.',
+    'in_array'             => ':attribute eremua ez da :other -en existitzen.',
+    'integer'              => ':attribute zenbaki osoa izen behar da.',
+    'ip'                   => ':attribute eremua IP helbide egokia izan behar da.',
+    'ipv4'                 => ':attribute eremua IPv4 helbide egokia izan behar da.',
+    'ipv6'                 => ':attribute eremua IPv6 helbide egokia izan behar da.',
+    'json'                 => ':attribute eremuak JSON egokia izan behar du.',
+    'max'                  => [
+        'numeric' => ':attribute ezin da :max baino handiagoa izan.',
+        'file'    => ':attribute -(e)k ezin du :max kilobyte baino gehiago izan.',
+        'string'  => ':attribute -(e)k ezin ditu :max karaktere baino gehiago izan.',
+        'array'   => ':attribute -(e)k ezin ditu :max elementu baino gehiago izan.',
+    ],
+    'mimes'                => ':attribute :values motatako fitxategia izan behar da.',
+    'mimetypes'            => ':attribute :values motatako fitxategia izan behar da.',
+    'min'                  => [
+        'numeric' => ':attribute gutxienez :min izan behar da.',
+        'file'    => ':attribute gutxienez :min kilobyte izan behar ditu.',
+        'string'  => ':attribute gutxienez :min karaktere izan behar ditu.',
+        'array'   => ':attribute -(e)k gutxienez :min elementu izan behar ditu.',
+    ],
+    'not_in'               => 'Aukeratutako :attribute elementuak ez du balio.',
+    'not_regex'            => ':attribute formatua ez da zuzena.',
+    'numeric'              => ':attribute zenbakia izan behar da.',
+    'present'              => ':attribute eremua egon behar da.',
+    'regex'                => ':attribute -ren formatua ez da zuzena.',
+    'required'             => ':attribute eremua derrigorrezkoa da.',
+    'required_if'          => ':attribute eremua derrigorrezkoa da :other :value denean.',
+    'required_unless'      => ':attribute eremua derrigorrezkoa da :other :values izan ezean.',
+    'required_with'        => ':values dagoenean, :attribute eremua derrigorrezkoa da.',
+    'required_with_all'    => ':values dagoenean, :attribute eremua derrigorrezkoa da.',
+    'required_without'     => ':attribute eremua derrigorrezkoa da :values eremua ez dagoenean.',    
+    'required_without_all' => ':attribute eremua beharrezkoa da :values bat bera ere ez dagoenean.',
+    'same'                 => ':attribute eta :other bat etorri behar dira.',
+    'size'                 => [
+        'numeric' => ':attribute :size izan behar da.',
+        'file'    => ':attribute -(e)k :size kilobyte izan behar ditu.',
+        'string'  => ':attribute -(e)k :size karaktere izan behar ditu.',
+        'array'   => ':attribute -(e)k :size elementu izan behar ditu.',
+    ],
+    'string'               => ':attribute testua izan behar da.',
+    'timezone'             => ':attribute ordutegi zuzena izan behar du.',
+    'unique'               => ':attribute ez dago eskuragarri.',
+    'uploaded'             => ':attribute igotzerakoan akatsa.',
+    'url'                  => ':attribute -ren formatua ez da egokia.',
+
+    /*
+    |--------------------------------------------------------------------------
+    | 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 attribute place-holders
+    | with something more reader friendly such as E-Mail Address instead
+    | of "email". This simply helps us make messages a little cleaner.
+    |
+    */
+
+    'attributes' => [],
+
+];

+ 35 - 0
resources/lang/vendor/backup/eu/notifications.php

@@ -0,0 +1,35 @@
+<?php
+
+return [
+    'exception_message' => 'Salbuespen mezua: :message',
+    'exception_trace' => 'Salbuespen aztarna: :trace',
+    'exception_message_title' => 'Salbuespen mezua',
+    'exception_trace_title' => 'Salbuespen aztarna',
+
+    'backup_failed_subject' => 'Akatsa :application_name babeskopia egiterakoan',
+    'backup_failed_body' => 'Garrantzitsua: Akatsa gertatu da :application_name babeskopia egiterakoan',
+
+    'backup_successful_subject' => ':application_name babeskopia arrakastatsua',
+    'backup_successful_subject_title' => 'Babeskopia arrakastatsu berria!',
+    'backup_successful_body' => 'Berri onak, :application_name -ren babeskopia berria arrakastaz sortu da :disk_name izeneko diskoan.',
+
+    'cleanup_failed_subject' => ':application_name -ren babeskopiak garbitzean akatsa.',
+    'cleanup_failed_body' => 'Akatsa gertatu da :application_name -ren babeskopiak garbitzerakoan',
+
+    'cleanup_successful_subject' => ':application_name -ren babeskopiak arrakastaz garbituta',
+    'cleanup_successful_subject_title' => 'Babeskopien garbitze arrakastatsua!',
+    'cleanup_successful_body' => ':application_name -ren babeskopia garbitzea arrakastaz gauzatu da :disk_name izeneko diskoan.',
+
+    'healthy_backup_found_subject' => ':application_name -rentzat diren babeskopiak osasuntsu daude :disk_name diskoan',
+    'healthy_backup_found_subject_title' => ':application_name -rentzat diren babeskopiak osasuntsu daude',
+    'healthy_backup_found_body' => ':application_name -rentzat diren babeskopiak osasuntsutzat jotzen dira. Lan bikaina!',
+
+    'unhealthy_backup_found_subject' => 'Garrantzitsua: :application_name -rentzat diren babeskopiak ez daude osasuntsu',
+    'unhealthy_backup_found_subject_title' => 'Garrantzitsua: :application_name -rentzat diren babeskopiak ez daude osasuntsu. :problem',
+    'unhealthy_backup_found_body' => ':application_name -rentzat diren babeskopiak ez daude osasuntsu :disk_name diskoan.',
+    'unhealthy_backup_found_not_reachable' => 'Babeskopien helburua ezin izan da atzitu. :error',
+    'unhealthy_backup_found_empty' => 'Ez dago aplikazio honen babeskopiarik.',
+    'unhealthy_backup_found_old' => 'Azkena .date -n egindako babeskopia zaharregitzat jotzen da.',
+    'unhealthy_backup_found_unknown' => 'Barkatu, ezin da arrazoi zehatza zehaztu.',
+    'unhealthy_backup_found_full' => 'Babeskopiak leku gehiegi erabiltzen ari dira. Egungo erabilera :disk_usage -koa da, non, onartutako :disk_limit muga baino handiagoa den.',
+];