LanguageZh_hans.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. /**
  3. * Simplified Chinese specific code.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. * @ingroup Language
  22. */
  23. /**
  24. * Simplified Chinese
  25. *
  26. * @ingroup Language
  27. */
  28. // @codingStandardsIgnoreStart Ignore class name is not in camel caps format error
  29. class LanguageZh_hans extends Language {
  30. // @codingStandardsIgnoreEnd
  31. /**
  32. * @return bool
  33. */
  34. function hasWordBreaks() {
  35. return false;
  36. }
  37. /**
  38. * Eventually this should be a word segmentation;
  39. * for now just treat each character as a word.
  40. * @todo FIXME: Only do this for Han characters...
  41. *
  42. * @param string $string
  43. *
  44. * @return string
  45. */
  46. function segmentByWord( $string ) {
  47. $reg = "/([\\xc0-\\xff][\\x80-\\xbf]*)/";
  48. $s = self::insertSpace( $string, $reg );
  49. return $s;
  50. }
  51. /**
  52. * @param string $s
  53. * @return string
  54. */
  55. function normalizeForSearch( $s ) {
  56. // Double-width roman characters
  57. $s = parent::normalizeForSearch( $s );
  58. $s = trim( $s );
  59. $s = $this->segmentByWord( $s );
  60. return $s;
  61. }
  62. /**
  63. * Takes a number of seconds and turns it into a text using values such as hours and minutes.
  64. *
  65. * @since 1.21
  66. *
  67. * @param int $seconds The amount of seconds.
  68. * @param array $chosenIntervals The intervals to enable.
  69. *
  70. * @return string
  71. */
  72. public function formatDuration( $seconds, array $chosenIntervals = [] ) {
  73. if ( empty( $chosenIntervals ) ) {
  74. $chosenIntervals = [ 'centuries', 'years', 'days', 'hours', 'minutes', 'seconds' ];
  75. }
  76. $intervals = $this->getDurationIntervals( $seconds, $chosenIntervals );
  77. $segments = [];
  78. foreach ( $intervals as $intervalName => $intervalValue ) {
  79. // Messages: duration-seconds, duration-minutes, duration-hours, duration-days, duration-weeks,
  80. // duration-years, duration-decades, duration-centuries, duration-millennia
  81. $message = wfMessage( 'duration-' . $intervalName )->numParams( $intervalValue );
  82. $segments[] = $message->inLanguage( $this )->escaped();
  83. }
  84. return implode( '', $segments );
  85. }
  86. }