PluginProbe ʕ •ᴥ•ʔ
WP Popular Posts / 5.1.0
WP Popular Posts v5.1.0
4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 5.0.0 5.0.1 5.0.2 5.1.0 5.2.0 5.2.1 5.2.2 5.2.3 5.2.4 5.3.0 5.3.1 5.3.2 5.3.3 5.3.4 5.3.5 5.3.6 5.4.0 5.4.1 5.4.2 5.5.0 5.5.1 6.0.0 6.0.1 6.0.2 6.0.3 6.0.4 6.0.5 6.1.0 6.1.1 6.1.2 6.1.3 6.1.4 6.2.0 6.2.1 6.3.0 6.3.1 6.3.2 6.3.3 6.3.4 6.4.0 6.4.1 6.4.2 7.0.0 7.0.1 7.1.0 7.2.0 7.3.0 7.3.1 7.3.2 7.3.3 7.3.4 7.3.5 7.3.6 7.3.7 7.3.8 7.4.0 trunk 2.3.7 3.0.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 4.0.0 4.0.1 4.0.10 4.0.11 4.0.12 4.0.13 4.0.2 4.0.3 4.0.5 4.0.6
wordpress-popular-posts / src / Moment / Locales / nl_NL.php
wordpress-popular-posts / src / Moment / Locales Last commit date
ar_TN.php 6 years ago ca_ES.php 6 years ago cs_CZ.php 6 years ago da_DK.php 6 years ago de_DE.php 6 years ago en_GB.php 6 years ago en_US.php 6 years ago es_ES.php 6 years ago fr_FR.php 6 years ago hu_HU.php 6 years ago id_ID.php 6 years ago it_IT.php 6 years ago ja_JP.php 6 years ago ko_KR.php 6 years ago lv_LV.php 6 years ago nl_NL.php 6 years ago no_NO.php 6 years ago oc_LNC.php 6 years ago pl_PL.php 6 years ago pt_BR.php 6 years ago pt_PT.php 6 years ago ro_RO.php 6 years ago ru_RU.php 6 years ago se_SV.php 6 years ago th_TH.php 6 years ago tr_TR.php 6 years ago uk_UA.php 6 years ago vi_VN.php 6 years ago zh_CN.php 6 years ago zh_TW.php 6 years ago
nl_NL.php
58 lines
1 <?php
2
3 // locale: Dutch (Netherlands, The) (nl_NL)
4 // author: Peter Notenboom https://github.com/peternotenboom
5
6 return array(
7 "months" => explode('_', 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'),
8 "monthsShort" => explode('_', 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'),
9 "weekdays" => explode('_', 'maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag_zondag'),
10 "weekdaysShort" => explode('_', 'ma_di_wo_do_vr_za_zo'),
11 "calendar" => array(
12 "sameDay" => '[Vandaag]',
13 "nextDay" => '[Morgen]',
14 "lastDay" => '[Gisteren]',
15 "lastWeek" => '[Vorige] l',
16 "sameElse" => 'l',
17 "withTime" => '[om] H:i',
18 "default" => 'd/m/Y',
19 ),
20 "relativeTime" => array(
21 "future" => 'in %s',
22 "past" => '%s geleden',
23 "s" => 'een paar seconden',
24 "ss" => '%d seconden',
25 "m" => 'een minuut',
26 "mm" => '%d minuten',
27 "h" => 'een uur',
28 "hh" => '%d uren',
29 "d" => 'een dag',
30 "dd" => '%d dagen',
31 "M" => 'een maand',
32 "MM" => '%d maanden',
33 "y" => 'een jaar',
34 "yy" => '%d jaren',
35 ),
36 "ordinal" => function ($number)
37 {
38 return $number; //Possible to add 'e': $m->format('WS'); // 11e. But that also breaks "11e Januari 2015"
39 },
40 "week" => array(
41 "dow" => 1, // Monday is the first day of the week.
42 "doy" => 4 // The week that contains Jan 4th is the first week of the year.
43 ),
44 "customFormats" => array(
45 "LTS" => "G:i:s", // 20:30:15
46 "LT" => "G:i", // 20:30
47 "L" => "d/m/Y", // 04/09/1986
48 "l" => "j/n/Y", // 4/9/1986
49 "LL" => "jS F Y", // 4 September 1986
50 "ll" => "j M Y", // 4 Sep 1986
51 "LLL" => "jS F Y G:i", // 4 September 1986 20:30
52 "lll" => "j M Y G:i", // 4 Sep 1986 20:30
53 "LLLL" => "l jS F Y G:i", // Donderdag 4 September 1986 20:30
54 "llll" => "D j M Y G:i", // Do 4 Sep 1986 20:30
55 ),
56
57 );
58