en.php 770 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * The core language file is in /languages/en.php and each plugin has its
  4. * language files in a languages directory. To change a string, copy the
  5. * mapping into this file.
  6. *
  7. * For example, to change the blog Tools menu item
  8. * from "Blog" to "Rantings", copy this pair:
  9. * 'blog' => "Blog",
  10. * into the $mapping array so that it looks like:
  11. * 'blog' => "Rantings",
  12. *
  13. * Follow this pattern for any other string you want to change. Make sure this
  14. * plugin is lower in the plugin list than any plugin that it is modifying.
  15. *
  16. * If you want to add languages other than English, name the file according to
  17. * the language's ISO 639-1 code: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
  18. */
  19. return [
  20. 'string:here' => 'Display string here',
  21. ];