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