mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +01:00
f9b07f807f
- Upgrades the Dockerfiles and composer.json to require PHP 8. - Upgrades to Laravel 9 with all needed changes. - Move lang folder to root directory. - Upgrades third-party packages to the latest versions with all required changes.
21 lines
510 B
PHP
21 lines
510 B
PHP
<?php
|
|
return [
|
|
'note' => 'Note',
|
|
'notes' => 'Notes',
|
|
|
|
'add' => 'Add Note',
|
|
'show' => 'Show Note',
|
|
'edit' => 'Edit Note',
|
|
'update' => 'Update Note',
|
|
'delete' => 'Delete Note',
|
|
|
|
'private' => 'Private Note',
|
|
|
|
'note_content' => 'Note Content',
|
|
|
|
'added_successfully' => 'Note added successfully.',
|
|
'updated_successfully' => 'Note updated successfully.',
|
|
'deleted_successfully' => 'Note deleted successfully.',
|
|
'deletion_error' => 'Note could not be deleted.',
|
|
];
|