/phpbb3-mod/root/language/en/mods/logs_raidattendance.php

http://raidattendance.googlecode.com/ · PHP · 51 lines · 30 code · 1 blank · 20 comment · 3 complexity · 6a0e9a621e4b9442b853542accdd1424 MD5 · raw file

  1. <?php
  2. /**
  3. * @ignore
  4. */
  5. if (!defined('IN_PHPBB'))
  6. {
  7. exit;
  8. }
  9. /**
  10. * DO NOT CHANGE
  11. */
  12. if (empty($lang) || !is_array($lang)) {
  13. $lang = array();
  14. }
  15. // DEVELOPERS PLEASE NOTE
  16. //
  17. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  18. //
  19. // Placeholders can now contain order information, e.g. instead of
  20. // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  21. // translators to re-order the output of data while ensuring it remains correct
  22. //
  23. // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  24. // equally where a string contains only two placeholders which are used to wrap text
  25. // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  26. //
  27. // Common Language Resources for Raid Attendance
  28. //
  29. $lang = array_merge($lang, array(
  30. 'RAID_LOGS_TITLE' => 'Raidattendance History',
  31. 'ID' => 'ID',
  32. 'USER' => 'User',
  33. 'RAIDER' => 'Raider',
  34. 'TIME' => 'Timestamp',
  35. 'ACTION' => 'Action',
  36. 'TIMESTAMP_FORMAT' => '%Y-%m-%d %H:%M',
  37. 'RAIDERS_ALL' => 'All',
  38. 'LOG_SIGNOFF' => 'Signed of from raid %s',
  39. 'LOG_SIGNON' => 'Signed on to raid %s',
  40. 'LOG_CLEAR' => 'Cleared attendancy for raid %s',
  41. 'LOG_NOSHOW' => 'Was AWOL for raid %s',
  42. 'LOG_LATE' => 'Was late for raid %s',
  43. 'LOG_SUBSTITUTE' => 'Sat out on raid %s',
  44. 'LOG_CANCELLED' => 'Raid %s was cancelled',
  45. 'LOG_CLEAR_RAID' => 'Raid %s was re-activated',
  46. 'RAID_UNKNOWN' => 'Unknown',
  47. 'FILTER' => 'Filter',
  48. )
  49. );
  50. ?>