notebook.inc.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. for more information: see languages.txt in the lang folder.
  4. */
  5. $NewNote = "New note";
  6. $Note = "Note";
  7. $NoteDeleted = "Note deleted";
  8. $NoteUpdated = "Note updated";
  9. $NoteCreated = "Note created";
  10. $YouMustWriteANote = "Please write a note";
  11. $SaveNote = "Save note";
  12. $WriteYourNoteHere = "Click here to write a new note";
  13. $SearchByTitle = "Search by title";
  14. $WriteTheTitleHere = "Write the title here";
  15. $UpdateDate = "Updated";
  16. $NoteAddNew = "Add new note in my personal notebook";
  17. $OrderByCreationDate = "Sort by date created";
  18. $OrderByModificationDate = "Sort by date last modified";
  19. $OrderByTitle = "Sort by title";
  20. $NoteTitle = "Note title";
  21. $NoteComment = "Note details";
  22. $NoteAdded = "Note added";
  23. $NoteConfirmDelete = "Are you sure you want to delete this note";
  24. $AddNote = "Create note";
  25. $ModifyNote = "Edit my personal note";
  26. $BackToNoteList = "Back to note list";
  27. $NotebookManagement = "Notebook management";
  28. $BackToNotesList = "Back to the notes list";
  29. $NotesSortedByTitleAsc = "Notes sorted by title ascendant";
  30. $NotesSortedByTitleDESC = "Notes sorted by title downward";
  31. $NotesSortedByUpdateDateAsc = "Notes sorted by update date ascendant";
  32. $NotesSortedByUpdateDateDESC = "Notes sorted by update date downward";
  33. $NotesSortedByCreationDateAsc = "Notes sorted by creation date ascendant";
  34. $NotesSortedByCreationDateDESC = "Notes sorted by creation date downward";
  35. ?>