PHP Classes

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

Recommend this page to a friend!
  Classes of Maicon gonçalez   Potato Service   infrastructure/libraries/Moment/Locales/lv_LV.php   Download  
File: infrastructure/libraries/Moment/Locales/lv_LV.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,811 bytes
 

Contents

Class file image Download
<?php

// locale: Latvie?u (Latvian) (lv_LV)
// author: Artjoms Nemiro https://github.com/LinMAD

return array(
   
'months' => explode(
       
'_',
       
'Janv?r?_Febru?r?_Mart?_Apr?l?_Maij?_J?nij?_J?lij?_August?_Septembr?_Oktobr?_Novembr?_Decembr?'
   
),
   
'monthsNominative' => explode(
       
'_',
       
'Janv?ris_Febru?ris_Marts_Apr?lis_Maijs_J?nijs_J?lijs_Augusts_Septembris_Oktobris_Novembris_Decembris'
   
),
   
'monthsShort' => explode(
       
'_',
       
'Janv_Febr_Mar_Apr_Maijs_J?n_J?l_Aug_Sept_Okt_Nov_Dec'
   
),
   
'weekdays' => explode(
       
'_',
       
'Pirmdiena_Otrdiena_Tre?diena_Ceturtdiena_Piektdiena_Sestdiena_Sv?tdiena'
   
),
   
'weekdaysShort' => explode('_', 'Pr_Ot_Tr_Ce_Pk_Se_Sv'),
   
'calendar' => array(
       
'sameDay' => '[?odien]',
       
'nextDay' => '[R?tdien]',
       
'lastDay' => '[Vakardien]',
       
'lastWeek' => '[Pag?ju??] l',
       
'sameElse' => 'l',
       
'withTime' => '[plkst.] H:i',
       
'default' => 'd.m.Y',
    ),
   
'relativeTime' => array(
       
'future' => 'p?c %s',
       
'past' => 'pirms %s',
       
's' => 'da??m sekund?m',
       
'ss' => '%d sekund?m',
       
'm' => 'min?tes',
       
'mm' => '%d min?t?m',
       
'h' => 'stundas',
       
'hh' => '%d stund?m',
       
'd' => 'dienas',
       
'dd' => '%d dien?m',
       
'M' => 'm?ne?a',
       
'MM' => '%d m?ne?iem',
       
'y' => 'gada',
       
'yy' => '%d gadiem',
    ),
   
'ordinal' => function ($number) {
        return
$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.
   
),
);