PHP Classes

File: infrastructure/libraries/Moment/Locales/vi_VN.php

Recommend this page to a friend!
  Classes of Maicon gonçalez   Potato Service   infrastructure/libraries/Moment/Locales/vi_VN.php   Download  
File: infrastructure/libraries/Moment/Locales/vi_VN.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Potato Service
Framework that extracts route details from classes
Author: By
Last change:
Date: 1 year ago
Size: 1,808 bytes
 

Contents

Class file image Download
<?php

// locale: vietnamese - Viet Nam (vi_VN)
// author: Oanh Nguyen https://github.com/oanhnn

return array(
   
"months" => explode('_', 'Tháng m?t_Tháng hai_Tháng ba_Tháng t?_Tháng n?m_Tháng sáu_Tháng b?y_Tháng tám_Tháng chín_Tháng m??i_Tháng m??i m?t_Tháng m??i hai'),
   
"monthsNominative" => explode('_', 'Tháng 1_Tháng 2_Tháng 3_Tháng 4_Tháng 5_Tháng 6_Tháng 7_Tháng 8_Tháng 9_Tháng 10_Tháng 11_Tháng 12'),
   
"monthsShort" => explode('_', 'Th1_Th2_Th3_Th4_Th5_Th6_Th7_Th8_Th9_Th10_Th11_Th12'),
   
"weekdays" => explode('_', 'Th? 2_Th? 3_Th? 4_Th? 5_Th? 6_Th? 7_Ch? nh?t'),
   
"weekdaysShort" => explode('_', 'T2_T3_T4_T5_T6_T7_CN'),
   
"calendar" => array(
       
"sameDay" => '[Hôm nay]',
       
"nextDay" => '[Ngày mai]',
       
"lastDay" => '[Hôm qua]',
       
"lastWeek" => '[tu?n tr??c] l',
       
"sameElse" => 'l',
       
"withTime" => '[lúc] H:i',
       
"default" => 'd/m/Y',
    ),
   
"relativeTime" => array(
       
"future" => 'vào %s',
       
"past" => '%s tr??c ?ây',
       
"s" => 'm?t vài giây',
       
"ss" => '%d giây',
       
"m" => 'm?t phút',
       
"mm" => '%d phút',
       
"h" => 'm?t gi?',
       
"hh" => '%d gi?',
       
"d" => 'm?t ngày',
       
"dd" => '%d ngày',
       
"M" => 'm?t tháng',
       
"MM" => '%d tháng',
       
"y" => 'm?t n?m',
       
"yy" => '%d n?m',
    ),
   
"ordinal" => function ($number) {
       
$prefix = "th? ";

        return
$prefix . $number;
    },
   
"week" => array(
       
"dow" => 1, // Monday is the first day of the week.
       
"doy" => 4 // The week that contains Jan 4th is the first week of the year.
   
),
);