SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/i18n/en_US/core.php

  1. <?php
  2. /*
  3.  * Copyright (C) 2017 Karmabunny Pty Ltd.
  4.  *
  5.  * This file is a part of SproutCMS.
  6.  *
  7.  * SproutCMS is free software: you can redistribute it and/or modify it under the terms
  8.  * of the GNU General Public License as published by the Free Software Foundation, either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * For more information, visit <http://getsproutcms.com>.
  12.  */
  13.  
  14.  
  15. $lang = array
  16. (
  17. 'there_can_be_only_one' => 'There can be only one instance of Kohana per page request',
  18. 'uncaught_exception' => 'Uncaught %s: %s in file %s on line %s',
  19. 'invalid_method' => 'Invalid method %s called in %s',
  20. 'invalid_property' => 'The %s property does not exist in the %s class.',
  21. 'log_dir_unwritable' => 'The log directory is not writable: %s',
  22. 'resource_not_found' => 'The requested %s, %s, could not be found',
  23. 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file',
  24. 'view_set_filename' => 'You must set the the view filename before calling render',
  25. 'no_default_route' => 'Please set a default route in config/routes.php',
  26. 'no_controller' => 'Kohana was not able to determine a controller to process this request: %s',
  27. 'page_not_found' => 'The page you requested, %s, could not be found.',
  28. 'stats_footer' => 'Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Kohana v{kohana_version}.',
  29. 'error_file_line' => '<tt>%s <strong>[%s]:</strong></tt>',
  30. 'stack_trace' => 'Stack Trace',
  31. 'generic_error' => 'Unable to Complete Request',
  32. 'errors_disabled' => 'You can go to the <a href="%s">home page</a> or <a href="%s">try again</a>.',
  33.  
  34. // Drivers
  35. 'driver_implements' => 'The %s driver for the %s library must implement the %s interface',
  36. 'driver_not_found' => 'The %s driver for the %s library could not be found',
  37.  
  38. // Resource names
  39. 'config' => 'config file',
  40. 'controller' => 'controller',
  41. 'helper' => 'helper',
  42. 'library' => 'library',
  43. 'driver' => 'driver',
  44. 'model' => 'model',
  45. 'view' => 'view',
  46. );
  47.