Skip to content

Commit a7132fc

Browse files
committed
Updated translation strings
1 parent 7305169 commit a7132fc

File tree

633 files changed

+6268
-2132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

633 files changed

+6268
-2132
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
return array(
4+
'about_accessories_title' => 'About Accessories',
5+
'about_accessories_text' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.',
6+
'accessory_category' => 'Accessory Category',
7+
'accessory_name' => 'Accessory Name',
8+
'checkout' => 'Checkout Accessory',
9+
'checkin' => 'Checkin Accessory',
10+
'create' => 'Create Accessory',
11+
'edit' => 'Edit Accessory',
12+
'eula_text' => 'Category EULA',
13+
'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.',
14+
'require_acceptance' => 'Require users to confirm acceptance of assets in this category.',
15+
'no_default_eula' => 'No primary default EULA found. Add one in Settings.',
16+
'total' => 'Total',
17+
'remaining' => 'Avail',
18+
'update' => 'Update Accessory',
19+
'use_default_eula' => 'Use the <a href="#" data-toggle="modal" data-target="#eulaModal">primary default EULA</a> instead.',
20+
'use_default_eula_disabled' => '<del>Use the primary default EULA instead.</del> No primary default EULA is set. Please add one in Settings.',
21+
22+
);
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
3+
return array(
4+
5+
'does_not_exist' => 'The accessory does not exist.',
6+
'assoc_users' => 'This accessory currently has :count items checked out to users. Please check in the accessories and and try again. ',
7+
8+
'create' => array(
9+
'error' => 'The accessory was not created, please try again.',
10+
'success' => 'The accessory was successfully created.'
11+
),
12+
13+
'update' => array(
14+
'error' => 'The accessory was not updated, please try again',
15+
'success' => 'The accessory was updated successfully.'
16+
),
17+
18+
'delete' => array(
19+
'confirm' => 'Are you sure you wish to delete this accessory?',
20+
'error' => 'There was an issue deleting the accessory. Please try again.',
21+
'success' => 'The accessory was deleted successfully.'
22+
),
23+
24+
'checkout' => array(
25+
'error' => 'Accessory was not checked out, please try again',
26+
'success' => 'Accessory checked out successfully.',
27+
'user_does_not_exist' => 'That user is invalid. Please try again.'
28+
),
29+
30+
'checkin' => array(
31+
'error' => 'Accessory was not checked in, please try again',
32+
'success' => 'Accessory checked in successfully.',
33+
'user_does_not_exist' => 'That user is invalid. Please try again.'
34+
)
35+
36+
37+
);
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
return array(
4+
'dl_csv' => 'Download CSV',
5+
'eula_text' => 'EULA',
6+
'id' => 'ID',
7+
'require_acceptance' => 'Acceptance',
8+
'title' => 'Accessory Name',
9+
10+
11+
);
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
return [
4+
'asset_maintenance_type' => 'Maintenance Type',
5+
'title' => 'Title',
6+
'start_date' => 'Started',
7+
'completion_date' => 'Completed',
8+
'cost' => 'Cost',
9+
'is_warranty' => 'Warranty Improvement',
10+
'asset_maintenance_time' => 'Days',
11+
'notes' => 'Notes',
12+
'update' => 'Update',
13+
'create' => 'Create'
14+
];
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
return [
4+
'asset_maintenances' => 'Asset Maintenances',
5+
'edit' => 'Edit Asset Maintenance',
6+
'delete' => 'Delete Asset Maintenance',
7+
'view' => 'View Asset Maintenance Details',
8+
'repair' => 'Repair',
9+
'maintenance' => 'Maintenance',
10+
'upgrade' => 'Upgrade'
11+
];
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
return [
4+
'not_found' => 'Asset Maintenance you were looking for was not found!',
5+
'delete' => [
6+
'confirm' => 'Are you sure you wish to delete this asset maintenance?',
7+
'error' => 'There was an issue deleting the asset maintenance. Please try again.',
8+
'success' => 'The asset maintenance was deleted successfully.'
9+
],
10+
'create' => [
11+
'error' => 'Asset Maintenance was not created, please try again.',
12+
'success' => 'Asset Maintenance created successfully.'
13+
],
14+
'edit' => [
15+
'error' => 'Asset Maintenance was not edited, please try again.',
16+
'success' => 'Asset Maintenance edited successfully.'
17+
],
18+
'asset_maintenance_incomplete' => 'Not Completed Yet',
19+
'warranty' => 'Warranty',
20+
'not_warranty' => 'Not Warranty',
21+
];
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
return [
4+
'title' => 'Asset Maintenance',
5+
'asset_name' => 'Asset Name',
6+
'is_warranty' => 'Warranty',
7+
'dl_csv' => 'Download CSV'
8+
];
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
return array(
4+
'about_categories_title' => 'About Categories',
5+
'about_categories' => 'Categories help you organize your items. Some example categories might be &quot;Desktops&quot;, &quot;Laptops&quot;, &quot;Mobile Phones&quot;, &quot;Tablets&quot;, and so on, but you can use categories any way that makes sense for you.',
6+
'asset_categories' => 'Asset Categories',
7+
'category_name' => 'Category Name',
8+
'checkin_email' => 'Send email to user on checkin.',
9+
'clone' => 'Clone Category',
10+
'create' => 'Create Category',
11+
'edit' => 'Edit Category',
12+
'eula_text' => 'Category EULA',
13+
'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.',
14+
'name' => 'Category Name',
15+
'require_acceptance' => 'Require users to confirm acceptance of assets in this category.',
16+
'required_acceptance' => 'This user will be emailed with a link to confirm acceptance of this item.',
17+
'required_eula' => 'This user will be emailed a copy of the EULA',
18+
'no_default_eula' => 'No primary default EULA found. Add one in Settings.',
19+
'update' => 'Update Category',
20+
'use_default_eula' => 'Use the <a href="#" data-toggle="modal" data-target="#eulaModal">primary default EULA</a> instead.',
21+
'use_default_eula_disabled' => '<del>Use the primary default EULA instead.</del> No primary default EULA is set. Please add one in Settings.',
22+
23+
);
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
return array(
4+
5+
'does_not_exist' => 'Category does not exist.',
6+
'assoc_models' => '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. ',
7+
'assoc_items' => 'This category is currently associated with at least one :asset_type and cannot be deleted. Please update your :asset_type to no longer reference this category and try again. ',
8+
9+
'create' => array(
10+
'error' => 'Category was not created, please try again.',
11+
'success' => 'Category created successfully.'
12+
),
13+
14+
'update' => array(
15+
'error' => 'Category was not updated, please try again',
16+
'success' => 'Category updated successfully.'
17+
),
18+
19+
'delete' => array(
20+
'confirm' => 'Are you sure you wish to delete this category?',
21+
'error' => 'There was an issue deleting the category. Please try again.',
22+
'success' => 'The category was deleted successfully.'
23+
)
24+
25+
);
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return array(
4+
'eula_text' => 'EULA',
5+
'id' => 'ID',
6+
'parent' => 'Parent',
7+
'require_acceptance' => 'Acceptance',
8+
'title' => 'Asset Category Name',
9+
10+
);

0 commit comments

Comments
 (0)