PHP Classes

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

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

Contents

Class file image Download
<?php

// locale: German (Germany) (de_DE)
// author: Tino Ehrich (tino@bigpun.me)

return array(
   
"months" => explode('_', 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'),
   
"monthsShort" => explode('_', 'Jan_Feb_Mär_Apr_Mai_Jun_Jul_Aug_Sep_Okt_Nov_Dez'),
   
"weekdays" => explode('_', 'Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag_Sonntag'),
   
"weekdaysShort" => explode('_', 'Mo_Di_Mi_Do_Fr_Sa_So'),
   
"calendar" => array(
       
"sameDay" => '[Heute]',
       
"nextDay" => '[Morgen]',
       
"lastDay" => '[Gestern]',
       
"lastWeek" => '[Letzten] l',
       
"sameElse" => 'l',
       
"withTime" => '[um] G:i [Uhr]',
       
"default" => 'd.m.Y',
    ),
   
"relativeTime" => array(
       
"future" => 'in %s',
       
"past" => 'vor %s',
       
"s" => 'ein paar Sekunden',
       
"ss" => '%d Sekunden',
       
"m" => 'einer Minute',
       
"mm" => '%d Minuten',
       
"h" => 'einer Stunde',
       
"hh" => '%d Stunden',
       
"d" => 'einem Tag',
       
"dd" => '%d Tagen',
       
"M" => 'einem Monat',
       
"MM" => '%d Monaten',
       
"y" => 'einem Jahr',
       
"yy" => '%d Jahren',
    ),
   
"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.
   
),
   
"customFormats" => array(
       
"LT" => "G:i", // 20:30
       
"LTS" => "G:i:s", // 20:30:15
       
"L" => "d.m.Y", // 04.09.1986
       
"l" => "j.n.Y", // 4.9.1986
       
"LL" => "j. F Y", // 4. September 1986
       
"ll" => "j. M. Y", // 4. Sep. 1986
       
"LLL" => "j. F Y G:i", // 4. September 1986 20:30
       
"lll" => "j. M. Y G:i", // 4. Sep. 1986 20:30
       
"LLLL" => "l, j. F Y G:i", // Donnerstag, 4. September 1986 20:30
       
"llll" => "D., j. M. Y G:i", // Do., 4. Sep. 1986 20:30
   
),
);