diff --git a/.pa11yci.json b/.pa11yci.json index c33396dae1..73b84a8140 100644 --- a/.pa11yci.json +++ b/.pa11yci.json @@ -36,6 +36,20 @@ "screen capture tests/pa11y/admin-settings.png" ] }, + { + "url" : "https://snipe-it.test/admin/branding", + "actions" : [ + "navigate to https://snipe-it.test/admin/branding", + "screen capture tests/pa11y/admin-branding.png" + ] + }, + { + "url" : "https://snipe-it.test/admin/general", + "actions" : [ + "navigate to https://snipe-it.test/admin/general", + "screen capture tests/pa11y/admin-general.png" + ] + }, { "url" : "https://snipe-it.test/hardware/create", "actions" : [ @@ -85,6 +99,27 @@ "screen capture tests/pa11y/license-view.png" ] }, + { + "url" : "https://snipe-it.test/consumables", + "actions" : [ + "navigate to https://snipe-it.test/consumables", + "screen capture tests/pa11y/consumable-list.png" + ] + }, + { + "url" : "https://snipe-it.test/consumables/create", + "actions" : [ + "navigate to https://snipe-it.test/consumables/create", + "screen capture tests/pa11y/consumable-create.png" + ] + }, + { + "url" : "https://snipe-it.test/consumables/1", + "actions" : [ + "navigate to https://snipe-it.test/consumables/1", + "screen capture tests/pa11y/consumable-view.png" + ] + }, { "url" : "https://snipe-it.test/accessories", "actions" : [ @@ -98,6 +133,108 @@ "navigate to https://snipe-it.test/accessories/create", "screen capture tests/pa11y/accessory-create.png" ] + }, + { + "url" : "https://snipe-it.test/accessories/1", + "actions" : [ + "navigate to https://snipe-it.test/accessories/1", + "screen capture tests/pa11y/accessory-view.png" + ] + }, + { + "url" : "https://snipe-it.test/locations", + "actions" : [ + "navigate to https://snipe-it.test/locations", + "screen capture tests/pa11y/location-list.png" + ] + }, + { + "url" : "https://snipe-it.test/locations/create", + "actions" : [ + "navigate to https://snipe-it.test/locations/create", + "screen capture tests/pa11y/location-create.png" + ] + }, + { + "url" : "https://snipe-it.test/locations/1", + "actions" : [ + "navigate to https://snipe-it.test/locations/1", + "screen capture tests/pa11y/location-view.png" + ] + }, + + { + "url" : "https://snipe-it.test/models", + "actions" : [ + "navigate to https://snipe-it.test/models", + "screen capture tests/pa11y/model-list.png" + ] + }, + { + "url" : "https://snipe-it.test/models/create", + "actions" : [ + "navigate to https://snipe-it.test/models/create", + "screen capture tests/pa11y/model-create.png" + ] + }, + { + "url" : "https://snipe-it.test/models/1", + "actions" : [ + "navigate to https://snipe-it.test/models/1", + "screen capture tests/pa11y/model-view.png" + ] + }, + + { + "url" : "https://snipe-it.test/companies", + "actions" : [ + "navigate to https://snipe-it.test/companies", + "screen capture tests/pa11y/company-list.png" + ] + }, + { + "url" : "https://snipe-it.test/companies/create", + "actions" : [ + "navigate to https://snipe-it.test/companies/create", + "screen capture tests/pa11y/company-create.png" + ] + }, + { + "url" : "https://snipe-it.test/companies/1", + "actions" : [ + "navigate to https://snipe-it.test/companies/1", + "screen capture tests/pa11y/company-view.png" + ] + }, + + { + "url" : "https://snipe-it.test/departments", + "actions" : [ + "navigate to https://snipe-it.test/departments", + "screen capture tests/pa11y/department-list.png" + ] + }, + { + "url" : "https://snipe-it.test/departments/create", + "actions" : [ + "navigate to https://snipe-it.test/departments/create", + "screen capture tests/pa11y/department-create.png" + ] + }, + { + "url" : "https://snipe-it.test/departments/1", + "actions" : [ + "navigate to https://snipe-it.test/departments/1", + "screen capture tests/pa11y/department-view.png" + ] + }, + + { + "url" : "https://snipe-it.test/invalid-url", + "actions" : [ + "navigate to https://snipe-it.test/invalid-url", + "screen capture tests/pa11y/404.png" + ] } ] } \ No newline at end of file diff --git a/resources/lang/en-US/admin/hardware/form.php b/resources/lang/en-US/admin/hardware/form.php index fab19fea13..8fbd0b4e87 100644 --- a/resources/lang/en-US/admin/hardware/form.php +++ b/resources/lang/en-US/admin/hardware/form.php @@ -58,6 +58,7 @@ return [ 'asset_not_deployable_checkin' => 'That asset status is not deployable. Using this status label will checkin the asset.', 'asset_deployable' => 'This asset can be checked out.', 'processing_spinner' => 'Processing... (This might take a bit of time on large files)', + 'processing' => 'Processing... ', 'optional_infos' => 'Optional Information', 'order_details' => 'Order Related Information', 'calc_eol' => 'If nulling the EOL date, use automatic EOL calculation based on the purchase date and EOL rate.', diff --git a/resources/lang/en-US/admin/settings/general.php b/resources/lang/en-US/admin/settings/general.php index e2a6e8438e..12be36a9c9 100644 --- a/resources/lang/en-US/admin/settings/general.php +++ b/resources/lang/en-US/admin/settings/general.php @@ -462,7 +462,9 @@ return [ 'checkin' => 'Checkin Preferences', 'dashboard' => 'Login & Dashboard Preferences', 'misc' => 'Miscellaneous', - + 'logos' => 'Logos & Display', + 'colors' => 'Colors & Skins', + 'footer' => 'Footer Preferences', ], diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php index 021897922e..d0406aaea5 100644 --- a/resources/views/errors/404.blade.php +++ b/resources/views/errors/404.blade.php @@ -16,7 +16,7 @@
+
diff --git a/resources/views/hardware/quickscan.blade.php b/resources/views/hardware/quickscan.blade.php index 4c2992909f..9fa0c4d376 100644 --- a/resources/views/hardware/quickscan.blade.php +++ b/resources/views/hardware/quickscan.blade.php @@ -112,7 +112,7 @@
diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 1e3264e0d5..6ff9e13b5d 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -842,7 +842,7 @@ function auditImageFormatter(value){ if (value){ - return '{{ trans('general.feature_disabled') }}
+
+