Made sure that all language files were there, even though they were blank

This commit is contained in:
Vincent Sposato
2015-06-27 14:36:07 -04:00
parent 60d3af7bb7
commit 0da0998e44
3 changed files with 34 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
return [
'improvement_type' => 'Improvement Type',
'title' => 'Title',
'start_date' => 'Start Date',
'completion_date' => 'Completion Date',
'cost' => 'Cost',
'is_warranty' => 'Warranty Improvement',
'notes' => 'Notes',
'update' => 'Update Improvement',
'create' => 'Create Improvement'
];
+6
View File
@@ -0,0 +1,6 @@
<?php
return [
'improvements' => 'Improvements',
'edit' => 'Edit Improvement',
];
@@ -0,0 +1,15 @@
<?php
return [
'not_found' => 'Improvement you were looking for was not found!',
'delete' => [
'confirm' => 'Are you sure you wish to delete this improvement?',
'error' => 'There was an issue deleting the improvement. Please try again.',
'success' => 'The improvement was deleted successfully.'
],
'create' => [
'error' => 'Improvement was not created, please try again.',
'success' => 'Improvement created successfully.'
],
];