link.inc.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. // Link Tool v2.0
  3. // Developped by Patrick Cool, Ghent University, december 2003
  4. // The main concept is that similar links can be grouped together into
  5. // a category of links.
  6. // I used the same interface as the bookmarks/favorites of your browser:
  7. // categories can be collapsed / expanded.
  8. // New features:
  9. // 1. Adding Categories allowing similar links to be grouped together into categories
  10. // 2. Ordering of links and categories: The categories itself and the links within a categories can be ordered
  11. // 3. Description: Categories can have a description too
  12. // 4. root category. Links added to the root category (thus having no category) are always visible
  13. // 5. possibility to collapse / expand all the categories at once, thus showing or hiding all links
  14. //
  15. // GENERIC
  16. $langModify="Modify";
  17. $langDelete="Delete";
  18. $langTitle="Title";
  19. $langHelp="Help";
  20. $langOk="OK";
  21. $langBackList="Back to the list";
  22. // Link language variables
  23. $langLinks="Links";
  24. $langLinkName="Link name";
  25. $langDescription="Description";
  26. $langLinkAdd="Add a link";
  27. $langLinkAdded="The link has been added";
  28. $langLinkMod="Modify link";
  29. $langLinkModded="The link has been modified";
  30. $langLinkDel="Delete link";
  31. $langLinkDeleted="The link has been deleted";
  32. $langLinkDelconfirm="Do you want to delete this link?";
  33. $langAllLinksDel="Delete all links in this category ";
  34. // Category language variables
  35. $langCategory="Category";
  36. $langCategoryName="Category name";
  37. $langDescription="Description";
  38. $langCategoryAdd="Add a category";
  39. $langCategoryAdded="The category has been added";
  40. $langCategoryMod="Modify Category";
  41. $langCategoryModded="The category has been modified";
  42. $langCategoryDel="Delete category";
  43. $langCategoryDeleted="The category and all its links have been deleted";
  44. $langCategoryDelconfirm="When deleting a category, all links of this category are also deleted.\\nDo you really want to delete this category and its links ?";
  45. $langAllCategoryDel="Delete all categories and all links";
  46. $langAllCategoryDeleted="All categories and all links have been deleted";
  47. $langGiveURL="Please give the link URL";
  48. $langGiveCategoryName="Please give the category name";
  49. $langNoCategory="No category";
  50. // Other
  51. $showall="Show all";
  52. $shownone="Show none";
  53. ?>