mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +01:00
23 lines
643 B
PHP
23 lines
643 B
PHP
<?php
|
|
return [
|
|
'note' => 'Notiz',
|
|
'notes' => 'Notizen',
|
|
|
|
'add' => 'Notiz hinzufügen',
|
|
'show' => 'Notiz anzeigen',
|
|
'edit' => 'Notiz bearbeiten',
|
|
'update' => 'Notiz aktualisieren',
|
|
'delete' => 'Notiz löschen',
|
|
|
|
'public' => 'Öffentliche Notiz',
|
|
'internal' => 'Interne Notiz',
|
|
'private' => 'Private Notiz',
|
|
|
|
'note_content' => 'Notiz Inhalt',
|
|
|
|
'added_successfully' => 'Notiz erfolgreich hinzugefügt.',
|
|
'updated_successfully' => 'Notiz erfolgreich aktualisiert.',
|
|
'deleted_successfully' => 'Notiz erfolgreich gelöscht.',
|
|
'deletion_error' => 'Notiz konnte nicht gelöscht werden.',
|
|
];
|