public
Description: Repository for collecting Locale data for Ruby on Rails I18n as well as other interesting, Rails related I18n stuff
Homepage: http://rails-i18n.org
Clone URL: git://github.com/svenfuchs/rails-i18n.git
rails-i18n / rails / locale / da.yml
100644 150 lines (141 sloc) 4.191 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Danish translation file for standard Ruby on Rails internationalization
# by Lars Hoeg (larshoeg@gmail.com, http://www.lenio.dk/)
 
da:
  # active_support
  date:
    formats:
      default: "%d.%m.%Y"
      short: "%e. %b %Y"
      long: "%e. %B %Y"
 
    day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
    abbr_day_names: [, ma, ti, 'on', to, fr, ]
    month_names: [~, januar, februar, marts, april, maj, juni, juli, august, september, oktober, november, december]
    abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
    order: [ :day, :month, :year ]
 
  time:
    formats:
      default: "%e. %B %Y, %H:%M"
      short: "%e. %b %Y, %H:%M"
      long: "%A, %e. %B %Y, %H:%M"
    am: ""
    pm: ""
 
  support:
    array:
      # Rails 2.2
      #sentence_connector: "og"
      #skip_last_comma: true
      # Rails 2.3
      words_connector: ", "
      two_words_connector: " og "
      last_word_connector: " og "
 
  datetime:
    distance_in_words:
      half_a_minute: "et halvt minut"
      less_than_x_seconds:
        one: "mindre end et sekund"
        other: "mindre end {{count}} sekunder"
      x_seconds:
        one: "et sekund"
        other: "{{count}} sekunder"
      less_than_x_minutes:
        one: "mindre end et minut"
        other: "mindre end {{count}} minutter"
      x_minutes:
        one: "et minut"
        other: "{{count}} minutter"
      about_x_hours:
        one: "cirka en time"
        other: "cirka {{count}} timer"
      x_days:
        one: "en dag"
        other: "{{count}} dage"
      about_x_months:
        one: "cirka en måned"
        other: "cirka {{count}} måneder"
      x_months:
        one: "en måned"
        other: "{{count}} måneder"
      about_x_years:
        one: "cirka et år"
        other: "cirka {{count}} år"
      over_x_years:
        one: "mere end et år"
        other: "mere end {{count}} år"
    prompts:
      second: "Sekund"
      minute: "Minut"
      hour: "Time"
      day: "Dag"
      month: "Måned"
      year: "År"
 
  # action_view
  number:
    format:
      separator: ","
      delimiter: "."
      precision: 3
    currency:
      format:
        format: "%u %n"
        unit: "DKK"
        separator: ","
        delimiter: "."
        precision: 2
    precision:
      format:
        # separator:
        delimiter: ""
        # precision:
    human:
      format:
        # separator:
        delimiter: ""
        precision: 1
      # Rails 2.2
      #storage_units: [Bytes, KB, MB, GB, TB]
      # Rails 2.3
      storage_units:
        # Storage units output formatting.
        # %u is the storage unit, %n is the number (default: 2 MB)
        format: "%n %u"
        units:
          byte:
            one: "Byte"
            other: "Bytes"
          kb: "KB"
          mb: "MB"
          gb: "GB"
          tb: "TB"
    percentage:
      format:
        # separator:
        delimiter: ""
        # precision:
 
  # active_record
  activerecord:
    errors:
      messages:
        inclusion: "er ikke i listen"
        exclusion: "er reserveret"
        invalid: "er ikke gyldig"
        confirmation: "stemmer ikke overens"
        accepted: "skal accepteres"
        empty: "må ikke udelades"
        blank: "skal udfyldes"
        too_long: "er for lang (maksimum {{count}} tegn)"
        too_short: "er for kort (minimum {{count}} tegn)"
        wrong_length: "har forkert længde (skulle være {{count}} tegn)"
        taken: "er allerede brugt"
        not_a_number: "er ikke et tal"
        greater_than: "skal være større end {{count}}"
        greater_than_or_equal_to: "skal være større end eller lig med {{count}}"
        equal_to: "skal være lig med {{count}}"
        less_than: "skal være mindre end {{count}}"
        less_than_or_equal_to: "skal være mindre end eller lig med {{count}}"
        odd: "skal være ulige"
        even: "skal være lige"
 
      template:
        header:
          one: "En fejl forhindrede {{model}} i at blive gemt"
          other: "{{count}} fejl forhindrede denne {{model}} i at blive gemt"
        body: "Der var problemer med følgende felter:"