alula 0.2.3 → 0.4.0b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. data/.gitignore +2 -0
  2. data/Gemfile +7 -0
  3. data/Guardfile +9 -0
  4. data/Rakefile +12 -1
  5. data/VERSION +1 -1
  6. data/alula.gemspec +20 -4
  7. data/lib/alula/attachment_processor.rb +77 -0
  8. data/lib/alula/cdn.rb +30 -0
  9. data/lib/alula/cdns/edgecast.rb +16 -0
  10. data/lib/alula/cdns/hosts.rb +14 -0
  11. data/lib/alula/cli.rb +90 -39
  12. data/lib/alula/compressors.rb +22 -10
  13. data/lib/alula/config.rb +141 -0
  14. data/lib/alula/content.rb +113 -0
  15. data/lib/alula/contents/attachment.rb +8 -0
  16. data/lib/alula/contents/item.rb +409 -0
  17. data/lib/alula/contents/metadata.rb +73 -0
  18. data/lib/alula/contents/page.rb +9 -0
  19. data/lib/alula/contents/post.rb +32 -0
  20. data/lib/alula/context.rb +72 -0
  21. data/lib/alula/core_ext.rb +5 -0
  22. data/lib/alula/core_ext/environment.rb +20 -0
  23. data/lib/alula/core_ext/filter.rb +20 -0
  24. data/lib/alula/core_ext/filters/smilies.rb +36 -0
  25. data/lib/alula/core_ext/manifest.rb +30 -0
  26. data/lib/alula/core_ext/tag.rb +100 -0
  27. data/lib/alula/core_ext/tags/attachment.rb +28 -0
  28. data/lib/alula/core_ext/tags/blockquote.rb +21 -0
  29. data/lib/alula/core_ext/tags/image.rb +48 -0
  30. data/lib/alula/core_ext/tags/locale.rb +17 -0
  31. data/lib/alula/core_ext/tags/video.rb +103 -0
  32. data/lib/alula/generator.rb +31 -0
  33. data/lib/alula/generators/feedbuilder.rb +44 -0
  34. data/lib/alula/generators/paginate.rb +88 -0
  35. data/lib/alula/generators/sitemap.rb +26 -0
  36. data/lib/alula/helpers.rb +2 -0
  37. data/lib/alula/helpers/addons.rb +12 -0
  38. data/lib/alula/helpers/assets.rb +56 -0
  39. data/lib/alula/helpers/url_helpers.rb +16 -0
  40. data/lib/alula/plugin.rb +32 -0
  41. data/lib/alula/processor.rb +86 -0
  42. data/lib/alula/processors/dummy.rb +24 -0
  43. data/lib/alula/processors/image.rb +52 -0
  44. data/lib/alula/processors/magick.rb +83 -0
  45. data/lib/alula/processors/video.rb +97 -0
  46. data/lib/alula/processors/zencoder.rb +199 -0
  47. data/lib/alula/progress.rb +95 -0
  48. data/lib/alula/progressbar.rb +66 -0
  49. data/lib/alula/site.rb +331 -262
  50. data/lib/alula/storage.rb +46 -0
  51. data/lib/alula/storages/file_item.rb +43 -0
  52. data/lib/alula/storages/filestorage.rb +96 -0
  53. data/lib/alula/storages/item.rb +12 -0
  54. data/lib/alula/support/commonlogger.rb +30 -0
  55. data/lib/alula/theme.rb +70 -13
  56. data/lib/alula/theme/layout.rb +56 -0
  57. data/lib/alula/theme/view.rb +43 -0
  58. data/lib/alula/version.rb +1 -1
  59. data/locales/en.yml +9 -0
  60. data/locales/fi.yml +10 -0
  61. data/locales/l10n/ar.yml +199 -0
  62. data/locales/l10n/az.yml +199 -0
  63. data/locales/l10n/bg.yml +199 -0
  64. data/locales/l10n/bn-IN.yml +182 -0
  65. data/locales/l10n/bs.yml +242 -0
  66. data/locales/l10n/ca.yml +199 -0
  67. data/locales/l10n/cs.yml +198 -0
  68. data/locales/l10n/csb.yml +210 -0
  69. data/locales/l10n/cy.yml +199 -0
  70. data/locales/l10n/da.yml +199 -0
  71. data/locales/l10n/de-AT.yml +203 -0
  72. data/locales/l10n/de-CH.yml +203 -0
  73. data/locales/l10n/de.yml +203 -0
  74. data/locales/l10n/dsb.yml +215 -0
  75. data/locales/l10n/el.yml +199 -0
  76. data/locales/l10n/en-AU.yml +205 -0
  77. data/locales/l10n/en-CA.yml +214 -0
  78. data/locales/l10n/en-GB.yml +205 -0
  79. data/locales/l10n/en-IN.yml +205 -0
  80. data/locales/l10n/en-US.yml +205 -0
  81. data/locales/l10n/en.yml +205 -0
  82. data/locales/l10n/eo.yml +201 -0
  83. data/locales/l10n/es-AR.yml +205 -0
  84. data/locales/l10n/es-CL.yml +199 -0
  85. data/locales/l10n/es-CO.yml +205 -0
  86. data/locales/l10n/es-MX.yml +205 -0
  87. data/locales/l10n/es-PE.yml +181 -0
  88. data/locales/l10n/es-VE.yml +205 -0
  89. data/locales/l10n/es.yml +199 -0
  90. data/locales/l10n/et.yml +199 -0
  91. data/locales/l10n/eu.yml +199 -0
  92. data/locales/l10n/fa.yml +199 -0
  93. data/locales/l10n/fi.yml +199 -0
  94. data/locales/l10n/fr-CA.yml +207 -0
  95. data/locales/l10n/fr-CH.yml +207 -0
  96. data/locales/l10n/fr.yml +222 -0
  97. data/locales/l10n/fur.yml +199 -0
  98. data/locales/l10n/gl-ES.yml +178 -0
  99. data/locales/l10n/gsw-CH.yml +199 -0
  100. data/locales/l10n/he.yml +201 -0
  101. data/locales/l10n/hi-IN.yml +199 -0
  102. data/locales/l10n/hi.yml +199 -0
  103. data/locales/l10n/hr.yml +237 -0
  104. data/locales/l10n/hsb.yml +214 -0
  105. data/locales/l10n/hu.yml +199 -0
  106. data/locales/l10n/id.yml +200 -0
  107. data/locales/l10n/is.yml +213 -0
  108. data/locales/l10n/it.yml +205 -0
  109. data/locales/l10n/ja.yml +197 -0
  110. data/locales/l10n/kn.yml +199 -0
  111. data/locales/l10n/ko.yml +197 -0
  112. data/locales/l10n/lo.yml +186 -0
  113. data/locales/l10n/lt.yml +182 -0
  114. data/locales/l10n/lv.yml +215 -0
  115. data/locales/l10n/mk.yml +170 -0
  116. data/locales/l10n/mn.yml +205 -0
  117. data/locales/l10n/nb.yml +207 -0
  118. data/locales/l10n/nl.yml +199 -0
  119. data/locales/l10n/nn.yml +160 -0
  120. data/locales/l10n/pl.yml +221 -0
  121. data/locales/l10n/pt-BR.yml +207 -0
  122. data/locales/l10n/pt-PT.yml +207 -0
  123. data/locales/l10n/quotes.yml +24 -0
  124. data/locales/l10n/rm.yml +182 -0
  125. data/locales/l10n/ro.yml +199 -0
  126. data/locales/l10n/ru.yml +257 -0
  127. data/locales/l10n/sk.yml +213 -0
  128. data/locales/l10n/sl.yml +210 -0
  129. data/locales/l10n/sr-Latn.yml +170 -0
  130. data/locales/l10n/sr.yml +170 -0
  131. data/locales/l10n/sv-SE.yml +199 -0
  132. data/locales/l10n/sw.yml +197 -0
  133. data/locales/l10n/th.yml +173 -0
  134. data/locales/l10n/tl.yml +229 -0
  135. data/locales/l10n/tr.yml +199 -0
  136. data/locales/l10n/uk.yml +257 -0
  137. data/locales/l10n/vi.yml +201 -0
  138. data/locales/l10n/wo.yml +205 -0
  139. data/locales/l10n/zh-CN.yml +199 -0
  140. data/locales/l10n/zh-TW.yml +199 -0
  141. data/template/Gemfile.erb +14 -4
  142. data/template/README +16 -0
  143. data/template/config.yml.erb +42 -38
  144. data/test/fixtures/config_001_simple.yml +2 -0
  145. data/test/fixtures/config_002_l10n.yml +5 -0
  146. data/test/fixtures/pages/invalid-page.markdown +1 -0
  147. data/test/fixtures/pages/multilingual-page.markdown +20 -0
  148. data/test/fixtures/pages/section/subpage.markdown +5 -0
  149. data/test/fixtures/pages/simple-page.markdown +7 -0
  150. data/test/fixtures/posts/2012-07-02-invalid-post.markdown +1 -0
  151. data/test/fixtures/posts/2012-07-02-simple.markdown +7 -0
  152. data/test/fixtures/posts/2012-07-03-full-metadata.markdown +8 -0
  153. data/test/fixtures/posts/2012-07-03-multilingual-full-metadata.markdown +20 -0
  154. data/test/fixtures/theme/test/layouts/default.html.erb +1 -0
  155. data/test/fixtures/theme/test/views/page.html.erb +1 -0
  156. data/test/fixtures/theme/test/views/post.html.erb +1 -0
  157. data/test/minitest_helper.rb +14 -0
  158. data/test/test_config.rb +33 -0
  159. data/test/test_content.rb +30 -0
  160. data/test/test_metadata.rb +83 -0
  161. data/test/test_page.rb +81 -0
  162. data/test/test_post.rb +123 -0
  163. data/test/test_storage.rb +23 -0
  164. data/test/test_storage_file.rb +32 -0
  165. data/test/test_theme.rb +45 -0
  166. data/vendor/assets/images/favicon.png +0 -0
  167. data/vendor/assets/images/grey.gif +0 -0
  168. data/vendor/assets/javascripts/jquery.alula.js.coffee +16 -0
  169. data/vendor/{javascripts → assets/javascripts}/jquery.js +0 -0
  170. data/vendor/assets/javascripts/jquery.lazyload.js +210 -0
  171. data/vendor/assets/javascripts/lazyload.js.coffee +15 -0
  172. data/vendor/layouts/feed.xml.builder +19 -0
  173. data/vendor/layouts/sitemap.xml.builder +10 -0
  174. data/vendor/views/feed_post.html.haml +1 -0
  175. metadata +529 -50
  176. data/lib/alula.rb +0 -5
  177. data/lib/alula/assethelper.rb +0 -75
  178. data/lib/alula/plugins.rb +0 -23
  179. data/lib/alula/plugins/assets.rb +0 -82
  180. data/lib/alula/plugins/pagination.rb +0 -121
  181. data/lib/alula/rake_tasks.rb +0 -42
  182. data/lib/alula/tasks.rb +0 -2
