]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/is.yml
Merge branch 'master' into copyright
[rails.git] / vendor / plugins / rails-i18n / locale / is.yml
1 # Icelandic, by Ævar Arnfjörð Bjarmason <avarab@gmail.com>
2 is:
3   number:
4     # Used in number_with_delimiter()
5     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
6     format:
7       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
8       separator: ","
9       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
10       delimiter: "."
11       # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
12       precision: 2
13
14     # Used in number_to_currency()
15     currency:
16       format:
17         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
18         format: "%u %n"
19         unit: "kr."
20         # These three are to override number.format and are optional
21         #separator: ","
22         #delimiter: "."
23         #precision: 2
24
25     # Used in number_to_human_size()
26     human:
27       format:
28         # These three are to override number.format and are optional
29         # separator: 
30         delimiter: ""
31         precision: 1
32       storage_units:
33         # Storage units output formatting.
34         # %u is the storage unit, %n is the number (default: 2 MB)
35         format: "%n %u"
36         units:
37           byte:
38             one:   "bæti"
39             other: "bæti"
40           kb: "KB"
41           mb: "MB"
42           gb: "GB"
43           tb: "TB"
44
45   date:
46     formats:
47       # Use the strftime parameters for formats.
48       # When no format has been given, it uses default.
49       # You can provide other formats here if you like!
50       default: "%d.%m.%Y"
51       short: "%e. %b"
52       long: "%e. %B %Y"
53
54     day_names: [sunnudaginn, mánudaginn, þriðjudaginn, miðvikudaginn, fimmtudaginn, föstudaginn, laugardaginn]
55     abbr_day_names: [sun, mán, þri, mið, fim, fös, lau]
56
57     # Don't forget the nil at the beginning; there's no such thing as a 0th month
58     month_names: [~, janúar, febrúar, mars, apríl, maí, júní, júlí, ágúst, september, október, nóvember, desember]
59     abbr_month_names: [~, jan, feb, mar, apr, maí, jún, júl, ágú, sep, okt, nóv, des]
60     # Used in date_select and datime_select.
61     order: [:day, :month, :year]
62
63   time:
64     formats:
65       default: "%A %e. %B %Y kl. %H:%M"
66       time: "%H:%M"
67       short: "%e. %B kl. %H:%M"
68       long: "%A %e. %B %Y kl. %H:%M"
69     am: ""
70     pm: ""
71
72   # Used in array.to_sentence.
73   support:
74     array:
75       sentence_connector: "og"
76       words_connector: ", "
77       two_words_connector: " og "
78       last_word_connector: " og "
79       skip_last_comma: true
80
81   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
82   datetime:
83     distance_in_words:
84       half_a_minute: "hálf mínúta"
85       less_than_x_seconds:
86         one: "minna en 1 sekúnda"
87         other: "minna en {{count}} sekúndur"
88       x_seconds:
89         one: "1 sekúnda"
90         other: "{{count}} sekúndur"
91       less_than_x_minutes:
92         one: "minna en 1 mínúta"
93         other: "minna en {{count}} mínútur"
94       x_minutes:
95         one: "1 mínúta"
96         other: "{{count}} mínútur"
97       about_x_hours:
98         one: "u.þ.b. 1 klukkustund"
99         other: "u.þ.b. {{count}} klukkustundir"
100       x_days:
101         one: "1 dagur"
102         other: "{{count}} dagar"
103       about_x_months:
104         one: "u.þ.b. 1 mánuður"
105         other: "u.þ.b. {{count}} mánuðir"
106       x_months:
107         one: "1 mánuður"
108         other: "{{count}} mánuðir"
109       about_x_years:
110         one: "u.þ.b. 1 ár"
111         other: "u.þ.b. {{count}} ár"
112       over_x_years:
113         one: "meira en 1 ár"
114         other: "meira en {{count}} ár"
115
116   activerecord:
117     errors:
118       template:
119         header: 
120           one:    "Ekki var hægt að vista {{model}} vegna einnar villu."
121           other:  "Ekki var hægt að vista {{model}} vegna {{count}} villna."
122         body: "Upp kom vandamál í eftirfarandi dálkum:"
123       messages:
124         inclusion: "er ekki í listanum"
125         exclusion: "er frátekið"
126         invalid: "er ógilt"
127         confirmation: "er ekki jafngilt staðfestingunni"
128         accepted: "þarf að vera tekið gilt"
129         empty: "má ekki vera tómt"
130         blank: "má ekki innihalda auða stafi"
131         too_long: "er of langt (má mest vera {{count}} stafir)"
132         too_short: "er of stutt (má minnst vera {{count}} stafir)"
133         wrong_length: "er af rangri lengd (má mest vera {{count}} stafir)"
134         taken: "er þegar í notkun"
135         not_a_number: "er ikke et tall"
136         greater_than: "þarf að vera stærri en {{count}}"
137         greater_than_or_equal_to: "þarf að vera stærri en eða jafngilt {{count}}"
138         equal_to: "þarf að vera jafngilt {{count}}"
139         less_than: "þarf að vera minna en {{count}}"
140         less_than_or_equal_to: "þarf að vera minna en eða jafngilt {{count}}"
141         odd: "þarf að vera oddatala"
142         even: "þarf að vera slétt tala"