]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/sv-SE.yml
fix menu issue spotted by randomjunk
[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
4 "sv-SE":
5   number:
6     # Used in number_with_delimiter()
7     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
8     format:
9       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
10       separator: ","
11       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
12       delimiter: "."
13       # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
14       precision: 2
15       
16     # Used in number_to_currency()
17     currency:
18       format:
19         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
20         format: "%n %u"
21         unit: "kr"
22         # These three are to override number.format and are optional
23         # separator: "."
24         # delimiter: ","
25         # precision: 2
26         
27     # Used in number_to_percentage()
28     percentage:
29       format:
30         # These three are to override number.format and are optional
31         # separator: 
32         delimiter: ""
33         # precision: 
34         
35     # Used in number_to_precision()
36     precision:
37       format:
38         # These three are to override number.format and are optional
39         # separator:
40         delimiter: ""
41         # precision:
42         
43     # Used in number_to_human_size()
44     human:
45       format:
46         # These three are to override number.format and are optional
47         # separator: 
48         delimiter: ""
49         # precision: 1
50       storage_units:
51         # Storage units output formatting.
52         # %u is the storage unit, %n is the number (default: 2 MB)
53         format: "%n %u"
54         units:
55           byte:
56             one:   "Byte"
57             other: "Bytes"
58           kb: "KB"
59           mb: "MB"
60           gb: "GB"
61           tb: "TB"
62               
63   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
64   datetime:
65     distance_in_words:
66       half_a_minute: "en halv minut"
67       less_than_x_seconds:
68         one:   "mindre än en sekund"
69         other: "mindre än {{count}} sekunder"
70       x_seconds:
71         one:   "en sekund"
72         other: "{{count}} sekunder"
73       less_than_x_minutes:
74         one:   "mindre än en minut"
75         other: "mindre än {{count}} minuter"
76       x_minutes:
77         one:   "en minut"
78         other: "{{count}} minuter"
79       about_x_hours:
80         one:   "ungefär en timme"
81         other: "ungefär {{count}} timmar"
82       x_days:
83         one:   "en dag"
84         other: "{{count}} dagar"
85       about_x_months:
86         one:   "ungefär en månad"
87         other: "ungefär {{count}} månader"
88       x_months:
89         one:   "en månad"
90         other: "{{count}} månader"
91       about_x_years:
92         one:   "ungefär ett år"
93         other: "ungefär {{count}} år"
94       over_x_years:
95         one:   "mer än ett år"
96         other: "mer än {{count}} år"
97     prompts:
98       year:   "År"
99       month:  "Månad"
100       day:    "Dag"
101       hour:   "Timme"
102       minute: "Minut"
103       second: "Sekund"
104         
105   activerecord:
106     errors:
107       template:
108         header:
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.
115       messages:
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"
122         blank: "måste anges"
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.
136
137       # You can define own errors for models or model attributes.
138       # The values :model, :attribute and :value are always available for interpolation.
139       #
140       # For example,
141       #   models:
142       #     user:
143       #       blank: "This is a custom blank message for {{model}}: {{attribute}}"
144       #       attributes:
145       #         login:
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.
149       # models:
150         
151     # Translate model names. Used in Model.human_name().
152     #models:
153       # For example,
154       #   user: "Dude"
155       # will translate User model name to "Dude"
156     
157     # Translate model attribute names. Used in Model.human_attribute_name(attribute).
158     #attributes:
159       # For example,
160       #   user:
161       #     login: "Handle"
162       # will translate User attribute "login" as "Handle"
163
164   date:
165     formats:
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!
169       default: "%Y-%m-%d"
170       short: "%e %b"
171       long: "%e %B, %Y"
172       
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]
175       
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 ]
181
182   time:
183     formats:
184       default: "%a, %d %b %Y %H:%M:%S %z"
185       short: "%d %b %H:%M"
186       long: "%d %B, %Y %H:%M"
187     am: ""
188     pm: ""
189             
190 # Used in array.to_sentence.
191   support:
192     array:
193       words_connector: ", "
194       two_words_connector: " och "
195       last_word_connector: " och "