@@ -0,0 +1,205 @@
1
+ it:
2
+ date:
3
+ abbr_day_names:
4
+ - Dom
5
+ - Lun
6
+ - Mar
7
+ - Mer
8
+ - Gio
9
+ - Ven
10
+ - Sab
11
+ abbr_month_names:
12
+ -
13
+ - Gen
14
+ - Feb
15
+ - Mar
16
+ - Apr
17
+ - Mag
18
+ - Giu
19
+ - Lug
20
+ - Ago
21
+ - Set
22
+ - Ott
23
+ - Nov
24
+ - Dic
25
+ day_names:
26
+ - Domenica
27
+ - Lunedì
28
+ - Martedì
29
+ - Mercoledì
30
+ - Giovedì
31
+ - Venerdì
32
+ - Sabato
33
+ formats:
34
+ default: ! '%d-%m-%Y'
35
+ long: ! '%d %B %Y'
36
+ short: ! '%d %b'
37
+ month_names:
38
+ -
39
+ - Gennaio
40
+ - Febbraio
41
+ - Marzo
42
+ - Aprile
43
+ - Maggio
44
+ - Giugno
45
+ - Luglio
46
+ - Agosto
47
+ - Settembre
48
+ - Ottobre
49
+ - Novembre
50
+ - Dicembre
51
+ order:
52
+ - :day
53
+ - :month
54
+ - :year
55
+ datetime:
56
+ distance_in_words:
57
+ about_x_hours:
58
+ one: circa un'ora
59
+ other: circa %{count} ore
60
+ about_x_months:
61
+ one: circa un mese
62
+ other: circa %{count} mesi
63
+ about_x_years:
64
+ one: circa un anno
65
+ other: circa %{count} anni
66
+ almost_x_years:
67
+ one: circa 1 anno
68
+ other: circa %{count} anni
69
+ half_a_minute: mezzo minuto
70
+ less_than_x_minutes:
71
+ one: meno di un minuto
72
+ other: meno di %{count} minuti
73
+ less_than_x_seconds:
74
+ one: meno di un secondo
75
+ other: meno di %{count} secondi
76
+ over_x_years:
77
+ one: oltre un anno
78
+ other: oltre %{count} anni
79
+ x_days:
80
+ one: 1 giorno
81
+ other: ! '%{count} giorni'
82
+ x_minutes:
83
+ one: 1 minuto
84
+ other: ! '%{count} minuti'
85
+ x_months:
86
+ one: 1 mese
87
+ other: ! '%{count} mesi'
88
+ x_seconds:
89
+ one: 1 secondo
90
+ other: ! '%{count} secondi'
91
+ prompts:
92
+ day: Giorno
93
+ hour: Ora
94
+ minute: Minuto
95
+ month: Mese
96
+ second: Secondi
97
+ year: Anno
98
+ errors: &errors
99
+ format: ! '%{attribute} %{message}'
100
+ messages:
101
+ accepted: deve essere accettata
102
+ blank: non può essere lasciato in bianco
103
+ confirmation: non coincide con la conferma
104
+ empty: non può essere vuoto
105
+ equal_to: deve essere uguale a %{count}
106
+ even: deve essere pari
107
+ exclusion: è riservato
108
+ greater_than: deve essere superiore a %{count}
109
+ greater_than_or_equal_to: deve essere superiore o uguale a %{count}
110
+ inclusion: non è incluso nella lista
111
+ invalid: non è valido
112
+ less_than: deve essere meno di %{count}
113
+ less_than_or_equal_to: deve essere meno o uguale a %{count}
114
+ not_a_number: non è un numero
115
+ not_an_integer: non è un intero
116
+ odd: deve essere dispari
117
+ record_invalid: ! 'Validazione fallita: %{errors}'
118
+ taken: è già in uso
119
+ too_long:
120
+ one: è troppo lungo (il massimo è 1 carattere)
121
+ other: è troppo lungo (il massimo è %{count} caratteri)
122
+ too_short:
123
+ one: è troppo corto (il minimo è 1 carattere)
124
+ other: è troppo corto (il minimo è %{count} caratteri)
125
+ wrong_length:
126
+ one: è della lunghezza sbagliata (deve essere di 1 carattere)
127
+ other: è della lunghezza sbagliata (deve essere di %{count} caratteri)
128
+ template:
129
+ body: ! 'Per favore ricontrolla i seguenti campi:'
130
+ header:
131
+ one: ! 'Non posso salvare questo %{model}: 1 errore'
132
+ other: ! 'Non posso salvare questo %{model}: %{count} errori.'
133
+ helpers:
134
+ select:
135
+ prompt: Per favore, seleziona
136
+ submit:
137
+ create: Crea %{model}
138
+ submit: Invia %{model}
139
+ update: Aggiorna %{model}
140
+ number:
141
+ currency:
142
+ format:
143
+ delimiter: ! ','
144
+ format: ! '%n %u'
145
+ precision: 2
146
+ separator: .
147
+ significant: false
148
+ strip_insignificant_zeros: false
149
+ unit: €
150
+ format:
151
+ delimiter: ! ','
152
+ precision: 2
153
+ separator: .
154
+ significant: false
155
+ strip_insignificant_zeros: false
156
+ human:
157
+ decimal_units:
158
+ format: ! '%n %u'
159
+ units:
160
+ billion: Miliardi
161
+ million: Milioni
162
+ quadrillion: Biliardi
163
+ thousand: Mila
164
+ trillion: Bilioni
165
+ unit: ''
166
+ format:
167
+ delimiter: ''
168
+ precision: 1
169
+ significant: true
170
+ strip_insignificant_zeros: true
171
+ storage_units:
172
+ format: ! '%n %u'
173
+ units:
174
+ byte:
175
+ one: Byte
176
+ other: Byte
177
+ gb: GB
178
+ kb: KB
179
+ mb: MB
180
+ tb: TB
181
+ percentage:
182
+ format:
183
+ delimiter: ''
184
+ precision:
185
+ format:
186
+ delimiter: ''
187
+ support:
188
+ array:
189
+ last_word_connector: ! ' e '
190
+ two_words_connector: ! ' e '
191
+ words_connector: ! ', '
192
+ time:
193
+ am: am
194
+ formats:
195
+ default: ! '%a %d %b %Y, %H:%M:%S %z'
196
+ long: ! '%d %B %Y %H:%M'
197
+ short: ! '%d %b %H:%M'
198
+ pm: pm
199
+ # remove these aliases after 'activemodel' and 'activerecord' namespaces are removed from Rails repository
200
+ activemodel:
201
+ errors:
202
+ <<: *errors
203
+ activerecord:
204
+ errors:
205
+ <<: *errors
@@ -0,0 +1,197 @@
1
+ ja:
2
+ date:
3
+ abbr_day_names:
4
+ - 日
5
+ - 月
6
+ - 火
7
+ - 水
8
+ - 木
9
+ - 金
10
+ - 土
11
+ abbr_month_names:
12
+ -
13
+ - 1月
14
+ - 2月
15
+ - 3月
16
+ - 4月
17
+ - 5月
18
+ - 6月
19
+ - 7月
20
+ - 8月
21
+ - 9月
22
+ - 10月
23
+ - 11月
24
+ - 12月
25
+ day_names:
26
+ - 日曜日
27
+ - 月曜日
28
+ - 火曜日
29
+ - 水曜日
30
+ - 木曜日
31
+ - 金曜日
32
+ - 土曜日
33
+ formats:
34
+ default: ! '%Y/%m/%d'
35
+ long: ! '%Y年%m月%d日(%a)'
36
+ short: ! '%m/%d'
37
+ month_names:
38
+ -
39
+ - 1月
40
+ - 2月
41
+ - 3月
42
+ - 4月
43
+ - 5月
44
+ - 6月
45
+ - 7月
46
+ - 8月
47
+ - 9月
48
+ - 10月
49
+ - 11月
50
+ - 12月
51
+ order:
52
+ - :year
53
+ - :month
54
+ - :day
55
+ datetime:
56
+ distance_in_words:
57
+ about_x_hours:
58
+ one: 約1時間
59
+ other: 約%{count}時間
60
+ about_x_months:
61
+ one: 約1ヶ月
62
+ other: 約%{count}ヶ月
63
+ about_x_years:
64
+ one: 約1年
65
+ other: 約%{count}年
66
+ almost_x_years:
67
+ one: 1年弱
68
+ other: ! '%{count}年弱'
69
+ half_a_minute: 30秒前後
70
+ less_than_x_minutes:
71
+ one: 1分以内
72
+ other: ! '%{count}分以内'
73
+ less_than_x_seconds:
74
+ one: 1秒以内
75
+ other: ! '%{count}秒以内'
76
+ over_x_years:
77
+ one: 1年以上
78
+ other: ! '%{count}年以上'
79
+ x_days:
80
+ one: 1日
81
+ other: ! '%{count}日'
82
+ x_minutes:
83
+ one: 1分
84
+ other: ! '%{count}分'
85
+ x_months:
86
+ one: 1ヶ月
87
+ other: ! '%{count}ヶ月'
88
+ x_seconds:
89
+ one: 1秒
90
+ other: ! '%{count}秒'
91
+ prompts:
92
+ day: 日
93
+ hour: 時
94
+ minute: 分
95
+ month: 月
96
+ second: 秒
97
+ year: 年
98
+ errors: &errors
99
+ format: ! '%{attribute}%{message}'
100
+ messages:
101
+ accepted: を受諾してください。
102
+ blank: を入力してください。
103
+ confirmation: と確認の入力が一致しません。
104
+ empty: を入力してください。
105
+ equal_to: は%{count}にしてください。
106
+ even: は偶数にしてください。
107
+ exclusion: は予約されています。
108
+ greater_than: は%{count}より大きい値にしてください。
109
+ greater_than_or_equal_to: は%{count}以上の値にしてください。
110
+ inclusion: は一覧にありません。
111
+ invalid: は不正な値です。
112
+ less_than: は%{count}より小さい値にしてください。
113
+ less_than_or_equal_to: は%{count}以下の値にしてください。
114
+ not_a_number: は数値で入力してください。
115
+ not_an_integer: は整数で入力してください。
116
+ odd: は奇数にしてください。
117
+ record_invalid: バリデーションに失敗しました。 %{errors}
118
+ taken: はすでに存在します。
119
+ too_long: は%{count}文字以内で入力してください。
120
+ too_short: は%{count}文字以上で入力してください。
121
+ wrong_length: は%{count}文字で入力してください。
122
+ template:
123
+ body: 次の項目を確認してください。
124
+ header:
125
+ one: ! '%{model}にエラーが発生しました。'
126
+ other: ! '%{model}に%{count}つのエラーが発生しました。'
127
+ helpers:
128
+ select:
129
+ prompt: 選択してください。
130
+ submit:
131
+ create: 登録する
132
+ submit: 保存する
133
+ update: 更新する
134
+ number:
135
+ currency:
136
+ format:
137
+ delimiter: ! ','
138
+ format: ! '%n%u'
139
+ precision: 0
140
+ separator: .
141
+ significant: false
142
+ strip_insignificant_zeros: false
143
+ unit: 円
144
+ format:
145
+ delimiter: ! ','
146
+ precision: 3
147
+ separator: .
148
+ significant: false
149
+ strip_insignificant_zeros: false
150
+ human:
151
+ decimal_units:
152
+ format: ! '%n %u'
153
+ units:
154
+ billion: 十億
155
+ million: 百万
156
+ quadrillion: 千兆
157
+ thousand: 千
158
+ trillion: 兆
159
+ unit: ''
160
+ format:
161
+ delimiter: ''
162
+ precision: 3
163
+ significant: true
164
+ strip_insignificant_zeros: true
165
+ storage_units:
166
+ format: ! '%n%u'
167
+ units:
168
+ byte: バイト
169
+ gb: ギガバイト
170
+ kb: キロバイト
171
+ mb: メガバイト
172
+ tb: テラバイト
173
+ percentage:
174
+ format:
175
+ delimiter: ''
176
+ precision:
177
+ format:
178
+ delimiter: ''
179
+ support:
180
+ array:
181
+ last_word_connector: と
182
+ two_words_connector: と
183
+ words_connector: と
184
+ time:
185
+ am: 午前
186
+ formats:
187
+ default: ! '%Y/%m/%d %H:%M:%S'
188
+ long: ! '%Y年%m月%d日(%a) %H時%M分%S秒 %z'
189
+ short: ! '%y/%m/%d %H:%M'
190
+ pm: 午後
191
+ # remove these aliases after 'activemodel' and 'activerecord' namespaces are removed from Rails repository
192
+ activemodel:
193
+ errors:
194
+ <<: *errors
195
+ activerecord:
196
+ errors:
197
+ <<: *errors
@@ -0,0 +1,199 @@
1
+ kn:
2
+ date:
3
+ abbr_day_names:
4
+ - ರವಿ
5
+ - ಸೋಮ
6
+ - ಮಂಗಳ
7
+ - ಬುಧ
8
+ - ಗುರು
9
+ - ಶುಕ್ರ
10
+ - ಶನಿ
11
+ abbr_month_names:
12
+ -
13
+ - Jan
14
+ - Feb
15
+ - Mar
16
+ - Apr
17
+ - May
18
+ - Jun
19
+ - Jul
20
+ - Aug
21
+ - Sep
22
+ - Oct
23
+ - Nov
24
+ - Dec
25
+ day_names:
26
+ - ರವಿವಾರ
27
+ - ಸೋಮವಾರ
28
+ - ಮಂಗಳವಾರ
29
+ - ಬುಧವಾರ
30
+ - ಗುರುವಾರ
31
+ - ಶುಕ್ರವಾರ
32
+ - ಶನಿವಾರ
33
+ formats:
34
+ default: ! '%Y-%m-%d'
35
+ long: ! '%B %d, %Y'
36
+ short: ! '%b %d'
37
+ month_names:
38
+ -
39
+ - ಜನವರಿ
40
+ - ಫೆಬ್ರವರಿ
41
+ - ಮಾರ್ಚ್
42
+ - ಏಪ್ರಿಲ್
43
+ - ಮೇ
44
+ - ಜೂನ್
45
+ - ಜುಲೈ
46
+ - ಆಗಸ್ಟ್
47
+ - ಸೆಪ್ಟೆಂಬರ್
48
+ - ಅಕ್ಟೋಬರ್
49
+ - ನವಂಬರ್
50
+ - ಡಿಸೆಂಬರ್
51
+ order:
52
+ - :year
53
+ - :month
54
+ - :day
55
+ datetime:
56
+ distance_in_words:
57
+ about_x_hours:
58
+ one: ಸುಮಾರು ಒಂದು ಗಂಟೆ
59
+ other: ಸುಮಾರು %{count} ಗಂಟೆಗಳು
60
+ about_x_months:
61
+ one: ಸುಮಾರು ಒಂದು ತಿಂಗಳು
62
+ other: ಸುಮಾರು %{count} ತಿಂಗಳುಗಳು
63
+ about_x_years:
64
+ one: ಸುಮಾರು ಒಂದು ವರುಷ
65
+ other: ಸುಮಾರು %{count} ವರುಷಗಳು
66
+ almost_x_years:
67
+ one: ಸರಿಸುಮಾರು ಒಂದು ವರುಷ
68
+ other: ಸರಿಸುಮಾರು %{count} ವರುಷಗಳು
69
+ half_a_minute: ಒಂದು ಅರ್ಧ ನಿಮಿಷ
70
+ less_than_x_minutes:
71
+ one: ಒಂದು ನಿಮಿಷಕ್ಕೂ ಕಡಿಮೆ
72
+ other: ! '%{count} ನಿಮಿಷಕ್ಕಿಂತ ಕಡಿಮೆ'
73
+ less_than_x_seconds:
74
+ one: ಒಂದು ಸೆಕೆಂಡಿಗೂ ಕಡಿಮೆ
75
+ other: ! '%{count} ಸೆಕೆಂಡಿಗಿಂತ ಕಡಿಮೆ'
76
+ over_x_years:
77
+ one: ಒಂದು ವರುಷಕ್ಕಿಂತ ಹೆಚ್ಚು
78
+ other: ! '%{count} ವರುಷಗಳಿಗಿಂತ ಹೆಚ್ಚು'
79
+ x_days:
80
+ one: 1 ದಿನ
81
+ other: ! '%{count} ದಿನಗಳು'
82
+ x_minutes:
83
+ one: 1 ನಿಮಿಷ
84
+ other: ! '%{count} ನಿಮಿಷಗಳು'
85
+ x_months:
86
+ one: 1 ತಿಂಗಳು
87
+ other: ! '%{count} ತಿಂಗಳುಗಳು'
88
+ x_seconds:
89
+ one: 1 ಸೆಕೆಂಡ್
90
+ other: ! '%{count} ಸೆಕೆಂಡುಗಳು'
91
+ prompts:
92
+ day: ದಿನ
93
+ hour: ಗಂಟೆ
94
+ minute: ನಿಮಿಷ
95
+ month: ತಿಂಗಳು
96
+ second: ಸೆಕೆಂಡು
97
+ year: ವರುಷ
98
+ errors: &errors
99
+ format: ! '%{attribute} %{message}'
100
+ messages:
101
+ accepted: ಒಪ್ಪಿಕೊಳ್ಳಬೇಕು
102
+ blank: ಖಾಲಿ ಬಿಡಲು ಸಧ್ಯವಿಲ್ಲ
103
+ confirmation: ಸಮರ್ಥನೆ ಸರಿಬರಲ್ಲಿಲ್ಲ
104
+ empty: ಖಾಲಿ ಬಿಡಲು ಸಧ್ಯವಿಲ್ಲ
105
+ equal_to: ! '%{count} ಕ್ಕೆ ಸಮಾನವಾಗಿರಬೇಕು'
106
+ even: ಸಮ ಆಗಿರಬೇಕು
107
+ exclusion: ಕಾಯ್ದಿರಿಸಲಾಗಿದೆ
108
+ greater_than: ! '%{count} ಕ್ಕಿಂತ ಹೆಚ್ಚಿರಬೇಕು'
109
+ greater_than_or_equal_to: ! '%{count} ಕಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮಾನವಾಗಿರ ಇರಬೇಕು'
110
+ inclusion: ಪಟ್ಟಿಯಲ್ಲಿ ಶಾಮೀಲು ಆಗಿಲ್ಲ
111
+ invalid: ನಿರರ್ಥಕವಾಗಿದೆ
112
+ less_than: ! '%{count} ಕ್ಕಿಂತ ಕಡಿಮೆ ಆಗಿರಬೇಕು'
113
+ less_than_or_equal_to: ! '%{count} ಕಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮಾನವಾಗಿರ ಇರಬೇಕು'
114
+ not_a_number: ಸಂಖೆ ಆಗಿಲ್ಲ
115
+ not_an_integer: ಸಂಖೆ ಆಗಿರಬೇಕು
116
+ odd: ಬೆಸ ಆಗಿರಬೇಕು
117
+ record_invalid: ! 'ತಪ್ಪು ಆಧಾರ: %{errors}'
118
+ taken: ತೆಗೆದುಕೊಂಡಾಗಿದೆ
119
+ too_long: ಬಹಳ ದೊಡ್ಡದಾಗಿದೆ (ಗರಿಷ್ಟ %{count} ಅಕ್ಷರಗಳು)
120
+ too_short: ಬಹಳ ಚಿಕ್ಕದಾಗಿದೆ (ಕನಿಷ್ಠ %{count} ಅಕ್ಷರಗಳು)
121
+ wrong_length: ತಪ್ಪು ಉದ್ದವಿದೆ (%{count} ಅಕ್ಷರಗಳಿರಬೇಕು)
122
+ template:
123
+ body: ! 'ಸಮಸ್ಯೆಗಳಿರುವ ಜಾಗಗಳು:'
124
+ header:
125
+ one: 1 ಧೋಷದ ಪರಿಣಾಮ %{model} ಅನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ
126
+ other: ! '%{count} ಧೋಷಗಳ ಪರಿಣಾಮ %{model} ಅನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ'
127
+ helpers:
128
+ select:
129
+ prompt: ದಯವಿಟ್ಟು ಆರಿಸಿ
130
+ submit:
131
+ create: ! '%{model} ರಚಿಸಿ'
132
+ submit: ! '%{model} ಕಳುಹಿಸು'
133
+ update: ! '%{model} ರಚಿಸಿ'
134
+ number:
135
+ currency:
136
+ format:
137
+ delimiter: ! ','
138
+ format: ! '%u%n'
139
+ precision: 2
140
+ separator: .
141
+ significant: false
142
+ strip_insignificant_zeros: false
143
+ unit: $
144
+ format:
145
+ delimiter: ! ','
146
+ precision: 3
147
+ separator: .
148
+ significant: false
149
+ strip_insignificant_zeros: false
150
+ human:
151
+ decimal_units:
152
+ format: ! '%n %u'
153
+ units:
154
+ billion: ಲಕ್ಷಕೋಟಿ
155
+ million: ದಶಲಕ್ಷ
156
+ quadrillion: ಪದ್ಮ
157
+ thousand: ಸಾವಿರ
158
+ trillion: ನೀಲ್
159
+ unit: ''
160
+ format:
161
+ delimiter: ''
162
+ precision: 3
163
+ significant: true
164
+ strip_insignificant_zeros: true
165
+ storage_units:
166
+ format: ! '%n %u'
167
+ units:
168
+ byte:
169
+ one: Byte
170
+ other: Bytes
171
+ gb: GB
172
+ kb: KB
173
+ mb: MB
174
+ tb: TB
175
+ percentage:
176
+ format:
177
+ delimiter: ''
178
+ precision:
179
+ format:
180
+ delimiter: ''
181
+ support:
182
+ array:
183
+ last_word_connector: ! ', ಮತ್ತು '
184
+ two_words_connector: ! ' ಮತ್ತು '
185
+ words_connector: ! ', '
186
+ time:
187
+ am: ಪ್ರಾತಃಕಾಲ
188
+ formats:
189
+ default: ! '%a, %d %b %Y %H:%M:%S %z'
190
+ long: ! '%B %d, %Y %H:%M'
191
+ short: ! '%d %b %H:%M'
192
+ pm: ಅಪರನ್ನಃ
193
+ # remove these aliases after 'activemodel' and 'activerecord' namespaces are removed from Rails repository
194
+ activemodel:
195
+ errors:
196
+ <<: *errors
197
+ activerecord:
198
+ errors:
199
+ <<: *errors