Modul:DateTime/local

Modul:DateTime local

Modul:DateTime/local
Vorlagenprogrammierung Diskussionen Lua Test Unterseiten
Modul Deutsch English

Modul: Dokumentation

Diese Seite enthält Code in der Programmiersprache Lua. Einbindungszahl Cirrus


local Serial = "2020-08-08"
--[=[
Date and time utilities: Localization  Deutsch
mw.loadData() table
]=]
local Similar   = mw.ustring.char( 8776 )    -- ~~


-- Export
local p = { era         = { },
            monthsAbbr  = { },
            monthsLong  = { },
            monthsParse = { },
            months4     = { },
            sortWeights = { },
            templates   = { },
            zones       = { },
            failsafe    = Serial
          }
p.slang  = "de"
p.era.de = { "v. Chr.", "n. Chr." }
p.monthsAbbr.de = { n      = 3,
                    suffix = ".",
                    [ 3 ]  = { "Mär", "Mrz" } }
p.monthsAbbr[ "de-at" ] = { n      = 3,
                            suffix = ".",
                            [ 1 ]  = { "Jan", "Jän" },
                            [ 3 ]  = { "Mär", "Mrz" } }
p.monthsParse.de = {
    [ "Dez" ]         = 12,
    [ "Feber" ]       =  2,
    [ "Jänner" ]      =  1,
    [ "Jänner" ] =  1,
    [ "Jän" ]    =  1,
    [ "März" ]   =  3,
    [ "Mrz" ]         =  3,
    [ "Mär" ]         =  3,
    [ "Okt" ]         = 10
}
p.monthsLong.de = {
    "Januar",
    "Februar",
    "März",
    "April",
    "Mai",
    "Juni",
    "Juli",
    "August",
    "September",
    "Oktober",
    "November",
    "Dezember"
}
p.monthsLong[ "de-at" ] = {
    [ 1 ] = "Jänner"
}
p.months4.de = { [ 3 ] = true,
                 [ 6 ] = true,
                 [ 7 ] = true }
p.present = { date = "j. F Y",
              time = "H:i:s",
              both = "$date $time"
}
p.sortWeights.de = {
    [true]         = Similar .. "abecnuvsz",
    ["vor dem"]    = 3,
    ["vor etwa"]   = 3,
    ["vor"]        = 3,
    ["Anfang"]     = 4,
    ["frühestens"] = 5,
    ["ab dem"]     = 6,
    ["ab etwa"]    = 6,
    ["ab"]         = 6,
    ["seit dem"]   = 6,
    ["seit etwa"]  = 6,
    ["seit"]       = 6,
    ["vom"]        = 6,
    ["von"]        = 6,
    ["zwischen"]   = 6,
    ["bis zum"]    = 7,
    ["bis etwa"]   = 7,
    ["bis um"]     = 7,
    ["bis"]        = 7,
    ["spätestens"] = 8,
    ["Ende"]       = 8,
    ["nach dem"]   = 9,
    ["nach etwa"]  = 9,
    ["nach"]       = 9,
    ["ca."]        = true,
    ["etwa"]       = true,
    ["um"]         = true,
    [Similar]      = true
}
p.templates = {
    [ "default" ] =
          { spec = "H:i, j. M Y",
            long = true },
    [ "$dmy" ] =
          { spec = "H:i, j. M Y",
            long = true },
    [ "$dmyt" ] =
          { spec = "j. M Y, H:i",
            long = true },
    [ "$dmyts" ] =
          { spec = "j. M Y, H:i:s",
            long = true },
    [ "data-sort-type:date" ] =
          { spec = "j. M Y" },
    [ "dewiki" ] =
          { spec = "H:i, j. M Y",
            lift = true,
            long = true }
}
p.templates.de  = {
    [ "T._Monat JJJJ hh:mm:ss Zone" ] =
          { spec = "j. F Y",
            lift = true,
            long = true },
    [ "T._Mon JJJJ" ] =
          { spec = "j. M Y" },
    [ "T._Mon4 JJJJ" ] =
          { spec = "j. M Y" },
    [ "T._Mon4_JJJJ" ] =
          { spec = "j. M Y" },
    [ "T._Mon4 JJJJ hh:mm" ] =
          { spec = "j. M Y",
            lift = true },
    [ "T._Mon4 JJJJ hh:mm:ss" ] =
          { spec = "j. M Y",
            lift = true },
    [ "T._Mon4_JJJJ hh:mm:ss" ] =
          { spec = "j. M Y",
            lift = true },
    [ "T._Mon4_JJJJ_hh:mm:ss" ] =
          { spec = "j. M Y",
            lift = true },
    [ "T._Mon4 JJJJ hh:mm:ss Zone" ] =
          { spec = "j. M Y",
            lift = true,
            long = true },
    [ "T._Monat JJJJ" ] =
          { spec = "j. F Y" },
    [ "T._Monat_JJJJ" ] =
          { spec = "j. F Y" },
    [ "TT.MM.JJJJ" ] =
          { spec = "d.m.Y" },
    [ "T.M.JJJJ" ] =
          { spec = "j.n.Y" }
}
p.zones.de = {
    MEZ  =   100,
    MESZ =   200
}

return p

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.