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