19 lines
606 B
PHP
19 lines
606 B
PHP
<?php
|
|
|
|
$labels = array();
|
|
$labels['navtitle'] = 'Notes';
|
|
$labels['tags'] = 'Tags';
|
|
$labels['lists'] = 'Notebooks';
|
|
$labels['notes'] = 'Notes';
|
|
$labels['create'] = 'Create';
|
|
$labels['newnote'] = 'New Note';
|
|
$labels['notags'] = 'No tags';
|
|
$labels['removetag'] = 'Remove tag';
|
|
$labels['created'] = 'Created';
|
|
$labels['changed'] = 'Last Modified';
|
|
$labels['now'] = 'Now';
|
|
|
|
$labels['savingdata'] = 'Saving data...';
|
|
$labels['recordnotfound'] = 'Record not found';
|
|
$labels['entertitle'] = 'Please enter a title for this note!';
|
|
$labels['deletenotesconfirm'] = 'Do you really want to delete the selected notes?';
|