en.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Linkup -- Translation strings for English
  4. *
  5. * @package Lorea
  6. * @subpackage Linkup
  7. *
  8. * Copyright 2012-2013 Lorea Faeries <federation@lorea.org>
  9. *
  10. * This program is free software: you can redistribute it and/or
  11. * modify it under the terms of the GNU Affero General Public License
  12. * as published by the Free Software Foundation, either version 3 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public
  21. * License along with this program. If not, see
  22. * <http://www.gnu.org/licenses/>.
  23. */
  24. $English = array(
  25. 'linkup:object:default' => 'object',
  26. 'linkup:object:blog' => 'blog article',
  27. 'linkup:object:bookmark' => 'bookmark',
  28. 'linkup:object:groupforumtopic' => 'discussion topic',
  29. 'linkup:object:message' => 'message',
  30. 'linkup:object:reported_content' => 'reported content',
  31. 'linkup:object:task' => 'task',
  32. 'linkup:object:tasklist' => 'task list',
  33. 'linkup:object:thewire' => 'wire update',
  34. 'linkup:object:topicreply' => 'discussion response',
  35. );
  36. add_translation('en', $English);
  37. unset($English);