Merge remote-tracking branch 'origin/develop'
# Conflicts: # config/version.php
This commit is contained in:
commit
eb423c252a
208 changed files with 264748 additions and 1268 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM alpine:3.8
|
FROM alpine:3.12
|
||||||
# Apache + PHP
|
# Apache + PHP
|
||||||
RUN apk add --update --no-cache \
|
RUN apk add --update --no-cache \
|
||||||
apache2 \
|
apache2 \
|
||||||
|
@ -23,6 +23,8 @@ RUN apk add --update --no-cache \
|
||||||
php7-fileinfo \
|
php7-fileinfo \
|
||||||
php7-simplexml \
|
php7-simplexml \
|
||||||
php7-session \
|
php7-session \
|
||||||
|
php7-dom \
|
||||||
|
php7-xmlwriter \
|
||||||
curl \
|
curl \
|
||||||
wget \
|
wget \
|
||||||
vim \
|
vim \
|
||||||
|
|
|
@ -105,7 +105,7 @@ class Handler extends ExceptionHandler
|
||||||
protected function unauthenticated($request, AuthenticationException $exception)
|
protected function unauthenticated($request, AuthenticationException $exception)
|
||||||
{
|
{
|
||||||
if ($request->expectsJson()) {
|
if ($request->expectsJson()) {
|
||||||
return response()->json(['error' => 'Unauthorized.'], 401);
|
return response()->json(['error' => 'Unauthorized or unauthenticated.'], 401);
|
||||||
}
|
}
|
||||||
|
|
||||||
return redirect()->guest('login');
|
return redirect()->guest('login');
|
||||||
|
|
|
@ -67,7 +67,6 @@ class LocationsController extends Controller
|
||||||
{
|
{
|
||||||
$this->authorize('create', Location::class);
|
$this->authorize('create', Location::class);
|
||||||
$location = new Location();
|
$location = new Location();
|
||||||
$location->id = null; // This is required to make Laravels different validation work, it errors if the parameter doesn't exist (maybe a bug)?
|
|
||||||
$location->name = $request->input('name');
|
$location->name = $request->input('name');
|
||||||
$location->parent_id = $request->input('parent_id', null);
|
$location->parent_id = $request->input('parent_id', null);
|
||||||
$location->currency = $request->input('currency', '$');
|
$location->currency = $request->input('currency', '$');
|
||||||
|
@ -132,7 +131,6 @@ class LocationsController extends Controller
|
||||||
return redirect()->route('locations.index')->with('error', trans('admin/locations/message.does_not_exist'));
|
return redirect()->route('locations.index')->with('error', trans('admin/locations/message.does_not_exist'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Update the location data
|
// Update the location data
|
||||||
$location->name = $request->input('name');
|
$location->name = $request->input('name');
|
||||||
$location->parent_id = $request->input('parent_id', null);
|
$location->parent_id = $request->input('parent_id', null);
|
||||||
|
|
|
@ -577,6 +577,7 @@ class SettingsController extends Controller
|
||||||
$setting->default_currency = $request->input('default_currency', '$');
|
$setting->default_currency = $request->input('default_currency', '$');
|
||||||
$setting->date_display_format = $request->input('date_display_format');
|
$setting->date_display_format = $request->input('date_display_format');
|
||||||
$setting->time_display_format = $request->input('time_display_format');
|
$setting->time_display_format = $request->input('time_display_format');
|
||||||
|
$setting->digit_separator = $request->input('digit_separator');
|
||||||
|
|
||||||
if ($setting->save()) {
|
if ($setting->save()) {
|
||||||
return redirect()->route('settings.index')
|
return redirect()->route('settings.index')
|
||||||
|
|
|
@ -27,7 +27,7 @@ class SetupUserRequest extends Request
|
||||||
'last_name' => 'required|string|min:1',
|
'last_name' => 'required|string|min:1',
|
||||||
'username' => 'required|string|min:2|unique:users,username,NULL,deleted_at',
|
'username' => 'required|string|min:2|unique:users,username,NULL,deleted_at',
|
||||||
'email' => 'email|unique:users,email',
|
'email' => 'email|unique:users,email',
|
||||||
'password' => 'required|min:6|confirmed',
|
'password' => 'required|min:8|confirmed',
|
||||||
'email_domain' => 'required|min:4',
|
'email_domain' => 'required|min:4',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ class Location extends SnipeModel
|
||||||
'address2' => 'max:80|nullable',
|
'address2' => 'max:80|nullable',
|
||||||
'zip' => 'min:3|max:10|nullable',
|
'zip' => 'min:3|max:10|nullable',
|
||||||
'manager_id' => 'exists:users,id|nullable',
|
'manager_id' => 'exists:users,id|nullable',
|
||||||
'parent_id' => 'nullable|exists:locations,id|different:id',
|
'parent_id' => 'non_circular:locations,id'
|
||||||
);
|
);
|
||||||
|
|
||||||
protected $casts = [
|
protected $casts = [
|
||||||
|
|
|
@ -146,6 +146,7 @@ class AssetPresenter extends Presenter
|
||||||
"searchable" => true,
|
"searchable" => true,
|
||||||
"sortable" => true,
|
"sortable" => true,
|
||||||
"title" => trans('general.purchase_cost'),
|
"title" => trans('general.purchase_cost'),
|
||||||
|
"formatter" => 'numberWithCommas',
|
||||||
"footerFormatter" => 'sumFormatter',
|
"footerFormatter" => 'sumFormatter',
|
||||||
], [
|
], [
|
||||||
"field" => "order_number",
|
"field" => "order_number",
|
||||||
|
@ -360,18 +361,13 @@ class AssetPresenter extends Presenter
|
||||||
/**
|
/**
|
||||||
* Get Displayable Name
|
* Get Displayable Name
|
||||||
* @return string
|
* @return string
|
||||||
|
*
|
||||||
|
* @todo this should be factored out - it should be subsumed by fullName (below)
|
||||||
|
*
|
||||||
**/
|
**/
|
||||||
public function name()
|
public function name()
|
||||||
{
|
{
|
||||||
|
return $this->fullName;
|
||||||
if (empty($this->model->name)) {
|
|
||||||
if (isset($this->model->model)) {
|
|
||||||
return $this->model->model->name.' ('.$this->model->asset_tag.')';
|
|
||||||
}
|
|
||||||
return $this->model->asset_tag;
|
|
||||||
}
|
|
||||||
return $this->model->name . ' (' . $this->model->asset_tag . ')';
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -381,13 +377,18 @@ class AssetPresenter extends Presenter
|
||||||
public function fullName()
|
public function fullName()
|
||||||
{
|
{
|
||||||
$str = '';
|
$str = '';
|
||||||
|
|
||||||
|
// Asset name
|
||||||
if ($this->model->name) {
|
if ($this->model->name) {
|
||||||
$str .= $this->name;
|
$str .= $this->model->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Asset tag
|
||||||
if ($this->asset_tag) {
|
if ($this->asset_tag) {
|
||||||
$str .= ' ('.$this->model->asset_tag.')';
|
$str .= ' ('.$this->model->asset_tag.')';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Asset Model name
|
||||||
if ($this->model->model) {
|
if ($this->model->model) {
|
||||||
$str .= ' - '.$this->model->model->name;
|
$str .= ' - '.$this->model->model->name;
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,6 +58,52 @@ class ValidationServiceProvider extends ServiceProvider
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// Prevent circular references
|
||||||
|
//
|
||||||
|
// Example usage in Location model where parent_id references another Location:
|
||||||
|
//
|
||||||
|
// protected $rules = array(
|
||||||
|
// 'parent_id' => 'non_circular:locations,id,10'
|
||||||
|
// );
|
||||||
|
//
|
||||||
|
Validator::extend('non_circular', function ($attribute, $value, $parameters, $validator) {
|
||||||
|
if (count($parameters) < 2) {
|
||||||
|
throw new \Exception('Required validator parameters: <table>,<primary key>[,depth]');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parameters from the rule implementation ($pk will likely be 'id')
|
||||||
|
$table = array_get($parameters, 0);
|
||||||
|
$pk = array_get($parameters, 1);
|
||||||
|
$depth = (int) array_get($parameters, 2, 50);
|
||||||
|
|
||||||
|
// Data from the edited model
|
||||||
|
$data = $validator->getData();
|
||||||
|
|
||||||
|
// The primary key value from the edited model
|
||||||
|
$data_pk = array_get($data, $pk);
|
||||||
|
$value_pk = $value;
|
||||||
|
|
||||||
|
// If we’re editing an existing model and there is a parent value set…
|
||||||
|
while ($data_pk && $value_pk) {
|
||||||
|
|
||||||
|
// It’s not valid for any parent id to be equal to the existing model’s id
|
||||||
|
if ($data_pk == $value_pk) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Avoid accidental infinite loops
|
||||||
|
if (--$depth < 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get the next parent id
|
||||||
|
$value_pk = DB::table($table)->select($attribute)->where($pk, '=', $value_pk)->value($attribute);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
// Yo dawg. I heard you like validators.
|
// Yo dawg. I heard you like validators.
|
||||||
// This validates the custom validator regex in custom fields.
|
// This validates the custom validator regex in custom fields.
|
||||||
// We're just checking that the regex won't throw an exception, not
|
// We're just checking that the regex won't throw an exception, not
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
"ext-mbstring": "*",
|
"ext-mbstring": "*",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"adldap2/adldap2": "^10.2",
|
"adldap2/adldap2": "^10.2",
|
||||||
|
"alek13/slack": "^1.12",
|
||||||
"bacon/bacon-qr-code": "^1.0",
|
"bacon/bacon-qr-code": "^1.0",
|
||||||
"barryvdh/laravel-cors": "^0.11.3",
|
"barryvdh/laravel-cors": "^0.11.3",
|
||||||
"barryvdh/laravel-debugbar": "^3.2",
|
"barryvdh/laravel-debugbar": "^3.2",
|
||||||
|
@ -42,7 +43,6 @@
|
||||||
"league/csv": "^9.5",
|
"league/csv": "^9.5",
|
||||||
"league/flysystem-aws-s3-v3": "^1.0",
|
"league/flysystem-aws-s3-v3": "^1.0",
|
||||||
"league/flysystem-cached-adapter": "^1.0",
|
"league/flysystem-cached-adapter": "^1.0",
|
||||||
"maknz/slack": "^1.7",
|
|
||||||
"neitanod/forceutf8": "^2.0",
|
"neitanod/forceutf8": "^2.0",
|
||||||
"nesbot/carbon": "^2.32",
|
"nesbot/carbon": "^2.32",
|
||||||
"onelogin/php-saml": "^3.4",
|
"onelogin/php-saml": "^3.4",
|
||||||
|
|
117
composer.lock
generated
117
composer.lock
generated
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "68cf0fb2c06b12c9f8b58efbca2cd72b",
|
"content-hash": "7783eb643ca64c048974950639324b0e",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "adldap2/adldap2",
|
"name": "adldap2/adldap2",
|
||||||
|
@ -65,6 +65,72 @@
|
||||||
],
|
],
|
||||||
"time": "2020-03-08T23:04:47+00:00"
|
"time": "2020-03-08T23:04:47+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "alek13/slack",
|
||||||
|
"version": "1.12.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/php-slack/slack.git",
|
||||||
|
"reference": "9db79a622803bf7baf0efafb50e37b900882f7fb"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/php-slack/slack/zipball/9db79a622803bf7baf0efafb50e37b900882f7fb",
|
||||||
|
"reference": "9db79a622803bf7baf0efafb50e37b900882f7fb",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"ext-json": "*",
|
||||||
|
"ext-mbstring": "*",
|
||||||
|
"guzzlehttp/guzzle": "~7.0|~6.0|~5.0|~4.0",
|
||||||
|
"php": "^5.6|^7.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"mockery/mockery": "0.9.*",
|
||||||
|
"phpunit/phpunit": "4.2.*"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "2.x-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Maknz\\Slack\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"BSD-2-Clause"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "maknz",
|
||||||
|
"email": "github@mak.geek.nz"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Alexander Chibrikin",
|
||||||
|
"email": "alek13.me@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A simple PHP package (fork of maknz/slack) for sending messages to Slack, with a focus on ease of use and elegant syntax.",
|
||||||
|
"keywords": [
|
||||||
|
"laravel",
|
||||||
|
"slack"
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/php-slack/slack/issues",
|
||||||
|
"source": "https://github.com/php-slack/slack/tree/1.12.0"
|
||||||
|
},
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"url": "https://donorbox.org/php-slack",
|
||||||
|
"type": "custom"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"time": "2020-09-01T18:22:43+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "asm89/stack-cors",
|
"name": "asm89/stack-cors",
|
||||||
"version": "1.3.0",
|
"version": "1.3.0",
|
||||||
|
@ -3058,55 +3124,6 @@
|
||||||
],
|
],
|
||||||
"time": "2019-07-13T18:58:26+00:00"
|
"time": "2019-07-13T18:58:26+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "maknz/slack",
|
|
||||||
"version": "1.7.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/maknz/slack.git",
|
|
||||||
"reference": "7f21fefc70c76b304adc1b3a780c8740dfcfb595"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/maknz/slack/zipball/7f21fefc70c76b304adc1b3a780c8740dfcfb595",
|
|
||||||
"reference": "7f21fefc70c76b304adc1b3a780c8740dfcfb595",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"ext-mbstring": "*",
|
|
||||||
"guzzlehttp/guzzle": "~6.0|~5.0|~4.0",
|
|
||||||
"php": ">=5.4.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"mockery/mockery": "0.9.*",
|
|
||||||
"phpunit/phpunit": "4.2.*"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"illuminate/support": "Required for Laravel support"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Maknz\\Slack\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"BSD-2-Clause"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "maknz",
|
|
||||||
"email": "github@mak.geek.nz"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "A simple PHP package for sending messages to Slack, with a focus on ease of use and elegant syntax. Includes Laravel support out of the box.",
|
|
||||||
"keywords": [
|
|
||||||
"laravel",
|
|
||||||
"slack"
|
|
||||||
],
|
|
||||||
"time": "2015-06-03T03:35:16+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "masterminds/html5",
|
"name": "masterminds/html5",
|
||||||
"version": "2.7.0",
|
"version": "2.7.0",
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
return array (
|
return array (
|
||||||
'app_version' => 'v5.0.11',
|
'app_version' => 'v5.0.12',
|
||||||
'full_app_version' => 'v5.0.11 - build 5695-gfd4ee6027',
|
'full_app_version' => 'v5.0.12 - build 5705-gf1d0d1bfe',
|
||||||
'build_version' => '5695',
|
'build_version' => '5705',
|
||||||
'prerelease_version' => '',
|
'prerelease_version' => '',
|
||||||
'hash_version' => 'gfd4ee6027',
|
'hash_version' => 'gf1d0d1bfe',
|
||||||
'full_hash' => 'v5.0.11-13-gfd4ee6027',
|
'full_hash' => 'v5.0.12-8-gf1d0d1bfe',
|
||||||
'branch' => 'master',
|
'branch' => 'master',
|
||||||
);
|
);
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
|
||||||
|
class AddDigitSeparatorToSettings extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('settings', function (Blueprint $table) {
|
||||||
|
$table->char('digit_separator')->nullable()->default('1234.56');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('settings', function (Blueprint $table) {
|
||||||
|
$table->dropColumn('digit_separator');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,38 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
class UpdateMinPassword extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* This migration solves the issue of settings with a minimum password requirement
|
||||||
|
* that is below the actual Snipe-IT minimum requirement in v5 (min 5 became min 8).
|
||||||
|
*
|
||||||
|
* Even though we documented the change in all of the v5 releases, we were still
|
||||||
|
* running into issues where admins did not update their password minimum length
|
||||||
|
* and could not save settings elsewhere, and would not see a warning.
|
||||||
|
*
|
||||||
|
* @todo Loosen up the model level validation for the Settings model and rely on
|
||||||
|
* FormRequests where it makes more sense. Having a form that returns no useful
|
||||||
|
* errors is a bad design pattern.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
App\Models\Setting::where('pwd_secure_min', '<', '8')
|
||||||
|
->update(['pwd_secure_min' => '8']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
|
@ -13,7 +13,7 @@ class SettingsSeeder extends Seeder
|
||||||
$settings->per_page = 20;
|
$settings->per_page = 20;
|
||||||
$settings->site_name = 'Snipe-IT Demo';
|
$settings->site_name = 'Snipe-IT Demo';
|
||||||
$settings->auto_increment_assets = 1;
|
$settings->auto_increment_assets = 1;
|
||||||
$settings->logo = 'logo.png';
|
$settings->logo = 'snipe-logo.png';
|
||||||
$settings->alert_email = 'service@snipe-it.io';
|
$settings->alert_email = 'service@snipe-it.io';
|
||||||
$settings->header_color = null;
|
$settings->header_color = null;
|
||||||
$settings->barcode_type = 'QRCODE';
|
$settings->barcode_type = 'QRCODE';
|
||||||
|
|
|
@ -49,5 +49,7 @@ php artisan migrate --force
|
||||||
php artisan config:clear
|
php artisan config:clear
|
||||||
php artisan config:cache
|
php artisan config:cache
|
||||||
|
|
||||||
|
chown -R apache:root /var/www/html/storage/logs/laravel.log
|
||||||
|
|
||||||
export APACHE_LOG_DIR=/var/log/apache2
|
export APACHE_LOG_DIR=/var/log/apache2
|
||||||
exec httpd -DNO_DETACH < /dev/null
|
exec httpd -DNO_DETACH < /dev/null
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
public/css/build/signature-pad.min.css
vendored
1
public/css/build/signature-pad.min.css
vendored
|
@ -1 +0,0 @@
|
||||||
|
|
19150
public/css/dist/all.css
vendored
19150
public/css/dist/all.css
vendored
File diff suppressed because one or more lines are too long
382
public/css/dist/bootstrap-table.css
vendored
382
public/css/dist/bootstrap-table.css
vendored
File diff suppressed because one or more lines are too long
434
public/css/dist/skins/skin-black-dark.css
vendored
434
public/css/dist/skins/skin-black-dark.css
vendored
File diff suppressed because one or more lines are too long
434
public/css/dist/skins/skin-black-dark.min.css
vendored
434
public/css/dist/skins/skin-black-dark.min.css
vendored
File diff suppressed because one or more lines are too long
177
public/css/dist/skins/skin-black.css
vendored
177
public/css/dist/skins/skin-black.css
vendored
|
@ -1 +1,176 @@
|
||||||
.skin-black .main-header .navbar{background-color:#111}.skin-black .main-header .navbar .nav>li>a{color:#fff}.skin-black .main-header .navbar .nav .open>a,.skin-black .main-header .navbar .nav .open>a:focus,.skin-black .main-header .navbar .nav .open>a:hover,.skin-black .main-header .navbar .nav>.active>a,.skin-black .main-header .navbar .nav>li>a:active,.skin-black .main-header .navbar .nav>li>a:focus,.skin-black .main-header .navbar .nav>li>a:hover,.skin-black .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-black .main-header .navbar .sidebar-toggle{color:#fff}.skin-black .main-header .navbar .sidebar-toggle:hover{background-color:#040404}@media (max-width:767px){.skin-black .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-black .main-header .navbar .dropdown-menu li a{color:#fff}.skin-black .main-header .navbar .dropdown-menu li a:hover{background:#040404}}.skin-black .main-header li.user-header{background-color:#111}.skin-black .content-header{background:transparent}.skin-black .left-side,.skin-black .main-sidebar,.skin-black .wrapper{background-color:#222d32}.skin-black .user-panel>.info,.skin-black .user-panel>.info>a{color:#fff}.skin-black .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-black .sidebar-menu>li>a{border-left:3px solid transparent}.skin-black .sidebar-menu>li.active>a,.skin-black .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#111}.skin-black .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-black .sidebar a{color:#b8c7ce}.skin-black .sidebar a:hover{text-decoration:none}.skin-black .treeview-menu>li>a{color:#8aa4af}.skin-black .treeview-menu>li.active>a,.skin-black .treeview-menu>li>a:hover{color:#fff}.skin-black .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-black .sidebar-form .btn,.skin-black .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-black .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-black .sidebar-form input[type=text]:focus,.skin-black .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-black .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-black .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-black.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn,.btn:hover{text-decoration:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link{background-color:#505156;border-color:#b5bbc8;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#111;border-color:#1f1f21;color:#fff}.btn.btn-white:hover,.btn.btn-white:link,.btn.btn-white:visited,.btn:hover.btn-white:hover,.btn:hover.btn-white:link,.btn:hover.btn-white:visited{color:#fff}a{color:#111;text-decoration:underline}a:hover{color:#000}a:visited{color:#111}.text-primary{color:#000}.skin-black .main-header .navbar .nav>li>a{text-decoration:none}
|
/*
|
||||||
|
* Skin: Black
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-black .main-header .navbar {
|
||||||
|
background-color: #111;
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-black .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-black .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-black .main-header .navbar .nav .open > a,
|
||||||
|
.skin-black .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-black .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-black .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #040404;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-black .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #040404;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-black .main-header li.user-header {
|
||||||
|
background-color: #111;
|
||||||
|
}
|
||||||
|
.skin-black .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-black .wrapper,
|
||||||
|
.skin-black .main-sidebar,
|
||||||
|
.skin-black .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-black .user-panel > .info,
|
||||||
|
.skin-black .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-menu > li:hover > a,
|
||||||
|
.skin-black .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #111;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-black .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-black .treeview-menu > li.active > a,
|
||||||
|
.skin-black .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-form input[type="text"],
|
||||||
|
.skin-black .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-black .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-black.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn,
|
||||||
|
.btn:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #505156;
|
||||||
|
border-color: #b5bbc8;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #111;
|
||||||
|
border-color: #1f1f21;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:visited,
|
||||||
|
.btn:hover.btn-white:visited {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #111;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.skin-black .main-header .navbar .nav > li > a,
|
||||||
|
.skin-black .main-header .navbar .nav > li > a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
428
public/css/dist/skins/skin-blue-dark.css
vendored
428
public/css/dist/skins/skin-blue-dark.css
vendored
File diff suppressed because one or more lines are too long
428
public/css/dist/skins/skin-blue-dark.min.css
vendored
428
public/css/dist/skins/skin-blue-dark.min.css
vendored
File diff suppressed because one or more lines are too long
192
public/css/dist/skins/skin-blue.css
vendored
192
public/css/dist/skins/skin-blue.css
vendored
|
@ -1 +1,191 @@
|
||||||
.skin-blue .main-header .navbar{background-color:#3c8dbc}.skin-blue .main-header .navbar .nav>li>a{color:#fff}.skin-blue .main-header .navbar .nav .open>a,.skin-blue .main-header .navbar .nav .open>a:focus,.skin-blue .main-header .navbar .nav .open>a:hover,.skin-blue .main-header .navbar .nav>.active>a,.skin-blue .main-header .navbar .nav>li>a:active,.skin-blue .main-header .navbar .nav>li>a:focus,.skin-blue .main-header .navbar .nav>li>a:hover,.skin-blue .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-blue .main-header .navbar .sidebar-toggle{color:#fff}.skin-blue .main-header .navbar .sidebar-toggle:hover{background-color:#367fa9}@media (max-width:767px){.skin-blue .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-blue .main-header .navbar .dropdown-menu li a{color:#fff}.skin-blue .main-header .navbar .dropdown-menu li a:hover{background:#367fa9}}.skin-blue .main-header li.user-header{background-color:#3c8dbc}.skin-blue .content-header{background:transparent}.skin-blue .left-side,.skin-blue .main-sidebar,.skin-blue .wrapper{background-color:#222d32}.skin-blue .user-panel>.info,.skin-blue .user-panel>.info>a{color:#fff}.skin-blue .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-blue .sidebar-menu>li>a{border-left:3px solid transparent}.skin-blue .sidebar-menu>li.active>a,.skin-blue .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#3c8dbc}.skin-blue .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-blue .sidebar a{color:#b8c7ce}.skin-blue .sidebar a:hover{text-decoration:none}.skin-blue .treeview-menu>li>a{color:#8aa4af}.skin-blue .treeview-menu>li.active>a,.skin-blue .treeview-menu>li>a:hover{color:#fff}.skin-blue .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-blue .sidebar-form .btn,.skin-blue .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-blue .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-blue .sidebar-form input[type=text]:focus,.skin-blue .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-blue .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-blue .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-blue.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link,btn-sm.btn-primary,btn-sm .btn-primary:link{background-color:#307095;border-color:#23536f;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover,btn-sma.btn-primary:hover{background-color:#23536f;border-color:#23536f;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link,btn-sm.btn-white:link{background-color:#307095;color:#fff}.btn.btn-white:hover,.btn.btn-white:visited,.btn:hover.btn-white:hover,.btn:hover.btn-white:visited,btn-sm.btn-white:hover,btn-sm.btn-white:visited{background-color:#173648;color:#fff}.btn-danger,.btn-danger:link,.btn-danger:visited,.btn-warning,.btn-warning:link,.btn-warning:visited,a.btn-danger:hover,a.btn-warning:hover{color:#fff}a{color:#3c8dbc}a:hover{color:#23536f}a:visited{color:#3c8dbc}.text-primary{color:#23536f}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Blue
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-blue .main-header .navbar {
|
||||||
|
background-color: #3c8dbc;
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-blue .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-blue .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-blue .main-header .navbar .nav .open > a,
|
||||||
|
.skin-blue .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-blue .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-blue .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #367fa9;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-blue .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-blue .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #367fa9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-blue .main-header li.user-header {
|
||||||
|
background-color: #3c8dbc;
|
||||||
|
}
|
||||||
|
.skin-blue .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-blue .wrapper,
|
||||||
|
.skin-blue .main-sidebar,
|
||||||
|
.skin-blue .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-blue .user-panel > .info,
|
||||||
|
.skin-blue .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-menu > li:hover > a,
|
||||||
|
.skin-blue .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #3c8dbc;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-blue .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-blue .treeview-menu > li.active > a,
|
||||||
|
.skin-blue .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-form input[type="text"],
|
||||||
|
.skin-blue .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-blue .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-blue.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
btn-sm.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
btn-sm .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #307095;
|
||||||
|
border-color: #23536f;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
btn-sma.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #23536f;
|
||||||
|
border-color: #23536f;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
btn-sm.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #307095;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
btn-sm.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #173648;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:visited,
|
||||||
|
btn-sm.btn-white:visited,
|
||||||
|
.btn:hover.btn-white:visited {
|
||||||
|
background-color: #173648;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn-warning,
|
||||||
|
.btn-warning:link,
|
||||||
|
a.btn-warning:hover,
|
||||||
|
.btn-warning:link,
|
||||||
|
.btn-warning:visited,
|
||||||
|
.btn-danger,
|
||||||
|
.btn-danger:link,
|
||||||
|
a.btn-danger:hover,
|
||||||
|
.btn-danger:link,
|
||||||
|
.btn-danger:visited {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #3c8dbc;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #23536f;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #3c8dbc;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #23536f;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
221
public/css/dist/skins/skin-contrast.css
vendored
221
public/css/dist/skins/skin-contrast.css
vendored
|
@ -1 +1,220 @@
|
||||||
.skin-contrast .main-header .navbar{background-color:#001f3f}.skin-contrast .main-header .navbar .nav>li>a{color:#fff}.skin-contrast .main-header .navbar .nav .open>a,.skin-contrast .main-header .navbar .nav .open>a:focus,.skin-contrast .main-header .navbar .nav .open>a:hover,.skin-contrast .main-header .navbar .nav>.active>a,.skin-contrast .main-header .navbar .nav>li>a:active,.skin-contrast .main-header .navbar .nav>li>a:focus,.skin-contrast .main-header .navbar .nav>li>a:hover,.skin-contrast .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-contrast .main-header .navbar .sidebar-toggle{color:#fff}.skin-contrast .main-header .navbar .sidebar-toggle:hover{background-color:#001226}@media (max-width:767px){.skin-contrast .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-contrast .main-header .navbar .dropdown-menu li a{color:#fff}.skin-contrast .main-header .navbar .dropdown-menu li a:hover{background:#001226}}.skin-contrast .main-header li.user-header{background-color:#001f3f}.skin-contrast .content-header{background:transparent}.skin-contrast .left-side,.skin-contrast .main-sidebar,.skin-contrast .wrapper{background-color:#222d32}.skin-contrast .user-panel>.info,.skin-contrast .user-panel>.info>a{color:#fff}.skin-contrast .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-contrast .sidebar-menu>li>a{border-left:3px solid transparent}.skin-contrast .sidebar-menu>li.active>a,.skin-contrast .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#001f3f}.skin-contrast .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-contrast .sidebar a{color:#b8c7ce}.skin-contrast .sidebar a:hover{text-decoration:none}.skin-contrast .treeview-menu>li>a{color:#8aa4af}.skin-contrast .treeview-menu>li.active>a,.skin-contrast .treeview-menu>li>a:hover{color:#fff}.skin-contrast .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-contrast .sidebar-form .btn,.skin-contrast .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-contrast .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-contrast .sidebar-form input[type=text]:focus,.skin-contrast .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-contrast .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-contrast .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-contrast.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link{background-color:#00060c;border-color:#000;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#000;border-color:#000;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link{background-color:#00060c;color:#fff}.btn.btn-white:hover,.btn:hover.btn-white:hover{background-color:#000;color:#fff}a,a:hover{color:#001f3f}a:hover{text-decoration:underline}a:visited{color:#001f3f}a.btn:hover{color:#fff;text-decoration:underline}a.btn:visited{color:#fff}.text-primary{color:#000}.skin-contrast .treeview-menu>li>a{color:#fff}.bg-teal{background-color:#1b6a6a!important}.bg-orange{background-color:#995400!important}.bg-purple{background-color:#3a3767!important}.bg-maroon{background-color:#7d1038!important}.pagination>li>a{color:#00060c!important}.pagination>.active>a{background-color:#001f3f;color:#fff!important}btn-success{background-color:#000d07}input::-webkit-input-placeholder{color:#b5bbc8!important}input::-moz-placeholder{color:#b5bbc8!important}input::-ms-input-placeholder{color:#b5bbc8!important}.select2-default,.select2-selection__placeholder{color:#37383c!important}.callout.callout-info{background-color:#003351!important}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Contrast
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-contrast .main-header .navbar {
|
||||||
|
background-color: #001F3F;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-contrast .main-header .navbar .nav .open > a,
|
||||||
|
.skin-contrast .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-contrast .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-contrast .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #001226;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-contrast .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #001226;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header li.user-header {
|
||||||
|
background-color: #001F3F;
|
||||||
|
}
|
||||||
|
.skin-contrast .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-contrast .wrapper,
|
||||||
|
.skin-contrast .main-sidebar,
|
||||||
|
.skin-contrast .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-contrast .user-panel > .info,
|
||||||
|
.skin-contrast .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li:hover > a,
|
||||||
|
.skin-contrast .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #001F3F;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-contrast .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-contrast .treeview-menu > li.active > a,
|
||||||
|
.skin-contrast .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"],
|
||||||
|
.skin-contrast .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-contrast .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-contrast.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #00060c;
|
||||||
|
border-color: #000000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #000000;
|
||||||
|
border-color: #000000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #00060c;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #000000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #001F3F;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #001F3F;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #001F3F;
|
||||||
|
}
|
||||||
|
a.btn:hover {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a.btn:visited {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.skin-contrast .treeview-menu > li > a {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
.bg-teal {
|
||||||
|
background-color: #1b6a6a !important;
|
||||||
|
}
|
||||||
|
.bg-orange {
|
||||||
|
background-color: #995400 !important;
|
||||||
|
}
|
||||||
|
.bg-purple {
|
||||||
|
background-color: #3a3767 !important;
|
||||||
|
}
|
||||||
|
.bg-maroon {
|
||||||
|
background-color: #7d1038 !important;
|
||||||
|
}
|
||||||
|
.pagination > li > a {
|
||||||
|
color: #00060c !important;
|
||||||
|
}
|
||||||
|
.pagination > .active > a {
|
||||||
|
background-color: #001F3F;
|
||||||
|
color: #FFF!important;
|
||||||
|
}
|
||||||
|
btn-success {
|
||||||
|
background-color: #000d07;
|
||||||
|
}
|
||||||
|
input::-webkit-input-placeholder {
|
||||||
|
/* Chrome/Opera/Safari */
|
||||||
|
color: #b5bbc8 !important;
|
||||||
|
}
|
||||||
|
input::-moz-placeholder {
|
||||||
|
/* Firefox 19+ */
|
||||||
|
color: #b5bbc8 !important;
|
||||||
|
}
|
||||||
|
input::-ms-input-placeholder {
|
||||||
|
/* IE 10+ */
|
||||||
|
color: #b5bbc8 !important;
|
||||||
|
}
|
||||||
|
.select2-default,
|
||||||
|
.select2-selection__placeholder {
|
||||||
|
color: #37383c !important;
|
||||||
|
}
|
||||||
|
.callout.callout-info {
|
||||||
|
background-color: #003351 !important;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
221
public/css/dist/skins/skin-contrast.min.css
vendored
221
public/css/dist/skins/skin-contrast.min.css
vendored
|
@ -1 +1,220 @@
|
||||||
.skin-contrast .main-header .navbar{background-color:#001f3f}.skin-contrast .main-header .navbar .nav>li>a{color:#fff}.skin-contrast .main-header .navbar .nav .open>a,.skin-contrast .main-header .navbar .nav .open>a:focus,.skin-contrast .main-header .navbar .nav .open>a:hover,.skin-contrast .main-header .navbar .nav>.active>a,.skin-contrast .main-header .navbar .nav>li>a:active,.skin-contrast .main-header .navbar .nav>li>a:focus,.skin-contrast .main-header .navbar .nav>li>a:hover,.skin-contrast .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-contrast .main-header .navbar .sidebar-toggle{color:#fff}.skin-contrast .main-header .navbar .sidebar-toggle:hover{background-color:#001226}@media (max-width:767px){.skin-contrast .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-contrast .main-header .navbar .dropdown-menu li a{color:#fff}.skin-contrast .main-header .navbar .dropdown-menu li a:hover{background:#001226}}.skin-contrast .main-header li.user-header{background-color:#001f3f}.skin-contrast .content-header{background:0 0}.skin-contrast .left-side,.skin-contrast .main-sidebar,.skin-contrast .wrapper{background-color:#222d32}.skin-contrast .user-panel>.info,.skin-contrast .user-panel>.info>a{color:#fff}.skin-contrast .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-contrast .sidebar-menu>li>a{border-left:3px solid transparent}.skin-contrast .sidebar-menu>li.active>a,.skin-contrast .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#001f3f}.skin-contrast .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-contrast .sidebar a{color:#b8c7ce}.skin-contrast .sidebar a:hover{text-decoration:none}.skin-contrast .treeview-menu>li>a{color:#8aa4af}.skin-contrast .treeview-menu>li.active>a,.skin-contrast .treeview-menu>li>a:hover{color:#fff}.skin-contrast .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-contrast .sidebar-form .btn,.skin-contrast .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-contrast .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-contrast .sidebar-form input[type=text]:focus,.skin-contrast .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-contrast .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-contrast .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-contrast.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn .btn-primary:link,.btn.btn-primary,.btn:hover .btn-primary:link,.btn:hover.btn-primary{background-color:#00060c;border-color:#000;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#000;border-color:#000;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link{background-color:#00060c;color:#fff}.btn.btn-white:hover,.btn:hover.btn-white:hover{background-color:#000;color:#fff}a,a:hover{color:#001f3f}a:hover{text-decoration:underline}a:visited{color:#001f3f}a.btn:hover{color:#fff;text-decoration:underline}a.btn:visited{color:#fff}.text-primary{color:#000}.skin-contrast .treeview-menu>li>a{color:#fff}.bg-teal{background-color:#1b6a6a!important}.bg-orange{background-color:#995400!important}.bg-purple{background-color:#3a3767!important}.bg-maroon{background-color:#7d1038!important}.pagination>li>a{color:#00060c!important}.pagination>.active>a{background-color:#001f3f;color:#fff!important}btn-success{background-color:#000d07}input::-webkit-input-placeholder{color:#b5bbc8!important}input::-moz-placeholder{color:#b5bbc8!important}input::-ms-input-placeholder{color:#b5bbc8!important}.select2-default,.select2-selection__placeholder{color:#37383c!important}.callout.callout-info{background-color:#003351!important}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Contrast
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-contrast .main-header .navbar {
|
||||||
|
background-color: #001F3F;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-contrast .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-contrast .main-header .navbar .nav .open > a,
|
||||||
|
.skin-contrast .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-contrast .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-contrast .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #001226;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-contrast .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #001226;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-contrast .main-header li.user-header {
|
||||||
|
background-color: #001F3F;
|
||||||
|
}
|
||||||
|
.skin-contrast .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-contrast .wrapper,
|
||||||
|
.skin-contrast .main-sidebar,
|
||||||
|
.skin-contrast .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-contrast .user-panel > .info,
|
||||||
|
.skin-contrast .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li:hover > a,
|
||||||
|
.skin-contrast .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #001F3F;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-contrast .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-contrast .treeview-menu > li.active > a,
|
||||||
|
.skin-contrast .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"],
|
||||||
|
.skin-contrast .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-contrast .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-contrast .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-contrast.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #00060c;
|
||||||
|
border-color: #000000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #000000;
|
||||||
|
border-color: #000000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #00060c;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #000000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #001F3F;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #001F3F;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #001F3F;
|
||||||
|
}
|
||||||
|
a.btn:hover {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a.btn:visited {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.skin-contrast .treeview-menu > li > a {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
.bg-teal {
|
||||||
|
background-color: #1b6a6a !important;
|
||||||
|
}
|
||||||
|
.bg-orange {
|
||||||
|
background-color: #995400 !important;
|
||||||
|
}
|
||||||
|
.bg-purple {
|
||||||
|
background-color: #3a3767 !important;
|
||||||
|
}
|
||||||
|
.bg-maroon {
|
||||||
|
background-color: #7d1038 !important;
|
||||||
|
}
|
||||||
|
.pagination > li > a {
|
||||||
|
color: #00060c !important;
|
||||||
|
}
|
||||||
|
.pagination > .active > a {
|
||||||
|
background-color: #001F3F;
|
||||||
|
color: #FFF!important;
|
||||||
|
}
|
||||||
|
btn-success {
|
||||||
|
background-color: #000d07;
|
||||||
|
}
|
||||||
|
input::-webkit-input-placeholder {
|
||||||
|
/* Chrome/Opera/Safari */
|
||||||
|
color: #b5bbc8 !important;
|
||||||
|
}
|
||||||
|
input::-moz-placeholder {
|
||||||
|
/* Firefox 19+ */
|
||||||
|
color: #b5bbc8 !important;
|
||||||
|
}
|
||||||
|
input::-ms-input-placeholder {
|
||||||
|
/* IE 10+ */
|
||||||
|
color: #b5bbc8 !important;
|
||||||
|
}
|
||||||
|
.select2-default,
|
||||||
|
.select2-selection__placeholder {
|
||||||
|
color: #37383c !important;
|
||||||
|
}
|
||||||
|
.callout.callout-info {
|
||||||
|
background-color: #003351 !important;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
449
public/css/dist/skins/skin-green-dark.css
vendored
449
public/css/dist/skins/skin-green-dark.css
vendored
File diff suppressed because one or more lines are too long
449
public/css/dist/skins/skin-green-dark.min.css
vendored
449
public/css/dist/skins/skin-green-dark.min.css
vendored
File diff suppressed because one or more lines are too long
169
public/css/dist/skins/skin-green.css
vendored
169
public/css/dist/skins/skin-green.css
vendored
|
@ -1 +1,168 @@
|
||||||
.skin-green .main-header .navbar{background-color:#00a65a}.skin-green .main-header .navbar .nav>li>a{color:#fff}.skin-green .main-header .navbar .nav .open>a,.skin-green .main-header .navbar .nav .open>a:focus,.skin-green .main-header .navbar .nav .open>a:hover,.skin-green .main-header .navbar .nav>.active>a,.skin-green .main-header .navbar .nav>li>a:active,.skin-green .main-header .navbar .nav>li>a:focus,.skin-green .main-header .navbar .nav>li>a:hover,.skin-green .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-green .main-header .navbar .sidebar-toggle{color:#fff}.skin-green .main-header .navbar .sidebar-toggle:hover{background-color:#008d4c}@media (max-width:767px){.skin-green .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-green .main-header .navbar .dropdown-menu li a{color:#fff}.skin-green .main-header .navbar .dropdown-menu li a:hover{background:#008d4c}}.skin-green .main-header li.user-header{background-color:#00a65a}.skin-green .content-header{background:transparent}.skin-green .left-side,.skin-green .main-sidebar,.skin-green .wrapper{background-color:#222d32}.skin-green .user-panel>.info,.skin-green .user-panel>.info>a{color:#fff}.skin-green .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-green .sidebar-menu>li>a{border-left:3px solid transparent}.skin-green .sidebar-menu>li.active>a,.skin-green .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#00a65a}.skin-green .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-green .sidebar a{color:#b8c7ce}.skin-green .sidebar a:hover{text-decoration:none}.skin-green .treeview-menu>li>a{color:#8aa4af}.skin-green .treeview-menu>li.active>a,.skin-green .treeview-menu>li>a:hover{color:#fff}.skin-green .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-green .sidebar-form .btn,.skin-green .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-green .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-green .sidebar-form input[type=text]:focus,.skin-green .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-green .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-green .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-green.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link{background-color:#00733e;border-color:#004023;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#004023;border-color:#004023;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link{background-color:#00733e;color:#fff}.btn.btn-white:hover,.btn:hover.btn-white:hover{background-color:#000d07;color:#fff}a{color:#00a65a}a:hover{color:#004023}a:visited{color:#00a65a}.text-primary{color:#004023}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Green
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-green .main-header .navbar {
|
||||||
|
background-color: #00a65a;
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-green .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-green .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-green .main-header .navbar .nav .open > a,
|
||||||
|
.skin-green .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-green .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-green .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #008d4c;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-green .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-green .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #008d4c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-green .main-header li.user-header {
|
||||||
|
background-color: #00a65a;
|
||||||
|
}
|
||||||
|
.skin-green .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-green .wrapper,
|
||||||
|
.skin-green .main-sidebar,
|
||||||
|
.skin-green .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-green .user-panel > .info,
|
||||||
|
.skin-green .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-menu > li:hover > a,
|
||||||
|
.skin-green .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #00a65a;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-green .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-green .treeview-menu > li.active > a,
|
||||||
|
.skin-green .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-form input[type="text"],
|
||||||
|
.skin-green .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-green .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-green.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #00733e;
|
||||||
|
border-color: #004023;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #004023;
|
||||||
|
border-color: #004023;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #00733e;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #000d07;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #00a65a;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #004023;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #00a65a;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #004023;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
434
public/css/dist/skins/skin-orange-dark.css
vendored
434
public/css/dist/skins/skin-orange-dark.css
vendored
File diff suppressed because one or more lines are too long
434
public/css/dist/skins/skin-orange-dark.min.css
vendored
434
public/css/dist/skins/skin-orange-dark.min.css
vendored
File diff suppressed because one or more lines are too long
169
public/css/dist/skins/skin-orange.css
vendored
169
public/css/dist/skins/skin-orange.css
vendored
|
@ -1 +1,168 @@
|
||||||
.skin-orange .main-header .navbar{background-color:#ff8c00}.skin-orange .main-header .navbar .nav>li>a{color:#fff}.skin-orange .main-header .navbar .nav .open>a,.skin-orange .main-header .navbar .nav .open>a:focus,.skin-orange .main-header .navbar .nav .open>a:hover,.skin-orange .main-header .navbar .nav>.active>a,.skin-orange .main-header .navbar .nav>li>a:active,.skin-orange .main-header .navbar .nav>li>a:focus,.skin-orange .main-header .navbar .nav>li>a:hover,.skin-orange .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-orange .main-header .navbar .sidebar-toggle{color:#fff}.skin-orange .main-header .navbar .sidebar-toggle:hover{background-color:#e67e00}@media (max-width:767px){.skin-orange .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-orange .main-header .navbar .dropdown-menu li a{color:#fff}.skin-orange .main-header .navbar .dropdown-menu li a:hover{background:#e67e00}}.skin-orange .main-header li.user-header{background-color:#ff8c00}.skin-orange .content-header{background:transparent}.skin-orange .left-side,.skin-orange .main-sidebar,.skin-orange .wrapper{background-color:#222d32}.skin-orange .user-panel>.info,.skin-orange .user-panel>.info>a{color:#fff}.skin-orange .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-orange .sidebar-menu>li>a{border-left:3px solid transparent}.skin-orange .sidebar-menu>li.active>a,.skin-orange .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#ff8c00}.skin-orange .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-orange .sidebar a{color:#b8c7ce}.skin-orange .sidebar a:hover{text-decoration:none}.skin-orange .treeview-menu>li>a{color:#8aa4af}.skin-orange .treeview-menu>li.active>a,.skin-orange .treeview-menu>li>a:hover{color:#fff}.skin-orange .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-orange .sidebar-form .btn,.skin-orange .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-orange .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-orange .sidebar-form input[type=text]:focus,.skin-orange .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-orange .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-orange .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-orange.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link{background-color:#cc7000;border-color:#995400;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#995400;border-color:#995400;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link{background-color:#cc7000;color:#fff}.btn.btn-white:hover,.btn:hover.btn-white:hover{background-color:#663800;color:#fff}a{color:#ff8c00}a:hover{color:#995400}a:visited{color:#ff8c00}.text-primary{color:#995400}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Orange
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-orange .main-header .navbar {
|
||||||
|
background-color: #FF8C00;
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-orange .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-orange .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-orange .main-header .navbar .nav .open > a,
|
||||||
|
.skin-orange .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-orange .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-orange .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #e67e00;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-orange .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-orange .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #e67e00;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-orange .main-header li.user-header {
|
||||||
|
background-color: #FF8C00;
|
||||||
|
}
|
||||||
|
.skin-orange .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-orange .wrapper,
|
||||||
|
.skin-orange .main-sidebar,
|
||||||
|
.skin-orange .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-orange .user-panel > .info,
|
||||||
|
.skin-orange .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-menu > li:hover > a,
|
||||||
|
.skin-orange .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #FF8C00;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-orange .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-orange .treeview-menu > li.active > a,
|
||||||
|
.skin-orange .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-form input[type="text"],
|
||||||
|
.skin-orange .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-orange .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-orange .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-orange.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #cc7000;
|
||||||
|
border-color: #995400;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #995400;
|
||||||
|
border-color: #995400;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #cc7000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #663800;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #FF8C00;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #995400;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #FF8C00;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #995400;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
434
public/css/dist/skins/skin-purple-dark.css
vendored
434
public/css/dist/skins/skin-purple-dark.css
vendored
File diff suppressed because one or more lines are too long
434
public/css/dist/skins/skin-purple-dark.min.css
vendored
434
public/css/dist/skins/skin-purple-dark.min.css
vendored
File diff suppressed because one or more lines are too long
169
public/css/dist/skins/skin-purple.css
vendored
169
public/css/dist/skins/skin-purple.css
vendored
|
@ -1 +1,168 @@
|
||||||
.skin-purple .main-header .navbar{background-color:#605ca8}.skin-purple .main-header .navbar .nav>li>a{color:#fff}.skin-purple .main-header .navbar .nav .open>a,.skin-purple .main-header .navbar .nav .open>a:focus,.skin-purple .main-header .navbar .nav .open>a:hover,.skin-purple .main-header .navbar .nav>.active>a,.skin-purple .main-header .navbar .nav>li>a:active,.skin-purple .main-header .navbar .nav>li>a:focus,.skin-purple .main-header .navbar .nav>li>a:hover,.skin-purple .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-purple .main-header .navbar .sidebar-toggle{color:#fff}.skin-purple .main-header .navbar .sidebar-toggle:hover{background-color:#555299}@media (max-width:767px){.skin-purple .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-purple .main-header .navbar .dropdown-menu li a{color:#fff}.skin-purple .main-header .navbar .dropdown-menu li a:hover{background:#555299}}.skin-purple .main-header li.user-header{background-color:#605ca8}.skin-purple .content-header{background:transparent}.skin-purple .left-side,.skin-purple .main-sidebar,.skin-purple .wrapper{background-color:#222d32}.skin-purple .user-panel>.info,.skin-purple .user-panel>.info>a{color:#fff}.skin-purple .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-purple .sidebar-menu>li>a{border-left:3px solid transparent}.skin-purple .sidebar-menu>li.active>a,.skin-purple .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#605ca8}.skin-purple .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-purple .sidebar a{color:#b8c7ce}.skin-purple .sidebar a:hover{text-decoration:none}.skin-purple .treeview-menu>li>a{color:#8aa4af}.skin-purple .treeview-menu>li.active>a,.skin-purple .treeview-menu>li>a:hover{color:#fff}.skin-purple .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-purple .sidebar-form .btn,.skin-purple .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-purple .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-purple .sidebar-form input[type=text]:focus,.skin-purple .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-purple .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-purple .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-purple.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link{background-color:#4c4988;border-color:#3a3767;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#3a3767;border-color:#3a3767;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link{background-color:#4c4988;color:#fff}.btn.btn-white:hover,.btn:hover.btn-white:hover{background-color:#272546;color:#fff}a{color:#605ca8}a:hover{color:#3a3767}a:visited{color:#605ca8}.text-primary{color:#3a3767}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Purple
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-purple .main-header .navbar {
|
||||||
|
background-color: #605ca8;
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-purple .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-purple .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-purple .main-header .navbar .nav .open > a,
|
||||||
|
.skin-purple .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-purple .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-purple .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #555299;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-purple .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-purple .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #555299;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-purple .main-header li.user-header {
|
||||||
|
background-color: #605ca8;
|
||||||
|
}
|
||||||
|
.skin-purple .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-purple .wrapper,
|
||||||
|
.skin-purple .main-sidebar,
|
||||||
|
.skin-purple .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-purple .user-panel > .info,
|
||||||
|
.skin-purple .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-menu > li:hover > a,
|
||||||
|
.skin-purple .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #605ca8;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-purple .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-purple .treeview-menu > li.active > a,
|
||||||
|
.skin-purple .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-form input[type="text"],
|
||||||
|
.skin-purple .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-purple .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-purple .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-purple.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #4c4988;
|
||||||
|
border-color: #3a3767;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #3a3767;
|
||||||
|
border-color: #3a3767;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #4c4988;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #272546;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #605ca8;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #3a3767;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #605ca8;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #3a3767;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
434
public/css/dist/skins/skin-red-dark.css
vendored
434
public/css/dist/skins/skin-red-dark.css
vendored
File diff suppressed because one or more lines are too long
434
public/css/dist/skins/skin-red-dark.min.css
vendored
434
public/css/dist/skins/skin-red-dark.min.css
vendored
File diff suppressed because one or more lines are too long
169
public/css/dist/skins/skin-red.css
vendored
169
public/css/dist/skins/skin-red.css
vendored
|
@ -1 +1,168 @@
|
||||||
.skin-red .main-header .navbar{background-color:#dd4b39}.skin-red .main-header .navbar .nav>li>a{color:#fff}.skin-red .main-header .navbar .nav .open>a,.skin-red .main-header .navbar .nav .open>a:focus,.skin-red .main-header .navbar .nav .open>a:hover,.skin-red .main-header .navbar .nav>.active>a,.skin-red .main-header .navbar .nav>li>a:active,.skin-red .main-header .navbar .nav>li>a:focus,.skin-red .main-header .navbar .nav>li>a:hover,.skin-red .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-red .main-header .navbar .sidebar-toggle{color:#fff}.skin-red .main-header .navbar .sidebar-toggle:hover{background-color:#d73925}@media (max-width:767px){.skin-red .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-red .main-header .navbar .dropdown-menu li a{color:#fff}.skin-red .main-header .navbar .dropdown-menu li a:hover{background:#d73925}}.skin-red .main-header li.user-header{background-color:#dd4b39}.skin-red .content-header{background:transparent}.skin-red .left-side,.skin-red .main-sidebar,.skin-red .wrapper{background-color:#222d32}.skin-red .user-panel>.info,.skin-red .user-panel>.info>a{color:#fff}.skin-red .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-red .sidebar-menu>li>a{border-left:3px solid transparent}.skin-red .sidebar-menu>li.active>a,.skin-red .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#dd4b39}.skin-red .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-red .sidebar a{color:#b8c7ce}.skin-red .sidebar a:hover{text-decoration:none}.skin-red .treeview-menu>li>a{color:#8aa4af}.skin-red .treeview-menu>li.active>a,.skin-red .treeview-menu>li>a:hover{color:#fff}.skin-red .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-red .sidebar-form .btn,.skin-red .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-red .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-red .sidebar-form input[type=text]:focus,.skin-red .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-red .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-red .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-red.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link{background-color:#c23321;border-color:#96271a;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#96271a;border-color:#96271a;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link{background-color:#c23321;color:#fff}.btn.btn-white:hover,.btn:hover.btn-white:hover{background-color:#6b1c12;color:#fff}a{color:#dd4b39}a:hover{color:#96271a}a:visited{color:#dd4b39}.text-primary{color:#96271a}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Red
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-red .main-header .navbar {
|
||||||
|
background-color: #dd4b39;
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-red .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-red .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-red .main-header .navbar .nav .open > a,
|
||||||
|
.skin-red .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-red .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-red .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #d73925;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-red .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-red .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #d73925;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-red .main-header li.user-header {
|
||||||
|
background-color: #dd4b39;
|
||||||
|
}
|
||||||
|
.skin-red .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-red .wrapper,
|
||||||
|
.skin-red .main-sidebar,
|
||||||
|
.skin-red .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-red .user-panel > .info,
|
||||||
|
.skin-red .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-menu > li:hover > a,
|
||||||
|
.skin-red .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #dd4b39;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-red .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-red .treeview-menu > li.active > a,
|
||||||
|
.skin-red .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-form input[type="text"],
|
||||||
|
.skin-red .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-red .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-red .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-red.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #c23321;
|
||||||
|
border-color: #96271a;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #96271a;
|
||||||
|
border-color: #96271a;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #c23321;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #6b1c12;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #dd4b39;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #96271a;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #dd4b39;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #96271a;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
434
public/css/dist/skins/skin-yellow-dark.css
vendored
434
public/css/dist/skins/skin-yellow-dark.css
vendored
File diff suppressed because one or more lines are too long
434
public/css/dist/skins/skin-yellow-dark.min.css
vendored
434
public/css/dist/skins/skin-yellow-dark.min.css
vendored
File diff suppressed because one or more lines are too long
169
public/css/dist/skins/skin-yellow.css
vendored
169
public/css/dist/skins/skin-yellow.css
vendored
|
@ -1 +1,168 @@
|
||||||
.skin-yellow .main-header .navbar{background-color:#f39c12}.skin-yellow .main-header .navbar .nav>li>a{color:#fff}.skin-yellow .main-header .navbar .nav .open>a,.skin-yellow .main-header .navbar .nav .open>a:focus,.skin-yellow .main-header .navbar .nav .open>a:hover,.skin-yellow .main-header .navbar .nav>.active>a,.skin-yellow .main-header .navbar .nav>li>a:active,.skin-yellow .main-header .navbar .nav>li>a:focus,.skin-yellow .main-header .navbar .nav>li>a:hover,.skin-yellow .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-yellow .main-header .navbar .sidebar-toggle{color:#fff}.skin-yellow .main-header .navbar .sidebar-toggle:hover{background-color:#e08e0b}@media (max-width:767px){.skin-yellow .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-yellow .main-header .navbar .dropdown-menu li a{color:#fff}.skin-yellow .main-header .navbar .dropdown-menu li a:hover{background:#e08e0b}}.skin-yellow .main-header li.user-header{background-color:#f39c12}.skin-yellow .content-header{background:transparent}.skin-yellow .left-side,.skin-yellow .main-sidebar,.skin-yellow .wrapper{background-color:#222d32}.skin-yellow .user-panel>.info,.skin-yellow .user-panel>.info>a{color:#fff}.skin-yellow .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-yellow .sidebar-menu>li>a{border-left:3px solid transparent}.skin-yellow .sidebar-menu>li.active>a,.skin-yellow .sidebar-menu>li:hover>a{color:#fff;background:#1e282c;border-left-color:#f39c12}.skin-yellow .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-yellow .sidebar a{color:#b8c7ce}.skin-yellow .sidebar a:hover{text-decoration:none}.skin-yellow .treeview-menu>li>a{color:#8aa4af}.skin-yellow .treeview-menu>li.active>a,.skin-yellow .treeview-menu>li>a:hover{color:#fff}.skin-yellow .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-yellow .sidebar-form .btn,.skin-yellow .sidebar-form input[type=text]{-webkit-box-shadow:none;box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.skin-yellow .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-yellow .sidebar-form input[type=text]:focus,.skin-yellow .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-yellow .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-yellow .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-yellow.layout-top-nav .main-header>.logo .logo-variant{background-color:none}.btn.btn-primary,.btn .btn-primary:link,.btn:hover.btn-primary,.btn:hover .btn-primary:link{background-color:#c87f0a;border-color:#976008;color:#fff}.btn:hovera.btn-primary:hover,.btna.btn-primary:hover{background-color:#976008;border-color:#976008;color:#fff}.btn.btn-white:link,.btn:hover.btn-white:link{background-color:#c87f0a;color:#fff}.btn.btn-white:hover,.btn:hover.btn-white:hover{background-color:#674105;color:#fff}a{color:#f39c12}a:hover{color:#976008}a:visited{color:#f39c12}.text-primary{color:#976008}.fixed-table-container tbody .selected td{background-color:#fff8af}
|
/*
|
||||||
|
* Skin: Yellow
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
.skin-yellow .main-header .navbar {
|
||||||
|
background-color: #f39c12;
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .nav > li > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .nav > li > a:hover,
|
||||||
|
.skin-yellow .main-header .navbar .nav > li > a:active,
|
||||||
|
.skin-yellow .main-header .navbar .nav > li > a:focus,
|
||||||
|
.skin-yellow .main-header .navbar .nav .open > a,
|
||||||
|
.skin-yellow .main-header .navbar .nav .open > a:hover,
|
||||||
|
.skin-yellow .main-header .navbar .nav .open > a:focus,
|
||||||
|
.skin-yellow .main-header .navbar .nav > .active > a {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
color: #f6f6f6;
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
color: #f6f6f6;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .sidebar-toggle {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .sidebar-toggle:hover {
|
||||||
|
background-color: #e08e0b;
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.skin-yellow .main-header .navbar .dropdown-menu li.divider {
|
||||||
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .dropdown-menu li a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header .navbar .dropdown-menu li a:hover {
|
||||||
|
background: #e08e0b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skin-yellow .main-header li.user-header {
|
||||||
|
background-color: #f39c12;
|
||||||
|
}
|
||||||
|
.skin-yellow .content-header {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.skin-yellow .wrapper,
|
||||||
|
.skin-yellow .main-sidebar,
|
||||||
|
.skin-yellow .left-side {
|
||||||
|
background-color: #222d32;
|
||||||
|
}
|
||||||
|
.skin-yellow .user-panel > .info,
|
||||||
|
.skin-yellow .user-panel > .info > a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-menu > li.header {
|
||||||
|
color: #4b646f;
|
||||||
|
background: #1a2226;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-menu > li > a {
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-menu > li:hover > a,
|
||||||
|
.skin-yellow .sidebar-menu > li.active > a {
|
||||||
|
color: #fff;
|
||||||
|
background: #1e282c;
|
||||||
|
border-left-color: #f39c12;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-menu > li > .treeview-menu {
|
||||||
|
margin: 0 1px;
|
||||||
|
background: #2c3b41;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar a {
|
||||||
|
color: #b8c7ce;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.skin-yellow .treeview-menu > li > a {
|
||||||
|
color: #8aa4af;
|
||||||
|
}
|
||||||
|
.skin-yellow .treeview-menu > li.active > a,
|
||||||
|
.skin-yellow .treeview-menu > li > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-form {
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #374850;
|
||||||
|
margin: 10px 10px;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-form input[type="text"],
|
||||||
|
.skin-yellow .sidebar-form .btn {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: #374850;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
height: 35px;
|
||||||
|
-webkit-transition: all 0.3s ease-in-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-form input[type="text"] {
|
||||||
|
color: #666;
|
||||||
|
border-top-left-radius: 2px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 2px;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-form input[type="text"]:focus,
|
||||||
|
.skin-yellow .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
.skin-yellow .sidebar-form .btn {
|
||||||
|
color: #999;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-top-right-radius: 2px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.skin-yellow.layout-top-nav .main-header > .logo .logo-variant {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
.btn.btn-primary,
|
||||||
|
.btn:hover.btn-primary,
|
||||||
|
.btn .btn-primary:link,
|
||||||
|
.btn:hover .btn-primary:link {
|
||||||
|
background-color: #c87f0a;
|
||||||
|
border-color: #976008;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btna.btn-primary:hover,
|
||||||
|
.btn:hovera.btn-primary:hover {
|
||||||
|
background-color: #976008;
|
||||||
|
border-color: #976008;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:link,
|
||||||
|
.btn:hover.btn-white:link {
|
||||||
|
background-color: #c87f0a;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-white:hover,
|
||||||
|
.btn:hover.btn-white:hover {
|
||||||
|
background-color: #674105;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #f39c12;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #976008;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #f39c12;
|
||||||
|
}
|
||||||
|
.text-primary {
|
||||||
|
color: #976008;
|
||||||
|
}
|
||||||
|
.fixed-table-container tbody .selected td {
|
||||||
|
background-color: #fff8af;
|
||||||
|
}
|
||||||
|
|
BIN
public/img/demo/snipe-logo-bug.png
Normal file
BIN
public/img/demo/snipe-logo-bug.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
Before Width: | Height: | Size: 17 KiB |
Binary file not shown.
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 17 KiB |
56228
public/js/build/app.js
56228
public/js/build/app.js
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
104515
public/js/dist/all.js
vendored
104515
public/js/dist/all.js
vendored
File diff suppressed because one or more lines are too long
20332
public/js/dist/bootstrap-table.js
vendored
20332
public/js/dist/bootstrap-table.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,38 +1,38 @@
|
||||||
{
|
{
|
||||||
"/js/build/app.js": "/js/build/app.js?id=648e026d19aa24504e0f",
|
"/js/build/app.js": "/js/build/app.js?id=0f2b56f59544e601131b",
|
||||||
"/css/build/AdminLTE.css": "/css/build/AdminLTE.css?id=59413334823616b81341",
|
"/css/build/AdminLTE.css": "/css/build/AdminLTE.css?id=5d8ce6b758f170008cd6",
|
||||||
"/css/build/app.css": "/css/build/app.css?id=032fd8c3fce99c7fd862",
|
"/css/build/app.css": "/css/build/app.css?id=9b6ddbece1a3cfc99036",
|
||||||
"/css/build/overrides.css": "/css/build/overrides.css?id=0b4aefd7ef0c117ef23a",
|
"/css/build/overrides.css": "/css/build/overrides.css?id=0a65220cdae6fbb6d913",
|
||||||
"/css/dist/skins/skin-blue.css": "/css/dist/skins/skin-blue.css?id=9fa704134cfacfacab93",
|
"/css/dist/skins/skin-blue.css": "/css/dist/skins/skin-blue.css?id=07ea041939045be9f35e",
|
||||||
"/css/dist/skins/skin-red.css": "/css/dist/skins/skin-red.css?id=747948e5f269f64047f7",
|
"/css/dist/skins/skin-red.css": "/css/dist/skins/skin-red.css?id=9f62f7b52ce7bc11ddfd",
|
||||||
"/css/dist/skins/skin-contrast.css": "/css/dist/skins/skin-contrast.css?id=d7996d850e8bcdc4e167",
|
"/css/dist/skins/skin-contrast.css": "/css/dist/skins/skin-contrast.css?id=cf23e72b9c963c5ab23a",
|
||||||
"/css/dist/skins/skin-green.css": "/css/dist/skins/skin-green.css?id=eb25d2ec49f730d09431",
|
"/css/dist/skins/skin-green.css": "/css/dist/skins/skin-green.css?id=77ce26763889742cbb58",
|
||||||
"/css/dist/skins/skin-green-dark.css": "/css/dist/skins/skin-green-dark.css?id=eb4404a7b646ea42e025",
|
"/css/dist/skins/skin-green-dark.css": "/css/dist/skins/skin-green-dark.css?id=b0e148606607e0b37024",
|
||||||
"/css/dist/skins/skin-black.css": "/css/dist/skins/skin-black.css?id=35602987835e5d50d162",
|
"/css/dist/skins/skin-black.css": "/css/dist/skins/skin-black.css?id=87b54289d2c1370974d1",
|
||||||
"/css/dist/skins/skin-black-dark.css": "/css/dist/skins/skin-black-dark.css?id=5789dd8af07b08034581",
|
"/css/dist/skins/skin-black-dark.css": "/css/dist/skins/skin-black-dark.css?id=1d7bbdce51b6f4499215",
|
||||||
"/css/dist/skins/skin-red-dark.css": "/css/dist/skins/skin-red-dark.css?id=2e9f90ff200d4e9f45a8",
|
"/css/dist/skins/skin-red-dark.css": "/css/dist/skins/skin-red-dark.css?id=c9e2feba8a06c5b23311",
|
||||||
"/css/dist/skins/skin-purple.css": "/css/dist/skins/skin-purple.css?id=b6dcb6d5c666fc5c8cc0",
|
"/css/dist/skins/skin-purple.css": "/css/dist/skins/skin-purple.css?id=3e904c2867143e27aebf",
|
||||||
"/css/dist/skins/skin-purple-dark.css": "/css/dist/skins/skin-purple-dark.css?id=8150adf2e5f70ec3eb00",
|
"/css/dist/skins/skin-purple-dark.css": "/css/dist/skins/skin-purple-dark.css?id=da3b392add13bd3a718a",
|
||||||
"/css/dist/skins/skin-yellow.css": "/css/dist/skins/skin-yellow.css?id=cb85a4e40e784319e878",
|
"/css/dist/skins/skin-yellow.css": "/css/dist/skins/skin-yellow.css?id=11813086909e31b3d753",
|
||||||
"/css/dist/skins/skin-yellow-dark.css": "/css/dist/skins/skin-yellow-dark.css?id=5fc4a3cf9407c6a9d398",
|
"/css/dist/skins/skin-yellow-dark.css": "/css/dist/skins/skin-yellow-dark.css?id=9ef2dc916a64083f9c1c",
|
||||||
"/css/dist/skins/skin-blue-dark.css": "/css/dist/skins/skin-blue-dark.css?id=2f665cf40d7348b3f94c",
|
"/css/dist/skins/skin-blue-dark.css": "/css/dist/skins/skin-blue-dark.css?id=775e088af6b1151ec134",
|
||||||
"/css/dist/skins/skin-orange-dark.css": "/css/dist/skins/skin-orange-dark.css?id=5267e92a8df9ba833e01",
|
"/css/dist/skins/skin-orange-dark.css": "/css/dist/skins/skin-orange-dark.css?id=3f1d75db372eb87d8d51",
|
||||||
"/css/dist/skins/skin-orange.css": "/css/dist/skins/skin-orange.css?id=b4fc4a74e1f6367dc3e2",
|
"/css/dist/skins/skin-orange.css": "/css/dist/skins/skin-orange.css?id=d1cda85cbff0723be5f7",
|
||||||
"/css/dist/all.css": "/css/dist/all.css?id=199fdf677ce0dce6cef8",
|
"/css/dist/all.css": "/css/dist/all.css?id=fc64989106daf3be016b",
|
||||||
"/css/blue.png": "/css/blue.png?id=4c85d6a97173123bd14a",
|
"/css/blue.png": "/css/blue.png?id=4c85d6a97173123bd14a",
|
||||||
"/css/blue@2x.png": "/css/blue@2x.png?id=62c67c6a822439e8a4ac",
|
"/css/blue@2x.png": "/css/blue@2x.png?id=62c67c6a822439e8a4ac",
|
||||||
"/css/dist/skins/skin-green-dark.min.css": "/css/dist/skins/skin-green-dark.min.css?id=eb4404a7b646ea42e025",
|
"/css/dist/skins/skin-green-dark.min.css": "/css/dist/skins/skin-green-dark.min.css?id=b0e148606607e0b37024",
|
||||||
"/css/dist/skins/skin-black-dark.min.css": "/css/dist/skins/skin-black-dark.min.css?id=5789dd8af07b08034581",
|
"/css/dist/skins/skin-black-dark.min.css": "/css/dist/skins/skin-black-dark.min.css?id=1d7bbdce51b6f4499215",
|
||||||
"/css/dist/skins/skin-blue-dark.min.css": "/css/dist/skins/skin-blue-dark.min.css?id=2f665cf40d7348b3f94c",
|
"/css/dist/skins/skin-blue-dark.min.css": "/css/dist/skins/skin-blue-dark.min.css?id=775e088af6b1151ec134",
|
||||||
"/css/dist/skins/skin-yellow-dark.min.css": "/css/dist/skins/skin-yellow-dark.min.css?id=5fc4a3cf9407c6a9d398",
|
"/css/dist/skins/skin-yellow-dark.min.css": "/css/dist/skins/skin-yellow-dark.min.css?id=9ef2dc916a64083f9c1c",
|
||||||
"/css/dist/skins/skin-red-dark.min.css": "/css/dist/skins/skin-red-dark.min.css?id=2e9f90ff200d4e9f45a8",
|
"/css/dist/skins/skin-red-dark.min.css": "/css/dist/skins/skin-red-dark.min.css?id=c9e2feba8a06c5b23311",
|
||||||
"/css/dist/skins/skin-purple-dark.min.css": "/css/dist/skins/skin-purple-dark.min.css?id=8150adf2e5f70ec3eb00",
|
"/css/dist/skins/skin-purple-dark.min.css": "/css/dist/skins/skin-purple-dark.min.css?id=da3b392add13bd3a718a",
|
||||||
"/css/dist/skins/skin-orange-dark.min.css": "/css/dist/skins/skin-orange-dark.min.css?id=5267e92a8df9ba833e01",
|
"/css/dist/skins/skin-orange-dark.min.css": "/css/dist/skins/skin-orange-dark.min.css?id=3f1d75db372eb87d8d51",
|
||||||
"/css/dist/skins/skin-contrast.min.css": "/css/dist/skins/skin-contrast.min.css?id=d7996d850e8bcdc4e167",
|
"/css/dist/skins/skin-contrast.min.css": "/css/dist/skins/skin-contrast.min.css?id=cf23e72b9c963c5ab23a",
|
||||||
"/css/dist/signature-pad.css": "/css/dist/signature-pad.css?id=6a89d3cd901305e66ced",
|
"/css/dist/signature-pad.css": "/css/dist/signature-pad.css?id=6a89d3cd901305e66ced",
|
||||||
"/css/build/signature-pad.min.css": "/css/build/signature-pad.min.css?id=d41d8cd98f00b204e980",
|
"/css/build/signature-pad.min.css": "/css/build/signature-pad.min.css?id=d41d8cd98f00b204e980",
|
||||||
"/css/dist/bootstrap-table.css": "/css/dist/bootstrap-table.css?id=1e77fde04b3f42432581",
|
"/css/dist/bootstrap-table.css": "/css/dist/bootstrap-table.css?id=1e77fde04b3f42432581",
|
||||||
"/js/build/vendor.js": "/js/build/vendor.js?id=b93877b4a88a76e1b18b",
|
"/js/build/vendor.js": "/js/build/vendor.js?id=b93877b4a88a76e1b18b",
|
||||||
"/js/dist/bootstrap-table.js": "/js/dist/bootstrap-table.js?id=58d95c93430f2ae33392",
|
"/js/dist/bootstrap-table.js": "/js/dist/bootstrap-table.js?id=58d95c93430f2ae33392",
|
||||||
"/js/dist/all.js": "/js/dist/all.js?id=b4627a6533d841cd8fdf"
|
"/js/dist/all.js": "/js/dist/all.js?id=7a853099c33e2d354767"
|
||||||
}
|
}
|
||||||
|
|
|
@ -275,6 +275,9 @@ input[type=text], input[type=search] {
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||||
|
background-color: var(--header);
|
||||||
|
}
|
||||||
.select2-selection--single {
|
.select2-selection--single {
|
||||||
background-color: var(--back-sub)!important;
|
background-color: var(--back-sub)!important;
|
||||||
color: var(--text-main)!important;
|
color: var(--text-main)!important;
|
||||||
|
|
|
@ -141,6 +141,7 @@ a, a:link, a:visited, .btn-primary.hover {
|
||||||
#assetsListingTable>tbody>tr>td>nobr>a>i.fa {
|
#assetsListingTable>tbody>tr>td>nobr>a>i.fa {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
|
||||||
#assetsListingTable>tbody>tr.selected>td {
|
#assetsListingTable>tbody>tr.selected>td {
|
||||||
background-color: var(--back-main);
|
background-color: var(--back-main);
|
||||||
}
|
}
|
||||||
|
@ -269,6 +270,9 @@ input[type=text], input[type=search] {
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||||
|
background-color: var(--header);
|
||||||
|
}
|
||||||
.select2-selection--single {
|
.select2-selection--single {
|
||||||
background-color: var(--back-sub)!important;
|
background-color: var(--back-sub)!important;
|
||||||
color: var(--text-main)!important;
|
color: var(--text-main)!important;
|
||||||
|
|
|
@ -289,6 +289,9 @@ li.select2-results__option{
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||||
|
background-color: var(--header);
|
||||||
|
}
|
||||||
.select2-selection--single {
|
.select2-selection--single {
|
||||||
background-color: var(--back-sub)!important;
|
background-color: var(--back-sub)!important;
|
||||||
color: var(--text-main)!important;
|
color: var(--text-main)!important;
|
||||||
|
|
|
@ -275,6 +275,9 @@ input[type=text], input[type=search] {
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||||
|
background-color: var(--header);
|
||||||
|
}
|
||||||
.select2-selection--single {
|
.select2-selection--single {
|
||||||
background-color: var(--back-sub)!important;
|
background-color: var(--back-sub)!important;
|
||||||
color: var(--text-main)!important;
|
color: var(--text-main)!important;
|
||||||
|
|
|
@ -275,6 +275,9 @@ input[type=text], input[type=search] {
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||||
|
background-color: var(--header);
|
||||||
|
}
|
||||||
.select2-selection--single {
|
.select2-selection--single {
|
||||||
background-color: var(--back-sub)!important;
|
background-color: var(--back-sub)!important;
|
||||||
color: var(--text-main)!important;
|
color: var(--text-main)!important;
|
||||||
|
|
|
@ -275,6 +275,9 @@ input[type=text], input[type=search] {
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||||
|
background-color: var(--header);
|
||||||
|
}
|
||||||
.select2-selection--single {
|
.select2-selection--single {
|
||||||
background-color: var(--back-sub)!important;
|
background-color: var(--back-sub)!important;
|
||||||
color: var(--text-main)!important;
|
color: var(--text-main)!important;
|
||||||
|
|
|
@ -275,6 +275,9 @@ input[type=text], input[type=search] {
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||||
color: var(--text-main);
|
color: var(--text-main);
|
||||||
}
|
}
|
||||||
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||||
|
background-color: var(--header);
|
||||||
|
}
|
||||||
.select2-selection--single {
|
.select2-selection--single {
|
||||||
background-color: var(--back-sub)!important;
|
background-color: var(--back-sub)!important;
|
||||||
color: var(--text-main)!important;
|
color: var(--text-main)!important;
|
||||||
|
|
|
@ -83,7 +83,7 @@ return array(
|
||||||
'ldap_auth_filter_query' => 'استعلام مصادقة لداب',
|
'ldap_auth_filter_query' => 'استعلام مصادقة لداب',
|
||||||
'ldap_version' => 'إصدار لداب',
|
'ldap_version' => 'إصدار لداب',
|
||||||
'ldap_active_flag' => 'لداب العلم النشط',
|
'ldap_active_flag' => 'لداب العلم النشط',
|
||||||
'ldap_activated_flag_help' => 'This flag is used to determine whether a user can login to Snipe-IT and does not affect the ability to check items in or out to them.',
|
'ldap_activated_flag_help' => 'يستخدم هذا العلم لتحديد ما إذا كان يمكن للمستخدم تسجيل الدخول إلى Snipe-IT ولا يؤثر على القدرة على التحقق من العناصر في أو خارجها.',
|
||||||
'ldap_emp_num' => 'رقم موظف لداب',
|
'ldap_emp_num' => 'رقم موظف لداب',
|
||||||
'ldap_email' => 'بريد لداب',
|
'ldap_email' => 'بريد لداب',
|
||||||
'license' => 'ترخيص البرنامج',
|
'license' => 'ترخيص البرنامج',
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
'depreciation_report' => 'تقرير الإستهلاك',
|
'depreciation_report' => 'تقرير الإستهلاك',
|
||||||
'details' => 'التفاصيل',
|
'details' => 'التفاصيل',
|
||||||
'download' => 'تحميل',
|
'download' => 'تحميل',
|
||||||
'download_all' => 'Download All',
|
'download_all' => 'تنزيل الكل',
|
||||||
'depreciation' => 'الإستهلاك',
|
'depreciation' => 'الإستهلاك',
|
||||||
'editprofile' => 'تعديل الملف الشخصي',
|
'editprofile' => 'تعديل الملف الشخصي',
|
||||||
'eol' => 'نهاية العمر',
|
'eol' => 'نهاية العمر',
|
||||||
|
@ -114,8 +114,8 @@
|
||||||
'image_upload' => 'رفع صورة',
|
'image_upload' => 'رفع صورة',
|
||||||
'image_filetypes_help' => 'أنواع الملفات المقبولة هي jpg و png و gif و svg. الحد الأقصى لحجم التحميل المسموح به هو: الحجم.',
|
'image_filetypes_help' => 'أنواع الملفات المقبولة هي jpg و png و gif و svg. الحد الأقصى لحجم التحميل المسموح به هو: الحجم.',
|
||||||
'import' => 'استيراد',
|
'import' => 'استيراد',
|
||||||
'importing' => 'Importing',
|
'importing' => 'الاستيراد',
|
||||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
'importing_help' => 'يمكنك استيراد الأصول، الملحقات، التراخيص، المكونات، المواد الاستهلاكية، والمستخدمين عبر ملف CSV. <br><br>يجب أن تكون CSV محددة بفواصل وأن يتم تنسيقها مع رؤوس تطابق تلك الموجودة في <a href="https://snipe-it.readme.io/docs/importing" target="_new">عينة CSVs في الوثائق</a>.',
|
||||||
'import-history' => 'استيراد الأرشيف',
|
'import-history' => 'استيراد الأرشيف',
|
||||||
'asset_maintenance' => 'صيانة الأصول',
|
'asset_maintenance' => 'صيانة الأصول',
|
||||||
'asset_maintenance_report' => 'تقرير صيانة الأصول',
|
'asset_maintenance_report' => 'تقرير صيانة الأصول',
|
||||||
|
@ -239,9 +239,9 @@
|
||||||
'login_enabled' => 'تسجيل الدخول مفعل',
|
'login_enabled' => 'تسجيل الدخول مفعل',
|
||||||
'audit_due' => 'الواجب مراجعته',
|
'audit_due' => 'الواجب مراجعته',
|
||||||
'audit_overdue' => 'مراجعة الحسابات المتأخرة',
|
'audit_overdue' => 'مراجعة الحسابات المتأخرة',
|
||||||
'accept' => 'Accept :asset',
|
'accept' => 'قبول :asset',
|
||||||
'i_accept' => 'I accept',
|
'i_accept' => 'قبول',
|
||||||
'i_decline' => 'I decline',
|
'i_decline' => 'أنا أرفض',
|
||||||
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
|
'sign_tos' => 'قم بتسجيل الدخول أدناه للإشارة إلى أنك توافق على شروط الخدمة:',
|
||||||
'clear_signature' => 'Clear Signature'
|
'clear_signature' => 'مسح التوقيع'
|
||||||
];
|
];
|
||||||
|
|
|
@ -73,7 +73,7 @@ return array(
|
||||||
'Asset_Checkin_Notification' => 'Asset checked in',
|
'Asset_Checkin_Notification' => 'Asset checked in',
|
||||||
'License_Checkin_Notification' => 'License checked in',
|
'License_Checkin_Notification' => 'License checked in',
|
||||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
'Expected_Checkin_Notification' => 'تذكير: تاريخ تحقق :name يقترب من الموعد النهائي',
|
||||||
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
|
'Expected_Checkin_Date' => 'من المقرر أن يتم التحقق من الأصول التي تم إخراجها إليك في :date',
|
||||||
'your_assets' => 'View Your Assets'
|
'your_assets' => 'عرض الأصول الخاصة بك'
|
||||||
);
|
);
|
||||||
|
|
|
@ -15,7 +15,7 @@ return array(
|
||||||
'address' => 'Adresse',
|
'address' => 'Adresse',
|
||||||
'zip' => 'Postleitzahl',
|
'zip' => 'Postleitzahl',
|
||||||
'locations' => 'Standorte',
|
'locations' => 'Standorte',
|
||||||
'parent' => 'Hauptkategorie',
|
'parent' => 'Übergeordneter Standort',
|
||||||
'currency' => 'Landeswährung',
|
'currency' => 'Landeswährung',
|
||||||
'ldap_ou' => 'LDAP OU Suche',
|
'ldap_ou' => 'LDAP OU Suche',
|
||||||
);
|
);
|
||||||
|
|
|
@ -83,7 +83,7 @@ return array(
|
||||||
'ldap_auth_filter_query' => 'LDAP Authentifikationsabfrage',
|
'ldap_auth_filter_query' => 'LDAP Authentifikationsabfrage',
|
||||||
'ldap_version' => 'LDAP Version',
|
'ldap_version' => 'LDAP Version',
|
||||||
'ldap_active_flag' => 'LDAP Aktiv-Markierung',
|
'ldap_active_flag' => 'LDAP Aktiv-Markierung',
|
||||||
'ldap_activated_flag_help' => 'This flag is used to determine whether a user can login to Snipe-IT and does not affect the ability to check items in or out to them.',
|
'ldap_activated_flag_help' => 'Diese Einstellung steuert, ob sich ein Benutzer bei Snipe-IT anmelden kann und hat keinen Einfluss auf die Möglichkeit, Elemente auszugeben oder zurück zu nehmen.',
|
||||||
'ldap_emp_num' => 'LDAP Mitarbeiternummer',
|
'ldap_emp_num' => 'LDAP Mitarbeiternummer',
|
||||||
'ldap_email' => 'LDAP E-Mail',
|
'ldap_email' => 'LDAP E-Mail',
|
||||||
'license' => 'Softwarelizenz',
|
'license' => 'Softwarelizenz',
|
||||||
|
|
|
@ -10,10 +10,10 @@ return array(
|
||||||
'deployable' => 'Einsetzbar',
|
'deployable' => 'Einsetzbar',
|
||||||
'info' => 'Status Label werden eingesetzt um diverse Stati Ihrer Assets zu beschreiben. Diese können zB. in Reparatur sein, Gestohlen oder Verlohren worden sein. Sie können neue Status Labels für Einsetzbare, Unerledigte und Archivierte Assets erstellen.',
|
'info' => 'Status Label werden eingesetzt um diverse Stati Ihrer Assets zu beschreiben. Diese können zB. in Reparatur sein, Gestohlen oder Verlohren worden sein. Sie können neue Status Labels für Einsetzbare, Unerledigte und Archivierte Assets erstellen.',
|
||||||
'name' => 'Statusname',
|
'name' => 'Statusname',
|
||||||
'pending' => 'Unerledigt',
|
'pending' => 'Ausstehend',
|
||||||
'status_type' => 'Statustyp',
|
'status_type' => 'Statustyp',
|
||||||
'show_in_nav' => 'Im seitlichen Navigationsbereich zeigen',
|
'show_in_nav' => 'Im seitlichen Navigationsbereich zeigen',
|
||||||
'title' => 'Statusbezeichnungen',
|
'title' => 'Statusbezeichnungen',
|
||||||
'undeployable' => 'nicht Einsetzbar',
|
'undeployable' => 'Nicht einsetzbar',
|
||||||
'update' => 'Statusbezeichnung bearbeiten',
|
'update' => 'Statusbezeichnung bearbeiten',
|
||||||
);
|
);
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
'depreciation_report' => 'Abschreibungsbericht',
|
'depreciation_report' => 'Abschreibungsbericht',
|
||||||
'details' => 'Details',
|
'details' => 'Details',
|
||||||
'download' => 'Download',
|
'download' => 'Download',
|
||||||
'download_all' => 'Download All',
|
'download_all' => 'Alle herunterladen',
|
||||||
'depreciation' => 'Abschreibung',
|
'depreciation' => 'Abschreibung',
|
||||||
'editprofile' => 'Profil bearbeiten',
|
'editprofile' => 'Profil bearbeiten',
|
||||||
'eol' => 'EOL',
|
'eol' => 'EOL',
|
||||||
|
@ -114,8 +114,8 @@
|
||||||
'image_upload' => 'Bild hinzufügen',
|
'image_upload' => 'Bild hinzufügen',
|
||||||
'image_filetypes_help' => 'Erlaubte Dateitypen sind jpg, png, gif und svg. Die maximal erlaubte Upload-Größe beträgt :size.',
|
'image_filetypes_help' => 'Erlaubte Dateitypen sind jpg, png, gif und svg. Die maximal erlaubte Upload-Größe beträgt :size.',
|
||||||
'import' => 'Import',
|
'import' => 'Import',
|
||||||
'importing' => 'Importing',
|
'importing' => 'Importiere',
|
||||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
'importing_help' => 'Sie können Assets, Zubehör, Lizenzen, Komponenten, Verbrauchsmaterialien und Benutzer mittels CSV-Datei importieren. <br><br>Die CSV-Datei sollte kommagetrennt sein und eine Kopfzeile enthalten, die mit den <a href="https://snipe-it.readme.io/docs/importing" target="_new">Beispiel-CSVs aus der Dokumentation</a> übereinstimmen.',
|
||||||
'import-history' => 'Import Verlauf',
|
'import-history' => 'Import Verlauf',
|
||||||
'asset_maintenance' => 'Asset Wartung',
|
'asset_maintenance' => 'Asset Wartung',
|
||||||
'asset_maintenance_report' => 'Asset Wartungsbericht',
|
'asset_maintenance_report' => 'Asset Wartungsbericht',
|
||||||
|
|
|
@ -29,7 +29,7 @@ return array(
|
||||||
'days' => 'Tage',
|
'days' => 'Tage',
|
||||||
'expecting_checkin_date' => 'Erwartetes Rückgabedatum:',
|
'expecting_checkin_date' => 'Erwartetes Rückgabedatum:',
|
||||||
'expires' => 'Ablaufdatum',
|
'expires' => 'Ablaufdatum',
|
||||||
'Expiring_Assets_Report' => 'Bericht über Ablaufende Gegenstände.',
|
'Expiring_Assets_Report' => 'Bericht über ablaufende Gegenstände.',
|
||||||
'Expiring_Licenses_Report' => 'Bericht über ablaufende Lizenzen.',
|
'Expiring_Licenses_Report' => 'Bericht über ablaufende Lizenzen.',
|
||||||
'hello' => 'Hallo',
|
'hello' => 'Hallo',
|
||||||
'hi' => 'Hallo',
|
'hi' => 'Hallo',
|
||||||
|
@ -72,8 +72,8 @@ return array(
|
||||||
'Accessory_Checkin_Notification' => 'Zubehör zurückgenommen',
|
'Accessory_Checkin_Notification' => 'Zubehör zurückgenommen',
|
||||||
'Asset_Checkin_Notification' => 'Asset zurückgenommen',
|
'Asset_Checkin_Notification' => 'Asset zurückgenommen',
|
||||||
'License_Checkin_Notification' => 'Lizenz zurückgenommen',
|
'License_Checkin_Notification' => 'Lizenz zurückgenommen',
|
||||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
'Expected_Checkin_Report' => 'Bericht über erwartete Asset Rückgaben',
|
||||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
'Expected_Checkin_Notification' => 'Erinnerung: :name Rückgabedatum nähert sich',
|
||||||
'Expected_Checkin_Date' => 'Ihr ausgebuchtes Asset ist fällig zur Rückgabe am :date',
|
'Expected_Checkin_Date' => 'Ihr ausgebuchtes Asset ist fällig zur Rückgabe am :date',
|
||||||
'your_assets' => 'Ihre Assets anzeigen'
|
'your_assets' => 'Ihre Assets anzeigen'
|
||||||
);
|
);
|
||||||
|
|
|
@ -57,12 +57,12 @@ return array(
|
||||||
'array' => 'Das: -Attribut darf nicht mehr als: maximale Elemente haben.',
|
'array' => 'Das: -Attribut darf nicht mehr als: maximale Elemente haben.',
|
||||||
],
|
],
|
||||||
'mimes' => ':attribute muss eine Datei des Typs :values sein.',
|
'mimes' => ':attribute muss eine Datei des Typs :values sein.',
|
||||||
'mimetypes' => 'Das Attribut muss eine Datei vom Typ:: Werte sein.',
|
'mimetypes' => ':attribute muss eine Datei vom Typ: :values sein.',
|
||||||
'min' => [
|
'min' => [
|
||||||
'numeric' => ':attribute muss kleiner als :min sein.',
|
'numeric' => ':attribute muss kleiner als :min sein.',
|
||||||
'file' => ':attribute muss mindestens :min Kilobyte groß sein.',
|
'file' => ':attribute muss mindestens :min Kilobyte groß sein.',
|
||||||
'string' => ':attribute benötigt mindestens :min Zeichen.',
|
'string' => ':attribute benötigt mindestens :min Zeichen.',
|
||||||
'array' => 'Das Attribut: muss mindestens enthalten: Min. Elemente.',
|
'array' => ':attribute muss mindestens :min Elemente enthalten.',
|
||||||
],
|
],
|
||||||
'not_in' => 'Auswahl :attribute ist ungültig.',
|
'not_in' => 'Auswahl :attribute ist ungültig.',
|
||||||
'numeric' => ':attribute muss eine Zahl sein.',
|
'numeric' => ':attribute muss eine Zahl sein.',
|
||||||
|
@ -71,7 +71,7 @@ return array(
|
||||||
'regex' => ':attribute Format ungültig.',
|
'regex' => ':attribute Format ungültig.',
|
||||||
'required' => ':attribute Feld muss ausgefüllt sein.',
|
'required' => ':attribute Feld muss ausgefüllt sein.',
|
||||||
'required_if' => ':attribute wird benötigt wenn :other :value entspricht.',
|
'required_if' => ':attribute wird benötigt wenn :other :value entspricht.',
|
||||||
'required_unless' => 'Das: Attributfeld ist erforderlich, es sei denn: other ist in: values.',
|
'required_unless' => 'Das :attribute Feld ist erforderlich, es sei denn :other ist in :values.',
|
||||||
'required_with' => ':attribute wird benötigt wenn :value ausgewählt ist.',
|
'required_with' => ':attribute wird benötigt wenn :value ausgewählt ist.',
|
||||||
'required_with_all' => 'Das: Attributfeld ist erforderlich, wenn: Werte vorhanden sind.',
|
'required_with_all' => 'Das: Attributfeld ist erforderlich, wenn: Werte vorhanden sind.',
|
||||||
'required_without' => ':attribute wird benötigt wenn :value nicht ausgewählt ist.',
|
'required_without' => ':attribute wird benötigt wenn :value nicht ausgewählt ist.',
|
||||||
|
|
|
@ -89,6 +89,7 @@ return array(
|
||||||
'uploaded' => 'The :attribute failed to upload.',
|
'uploaded' => 'The :attribute failed to upload.',
|
||||||
'url' => 'The :attribute format is invalid.',
|
'url' => 'The :attribute format is invalid.',
|
||||||
"unique_undeleted" => "The :attribute must be unique.",
|
"unique_undeleted" => "The :attribute must be unique.",
|
||||||
|
"non_circular" => "The :attribute must not create a circular reference.",
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
@ -20,6 +20,6 @@ return array(
|
||||||
'title' => 'Equipo ',
|
'title' => 'Equipo ',
|
||||||
'image' => 'Imagen de dispositivo',
|
'image' => 'Imagen de dispositivo',
|
||||||
'days_without_acceptance' => 'Días Sin Aceptación',
|
'days_without_acceptance' => 'Días Sin Aceptación',
|
||||||
'monthly_depreciation' => 'Monthly Depreciation'
|
'monthly_depreciation' => 'Depreciación mensual'
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
|
@ -8,7 +8,7 @@ return array(
|
||||||
'owner_doesnt_match_asset' => 'El equipo al que estas intentando asignar esta licenciam, está asignado a un usuario diferente que el de la licencia.',
|
'owner_doesnt_match_asset' => 'El equipo al que estas intentando asignar esta licenciam, está asignado a un usuario diferente que el de la licencia.',
|
||||||
'assoc_users' => 'Esta categoría está asignada al menos a un modelo y no puede ser eliminada.',
|
'assoc_users' => 'Esta categoría está asignada al menos a un modelo y no puede ser eliminada.',
|
||||||
'select_asset_or_person' => 'Debe seleccionar un activo o un usuario, pero no ambos.',
|
'select_asset_or_person' => 'Debe seleccionar un activo o un usuario, pero no ambos.',
|
||||||
'not_found' => 'License not found',
|
'not_found' => 'Licencia no encontrada',
|
||||||
|
|
||||||
|
|
||||||
'create' => array(
|
'create' => array(
|
||||||
|
|
|
@ -4,9 +4,9 @@ return array(
|
||||||
'ad' => 'Directorio Activo',
|
'ad' => 'Directorio Activo',
|
||||||
'ad_domain' => 'Dominio del Directorio Activo',
|
'ad_domain' => 'Dominio del Directorio Activo',
|
||||||
'ad_domain_help' => 'Esto es a veces el mismo que su correo electrónico de dominio, pero no siempre.',
|
'ad_domain_help' => 'Esto es a veces el mismo que su correo electrónico de dominio, pero no siempre.',
|
||||||
'ad_append_domain_label' => 'Append domain name',
|
'ad_append_domain_label' => 'Añadir nombre de dominio',
|
||||||
'ad_append_domain' => 'Append domain name to username field',
|
'ad_append_domain' => 'Añadir nombre de dominio al campo de nombre de usuario',
|
||||||
'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".' ,
|
'ad_append_domain_help' => 'El usuario no necesita escribir "username@domain.local", puede escribir únicamente "username".' ,
|
||||||
'admin_cc_email' => 'Email CC',
|
'admin_cc_email' => 'Email CC',
|
||||||
'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.',
|
'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.',
|
||||||
'is_ad' => 'Este es un servidor de Directorio Activo',
|
'is_ad' => 'Este es un servidor de Directorio Activo',
|
||||||
|
@ -25,7 +25,7 @@ return array(
|
||||||
'backups' => 'Copias de seguridad',
|
'backups' => 'Copias de seguridad',
|
||||||
'barcode_settings' => 'Configuración de Código de Barras',
|
'barcode_settings' => 'Configuración de Código de Barras',
|
||||||
'confirm_purge' => 'Confirmar la purga',
|
'confirm_purge' => 'Confirmar la purga',
|
||||||
'confirm_purge_help' => 'Enter the text "DELETE" in the box below to purge your deleted records. This action cannot be undone and will PERMANENTLY delete all soft-deleted items and users. (You should make a backup first, just to be safe.)',
|
'confirm_purge_help' => 'Introduzca el texto "DELETE" en el cuadro de abajo para purgar sus registros borrados. Esta acción no se puede deshacer y borrará PERMANENTAMENTE todos los elementos y usuarios eliminados. (Se recomienda hacer una copia de seguridad previamente, para estar seguro.)',
|
||||||
'custom_css' => 'CSS Personalizado',
|
'custom_css' => 'CSS Personalizado',
|
||||||
'custom_css_help' => 'Ingrese cualquier CSS personalizado que desee utilizar. No incluya tags como: <style></style>.',
|
'custom_css_help' => 'Ingrese cualquier CSS personalizado que desee utilizar. No incluya tags como: <style></style>.',
|
||||||
'custom_forgot_pass_url' => 'Reestablecer URL de Contraseña Personalizada',
|
'custom_forgot_pass_url' => 'Reestablecer URL de Contraseña Personalizada',
|
||||||
|
@ -41,23 +41,23 @@ return array(
|
||||||
'display_eol' => 'Mostrar EOL',
|
'display_eol' => 'Mostrar EOL',
|
||||||
'display_qr' => 'Mostrar Códigos QR',
|
'display_qr' => 'Mostrar Códigos QR',
|
||||||
'display_alt_barcode' => 'Mostrar códigos de barras en 1D',
|
'display_alt_barcode' => 'Mostrar códigos de barras en 1D',
|
||||||
'email_logo' => 'Email Logo',
|
'email_logo' => 'Logo de Email',
|
||||||
'barcode_type' => 'Tipo de códigos de barras 2D',
|
'barcode_type' => 'Tipo de códigos de barras 2D',
|
||||||
'alt_barcode_type' => 'Tipo de códigos de barras 1D',
|
'alt_barcode_type' => 'Tipo de códigos de barras 1D',
|
||||||
'email_logo_size' => 'Square logos in email look best. ',
|
'email_logo_size' => 'Los logotipos cuadrados en el correo electrónico se ven mejor. ',
|
||||||
'eula_settings' => 'Configuración EULA',
|
'eula_settings' => 'Configuración EULA',
|
||||||
'eula_markdown' => 'Este EULS permite <a href="https://help.github.com/articles/github-flavored-markdown/">makrdown estilo Github</a>.',
|
'eula_markdown' => 'Este EULS permite <a href="https://help.github.com/articles/github-flavored-markdown/">makrdown estilo Github</a>.',
|
||||||
'favicon' => 'Favicon',
|
'favicon' => 'Favicon',
|
||||||
'favicon_format' => 'Accepted filetypes are ico, png, and gif. Other image formats may not work in all browsers.',
|
'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.',
|
||||||
'favicon_size' => 'Favicons should be square images, 16x16 pixels.',
|
'favicon_size' => 'Los Favicons deben ser imágenes cuadradas, 16x16 píxeles.',
|
||||||
'footer_text' => 'Texto Adicional de Pie de Página ',
|
'footer_text' => 'Texto Adicional de Pie de Página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el formato flavored de GitHub</a>. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el formato flavored de GitHub</a>. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.',
|
||||||
'general_settings' => 'Configuración General',
|
'general_settings' => 'Configuración General',
|
||||||
'generate_backup' => 'Generar Respaldo',
|
'generate_backup' => 'Generar Respaldo',
|
||||||
'header_color' => 'Color de encabezado',
|
'header_color' => 'Color de encabezado',
|
||||||
'info' => 'Estos parámetros permirten personalizar ciertos aspectos de la aplicación.',
|
'info' => 'Estos parámetros permirten personalizar ciertos aspectos de la aplicación.',
|
||||||
'label_logo' => 'Label Logo',
|
'label_logo' => 'Logo de etiqueta',
|
||||||
'label_logo_size' => 'Square logos look best - will be displayed in the top right of each asset label. ',
|
'label_logo_size' => 'Los logos cuadrados se ven mejor - se mostrarán en la parte superior derecha de cada etiqueta de activo. ',
|
||||||
'laravel' => 'Versión de Laravel',
|
'laravel' => 'Versión de Laravel',
|
||||||
'ldap_enabled' => 'LDAP activado',
|
'ldap_enabled' => 'LDAP activado',
|
||||||
'ldap_integration' => 'Integración LDAP',
|
'ldap_integration' => 'Integración LDAP',
|
||||||
|
@ -99,7 +99,7 @@ return array(
|
||||||
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
||||||
'login_remote_user_custom_logout_url_help' => 'Si se proporciona una url aquí, los usuarios serán redirigidos a esta URL después de que el usuario cierre la sesión de Snipe-IT. Esto es útil para cerrar correctamente las sesiones de usuario de su proveedor de autenticación.',
|
'login_remote_user_custom_logout_url_help' => 'Si se proporciona una url aquí, los usuarios serán redirigidos a esta URL después de que el usuario cierre la sesión de Snipe-IT. Esto es útil para cerrar correctamente las sesiones de usuario de su proveedor de autenticación.',
|
||||||
'login_remote_user_header_name_text' => 'Custom user name header',
|
'login_remote_user_header_name_text' => 'Custom user name header',
|
||||||
'login_remote_user_header_name_help' => 'Use the specified header instead of REMOTE_USER',
|
'login_remote_user_header_name_help' => 'Usar la cabecera especificada en lugar de REMOTE_USER',
|
||||||
'logo' => 'Logo',
|
'logo' => 'Logo',
|
||||||
'logo_print_assets' => 'Utilizar en impresión',
|
'logo_print_assets' => 'Utilizar en impresión',
|
||||||
'logo_print_assets_help' => 'Utilice la marca en las listas de activos imprimibles ',
|
'logo_print_assets_help' => 'Utilice la marca en las listas de activos imprimibles ',
|
||||||
|
@ -114,20 +114,20 @@ return array(
|
||||||
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
||||||
'pwd_secure_complexity_help' => 'Seleccione las reglas de complejidad de las contraseñas que desee aplicar.',
|
'pwd_secure_complexity_help' => 'Seleccione las reglas de complejidad de las contraseñas que desee aplicar.',
|
||||||
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
||||||
'pwd_secure_min_help' => 'Minimum permitted value is 8',
|
'pwd_secure_min_help' => 'El valor mínimo permitido es 8',
|
||||||
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
||||||
'pwd_secure_uncommon_help' => 'Esto impedirá que los usuarios usen contraseñas comunes de las 10,000 contraseñas principales que se notifican en las infracciones.',
|
'pwd_secure_uncommon_help' => 'Esto impedirá que los usuarios usen contraseñas comunes de las 10,000 contraseñas principales que se notifican en las infracciones.',
|
||||||
'qr_help' => 'Activa Códigos QR antes para poder ver esto',
|
'qr_help' => 'Activa Códigos QR antes para poder ver esto',
|
||||||
'qr_text' => 'Texto Código QR',
|
'qr_text' => 'Texto Código QR',
|
||||||
'saml_enabled' => 'SAML enabled',
|
'saml_enabled' => 'SAML activado',
|
||||||
'saml_integration' => 'SAML Integration',
|
'saml_integration' => 'Integración SAML',
|
||||||
'saml_sp_entityid' => 'Entity ID',
|
'saml_sp_entityid' => 'ID de la entidad',
|
||||||
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
||||||
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
||||||
'saml_sp_x509cert' => 'Public Certificate',
|
'saml_sp_x509cert' => 'Certificado público',
|
||||||
'saml_idp_metadata' => 'SAML IdP Metadata',
|
'saml_idp_metadata' => 'SAML IdP Metadata',
|
||||||
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
||||||
'saml_attr_mapping_username' => 'Attribute Mapping - Username',
|
'saml_attr_mapping_username' => 'Mapeo de Atributos - Nombre de Usuario',
|
||||||
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
||||||
'saml_forcelogin_label' => 'SAML Force Login',
|
'saml_forcelogin_label' => 'SAML Force Login',
|
||||||
'saml_forcelogin' => 'Make SAML the primary login',
|
'saml_forcelogin' => 'Make SAML the primary login',
|
||||||
|
@ -218,5 +218,5 @@ return array(
|
||||||
'unique_serial' => 'Números de serie únicos',
|
'unique_serial' => 'Números de serie únicos',
|
||||||
'unique_serial_help_text' => 'Al marcar esta casilla se forzarán números de serie únicos a los activos',
|
'unique_serial_help_text' => 'Al marcar esta casilla se forzarán números de serie únicos a los activos',
|
||||||
'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros',
|
'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros',
|
||||||
'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.',
|
'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.',
|
||||||
);
|
);
|
||||||
|
|
|
@ -19,7 +19,7 @@ return array(
|
||||||
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
||||||
'print_assigned' => 'Imprimir todos los Asignados',
|
'print_assigned' => 'Imprimir todos los Asignados',
|
||||||
'software_user' => 'Software asignado a :name',
|
'software_user' => 'Software asignado a :name',
|
||||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para enviarle credenciales. Únicamente pueden enviarse credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
|
||||||
'view_user' => 'Ver Usuario :name',
|
'view_user' => 'Ver Usuario :name',
|
||||||
'usercsv' => 'Archivo CSV',
|
'usercsv' => 'Archivo CSV',
|
||||||
'two_factor_admin_optin_help' => 'La actual configuración de administración permite cumplimiento selectivo de autenticación de dos factores. ',
|
'two_factor_admin_optin_help' => 'La actual configuración de administración permite cumplimiento selectivo de autenticación de dos factores. ',
|
||||||
|
|
|
@ -12,7 +12,7 @@ return array(
|
||||||
'insufficient_permissions' => 'No tiene permiso.',
|
'insufficient_permissions' => 'No tiene permiso.',
|
||||||
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.',
|
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.',
|
||||||
'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.',
|
'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.',
|
||||||
'password_resets_sent' => 'The selected users who are activated and have a valid email addresses have been sent a password reset link.',
|
'password_resets_sent' => 'A los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida se les ha enviado un enlace de restablecimiento de contraseña.',
|
||||||
|
|
||||||
|
|
||||||
'success' => array(
|
'success' => array(
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
'bulkaudit' => 'Auditoría masiva',
|
'bulkaudit' => 'Auditoría masiva',
|
||||||
'bulkaudit_status' => 'Estado de auditoría',
|
'bulkaudit_status' => 'Estado de auditoría',
|
||||||
'bulk_checkout' => 'Procesar en Lote',
|
'bulk_checkout' => 'Procesar en Lote',
|
||||||
'bystatus' => 'by Status',
|
'bystatus' => 'por Estado',
|
||||||
'cancel' => 'Cancelar',
|
'cancel' => 'Cancelar',
|
||||||
'categories' => 'Categorías',
|
'categories' => 'Categorías',
|
||||||
'category' => 'Categoría',
|
'category' => 'Categoría',
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
'created' => 'Artículo creado',
|
'created' => 'Artículo creado',
|
||||||
'created_asset' => 'equipo creado',
|
'created_asset' => 'equipo creado',
|
||||||
'created_at' => 'Creado el',
|
'created_at' => 'Creado el',
|
||||||
'record_created' => 'Record Created',
|
'record_created' => 'Registro Creado',
|
||||||
'updated_at' => 'Actualizado en',
|
'updated_at' => 'Actualizado en',
|
||||||
'currency' => '€', // this is deprecated
|
'currency' => '€', // this is deprecated
|
||||||
'current' => 'Actual',
|
'current' => 'Actual',
|
||||||
|
@ -79,7 +79,7 @@
|
||||||
'depreciation_report' => 'Informe de amortización',
|
'depreciation_report' => 'Informe de amortización',
|
||||||
'details' => 'Detalles',
|
'details' => 'Detalles',
|
||||||
'download' => 'Descargar',
|
'download' => 'Descargar',
|
||||||
'download_all' => 'Download All',
|
'download_all' => 'Descargar todo',
|
||||||
'depreciation' => 'Amortización',
|
'depreciation' => 'Amortización',
|
||||||
'editprofile' => 'Editar Perfil',
|
'editprofile' => 'Editar Perfil',
|
||||||
'eol' => 'EOL',
|
'eol' => 'EOL',
|
||||||
|
@ -90,11 +90,11 @@
|
||||||
'firstname_lastname_format' => 'Primer Nombre y Apellido (jane.smith@ejemplo.com)',
|
'firstname_lastname_format' => 'Primer Nombre y Apellido (jane.smith@ejemplo.com)',
|
||||||
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
||||||
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
||||||
'firstintial_dot_lastname_format' => 'First Initial Last Name (j.smith@example.com)',
|
'firstintial_dot_lastname_format' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'first' => 'Primero',
|
'first' => 'Primero',
|
||||||
'firstnamelastname' => 'First Name Last Name (janesmith@example.com)',
|
'firstnamelastname' => 'Nombre Apellido (jane.smith@ejemplo.com)',
|
||||||
'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)',
|
'lastname_firstinitial' => 'Apellido Inicial (smith_j@ejemplo.com)',
|
||||||
'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)',
|
'firstinitial.lastname' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
||||||
'first_name' => 'Nombre',
|
'first_name' => 'Nombre',
|
||||||
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
||||||
|
@ -114,7 +114,7 @@
|
||||||
'image_upload' => 'Enviar imagen',
|
'image_upload' => 'Enviar imagen',
|
||||||
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif y svg. El tamaño máximo permitido es :size.',
|
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif y svg. El tamaño máximo permitido es :size.',
|
||||||
'import' => 'Importar',
|
'import' => 'Importar',
|
||||||
'importing' => 'Importing',
|
'importing' => 'Importando',
|
||||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||||
'import-history' => 'Historial de Importación',
|
'import-history' => 'Historial de Importación',
|
||||||
'asset_maintenance' => 'Mantenimiento de Equipo',
|
'asset_maintenance' => 'Mantenimiento de Equipo',
|
||||||
|
|
|
@ -73,7 +73,7 @@ return array(
|
||||||
'Asset_Checkin_Notification' => 'Activo devuelto',
|
'Asset_Checkin_Notification' => 'Activo devuelto',
|
||||||
'License_Checkin_Notification' => 'Licencia devuelta',
|
'License_Checkin_Notification' => 'Licencia devuelta',
|
||||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
|
||||||
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
||||||
'your_assets' => 'Ver tus activos'
|
'your_assets' => 'Ver tus activos'
|
||||||
);
|
);
|
||||||
|
|
|
@ -20,6 +20,6 @@ return array(
|
||||||
'title' => 'Equipo ',
|
'title' => 'Equipo ',
|
||||||
'image' => 'Imagen de dispositivo',
|
'image' => 'Imagen de dispositivo',
|
||||||
'days_without_acceptance' => 'Días Sin Aceptación',
|
'days_without_acceptance' => 'Días Sin Aceptación',
|
||||||
'monthly_depreciation' => 'Monthly Depreciation'
|
'monthly_depreciation' => 'Depreciación mensual'
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
|
@ -8,7 +8,7 @@ return array(
|
||||||
'owner_doesnt_match_asset' => 'El equipo al que estas intentando asignar esta licenciam, está asignado a un usuario diferente que el de la licencia.',
|
'owner_doesnt_match_asset' => 'El equipo al que estas intentando asignar esta licenciam, está asignado a un usuario diferente que el de la licencia.',
|
||||||
'assoc_users' => 'Esta categoría está asignada al menos a un modelo y no puede ser eliminada.',
|
'assoc_users' => 'Esta categoría está asignada al menos a un modelo y no puede ser eliminada.',
|
||||||
'select_asset_or_person' => 'Debe seleccionar un activo o un usuario, pero no ambos.',
|
'select_asset_or_person' => 'Debe seleccionar un activo o un usuario, pero no ambos.',
|
||||||
'not_found' => 'License not found',
|
'not_found' => 'Licencia no encontrada',
|
||||||
|
|
||||||
|
|
||||||
'create' => array(
|
'create' => array(
|
||||||
|
|
|
@ -4,9 +4,9 @@ return array(
|
||||||
'ad' => 'Directorio Activo',
|
'ad' => 'Directorio Activo',
|
||||||
'ad_domain' => 'Dominio del Directorio Activo',
|
'ad_domain' => 'Dominio del Directorio Activo',
|
||||||
'ad_domain_help' => 'Esto es a veces el mismo que su correo electrónico de dominio, pero no siempre.',
|
'ad_domain_help' => 'Esto es a veces el mismo que su correo electrónico de dominio, pero no siempre.',
|
||||||
'ad_append_domain_label' => 'Append domain name',
|
'ad_append_domain_label' => 'Añadir nombre de dominio',
|
||||||
'ad_append_domain' => 'Append domain name to username field',
|
'ad_append_domain' => 'Añadir nombre de dominio al campo de nombre de usuario',
|
||||||
'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".' ,
|
'ad_append_domain_help' => 'El usuario no necesita escribir "username@domain.local", puede escribir únicamente "username".' ,
|
||||||
'admin_cc_email' => 'Email CC',
|
'admin_cc_email' => 'Email CC',
|
||||||
'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.',
|
'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.',
|
||||||
'is_ad' => 'Este es un servidor de Directorio Activo',
|
'is_ad' => 'Este es un servidor de Directorio Activo',
|
||||||
|
@ -25,7 +25,7 @@ return array(
|
||||||
'backups' => 'Copias de seguridad',
|
'backups' => 'Copias de seguridad',
|
||||||
'barcode_settings' => 'Configuración de Código de Barras',
|
'barcode_settings' => 'Configuración de Código de Barras',
|
||||||
'confirm_purge' => 'Confirmar la purga',
|
'confirm_purge' => 'Confirmar la purga',
|
||||||
'confirm_purge_help' => 'Enter the text "DELETE" in the box below to purge your deleted records. This action cannot be undone and will PERMANENTLY delete all soft-deleted items and users. (You should make a backup first, just to be safe.)',
|
'confirm_purge_help' => 'Introduzca el texto "DELETE" en el cuadro de abajo para purgar sus registros borrados. Esta acción no se puede deshacer y borrará PERMANENTAMENTE todos los elementos y usuarios eliminados. (Se recomienda hacer una copia de seguridad previamente, para estar seguro.)',
|
||||||
'custom_css' => 'CSS Personalizado',
|
'custom_css' => 'CSS Personalizado',
|
||||||
'custom_css_help' => 'Ingrese cualquier CSS personalizado que desee utilizar. No incluya tags como: <style></style>.',
|
'custom_css_help' => 'Ingrese cualquier CSS personalizado que desee utilizar. No incluya tags como: <style></style>.',
|
||||||
'custom_forgot_pass_url' => 'Reestablecer URL de Contraseña Personalizada',
|
'custom_forgot_pass_url' => 'Reestablecer URL de Contraseña Personalizada',
|
||||||
|
@ -41,23 +41,23 @@ return array(
|
||||||
'display_eol' => 'Mostrar EOL',
|
'display_eol' => 'Mostrar EOL',
|
||||||
'display_qr' => 'Mostrar Códigos QR',
|
'display_qr' => 'Mostrar Códigos QR',
|
||||||
'display_alt_barcode' => 'Mostrar códigos de barras en 1D',
|
'display_alt_barcode' => 'Mostrar códigos de barras en 1D',
|
||||||
'email_logo' => 'Email Logo',
|
'email_logo' => 'Logo de Email',
|
||||||
'barcode_type' => 'Tipo de códigos de barras 2D',
|
'barcode_type' => 'Tipo de códigos de barras 2D',
|
||||||
'alt_barcode_type' => 'Tipo de códigos de barras 1D',
|
'alt_barcode_type' => 'Tipo de códigos de barras 1D',
|
||||||
'email_logo_size' => 'Square logos in email look best. ',
|
'email_logo_size' => 'Los logotipos cuadrados en el correo electrónico se ven mejor. ',
|
||||||
'eula_settings' => 'Configuración EULA',
|
'eula_settings' => 'Configuración EULA',
|
||||||
'eula_markdown' => 'Este EULS permite <a href="https://help.github.com/articles/github-flavored-markdown/">makrdown estilo Github</a>.',
|
'eula_markdown' => 'Este EULS permite <a href="https://help.github.com/articles/github-flavored-markdown/">makrdown estilo Github</a>.',
|
||||||
'favicon' => 'Favicon',
|
'favicon' => 'Favicon',
|
||||||
'favicon_format' => 'Accepted filetypes are ico, png, and gif. Other image formats may not work in all browsers.',
|
'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.',
|
||||||
'favicon_size' => 'Favicons should be square images, 16x16 pixels.',
|
'favicon_size' => 'Los Favicons deben ser imágenes cuadradas, 16x16 píxeles.',
|
||||||
'footer_text' => 'Texto Adicional de Pie de Página ',
|
'footer_text' => 'Texto Adicional de Pie de Página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el formato flavored de GitHub</a>. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el formato flavored de GitHub</a>. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.',
|
||||||
'general_settings' => 'Configuración General',
|
'general_settings' => 'Configuración General',
|
||||||
'generate_backup' => 'Generar Respaldo',
|
'generate_backup' => 'Generar Respaldo',
|
||||||
'header_color' => 'Color de encabezado',
|
'header_color' => 'Color de encabezado',
|
||||||
'info' => 'Estos parámetros permirten personalizar ciertos aspectos de la aplicación.',
|
'info' => 'Estos parámetros permirten personalizar ciertos aspectos de la aplicación.',
|
||||||
'label_logo' => 'Label Logo',
|
'label_logo' => 'Logo de etiqueta',
|
||||||
'label_logo_size' => 'Square logos look best - will be displayed in the top right of each asset label. ',
|
'label_logo_size' => 'Los logos cuadrados se ven mejor - se mostrarán en la parte superior derecha de cada etiqueta de activo. ',
|
||||||
'laravel' => 'Versión de Laravel',
|
'laravel' => 'Versión de Laravel',
|
||||||
'ldap_enabled' => 'LDAP activado',
|
'ldap_enabled' => 'LDAP activado',
|
||||||
'ldap_integration' => 'Integración LDAP',
|
'ldap_integration' => 'Integración LDAP',
|
||||||
|
@ -99,7 +99,7 @@ return array(
|
||||||
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
||||||
'login_remote_user_custom_logout_url_help' => 'Si se proporciona una url aquí, los usuarios serán redirigidos a esta URL después de que el usuario cierre la sesión de Snipe-IT. Esto es útil para cerrar correctamente las sesiones de usuario de su proveedor de autenticación.',
|
'login_remote_user_custom_logout_url_help' => 'Si se proporciona una url aquí, los usuarios serán redirigidos a esta URL después de que el usuario cierre la sesión de Snipe-IT. Esto es útil para cerrar correctamente las sesiones de usuario de su proveedor de autenticación.',
|
||||||
'login_remote_user_header_name_text' => 'Custom user name header',
|
'login_remote_user_header_name_text' => 'Custom user name header',
|
||||||
'login_remote_user_header_name_help' => 'Use the specified header instead of REMOTE_USER',
|
'login_remote_user_header_name_help' => 'Usar la cabecera especificada en lugar de REMOTE_USER',
|
||||||
'logo' => 'Logo',
|
'logo' => 'Logo',
|
||||||
'logo_print_assets' => 'Utilizar en impresión',
|
'logo_print_assets' => 'Utilizar en impresión',
|
||||||
'logo_print_assets_help' => 'Utilice la marca en las listas de activos imprimibles ',
|
'logo_print_assets_help' => 'Utilice la marca en las listas de activos imprimibles ',
|
||||||
|
@ -114,20 +114,20 @@ return array(
|
||||||
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
||||||
'pwd_secure_complexity_help' => 'Seleccione las reglas de complejidad de las contraseñas que desee aplicar.',
|
'pwd_secure_complexity_help' => 'Seleccione las reglas de complejidad de las contraseñas que desee aplicar.',
|
||||||
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
||||||
'pwd_secure_min_help' => 'Minimum permitted value is 8',
|
'pwd_secure_min_help' => 'El valor mínimo permitido es 8',
|
||||||
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
||||||
'pwd_secure_uncommon_help' => 'Esto impedirá que los usuarios usen contraseñas comunes de las 10,000 contraseñas principales que se notifican en las infracciones.',
|
'pwd_secure_uncommon_help' => 'Esto impedirá que los usuarios usen contraseñas comunes de las 10,000 contraseñas principales que se notifican en las infracciones.',
|
||||||
'qr_help' => 'Activa Códigos QR antes para poder ver esto',
|
'qr_help' => 'Activa Códigos QR antes para poder ver esto',
|
||||||
'qr_text' => 'Texto Código QR',
|
'qr_text' => 'Texto Código QR',
|
||||||
'saml_enabled' => 'SAML enabled',
|
'saml_enabled' => 'SAML activado',
|
||||||
'saml_integration' => 'SAML Integration',
|
'saml_integration' => 'Integración SAML',
|
||||||
'saml_sp_entityid' => 'Entity ID',
|
'saml_sp_entityid' => 'ID de la entidad',
|
||||||
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
||||||
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
||||||
'saml_sp_x509cert' => 'Public Certificate',
|
'saml_sp_x509cert' => 'Certificado público',
|
||||||
'saml_idp_metadata' => 'SAML IdP Metadata',
|
'saml_idp_metadata' => 'SAML IdP Metadata',
|
||||||
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
||||||
'saml_attr_mapping_username' => 'Attribute Mapping - Username',
|
'saml_attr_mapping_username' => 'Mapeo de Atributos - Nombre de Usuario',
|
||||||
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
||||||
'saml_forcelogin_label' => 'SAML Force Login',
|
'saml_forcelogin_label' => 'SAML Force Login',
|
||||||
'saml_forcelogin' => 'Make SAML the primary login',
|
'saml_forcelogin' => 'Make SAML the primary login',
|
||||||
|
@ -218,5 +218,5 @@ return array(
|
||||||
'unique_serial' => 'Números de serie únicos',
|
'unique_serial' => 'Números de serie únicos',
|
||||||
'unique_serial_help_text' => 'Al marcar esta casilla se forzarán números de serie únicos a los activos',
|
'unique_serial_help_text' => 'Al marcar esta casilla se forzarán números de serie únicos a los activos',
|
||||||
'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros',
|
'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros',
|
||||||
'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.',
|
'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.',
|
||||||
);
|
);
|
||||||
|
|
|
@ -19,7 +19,7 @@ return array(
|
||||||
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
||||||
'print_assigned' => 'Imprimir todos los Asignados',
|
'print_assigned' => 'Imprimir todos los Asignados',
|
||||||
'software_user' => 'Software asignado a :name',
|
'software_user' => 'Software asignado a :name',
|
||||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para enviarle credenciales. Únicamente pueden enviarse credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
|
||||||
'view_user' => 'Ver Usuario :name',
|
'view_user' => 'Ver Usuario :name',
|
||||||
'usercsv' => 'Archivo CSV',
|
'usercsv' => 'Archivo CSV',
|
||||||
'two_factor_admin_optin_help' => 'La actual configuración de administración permite cumplimiento selectivo de autenticación de dos factores. ',
|
'two_factor_admin_optin_help' => 'La actual configuración de administración permite cumplimiento selectivo de autenticación de dos factores. ',
|
||||||
|
|
|
@ -12,7 +12,7 @@ return array(
|
||||||
'insufficient_permissions' => 'No tiene permiso.',
|
'insufficient_permissions' => 'No tiene permiso.',
|
||||||
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.',
|
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.',
|
||||||
'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.',
|
'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.',
|
||||||
'password_resets_sent' => 'The selected users who are activated and have a valid email addresses have been sent a password reset link.',
|
'password_resets_sent' => 'A los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida se les ha enviado un enlace de restablecimiento de contraseña.',
|
||||||
|
|
||||||
|
|
||||||
'success' => array(
|
'success' => array(
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
'bulkaudit' => 'Auditoría masiva',
|
'bulkaudit' => 'Auditoría masiva',
|
||||||
'bulkaudit_status' => 'Estado de auditoría',
|
'bulkaudit_status' => 'Estado de auditoría',
|
||||||
'bulk_checkout' => 'Procesar en Lote',
|
'bulk_checkout' => 'Procesar en Lote',
|
||||||
'bystatus' => 'by Status',
|
'bystatus' => 'por Estado',
|
||||||
'cancel' => 'Cancelar',
|
'cancel' => 'Cancelar',
|
||||||
'categories' => 'Categorías',
|
'categories' => 'Categorías',
|
||||||
'category' => 'Categoría',
|
'category' => 'Categoría',
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
'created' => 'Artículo creado',
|
'created' => 'Artículo creado',
|
||||||
'created_asset' => 'equipo creado',
|
'created_asset' => 'equipo creado',
|
||||||
'created_at' => 'Creado el',
|
'created_at' => 'Creado el',
|
||||||
'record_created' => 'Record Created',
|
'record_created' => 'Registro Creado',
|
||||||
'updated_at' => 'Actualizado en',
|
'updated_at' => 'Actualizado en',
|
||||||
'currency' => '€', // this is deprecated
|
'currency' => '€', // this is deprecated
|
||||||
'current' => 'Actual',
|
'current' => 'Actual',
|
||||||
|
@ -79,7 +79,7 @@
|
||||||
'depreciation_report' => 'Informe de amortización',
|
'depreciation_report' => 'Informe de amortización',
|
||||||
'details' => 'Detalles',
|
'details' => 'Detalles',
|
||||||
'download' => 'Descargar',
|
'download' => 'Descargar',
|
||||||
'download_all' => 'Download All',
|
'download_all' => 'Descargar todo',
|
||||||
'depreciation' => 'Amortización',
|
'depreciation' => 'Amortización',
|
||||||
'editprofile' => 'Editar Perfil',
|
'editprofile' => 'Editar Perfil',
|
||||||
'eol' => 'EOL',
|
'eol' => 'EOL',
|
||||||
|
@ -90,11 +90,11 @@
|
||||||
'firstname_lastname_format' => 'Primer Nombre y Apellido (jane.smith@ejemplo.com)',
|
'firstname_lastname_format' => 'Primer Nombre y Apellido (jane.smith@ejemplo.com)',
|
||||||
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
||||||
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
||||||
'firstintial_dot_lastname_format' => 'First Initial Last Name (j.smith@example.com)',
|
'firstintial_dot_lastname_format' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'first' => 'Primero',
|
'first' => 'Primero',
|
||||||
'firstnamelastname' => 'First Name Last Name (janesmith@example.com)',
|
'firstnamelastname' => 'Nombre Apellido (jane.smith@ejemplo.com)',
|
||||||
'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)',
|
'lastname_firstinitial' => 'Apellido Inicial (smith_j@ejemplo.com)',
|
||||||
'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)',
|
'firstinitial.lastname' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
||||||
'first_name' => 'Nombre',
|
'first_name' => 'Nombre',
|
||||||
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
||||||
|
@ -114,7 +114,7 @@
|
||||||
'image_upload' => 'Enviar imagen',
|
'image_upload' => 'Enviar imagen',
|
||||||
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif y svg. El tamaño máximo permitido es :size.',
|
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif y svg. El tamaño máximo permitido es :size.',
|
||||||
'import' => 'Importar',
|
'import' => 'Importar',
|
||||||
'importing' => 'Importing',
|
'importing' => 'Importando',
|
||||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||||
'import-history' => 'Historial de Importación',
|
'import-history' => 'Historial de Importación',
|
||||||
'asset_maintenance' => 'Mantenimiento de Equipo',
|
'asset_maintenance' => 'Mantenimiento de Equipo',
|
||||||
|
|
|
@ -73,7 +73,7 @@ return array(
|
||||||
'Asset_Checkin_Notification' => 'Activo devuelto',
|
'Asset_Checkin_Notification' => 'Activo devuelto',
|
||||||
'License_Checkin_Notification' => 'Licencia devuelta',
|
'License_Checkin_Notification' => 'Licencia devuelta',
|
||||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
|
||||||
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
||||||
'your_assets' => 'Ver tus activos'
|
'your_assets' => 'Ver tus activos'
|
||||||
);
|
);
|
||||||
|
|
|
@ -5,8 +5,8 @@ return array(
|
||||||
'ad_domain' => 'Dominio del Directorio Activo',
|
'ad_domain' => 'Dominio del Directorio Activo',
|
||||||
'ad_domain_help' => 'Esto es a veces el mismo que su correo electrónico de dominio, pero no siempre.',
|
'ad_domain_help' => 'Esto es a veces el mismo que su correo electrónico de dominio, pero no siempre.',
|
||||||
'ad_append_domain_label' => 'Añadir nombre de dominio',
|
'ad_append_domain_label' => 'Añadir nombre de dominio',
|
||||||
'ad_append_domain' => 'Append domain name to username field',
|
'ad_append_domain' => 'Añadir nombre de dominio al campo de nombre de usuario',
|
||||||
'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".' ,
|
'ad_append_domain_help' => 'El usuario no necesita escribir "username@domain.local", puede escribir únicamente "username".' ,
|
||||||
'admin_cc_email' => 'CC Email',
|
'admin_cc_email' => 'CC Email',
|
||||||
'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.',
|
'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.',
|
||||||
'is_ad' => 'Este es un servidor de Directorio Activo',
|
'is_ad' => 'Este es un servidor de Directorio Activo',
|
||||||
|
@ -25,7 +25,7 @@ return array(
|
||||||
'backups' => 'Copias de seguridad',
|
'backups' => 'Copias de seguridad',
|
||||||
'barcode_settings' => 'Configuración de Código de Barras',
|
'barcode_settings' => 'Configuración de Código de Barras',
|
||||||
'confirm_purge' => 'Confirmar la purga',
|
'confirm_purge' => 'Confirmar la purga',
|
||||||
'confirm_purge_help' => 'Enter the text "DELETE" in the box below to purge your deleted records. This action cannot be undone and will PERMANENTLY delete all soft-deleted items and users. (You should make a backup first, just to be safe.)',
|
'confirm_purge_help' => 'Introduzca el texto "DELETE" en el cuadro de abajo para purgar sus registros borrados. Esta acción no se puede deshacer y borrará PERMANENTAMENTE todos los elementos y usuarios eliminados. (Se recomienda hacer una copia de seguridad previamente, para estar seguro.)',
|
||||||
'custom_css' => 'CSS Personalizado',
|
'custom_css' => 'CSS Personalizado',
|
||||||
'custom_css_help' => 'Ingrese cualquier CSS personalizado que desee utilizar. No incluya tags como: <style></style>.',
|
'custom_css_help' => 'Ingrese cualquier CSS personalizado que desee utilizar. No incluya tags como: <style></style>.',
|
||||||
'custom_forgot_pass_url' => 'Reestablecer URL de Contraseña Personalizada',
|
'custom_forgot_pass_url' => 'Reestablecer URL de Contraseña Personalizada',
|
||||||
|
@ -48,7 +48,7 @@ return array(
|
||||||
'eula_settings' => 'Configuración EULA',
|
'eula_settings' => 'Configuración EULA',
|
||||||
'eula_markdown' => 'Este EULS permite <a href="https://help.github.com/articles/github-flavored-markdown/">makrdown estilo Github</a>.',
|
'eula_markdown' => 'Este EULS permite <a href="https://help.github.com/articles/github-flavored-markdown/">makrdown estilo Github</a>.',
|
||||||
'favicon' => 'Favicon',
|
'favicon' => 'Favicon',
|
||||||
'favicon_format' => 'Accepted filetypes are ico, png, and gif. Other image formats may not work in all browsers.',
|
'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.',
|
||||||
'favicon_size' => 'Los favicons deben ser imágenes cuadradas, de 16x16 píxeles.',
|
'favicon_size' => 'Los favicons deben ser imágenes cuadradas, de 16x16 píxeles.',
|
||||||
'footer_text' => 'Texto Adicional de Pie de Página ',
|
'footer_text' => 'Texto Adicional de Pie de Página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el formato flavored de GitHub</a>. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces son permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el formato flavored de GitHub</a>. Saltos de línea, cabeceras, imágenes, etc, pueden resultar impredecibles.',
|
||||||
|
@ -57,7 +57,7 @@ return array(
|
||||||
'header_color' => 'Color de encabezado',
|
'header_color' => 'Color de encabezado',
|
||||||
'info' => 'Estos parámetros permirten personalizar ciertos aspectos de la aplicación.',
|
'info' => 'Estos parámetros permirten personalizar ciertos aspectos de la aplicación.',
|
||||||
'label_logo' => 'Logo de etiqueta',
|
'label_logo' => 'Logo de etiqueta',
|
||||||
'label_logo_size' => 'Square logos look best - will be displayed in the top right of each asset label. ',
|
'label_logo_size' => 'Los logos cuadrados se ven mejor - se mostrarán en la parte superior derecha de cada etiqueta de activo. ',
|
||||||
'laravel' => 'Versión de Laravel',
|
'laravel' => 'Versión de Laravel',
|
||||||
'ldap_enabled' => 'LDAP activado',
|
'ldap_enabled' => 'LDAP activado',
|
||||||
'ldap_integration' => 'Integración LDAP',
|
'ldap_integration' => 'Integración LDAP',
|
||||||
|
@ -99,7 +99,7 @@ return array(
|
||||||
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
||||||
'login_remote_user_custom_logout_url_help' => 'Sí se especifica un URL, los usuarios serán redireccionados a este URL una vez que cierren sesión en Snipe-TI. Esto es útil para cerrar sesiones de usuario de su Authentication Provider de forma correcta.',
|
'login_remote_user_custom_logout_url_help' => 'Sí se especifica un URL, los usuarios serán redireccionados a este URL una vez que cierren sesión en Snipe-TI. Esto es útil para cerrar sesiones de usuario de su Authentication Provider de forma correcta.',
|
||||||
'login_remote_user_header_name_text' => 'Custom user name header',
|
'login_remote_user_header_name_text' => 'Custom user name header',
|
||||||
'login_remote_user_header_name_help' => 'Use the specified header instead of REMOTE_USER',
|
'login_remote_user_header_name_help' => 'Usar la cabecera especificada en lugar de REMOTE_USER',
|
||||||
'logo' => 'Logo',
|
'logo' => 'Logo',
|
||||||
'logo_print_assets' => 'Usar en Impresión',
|
'logo_print_assets' => 'Usar en Impresión',
|
||||||
'logo_print_assets_help' => 'Usar marca en la lista imprimible de equipos',
|
'logo_print_assets_help' => 'Usar marca en la lista imprimible de equipos',
|
||||||
|
@ -114,20 +114,20 @@ return array(
|
||||||
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
||||||
'pwd_secure_complexity_help' => 'Seleccione las reglas de complejidad de las contraseñas que desee aplicar.',
|
'pwd_secure_complexity_help' => 'Seleccione las reglas de complejidad de las contraseñas que desee aplicar.',
|
||||||
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
||||||
'pwd_secure_min_help' => 'Minimum permitted value is 8',
|
'pwd_secure_min_help' => 'El valor mínimo permitido es 8',
|
||||||
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
||||||
'pwd_secure_uncommon_help' => 'Esto impedirá que los usuarios usen contraseñas comunes de las 10,000 contraseñas principales que se notifican en las infracciones.',
|
'pwd_secure_uncommon_help' => 'Esto impedirá que los usuarios usen contraseñas comunes de las 10,000 contraseñas principales que se notifican en las infracciones.',
|
||||||
'qr_help' => 'Activa Códigos QR antes para poder ver esto',
|
'qr_help' => 'Activa Códigos QR antes para poder ver esto',
|
||||||
'qr_text' => 'Texto Código QR',
|
'qr_text' => 'Texto Código QR',
|
||||||
'saml_enabled' => 'SAML enabled',
|
'saml_enabled' => 'SAML activado',
|
||||||
'saml_integration' => 'SAML Integration',
|
'saml_integration' => 'Integración SAML',
|
||||||
'saml_sp_entityid' => 'Entity ID',
|
'saml_sp_entityid' => 'ID de la entidad',
|
||||||
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
||||||
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
||||||
'saml_sp_x509cert' => 'Certificado público',
|
'saml_sp_x509cert' => 'Certificado público',
|
||||||
'saml_idp_metadata' => 'SAML IdP Metadata',
|
'saml_idp_metadata' => 'SAML IdP Metadata',
|
||||||
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
||||||
'saml_attr_mapping_username' => 'Attribute Mapping - Username',
|
'saml_attr_mapping_username' => 'Mapeo de Atributos - Nombre de Usuario',
|
||||||
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
||||||
'saml_forcelogin_label' => 'SAML Force Login',
|
'saml_forcelogin_label' => 'SAML Force Login',
|
||||||
'saml_forcelogin' => 'Make SAML the primary login',
|
'saml_forcelogin' => 'Make SAML the primary login',
|
||||||
|
@ -218,5 +218,5 @@ return array(
|
||||||
'unique_serial' => 'Números de serie únicos',
|
'unique_serial' => 'Números de serie únicos',
|
||||||
'unique_serial_help_text' => 'Al marcar esta casilla se aplicará una restricción única en los seriales de los equipos',
|
'unique_serial_help_text' => 'Al marcar esta casilla se aplicará una restricción única en los seriales de los equipos',
|
||||||
'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros',
|
'zerofill_count' => 'Longitud de etiquetas de activos, incluyendo relleno de ceros',
|
||||||
'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.',
|
'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.',
|
||||||
);
|
);
|
||||||
|
|
|
@ -19,7 +19,7 @@ return array(
|
||||||
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
||||||
'print_assigned' => 'Imprimir todos los Asignados',
|
'print_assigned' => 'Imprimir todos los Asignados',
|
||||||
'software_user' => 'Software asignado a :name',
|
'software_user' => 'Software asignado a :name',
|
||||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para enviarle credenciales. Únicamente pueden enviarse credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
|
||||||
'view_user' => 'Ver Usuario :name',
|
'view_user' => 'Ver Usuario :name',
|
||||||
'usercsv' => 'Archivo CSV',
|
'usercsv' => 'Archivo CSV',
|
||||||
'two_factor_admin_optin_help' => 'La actual configuración de administración permite cumplimiento selectivo de autenticación de dos factores. ',
|
'two_factor_admin_optin_help' => 'La actual configuración de administración permite cumplimiento selectivo de autenticación de dos factores. ',
|
||||||
|
|
|
@ -12,7 +12,7 @@ return array(
|
||||||
'insufficient_permissions' => 'No tiene permiso.',
|
'insufficient_permissions' => 'No tiene permiso.',
|
||||||
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.',
|
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberá restaurarlo para editarlo o asignarle nuevos Equipos.',
|
||||||
'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.',
|
'ldap_not_configured' => 'La integración con LDAP no ha sido configurada para esta instalación.',
|
||||||
'password_resets_sent' => 'The selected users who are activated and have a valid email addresses have been sent a password reset link.',
|
'password_resets_sent' => 'A los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida se les ha enviado un enlace de restablecimiento de contraseña.',
|
||||||
|
|
||||||
|
|
||||||
'success' => array(
|
'success' => array(
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
'bulkaudit' => 'Auditoría masiva',
|
'bulkaudit' => 'Auditoría masiva',
|
||||||
'bulkaudit_status' => 'Estado de auditoría',
|
'bulkaudit_status' => 'Estado de auditoría',
|
||||||
'bulk_checkout' => 'Procesar en Lote',
|
'bulk_checkout' => 'Procesar en Lote',
|
||||||
'bystatus' => 'by Status',
|
'bystatus' => 'por Estado',
|
||||||
'cancel' => 'Cancelar',
|
'cancel' => 'Cancelar',
|
||||||
'categories' => 'Categorías',
|
'categories' => 'Categorías',
|
||||||
'category' => 'Categoría',
|
'category' => 'Categoría',
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
'created' => 'Artículo creado',
|
'created' => 'Artículo creado',
|
||||||
'created_asset' => 'equipo creado',
|
'created_asset' => 'equipo creado',
|
||||||
'created_at' => 'Creado el',
|
'created_at' => 'Creado el',
|
||||||
'record_created' => 'Record Created',
|
'record_created' => 'Registro Creado',
|
||||||
'updated_at' => 'Actualizado en',
|
'updated_at' => 'Actualizado en',
|
||||||
'currency' => '€', // this is deprecated
|
'currency' => '€', // this is deprecated
|
||||||
'current' => 'Actual',
|
'current' => 'Actual',
|
||||||
|
@ -79,7 +79,7 @@
|
||||||
'depreciation_report' => 'Informe de amortización',
|
'depreciation_report' => 'Informe de amortización',
|
||||||
'details' => 'Detalles',
|
'details' => 'Detalles',
|
||||||
'download' => 'Descargar',
|
'download' => 'Descargar',
|
||||||
'download_all' => 'Download All',
|
'download_all' => 'Descargar todo',
|
||||||
'depreciation' => 'Amortización',
|
'depreciation' => 'Amortización',
|
||||||
'editprofile' => 'Editar Perfil',
|
'editprofile' => 'Editar Perfil',
|
||||||
'eol' => 'EOL',
|
'eol' => 'EOL',
|
||||||
|
@ -90,11 +90,11 @@
|
||||||
'firstname_lastname_format' => 'Primer Nombre y Apellido (jane.smith@ejemplo.com)',
|
'firstname_lastname_format' => 'Primer Nombre y Apellido (jane.smith@ejemplo.com)',
|
||||||
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
||||||
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
||||||
'firstintial_dot_lastname_format' => 'First Initial Last Name (j.smith@example.com)',
|
'firstintial_dot_lastname_format' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'first' => 'Primero',
|
'first' => 'Primero',
|
||||||
'firstnamelastname' => 'First Name Last Name (janesmith@example.com)',
|
'firstnamelastname' => 'Nombre Apellido (jane.smith@ejemplo.com)',
|
||||||
'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)',
|
'lastname_firstinitial' => 'Apellido Inicial (smith_j@ejemplo.com)',
|
||||||
'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)',
|
'firstinitial.lastname' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
||||||
'first_name' => 'Nombre',
|
'first_name' => 'Nombre',
|
||||||
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
||||||
|
@ -114,7 +114,7 @@
|
||||||
'image_upload' => 'Enviar imagen',
|
'image_upload' => 'Enviar imagen',
|
||||||
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif y svg. El tamaño máximo permitido es :size.',
|
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif y svg. El tamaño máximo permitido es :size.',
|
||||||
'import' => 'Importar',
|
'import' => 'Importar',
|
||||||
'importing' => 'Importing',
|
'importing' => 'Importando',
|
||||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||||
'import-history' => 'Historial de Importación',
|
'import-history' => 'Historial de Importación',
|
||||||
'asset_maintenance' => 'Mantenimiento de Equipo',
|
'asset_maintenance' => 'Mantenimiento de Equipo',
|
||||||
|
|
|
@ -73,7 +73,7 @@ return array(
|
||||||
'Asset_Checkin_Notification' => 'Activo devuelto',
|
'Asset_Checkin_Notification' => 'Activo devuelto',
|
||||||
'License_Checkin_Notification' => 'Licencia devuelta',
|
'License_Checkin_Notification' => 'Licencia devuelta',
|
||||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
|
||||||
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
||||||
'your_assets' => 'Ver tus activos'
|
'your_assets' => 'Ver tus activos'
|
||||||
);
|
);
|
||||||
|
|
|
@ -20,6 +20,6 @@ return array(
|
||||||
'title' => 'Activo ',
|
'title' => 'Activo ',
|
||||||
'image' => 'Imagen de dispositivo',
|
'image' => 'Imagen de dispositivo',
|
||||||
'days_without_acceptance' => 'Días sin Aceptación',
|
'days_without_acceptance' => 'Días sin Aceptación',
|
||||||
'monthly_depreciation' => 'Monthly Depreciation'
|
'monthly_depreciation' => 'Depreciación mensual'
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
|
@ -8,7 +8,7 @@ return array(
|
||||||
'owner_doesnt_match_asset' => 'El activo al que estás intentando asociar con esta licencia está asignado a un usuario diferente al de la persona seleccionada para retirar.',
|
'owner_doesnt_match_asset' => 'El activo al que estás intentando asociar con esta licencia está asignado a un usuario diferente al de la persona seleccionada para retirar.',
|
||||||
'assoc_users' => 'Esta licencia está actualmente asignada a un usuario y no puede ser borrada. Por favor, revisa la licencia primero y luego intenta borrarla. ',
|
'assoc_users' => 'Esta licencia está actualmente asignada a un usuario y no puede ser borrada. Por favor, revisa la licencia primero y luego intenta borrarla. ',
|
||||||
'select_asset_or_person' => 'Debes seleccionar un activo o un usuario, pero no ambos.',
|
'select_asset_or_person' => 'Debes seleccionar un activo o un usuario, pero no ambos.',
|
||||||
'not_found' => 'License not found',
|
'not_found' => 'Licencia no encontrada',
|
||||||
|
|
||||||
|
|
||||||
'create' => array(
|
'create' => array(
|
||||||
|
|
|
@ -4,9 +4,9 @@ return array(
|
||||||
'ad' => 'Directorio Activo',
|
'ad' => 'Directorio Activo',
|
||||||
'ad_domain' => 'Dominio del Directorio Activo',
|
'ad_domain' => 'Dominio del Directorio Activo',
|
||||||
'ad_domain_help' => 'Este es a veces el mismo que el correo electrónico de dominio, pero no siempre.',
|
'ad_domain_help' => 'Este es a veces el mismo que el correo electrónico de dominio, pero no siempre.',
|
||||||
'ad_append_domain_label' => 'Append domain name',
|
'ad_append_domain_label' => 'Añadir nombre de dominio',
|
||||||
'ad_append_domain' => 'Append domain name to username field',
|
'ad_append_domain' => 'Añadir nombre de dominio al campo de nombre de usuario',
|
||||||
'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".' ,
|
'ad_append_domain_help' => 'El usuario no necesita escribir "username@domain.local", puede escribir únicamente "username".' ,
|
||||||
'admin_cc_email' => 'Email CC',
|
'admin_cc_email' => 'Email CC',
|
||||||
'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.',
|
'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.',
|
||||||
'is_ad' => 'Este es un servidor de Directorio Activo',
|
'is_ad' => 'Este es un servidor de Directorio Activo',
|
||||||
|
@ -25,7 +25,7 @@ return array(
|
||||||
'backups' => 'Copias de Seguridad',
|
'backups' => 'Copias de Seguridad',
|
||||||
'barcode_settings' => 'Configuración del Código de Barras',
|
'barcode_settings' => 'Configuración del Código de Barras',
|
||||||
'confirm_purge' => 'Confirmar Purga',
|
'confirm_purge' => 'Confirmar Purga',
|
||||||
'confirm_purge_help' => 'Enter the text "DELETE" in the box below to purge your deleted records. This action cannot be undone and will PERMANENTLY delete all soft-deleted items and users. (You should make a backup first, just to be safe.)',
|
'confirm_purge_help' => 'Introduzca el texto "DELETE" en el cuadro de abajo para purgar sus registros borrados. Esta acción no se puede deshacer y borrará PERMANENTAMENTE todos los elementos y usuarios eliminados. (Se recomienda hacer una copia de seguridad previamente, para estar seguro.)',
|
||||||
'custom_css' => 'CSS Personalizado',
|
'custom_css' => 'CSS Personalizado',
|
||||||
'custom_css_help' => 'Introduce cualquier CSS personalizado que quieras utilizar. No incluyas las etiquetas <style></style> .',
|
'custom_css_help' => 'Introduce cualquier CSS personalizado que quieras utilizar. No incluyas las etiquetas <style></style> .',
|
||||||
'custom_forgot_pass_url' => 'Personalizar URL de Restablecimiento de Contraseña',
|
'custom_forgot_pass_url' => 'Personalizar URL de Restablecimiento de Contraseña',
|
||||||
|
@ -41,23 +41,23 @@ return array(
|
||||||
'display_eol' => 'Mostrar Fin de Vida en la vista de tabla',
|
'display_eol' => 'Mostrar Fin de Vida en la vista de tabla',
|
||||||
'display_qr' => 'Mostrar Códigos QR',
|
'display_qr' => 'Mostrar Códigos QR',
|
||||||
'display_alt_barcode' => 'Mostrar código de barras 1D',
|
'display_alt_barcode' => 'Mostrar código de barras 1D',
|
||||||
'email_logo' => 'Email Logo',
|
'email_logo' => 'Logo de Email',
|
||||||
'barcode_type' => 'Tipo de código de barras 2D',
|
'barcode_type' => 'Tipo de código de barras 2D',
|
||||||
'alt_barcode_type' => 'Tipo de código de barras 1D',
|
'alt_barcode_type' => 'Tipo de código de barras 1D',
|
||||||
'email_logo_size' => 'Square logos in email look best. ',
|
'email_logo_size' => 'Los logotipos cuadrados en el correo electrónico se ven mejor. ',
|
||||||
'eula_settings' => 'Configuración de Licencia',
|
'eula_settings' => 'Configuración de Licencia',
|
||||||
'eula_markdown' => 'Esta licencia permite <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>.',
|
'eula_markdown' => 'Esta licencia permite <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>.',
|
||||||
'favicon' => 'Favicon',
|
'favicon' => 'Favicon',
|
||||||
'favicon_format' => 'Accepted filetypes are ico, png, and gif. Other image formats may not work in all browsers.',
|
'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Otros formatos de imagen pueden no funcionar en todos los navegadores.',
|
||||||
'favicon_size' => 'Favicons should be square images, 16x16 pixels.',
|
'favicon_size' => 'Los Favicons deben ser imágenes cuadradas, 16x16 píxeles.',
|
||||||
'footer_text' => 'Texto adicional de pie de página ',
|
'footer_text' => 'Texto adicional de pie de página ',
|
||||||
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces están permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el markdown estilo Github</a>. Saltos de línea, cabeceras, imágenes, etc., pueden dar resultados impredecibles.',
|
'footer_text_help' => 'Este texto aparecerá en el lado derecho del pie de página. Los enlaces están permitidos usando <a href="https://help.github.com/articles/github-flavored-markdown/">el markdown estilo Github</a>. Saltos de línea, cabeceras, imágenes, etc., pueden dar resultados impredecibles.',
|
||||||
'general_settings' => 'Configuración General',
|
'general_settings' => 'Configuración General',
|
||||||
'generate_backup' => 'Generar Respaldo',
|
'generate_backup' => 'Generar Respaldo',
|
||||||
'header_color' => 'Color de Encabezado',
|
'header_color' => 'Color de Encabezado',
|
||||||
'info' => 'Estos ajustes te dejan personalizar ciertos aspectos de tu instalación.',
|
'info' => 'Estos ajustes te dejan personalizar ciertos aspectos de tu instalación.',
|
||||||
'label_logo' => 'Label Logo',
|
'label_logo' => 'Logo de etiqueta',
|
||||||
'label_logo_size' => 'Square logos look best - will be displayed in the top right of each asset label. ',
|
'label_logo_size' => 'Los logos cuadrados se ven mejor - se mostrarán en la parte superior derecha de cada etiqueta de activo. ',
|
||||||
'laravel' => 'Versión de Lavarel',
|
'laravel' => 'Versión de Lavarel',
|
||||||
'ldap_enabled' => 'LDAP activado',
|
'ldap_enabled' => 'LDAP activado',
|
||||||
'ldap_integration' => 'Integración LDAP',
|
'ldap_integration' => 'Integración LDAP',
|
||||||
|
@ -99,7 +99,7 @@ return array(
|
||||||
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
'login_remote_user_custom_logout_url_text' => 'URL de cierre de sesión personalizado',
|
||||||
'login_remote_user_custom_logout_url_help' => 'Si se proporciona una url aquí, los usuarios serán redirigidos a esta URL después de que el usuario cierre la sesión de Snipe-IT. Esto es útil para cerrar correctamente las sesiones de usuario de su proveedor de autenticación.',
|
'login_remote_user_custom_logout_url_help' => 'Si se proporciona una url aquí, los usuarios serán redirigidos a esta URL después de que el usuario cierre la sesión de Snipe-IT. Esto es útil para cerrar correctamente las sesiones de usuario de su proveedor de autenticación.',
|
||||||
'login_remote_user_header_name_text' => 'Custom user name header',
|
'login_remote_user_header_name_text' => 'Custom user name header',
|
||||||
'login_remote_user_header_name_help' => 'Use the specified header instead of REMOTE_USER',
|
'login_remote_user_header_name_help' => 'Usar la cabecera especificada en lugar de REMOTE_USER',
|
||||||
'logo' => 'Logo',
|
'logo' => 'Logo',
|
||||||
'logo_print_assets' => 'Utilizar en impresión',
|
'logo_print_assets' => 'Utilizar en impresión',
|
||||||
'logo_print_assets_help' => 'Utilice la marca en las listas de activos imprimibles ',
|
'logo_print_assets_help' => 'Utilice la marca en las listas de activos imprimibles ',
|
||||||
|
@ -114,20 +114,20 @@ return array(
|
||||||
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
'pwd_secure_complexity' => 'Complejidad de la contraseña',
|
||||||
'pwd_secure_complexity_help' => 'Selecciona las reglas de complejidad que quieras aplicar.',
|
'pwd_secure_complexity_help' => 'Selecciona las reglas de complejidad que quieras aplicar.',
|
||||||
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
'pwd_secure_min' => 'Caracteres mínimos de contraseña',
|
||||||
'pwd_secure_min_help' => 'Minimum permitted value is 8',
|
'pwd_secure_min_help' => 'El valor mínimo permitido es 8',
|
||||||
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
'pwd_secure_uncommon' => 'Evitar contraseñas comunes',
|
||||||
'pwd_secure_uncommon_help' => 'Esto impedirá a los usuarios de usar contraseñas comunes de el top 10.000 de contraseñas que se notifiquen en las infracciones.',
|
'pwd_secure_uncommon_help' => 'Esto impedirá a los usuarios de usar contraseñas comunes de el top 10.000 de contraseñas que se notifiquen en las infracciones.',
|
||||||
'qr_help' => 'Activa Códigos QR primero para establecer esto',
|
'qr_help' => 'Activa Códigos QR primero para establecer esto',
|
||||||
'qr_text' => 'Texto del Código QR',
|
'qr_text' => 'Texto del Código QR',
|
||||||
'saml_enabled' => 'SAML enabled',
|
'saml_enabled' => 'SAML activado',
|
||||||
'saml_integration' => 'SAML Integration',
|
'saml_integration' => 'Integración SAML',
|
||||||
'saml_sp_entityid' => 'Entity ID',
|
'saml_sp_entityid' => 'ID de la entidad',
|
||||||
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
||||||
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
||||||
'saml_sp_x509cert' => 'Public Certificate',
|
'saml_sp_x509cert' => 'Certificado público',
|
||||||
'saml_idp_metadata' => 'SAML IdP Metadata',
|
'saml_idp_metadata' => 'SAML IdP Metadata',
|
||||||
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
|
||||||
'saml_attr_mapping_username' => 'Attribute Mapping - Username',
|
'saml_attr_mapping_username' => 'Mapeo de Atributos - Nombre de Usuario',
|
||||||
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
||||||
'saml_forcelogin_label' => 'SAML Force Login',
|
'saml_forcelogin_label' => 'SAML Force Login',
|
||||||
'saml_forcelogin' => 'Make SAML the primary login',
|
'saml_forcelogin' => 'Make SAML the primary login',
|
||||||
|
@ -218,5 +218,5 @@ return array(
|
||||||
'unique_serial' => 'Números de serie únicos',
|
'unique_serial' => 'Números de serie únicos',
|
||||||
'unique_serial_help_text' => 'Al marcar esta casilla se forzarán números de serie únicos a los activos',
|
'unique_serial_help_text' => 'Al marcar esta casilla se forzarán números de serie únicos a los activos',
|
||||||
'zerofill_count' => 'Longitud de las etiquetas de activos, incluyendo relleno de ceros',
|
'zerofill_count' => 'Longitud de las etiquetas de activos, incluyendo relleno de ceros',
|
||||||
'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.',
|
'username_format_help' => 'Esta configuración sólo será utilizada por el proceso de importación si no se proporciona un nombre de usuario y tenemos que generar un nombre de usuario para usted.',
|
||||||
);
|
);
|
||||||
|
|
|
@ -19,7 +19,7 @@ return array(
|
||||||
'ldap_config_text' => 'Los parámetros de configuración LDAP pueden ser encontrados en Admin > Settings. La ubicación (opcional) seleccionada será establecida para todos los usuarios importados.',
|
'ldap_config_text' => 'Los parámetros de configuración LDAP pueden ser encontrados en Admin > Settings. La ubicación (opcional) seleccionada será establecida para todos los usuarios importados.',
|
||||||
'print_assigned' => 'Imprimir Todos los Asignados',
|
'print_assigned' => 'Imprimir Todos los Asignados',
|
||||||
'software_user' => 'Software Asignado a :name',
|
'software_user' => 'Software Asignado a :name',
|
||||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para enviarle credenciales. Únicamente pueden enviarse credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
|
||||||
'view_user' => 'Ver Usuario :name',
|
'view_user' => 'Ver Usuario :name',
|
||||||
'usercsv' => 'Archivo CSV',
|
'usercsv' => 'Archivo CSV',
|
||||||
'two_factor_admin_optin_help' => 'Tus configuraciones de administrador actuales permiten cumplimiento selectivo de autenticación de dos factores. ',
|
'two_factor_admin_optin_help' => 'Tus configuraciones de administrador actuales permiten cumplimiento selectivo de autenticación de dos factores. ',
|
||||||
|
|
|
@ -12,7 +12,7 @@ return array(
|
||||||
'insufficient_permissions' => 'Permisos insuficientes.',
|
'insufficient_permissions' => 'Permisos insuficientes.',
|
||||||
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberás restaurar este usuario para editarlo o asignarle nuevos activos.',
|
'user_deleted_warning' => 'Este usuario ha sido eliminado. Deberás restaurar este usuario para editarlo o asignarle nuevos activos.',
|
||||||
'ldap_not_configured' => 'La integración LDAP no ha sido configurada para esta instalación.',
|
'ldap_not_configured' => 'La integración LDAP no ha sido configurada para esta instalación.',
|
||||||
'password_resets_sent' => 'The selected users who are activated and have a valid email addresses have been sent a password reset link.',
|
'password_resets_sent' => 'A los usuarios seleccionados que están activados y tienen una dirección de correo electrónico válida se les ha enviado un enlace de restablecimiento de contraseña.',
|
||||||
|
|
||||||
|
|
||||||
'success' => array(
|
'success' => array(
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
'bulkaudit' => 'Auditoría Masiva',
|
'bulkaudit' => 'Auditoría Masiva',
|
||||||
'bulkaudit_status' => 'Auditar Estado',
|
'bulkaudit_status' => 'Auditar Estado',
|
||||||
'bulk_checkout' => 'Asignación Masiva',
|
'bulk_checkout' => 'Asignación Masiva',
|
||||||
'bystatus' => 'by Status',
|
'bystatus' => 'por Estado',
|
||||||
'cancel' => 'Cancelar',
|
'cancel' => 'Cancelar',
|
||||||
'categories' => 'Categorías',
|
'categories' => 'Categorías',
|
||||||
'category' => 'Categoría',
|
'category' => 'Categoría',
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
'created' => 'Elemento Creado',
|
'created' => 'Elemento Creado',
|
||||||
'created_asset' => 'activo creado',
|
'created_asset' => 'activo creado',
|
||||||
'created_at' => 'Creado El',
|
'created_at' => 'Creado El',
|
||||||
'record_created' => 'Record Created',
|
'record_created' => 'Registro Creado',
|
||||||
'updated_at' => 'Actualizado El',
|
'updated_at' => 'Actualizado El',
|
||||||
'currency' => '$', // this is deprecated
|
'currency' => '$', // this is deprecated
|
||||||
'current' => 'Actual',
|
'current' => 'Actual',
|
||||||
|
@ -79,7 +79,7 @@
|
||||||
'depreciation_report' => 'Reporte de Depreciación',
|
'depreciation_report' => 'Reporte de Depreciación',
|
||||||
'details' => 'Detalles',
|
'details' => 'Detalles',
|
||||||
'download' => 'Descarga',
|
'download' => 'Descarga',
|
||||||
'download_all' => 'Download All',
|
'download_all' => 'Descargar todo',
|
||||||
'depreciation' => 'Depreciación',
|
'depreciation' => 'Depreciación',
|
||||||
'editprofile' => 'Editar tu Perfil',
|
'editprofile' => 'Editar tu Perfil',
|
||||||
'eol' => 'Fin de Vida',
|
'eol' => 'Fin de Vida',
|
||||||
|
@ -90,11 +90,11 @@
|
||||||
'firstname_lastname_format' => 'Nombre y Apellido (jane.smith@example.com)',
|
'firstname_lastname_format' => 'Nombre y Apellido (jane.smith@example.com)',
|
||||||
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
'firstname_lastname_underscore_format' => 'Primer Nombre y Apellido (jane_smith@example.com)',
|
||||||
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
'lastnamefirstinitial_format' => 'Apellido First Initial (smithj@example.com)',
|
||||||
'firstintial_dot_lastname_format' => 'First Initial Last Name (j.smith@example.com)',
|
'firstintial_dot_lastname_format' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'first' => 'Primer',
|
'first' => 'Primer',
|
||||||
'firstnamelastname' => 'First Name Last Name (janesmith@example.com)',
|
'firstnamelastname' => 'Nombre Apellido (jane.smith@ejemplo.com)',
|
||||||
'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)',
|
'lastname_firstinitial' => 'Apellido Inicial (smith_j@ejemplo.com)',
|
||||||
'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)',
|
'firstinitial.lastname' => 'Inicial Apellido (j.smith@ejemplo.com)',
|
||||||
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
||||||
'first_name' => 'Nombre',
|
'first_name' => 'Nombre',
|
||||||
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
'first_name_format' => 'Primer Nombre (jane@ejemplo.com)',
|
||||||
|
@ -114,7 +114,7 @@
|
||||||
'image_upload' => 'Subir Imagen',
|
'image_upload' => 'Subir Imagen',
|
||||||
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif, y svg. El tamaño máximo permitido es :size.',
|
'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, png, gif, y svg. El tamaño máximo permitido es :size.',
|
||||||
'import' => 'Importar',
|
'import' => 'Importar',
|
||||||
'importing' => 'Importing',
|
'importing' => 'Importando',
|
||||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||||
'import-history' => 'Importar Historial',
|
'import-history' => 'Importar Historial',
|
||||||
'asset_maintenance' => 'Mantenimiento de Activos',
|
'asset_maintenance' => 'Mantenimiento de Activos',
|
||||||
|
|
|
@ -73,7 +73,7 @@ return array(
|
||||||
'Asset_Checkin_Notification' => 'Activo devuelto',
|
'Asset_Checkin_Notification' => 'Activo devuelto',
|
||||||
'License_Checkin_Notification' => 'Licencia devuelta',
|
'License_Checkin_Notification' => 'Licencia devuelta',
|
||||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
|
||||||
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
'Expected_Checkin_Date' => 'Un activo asignado a ti debe ser devuelto en :date',
|
||||||
'your_assets' => 'Ver tus activos'
|
'your_assets' => 'Ver tus activos'
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'accessory_category' => 'Lisävarusteluokka',
|
'accessory_category' => 'Kategoria',
|
||||||
'accessory_name' => 'Lisävarusteen nimi',
|
'accessory_name' => 'Lisävarusteen nimi',
|
||||||
'checkout' => 'Checkout-lisävaruste',
|
'checkout' => 'Lisävarusteen luovutus',
|
||||||
'checkin' => 'Checkin-lisävaruste',
|
'checkin' => 'Lisävarusteen palautus',
|
||||||
'create' => 'Luo lisävaruste',
|
'create' => 'Luo lisävaruste',
|
||||||
'edit' => 'Muokkaa lisävarustetta',
|
'edit' => 'Muokkaa lisävarustetta',
|
||||||
'eula_text' => 'EULA-luokka',
|
'eula_text' => 'Kategorian käyttöehdot',
|
||||||
'eula_text_help' => 'Tässä kentässä voit muokata EULAs-asetuksiasi tietyn tyyppisille varoille. Jos sinulla on vain yksi käyttöoikeussopimus kaikille omaisuuksillesi, voit tarkistaa alla olevan kentän käyttämällä ensisijaista oletusarvoa.',
|
'eula_text_help' => 'Tässä kentässä voit muokata käyttöehtojasi tietyn tyyppisille laitteille. Jos sinulla on vain yksi käyttöoikeussopimus kaikille laitteillesi, voit valita yleisen käyttöehdon valitsemalla alla olevan ruudun.',
|
||||||
'require_acceptance' => 'Vaadittava käyttäjille vahvistetaan tämän luokan varojen hyväksyminen.',
|
'require_acceptance' => 'Vaadi käyttäjiä hyväksymään tämän kategorian kohteet.',
|
||||||
'no_default_eula' => 'EU: n ensisijainen oletuslauseke ei löytynyt. Lisää yksi asetuksiin.',
|
'no_default_eula' => 'Yleisiä käyttöehtoja ei löytynyt. Voit lisätä ne asetuksista.',
|
||||||
'total' => 'Yhteensä',
|
'total' => 'Yhteensä',
|
||||||
'remaining' => 'hyödyttää',
|
'remaining' => 'Saatavilla',
|
||||||
'update' => 'Päivitä lisävaruste',
|
'update' => 'Lisävarusteen päivittäminen',
|
||||||
'use_default_eula' => 'Käytä sen sijaan <a href="#" data-toggle="modal" data-target="#eulaModal">primary-oletusarvoa EULA</a>.',
|
'use_default_eula' => 'Käytä <a href="#" data-toggle="modal" data-target="#eulaModal">yleisiä käyttöehtoja</a>.',
|
||||||
'use_default_eula_disabled' => '<del>Käytä ensisijaisen EULA: n sijaan.</del> Et ole määritetty ensisijaista EULA-asetusta. Lisää yksi asetuksiin.',
|
'use_default_eula_disabled' => '<del>Käytä yleisiä käyttöehtoja.</del> Et ole vielä määritellyt yleisiä käyttöehtoja, voit lisätä ne asetuksista.',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
|
|
||||||
'does_not_exist' => 'The accessory [:id] does not exist.',
|
'does_not_exist' => 'Lisävarustetta [:id] ei ole.',
|
||||||
'assoc_users' => 'Tällä lisävarusteella on tällä hetkellä: laskea kohteet, jotka on tarkistettu käyttäjille. Tarkista lisävarusteet ja yritä uudelleen.',
|
'assoc_users' => 'Lisävaruste on tällä hetkellä uloskuitattuna :count käyttäjille. Tarkista lisävarusteiden tila ja yritä uudelleen. ',
|
||||||
|
|
||||||
'create' => array(
|
'create' => array(
|
||||||
'error' => 'Lisävarustetta ei luotu, yritä uudelleen.',
|
'error' => 'Lisävarustetta ei luotu, yritä uudelleen.',
|
||||||
|
@ -17,19 +17,19 @@ return array(
|
||||||
|
|
||||||
'delete' => array(
|
'delete' => array(
|
||||||
'confirm' => 'Haluatko varmasti poistaa tämän lisävarusteen?',
|
'confirm' => 'Haluatko varmasti poistaa tämän lisävarusteen?',
|
||||||
'error' => 'Ongelma poistaa lisäosan. Yritä uudelleen.',
|
'error' => 'Lisävarusteen poistaminen ei onnistunut. Yritä uudelleen.',
|
||||||
'success' => 'Lisävaruste poistettiin onnistuneesti.'
|
'success' => 'Lisävaruste poistettiin onnistuneesti.'
|
||||||
),
|
),
|
||||||
|
|
||||||
'checkout' => array(
|
'checkout' => array(
|
||||||
'error' => 'Lisävarustetta ei ole tarkistettu, yritä uudelleen',
|
'error' => 'Lisävarustetta ei luovutettu, yritä uudelleen',
|
||||||
'success' => 'Lisävaruste tarkistettiin onnistuneesti.',
|
'success' => 'Lisävaruste uloskuitattiin onnistuneesti.',
|
||||||
'user_does_not_exist' => 'Käyttäjä on virheellinen. Yritä uudelleen.'
|
'user_does_not_exist' => 'Käyttäjä on virheellinen. Yritä uudelleen.'
|
||||||
),
|
),
|
||||||
|
|
||||||
'checkin' => array(
|
'checkin' => array(
|
||||||
'error' => 'Lisävarustetta ei ole tarkistettu, yritä uudelleen',
|
'error' => 'Lisävarustetta ei palautettu, yritä uudelleen',
|
||||||
'success' => 'Lisävaruste tarkistettiin onnistuneesti.',
|
'success' => 'Lisävaruste palautettiin onnistuneesti.',
|
||||||
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'dl_csv' => 'Lataa CSV',
|
'dl_csv' => 'Lataa CSV',
|
||||||
'eula_text' => 'EULA',
|
'eula_text' => 'Käyttöehdot',
|
||||||
'id' => 'ID',
|
'id' => 'Tunnus',
|
||||||
'require_acceptance' => 'Hyväksyminen',
|
'require_acceptance' => 'Hyväksyminen',
|
||||||
'title' => 'Lisävarusteen nimi',
|
'title' => 'Lisävarusteen nimi',
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
'start_date' => 'Aloituspäivä',
|
'start_date' => 'Aloituspäivä',
|
||||||
'completion_date' => 'Valmis',
|
'completion_date' => 'Valmis',
|
||||||
'cost' => 'Kustannus',
|
'cost' => 'Kustannus',
|
||||||
'is_warranty' => 'Takuu parannetaan',
|
'is_warranty' => 'Takuun parannus',
|
||||||
'asset_maintenance_time' => 'Päivää',
|
'asset_maintenance_time' => 'Päivää',
|
||||||
'notes' => 'Muistiinpanot',
|
'notes' => 'Muistiinpanot',
|
||||||
'update' => 'Päivitä',
|
'update' => 'Päivitä',
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
'delete' => 'Poista laitteen huolto',
|
'delete' => 'Poista laitteen huolto',
|
||||||
'view' => 'Näytä laitteen huoltotiedot',
|
'view' => 'Näytä laitteen huoltotiedot',
|
||||||
'repair' => 'Korjaus',
|
'repair' => 'Korjaus',
|
||||||
'maintenance' => 'Huoltotila',
|
'maintenance' => 'Huolto',
|
||||||
'upgrade' => 'Päivitä',
|
'upgrade' => 'Päivitä',
|
||||||
'calibration' => 'Calibration',
|
'calibration' => 'Kalibrointi',
|
||||||
'software_support' => 'Software Support',
|
'software_support' => 'Ohjelmiston tuki',
|
||||||
'hardware_support' => 'Hardware Support',
|
'hardware_support' => 'Laitteiston tuki',
|
||||||
];
|
];
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue