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)
7 # Used in number_with_delimiter()
8 # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
10 # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
12 # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
14 # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
17 # Used in number_to_currency()
20 # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
23 # These three are to override number.format and are optional
28 # Used in number_to_percentage()
31 # These three are to override number.format and are optional
36 # Used in number_to_precision()
39 # These three are to override number.format and are optional
44 # Used in number_to_human_size()
47 # These three are to override number.format and are optional
52 # Storage units output formatting.
53 # %u is the storage unit, %n is the number (default: 2 MB)
64 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
67 half_a_minute: "en halv minut"
69 one: "mindre än en sekund"
70 other: "mindre än {{count}} sekunder"
73 other: "{{count}} sekunder"
75 one: "mindre än en minut"
76 other: "mindre än {{count}} minuter"
79 other: "{{count}} minuter"
81 one: "ungefär en timme"
82 other: "ungefär {{count}} timmar"
85 other: "{{count}} dagar"
87 one: "ungefär en månad"
88 other: "ungefär {{count}} månader"
91 other: "{{count}} månader"
94 other: "ungefär {{count}} år"
97 other: "mer än {{count}} år"
100 other: "nästan {{count}} år"
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:"
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.
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"
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.
145 # You can define own errors for models or model attributes.
146 # The values :model, :attribute and :value are always available for interpolation.
151 # blank: "This is a custom blank message for {{model}}: {{attribute}}"
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.
159 # Translate model names. Used in Model.human_name().
163 # will translate User model name to "Dude"
165 # Translate model attribute names. Used in Model.human_attribute_name(attribute).
170 # will translate User attribute "login" as "Handle"
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!
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]
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 ]
192 default: "%a, %d %b %Y %H:%M:%S %z"
194 long: "%d %B, %Y %H:%M"
198 # Used in array.to_sentence.
201 words_connector: ", "
202 two_words_connector: " och "
203 last_word_connector: " och "
205 # default value for :prompt => true in FormOptionsHelper