]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/sv-SE.yml
Update rails translations
[rails.git] / vendor / rails-locales / 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 #   * Magnus Bergmark (magnus.bergmark@gmail.com)
7 #   * Carl Åkerlindh (carl.akerlindh@gmail.com)
8
9 "sv-SE":
10   number:
11     # Used in number_with_delimiter()
12     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
13     format:
14       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
15       separator: ","
16       # Delimits thousands (e.g. 1,000,000 is a million) (always in groups of three)
17       delimiter: " " # non-breaking space
18       # Number of decimals after the separator (the number 1 with a precision of 2 gives: 1.00)
19       precision: 2
20       significant: false
21       strip_insignificant_zeros: false
22
23     # Used in number_to_currency()
24     currency:
25       format:
26         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
27         format: "%n %u"
28         negative_format: "-%n %u"
29         unit: "kr"
30
31     percentage:
32       format:
33          delimiter: ""
34
35     precision:
36       format:
37         delimiter: ""
38
39     # Used in number_to_human_size()
40     human:
41       format:
42         delimiter: ""
43         precision: 1
44
45       storage_units:
46         # Storage units output formatting.
47         # %u is the storage unit, %n is the number (default: 2 MB)
48         format: "%n %u"
49         units:
50           byte:
51             one: "Byte"
52             other: "Bytes"
53           kb: "KB"
54           mb: "MB"
55           gb: "GB"
56           tb: "TB"
57       decimal_units:
58         format: "%n %u"
59         units:
60           unit: ""
61           thousand: "Tusen"
62           million: "Miljon"
63           billion: "Miljard"
64           trillion: "Biljon"
65           quadrillion: "Biljard"
66
67   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
68   datetime:
69     distance_in_words:
70       half_a_minute: "en halv minut"
71       less_than_x_seconds:
72         one:   "mindre än en sekund"
73         other: "mindre än %{count} sekunder"
74       x_seconds:
75         one:   "en sekund"
76         other: "%{count} sekunder"
77       less_than_x_minutes:
78         one:   "mindre än en minut"
79         other: "mindre än %{count} minuter"
80       x_minutes:
81         one:   "en minut"
82         other: "%{count} minuter"
83       about_x_hours:
84         one:   "ungefär en timme"
85         other: "ungefär %{count} timmar"
86       x_days:
87         one:   "en dag"
88         other: "%{count} dagar"
89       about_x_months:
90         one:   "ungefär en månad"
91         other: "ungefär %{count} månader"
92       x_months:
93         one:   "en månad"
94         other: "%{count} månader"
95       about_x_years:
96         one:   "ungefär ett år"
97         other: "ungefär %{count} år"
98       over_x_years:
99         one:   "mer än ett år"
100         other: "mer än %{count} år"
101       almost_x_years:
102         one:   "nästan ett år"
103         other: "nästan %{count} år"
104
105     prompts:
106       year:   "År"
107       month:  "Månad"
108       day:    "Dag"
109       hour:   "Timme"
110       minute: "Minut"
111       second: "Sekund"
112
113   helpers:
114     select:
115       prompt: "Välj"
116
117     submit:
118       create: "Skapa %{model}"
119       update: "Ändra %{model}"
120       submit: "Spara %{model}"
121
122   errors:
123     format: "%{attribute} %{message}"
124
125     messages: &errors_messages
126       inclusion: "finns inte i listan"
127       exclusion: "är reserverat"
128       invalid: "har fel format"
129       confirmation: "stämmer inte överens"
130       accepted: "måste vara accepterad"
131       empty: "får ej vara tom"
132       blank: "måste anges"
133       too_long: "är för lång (maximum är %{count} tecken)"
134       too_short: "är för kort (minimum är %{count} tecken)"
135       wrong_length: "har fel längd (ska vara %{count} tecken)"
136       taken: "har redan tagits"
137       not_a_number: "är inte ett nummer"
138       not_an_integer: "måste vara ett heltal"
139       greater_than: "måste vara större än %{count}"
140       greater_than_or_equal_to: "måste vara större än eller lika med %{count}"
141       equal_to: "måste vara samma som"
142       less_than: "måste vara mindre än %{count}"
143       less_than_or_equal_to: "måste vara mindre än eller lika med %{count}"
144       odd: "måste vara udda"
145       even: "måste vara jämnt"
146       record_invalid: "Ett fel uppstod: %{errors}"
147       not_saved: "Kunde inte sparas"
148
149   activerecord:
150     errors:
151       # model.errors.full_messages format.
152       template:
153         header:
154           one:    "Ett fel förhindrade denna %{model} från att sparas"
155           other:  "%{count} fel förhindrade denna %{model} från att sparas"
156         body: "Det var problem med följande fält:"
157
158       messages:
159         taken: "är upptaget"
160         record_invalid: "Validering misslyckades: %{errors}"
161         <<: *errors_messages
162
163       full_messages:
164         format: "%{attribute} %{message}"
165
166       # The values :model, :attribute and :value are always available for interpolation
167       # The value :count is available when applicable. Can be used for pluralization.
168         # Append your own errors here or at the model/attributes scope.
169
170       # You can define own errors for models or model attributes.
171       # The values :model, :attribute and :value are always available for interpolation.
172       #
173       # For example,
174       #   models:
175       #     user:
176       #       blank: "This is a custom blank message for %{model}: %{attribute}"
177       #       attributes:
178       #         login:
179       #           blank: "This is a custom blank message for User login"
180       # Will define custom blank validation message for User model and
181       # custom blank validation message for login attribute of User model.
182       # models:
183
184     # Translate model names. Used in Model.human_name().
185     #models:
186       # For example,
187       #   user: "Dude"
188       # will translate User model name to "Dude"
189
190     # Translate model attribute names. Used in Model.human_attribute_name(attribute).
191     #attributes:
192       # For example,
193       #   user:
194       #     login: "Handle"
195       # will translate User attribute "login" as "Handle"
196
197   date:
198     formats:
199       # Use the strftime parameters for formats.
200       # When no format has been given, it uses default.
201       # You can provide other formats here if you like!
202       default: "%Y-%m-%d"
203       short: "%e %b"
204       long: "%e %B %Y"
205
206     day_names:
207       - söndag
208       - måndag
209       - tisdag
210       - onsdag
211       - torsdag
212       - fredag
213       - lördag
214     abbr_day_names:
215       - sön
216       - mån
217       - tis
218       - ons
219       - tor
220       - fre
221       - lör
222
223     # Don't forget the nil at the beginning; there's no such thing as a 0th month
224     month_names:
225       - ~
226       - januari
227       - februari
228       - mars
229       - april
230       - maj
231       - juni
232       - juli
233       - augusti
234       - september
235       - oktober
236       - november
237       - december
238     abbr_month_names:
239       - ~
240       - jan
241       - feb
242       - mar
243       - apr
244       - maj
245       - jun
246       - jul
247       - aug
248       - sep
249       - okt
250       - nov
251       - dec
252     # Used in date_select and datime_select.
253     order:
254       - :day
255       - :month
256       - :year
257
258   time:
259     formats:
260       default: "%a, %e %b %Y %H:%M:%S %z"
261       short: "%e %b %H:%M"
262       long: "%e %B %Y %H:%M"
263     am: ""
264     pm: ""
265
266   # Used in array.to_sentence.
267   support:
268     array:
269       words_connector: ", "
270       two_words_connector: " och "
271       last_word_connector: " och "
272     select:
273       # default value for :prompt => true in FormOptionsHelper
274       prompt: "Välj"