����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 52.15.242.179 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/admin/assets/plugins/moment/lang/ |
Upload File : |
// moment.js language configuration // language : traditional chinese (zh-tw) // author : Ben : https://github.com/ben-lin (function (factory) { if (typeof define === 'function' && define.amd) { define(['moment'], factory); // AMD } else if (typeof exports === 'object') { factory(require('../moment')); // Node } else { factory(window.moment); // Browser global } }(function (moment) { moment.lang('zh-tw', { months : "一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"), monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"), weekdays : "星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"), weekdaysShort : "週日_週一_週二_週三_週四_週五_週六".split("_"), weekdaysMin : "日_一_二_三_四_五_六".split("_"), longDateFormat : { LT : "Ah點mm", L : "YYYY年MMMD日", LL : "YYYY年MMMD日", LLL : "YYYY年MMMD日LT", LLLL : "YYYY年MMMD日ddddLT", l : "YYYY年MMMD日", ll : "YYYY年MMMD日", lll : "YYYY年MMMD日LT", llll : "YYYY年MMMD日ddddLT" }, meridiem : function (hour, minute, isLower) { var hm = hour * 100 + minute; if (hm < 900) { return "早上"; } else if (hm < 1130) { return "上午"; } else if (hm < 1230) { return "中午"; } else if (hm < 1800) { return "下午"; } else { return "晚上"; } }, calendar : { sameDay : '[今天]LT', nextDay : '[明天]LT', nextWeek : '[下]ddddLT', lastDay : '[昨天]LT', lastWeek : '[上]ddddLT', sameElse : 'L' }, ordinal : function (number, period) { switch (period) { case "d" : case "D" : case "DDD" : return number + "日"; case "M" : return number + "月"; case "w" : case "W" : return number + "週"; default : return number; } }, relativeTime : { future : "%s內", past : "%s前", s : "幾秒", m : "一分鐘", mm : "%d分鐘", h : "一小時", hh : "%d小時", d : "一天", dd : "%d天", M : "一個月", MM : "%d個月", y : "一年", yy : "%d年" } }); }));