~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to libphutil/src/internationalization/locales/PhutilCzechLocale.php

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2015-02-11 14:13:38 UTC
  • mfrom: (0.18.1) (0.17.1) (0.13.2) (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20150211141338-7t6wkyisc5b04ww5
Tags: 0~git20150211-1
* New snapshot release
* updated german translation
* fixed daemons not starting with unprivileged user

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
/**
 
4
 * Locale for "Czech (Czech Republic)".
 
5
 */
 
6
final class PhutilCzechLocale extends PhutilLocale {
 
7
 
 
8
  public function getLocaleCode() {
 
9
    return 'cs_CZ';
 
10
  }
 
11
 
 
12
  public function getLocaleName() {
 
13
    return pht('Czech (Czech Republic)');
 
14
  }
 
15
 
 
16
  public function isTestLocale() {
 
17
    // This doesn't have any translations yet so mark it as a test locale
 
18
    // for now.
 
19
    return true;
 
20
  }
 
21
 
 
22
}