]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/sv-SE.yml
Merge branch 'master' of git://git.openstreetmap.org/rails into openID
[rails.git] / vendor / plugins / rails-i18n / locale / sv-SE.yml
1 # Swedish translation.
2 # By Johan Lundström (johanlunds@gmail.com) with parts taken from http://github.com/daniel/swe_rails.
3 # With contributions by:
4 #   * Sven Dahlstrand (sven.dahlstrand@gmail.com)
5 #   * Henrik Nyh (henrik@nyh.se)
6
7 "sv-SE":
8   number:
9     # Used in number_with_delimiter()
10     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
11     format:
12       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
13       separator: ","
14       # Delimits thousands (e.g. 1,000,000 is a million) (always in groups of three)
15       delimiter: " "
16       # Number of decimals after the separator (the number 1 with a precision of 2 gives: 1.00)
17       precision: 2
18
19     # Used in number_to_currency()
20     currency:
21       format:
22         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
23         format: "%n %u"
24         unit: "kr"
25
26     # Used in number_to_human_size()
27     human:
28       format:
29         # These three are to override number.format and are optional
30         # separator:
31         # delimiter: ""
32         precision: 1
33       storage_units:
34         # Storage units output formatting.
35         # %u is the storage unit, %n is the number (default: 2 MB)
36         format: "%n %u"
37         units:
38           byte:
39             one:   "Byte"
40             other: "Bytes"
41           kb: "KB"
42           mb: "MB"
43           gb: "GB"
44           tb: "TB"
45
46   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
47   datetime:
48     distance_in_words:
49       half_a_minute: "en halv minut"
50       less_than_x_seconds:
51         one:   "mindre än en sekund"
52         other: "mindre än {{count}} sekunder"
53       x_seconds:
54         one:   "en sekund"
55         other: "{{count}} sekunder"
56       less_than_x_minutes:
57         one:   "mindre än en minut"
58         other: "mindre än {{count}} minuter"
59       x_minutes:
60         one:   "en minut"
61         other: "{{count}} minuter"
62       about_x_hours:
63         one:   "ungefär en timme"
64         other: "ungefär {{count}} timmar"
65       x_days:
66         one:   "en dag"
67         other: "{{count}} dagar"
68       about_x_months:
69         one:   "ungefär en månad"
70         other: "ungefär {{count}} månader"
71       x_months:
72         one:   "en månad"
73         other: "{{count}} månader"
74       about_x_years:
75         one:   "ungefär ett år"
76         other: "ungefär {{count}} år"
77       over_x_years:
78         one:   "mer än ett år"
79         other: "mer än {{count}} år"
80       almost_x_years:
81         one:   "nästan ett år"
82         other: "nästan {{count}} år"
83     prompts:
84       year:   "År"
85       month:  "Månad"
86       day:    "Dag"
87       hour:   "Timme"
88       minute: "Minut"
89       second: "Sekund"
90
91   activemodel:
92     errors:
93       template:
94         header:
95           one:   "Ett fel förhindrade denna {{model}} från att sparas"
96           other: "{{count}} fel förhindrade denna {{model}} från att sparas"
97         # The variable :count is also available
98         body: "Det var problem med följande fält:"
99
100   activerecord:
101     errors:
102       # model.errors.full_messages format.
103       format: "{{attribute}} {{message}}"
104       
105       template:
106         header:
107           one:    "Ett fel förhindrade denna {{model}} från att sparas"
108           other:  "{{count}} fel förhindrade denna {{model}} från att sparas"
109         body: "Det var problem med följande fält:"
110       
111       # The values :model, :attribute and :value are always available for interpolation
112       # The value :count is available when applicable. Can be used for pluralization.
113       messages:
114         inclusion: "finns inte i listan"
115         exclusion: "är reserverat"
116         invalid: "är ogiltigt"
117         confirmation: "stämmer inte överens"
118         accepted: "måste vara accepterad"
119         empty: "får ej vara tom"
120         blank: "måste anges"
121         too_long: "är för lång (maximum är {{count}} tecken)"
122         too_short: "är för kort (minimum är {{count}} tecken)"
123         wrong_length: "har fel längd (ska vara {{count}} tecken)"
124         taken: "har redan tagits"
125         not_a_number: "är inte ett nummer"
126         greater_than: "måste vara större än {{count}}"
127         greater_than_or_equal_to: "måste vara större än eller lika med {{count}}"
128         equal_to: "måste vara samma som"
129         less_than: "måste vara mindre än {{count}}"
130         less_than_or_equal_to: "måste vara mindre än eller lika med {{count}}"
131         odd: "måste vara udda"
132         even: "måste vara jämnt"
133         record_invalid: "Ett fel uppstod: {{errors}}"
134         # Append your own errors here or at the model/attributes scope.
135
136       # You can define own errors for models or model attributes.
137       # The values :model, :attribute and :value are always available for interpolation.
138       #
139       # For example,
140       #   models:
141       #     user:
142       #       blank: "This is a custom blank message for {{model}}: {{attribute}}"
143       #       attributes:
144       #         login:
145       #           blank: "This is a custom blank message for User login"
146       # Will define custom blank validation message for User model and
147       # custom blank validation message for login attribute of User model.
148       # models:
149
150     # Translate model names. Used in Model.human_name().
151     #models:
152       # For example,
153       #   user: "Dude"
154       # will translate User model name to "Dude"
155
156     # Translate model attribute names. Used in Model.human_attribute_name(attribute).
157     #attributes:
158       # For example,
159       #   user:
160       #     login: "Handle"
161       # will translate User attribute "login" as "Handle"
162
163   date:
164     formats:
165       # Use the strftime parameters for formats.
166       # When no format has been given, it uses default.
167       # You can provide other formats here if you like!
168       default: "%Y-%m-%d"
169       short: "%e %b"
170       long: "%e %B %Y"
171
172     day_names: [söndag, måndag, tisdag, onsdag, torsdag, fredag, lördag]
173     abbr_day_names: [sön, mån, tis, ons, tor, fre, lör]
174
175     # Don't forget the nil at the beginning; there's no such thing as a 0th month
176     month_names: [~, januari, februari, mars, april, maj, juni, juli, augusti, september, oktober, november, december]
177     abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
178     # Used in date_select and datime_select.
179     order: [ :day, :month, :year ]
180
181   time:
182     formats:
183       default: "%a, %e %b %Y %H:%M:%S %z"
184       short: "%e %b %H:%M"
185       long: "%e %B %Y %H:%M"
186     am: ""
187     pm: ""
188
189 # Used in array.to_sentence.
190   support:
191     array:
192       words_connector: ", "
193       two_words_connector: " och "
194       last_word_connector: " och "
195     select:
196       # default value for :prompt => true in FormOptionsHelper
197       prompt: "Välj"