You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rcube_plugin.php 233B

123456789101112131415
  1. <?php
  2. class rcube_plugin
  3. {
  4. public function gettext($p)
  5. {
  6. global $labels;
  7. if (!isset($labels)) {
  8. include __DIR__ . "/../localization/en_US.inc";
  9. }
  10. return $labels[$p];
  11. }
  12. }