예제 #1
0
파일: zh_tw.php 프로젝트: utn-frm-si/booked
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六');
     // The three letter abbreviation
     $days['abbr'] = array('日', '一', '二', '三', '四', '五', '六');
     // The two letter abbreviation
     $days['two'] = array('日', '一', '二', '三', '四', '五', '六');
     // The one letter abbreviation
     $days['letter'] = array('S', 'M', 'T', 'W', 'T', 'F', 'S');
     $this->Days = $days;
     return $this->Days;
 }
예제 #2
0
파일: du_nl.php 프로젝트: Trideon/gigolo
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag');
     // The three letter abbreviation
     $days['abbr'] = array('Zon', 'Maa', 'Din', 'Woe', 'Don', 'Vri', 'Zat');
     // The two letter abbreviation
     $days['two'] = array('Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za');
     // The one letter abbreviation
     $days['letter'] = array('Z', 'M', 'D', 'W', 'D', 'V', 'Z');
     $this->Days = $days;
 }
예제 #3
0
파일: ca.php 프로젝트: Trideon/gigolo
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Diumenge', 'Dilluns', 'Dimarts', 'Dimecres', 'Dijous', 'Divendres', 'Dissabte');
     // The three letter abbreviation
     $days['abbr'] = array('Dig', 'Dls', 'Dts', 'Dcs', 'Djs', 'Dvs', 'Dst');
     // The two letter abbreviation
     $days['two'] = array('Dg', 'Dl', 'Dm', 'Dc', 'Dj', 'Dv', 'Ds');
     // The one letter abbreviation
     $days['letter'] = array('G', 'L', 'T', 'C', 'J', 'V', 'S');
     $this->Days = $days;
 }
예제 #4
0
파일: no_no.php 프로젝트: utn-frm-si/booked
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag');
     // The three letter abbreviation
     $days['abbr'] = array('Søn', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'Lør');
     // The two letter abbreviation
     $days['two'] = array('Sø', 'Ma', 'Ti', 'On', 'To', 'Fr', 'Lø');
     // The one letter abbreviation
     $days['letter'] = array('S', 'M', 'T', 'O', 'T', 'F', 'L');
     $this->Days = $days;
 }
예제 #5
0
파일: de_de.php 프로젝트: Trideon/gigolo
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag');
     // The three letter abbreviation
     $days['abbr'] = array('So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa');
     // The two letter abbreviation
     $days['two'] = array('So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa');
     // The one letter abbreviation
     $days['letter'] = array('S', 'M', 'D', 'M', 'D', 'F', 'S');
     $this->Days = $days;
     return $this->Days;
 }
예제 #6
0
파일: en_gb.php 프로젝트: hugutux/booked
 protected function _LoadDays()
 {
     parent::_LoadDays();
     // change defaults here
 }
예제 #7
0
파일: he.php 프로젝트: JoseTfg/Booked
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('יום א', 'יום ב', 'יום ג', 'יום ד', 'יום ה', 'יום ו', 'שבת');
     // The three letter abbreviation
     $days['abbr'] = array('א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ש');
     // The two letter abbreviation
     $days['two'] = array('א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ש');
     // The one letter abbreviation
     $days['letter'] = array('א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ש');
     $this->Days = $days;
     return $this->Days;
 }
예제 #8
0
파일: it_it.php 프로젝트: ksdtech/booked
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
      * DAY NAMES
      * All of these arrays MUST start with Sunday as the first element
      * and go through the seven day week, ending on Saturday
      ***/
     // The full day name
     $days['full'] = array('Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato');
     // The three letter abbreviation
     $days['abbr'] = array('Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab');
     // The two letter abbreviation
     $days['two'] = array('Do', 'Lu', 'Ma', 'Me', 'Gi', 'Ve', 'Sa');
     // The one letter abbreviation
     $days['letter'] = array('D', 'L', 'M', 'M', 'G', 'V', 'S');
     $this->Days = $days;
 }
