-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
951 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
return array( | ||
'about_asset_categories' => 'About Asset Categories', | ||
'about_categories' => 'Asset categories help you organize your assets. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use asset categories any way that makes sense for you. ', | ||
'asset_categories' => 'Asset Categories', | ||
'category_name' => 'Category Name', | ||
'create' => 'Create Category', | ||
'update' => 'Update Category', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'does_not_exist' => 'Category does not exist.', | ||
'assoc_users' => 'This category is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this category and try again. ', | ||
|
||
'create' => array( | ||
'error' => 'Category was not created, please try again.', | ||
'success' => 'Category created successfully.' | ||
), | ||
|
||
'update' => array( | ||
'error' => 'Category was not updated, please try again', | ||
'success' => 'Category updated successfully.' | ||
), | ||
|
||
'delete' => array( | ||
'confirm' => 'Are you sure you wish to delete this category?', | ||
'error' => 'There was an issue deleting the category. Please try again.', | ||
'success' => 'The category was deleted successfully.' | ||
) | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'id' => 'ID', | ||
'parent' => 'Parent', | ||
'title' => 'Asset Category Name', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
return array( | ||
'about_asset_depreciations' => 'About Asset Depreciations', | ||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', | ||
'asset_depreciations' => 'Asset Depreciations', | ||
'create_depreciation' => 'Create Depreciation', | ||
'depreciation_name' => 'Depreciation Name', | ||
'number_of_months' => 'Number of Months', | ||
'update_depreciation' => 'Update Depreciation', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'does_not_exist' => 'Depreciation class does not exist.', | ||
'assoc_users' => 'This depreciation is currently associated with one or more models and cannot be deleted. Please delete the models, and then try deleting again. ', | ||
|
||
|
||
'create' => array( | ||
'error' => 'Depreciation class was not created, please try again. :(', | ||
'success' => 'Depreciation class created successfully. :)' | ||
), | ||
|
||
'update' => array( | ||
'error' => 'Depreciation class was not updated, please try again', | ||
'success' => 'Depreciation class updated successfully.' | ||
), | ||
|
||
'delete' => array( | ||
'confirm' => 'Are you sure you wish to delete this depreciation class?', | ||
'error' => 'There was an issue deleting the depreciation class. Please try again.', | ||
'success' => 'The depreciation class was deleted successfully.' | ||
) | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'id' => 'ID', | ||
'months' => 'Months', | ||
'term' => 'Term', | ||
'title' => 'Name ', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'group_exists' => 'Group already exists!', | ||
'group_not_found' => 'Group [:id] does not exist.', | ||
'group_name_required' => 'The name field is required', | ||
|
||
'success' => array( | ||
'create' => 'Group was successfully created.', | ||
'update' => 'Group was successfully updated.', | ||
'delete' => 'Group was successfully deleted.', | ||
), | ||
|
||
'delete' => array( | ||
'confirm' => 'Are you sure you wish to delete this group?', | ||
'create' => 'There was an issue creating the group. Please try again.', | ||
'update' => 'There was an issue updating the group. Please try again.', | ||
'delete' => 'There was an issue deleting the group. Please try again.', | ||
), | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'id' => 'Id', | ||
'name' => 'Name', | ||
'users' => '# of Users', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'group_management' => 'Group Management', | ||
'create_group' => 'Create New Group', | ||
'edit_group' => 'Edit Group', | ||
'group_name' => 'Group Name', | ||
'group_admin' => 'Group Admin', | ||
'allow' => 'Allow', | ||
'deny' => 'Deny', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'checkedout_to' => 'Checked Out To', | ||
'checkout_to' => 'Checkout to', | ||
'cost' => 'Purchase Cost', | ||
'create' => 'Create Asset', | ||
'date' => 'Purchase Date', | ||
'depreciates_on' => 'Depreciates On', | ||
'depreciation' => 'Depreciation', | ||
'default_location' => 'Default Location', | ||
'eol_date' => 'EOL Date', | ||
'eol_rate' => 'EOL Rate', | ||
'expires' => 'Expires', | ||
'fully_depreciated' => 'Fully Depreciated', | ||
'help_checkout' => 'If you wish to assign this asset immediately, you should select "Ready to Deploy" from the status list above, or unexpected things may happen. ', | ||
'manufacturer' => 'Manufacturer', | ||
'model' => 'Model', | ||
'months' => 'months', | ||
'name' => 'Asset Name', | ||
'notes' => 'Notes', | ||
'order' => 'Order Number', | ||
'qr' => 'QR Code', | ||
'requestable' => 'Users may request this asset', | ||
'serial' => 'Serial', | ||
'status' => 'Status', | ||
'supplier' => 'Supplier', | ||
'tag' => 'Asset Tag', | ||
'update' => 'Asset Update', | ||
'warranty' => 'Warranty', | ||
'years' => 'years', | ||
) | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
return array( | ||
'asset' => 'Asset', | ||
'checkin' => 'Checkin Asset', | ||
'checkout' => 'Checkout Asset to User', | ||
'clone' => 'Clone Asset', | ||
'edit' => 'Edit Asset', | ||
'pending' => 'Pending Asset', | ||
'view' => 'View Asset', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'undeployable' => '<strong>Warning: </strong> This asset has been marked as currently undeployable. | ||
If this status has changed, please update the asset status.', | ||
'does_not_exist' => 'Asset does not exist.', | ||
'assoc_users' => 'This asset is currently checked out to a user and cannot be deleted. Please check the asset in first, and then try deleting again. ', | ||
|
||
'create' => array( | ||
'error' => 'Asset was not created, please try again. :(', | ||
'success' => 'Asset created successfully. :)' | ||
), | ||
|
||
'update' => array( | ||
'error' => 'Asset was not updated, please try again', | ||
'success' => 'Asset updated successfully.' | ||
), | ||
|
||
'delete' => array( | ||
'confirm' => 'Are you sure you wish to delete this asset?', | ||
'error' => 'There was an issue deleting the asset. Please try again.', | ||
'success' => 'The asset was deleted successfully.' | ||
), | ||
|
||
'checkout' => array( | ||
'error' => 'Asset was not checked out, please try again', | ||
'success' => 'Asset checked out successfully.', | ||
'user_does_not_exist' => 'That user is invalid. Please try again.' | ||
), | ||
|
||
'checkin' => array( | ||
'error' => 'Asset was not checked in, please try again', | ||
'success' => 'Asset checked in successfully.', | ||
'user_does_not_exist' => 'That user is invalid. Please try again.' | ||
) | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'asset_tag' => 'Asset Tag', | ||
'asset_model' => 'Model', | ||
'book_value' => 'Value', | ||
'change' => 'In/Out', | ||
'checkout_date' => 'Checkout Date', | ||
'checkoutto' => 'Checked Out', | ||
'diff' => 'Diff', | ||
'dl_csv' => 'Download CSV', | ||
'eol' => 'EOL', | ||
'id' => 'ID', | ||
'location' => 'Location', | ||
'purchase_cost' => 'Cost', | ||
'purchase_date' => 'Purchased', | ||
'serial' => 'Serial', | ||
'status' => 'Status', | ||
'title' => 'Asset ', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'asset' => 'Asset', | ||
'checkin' => 'Checkin', | ||
'cost' => 'Purchase Cost', | ||
'create' => 'Create License', | ||
'date' => 'Purchase Date', | ||
'depreciation' => 'Depreciation', | ||
'expiration' => 'Expiration Date', | ||
'maintained' => 'Maintained', | ||
'name' => 'Software Name', | ||
'no_depreciation' => 'Do Not Depreciate', | ||
'notes' => 'Notes', | ||
'order' => 'Order No.', | ||
'purchase_order' => 'Purchase Order Number', | ||
'remaining_seats' => 'Remaining Seats', | ||
'seats' => 'Seats', | ||
'serial' => 'Serial', | ||
'supplier' => 'Supplier', | ||
'termination_date' => 'Termination Date', | ||
'to_email' => 'Licensed to Email', | ||
'to_name' => 'Licensed to Name', | ||
'update' => 'Update License', | ||
'checkout_help' => 'You must check a license out to a hardware asset or a person. You can select both, but the owner of the asset must match the person you\'re checking the asset out to.' | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'checkin' => 'Checkin License Seat', | ||
'checkout_history' => 'Checkout History', | ||
'checkout' => 'Checkout License Seat', | ||
'edit' => 'Edit License', | ||
'clone' => 'Clone License', | ||
'history_for' => 'History for ', | ||
'in_out' => 'In/Out', | ||
'info' => 'License Info', | ||
'license_seats' => 'License Seats', | ||
'seat' => 'Seat', | ||
'seats' => 'Seats', | ||
'software_licenses' => 'Software Licenses', | ||
'user' => 'User', | ||
'view' => 'View License', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'does_not_exist' => 'License does not exist.', | ||
'user_does_not_exist' => 'User does not exist.', | ||
'asset_does_not_exist' => 'The asset you are trying to associate with this license does not exist.', | ||
'owner_doesnt_match_asset' => 'The asset you are trying to associate with this license is owned by somene other than the person selected in the assigned to dropdown.', | ||
'assoc_users' => 'This license is currently checked out to a user and cannot be deleted. Please check the license in first, and then try deleting again. ', | ||
|
||
|
||
'create' => array( | ||
'error' => 'License was not created, please try again.', | ||
'success' => 'License created successfully.' | ||
), | ||
|
||
'update' => array( | ||
'error' => 'License was not updated, please try again', | ||
'success' => 'License updated successfully.' | ||
), | ||
|
||
'delete' => array( | ||
'confirm' => 'Are you sure you wish to delete this license?', | ||
'error' => 'There was an issue deleting the license. Please try again.', | ||
'success' => 'The license was deleted successfully.' | ||
), | ||
|
||
'checkout' => array( | ||
'error' => 'There was an issue checking out the license. Please try again.', | ||
'success' => 'The license was checked out successfully' | ||
), | ||
|
||
'checkin' => array( | ||
'error' => 'There was an issue checking in the license. Please try again.', | ||
'success' => 'The license was checked in successfully' | ||
), | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'assigned_to' => 'Assigned To', | ||
'checkout' => 'In/Out', | ||
'id' => 'ID', | ||
'license_email' => 'License Email', | ||
'license_name' => 'Licensed To', | ||
'purchase_date' => 'Purchase Date', | ||
'purchased' => 'Purchased', | ||
'seats' => 'Seats', | ||
'hardware' => 'Hardware', | ||
'serial' => 'Serial', | ||
'title' => 'License', | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'does_not_exist' => 'Location does not exist.', | ||
'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ', | ||
|
||
|
||
'create' => array( | ||
'error' => 'Location was not created, please try again.', | ||
'success' => 'Location created successfully.' | ||
), | ||
|
||
'update' => array( | ||
'error' => 'Location was not updated, please try again', | ||
'success' => 'Location updated successfully.' | ||
), | ||
|
||
'delete' => array( | ||
'confirm' => 'Are you sure you wish to delete this location?', | ||
'error' => 'There was an issue deleting the location. Please try again.', | ||
'success' => 'The location was deleted successfully.' | ||
) | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'id' => 'ID', | ||
'city' => 'City', | ||
'state' => 'State', | ||
'country' => 'Country', | ||
'create' => 'Create Location', | ||
'update' => 'Update Location', | ||
'name' => 'Location Name', | ||
'address' => 'Address', | ||
'zip' => 'Postal Code', | ||
'locations' => 'Locations', | ||
); |
Oops, something went wrong.