Page MenuHomePhorge

PhutilSimplifiedChineseLocale.php
No OneTemporary

PhutilSimplifiedChineseLocale.php

<?php
/**
* Locale for "Chinese (Simplified)".
*/
final class PhutilSimplifiedChineseLocale extends PhutilLocale {
public function getLocaleCode() {
return 'zh_Hans';
}
public function getLocaleName() {
return pht('Chinese (Simplified)');
}
public function getFallbackLocaleCode() {
// Ideally this would be zh_Hant but Phabricator does not support
// bidirectional fallbacks
// (zh_Hant -> zh_Hans and zh_Hans -> zh_Hant simultaneously)
// arbitrarily choose to fall back in the other direction instead
// In the mean time return `en_US` so users don't see Proto-English
return 'en_US';
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Mar 24, 06:53 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1118913
Default Alt Text
PhutilSimplifiedChineseLocale.php (644 B)

Event Timeline