예제 #9
0
파일: fi_fi.php 프로젝트: hugutux/booked
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
     		DAY NAMES
     		All of these arrays MUST start with Sunday as the first element
     		and go through the seven day week, ending on Saturday
     		 ***/
     // The full day name
     $days['full'] = array('Sunnuntai', 'Maanantai', 'Tiistai', 'Keskiviikko', 'Torstai', 'Perjantai', 'Lauantai');
     // The three letter abbreviation
     $days['abbr'] = array('Sun', 'Maa', 'Tii', 'Kes', 'Tor', 'Per', 'Lau');
     // The two letter abbreviation
     $days['two'] = array('Su', 'Ma', 'Ti', 'Ke', 'To', 'Pe', 'La');
     // The one letter abbreviation
     $days['letter'] = array('S', 'M', 'T', 'K', 'T', 'P', 'L');
     $this->Days = $days;
 }
예제 #10
0
파일: es.php 프로젝트: ksdtech/booked
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado');
     // The three letter abbreviation
     $days['abbr'] = array('Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb');
     // The two letter abbreviation
     $days['two'] = array('Do', 'Lu', 'Ma', 'Mi', 'Ju', 'Vi', 'Sa');
     // The one letter abbreviation
     $days['letter'] = array('D', 'L', 'M', 'X', 'J', 'V', 'S');
     $this->Days = $days;
 }
예제 #11
0
파일: ja_jp.php 프로젝트: hugutux/booked
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日');
     // The three letter abbreviation
     $days['abbr'] = array('日曜', '月曜', '火曜', '水曜', '木曜', '金曜', '土曜');
     // The two letter abbreviation
     $days['two'] = array('日', '月', '火', '水', '木', '金', '土');
     // The one letter abbreviation
     $days['letter'] = array('日', '月', '火', '水', '木', '金', '土');
     $this->Days = $days;
     return $this->Days;
 }
예제 #12
0
파일: pl.php 프로젝트: Trideon/gigolo
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Niedziela', 'Poniedziałek', 'Wtorek', 'Środa', 'Czwartek', 'Piątek', 'Sobota');
     // The three letter abbreviation
     $days['abbr'] = array('Nie', 'Pon', 'Wto', 'Śro', 'Czw', 'Pią', 'Sob');
     // The two letter abbreviation
     $days['two'] = array('Nd', 'Pn', 'Wt', 'Śr', 'Cz', 'Pt', 'Sb');
     // The one letter abbreviation
     $days['letter'] = array('N', 'Pn', 'W', 'Ś', 'Cz', 'Pt', 'S');
     $this->Days = $days;
     return $this->Days;
 }
예제 #13
0
파일: id_id.php 프로젝트: hugutux/booked
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jum\'at', 'Sabtu');
     // The three letter abbreviation
     $days['abbr'] = array('Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab');
     // The two letter abbreviation
     $days['two'] = array('Mi', 'Se', 'Se', 'Ra', 'Ka', 'Ju', 'Sa');
     // The one letter abbreviation
     $days['letter'] = array('M', 'S', 'S', 'R', 'K', 'J', 'S');
     $this->Days = $days;
 }
예제 #14
0
파일: pt_br.php 프로젝트: JoseTfg/Booked
 /**
  * @return array
  */
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
        ***/
     // The full day name
     $days['full'] = array('Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado');
     // The three letter abbreviation
     $days['abbr'] = array('Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab');
     // The two letter abbreviation
     $days['two'] = array('Do', 'Se', 'Te', 'Qu', 'Qu', 'Se', 'Sa');
     // The one letter abbreviation
     $days['letter'] = array('D', 'S', 'T', 'Q', 'Q', 'S', 'S');
     $this->Days = $days;
     return $this->Days;
 }
예제 #15
0
파일: fr_fr.php 프로젝트: Trideon/gigolo
 protected function _LoadDays()
 {
     $days = parent::_LoadDays();
     /***
        DAY NAMES
        All of these arrays MUST start with Sunday as the first element
        and go through the seven day week, ending on Saturday
         ***/
     // The full day name
     $days['full'] = array('Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi');
     // The three letter abbreviation
     $days['abbr'] = array('Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam');
     // The two letter abbreviation
     $days['two'] = array('Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa');
     // The one letter abbreviation
     $days['letter'] = array('D', 'L', 'M', 'M', 'J', 'V', 'S');
     $this->Days = $days;
 }