Example #1
0
        /// <summary>
        /// Chinese locazation implementation constructor
        /// </summary>
        public ZhCn()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt  = "HH:mm",
                Lts = "HH:mm:ss",
                L   = "yyyy-MM-dd",
                LL  = "yyyy年MMMdd日"
            };

            LongDateFormat.LLL  = string.Format("yyyy年MMMdd日 {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("yyyy年MMMdd日 dddd {0}", LongDateFormat.Lt);
        }
Example #2
0
        /// <summary>
        /// Chinese locazation implementation constructor
        /// </summary>
        public ZhTw()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt = "HH:mm",
                Lts = "HH:mm:ss",
                L = "yyyy-MM-dd",
                LL = "yyyy年MMMdd日"
            };

            LongDateFormat.LLL = string.Format("yyyy年MMMdd日 {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("yyyy年MMMdd日 dddd {0}", LongDateFormat.Lt);
        }
Example #3
0
        /// <summary>
        /// English locazation implementation constructor
        /// </summary>
        public EnGb()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt  = "HH:mm",
                Lts = "HH:mm:ss",
                L   = "dd/MM/yyyy",
                LL  = "dd MMMM yyyy"
            };

            LongDateFormat.LLL  = string.Format("dd MMMM yyyy {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("dddd, dd MMMM yyyy {0}", LongDateFormat.Lt);
        }
Example #4
0
        /// <summary>
        /// English locazation implementation constructor
        /// </summary>
        public EnUs()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt = "h:mm tt",
                Lts = "h:mm:s tt",
                L = "M/d/yyyy",
                LL = "MMMM d, yyyy"
            };

            LongDateFormat.LLL = string.Format("MMMM d, yyyy {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("dddd, MMMM d, yyyy {0}", LongDateFormat.Lt);
        }
Example #5
0
        /// <summary>
        /// English locazation implementation constructor
        /// </summary>
        public EnUs()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt  = "h:mm tt",
                Lts = "h:mm:s tt",
                L   = "M/d/yyyy",
                LL  = "MMMM d, yyyy"
            };

            LongDateFormat.LLL  = string.Format("MMMM d, yyyy {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("dddd, MMMM d, yyyy {0}", LongDateFormat.Lt);
        }
Example #6
0
        /// <summary>
        /// French localization implementation constructor
        /// </summary>
        public FrFr()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt  = "h:mm tt",
                Lts = "h:mm:s tt",
                L   = "dd/MM/yyyy",
                LL  = "MMMM d, yyyy"
            };

            LongDateFormat.LLL  = string.Format("d MMMM yyyy {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("dddd d MMMM yyyy {0}", LongDateFormat.Lt);
        }
Example #7
0
        /// <summary>
        /// German locazation implementation constructor
        /// </summary>
        public De()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt  = "HH:mm",
                Lts = "HH:mm:ss",
                L   = "dd.MM.yyyy",
                LL  = "d. MMMM yyyy"
            };

            LongDateFormat.LLL  = string.Format("d. MMMM yyyy {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("dddd, d. MMMM yyyy {0}", LongDateFormat.Lt);
        }
Example #8
0
        /// <summary>
        /// German locazation implementation constructor
        /// </summary>
        public De()
        {
            LongDateFormat = new LongDateFormat
            {
                Lt = "HH:mm",
                Lts = "HH:mm:ss",
                L = "dd.MM.yyyy",
                LL = "d. MMMM yyyy"
            };

            LongDateFormat.LLL = string.Format("d. MMMM yyyy {0}", LongDateFormat.Lt);
            LongDateFormat.LLLL = string.Format("dddd, d. MMMM yyyy {0}", LongDateFormat.Lt);
        }