ref: master
config/locales/sk.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# Slovak translations for Ruby on Rails (inspired by the Czech localization - thanx to Karel Minařík) # by Jozef Fulop (jofi-rails@silake.com) # edit by Ivan Stana (stiipa@centrum.sk) "sk": # Date date: formats: default: "%d.%m.%Y" short: "%d %b" long: "%d. %B %Y" day_names: - Nedeľa - Pondelok - Utorok - Streda - Štvrtok - Piatok - Sobota abbr_day_names: - Ne - Po - Ut - St - Št - Pi - So month_names: - ~ - Január - Február - Marec - Apríl - Máj - Jún - Júl - August - September - Október - November - December abbr_month_names: - ~ - Jan - Feb - Mar - Apr - Máj - Jún - Júl - Aug - Sep - Okt - Nov - Dec order: - :day - :month - :year # Time time: formats: default: "%a %d. %B %Y %H:%M %z" short: "%d.%m. %H:%M" long: "%A %d. %B %Y %H:%M" am: "dopoludnia" pm: "popoludní" # ActiveSupport support: array: words_connector: ", " two_words_connector: " a " last_word_connector: " a " select: prompt: "Prosím vyberte si" # Numbers number: format: precision: 3 separator: "," delimiter: " " significant: false strip_insignificant_zeros: false currency: format: unit: "€" precision: 2 format: "%n %u" separator: "," delimiter: " " significant: false strip_insignificant_zeros: false percentage: format: delimiter: " " precision: format: delimiter: "" human: format: precision: 1 delimiter: "" significant: false strip_insignificant_zeros: false storage_units: format: "%n %u" units: byte: other: "B" one: "B" kb: "KB" mb: "MB" gb: "GB" tb: "TB" decimal_units: format: "%n %u" units: unit: "" thousand: Tisíc million: Milión billion: Miliarda trillion: Bilión quadrillion: Biliarda # Distance of time ... helper datetime: prompts: second: "Sekunda" minute: "Minúta" hour: "Hodina" day: "Deň" month: "Mesiac" year: "Rok" distance_in_words: half_a_minute: 'pol minútou' less_than_x_seconds: one: 'asi pred sekundou' other: 'asi pred %{count} sekundami' x_seconds: one: 'sekundou' other: '%{count} sekundami' less_than_x_minutes: one: 'pred necelou minútou' other: 'pred ani nie %{count} minútami' x_minutes: one: 'minútou' other: '%{count} minútami' about_x_hours: one: 'asi hodinou' other: 'asi %{count} hodinami' x_days: one: '24 hodinami' other: '%{count} dňami' about_x_months: one: 'asi mesiacom' other: 'asi %{count} mesiacmi' x_months: one: 'mesiacom' other: '%{count} mesiacmi' about_x_years: one: 'asi rokom' other: 'asi %{count} rokmi' over_x_years: one: 'pred viac ako rokom' other: 'viac ako %{count} rokmi' almost_x_years: one: "takmer pred rokom" other: "takmer pred %{count} rokmi" helpers: select: prompt: "Prosím vyberte si" submit: create: 'Vytvoriť %{model}' update: 'Aktualizovať %{model}' submit: 'Uložiť %{model}' errors: format: "%{attribute} %{message}" messages: &errors_messages inclusion: "nie je v zozname povolených hodnôt" exclusion: "je vyhradené pre iný účel" invalid: "nie je platná hodnota" confirmation: "nebolo potvrdené" accepted: "musí byť potvrdené" empty: "nesmie byť prázdny/e" blank: "je povinná položka" too_long: "je príliš dlhá/ý (max. %{count} znakov)" too_short: "je príliš krátky/a (min. %{count} znakov)" wrong_length: "nemá správnu dĺžku (očakáva sa %{count} znakov)" taken: "sa už nachádza v databáze" not_a_number: "nie je číslo" not_an_integer: "musí byť celé číslo" greater_than: "musí byť väčšie ako %{count}" greater_than_or_equal_to: "musí byť väčšie alebo rovné %{count}" equal_to: "sa musí rovnať %{count}" less_than: "musí byť menšie ako %{count}" less_than_or_equal_to: "musí byť menšie alebo rovné %{count}" odd: "musí byť nepárne číslo" even: "musí byť párne číslo" taken: "ste už použili" record_invalid: "Validácia neúspešná: %{errors}" template: &errors_template header: one: "Pri ukladaní objektu %{model} došlo k chybám a nebolo ho možné uložiť" other: "Pri ukladaní objektu %{model} došlo k %{count} chybám a nebolo ho možné uložiť" body: "Nasledujúce polia obsahujú chybne vyplnené údaje:" # ActiveRecord validation messages activerecord: errors: messages: <<: *errors_messages template: <<: *errors_template full_messages: format: "%{attribute} %{message}" |