Skip to content
This repository has been archived by the owner on Nov 23, 2020. It is now read-only.

Commit

Permalink
Merge pull request #135 from erik-ropez/translation-lv
Browse files Browse the repository at this point in the history
Latvian translation
  • Loading branch information
tabacitu authored Apr 25, 2017
2 parents 96246ba + fcba923 commit f8e4cdf
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/resources/lang/lv/backup.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.

// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}

return [];
34 changes: 34 additions & 0 deletions src/resources/lang/lv/base.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Backpack\Base Language Lines
|--------------------------------------------------------------------------
*/

'registration_closed' => 'Reģistrācija aizvērta.',
'first_page_you_see' => 'Pirmā lapa ko redzat pēc pieslēgšanās',
'login_status' => 'Pieslēgšanās statuss',
'logged_in' => 'Jūs esat pieslēgušies!',
'toggle_navigation' => 'Pārslēgt navigāciju',
'administration' => 'ADMINISTRĀCIJA',
'user' => 'LIETOTĀJS',
'logout' => 'Iziet',
'login' => 'Pieslēgties',
'register' => 'Registrēties',
'name' => 'Vārds',
'email_address' => 'E-Mail Adrese',
'password' => 'Parole',
'confirm_password' => 'Apstiprināt Paroli',
'remember_me' => 'Atcerēties Mani',
'forgot_your_password' => 'Aizmirsāt Jūsu Paroli?',
'reset_password' => 'Atjaunot Paroli',
'send_reset_link' => 'Sūtīt Paroles Atjaunošanas Saiti',
'click_here_to_reset' => 'Nospiediet šēit lai atjaunotu Jūsu paroli',
'unauthorized' => 'Neautorizēts.',
'dashboard' => 'Instrumentu panelis',
'handcrafted_by' => 'Handcrafted by',
'powered_by' => 'Powered by',
];
16 changes: 16 additions & 0 deletions src/resources/lang/lv/crud.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.

// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../crud/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../crud/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}

return [];
16 changes: 16 additions & 0 deletions src/resources/lang/lv/logmanager.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.

// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}

return [];
16 changes: 16 additions & 0 deletions src/resources/lang/lv/permissionmanager.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.

// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}

return [];
16 changes: 16 additions & 0 deletions src/resources/lang/lv/settings.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.

// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}

return [];

0 comments on commit f8e4cdf

Please sign in to comment.