1 # Swedish translation, by Johan Lundström (johanlunds@gmail.com), with parts taken
 
   2 # from http://github.com/daniel/swe_rails
 
   6     # Used in number_with_delimiter()
 
   7     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
 
   9       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
 
  11       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
 
  13       # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
 
  16     # Used in number_to_currency()
 
  19         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
 
  22         # These three are to override number.format and are optional
 
  27     # Used in number_to_percentage()
 
  30         # These three are to override number.format and are optional
 
  35     # Used in number_to_precision()
 
  38         # These three are to override number.format and are optional
 
  43     # Used in number_to_human_size()
 
  46         # These three are to override number.format and are optional
 
  51         # Storage units output formatting.
 
  52         # %u is the storage unit, %n is the number (default: 2 MB)
 
  63   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
 
  66       half_a_minute: "en halv minut"
 
  68         one:   "mindre än en sekund"
 
  69         other: "mindre än {{count}} sekunder"
 
  72         other: "{{count}} sekunder"
 
  74         one:   "mindre än en minut"
 
  75         other: "mindre än {{count}} minuter"
 
  78         other: "{{count}} minuter"
 
  80         one:   "ungefär en timme"
 
  81         other: "ungefär {{count}} timmar"
 
  84         other: "{{count}} dagar"
 
  86         one:   "ungefär en månad"
 
  87         other: "ungefär {{count}} månader"
 
  90         other: "{{count}} månader"
 
  93         other: "ungefär {{count}} år"
 
  96         other: "mer än {{count}} år"
 
 109           one:    "Ett fel förhindrade denna {{model}} från att sparas"
 
 110           other:  "{{count}} fel förhindrade denna {{model}} från att sparas"
 
 111         # The variable :count is also available
 
 112         body: "Det var problem med följande fält:"
 
 113       # The values :model, :attribute and :value are always available for interpolation
 
 114       # The value :count is available when applicable. Can be used for pluralization.
 
 116         inclusion: "finns inte i listan"
 
 117         exclusion: "är reserverat"
 
 118         invalid: "är ogiltigt"
 
 119         confirmation: "stämmer inte överens"
 
 120         accepted : "måste vara accepterad"
 
 121         empty: "får ej vara tom"
 
 123         too_long: "är för lång (maximum är {{count}} tecken)"
 
 124         too_short: "är för kort (minimum är {{count}} tecken)"
 
 125         wrong_length: "har fel längd (ska vara {{count}} tecken)"
 
 126         taken: "har redan tagits"
 
 127         not_a_number: "är inte ett nummer"
 
 128         greater_than: "måste vara större än {{count}}"
 
 129         greater_than_or_equal_to: "måste vara större än eller lika med {{count}}"
 
 130         equal_to: "måste vara samma som"
 
 131         less_than: "måste vara mindre än {{count}}"
 
 132         less_than_or_equal_to: "måste vara mindre än eller lika med {{count}}"
 
 133         odd: "måste vara udda"
 
 134         even: "måste vara jämnt"
 
 135         # Append your own errors here or at the model/attributes scope.
 
 137       # You can define own errors for models or model attributes.
 
 138       # The values :model, :attribute and :value are always available for interpolation.
 
 143       #       blank: "This is a custom blank message for {{model}}: {{attribute}}"
 
 146       #           blank: "This is a custom blank message for User login"
 
 147       # Will define custom blank validation message for User model and 
 
 148       # custom blank validation message for login attribute of User model.
 
 151     # Translate model names. Used in Model.human_name().
 
 155       # will translate User model name to "Dude"
 
 157     # Translate model attribute names. Used in Model.human_attribute_name(attribute).
 
 162       # will translate User attribute "login" as "Handle"
 
 166       # Use the strftime parameters for formats.
 
 167       # When no format has been given, it uses default.
 
 168       # You can provide other formats here if you like!
 
 173     day_names: [söndag, måndag, tisdag, onsdag, torsdag, fredag, lördag]
 
 174     abbr_day_names: [sön, mån, tis, ons, tor, fre, lör]
 
 176     # Don't forget the nil at the beginning; there's no such thing as a 0th month
 
 177     month_names: [~, januari, februari, mars, april, maj, juni, juli, augusti, september, oktober, november, december]
 
 178     abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
 
 179     # Used in date_select and datime_select.
 
 180     order: [ :day, :month, :year ]
 
 184       default: "%a, %d %b %Y %H:%M:%S %z"
 
 186       long: "%d %B, %Y %H:%M"
 
 190 # Used in array.to_sentence.
 
 193       words_connector: ", "
 
 194       two_words_connector: " och "
 
 195       last_word_connector: " och "