Merge branch 'develop'
# Conflicts: # composer.lock
This commit is contained in:
@@ -1,37 +0,0 @@
|
||||
ls
|
||||
pwd
|
||||
cd app
|
||||
ls
|
||||
cd views/
|
||||
cd backend/
|
||||
ls
|
||||
cd users/
|
||||
ls
|
||||
vi view.blade.php
|
||||
ls -alF
|
||||
cd
|
||||
pwd
|
||||
ls -alF
|
||||
pwd
|
||||
cd app
|
||||
ls
|
||||
cd views/
|
||||
cd backend/
|
||||
cd users/
|
||||
ls
|
||||
ls -alF
|
||||
chown snipeitftp view.blade.php
|
||||
sudo chown snipeitftp view.blade.php
|
||||
pwd
|
||||
ls
|
||||
vi view.blade.php
|
||||
set noswapfile
|
||||
set nobackup
|
||||
vi view.blade.php
|
||||
touch delete.me
|
||||
vi delete.me
|
||||
ls
|
||||
ls -alF
|
||||
touch view.blade.php
|
||||
touch index.blade.php
|
||||
vi view.blade.php
|
||||
+1
-1
@@ -23,7 +23,7 @@ before_script:
|
||||
- cp app/config/testing/database.example.php app/config/testing/database.php
|
||||
- cp app/config/testing/mail.example.php app/config/testing/mail.php
|
||||
- composer self-update
|
||||
- composer install --prefer-source
|
||||
- composer install --prefer-source --no-interaction
|
||||
- php artisan key:generate --env=testing
|
||||
- php artisan migrate:install --env=testing --no-interaction -vvv
|
||||
- php artisan migrate --package cartalyst/sentry --env=testing --no-interaction -vvv
|
||||
|
||||
@@ -58,6 +58,8 @@ return array(
|
||||
'deferRender'=> true,
|
||||
'stateSave'=> true,
|
||||
'paging'=>true,
|
||||
'pageLength'=> Setting::getSettings()->per_page,
|
||||
'lengthMenu'=>array(array(10,25,50,75,100,125,150,-1), array(10,25,50,75,100,125,150,'All')),
|
||||
'tableTools' => array(
|
||||
'sSwfPath'=> Config::get('app.url').'/assets/swf/copy_csv_xls_pdf.swf',
|
||||
'aButtons'=>array(
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'app_version' => 'v1.2.6.1-179',
|
||||
'hash_version' => 'v1.2.6.1-179-gb53847c',
|
||||
'app_version' => 'v1.2.6.1-206',
|
||||
'hash_version' => 'v1.2.6.1-206-ga560d4d',
|
||||
);
|
||||
@@ -56,16 +56,16 @@ class AssetsController extends AdminController
|
||||
// Grab the dropdown list of models
|
||||
//$model_list = array('' => 'Select a Model') + Model::orderBy('name', 'asc')->lists('name'.' '. 'modelno', 'id');
|
||||
|
||||
$model_list = array('' => 'Select a Model') + DB::table('models')
|
||||
$model_list = array('' => Lang::get('general.select_model')) + DB::table('models')
|
||||
->select(DB::raw('concat(name," / ",modelno) as name, id'))->orderBy('name', 'asc')
|
||||
->orderBy('modelno', 'asc')
|
||||
->whereNull('deleted_at')
|
||||
->lists('name', 'id');
|
||||
|
||||
|
||||
$supplier_list = array('' => '') + Supplier::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$assigned_to = array('' => 'Select a User') + DB::table('users')->select(DB::raw('concat (first_name," ",last_name) as full_name, id'))->whereNull('deleted_at')->lists('full_name', 'id');
|
||||
$location_list = array('' => '') + Location::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$supplier_list = array('' => Lang::get('general.select_supplier')) + Supplier::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$assigned_to = array('' => Lang::get('general.select_user')) + DB::table('users')->select(DB::raw('concat(first_name," ",last_name) as full_name, id'))->whereNull('deleted_at')->lists('full_name', 'id');
|
||||
$location_list = array('' => Lang::get('general.select_location')) + Location::orderBy('name', 'asc')->lists('name', 'id');
|
||||
|
||||
|
||||
// Grab the dropdown list of status
|
||||
@@ -211,12 +211,12 @@ class AssetsController extends AdminController
|
||||
|
||||
|
||||
// Grab the dropdown list of models
|
||||
$model_list = array('' => '') + DB::table('models')
|
||||
$model_list = array('' => Lang::get('general.select_model')) + DB::table('models')
|
||||
->select(DB::raw('concat(name," / ",modelno) as name, id'))->orderBy('name', 'asc')
|
||||
->orderBy('modelno', 'asc')
|
||||
->lists('name', 'id');
|
||||
$supplier_list = array('' => '') + Supplier::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$location_list = array('' => '') + Location::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$supplier_list = array('' => Lang::get('general.select_supplier')) + Supplier::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$location_list = array('' => Lang::get('general.select_location')) + Location::orderBy('name', 'asc')->lists('name', 'id');
|
||||
|
||||
// Grab the dropdown list of status
|
||||
$statuslabel_list = Statuslabel::orderBy('name', 'asc')->lists('name', 'id');
|
||||
@@ -369,7 +369,7 @@ class AssetsController extends AdminController
|
||||
}
|
||||
|
||||
// Get the dropdown of users and then pass it to the checkout view
|
||||
$users_list = array('' => 'Select a User') + DB::table('users')->select(DB::raw('concat(last_name,", ",first_name) as full_name, id'))->whereNull('deleted_at')->orderBy('last_name', 'asc')->orderBy('first_name', 'asc')->lists('full_name', 'id');
|
||||
$users_list = array('' => Lang::get('general.select_user')) + DB::table('users')->select(DB::raw('concat(last_name,", ",first_name) as full_name, id'))->whereNull('deleted_at')->orderBy('last_name', 'asc')->orderBy('first_name', 'asc')->lists('full_name', 'id');
|
||||
|
||||
return View::make('backend/hardware/checkout', compact('asset'))->with('users_list',$users_list);
|
||||
|
||||
@@ -603,7 +603,7 @@ class AssetsController extends AdminController
|
||||
}
|
||||
|
||||
/**
|
||||
* Asset update.
|
||||
* Asset clone.
|
||||
*
|
||||
* @param int $assetId
|
||||
* @return View
|
||||
@@ -617,17 +617,16 @@ class AssetsController extends AdminController
|
||||
}
|
||||
|
||||
// Grab the dropdown list of models
|
||||
$model_list = array('' => '') + Model::lists('name', 'id');
|
||||
$model_list = array('' => Lang::get('general.select_model')) + Model::lists('name', 'id');
|
||||
|
||||
// Grab the dropdown list of status
|
||||
$statuslabel_list = Statuslabel::lists('name', 'id');
|
||||
|
||||
$location_list = array('' => '') + Location::lists('name', 'id');
|
||||
$location_list = array('' => Lang::get('general.select_location')) + Location::lists('name', 'id');
|
||||
|
||||
// get depreciation list
|
||||
$depreciation_list = array('' => '') + Depreciation::lists('name', 'id');
|
||||
$supplier_list = array('' => '') + Supplier::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$assigned_to = array('' => 'Select a User') + DB::table('users')->select(DB::raw('concat (first_name," ",last_name) as full_name, id'))->whereNull('deleted_at')->lists('full_name', 'id');
|
||||
$supplier_list = array('' => Lang::get('general.select_supplier')) + Supplier::orderBy('name', 'asc')->lists('name', 'id');
|
||||
$assigned_to = array('' => Lang::get('general.select_user')) + DB::table('users')->select(DB::raw('concat(first_name," ",last_name) as full_name, id'))->whereNull('deleted_at')->lists('full_name', 'id');
|
||||
|
||||
$asset = clone $asset_to_clone;
|
||||
$asset->id = null;
|
||||
@@ -980,8 +979,12 @@ class AssetsController extends AdminController
|
||||
{
|
||||
return '<a title="'.$assets->name.'" href="hardware/'.$assets->id.'/view">'.$assets->name.'</a>';
|
||||
})
|
||||
->addColumn('asset_tag',function($assets)
|
||||
{
|
||||
return '<a title="'.$assets->asset_tag.'" href="hardware/'.$assets->id.'/view">'.$assets->asset_tag.'</a>';
|
||||
})
|
||||
|
||||
->showColumns('asset_tag', 'serial')
|
||||
->showColumns('serial')
|
||||
|
||||
->addColumn('model',function($assets)
|
||||
{
|
||||
|
||||
@@ -405,7 +405,7 @@ class LicensesController extends AdminController
|
||||
->leftJoin('users', 'users.id', '=', 'assets.assigned_to')
|
||||
->leftJoin('models', 'assets.model_id', '=', 'models.id')
|
||||
->select('assets.id', 'assets.name', 'first_name', 'last_name','asset_tag',
|
||||
DB::raw('concat (first_name," ",last_name) as full_name, assets.id as id, models.name as modelname'))
|
||||
DB::raw('concat(first_name," ",last_name) as full_name, assets.id as id, models.name as modelname'))
|
||||
->whereNull('assets.deleted_at')
|
||||
->get();
|
||||
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'تغيير عنوان البريد الإلكتروني',
|
||||
'changepassword' => 'تغيير كلمة المرور',
|
||||
'checkin' => 'تسجيل',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'ترجيع',
|
||||
'city' => 'المدينة',
|
||||
'country' => 'الدولة',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'الإستهلاك',
|
||||
'editprofile' => 'تعديل الملف الشخصي',
|
||||
'eol' => 'الحياة',
|
||||
'first' => 'First',
|
||||
'first_name' => 'الإسم الأول',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'الرقم',
|
||||
'image_delete' => 'حذف الصورة',
|
||||
'image_upload' => 'رفع صورة',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'الإسم الأخير',
|
||||
'license' => 'الرخص',
|
||||
'license_report' => 'License Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'أشهر',
|
||||
'moreinfo' => 'المزيد من المعلومات',
|
||||
'name' => 'الإسم',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'لا يوجد إستهلاك',
|
||||
'no_results' => 'لا يوجد نتائج.',
|
||||
'no' => 'لا',
|
||||
'notes' => 'مُلاحظات',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'في انتظار المراجعة',
|
||||
'people' => 'الأشخاص',
|
||||
'per_page' => 'عدد النتائج في كل صفحة',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'ملفك الشخصي',
|
||||
'ready_to_deploy' => 'جاهزة للتوزيع',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'التقارير',
|
||||
'save' => 'حفظ',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'الإعدادات',
|
||||
'sign_in' => 'تسجيل الدخول',
|
||||
'site_name' => 'إسم الموقع',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'غير قابلة للتوزيع',
|
||||
'unknown_admin' => 'إداري غير معروف',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'المستخدم',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'عرض الأصول المسجلة',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Změnit e-mailovou adresu',
|
||||
'changepassword' => 'Změnit heslo',
|
||||
'checkin' => 'Příjem',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Výdej',
|
||||
'city' => 'Město',
|
||||
'country' => 'Země',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Amortizace',
|
||||
'editprofile' => 'Upravit profil',
|
||||
'eol' => 'Konec životnosti',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Jméno',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Smazat obrázek',
|
||||
'image_upload' => 'Nahrát obrázek',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Příjmení',
|
||||
'license' => 'Licence',
|
||||
'license_report' => 'Report licencí',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'měsíce',
|
||||
'moreinfo' => 'Další informace',
|
||||
'name' => 'Název',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Žádná amortizace',
|
||||
'no_results' => 'Žádné výsledky.',
|
||||
'no' => 'Ne',
|
||||
'notes' => 'Poznámky',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Čeká na vyřízení',
|
||||
'people' => 'Lidé',
|
||||
'per_page' => 'Výsledků na stránku',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Váš profil',
|
||||
'ready_to_deploy' => 'Připraveno k přidělení',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reporty',
|
||||
'save' => 'Uložit',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Nastavení',
|
||||
'sign_in' => 'Přihlásit se',
|
||||
'site_name' => 'Název lokality',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Ne-přiřaditelné',
|
||||
'unknown_admin' => 'Neznámy správce',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Uživatel',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Zobrazit přiřazený majetek',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Skift email adresse',
|
||||
'changepassword' => 'Skift adgangskode',
|
||||
'checkin' => 'Tjek Ind',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Tjek Ud',
|
||||
'city' => 'By',
|
||||
'country' => 'Land',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Afskrivning',
|
||||
'editprofile' => 'Ret Din Profil',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Fornavn',
|
||||
'file_name' => 'Fil',
|
||||
'file_uploads' => 'Filoverførsel',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Slet billede',
|
||||
'image_upload' => 'Upload billede',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Efternavn',
|
||||
'license' => 'Licens',
|
||||
'license_report' => 'Licensrapport',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'måneder',
|
||||
'moreinfo' => 'Mere Info',
|
||||
'name' => 'Navn',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Ingen Afskrivning',
|
||||
'no_results' => 'Ingen Resultater.',
|
||||
'no' => 'Nej',
|
||||
'notes' => 'Noter',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Afventer',
|
||||
'people' => 'Personer',
|
||||
'per_page' => 'Resultater Per Side',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Din profil',
|
||||
'ready_to_deploy' => 'Klar til Implementering',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Rapporter',
|
||||
'save' => 'Gem',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Instillinger',
|
||||
'sign_in' => 'Log ind',
|
||||
'site_name' => 'Site Navn',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Ikke implementerbar',
|
||||
'unknown_admin' => 'Ukendt Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Bruger',
|
||||
'users' => 'Brugere',
|
||||
'viewassets' => 'Se Tildelte Aktiver',
|
||||
|
||||
+20
-1
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'E-Mail Adresse ändern',
|
||||
'changepassword' => 'Passwort ändern',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkin_from' => 'Einchecken von',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'city' => 'Stadt',
|
||||
'country' => 'Land',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Abschreibung',
|
||||
'editprofile' => 'Profil bearbeiten',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'Erstes',
|
||||
'first_name' => 'Vorname',
|
||||
'file_name' => 'Datei',
|
||||
'file_uploads' => 'Datei-Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'Id',
|
||||
'image_delete' => 'Bild löschen',
|
||||
'image_upload' => 'Bild hinzufügen',
|
||||
'last' => 'Letztes',
|
||||
'last_name' => 'Familienname',
|
||||
'license' => 'Lizenz',
|
||||
'license_report' => 'Lizenz Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'Monate',
|
||||
'moreinfo' => 'Mehr Informationen',
|
||||
'name' => 'Location Name',
|
||||
'next' => 'Nächstes',
|
||||
'no_depreciation' => 'Do Not Depreciate',
|
||||
'no_results' => 'Keine Treffer.',
|
||||
'no' => 'Nein',
|
||||
'notes' => 'Notizen',
|
||||
'page_menu' => 'zeige _MENU_ Einträge',
|
||||
'pagination_info' => 'Zeige _START_ bis _END_ von _TOTAL_ Einträgen',
|
||||
'pending' => 'Pending Asset',
|
||||
'people' => 'Personen',
|
||||
'per_page' => 'Ergebnisse pro Seite',
|
||||
'previous' => 'Vorherige',
|
||||
'processing' => 'In Arbeit',
|
||||
'profile' => 'Ihr Profil',
|
||||
'ready_to_deploy' => 'Fertig zum herausgeben',
|
||||
'recent_activity' => 'Letzte Aktivität',
|
||||
'reports' => 'Berichte',
|
||||
'save' => 'Speichern',
|
||||
'select' => 'auswählen',
|
||||
'search' => 'Suche',
|
||||
'select_depreciation' => 'Wähle einen Abschreibungstyp',
|
||||
'select_location' => 'Wählen Sie einen Standort',
|
||||
'select_manufacturer' => 'Wählen Sie einen Hersteller',
|
||||
'select_model' => 'Wählen Sie ein Model',
|
||||
'select_supplier' => 'wählen Sie einen Lieferant',
|
||||
'select_user' => 'wähle einen Benutzer',
|
||||
'select_date' => 'Datum auswählen',
|
||||
'settings' => 'Einstellungen',
|
||||
'sign_in' => 'Einloggen',
|
||||
'site_name' => 'Seitenname',
|
||||
@@ -92,8 +110,9 @@ return array(
|
||||
'type' => 'Typ',
|
||||
'undeployable' => 'Nicht herausgebbar',
|
||||
'unknown_admin' => 'Unbekannter Administrator',
|
||||
'uploaded' => 'Hochgeladen',
|
||||
'user' => 'Nutzer',
|
||||
'users' => 'Users',
|
||||
'users' => 'Benutzer',
|
||||
'viewassets' => 'Zugeordnete Assets anzeigen',
|
||||
'website' => 'Webseite',
|
||||
'welcome' => 'Wilkommen, :name',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Checkout',
|
||||
'city' => 'City',
|
||||
'country' => 'Country',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'editprofile' => 'Edit Your Profile',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'First Name',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Delete Image',
|
||||
'image_upload' => 'Upload Image',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Last Name',
|
||||
'license' => 'License',
|
||||
'license_report' => 'License Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'months',
|
||||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pending',
|
||||
'people' => 'People',
|
||||
'per_page' => 'Results Per Page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Your profile',
|
||||
'ready_to_deploy' => 'Ready to Deploy',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Save',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Settings',
|
||||
'sign_in' => 'Sign in',
|
||||
'site_name' => 'Site Name',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'User',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Checkout',
|
||||
'city' => 'City',
|
||||
'country' => 'Country',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'editprofile' => 'Edit Your Profile',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'First Name',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,12 +56,14 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Delete Image',
|
||||
'image_upload' => 'Upload Image',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Last Name',
|
||||
'license' => 'License',
|
||||
'license_report' => 'License Report',
|
||||
'licenses_available' => 'licenses available',
|
||||
'licenses' => 'Licenses',
|
||||
'list_all' => 'List All',
|
||||
'loading' => 'Loading',
|
||||
'location' => 'Location',
|
||||
'locations' => 'Locations',
|
||||
'logout' => 'Logout',
|
||||
@@ -69,17 +73,32 @@ return array(
|
||||
'months' => 'months',
|
||||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pending',
|
||||
'people' => 'People',
|
||||
'per_page' => 'Results Per Page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Your profile',
|
||||
'ready_to_deploy' => 'Ready to Deploy',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Save',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Settings',
|
||||
'sign_in' => 'Sign in',
|
||||
'site_name' => 'Site Name',
|
||||
@@ -92,6 +111,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'User',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
|
||||
@@ -6,8 +6,8 @@ return array(
|
||||
'bulk_update_help' => 'Este formulario le permite actualizar múltiples Equipos simultáneamente. Solo complete los campos que quiere modificar. Todo campo en blanco permanecerá sin cambios. ',
|
||||
'bulk_update_warn' => 'Esta a punto de editar las propiedades de :asset_count equipos.',
|
||||
'checkedout_to' => 'Asignado a',
|
||||
'checkout_date' => 'Checkout Date',
|
||||
'checkin_date' => 'Checkin Date',
|
||||
'checkout_date' => 'Fecha de asignación',
|
||||
'checkin_date' => 'Fecha de devolución',
|
||||
'checkout_to' => 'Asignar a',
|
||||
'cost' => 'Precio Compra',
|
||||
'create' => 'Crear Equipo',
|
||||
|
||||
@@ -6,7 +6,7 @@ return array(
|
||||
'auto_increment_assets' => 'Generar IDs de equipo autoincrementales',
|
||||
'auto_increment_prefix' => 'Prefijo (opcional)',
|
||||
'auto_incrementing_help' => 'Activa la generación automática de IDs de equipo antes de configurar esto',
|
||||
'barcode_type' => 'Barcode Type',
|
||||
'barcode_type' => 'Tipo de código de barras',
|
||||
'default_eula_text' => 'EULA por defecto',
|
||||
'default_eula_help_text' => 'También puede asociar EULAs personalizadas para categorías especificas de equipos.',
|
||||
'display_asset_name' => 'Mostrar Nombre Equipo',
|
||||
@@ -28,7 +28,7 @@ return array(
|
||||
'setting' => 'Parámetro',
|
||||
'settings' => 'Configuración',
|
||||
'site_name' => 'Nombre del sitio',
|
||||
'snipe_version' => 'Snipe-IT version',
|
||||
'snipe_version' => 'Version de Snipe-IT',
|
||||
'system' => 'Información del Sistema',
|
||||
'update' => 'Actualizar Parámetros',
|
||||
'value' => 'Valor',
|
||||
|
||||
@@ -28,7 +28,7 @@ return array(
|
||||
'delete' => 'Ha habido un problema eliminando el Usuario. Intentalo de nuevo.',
|
||||
'unsuspend' => 'Ha habido un problema marcando como no suspendido el Usuario. Intentalo de nuevo.',
|
||||
'import' => 'Ha habido un problema importando los usuarios. Por favor intente nuevamente.',
|
||||
'asset_already_accepted' => 'This asset has already been accepted.',
|
||||
'asset_already_accepted' => 'Este equipo ya ha sido aceptado.',
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
@@ -21,12 +21,12 @@ return array(
|
||||
'lock_passwords' => 'Los detalles de acceso no pueden ser cambiados en esta instalación.',
|
||||
'manager' => 'Responsable',
|
||||
'name' => 'Usuario',
|
||||
'notes' => 'Notes',
|
||||
'notes' => 'Notas',
|
||||
'password_confirm' => 'Confirmar Password',
|
||||
'password' => 'Contraseña',
|
||||
'phone' => 'Teléfono',
|
||||
'show_current' => 'Show Current Users',
|
||||
'show_deleted' => 'Show Deleted Users',
|
||||
'show_current' => 'Mostrar usuarios actuales',
|
||||
'show_deleted' => 'Mostrar usuarios eliminados',
|
||||
'title' => 'Puesto',
|
||||
'updateuser' => 'Actualizar Usuario',
|
||||
'username' => 'UsuarioUsuario',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Cambiar Email',
|
||||
'changepassword' => 'Cambiar Password',
|
||||
'checkin' => 'Quitar Equipo',
|
||||
'checkin_from' => 'Devolución de',
|
||||
'checkout' => 'Asignar a un usuario',
|
||||
'city' => 'Ciudad',
|
||||
'country' => 'Pais',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Amortización',
|
||||
'editprofile' => 'Editar Perfil',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'Primero',
|
||||
'first_name' => 'Nombre',
|
||||
'file_name' => 'Archivo',
|
||||
'file_uploads' => 'Carga de Archivos',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'Id',
|
||||
'image_delete' => 'Borrar imagen',
|
||||
'image_upload' => 'Enviar imagen',
|
||||
'last' => 'Último',
|
||||
'last_name' => 'Apellidos',
|
||||
'license' => 'Licencia',
|
||||
'license_report' => 'Reporte de Licencias',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'Meses',
|
||||
'moreinfo' => 'Más Info',
|
||||
'name' => 'Nombre Localización',
|
||||
'next' => 'Siguiente',
|
||||
'no_depreciation' => 'No Amortizar',
|
||||
'no_results' => 'Sin Resultados.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Notas',
|
||||
'page_menu' => 'Mostrando elementos de _MENU_',
|
||||
'pagination_info' => 'Mostrando _START_ de _END_ de elementos _TOTAL_',
|
||||
'pending' => 'Equipo Pendiente',
|
||||
'people' => 'Usuarios',
|
||||
'per_page' => 'Resultados Por Pag',
|
||||
'previous' => 'Previo',
|
||||
'processing' => 'Procesando',
|
||||
'profile' => 'Perfil',
|
||||
'ready_to_deploy' => 'Disponibles',
|
||||
'recent_activity' => 'Actividad Reciente',
|
||||
'reports' => 'Informes',
|
||||
'save' => 'Guardar',
|
||||
'select' => 'Seleccionar',
|
||||
'search' => 'Buscar',
|
||||
'select_depreciation' => 'Seleccionar un tipo de Amortización',
|
||||
'select_location' => 'Seleccionar una Ubicación',
|
||||
'select_manufacturer' => 'Seleccionar un Fabricante',
|
||||
'select_model' => 'Seleccionar un Modelo',
|
||||
'select_supplier' => 'Seleccionar un Proveedor',
|
||||
'select_user' => 'Seleccionar un usuario',
|
||||
'select_date' => 'Seleccionar fecha',
|
||||
'settings' => 'Opciones',
|
||||
'sign_in' => 'Entrar',
|
||||
'site_name' => 'Sitio',
|
||||
@@ -92,8 +110,9 @@ return array(
|
||||
'type' => 'Tipo',
|
||||
'undeployable' => 'No Instalable',
|
||||
'unknown_admin' => 'Admin Desconocido',
|
||||
'uploaded' => 'Subido',
|
||||
'user' => 'Usuario',
|
||||
'users' => 'Users',
|
||||
'users' => 'Usuarios',
|
||||
'viewassets' => 'Ver Equipos Asignados',
|
||||
'website' => 'Sitio web',
|
||||
'welcome' => 'Bienvenido, :name',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Muuta Email-osoite',
|
||||
'changepassword' => 'Muuta Salasana',
|
||||
'checkin' => 'Palauta',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Luovuta',
|
||||
'city' => 'Kaupunki',
|
||||
'country' => 'Maa',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Poistoluokka',
|
||||
'editprofile' => 'Muokkaa Profiilia',
|
||||
'eol' => 'Elinikä',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Etunimi',
|
||||
'file_name' => 'Tiedosto',
|
||||
'file_uploads' => 'Tiedostolataus',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'Tunnus',
|
||||
'image_delete' => 'Poista Kuva',
|
||||
'image_upload' => 'Lähetä Kuva',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Sukunimi',
|
||||
'license' => 'Lisenssi',
|
||||
'license_report' => 'Lisenssiraportti',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'Kuukautta',
|
||||
'moreinfo' => 'Lisätiedot',
|
||||
'name' => 'Nimi',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Ei poistoluokkaa',
|
||||
'no_results' => 'Ei tuloksia.',
|
||||
'no' => 'Ei',
|
||||
'notes' => 'Muistiinpanot',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Odottaa',
|
||||
'people' => 'Ihmiset',
|
||||
'per_page' => 'Tuloksia Per Sivu',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Profiilisi',
|
||||
'ready_to_deploy' => 'Käyttöönotettavissa',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Raportit',
|
||||
'save' => 'Tallenna',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Asetukset',
|
||||
'sign_in' => 'Kirjaudu sisään',
|
||||
'site_name' => 'Sivuston Nimi',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Ei-käyttöönotettavissa',
|
||||
'unknown_admin' => 'Tuntematon Ylläpitäjä',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Käyttäjä',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Näytä Käyttöönotetut Laitteet',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Changer l\'adresse e-mail',
|
||||
'changepassword' => 'Changer le mot de passe',
|
||||
'checkin' => 'Dissocier',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Associer',
|
||||
'city' => 'Ville',
|
||||
'country' => 'Pays',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Amortissement',
|
||||
'editprofile' => 'Éditer votre profile',
|
||||
'eol' => 'Fin de vie',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Prénom',
|
||||
'file_name' => 'Fichier',
|
||||
'file_uploads' => 'Uploads de fichiers',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Supprimer l\'image',
|
||||
'image_upload' => 'Charger une image',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Nom',
|
||||
'license' => 'Licence',
|
||||
'license_report' => 'Rapport de licence',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'mois',
|
||||
'moreinfo' => 'Plus d\'info',
|
||||
'name' => 'Nom',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Pas d\'amortissement',
|
||||
'no_results' => 'Pas de résultat.',
|
||||
'no' => 'Non',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'En Attente',
|
||||
'people' => 'Personnes',
|
||||
'per_page' => 'Résultats par page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Votre profil',
|
||||
'ready_to_deploy' => 'Prêt à être déployé',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Rapports',
|
||||
'save' => 'Sauvegarder',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Préférences',
|
||||
'sign_in' => 'Connexion',
|
||||
'site_name' => 'Nom du Site',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Non déployable',
|
||||
'unknown_admin' => 'Admin inconnu',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Utilisateur',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Voir les actifs associés',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'E-mail cím módosítása',
|
||||
'changepassword' => 'Jelszó módosítása',
|
||||
'checkin' => 'Checkin',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Checkout',
|
||||
'city' => 'Város',
|
||||
'country' => 'Ország',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'editprofile' => 'Profil szerkeztése',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Keresztnév',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Delete Image',
|
||||
'image_upload' => 'Upload Image',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Vezetéknév',
|
||||
'license' => 'License',
|
||||
'license_report' => 'License Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'months',
|
||||
'moreinfo' => 'More Info',
|
||||
'name' => 'Név',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'Nincs találat.',
|
||||
'no' => 'Nem ',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pending',
|
||||
'people' => 'People',
|
||||
'per_page' => 'Results Per Page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Your profile',
|
||||
'ready_to_deploy' => 'Ready to Deploy',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Mentés',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Beállítások',
|
||||
'sign_in' => 'Bejelentkezés',
|
||||
'site_name' => 'Site Name',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Felhasználó',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
|
||||
@@ -2,33 +2,33 @@
|
||||
|
||||
return array(
|
||||
|
||||
'user_exists' => 'User already exists!',
|
||||
'user_not_found' => 'User [:id] does not exist.',
|
||||
'user_login_required' => 'The login field is required',
|
||||
'user_password_required' => 'The password is required.',
|
||||
'insufficient_permissions' => 'Insufficient Permissions.',
|
||||
'user_deleted_warning' => 'This user has been deleted. You will have to restore this user to edit them or assign them new assets.',
|
||||
'user_exists' => 'Utente già esistente!',
|
||||
'user_not_found' => 'L\'utente [:id] non esite.',
|
||||
'user_login_required' => 'È necessario il campo login',
|
||||
'user_password_required' => 'È richiesta la password.',
|
||||
'insufficient_permissions' => 'Permessi Insufficienti.',
|
||||
'user_deleted_warning' => 'Questo utente è stato eliminato. Si dovrà ripristinare questo utente per modificare o assegnare nuovi beni.',
|
||||
|
||||
|
||||
'success' => array(
|
||||
'create' => 'User was successfully created.',
|
||||
'update' => 'User was successfully updated.',
|
||||
'delete' => 'User was successfully deleted.',
|
||||
'ban' => 'User was successfully banned.',
|
||||
'unban' => 'User was successfully unbanned.',
|
||||
'suspend' => 'User was successfully suspended.',
|
||||
'unsuspend' => 'User was successfully unsuspended.',
|
||||
'restored' => 'User was successfully restored.',
|
||||
'import' => 'Users imported successfully.',
|
||||
'create' => 'Utente creato con successo.',
|
||||
'update' => 'Utente aggiornato con successo.',
|
||||
'delete' => 'Utente eliminato con successo.',
|
||||
'ban' => 'Utente bloccato con successo.',
|
||||
'unban' => 'Utente sbloccato con successo.',
|
||||
'suspend' => 'Utente sospeso con successo.',
|
||||
'unsuspend' => 'Utente riabilitato con successo.',
|
||||
'restored' => 'Utente ripristinato con successo.',
|
||||
'import' => 'Utenti importati con successo.',
|
||||
),
|
||||
|
||||
'error' => array(
|
||||
'create' => 'There was an issue creating the user. Please try again.',
|
||||
'update' => 'There was an issue updating the user. Please try again.',
|
||||
'delete' => 'There was an issue deleting the user. Please try again.',
|
||||
'unsuspend' => 'There was an issue unsuspending the user. Please try again.',
|
||||
'import' => 'There was an issue importing users. Please try again.',
|
||||
'asset_already_accepted' => 'This asset has already been accepted.',
|
||||
'create' => 'C\'è stato un problema durante la creazione dell\'utente. Per favore riprova.',
|
||||
'update' => 'C\'è stato un problema durante l\'aggiornamento dell\'utente. Per favore riprova.',
|
||||
'delete' => 'C\'è stato un problema durante la cancellazione dell\'utente. Riprova per favore.',
|
||||
'unsuspend' => 'C\'è stato un problema durante la riabilitazione dell\'utente. Riprova per favore.',
|
||||
'import' => 'C\'è stato un problema durante l\'importazione degli utenti. Riprova per favore.',
|
||||
'asset_already_accepted' => 'Questo bene è già stato accettato.',
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
@@ -2,35 +2,35 @@
|
||||
|
||||
return array(
|
||||
|
||||
'activated' => 'Active',
|
||||
'allow' => 'Allow',
|
||||
'checkedout' => 'Assets',
|
||||
'created_at' => 'Created',
|
||||
'createuser' => 'Create User',
|
||||
'deny' => 'Deny',
|
||||
'activated' => 'Attivo',
|
||||
'allow' => 'Consenti',
|
||||
'checkedout' => 'Beni',
|
||||
'created_at' => 'Creato',
|
||||
'createuser' => 'Crea Utente',
|
||||
'deny' => 'Nega',
|
||||
'email' => 'Email',
|
||||
'employee_num' => 'Employee No.',
|
||||
'first_name' => 'First Name',
|
||||
'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned.',
|
||||
'id' => 'Id',
|
||||
'inherit' => 'Inherit',
|
||||
'job' => 'Job Title',
|
||||
'last_login' => 'Last Login',
|
||||
'last_name' => 'Last Name',
|
||||
'location' => 'Location',
|
||||
'lock_passwords' => 'Login details cannot be changed on this installation.',
|
||||
'employee_num' => 'Num. Dipendenti',
|
||||
'first_name' => 'Nome',
|
||||
'groupnotes' => 'Selezionare un gruppo a cui assegnare l\'utente, ricorda che un utente assume le autorizzazioni del gruppo a cui appartiene.',
|
||||
'id' => 'ID',
|
||||
'inherit' => 'Eredita',
|
||||
'job' => 'Professione',
|
||||
'last_login' => 'Ultimo accesso',
|
||||
'last_name' => 'Cognome',
|
||||
'location' => 'Posizione',
|
||||
'lock_passwords' => 'Dettagli di login non possono essere cambiati in questa installazione.',
|
||||
'manager' => 'Manager',
|
||||
'name' => 'Name',
|
||||
'notes' => 'Notes',
|
||||
'password_confirm' => 'Confirm Password',
|
||||
'name' => 'Nome',
|
||||
'notes' => 'Note',
|
||||
'password_confirm' => 'Conferma password',
|
||||
'password' => 'Password',
|
||||
'phone' => 'Phone',
|
||||
'show_current' => 'Show Current Users',
|
||||
'show_deleted' => 'Show Deleted Users',
|
||||
'title' => 'Title',
|
||||
'updateuser' => 'Update User',
|
||||
'phone' => 'Telefono',
|
||||
'show_current' => 'Visualizza utenti attuali',
|
||||
'show_deleted' => 'Visualizza utenti eliminati',
|
||||
'title' => 'Titolo',
|
||||
'updateuser' => 'Aggiornamento utente',
|
||||
'username' => 'Username',
|
||||
'username_note' => '(This is used for Active Directory binding only, not for login.)',
|
||||
'cloneuser' => 'Clone User',
|
||||
'viewusers' => 'View Users',
|
||||
'username_note' => '(Questo è usato solo per Active Directory vincolante, non per il login.)',
|
||||
'cloneuser' => 'Clona Utente',
|
||||
'viewusers' => 'Visualizza utenti',
|
||||
);
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Modifica indirizzo email',
|
||||
'changepassword' => 'Modifica password',
|
||||
'checkin' => 'Carica',
|
||||
'checkin_from' => 'Carica da',
|
||||
'checkout' => 'Scarica',
|
||||
'city' => 'Città',
|
||||
'country' => 'Paese',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Obsoleti',
|
||||
'editprofile' => 'Edita il tuo profilo',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'Primo',
|
||||
'first_name' => 'Nome',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'Carica i file',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Cancella l\'Immagine',
|
||||
'image_upload' => 'Carica immagine',
|
||||
'last' => 'Ultimo',
|
||||
'last_name' => 'Cognome',
|
||||
'license' => 'Licenza',
|
||||
'license_report' => 'Report Licenze',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'mesi',
|
||||
'moreinfo' => 'Altre informazioni',
|
||||
'name' => 'Nome',
|
||||
'next' => 'Successivo',
|
||||
'no_depreciation' => 'Non Obsololeto',
|
||||
'no_results' => 'Nessun risultato.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Note',
|
||||
'page_menu' => 'Visualizza _MENU_Items',
|
||||
'pagination_info' => 'Visualizza _START_ to _END_ of _TOTAL_ articoli',
|
||||
'pending' => 'In attesa',
|
||||
'people' => 'Utenti',
|
||||
'per_page' => 'Risultati per Pagina',
|
||||
'previous' => 'Precedente',
|
||||
'processing' => 'In elaborazione',
|
||||
'profile' => 'Il tuo profilo',
|
||||
'ready_to_deploy' => 'Pronto per il rilascio',
|
||||
'recent_activity' => 'Attività Recenti',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Salva',
|
||||
'select' => 'Seleziona',
|
||||
'search' => 'Cerca',
|
||||
'select_depreciation' => 'Selezionare un tipo di ammortamento',
|
||||
'select_location' => 'Seleziona una posizione',
|
||||
'select_manufacturer' => 'Selezionare un produttore',
|
||||
'select_model' => 'Selezionare un modello',
|
||||
'select_supplier' => 'Selezionare un fornitore',
|
||||
'select_user' => 'Selezionare un utente',
|
||||
'select_date' => 'Seleziona la data',
|
||||
'settings' => 'Impostazioni',
|
||||
'sign_in' => 'Accedi',
|
||||
'site_name' => 'Nome sito',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Tipo',
|
||||
'undeployable' => 'Non consegnabile',
|
||||
'unknown_admin' => 'Amministratore sconosciuto',
|
||||
'uploaded' => 'Caricato',
|
||||
'user' => 'Utente',
|
||||
'users' => 'Utenti',
|
||||
'viewassets' => 'Visualizza gli Assets assegnati',
|
||||
|
||||
+24
-24
@@ -34,35 +34,35 @@ return array(
|
||||
"email" => "il formato del :attribute è invalido.",
|
||||
"exists" => ":attribute selezzionato è invalido.",
|
||||
"image" => "il :attribute deve essere un immagine.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"in" => "Il selezionato :attribute è invalido.",
|
||||
"integer" => "L' :attribute deve essere un numero intero.",
|
||||
"ip" => "L' :attribute deve essere un indirizzo IP valido.",
|
||||
"max" => array(
|
||||
"numeric" => "The :attribute may not be greater than :max.",
|
||||
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute may not be greater than :max characters.",
|
||||
"numeric" => "L' :attribute non può essere superiore di :max.",
|
||||
"file" => "L' :attribute non può essere maggiore di :max kilobytes.",
|
||||
"string" => "L' :attribute non può essere maggiore di :max caratteri.",
|
||||
),
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"mimes" => "L' :attribute deve essere un file di type: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
"numeric" => "L' :attribute deve essere almeno :min.",
|
||||
"file" => "L' :attribute deve essere almeno :min kilobytes.",
|
||||
"string" => "L' :attribute deve essere almeno :min caratteri.",
|
||||
),
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"not_in" => "L' :attribute selezionato è invalido.",
|
||||
"numeric" => "L' :attribute deve essere un numero.",
|
||||
"regex" => "Il formato dell' :attribute è invalido.",
|
||||
"required" => "Il campo :attribute è obblogatorio.",
|
||||
"required_if" => "L' :attribute è richiesto quando :other è :value.",
|
||||
"required_with" => "Il campo :attribute è richiesto quando :values è presente.",
|
||||
"required_without" => "Il campo :attribute è richiesto quando :values non è presente.",
|
||||
"same" => "L' :attribute e :other devono corrispondere.",
|
||||
"size" => array(
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
"numeric" => "L' :attribute deve essere :size.",
|
||||
"file" => "L' :attribute deve essere :size kilobytes.",
|
||||
"string" => "L' :attribute deve essere :size characters.",
|
||||
),
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"unique" => "L' :attribute è già stato preso.",
|
||||
"url" => "Il formato dell' :attribute è invalido.",
|
||||
|
||||
|
||||
/*
|
||||
@@ -77,7 +77,7 @@ return array(
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "The :attribute field may only contain letters, commas, spaces and dashes.",
|
||||
'alpha_space' => "Il campo :attribute può contenere solo lettere, virgole, spazi e trattini.",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Checkout',
|
||||
'city' => 'City',
|
||||
'country' => 'Country',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'editprofile' => 'Edit Your Profile',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'First Name',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Delete Image',
|
||||
'image_upload' => 'Upload Image',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Last Name',
|
||||
'license' => 'License',
|
||||
'license_report' => 'License Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'months',
|
||||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pending',
|
||||
'people' => 'People',
|
||||
'per_page' => 'Results Per Page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Your profile',
|
||||
'ready_to_deploy' => 'Ready to Deploy',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Save',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Settings',
|
||||
'sign_in' => 'Sign in',
|
||||
'site_name' => 'Site Name',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'User',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
|
||||
@@ -5,10 +5,10 @@ return array(
|
||||
'about_categories' => 'Kategori aset membantu anda menyusun aset anda. Diantara contoh aset mungkin "Komputer desktop", "Komputer riba", "Telefon bimbit", "Tablet", dan seterusnya, walaubagaimanapun anda boleh menggunakan kategori aset mengikut citarasa anda. ',
|
||||
'asset_categories' => 'Kategori aset',
|
||||
'category_name' => 'Nama Kategori',
|
||||
'clone' => 'Clone Category',
|
||||
'clone' => 'Klon Kategori',
|
||||
'create' => 'Cipta Kategori',
|
||||
'edit' => 'Edit Category',
|
||||
'eula_text' => 'Category EULA',
|
||||
'edit' => 'Kemaskini Kategori',
|
||||
'eula_text' => 'Kategori EULA',
|
||||
'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.',
|
||||
'require_acceptance' => 'Require users to confirm acceptance of assets in this category.',
|
||||
'required_acceptance' => 'This user will be emailed with a link to confirm acceptance of this item.',
|
||||
|
||||
@@ -4,7 +4,7 @@ return array(
|
||||
'eula_text' => 'EULA',
|
||||
'id' => 'ID',
|
||||
'parent' => 'Parent',
|
||||
'require_acceptance' => 'Acceptance',
|
||||
'require_acceptance' => 'Diterima',
|
||||
'title' => 'Nama Kategori Harta',
|
||||
|
||||
);
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Ubah Alamat E-mail',
|
||||
'changepassword' => 'Tukar kata laluan',
|
||||
'checkin' => 'Terima',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Agihkan',
|
||||
'city' => 'Bandar',
|
||||
'country' => 'Negara',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Susut Nilai',
|
||||
'editprofile' => 'Kemaskini Profail Anda',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Nama pertama',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Hapuskan imej',
|
||||
'image_upload' => 'Muat naik imej',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Nama Keluarga',
|
||||
'license' => 'Lesen',
|
||||
'license_report' => 'Laporan Lesen',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'Bulan',
|
||||
'moreinfo' => 'Maklumat tambahan',
|
||||
'name' => 'Nama',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Tiada Susut Nilai',
|
||||
'no_results' => 'Tiada kepututsan.',
|
||||
'no' => 'Tidak',
|
||||
'notes' => 'Nota',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Belum selesai',
|
||||
'people' => 'Orang',
|
||||
'per_page' => 'Senarai Setiap Mukasurat',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Profail Anda',
|
||||
'ready_to_deploy' => 'Sedia untuk diagihkan',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Laporan',
|
||||
'save' => 'Simpan',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Tetapan',
|
||||
'sign_in' => 'Log masuk',
|
||||
'site_name' => 'Nama Sesawang',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Tidak Boleh Agih',
|
||||
'unknown_admin' => 'Pentadbir Tidak Dikenali',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Pengguna',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Paparkan Harta yang diserahkan',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'E-mailadres wijzigen',
|
||||
'changepassword' => 'Wachtwoord wijzigen',
|
||||
'checkin' => 'Check-in',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Afrekenen',
|
||||
'city' => 'Plaats',
|
||||
'country' => 'Land',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Afschrijving',
|
||||
'editprofile' => 'Bewerk jouw profiel',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Voornaam',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Afbeelding verwijderen',
|
||||
'image_upload' => 'Afbeelding uploaden',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Achternaam',
|
||||
'license' => 'Licentie',
|
||||
'license_report' => 'Licentierapport',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'maanden',
|
||||
'moreinfo' => 'Meer Info',
|
||||
'name' => 'Naam',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Geen afschrijving',
|
||||
'no_results' => 'Geen resultaten.',
|
||||
'no' => 'Neen',
|
||||
'notes' => 'Notities',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'In afwachting',
|
||||
'people' => 'Personen',
|
||||
'per_page' => 'Resultaten per pagina',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Uw profiel',
|
||||
'ready_to_deploy' => 'Klaar om ingezet te worden',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Rapporten',
|
||||
'save' => 'Opslaan',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Instellingen',
|
||||
'sign_in' => 'Aanmelden',
|
||||
'site_name' => 'Sitenaam',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Niet-inzetbaar',
|
||||
'unknown_admin' => 'Onbekende Beheerder',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Gebruiker',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Bekijk toegekende materialen',
|
||||
|
||||
@@ -6,8 +6,8 @@ return array(
|
||||
'bulk_update_help' => 'Dette skjemaet lar deg oppdatere flere eiendeler på en gang. Fyll kun ut feltene du ønsker å endre. Tomme felter forblir uendret. ',
|
||||
'bulk_update_warn' => 'Du er på vei til å endre egenskapene til :asset_count eiendeler.',
|
||||
'checkedout_to' => 'Utsjekket til',
|
||||
'checkout_date' => 'Checkout Date',
|
||||
'checkin_date' => 'Checkin Date',
|
||||
'checkout_date' => 'Utsjekkdato',
|
||||
'checkin_date' => 'Innsjekkdato',
|
||||
'checkout_to' => 'Sjekk ut til',
|
||||
'cost' => 'Innkjøpskostnad',
|
||||
'create' => 'Opprett eiendel',
|
||||
|
||||
@@ -6,7 +6,7 @@ return array(
|
||||
'auto_increment_assets' => 'Generer automatisk økende eiendels-IDer',
|
||||
'auto_increment_prefix' => 'Prefiks (valgfritt)',
|
||||
'auto_incrementing_help' => 'Aktiver først automatisk øking av eiendels-IDer for å velge dette alternativet',
|
||||
'barcode_type' => 'Barcode Type',
|
||||
'barcode_type' => 'Strekkodetype',
|
||||
'default_eula_text' => 'Standard EULA',
|
||||
'default_eula_help_text' => 'Du kan også knytte tilpassede EULAer til bestemte eiendelskategorier.',
|
||||
'display_asset_name' => 'Vis eiendelsnavn',
|
||||
@@ -28,7 +28,7 @@ return array(
|
||||
'setting' => 'Innstilling',
|
||||
'settings' => 'Innstillinger',
|
||||
'site_name' => 'Nettstedsnavn',
|
||||
'snipe_version' => 'Snipe-IT version',
|
||||
'snipe_version' => 'Snipe-IT-versjon',
|
||||
'system' => 'Systeminformasjon',
|
||||
'update' => 'Oppdater innstillinger',
|
||||
'value' => 'Verdi',
|
||||
|
||||
@@ -28,7 +28,7 @@ return array(
|
||||
'delete' => 'Det oppstod et problem under sletting av bruker. Prøv igjen.',
|
||||
'unsuspend' => 'Det oppstod et problem under aktivering av bruker. Prøv igjen.',
|
||||
'import' => 'Det oppstod et problem under import av brukere. Prøv igjen.',
|
||||
'asset_already_accepted' => 'This asset has already been accepted.',
|
||||
'asset_already_accepted' => 'Denne eiendelen er allerede akseptert.',
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
@@ -21,12 +21,12 @@ return array(
|
||||
'lock_passwords' => 'Innloggingsdetaljer kan ikke endres i denne installasjonen.',
|
||||
'manager' => 'Overordnet',
|
||||
'name' => 'Navn',
|
||||
'notes' => 'Notes',
|
||||
'notes' => 'Notater',
|
||||
'password_confirm' => 'Bekreft passord',
|
||||
'password' => 'Passord',
|
||||
'phone' => 'Telefon',
|
||||
'show_current' => 'Show Current Users',
|
||||
'show_deleted' => 'Show Deleted Users',
|
||||
'show_current' => 'Vis nåværende brukere',
|
||||
'show_deleted' => 'Vis slettede brukere',
|
||||
'title' => 'Tittel',
|
||||
'updateuser' => 'Oppdater bruker',
|
||||
'username' => 'Brukernavn',
|
||||
|
||||
+20
-1
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Endre e-postadresse',
|
||||
'changepassword' => 'Endre passord',
|
||||
'checkin' => 'Sjekk inn',
|
||||
'checkin_from' => 'Innsjekk fra',
|
||||
'checkout' => 'Sjekk ut',
|
||||
'city' => 'By',
|
||||
'country' => 'Land',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Avskrivning',
|
||||
'editprofile' => 'Rediger din profil',
|
||||
'eol' => 'Livstid',
|
||||
'first' => 'Første',
|
||||
'first_name' => 'Fornavn',
|
||||
'file_name' => 'Fil',
|
||||
'file_uploads' => 'Filopplastinger',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Slett bilde',
|
||||
'image_upload' => 'Last opp bilde',
|
||||
'last' => 'Siste',
|
||||
'last_name' => 'Etternavn',
|
||||
'license' => 'Lisens',
|
||||
'license_report' => 'Lisensrapport',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'måneder',
|
||||
'moreinfo' => 'Mer info',
|
||||
'name' => 'Navn',
|
||||
'next' => 'Neste',
|
||||
'no_depreciation' => 'Ingen avskrivning',
|
||||
'no_results' => 'Ingen treff.',
|
||||
'no' => 'Nummer',
|
||||
'notes' => 'Notater',
|
||||
'page_menu' => 'Viser _MENU_ enheter',
|
||||
'pagination_info' => 'Viser _START_ til _END_ av _TOTAL_ enheter',
|
||||
'pending' => 'Under arbeid',
|
||||
'people' => 'Folk',
|
||||
'per_page' => 'Resultater pr side',
|
||||
'previous' => 'Forrige',
|
||||
'processing' => 'Behandler',
|
||||
'profile' => 'Din profil',
|
||||
'ready_to_deploy' => 'Klar for utlevering',
|
||||
'recent_activity' => 'Nylig aktivitet',
|
||||
'reports' => 'Rapporter',
|
||||
'save' => 'Lagre',
|
||||
'select' => 'Velg',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Velg en avskrivningstype',
|
||||
'select_location' => 'Velg en lokasjon',
|
||||
'select_manufacturer' => 'Velg en produsent',
|
||||
'select_model' => 'Velg en modell',
|
||||
'select_supplier' => 'Velg en leverandør',
|
||||
'select_user' => 'Velg en bruker',
|
||||
'select_date' => 'Velg en dato',
|
||||
'settings' => 'Innstillinger',
|
||||
'sign_in' => 'Logg inn',
|
||||
'site_name' => 'Nettstedsnavn',
|
||||
@@ -92,8 +110,9 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Ikke utleverbar',
|
||||
'unknown_admin' => 'Ukjent admin',
|
||||
'uploaded' => 'Lastet opp',
|
||||
'user' => 'Bruker',
|
||||
'users' => 'Users',
|
||||
'users' => 'Brukere',
|
||||
'viewassets' => 'Vis tildelte eiendeler',
|
||||
'website' => 'Nettsted',
|
||||
'welcome' => 'Velkommen, :name',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Zmiana adresu email',
|
||||
'changepassword' => 'Zmień Hasło',
|
||||
'checkin' => 'Odepnij',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Przypisz',
|
||||
'city' => 'Miasto',
|
||||
'country' => 'Kraj',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Amortyzacja',
|
||||
'editprofile' => 'Edytuj Swój Profil',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Imię',
|
||||
'file_name' => 'Plik',
|
||||
'file_uploads' => 'Dodaj plik',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Usuń zdjęcie',
|
||||
'image_upload' => 'Dodaj zdjęcie',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Nazwisko',
|
||||
'license' => 'Licencja',
|
||||
'license_report' => 'Raport Licencji',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'miesięcy',
|
||||
'moreinfo' => 'Więcej informacji',
|
||||
'name' => 'Nazwa',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Nie Amortyzowany',
|
||||
'no_results' => 'Brak wyników.',
|
||||
'no' => 'Nie',
|
||||
'notes' => 'Notatki',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Oczekujący',
|
||||
'people' => 'Osoby',
|
||||
'per_page' => 'Wyników na strone',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Twój profil',
|
||||
'ready_to_deploy' => 'Gotowe do wdrożenia',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Raporty',
|
||||
'save' => 'Zapisz',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Ustawienia',
|
||||
'sign_in' => 'Zaloguj się',
|
||||
'site_name' => 'Nazwa Witryny',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Nie przypisane',
|
||||
'unknown_admin' => 'Nieznany Administrator',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Użytkownik',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Zobacz przypisane aktywa',
|
||||
|
||||
@@ -2,19 +2,19 @@
|
||||
|
||||
return array(
|
||||
'about_accessories_title' => 'Sobre os Acessórios',
|
||||
'about_accessories_text' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.',
|
||||
'about_accessories_text' => 'Um acessório é qualquer coisa que você emitir aos usuários sem um número de série (ou que você não se preocupar em acompanhá-la unicamente). Por exemplo, mouses ou teclados.',
|
||||
'accessory_category' => 'Categoria do Acessório',
|
||||
'accessory_name' => 'Nome do Acessório',
|
||||
'create' => 'Criar Categoria',
|
||||
'eula_text' => 'EULA da Categoria',
|
||||
'eula_text_help' => 'Este campo lhe permite personalizar seus EULAs para tipos específicos de bens. Se você apenas tem um EULA para todos os seus bens, você pode selecionar a caixa abaixo para usar o padrão primário.',
|
||||
'require_acceptance' => 'Require users to confirm acceptance of assets in this category.',
|
||||
'eula_text_help' => 'Este campo lhe permite personalizar seus EULAs para tipos específicos de ativos. Se você apenas tem um EULA para todos os seus ativos, você pode selecionar a caixa abaixo para usar o padrão primário.',
|
||||
'require_acceptance' => 'Requer que usuários confirmem a aceitação de ativos nesta categoria.',
|
||||
'no_default_eula' => 'Nenhum EULA padrão primário foi encontrado. Adicione um nas Configurações.',
|
||||
'qty' => 'QTY',
|
||||
'qty' => 'QTD',
|
||||
'total' => 'Total',
|
||||
'remaining' => 'Avail',
|
||||
'update' => 'Atualizar Categoria',
|
||||
'use_default_eula' => 'Use the <a href="#" data-toggle="modal" data-target="#eulaModal">primary default EULA</a> instead.',
|
||||
'use_default_eula_disabled' => '<del>Use the primary default EULA instead.</del> No primary default EULA is set. Please add one in Settings.',
|
||||
'use_default_eula' => 'Em vez disso, use o <a href="#" data-toggle="modal" data-target="#eulaModal">EULA padrão primário</a>.',
|
||||
'use_default_eula_disabled' => '<del>Em vez disso, use o EULA padrão primário.</del> Nenhum EULA padrão primário foi definido. Adicione um nas Configurações.',
|
||||
|
||||
);
|
||||
|
||||
@@ -16,9 +16,9 @@ return array(
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza que deseja deletar esta categoria?',
|
||||
'error' => 'Houve um problema ao deletar a categoria. Tente novamente.',
|
||||
'success' => 'A categoria foi deletada com sucesso.'
|
||||
'confirm' => 'Tem certeza de que deseja excluir esta categoria?',
|
||||
'error' => 'Houve um problema ao excluir a categoria. Tente novamente.',
|
||||
'success' => 'A categoria foi excluída com sucesso.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
return array(
|
||||
'eula_text' => 'EULA',
|
||||
'id' => 'ID',
|
||||
'require_acceptance' => 'Acceptance',
|
||||
'title' => 'Accessory Name',
|
||||
'require_acceptance' => 'Aceitação',
|
||||
'title' => 'Nome do Acessório',
|
||||
|
||||
);
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about_asset_categories' => 'Sobre as Categorias de Bens',
|
||||
'about_categories' => 'As categorias de bens lhe ajudam a organizar os seus bens. Algumas categorias de exemplo podem ser "Desktops", "Notebooks", "Telefones Celulares", "Tablets", e outras, mas você pode usar as categorias de bens do jeito que você quiser. ',
|
||||
'asset_categories' => 'Categorias de Bens',
|
||||
'about_asset_categories' => 'Sobre as Categorias de Ativos',
|
||||
'about_categories' => 'As categorias de ativos lhe ajudam a organizar seus ativos. Algumas categorias de exemplo podem ser "Desktops", "Notebooks", "Telefones Celulares", "Tablets", e outras, mas você pode usar as categorias de ativos do jeito que você quiser.',
|
||||
'asset_categories' => 'Categorias de Ativos',
|
||||
'category_name' => 'Nome da Categoria',
|
||||
'clone' => 'Clonar Categoria',
|
||||
'create' => 'Criar Categoria',
|
||||
'edit' => 'Editar Categoria',
|
||||
'eula_text' => 'EULA da Categoria',
|
||||
'eula_text_help' => 'Este campo lhe permite personalizar seus EULAs para tipos específicos de bens. Se você apenas tem um EULA para todos os seus bens, você pode selecionar a caixa abaixo para usar o padrão primário.',
|
||||
'require_acceptance' => 'Require users to confirm acceptance of assets in this category.',
|
||||
'required_acceptance' => 'This user will be emailed with a link to confirm acceptance of this item.',
|
||||
'required_eula' => 'This user will be emailed a copy of the EULA',
|
||||
'require_acceptance' => 'Requer que usuários confirmem a aceitação de ativos nesta categoria.',
|
||||
'required_acceptance' => 'Este usuário receberá um e-mail com um link para confirmar a aceitação deste item.',
|
||||
'required_eula' => 'Este usuário receberá um e-mail com uma cópia do EULA',
|
||||
'no_default_eula' => 'Nenhum EULA padrão primário foi encontrado. Adicione um nas Configurações.',
|
||||
'update' => 'Atualizar Categoria',
|
||||
'use_default_eula' => 'Use the <a href="#" data-toggle="modal" data-target="#eulaModal">primary default EULA</a> instead.',
|
||||
'use_default_eula_disabled' => '<del>Use the primary default EULA instead.</del> No primary default EULA is set. Please add one in Settings.',
|
||||
'use_default_eula' => 'Em vez disso, use o <a href="#" data-toggle="modal" data-target="#eulaModal">EULA padrão primário</a>.',
|
||||
'use_default_eula_disabled' => '<del>Em vez disso, use o EULA padrão primário.</del> Nenhum EULA padrão primário foi definido. Adicione um nas Configurações.',
|
||||
|
||||
);
|
||||
|
||||
@@ -3,22 +3,22 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'A categoria não existe.',
|
||||
'assoc_users' => 'Esta categoria está no momento associada com pelo menos um modelo e não pode ser deletada. Por favor, atualize seus modelos para não referenciarem mais esta categoria e tente novamente. ',
|
||||
'assoc_users' => 'Esta categoria está no momento associada com pelo menos um modelo e não pode ser excluída. Atualize seus modelos para não referenciarem mais esta categoria e tente novamente. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'A categoria não foi criada, por favor, tente novamente.',
|
||||
'error' => 'A categoria não foi criada. Tente novamente.',
|
||||
'success' => 'Categoria criada com sucesso.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'A categoria não foi atualizada, por favor, tente novamente',
|
||||
'error' => 'A categoria não foi atualizada, tente novamente',
|
||||
'success' => 'Categoria atualizada com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza que deseja deletar esta categoria?',
|
||||
'error' => 'Houve um problema ao deletar a categoria. Por favor, tente novamente.',
|
||||
'success' => 'A categoria foi deletada com sucesso.'
|
||||
'confirm' => 'Tem certeza de que deseja excluir esta categoria?',
|
||||
'error' => 'Houve um problema ao excluir a categoria. Tente novamente.',
|
||||
'success' => 'A categoria foi excluída com sucesso.'
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
@@ -4,7 +4,7 @@ return array(
|
||||
'eula_text' => 'EULA',
|
||||
'id' => 'ID',
|
||||
'parent' => 'Pai',
|
||||
'require_acceptance' => 'Acceptance',
|
||||
'require_acceptance' => 'Aceitação',
|
||||
'title' => 'Nome da Categoria de Bens',
|
||||
|
||||
);
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about_asset_depreciations' => 'Sobre as Depreciações de Bens',
|
||||
'about_depreciations' => 'Você pode configurar depreciações para depreciar bens baseados na depreciação linear.',
|
||||
'asset_depreciations' => 'Depreciações de Bens',
|
||||
'about_asset_depreciations' => 'Sobre as Depreciações de Ativos',
|
||||
'about_depreciations' => 'Você pode configurar depreciações para depreciar ativos baseados na depreciação linear.',
|
||||
'asset_depreciations' => 'Depreciações de Ativos',
|
||||
'create_depreciation' => 'Criar Depreciação',
|
||||
'depreciation_name' => 'Nome da Depreciação',
|
||||
'number_of_months' => 'Número de Meses',
|
||||
|
||||
@@ -3,23 +3,23 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'A classe de depreciação não existe.',
|
||||
'assoc_users' => 'A depreciação está no momento associada com um ou mais modelos e não pode ser deletada. Por favor, delete os modelos, e então tente deletar novamente. ',
|
||||
'assoc_users' => 'A depreciação está no momento associada com um ou mais modelos e não pode ser excluída. Exclua os modelos e então tente excluir novamente. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => 'A classe de depreciação não foi criada, por favor, tente novamente. :(',
|
||||
'error' => 'A classe de depreciação não foi criada. Tente novamente. :(',
|
||||
'success' => 'Classe de depreciação criada com sucesso. :)'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'A classe de depreciação não foi atualizada, por favor, tente novamente',
|
||||
'error' => 'A classe de depreciação não foi atualizada, tente novamente',
|
||||
'success' => 'Classe de depreciação atualizada com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza que deseja deletar esta classe de depreciação?',
|
||||
'error' => 'Houve um problema ao deletar a classe de depreciação. Por favor, tente novamente.',
|
||||
'success' => 'A classe de depreciação foi deletada com sucesso.'
|
||||
'confirm' => 'Tem certeza de que deseja excluir esta classe de depreciação?',
|
||||
'error' => 'Houve um problema ao excluir a classe de depreciação. Tente novamente.',
|
||||
'success' => 'A classe de depreciação foi excluída com sucesso.'
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
@@ -9,14 +9,14 @@ return array(
|
||||
'success' => array(
|
||||
'create' => 'O grupo foi criado com sucesso.',
|
||||
'update' => 'O grupo foi atualizado com sucesso.',
|
||||
'delete' => 'O grupo foi deletado com sucesso.',
|
||||
'delete' => 'O grupo foi excluído com sucesso.',
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza que deseja deletar este grupo?',
|
||||
'create' => 'Houve um problema ao criar o grupo. Por favor, tente novamente.',
|
||||
'update' => 'Houve um problema ao atualizar o grupo. Por favor, tente novamente.',
|
||||
'delete' => 'Houve um problema ao deletar o grupo. Por favor, tente novamente.',
|
||||
'confirm' => 'Tem certeza de que deseja excluir este grupo?',
|
||||
'create' => 'Houve um problema ao criar o grupo. Tente novamente.',
|
||||
'update' => 'Houve um problema ao atualizar o grupo. Tente novamente.',
|
||||
'delete' => 'Houve um problema ao excluir o grupo. Tente novamente.',
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
@@ -2,39 +2,39 @@
|
||||
|
||||
return array(
|
||||
|
||||
'bulk_update' => 'Bens da Atualização em Massa',
|
||||
'bulk_update_help' => 'Este formulário lhe permite atualizar múltiplos bens de uma vez só. Apenas preencha os campos que você precisa alterá-los. Qualquer campo deixado em branco permanecerá inalterado. ',
|
||||
'bulk_update_warn' => 'Você está prestes a editar as propriedades de :asset_count bens.',
|
||||
'bulk_update' => 'Ativos da Atualização em Massa',
|
||||
'bulk_update_help' => 'Este formulário lhe permite atualizar múltiplos ativos de uma vez só. Apenas preencha os campos que você precisa alterar. Qualquer campo deixado em branco permanecerá inalterado. ',
|
||||
'bulk_update_warn' => 'Você está prestes a editar as propriedades de :asset_count ativos.',
|
||||
'checkedout_to' => 'Alocado para',
|
||||
'checkout_date' => 'Checkout Date',
|
||||
'checkin_date' => 'Checkin Date',
|
||||
'checkout_to' => 'Alocado para',
|
||||
'cost' => 'Custo da Compra',
|
||||
'create' => 'Criar Bem',
|
||||
'create' => 'Criar Ativo',
|
||||
'date' => 'Data da Compra',
|
||||
'depreciates_on' => 'Deprecia Em',
|
||||
'depreciates_on' => 'Deprecia em',
|
||||
'depreciation' => 'Depreciação',
|
||||
'default_location' => 'Local Padrão',
|
||||
'eol_date' => 'Date de EOL',
|
||||
'eol_rate' => 'Classificação de EOL',
|
||||
'expires' => 'Expira',
|
||||
'fully_depreciated' => 'Totalmente Depreciado',
|
||||
'help_checkout' => 'Se você deseja atribuir este bem imediatamente, você deve selecionar "Pronto para Implantar" da lista de status acima, ou coisas inesperadas podem acontecer. ',
|
||||
'help_checkout' => 'Se você deseja atribuir este ativo imediatamente, você deve selecionar "Pronto para Implantar" da lista de status acima, ou coisas inesperadas podem acontecer. ',
|
||||
'mac_address' => 'Endereço MAC',
|
||||
'manufacturer' => 'Fabricante',
|
||||
'model' => 'Modelo',
|
||||
'months' => 'meses',
|
||||
'name' => 'Nome do Bem',
|
||||
'name' => 'Nome do Ativo',
|
||||
'notes' => 'Notas',
|
||||
'order' => 'Número do Pedido',
|
||||
'qr' => 'Código QR',
|
||||
'requestable' => 'Os usuários podem solicitar este bem',
|
||||
'requestable' => 'Usuários podem solicitar este ativo',
|
||||
'select_statustype' => 'Selecione o Tipo de Status',
|
||||
'serial' => 'Serial',
|
||||
'status' => 'Status',
|
||||
'supplier' => 'Fornecedor',
|
||||
'tag' => 'Marcação do Bem',
|
||||
'update' => 'Atualização do Bem',
|
||||
'tag' => 'Marcação do Ativo',
|
||||
'update' => 'Atualização do Ativo',
|
||||
'warranty' => 'Garantia',
|
||||
'years' => 'anos',
|
||||
)
|
||||
|
||||
@@ -2,17 +2,17 @@
|
||||
|
||||
return array(
|
||||
'archived' => 'Arquivado',
|
||||
'asset' => 'Bem',
|
||||
'asset' => 'Ativo',
|
||||
'checkin' => 'Retornar Ativo',
|
||||
'checkout' => 'Registrar Ativo ao Usuário',
|
||||
'clone' => 'Clonar Bem',
|
||||
'clone' => 'Clonar Ativo',
|
||||
'deployable' => 'Implementável',
|
||||
'deleted' => 'Este bem foi deletado. <a href="/hardware/:asset_id/restore">Clique aqui para restaurá-lo</a>.',
|
||||
'edit' => 'Editar Bem',
|
||||
'model_deleted' => 'Este modelo de Bens foi deletado. Você deve restaurar o modelo antes de restaurar o Bem.<br/> <a href="/hardware/models/:model_id/restore">Clique aqui para restaurar o modelo</a>.',
|
||||
'deleted' => 'Este ativo foi excluído. <a href="/hardware/:asset_id/restore">Clique aqui para restaurá-lo</a>.',
|
||||
'edit' => 'Editar Ativo',
|
||||
'model_deleted' => 'Este modelo de Ativos foi excluído. Você deve restaurar o modelo antes de restaurar o Ativo.<br/> <a href="/hardware/models/:model_id/restore">Clique aqui para restaurar o modelo</a>.',
|
||||
'requestable' => 'Solicitável',
|
||||
'restore' => 'Restaurar Bem',
|
||||
'restore' => 'Restaurar Ativo',
|
||||
'pending' => 'Pendente',
|
||||
'undeployable' => 'Não implementável',
|
||||
'view' => 'Ver Bem',
|
||||
'view' => 'Ver Ativo',
|
||||
);
|
||||
|
||||
@@ -2,29 +2,29 @@
|
||||
|
||||
return array(
|
||||
|
||||
'undeployable' => '<strong>Aviso:</strong> Este bem foi marcado como atualmente não implementável. Se este status mudou, por favor, atualize o status do bem.',
|
||||
'does_not_exist' => 'O bem não existe.',
|
||||
'undeployable' => '<strong>Aviso:</strong> Este ativo foi marcado como atualmente não implementável. Se este status mudou, atualize o status do ativo.',
|
||||
'does_not_exist' => 'O ativo não existe.',
|
||||
'assoc_users' => 'Este bem está no momento associado com pelo menos um usuário e não pode ser deletado. Por favor, atualize seu bem para que não referencie mais este usuário e tente novamente. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'O bem não foi criado, por favor, tente novamente. :(',
|
||||
'success' => 'Bem criado com sucesso. :)'
|
||||
'error' => 'O ativo não foi criado, tente novamente. :(',
|
||||
'success' => 'Ativo criado com sucesso. :)'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'O bem não foi atualizado, por favor, tente novamente',
|
||||
'success' => 'Bem atualizado com sucesso.',
|
||||
'error' => 'O ativo não foi atualizado, tente novamente',
|
||||
'success' => 'Ativo atualizado com sucesso.',
|
||||
'nothing_updated' => 'Nenhum campo foi selecionado, então nada foi atualizado.',
|
||||
),
|
||||
|
||||
'restore' => array(
|
||||
'error' => 'O bem não foi restaurado, por favor, tente novamente',
|
||||
'success' => 'Bem restaurado com sucesso.'
|
||||
'error' => 'O ativo não foi restaurado, tente novamente',
|
||||
'success' => 'Ativo restaurado com sucesso.'
|
||||
),
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'O arquivo não foi deletado. Tente novamente.',
|
||||
'success' => 'Arquivo deletado com sucesso.',
|
||||
'error' => 'O arquivo não foi excluído. Tente novamente.',
|
||||
'success' => 'Arquivo excluído com sucesso.',
|
||||
),
|
||||
|
||||
'upload' => array(
|
||||
@@ -36,21 +36,21 @@ return array(
|
||||
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza de que deseja deletar este bem?',
|
||||
'error' => 'Houve um problema ao deletar o bem. Por favor, tente novamente.',
|
||||
'success' => 'O bem foi deletado com sucesso.'
|
||||
'confirm' => 'Tem certeza de que deseja excluir este ativo?',
|
||||
'error' => 'Houve um problema ao excluir o ativo. Tente novamente.',
|
||||
'success' => 'O ativo foi excluído com sucesso.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
'error' => 'Ativo não foi registrado, favor tentar novamente',
|
||||
'success' => 'Ativo registrado com sucesso.',
|
||||
'user_does_not_exist' => 'Este usuário é inválido. Por favor, tente novamente.'
|
||||
'user_does_not_exist' => 'Este usuário é inválido. Tente novamente.'
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'Ativo não foi retornado, favor tentar novamente',
|
||||
'success' => 'Ativo retornado com sucesso.',
|
||||
'user_does_not_exist' => 'Este usuário é inválido. Por favor, tente novamente.'
|
||||
'user_does_not_exist' => 'Este usuário é inválido. Tente novamente.'
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
return array(
|
||||
|
||||
'asset_tag' => 'Marcação do Bem',
|
||||
'asset_tag' => 'Marcação do Ativo',
|
||||
'asset_model' => 'Modelo',
|
||||
'book_value' => 'Valor',
|
||||
'change' => 'Entrada/Saída',
|
||||
@@ -17,6 +17,6 @@ return array(
|
||||
'purchase_date' => 'Comprado',
|
||||
'serial' => 'Serial',
|
||||
'status' => 'Status',
|
||||
'title' => 'Bem ',
|
||||
'title' => 'Ativo ',
|
||||
|
||||
);
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
return array(
|
||||
|
||||
'asset' => 'Bem',
|
||||
'asset' => 'Ativo',
|
||||
'checkin' => 'Registrar',
|
||||
'cost' => 'Custo da Compra',
|
||||
'create' => 'Criar Licença',
|
||||
|
||||
@@ -4,19 +4,19 @@ return array(
|
||||
|
||||
'does_not_exist' => 'A licença não existe.',
|
||||
'user_does_not_exist' => 'O usuário não existe.',
|
||||
'asset_does_not_exist' => 'O bem que você está tentando associar com esta licença não existe.',
|
||||
'asset_does_not_exist' => 'O ativo do qual você está tentando associar com esta licença não existe.',
|
||||
'owner_doesnt_match_asset' => 'O bem que você está tentando associar a está licença é propriedade de alguma outra pessoa que não está selecionada na lista suspensa.',
|
||||
'assoc_users' => 'Esta licença é atualmente check-out para um usuário e não pode ser excluído. Por favor, atualize seu bem para que não referencie mais este usuário e, em seguida, tente apagar novamente. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => 'A licença não foi criada, por favor, tente novamente.',
|
||||
'error' => 'A licença não foi criada, tente novamente.',
|
||||
'success' => 'Licença criada com sucesso.'
|
||||
),
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'O arquivo não foi deletado. Tente novamente.',
|
||||
'success' => 'Arquivo deletado com sucesso.',
|
||||
'error' => 'O arquivo não foi excluído. Tente novamente.',
|
||||
'success' => 'Arquivo excluído com sucesso.',
|
||||
),
|
||||
|
||||
'upload' => array(
|
||||
@@ -27,14 +27,14 @@ return array(
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'A licença não foi atualizada, por favor, tente novamente',
|
||||
'error' => 'A licença não foi atualizada, tente novamente',
|
||||
'success' => 'Licença atualizada com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza que deseja deletar esta licença?',
|
||||
'error' => 'Houve um problema ao deletar esta licença. Por favor, tente novamente.',
|
||||
'success' => 'A licença foi deletada com sucesso.'
|
||||
'confirm' => 'Tem certeza de que deseja excluir esta licença?',
|
||||
'error' => 'Houve um problema ao excluir esta licença. Tente novamente.',
|
||||
'success' => 'A licença foi excluída com sucesso.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
|
||||
@@ -3,23 +3,23 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'O local não existe.',
|
||||
'assoc_users' => 'Este local está no momento associado com pelo menos um usuário e não pode ser deletado. Por favor, atualize os seus usuários para não referenciarem mais este local e tente novamente. ',
|
||||
'assoc_users' => 'Este local está no momento associado com pelo menos um usuário e não pode ser excluído. Atualize seus usuários para não referenciarem mais este local e tente novamente. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => 'O local não foi criado, por favor, tente novamente.',
|
||||
'error' => 'O local não foi criado, tente novamente.',
|
||||
'success' => 'Local criado com sucesso.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'O local não foi atualizado, por favor, tente novamente',
|
||||
'error' => 'O local não foi atualizado, tente novamente',
|
||||
'success' => 'Local atualizado com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza de que quer deletar este local?',
|
||||
'error' => 'Houve um problema ao deletar o local. Por favor, tente novamente.',
|
||||
'success' => 'O local foi deletado com sucesso.'
|
||||
'confirm' => 'Tem certeza de que quer excluir este local?',
|
||||
'error' => 'Houve um problema ao excluir o local. Tente novamente.',
|
||||
'success' => 'O local foi excluído com sucesso.'
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
@@ -3,22 +3,22 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'O fabricante não existe.',
|
||||
'assoc_users' => 'Este fabricante está no momento associado com pelo menos um modelo e não pode ser deletado. Por favor, atualize os seus modelos para não referenciarem mais este fabricante e tente novamente. ',
|
||||
'assoc_users' => 'Este fabricante está no momento associado com pelo menos um modelo e não pode ser excluído. Atualize seus modelos para não referenciarem mais este fabricante e tente novamente. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'O fabricante não foi criado, por favor, tente novamente.',
|
||||
'error' => 'O fabricante não foi criado, tente novamente.',
|
||||
'success' => 'Fabricante criado com sucesso.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'O fabricante não foi atualizado, por favor, tente novamente',
|
||||
'error' => 'O fabricante não foi atualizado, tente novamente',
|
||||
'success' => 'Fabricante atualizado com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza que deseja deletar este fabricante?',
|
||||
'confirm' => 'Tem certeza de que deseja excluir este fabricante?',
|
||||
'error' => 'Ocorreu um erro ao tentar deletar o fabricante. Por favor, tente novamente.',
|
||||
'success' => 'O Fabricante foi deletado com sucesso.'
|
||||
'success' => 'O Fabricante foi excluído com sucesso.'
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
return array(
|
||||
|
||||
'asset_manufacturers' => 'Fabricantes de Bens',
|
||||
'asset_manufacturers' => 'Fabricantes de Ativos',
|
||||
'create' => 'Criar Fabricante',
|
||||
'id' => 'ID',
|
||||
'name' => 'Nome do Fabricante',
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
|
||||
return array(
|
||||
|
||||
'deleted' => 'Este modelo foi deletado. <a href="/hardware/models/:model_id/restore">Clique aqui para restaurá-lo</a>.',
|
||||
'deleted' => 'Este modelo foi excluído. <a href="/hardware/models/:model_id/restore">Clique aqui para o restaurar</a>.',
|
||||
'restore' => 'Restaurar Modelo',
|
||||
'show_mac_address' => 'Exibir o campo de endereço MAC nos bens neste modelo',
|
||||
'view_deleted' => 'Ver Deletados',
|
||||
'show_mac_address' => 'Exibir o campo de endereço MAC nos ativos neste modelo',
|
||||
'view_deleted' => 'Ver Excluídos',
|
||||
'view_models' => 'Ver Modelos',
|
||||
|
||||
);
|
||||
|
||||
@@ -3,23 +3,23 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'O modelo não existe.',
|
||||
'assoc_users' => 'Este modelo está no momento associado com um ou mais bens e não pode ser deletado. Por favor, delete os bens, e então tente deletar novamente. ',
|
||||
'assoc_users' => 'Este modelo está no momento associado com um ou mais ativos e não pode ser excluído. Exclua os ativos e então tente excluir novamente. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => 'O modelo não foi criado, por favor, tente novamente.',
|
||||
'error' => 'O modelo não foi criado, tente novamente.',
|
||||
'success' => 'Modelo criado com sucesso.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'O modelo não foi atualizado, por favor, tente novamente',
|
||||
'error' => 'O modelo não foi atualizado, tente novamente',
|
||||
'success' => 'Modelo atualizado com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza de que quer deletar este modelo de bem?',
|
||||
'confirm' => 'Tem certeza de que quer excluir este modelo de ativo?',
|
||||
'error' => 'Houve um problema ao deletar o modelo. Por favor, tente novamente.',
|
||||
'success' => 'O modelo foi deletado com sucesso.'
|
||||
'success' => 'O modelo foi excluído com sucesso.'
|
||||
),
|
||||
|
||||
'restore' => array(
|
||||
|
||||
@@ -2,16 +2,16 @@
|
||||
|
||||
return array(
|
||||
|
||||
'create' => 'Criar Modelo de Bens',
|
||||
'create' => 'Criar Modelo de Ativos',
|
||||
'created_at' => 'Criado em',
|
||||
'eol' => 'EOL',
|
||||
'modelnumber' => 'Nº do Modelo',
|
||||
'name' => 'Nome do Modelo de Bens',
|
||||
'numassets' => 'Bens',
|
||||
'title' => 'Modelos de Bens',
|
||||
'update' => 'Atualizar Modelo de Bens',
|
||||
'view' => 'Ver Modelo de Bens',
|
||||
'update' => 'Atualizar Modelo de Bens',
|
||||
'name' => 'Nome do Modelo de Ativos',
|
||||
'numassets' => 'Ativos',
|
||||
'title' => 'Modelos de Ativos',
|
||||
'update' => 'Atualizar Modelo de Ativos',
|
||||
'view' => 'Ver Modelo de Ativos',
|
||||
'update' => 'Atualizar Modelo de Ativos',
|
||||
'clone' => 'Clonar Modelo',
|
||||
'edit' => 'Editar Modelo',
|
||||
);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'info' => 'Selecione as opções que você quer para o seu relatório de bens.'
|
||||
'info' => 'Selecione as opções que você quer para o seu relatório de ativos.'
|
||||
);
|
||||
|
||||
@@ -6,16 +6,16 @@ return array(
|
||||
'auto_increment_assets' => 'Gerar ID de ativo crescente',
|
||||
'auto_increment_prefix' => 'Prefixo (opcional)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
'barcode_type' => 'Barcode Type',
|
||||
'barcode_type' => 'Tipo do Código de Barras',
|
||||
'default_eula_text' => 'EULA Padrão',
|
||||
'default_eula_help_text' => 'Você também pode associar EULAs personalizados para categorias diferentes de bens.',
|
||||
'display_asset_name' => 'Exibir Nome do Bem',
|
||||
'default_eula_help_text' => 'Você também pode associar EULAs personalizados para categorias específicas de ativos.',
|
||||
'display_asset_name' => 'Exibir Nome do Ativo',
|
||||
'display_checkout_date' => 'Mostrar data de check-out',
|
||||
'display_eol' => 'Exibir EOL na visualização tabela',
|
||||
'display_eol' => 'Exibir EOL na visualização de tabela',
|
||||
'display_qr' => 'Exibir Códigos QR',
|
||||
'eula_markdown' => 'This EULA allows <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.',
|
||||
'header_color' => 'Cor do Cabeçalho',
|
||||
'info' => 'Estas configurações lhe deixam personalizar certos aspectos da sua instalação.',
|
||||
'info' => 'Estas configurações deixam-lhe personalizar certos aspectos da sua instalação.',
|
||||
'laravel' => 'Versão do Laravel',
|
||||
'load_remote' => 'This Snipe-IT install can load scripts from the outside world.',
|
||||
'logo' => 'Logo',
|
||||
@@ -24,11 +24,11 @@ return array(
|
||||
'php_gd_info' => 'Você deve instalar o php-gd para exibir códigos QR, veja as <a href="http://www.php.net/manual/en/image.installation.php">instruções de instalação</a>.',
|
||||
'php_gd_warning' => 'O plugin PHP Image Processing and GD NÃO está instalado.',
|
||||
'qr_help' => 'Habilite os Códigos QR primeiro para definir isto',
|
||||
'qr_text' => 'Texto de Código QR',
|
||||
'qr_text' => 'Texto do Código QR',
|
||||
'setting' => 'Configuração',
|
||||
'settings' => 'Configurações',
|
||||
'site_name' => 'Nome do Site',
|
||||
'snipe_version' => 'Snipe-IT version',
|
||||
'snipe_version' => 'Versão do Snipe-IT',
|
||||
'system' => 'Informação do sistema',
|
||||
'update' => 'Atualizar Configurações',
|
||||
'value' => 'Valor',
|
||||
|
||||
@@ -4,7 +4,7 @@ return array(
|
||||
|
||||
|
||||
'update' => array(
|
||||
'error' => 'Um erro ocorreu ao atualizar. ',
|
||||
'error' => 'Ocorreu um erro ao atualizar. ',
|
||||
'success' => 'Configurações atualizadas com sucesso.'
|
||||
),
|
||||
|
||||
|
||||
@@ -3,23 +3,23 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'O local não existe.',
|
||||
'assoc_users' => 'Este local está no momento associado com pelo menos um usuário e não pode ser deletado. Por favor, atualize os seus usuários para não referenciarem mais este local e tente novamente. ',
|
||||
'assoc_users' => 'Este local está no momento associado com pelo menos um usuário e não pode ser excluído. Atualize seus usuários para não referenciarem mais este local e tente novamente. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => 'O local não foi criado, por favor, tente novamente.',
|
||||
'error' => 'O local não foi criado, tente novamente.',
|
||||
'success' => 'Local criado com sucesso.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'O local não foi atualizado, por favor, tente novamente',
|
||||
'error' => 'O local não foi atualizado, tente novamente',
|
||||
'success' => 'Local atualizado com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza de que quer deletar este rótulo de status?',
|
||||
'error' => 'Houve um problema ao deletar o local. Por favor, tente novamente.',
|
||||
'success' => 'O local foi deletado com sucesso.'
|
||||
'confirm' => 'Tem certeza de que quer excluir este rótulo de status?',
|
||||
'error' => 'Houve um problema ao excluir o local. Tente novamente.',
|
||||
'success' => 'O local foi excluído com sucesso.'
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
@@ -5,7 +5,7 @@ return array(
|
||||
'archived' => 'Arquivado',
|
||||
'create' => 'Criar Rótulo de Status',
|
||||
'deployable' => 'Implementável',
|
||||
'info' => 'Rótulos de status são usados para descrever os vários estados que seus bens podem estar. Eles podem ser fora do ar para reparo, perdido/roubado, etc. Você pode criar novos rótulos de status para bens implementáveis, pendentes e arquivados.',
|
||||
'info' => 'Rótulos de status são usados para descrever os vários estados que seus ativos podem estar. Eles podem ser fora do ar para reparo, perdido/roubado, etc. Você pode criar novos rótulos de status para ativos implementáveis, pendentes e arquivados.',
|
||||
'name' => 'Nome do Status',
|
||||
'pending' => 'Pendente',
|
||||
'status_type' => 'Tipo do Status',
|
||||
|
||||
@@ -3,22 +3,22 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'O fornecedor não existe.',
|
||||
'assoc_users' => 'Este fornecedor está no momento associado com pelo menos um modelo e não pode ser deletado. Por favor, atualize seus modelos para não referenciarem mais este fornecedor e tente novamente. ',
|
||||
'assoc_users' => 'Este fornecedor está no momento associado com pelo menos um modelo e não pode ser excluído. Atualize seus modelos para não referenciarem mais este fornecedor e tente novamente. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'O fornecedor não foi criado, por favor, tente novamente.',
|
||||
'error' => 'O fornecedor não foi criado, tente novamente.',
|
||||
'success' => 'Fornecedor criado com sucesso.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'O fornecedor não foi atualizado, por favor, tente novamente',
|
||||
'error' => 'O fornecedor não foi atualizado, tente novamente',
|
||||
'success' => 'Fornecedor atualizado com sucesso.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Tem certeza que deseja deletar este fornecedor?',
|
||||
'error' => 'Houve um problema ao deletar o fornecedor. Por favor, tente novamente.',
|
||||
'success' => 'O fornecedor foi deletado com sucesso.'
|
||||
'confirm' => 'Tem certeza de que deseja excluir este fornecedor?',
|
||||
'error' => 'Houve um problema ao excluir o fornecedor. Tente novamente.',
|
||||
'success' => 'O fornecedor foi excluído com sucesso.'
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
@@ -4,7 +4,7 @@ return array(
|
||||
|
||||
'user_exists' => 'O usuário já existe!',
|
||||
'user_not_found' => 'O usuário [:id] não existe.',
|
||||
'user_login_required' => 'O campo entrar é requerido',
|
||||
'user_login_required' => 'O campo de login é requerido',
|
||||
'user_password_required' => 'A senha é requerida.',
|
||||
'insufficient_permissions' => 'Permissões Insuficientes.',
|
||||
'user_deleted_warning' => 'Este usuário foi deletado. Você terá que restaurar este usuário para editá-los ou atribui-lós novos bens.',
|
||||
@@ -13,22 +13,22 @@ return array(
|
||||
'success' => array(
|
||||
'create' => 'O usuário foi criado com sucesso.',
|
||||
'update' => 'O usuário foi atualizado com sucesso.',
|
||||
'delete' => 'O usuário foi deletado com sucesso.',
|
||||
'delete' => 'O usuário foi excluído com sucesso.',
|
||||
'ban' => 'O usuário foi banido com sucesso.',
|
||||
'unban' => 'O usuário foi desbanido com sucesso.',
|
||||
'suspend' => 'O usuário foi suspenso com sucesso.',
|
||||
'unsuspend' => 'O usuário foi dessuspenso com sucesso.',
|
||||
'unsuspend' => 'O usuário foi removido da suspensão com sucesso.',
|
||||
'restored' => 'O usuário foi restaurado com sucesso.',
|
||||
'import' => 'Usuários importados com sucesso.',
|
||||
),
|
||||
|
||||
'error' => array(
|
||||
'create' => 'Houve um problema ao criar o usuário. Por favor, tente novamente.',
|
||||
'update' => 'Houve um problema ao atualizar o usuário. Por favor, tente novamente.',
|
||||
'delete' => 'Houve um problema ao deletar o usuário. Por favor, tente novamente.',
|
||||
'unsuspend' => 'Houve um problema ao dessuspender o usuário. Por favor, tente novamente.',
|
||||
'import' => 'Houve um problema ao importar os usuários. Tente novamente.',
|
||||
'asset_already_accepted' => 'This asset has already been accepted.',
|
||||
'create' => 'Houve um problema ao criar o usuário. Tente novamente.',
|
||||
'update' => 'Houve um problema ao atualizar o usuário. Tente novamente.',
|
||||
'delete' => 'Houve um problema ao excluir o usuário. Tente novamente.',
|
||||
'unsuspend' => 'Houve um problema ao remover a suspensão do usuário. Tente novamente.',
|
||||
'import' => 'Houve um problema ao importar usuários. Tente novamente.',
|
||||
'asset_already_accepted' => 'Este ativo já foi aceito.',
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
@@ -4,14 +4,14 @@ return array(
|
||||
|
||||
'activated' => 'Ativo',
|
||||
'allow' => 'Permitir',
|
||||
'checkedout' => 'Bens',
|
||||
'checkedout' => 'Ativos',
|
||||
'created_at' => 'Criado',
|
||||
'createuser' => 'Criar Usuário',
|
||||
'deny' => 'Negar',
|
||||
'email' => 'E-mail',
|
||||
'employee_num' => 'Nº do Empregado',
|
||||
'employee_num' => 'Nº do Funcionário',
|
||||
'first_name' => 'Primeiro Nome',
|
||||
'groupnotes' => 'Selecione um grupo para atribuir ao usuário, lembre-se que um usuário tem todas as permissões do grupo que ele esta atribuído.',
|
||||
'groupnotes' => 'Selecione um grupo para atribuir ao usuário, lembre-se que um usuário tem todas as permissões do grupo que ele está atribuído.',
|
||||
'id' => 'Id',
|
||||
'inherit' => 'Herdar',
|
||||
'job' => 'Cargo',
|
||||
@@ -21,12 +21,12 @@ return array(
|
||||
'lock_passwords' => 'Detalhes de login não podem ser alterados nesta instalação.',
|
||||
'manager' => 'Gerenciador',
|
||||
'name' => 'Nome',
|
||||
'notes' => 'Notes',
|
||||
'notes' => 'Notas',
|
||||
'password_confirm' => 'Confirmar Senha',
|
||||
'password' => 'Senha',
|
||||
'phone' => 'Telefone',
|
||||
'show_current' => 'Show Current Users',
|
||||
'show_deleted' => 'Show Deleted Users',
|
||||
'show_current' => 'Mostrar Usuários Atuais',
|
||||
'show_deleted' => 'Mostrar Usuários Excluídos',
|
||||
'title' => 'Título',
|
||||
'updateuser' => 'Atualizar Usuário',
|
||||
'username' => 'Usuário',
|
||||
|
||||
@@ -9,27 +9,27 @@ return array(
|
||||
'account_banned' => 'Esta conta de usuário está banida.',
|
||||
|
||||
'signin' => array(
|
||||
'error' => 'Houve um problema ao lhe tentar entrar, por favor, tente novamente.',
|
||||
'error' => 'Houve um problema ao tentar-lhe entrar, tente novamente.',
|
||||
'success' => 'Você entrou com sucesso.',
|
||||
),
|
||||
|
||||
'signup' => array(
|
||||
'error' => 'Houve um problema ao tentar criar sua conta, por favor, tente novamente.',
|
||||
'error' => 'Houve um problema ao tentar criar sua conta, tente novamente.',
|
||||
'success' => 'Conta criada com sucesso.',
|
||||
),
|
||||
|
||||
'forgot-password' => array(
|
||||
'error' => 'Houve um problema ao tentar obter um código de redefinição da senha, por favor, tente novamente.',
|
||||
'error' => 'Houve um problema ao tentar obter um código de redefinição da senha, tente novamente.',
|
||||
'success' => 'E-mail de recuperação de senha enviado com sucesso.',
|
||||
),
|
||||
|
||||
'forgot-password-confirm' => array(
|
||||
'error' => 'Houve um problema ao tentar redefinir sua senha, por favor, tente novamente.',
|
||||
'error' => 'Houve um problema ao tentar redefinir sua senha, tente novamente.',
|
||||
'success' => 'Sua senha foi redefinida com sucesso.',
|
||||
),
|
||||
|
||||
'activate' => array(
|
||||
'error' => 'Houve um problema ao tentar ativar sua conta, por favor, tente novamente.',
|
||||
'error' => 'Houve um problema ao tentar ativar sua conta, tente novamente.',
|
||||
'success' => 'Sua conta foi ativada com sucesso.',
|
||||
),
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ return array(
|
||||
'actions' => 'Ações',
|
||||
'add' => 'Adicionar Novo',
|
||||
'cancel' => 'Cancelar',
|
||||
'delete' => 'Deletar',
|
||||
'delete' => 'Excluir',
|
||||
'edit' => 'Editar',
|
||||
'restore' => 'Restaurar',
|
||||
'submit' => 'Enviar',
|
||||
|
||||
+40
-21
@@ -4,56 +4,59 @@ return array(
|
||||
|
||||
|
||||
'accessories' => 'Acessórios',
|
||||
'accessory' => 'Accessory',
|
||||
'accessory' => 'Acessório',
|
||||
'address' => 'Endereço',
|
||||
'admin' => 'Administrador',
|
||||
'all_assets' => 'Todos os Bens',
|
||||
'all_assets' => 'Todos os Ativos',
|
||||
'all' => 'Todos',
|
||||
'archived' => 'Arquivado',
|
||||
'asset_models' => 'Modelos de Bens',
|
||||
'asset' => 'Bem',
|
||||
'asset_report' => 'Relatório de Bens',
|
||||
'asset_tag' => 'Marcação do Bem',
|
||||
'assets_available' => 'bens disponíveis',
|
||||
'assets' => 'Bens',
|
||||
'avatar_delete' => 'Deletar Avatar',
|
||||
'asset_models' => 'Modelos de Ativos',
|
||||
'asset' => 'Ativo',
|
||||
'asset_report' => 'Relatório de Ativos',
|
||||
'asset_tag' => 'Marcação do Ativo',
|
||||
'assets_available' => 'ativos disponíveis',
|
||||
'assets' => 'Ativos',
|
||||
'avatar_delete' => 'Excluir Avatar',
|
||||
'avatar_upload' => 'Carregar Avatar',
|
||||
'back' => 'Voltar',
|
||||
'cancel' => 'Cancelar',
|
||||
'categories' => 'Categorias de Bens',
|
||||
'category' => 'Categoria do Bem',
|
||||
'categories' => 'Categorias de Ativos',
|
||||
'category' => 'Categoria do Ativo',
|
||||
'changeemail' => 'Alterar Endereço de E-mail',
|
||||
'changepassword' => 'Alterar Senha',
|
||||
'checkin' => 'Check-in',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Check-out',
|
||||
'city' => 'Cidade',
|
||||
'country' => 'País',
|
||||
'create' => 'Criar Novo',
|
||||
'created_asset' => 'criou bem',
|
||||
'created_asset' => 'created asset',
|
||||
'created_at' => 'Criado em',
|
||||
'currency' => '$',
|
||||
'current' => 'Atuais',
|
||||
'custom_report' => 'Relatório de Bens Personalizado',
|
||||
'custom_report' => 'Relatório de Ativos Personalizado',
|
||||
'dashboard' => 'Dashboard',
|
||||
'date' => 'Data',
|
||||
'delete' => 'Deletar',
|
||||
'deleted' => 'Deletado',
|
||||
'deleted' => 'Excluído',
|
||||
'deployed' => 'Implantado',
|
||||
'depreciation_report' => 'Relatório de Depreciações',
|
||||
'download' => 'Baixar',
|
||||
'download' => 'Download',
|
||||
'depreciation' => 'Depreciação',
|
||||
'editprofile' => 'Editar Seu Perfil',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'Primeira',
|
||||
'first_name' => 'Primeiro Nome',
|
||||
'file_name' => 'Arquivo',
|
||||
'file_uploads' => 'Carregamentos de Arquivos',
|
||||
'generate' => 'Gerar',
|
||||
'groups' => 'Grupos',
|
||||
'gravatar_email' => 'Endereço de E-mail do Gravatar',
|
||||
'history_for' => 'Histórico para',
|
||||
'history_for' => 'Histórico de',
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Deletar Imagem',
|
||||
'image_delete' => 'Excluir Imagem',
|
||||
'image_upload' => 'Carregar Imagem',
|
||||
'last' => 'Última',
|
||||
'last_name' => 'Último Nome',
|
||||
'license' => 'Licença',
|
||||
'license_report' => 'Relatório da Licença',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'meses',
|
||||
'moreinfo' => 'Mais Informações',
|
||||
'name' => 'Nome',
|
||||
'next' => 'Próxima',
|
||||
'no_depreciation' => 'Sem Depreciação',
|
||||
'no_results' => 'Sem Resultados.',
|
||||
'no' => 'Não',
|
||||
'notes' => 'Notas',
|
||||
'page_menu' => 'Mostrando _MENU_ itens',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pendente',
|
||||
'people' => 'Pessoas',
|
||||
'per_page' => 'Resultados Por Página',
|
||||
'previous' => 'Anterior',
|
||||
'processing' => 'Processando',
|
||||
'profile' => 'Seu perfil',
|
||||
'ready_to_deploy' => 'Pronto para Implantar',
|
||||
'recent_activity' => 'Atividade Recente',
|
||||
'reports' => 'Relatórios',
|
||||
'save' => 'Salvar',
|
||||
'select' => 'Selecionar',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Selecionar um Tipo de Depreciação',
|
||||
'select_location' => 'Selecionar um Local',
|
||||
'select_manufacturer' => 'Selecionar um Fabricante',
|
||||
'select_model' => 'Selecionar um Modelo',
|
||||
'select_supplier' => 'Selecionar um Fornecedor',
|
||||
'select_user' => 'Selecionar um Usuário',
|
||||
'select_date' => 'Selecionar Data',
|
||||
'settings' => 'Configurações',
|
||||
'sign_in' => 'Entrar',
|
||||
'site_name' => 'Nome do Site',
|
||||
@@ -87,16 +105,17 @@ return array(
|
||||
'status_labels' => 'Rótulos de Status',
|
||||
'status' => 'Status',
|
||||
'suppliers' => 'Fornecedores',
|
||||
'total_assets' => 'bens no total',
|
||||
'total_assets' => 'ativos no total',
|
||||
'total_licenses' => 'licenças no total',
|
||||
'type' => 'Tipo',
|
||||
'undeployable' => 'Não implantável',
|
||||
'unknown_admin' => 'Administrador Desconhecido',
|
||||
'uploaded' => 'Carregado',
|
||||
'user' => 'Usuário',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Ver Bens Atribuídos',
|
||||
'users' => 'Usuários',
|
||||
'viewassets' => 'Ver Ativos Atribuídos',
|
||||
'website' => 'Site',
|
||||
'welcome' => 'Bem-vindo, :name',
|
||||
'welcome' => 'Bem-vindo(a), :name',
|
||||
'years' => 'anos',
|
||||
'yes' => 'Sim',
|
||||
'zip' => 'Cep',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Checkout',
|
||||
'city' => 'City',
|
||||
'country' => 'Country',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'editprofile' => 'Edit Your Profile',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'First Name',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Delete Image',
|
||||
'image_upload' => 'Upload Image',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Last Name',
|
||||
'license' => 'License',
|
||||
'license_report' => 'License Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'months',
|
||||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pending',
|
||||
'people' => 'People',
|
||||
'per_page' => 'Results Per Page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Your profile',
|
||||
'ready_to_deploy' => 'Ready to Deploy',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Save',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Settings',
|
||||
'sign_in' => 'Sign in',
|
||||
'site_name' => 'Site Name',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'User',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Schimba adresa de E-mail',
|
||||
'changepassword' => 'Schimba parola',
|
||||
'checkin' => 'Primeste',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Preda',
|
||||
'city' => 'Oras',
|
||||
'country' => 'Tara',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciere',
|
||||
'editprofile' => 'Editeaza propriul profil',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Prenume',
|
||||
'file_name' => 'Fisier',
|
||||
'file_uploads' => 'Upload fisier',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Sterge poza',
|
||||
'image_upload' => 'Incarca poza',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Nume',
|
||||
'license' => 'Licenta',
|
||||
'license_report' => 'Raport licente',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'luni',
|
||||
'moreinfo' => 'Mai multe',
|
||||
'name' => 'Nume',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'Fara depreciere',
|
||||
'no_results' => 'Nici un rezultat.',
|
||||
'no' => 'Nr',
|
||||
'notes' => 'Note',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'In asteptare',
|
||||
'people' => 'Oameni',
|
||||
'per_page' => 'Rezultate pe pagina',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Profilul dvs.',
|
||||
'ready_to_deploy' => 'Gata de lansare',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Rapoarte',
|
||||
'save' => 'Salveaza',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Setari',
|
||||
'sign_in' => 'Logheaza-te',
|
||||
'site_name' => 'Nume site',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Nelansabil',
|
||||
'unknown_admin' => 'Admin necunoscut',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'Utilizator',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'Vezi active desemnate',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Изменить адрес почты',
|
||||
'changepassword' => 'Изменить пароль',
|
||||
'checkin' => 'Привязать',
|
||||
'checkin_from' => 'Возврат из',
|
||||
'checkout' => 'Отвязать',
|
||||
'city' => 'Город',
|
||||
'country' => 'Страна',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Амортизация',
|
||||
'editprofile' => 'Редактировать свой профиль',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'В начало',
|
||||
'first_name' => 'Имя',
|
||||
'file_name' => 'Файл',
|
||||
'file_uploads' => 'Загрузка файла',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Удалить изображение',
|
||||
'image_upload' => 'Загрузить изображение',
|
||||
'last' => 'В конец',
|
||||
'last_name' => 'Фамилия',
|
||||
'license' => 'Лицензия',
|
||||
'license_report' => 'Отчет по лицензиям',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'Месяцев',
|
||||
'moreinfo' => 'Подробнее',
|
||||
'name' => 'Имя',
|
||||
'next' => 'Далее',
|
||||
'no_depreciation' => 'Нет аммортизации',
|
||||
'no_results' => 'Нет результатов.',
|
||||
'no' => 'Нет',
|
||||
'notes' => 'Примечания',
|
||||
'page_menu' => 'Показаны элементы _MENU_',
|
||||
'pagination_info' => 'Показаны _START_ для _END_ _TOTAL_ элементы',
|
||||
'pending' => 'Ожидание',
|
||||
'people' => 'Пользователи',
|
||||
'per_page' => 'Результатов на страницу',
|
||||
'previous' => 'Пред',
|
||||
'processing' => 'Обработка',
|
||||
'profile' => 'Ваш профиль',
|
||||
'ready_to_deploy' => 'Готов к установке',
|
||||
'recent_activity' => 'Недавняя активность',
|
||||
'reports' => 'Отчеты',
|
||||
'save' => 'Сохранить',
|
||||
'select' => 'Выбор',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Выберите тип амортизации',
|
||||
'select_location' => 'Выберите местоположение',
|
||||
'select_manufacturer' => 'Выберите производителя',
|
||||
'select_model' => 'Выберите модель',
|
||||
'select_supplier' => 'Выберите поставщика',
|
||||
'select_user' => 'Выберите пользователя',
|
||||
'select_date' => 'Выберите дату',
|
||||
'settings' => 'Настройки',
|
||||
'sign_in' => 'Вход',
|
||||
'site_name' => 'Название сайта',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Тип',
|
||||
'undeployable' => 'Не развертываемый',
|
||||
'unknown_admin' => 'Неизвестный администратор',
|
||||
'uploaded' => 'Загружено',
|
||||
'user' => 'Пользователь',
|
||||
'users' => 'Пользователи',
|
||||
'viewassets' => 'Показать присвоенные активы',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Ändra E-postadress',
|
||||
'changepassword' => 'Ändra Lösenord',
|
||||
'checkin' => 'Checkin',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Checkout',
|
||||
'city' => 'Ort',
|
||||
'country' => 'Land',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'editprofile' => 'Ändra Din Profil',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'Förnamn',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Ta bort Bild',
|
||||
'image_upload' => 'Ladda upp Bild',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Efternamn',
|
||||
'license' => 'Licens',
|
||||
'license_report' => 'License Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'months',
|
||||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pending',
|
||||
'people' => 'People',
|
||||
'per_page' => 'Results Per Page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Your profile',
|
||||
'ready_to_deploy' => 'Ready to Deploy',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Save',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Settings',
|
||||
'sign_in' => 'Sign in',
|
||||
'site_name' => 'Site Name',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'User',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
|
||||
@@ -3,13 +3,13 @@
|
||||
|
||||
return array(
|
||||
|
||||
'assets_user' => 'Assets assigned to :name',
|
||||
'clone' => 'Clone User',
|
||||
'contact_user' => 'Contact :name',
|
||||
'edit' => 'Edit User',
|
||||
'history_user' => 'History for :name',
|
||||
'last_login' => 'Last Login',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
'view_user' => 'View User :name',
|
||||
'usercsv' => 'CSV file',
|
||||
'assets_user' => 'ทรัพย์สินที่กำหนดให้ :name',
|
||||
'clone' => 'โคลนผู้ใช้',
|
||||
'contact_user' => 'ติดต่อ :name',
|
||||
'edit' => 'แก้ไขผู้ใช้',
|
||||
'history_user' => 'ประวัติของ :name',
|
||||
'last_login' => 'เข้าสู่ระบบล่าสุด',
|
||||
'software_user' => 'ซอฟต์แวร์ที่กำหนดให้ :name',
|
||||
'view_user' => 'ดูผู้ใช้ :name',
|
||||
'usercsv' => 'ไฟล์ CSV',
|
||||
);
|
||||
|
||||
@@ -2,35 +2,35 @@
|
||||
|
||||
return array(
|
||||
|
||||
'account_already_exists' => 'An account with the this email already exists.',
|
||||
'account_not_found' => 'The email account or password is incorrect.',
|
||||
'account_not_activated' => 'This user account is not activated.',
|
||||
'account_suspended' => 'This user account is suspended.',
|
||||
'account_banned' => 'This user account is banned.',
|
||||
'account_already_exists' => 'อีเมลนี้มีการลงทะเบียนในระบบแล้ว',
|
||||
'account_not_found' => 'อีเมล์หรือรหัสผ่านไม่ถูกต้อง',
|
||||
'account_not_activated' => 'ชื่อผู้ใช้นี้ยังไม่ได้ทำการเปิดใช้งาน',
|
||||
'account_suspended' => 'บัญชีผู้ใช้นี้ถูกระงับการใช้งาน',
|
||||
'account_banned' => 'บัญชีผู้ใช้นี้ถูกห้ามใช้งาน',
|
||||
|
||||
'signin' => array(
|
||||
'error' => 'There was a problem while trying to log you in, please try again.',
|
||||
'success' => 'You have successfully logged in.',
|
||||
'error' => 'มีปัญหาขณะกำลังเข้าสู่ระบบ กรุณาลองอีกครั้ง',
|
||||
'success' => 'คุณได้เข้าสู่ระบบเรียบร้อย',
|
||||
),
|
||||
|
||||
'signup' => array(
|
||||
'error' => 'There was a problem while trying to create your account, please try again.',
|
||||
'success' => 'Account sucessfully created.',
|
||||
'error' => 'มีปัญหาในการเปิดใช้งานบัญชีผู้ใช้ของคุณ โปรดลองอีกครั้ง',
|
||||
'success' => 'สร้างบัญชีผู้ใช้เสร็จเรียบร้อย',
|
||||
),
|
||||
|
||||
'forgot-password' => array(
|
||||
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
||||
'success' => 'Password recovery email successfully sent.',
|
||||
'error' => 'มีปัญหาในการรับรหัสตั้งค่ารหัสผ่านใหม่ โปรดลองอีกครั้ง',
|
||||
'success' => 'ส่งอีเมลตั้งค่ารหัสผ่านใหม่เรียบร้อย',
|
||||
),
|
||||
|
||||
'forgot-password-confirm' => array(
|
||||
'error' => 'There was a problem while trying to reset your password, please try again.',
|
||||
'success' => 'Your password has been successfully reset.',
|
||||
'error' => 'มีปัญหาในการตั้งค่ารหัสผ่านใหม่ กรุณาลองอีกครั้ง',
|
||||
'success' => 'รหัสผ่านบัญชีผู้ใช้ของคุณได้รับการตั้งค่าใหม่เรียบร้อยแล้ว',
|
||||
),
|
||||
|
||||
'activate' => array(
|
||||
'error' => 'There was a problem while trying to activate your account, please try again.',
|
||||
'success' => 'Your account has been successfully activated.',
|
||||
'error' => 'มีปัญหาในการเปิดใช้งานบัญชีผู้ใช้ของคุณ โปรดลองอีกครั้ง',
|
||||
'success' => 'บัญชีผู้ใช้ของคุณได้ถูกเปิดใช้งานเรียบร้อยแล้ว',
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
+23
-4
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'เปลี่ยนอีเมลแอดเดรส',
|
||||
'changepassword' => 'เปลี่ยนรหัสผ่าน',
|
||||
'checkin' => 'เช็คอิน',
|
||||
'checkin_from' => 'เช็คอินจาก',
|
||||
'checkout' => 'เช็คเอาท์',
|
||||
'city' => 'เมือง',
|
||||
'country' => 'ประเทศ',
|
||||
@@ -44,16 +45,18 @@ return array(
|
||||
'depreciation' => 'การเสื่อมราคา',
|
||||
'editprofile' => 'แก้ไขโปรไฟล์ของคุณ',
|
||||
'eol' => 'อายุการใช้งาน',
|
||||
'first' => 'เริ่ม',
|
||||
'first_name' => 'ชื่อจริง',
|
||||
'file_name' => 'ไฟล์',
|
||||
'file_uploads' => 'อัปโหลดไฟล์',
|
||||
'generate' => 'Generate',
|
||||
'generate' => 'สร้าง',
|
||||
'groups' => 'กลุ่ม',
|
||||
'gravatar_email' => 'อีเมลแอดเดรส Gravatar',
|
||||
'history_for' => 'ประวัติของ',
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'ลบรูปภาพประจำตัว',
|
||||
'image_upload' => 'อัพโหลดภาพ',
|
||||
'last' => 'สุดท้าย',
|
||||
'last_name' => 'นามสกุล',
|
||||
'license' => 'ลิขสิทธิ์',
|
||||
'license_report' => 'รายงานลิขสิทธิ์',
|
||||
@@ -69,32 +72,48 @@ return array(
|
||||
'months' => 'เดือน',
|
||||
'moreinfo' => 'ข้อมูลเพิ่มเติม',
|
||||
'name' => 'ชื่อ',
|
||||
'next' => 'ถัดไป',
|
||||
'no_depreciation' => 'ไม่มีค่าเสื่อมราคา',
|
||||
'no_results' => 'ไม่มีผลการค้นหา',
|
||||
'no' => 'ไม่',
|
||||
'notes' => 'หมายเหตุ',
|
||||
'page_menu' => 'กำลังแสดง_MENU_รายการ',
|
||||
'pagination_info' => 'กำลังแสดง_START_ถึง_END_จากทั้งหมด_TOTAL_รายการ',
|
||||
'pending' => 'กําลังดำเนินการ',
|
||||
'people' => 'ผู้คน',
|
||||
'per_page' => 'ผลการค้นหาต่อหน้า',
|
||||
'previous' => 'ก่อนหน้า',
|
||||
'processing' => 'กำลังดำเนินการ',
|
||||
'profile' => 'โปรไฟล์ของคุณ',
|
||||
'ready_to_deploy' => 'พร้อมใช้งาน',
|
||||
'recent_activity' => 'กิจกรรมล่าสุด',
|
||||
'reports' => 'รายงาน',
|
||||
'save' => 'บันทึก',
|
||||
'select' => 'เลือก',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'เลือกประเภทค่าเสื่อมราคา',
|
||||
'select_location' => 'เลือกที่ตั้ง',
|
||||
'select_manufacturer' => 'เลือกผู้ผลิต',
|
||||
'select_model' => 'เลือกรุ่น',
|
||||
'select_supplier' => 'เลือกผู้จัดจำหน่าย',
|
||||
'select_user' => 'เลือกผู้ใช้',
|
||||
'select_date' => 'เลือกวันที่',
|
||||
'settings' => 'การตั้งค่า',
|
||||
'sign_in' => 'ลงชื่อเข้าใช้',
|
||||
'site_name' => 'ชื่อไซต์',
|
||||
'state' => 'รัฐ',
|
||||
'status_labels' => 'Status Labels',
|
||||
'status_labels' => 'ป้ายสถานะ',
|
||||
'status' => 'สถานะ',
|
||||
'suppliers' => 'ตัวแทนจำหน่าย',
|
||||
'total_assets' => 'ทรัพย์สินทั้งหมด',
|
||||
'total_licenses' => 'ลิขสิทธิ์ทั้งหมด',
|
||||
'type' => 'ประเภท',
|
||||
'undeployable' => 'ไม่สามารถใช้งานได้',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'unknown_admin' => 'ผู้ดูแลระบบที่ไม่รู้จัก',
|
||||
'uploaded' => 'อัพโหลด',
|
||||
'user' => 'ผู้ใช้',
|
||||
'users' => 'ผู้ใช้',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
'viewassets' => 'ดูทรัพย์สินที่มอบหมาย',
|
||||
'website' => 'เว็บไซต์',
|
||||
'welcome' => 'ยินดีต้อนรับ, :name',
|
||||
'years' => 'ปี',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => 'Checkout',
|
||||
'city' => 'City',
|
||||
'country' => 'Country',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'editprofile' => 'Edit Your Profile',
|
||||
'eol' => 'EOL',
|
||||
'first' => 'First',
|
||||
'first_name' => 'First Name',
|
||||
'file_name' => 'File',
|
||||
'file_uploads' => 'File Uploads',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Delete Image',
|
||||
'image_upload' => 'Upload Image',
|
||||
'last' => 'Last',
|
||||
'last_name' => 'Last Name',
|
||||
'license' => 'License',
|
||||
'license_report' => 'License Report',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => 'months',
|
||||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
'no' => 'No',
|
||||
'notes' => 'Notes',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => 'Pending',
|
||||
'people' => 'People',
|
||||
'per_page' => 'Results Per Page',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => 'Your profile',
|
||||
'ready_to_deploy' => 'Ready to Deploy',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => 'Reports',
|
||||
'save' => 'Save',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => 'Settings',
|
||||
'sign_in' => 'Sign in',
|
||||
'site_name' => 'Site Name',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => 'User',
|
||||
'users' => 'Users',
|
||||
'viewassets' => 'View Assigned Assets',
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'changeemail' => '更改邮箱',
|
||||
'changepassword' => '修改密码',
|
||||
'checkin' => '借入',
|
||||
'checkin_from' => 'Checkin from',
|
||||
'checkout' => '借出',
|
||||
'city' => '城市',
|
||||
'country' => '国家',
|
||||
@@ -44,6 +45,7 @@ return array(
|
||||
'depreciation' => '折旧',
|
||||
'editprofile' => '修改简介',
|
||||
'eol' => '寿命',
|
||||
'first' => 'First',
|
||||
'first_name' => '名字',
|
||||
'file_name' => '文件',
|
||||
'file_uploads' => '文件上传',
|
||||
@@ -54,6 +56,7 @@ return array(
|
||||
'id' => '编号',
|
||||
'image_delete' => '删除图片',
|
||||
'image_upload' => '上传图片',
|
||||
'last' => 'Last',
|
||||
'last_name' => '姓氏',
|
||||
'license' => '授权许可',
|
||||
'license_report' => '授权许可报告',
|
||||
@@ -69,17 +72,32 @@ return array(
|
||||
'months' => '月数',
|
||||
'moreinfo' => '更多信息',
|
||||
'name' => '名称',
|
||||
'next' => 'Next',
|
||||
'no_depreciation' => '永久',
|
||||
'no_results' => '没有结果',
|
||||
'no' => '否',
|
||||
'notes' => '备注',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => '待定',
|
||||
'people' => '组织成员',
|
||||
'per_page' => '每页搜索结果',
|
||||
'previous' => 'Previous',
|
||||
'processing' => 'Processing',
|
||||
'profile' => '您的个人资料',
|
||||
'ready_to_deploy' => '待分配',
|
||||
'recent_activity' => 'Recent Activity',
|
||||
'reports' => '报告',
|
||||
'save' => '保存',
|
||||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'settings' => '设置',
|
||||
'sign_in' => '登录',
|
||||
'site_name' => '站点名称',
|
||||
@@ -92,6 +110,7 @@ return array(
|
||||
'type' => '类型',
|
||||
'undeployable' => '无法被分配',
|
||||
'unknown_admin' => '未知管理员',
|
||||
'uploaded' => 'Uploaded',
|
||||
'user' => '用户',
|
||||
'users' => '用户',
|
||||
'viewassets' => '查看资产分配',
|
||||
|
||||
@@ -48,7 +48,7 @@ class Depreciable extends Elegant
|
||||
}
|
||||
|
||||
// fraction of value left
|
||||
$months_remaining = $this->time_until_depreciated()->m + $this->time_until_depreciated()->y; //UGlY
|
||||
$months_remaining = $this->time_until_depreciated()->m + 12*$this->time_until_depreciated()->y; //UGlY
|
||||
$current_value = round(($months_remaining/ $this->get_depreciation()->months) * $this->purchase_cost, 2);
|
||||
|
||||
if ($current_value < 0) {
|
||||
|
||||
@@ -281,6 +281,7 @@ Route::group(array('prefix' => 'admin', 'before' => 'admin-auth', 'namespace' =>
|
||||
Route::post('{groupId}/edit', 'GroupsController@postEdit');
|
||||
Route::get('{groupId}/delete', array('as' => 'delete/group', 'uses' => 'GroupsController@getDelete'));
|
||||
Route::get('{groupId}/restore', array('as' => 'restore/group', 'uses' => 'GroupsController@getRestore'));
|
||||
Route::get('{groupId}/view', array('as' => 'view/group', 'uses' => 'GroupsController@getView'));
|
||||
});
|
||||
|
||||
# Dashboard
|
||||
|
||||
@@ -26,6 +26,20 @@
|
||||
Lang::get('table.actions'))
|
||||
->setOptions(
|
||||
array(
|
||||
'language' => array(
|
||||
'search' => Lang::get('general.search'),
|
||||
'lengthMenu' => Lang::get('general.page_menu'),
|
||||
'loadingRecords' => Lang::get('general.loading'),
|
||||
'zeroRecords' => Lang::get('general.no_results'),
|
||||
'info' => Lang::get('general.pagination_info'),
|
||||
'processing' => Lang::get('general.processing'),
|
||||
'paginate'=> array(
|
||||
'first'=>Lang::get('general.first'),
|
||||
'previous'=>Lang::get('general.previous'),
|
||||
'next'=>Lang::get('general.next'),
|
||||
'last'=>Lang::get('general.last'),
|
||||
),
|
||||
),
|
||||
'sAjaxSource'=>route('api.accessories.list'),
|
||||
'dom' =>'T<"clear">lfrtip',
|
||||
'tableTools' => array(
|
||||
|
||||
@@ -28,6 +28,20 @@
|
||||
Lang::get('table.actions'))
|
||||
->setOptions(
|
||||
array(
|
||||
'language' => array(
|
||||
'search' => Lang::get('general.search'),
|
||||
'lengthMenu' => Lang::get('general.page_menu'),
|
||||
'loadingRecords' => Lang::get('general.loading'),
|
||||
'zeroRecords' => Lang::get('general.no_results'),
|
||||
'info' => Lang::get('general.pagination_info'),
|
||||
'processing' => Lang::get('general.processing'),
|
||||
'paginate'=> array(
|
||||
'first'=>Lang::get('general.first'),
|
||||
'previous'=>Lang::get('general.previous'),
|
||||
'next'=>Lang::get('general.next'),
|
||||
'last'=>Lang::get('general.last'),
|
||||
),
|
||||
),
|
||||
'sAjaxSource'=> route('api.categories.list'),
|
||||
'dom' =>'CT<"clear">lfrtip',
|
||||
'colVis'=> array('showAll'=>'Show All','restore'=>'Restore','exclude'=>array(5),'activate'=>'mouseover'),
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
<br>
|
||||
</div>
|
||||
<div class="col-md-9 chart">
|
||||
<h5>Recent Activity</h5>
|
||||
<h5>@lang('general.recent_activity')</h5>
|
||||
|
||||
<table class="table table-hover table-fixed break-word">
|
||||
<thead>
|
||||
@@ -59,7 +59,9 @@
|
||||
@endif
|
||||
|
||||
</td>
|
||||
<td>{{{ $activity->action_type }}}</td>
|
||||
<td>
|
||||
{{ strtolower(Lang::get('general.'.str_replace(' ','_',$activity->action_type))) }}
|
||||
</td>
|
||||
<td>
|
||||
@if ($activity->userlog)
|
||||
{{{ $activity->userlog->fullName() }}}
|
||||
@@ -77,7 +79,7 @@
|
||||
|
||||
</div>
|
||||
<div class="col-md-3 chart">
|
||||
<h5>Asset Status</h5>
|
||||
<h5>@lang('general.asset') @lang('general.status')</h5>
|
||||
<div id="hero-assets" style="height: 250px;"></div>
|
||||
</div>
|
||||
|
||||
@@ -95,11 +97,11 @@
|
||||
Morris.Donut({
|
||||
element: 'hero-assets',
|
||||
data: [
|
||||
{label: 'Ready to Deploy', value: {{ $asset_stats['rtd']['percent'] }} },
|
||||
{label: 'Deployed', value: {{ $asset_stats['deployed']['percent'] }} },
|
||||
{label: 'Pending', value: {{ $asset_stats['pending']['percent'] }} },
|
||||
{label: 'Undeployable', value: {{ $asset_stats['undeployable']['percent'] }} },
|
||||
{label: 'Archived', value: {{ $asset_stats['archived']['percent'] }} },
|
||||
{label: '@lang('general.ready_to_deploy')', value: {{ $asset_stats['rtd']['percent'] }} },
|
||||
{label: '@lang('general.deployed')', value: {{ $asset_stats['deployed']['percent'] }} },
|
||||
{label: '@lang('general.pending')', value: {{ $asset_stats['pending']['percent'] }} },
|
||||
{label: '@lang('general.undeployable')', value: {{ $asset_stats['undeployable']['percent'] }} },
|
||||
{label: '@lang('general.archived')', value: {{ $asset_stats['archived']['percent'] }} },
|
||||
],
|
||||
colors: ["#30a1ec", "#76bdee", "#c4dafe"],
|
||||
formatter: function (y) { return y + "%" }
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
@extends('backend/layouts/default')
|
||||
|
||||
{{-- Page title --}}
|
||||
@section('title')
|
||||
@lang('admin/groups/table.view') -
|
||||
{{{ $group->name }}} ::
|
||||
@parent
|
||||
@stop
|
||||
|
||||
{{-- Page content --}}
|
||||
@section('content')
|
||||
|
||||
<div class="row header">
|
||||
<div class="col-md-12">
|
||||
<a href="{{ route('update/group', $group->id) }}" class="btn-flat white pull-right">
|
||||
@lang('admin/groups/table.update')</a>
|
||||
<a href="{{ URL::to('admin/groups') }}" class="btn-flat gray pull-right" style="margin-right:5px;"><i class="fa fa-arrow-left icon-white"></i> @lang('general.back')</a>
|
||||
<h3 class="name"> @lang('admin/groups/titles.group_management') - {{{ $group->name }}}</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="user-profile">
|
||||
<div class="row profile">
|
||||
<div class="col-md-12 bio">
|
||||
@if (count($users) > 0)
|
||||
<table id="example">
|
||||
<thead>
|
||||
<tr role="row">
|
||||
<th class="col-md-3">@lang('admin/groups/table.name')</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@foreach ($users as $user)
|
||||
<tr>
|
||||
<td><a href="{{ route('view/user', $user->id) }}">{{{ $user->first_name }}} {{{ $user->last_name }}}</a></td>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@else
|
||||
<div class="col-md-12">
|
||||
<div class="alert alert-info alert-block">
|
||||
<i class="fa fa-info-circle"></i>
|
||||
@lang('general.no_results')
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
@stop
|
||||
@@ -103,7 +103,7 @@
|
||||
<div class="form-group {{ $errors->has('purchase_date') ? ' has-error' : '' }}">
|
||||
<label for="purchase_date" class="col-md-2 control-label">@lang('admin/hardware/form.date')</label>
|
||||
<div class="input-group col-md-3">
|
||||
<input type="date" class="datepicker form-control" data-date-format="yyyy-mm-dd" placeholder="Select Date" name="purchase_date" id="purchase_date" value="{{{ Input::old('purchase_date', $asset->purchase_date) }}}">
|
||||
<input type="date" class="datepicker form-control" data-date-format="yyyy-mm-dd" placeholder="@lang('general.select_date')" name="purchase_date" id="purchase_date" value="{{{ Input::old('purchase_date', $asset->purchase_date) }}}">
|
||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||
{{ $errors->first('purchase_date', '<br><span class="alert-msg"><i class="fa fa-times"></i> :message</span>') }}
|
||||
</div>
|
||||
|
||||
@@ -70,6 +70,20 @@
|
||||
Lang::get('table.actions'))
|
||||
->setOptions(
|
||||
array(
|
||||
'language' => array(
|
||||
'search' => Lang::get('general.search'),
|
||||
'lengthMenu' => Lang::get('general.page_menu'),
|
||||
'loadingRecords' => Lang::get('general.loading'),
|
||||
'zeroRecords' => Lang::get('general.no_results'),
|
||||
'info' => Lang::get('general.pagination_info'),
|
||||
'processing' => Lang::get('general.processing'),
|
||||
'paginate'=> array(
|
||||
'first'=>Lang::get('general.first'),
|
||||
'previous'=>Lang::get('general.previous'),
|
||||
'next'=>Lang::get('general.next'),
|
||||
'last'=>Lang::get('general.last'),
|
||||
),
|
||||
),
|
||||
'sAjaxSource'=> route('api.hardware.list', Input::get('status')),
|
||||
'dom' =>'CT<"clear">lfrtip',
|
||||
'colVis'=> array('showAll'=>'Show All','restore'=>'Restore','exclude'=>array(0,10,11),'activate'=>'mouseover'),
|
||||
|
||||
@@ -248,6 +248,9 @@
|
||||
<div id="sidebar-nav">
|
||||
<ul id="dashboard-menu">
|
||||
@if(Sentry::getUser()->hasAccess('admin'))
|
||||
<li{{ (Request::is('*/') ? ' class="active"><div class="pointer"><div class="arrow"></div><div class="arrow_border"></div></div>' : '>') }}
|
||||
<a href="/"><i class="fa fa-dashboard"></i><span>Dashboard</span></a>
|
||||
</li>
|
||||
<li{{ (Request::is('hardware*') ? ' class="active"><div class="pointer"><div class="arrow"></div><div class="arrow_border"></div></div>' : '>') }}
|
||||
<a href="{{ URL::to('hardware') }}" class="dropdown-toggle">
|
||||
<i class="fa fa-barcode"></i>
|
||||
@@ -399,7 +402,7 @@
|
||||
project by
|
||||
<a target="_blank" href="http://twitter.com/snipeyhead">@snipeyhead</a>.
|
||||
<a target="_blank" href="https://github.com/snipe/snipe-it">Fork it</a> |
|
||||
<a target="_blank" href="http://docs.snipeitapp.com/">Documentation</a> |
|
||||
<a target="_blank" href="http://snipeitapp.com/documentation/">Documentation</a> |
|
||||
<a href="https://crowdin.com/project/snipe-it">Help Translate It! </a> |
|
||||
<a target="_blank" href="https://github.com/snipe/snipe-it/issues?state=open">Report a Bug</a>
|
||||
({{{ Config::get('version.app_version') }}})
|
||||
|
||||
@@ -26,6 +26,20 @@
|
||||
Lang::get('table.actions'))
|
||||
->setOptions(
|
||||
array(
|
||||
'language' => array(
|
||||
'search' => Lang::get('general.search'),
|
||||
'lengthMenu' => Lang::get('general.page_menu'),
|
||||
'loadingRecords' => Lang::get('general.loading'),
|
||||
'zeroRecords' => Lang::get('general.no_results'),
|
||||
'info' => Lang::get('general.pagination_info'),
|
||||
'processing' => Lang::get('general.processing'),
|
||||
'paginate'=> array(
|
||||
'first'=>Lang::get('general.first'),
|
||||
'previous'=>Lang::get('general.previous'),
|
||||
'next'=>Lang::get('general.next'),
|
||||
'last'=>Lang::get('general.last'),
|
||||
),
|
||||
),
|
||||
'sAjaxSource'=>route('api.licenses.list'),
|
||||
'dom' =>'CT<"clear">lfrtip',
|
||||
'colVis'=> array('showAll'=>'Show All','restore'=>'Restore','exclude'=>array(5),'activate'=>'mouseover'),
|
||||
|
||||
@@ -33,7 +33,11 @@ Locations ::
|
||||
@foreach ($locations as $location)
|
||||
<tr>
|
||||
<td>{{{ $location->name }}}</td>
|
||||
<td>{{{ $location->address }}}, {{{ $location->address2 }}} </td>
|
||||
<td>{{{ $location->address }}}
|
||||
@if($location->address2 != '')
|
||||
, {{{ $location->address2 }}}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{{ $location->city }}}, {{{ strtoupper($location->state) }}} {{{ strtoupper($location->country) }}} </td>
|
||||
<td>
|
||||
<a href="{{ route('update/location', $location->id) }}" class="btn btn-warning btn-sm"><i class="fa fa-pencil icon-white"></i></a>
|
||||
|
||||
@@ -32,6 +32,20 @@
|
||||
Lang::get('table.actions'))
|
||||
->setOptions(
|
||||
array(
|
||||
'language' => array(
|
||||
'search' => Lang::get('general.search'),
|
||||
'lengthMenu' => Lang::get('general.page_menu'),
|
||||
'loadingRecords' => Lang::get('general.loading'),
|
||||
'zeroRecords' => Lang::get('general.no_results'),
|
||||
'info' => Lang::get('general.pagination_info'),
|
||||
'processing' => Lang::get('general.processing'),
|
||||
'paginate'=> array(
|
||||
'first'=>Lang::get('general.first'),
|
||||
'previous'=>Lang::get('general.previous'),
|
||||
'next'=>Lang::get('general.next'),
|
||||
'last'=>Lang::get('general.last'),
|
||||
),
|
||||
),
|
||||
'sAjaxSource'=> route('api.models.list', Input::get('status')),
|
||||
'dom' =>'CT<"clear">lfrtip',
|
||||
'colVis'=> array('showAll'=>'Show All','restore'=>'Restore','exclude'=>array(6),'activate'=>'mouseover'),
|
||||
|
||||
@@ -113,7 +113,7 @@
|
||||
@endif
|
||||
|
||||
@if ($model->image)
|
||||
<li><br /><img src="/uploads/models/{{{ $model->image }}}" /></li>
|
||||
<li><br /><img src="/uploads/models/{{{ $model->image }}}" class="img-responsive" /></li>
|
||||
@endif
|
||||
|
||||
@if ($model->deleted_at!='')
|
||||
|
||||
@@ -114,11 +114,13 @@ padding: 0px 20px;
|
||||
{{ Form::label('per_page', Lang::get('admin/settings/general.per_page')) }}
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
{{ Form::text('per_page', Input::old('per_page', $setting->per_page), array('class' => 'form-control', 'style'=>'width: 100px;')) }}
|
||||
{{ Form::select('per_page', array('10'=>'10','25'=>'25','50'=>'50','75'=>'75','100'=>'100','125'=>'125','150'=>'150'), Input::old('per_page', $setting->per_page), array('class' => 'form-control', 'style'=>'width: 100px;')) }}
|
||||
{{ $errors->first('per_page', '<br><span class="alert-msg">:message</span>') }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="checkbox col-md-offset-3">
|
||||
<label>
|
||||
{{ Form::checkbox('load_remote', '1', Input::old('load_remote', $setting->load_remote)) }}
|
||||
|
||||
+3
-3
@@ -12,17 +12,17 @@
|
||||
"mtdowling/classpreloader":"1.0.*"
|
||||
},
|
||||
"require": {
|
||||
"classpreloader/classpreloader": "1.2.0",
|
||||
"classpreloader/classpreloader": "1.*",
|
||||
"symfony/console": "~2",
|
||||
"symfony/yaml": "~2",
|
||||
"symfony/config": "~2",
|
||||
"symfony/stopwatch": "~2",
|
||||
"laravel/framework": "4.2.*",
|
||||
"laravel/framework": "4.2.17",
|
||||
"doctrine/dbal": "v2.4.2",
|
||||
"cartalyst/sentry": "2.1.5",
|
||||
"barryvdh/laravel-debugbar": "1.x",
|
||||
"chumper/datatable": "2.3.*",
|
||||
"dinesh/barcode": "dev-master",
|
||||
"dinesh/barcode": "4.0.*@dev",
|
||||
"intervention/image": "dev-master",
|
||||
"league/csv": "~7.0",
|
||||
"erusev/parsedown": "dev-master"
|
||||
|
||||
Generated
+263
-231
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -1,15 +1,18 @@
|
||||
body {margin:0; padding:0; line-height: 1.4em; word-spacing:1px; letter-spacing:0.2px; font: 13px Arial, Helvetica,"Lucida Grande", serif; color: #000; width:auto}
|
||||
@media print {
|
||||
body {margin:0; padding:0; line-height: 1.4em; word-spacing:1px; letter-spacing:0.2px; font: 13px Arial, Helvetica,"Lucida Grande", serif; color: #000; width:auto}
|
||||
|
||||
.content a:link:after, #content a:visited:after {
|
||||
content: "";
|
||||
}
|
||||
/*Remove Element*/
|
||||
#footer, .footer, .navbar, navbar-header, .nav, .navbar-nav, .navbar-right, #sidebar-nav, .btn, .btn-flat, .dataTables_length, .dataTables_filter, .paginate_button, .dataTables_info {display:none;}
|
||||
|
||||
.content {margin-left: 10px; border: 0px; width:auto}
|
||||
|
||||
.col-md-9, .col-md-3 { width: 100%; }
|
||||
|
||||
.table-responsive {overflow: hidden;}
|
||||
|
||||
.header{ margin-bottom: 10px; }
|
||||
|
||||
.content a:link:after, #content a:visited:after {
|
||||
content: "";
|
||||
}
|
||||
/*Remove Element*/
|
||||
#footer, .footer, .navbar, navbar-header, .nav, .navbar-nav, .navbar-right, #sidebar-nav, .btn, .btn-flat, .dataTables_length, .dataTables_filter, .paginate_button, .dataTables_info {display:none;}
|
||||
|
||||
|
||||
.content {margin-left: 10px; border: 0px; width:auto}
|
||||
|
||||
.col-md-9, .col-md-3 { width: 100%; }
|
||||
|
||||
.header{ margin-bottom: 10px; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user