fgu
This commit is contained in:
parent
a7005c6e8b
commit
5987529771
|
@ -44,6 +44,8 @@ class Bulletin
|
||||||
|
|
||||||
validates :title, :at_least_one => true
|
validates :title, :at_least_one => true
|
||||||
|
|
||||||
|
validate :image_size
|
||||||
|
|
||||||
# def to_indexed_json
|
# def to_indexed_json
|
||||||
# self.to_json
|
# self.to_json
|
||||||
# end
|
# end
|
||||||
|
@ -171,5 +173,12 @@ class Bulletin
|
||||||
# self.tag_ids.delete('')
|
# self.tag_ids.delete('')
|
||||||
# end
|
# end
|
||||||
|
|
||||||
|
def image_size
|
||||||
|
if self.image.size > 500.kilobyte
|
||||||
|
errors.add( :image, I18n.t("announcement.image_limit"))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -139,7 +139,7 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="image_note"><%= t("announcement.image_note")%></div>
|
<div class="image_note"><br /><%= t("announcement.image_note")%><br /><%= t("announcement.image_size_note")%></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,8 @@ en:
|
||||||
search_result: Search result
|
search_result: Search result
|
||||||
image: Cover image
|
image: Cover image
|
||||||
image_note: The image will not show in content
|
image_note: The image will not show in content
|
||||||
|
image_size_note: Limited to 500KB
|
||||||
|
image_limit: Image upload size is limited to 500KB
|
||||||
link_name: Link Name
|
link_name: Link Name
|
||||||
new_bulletin_category: New Bulletin Category
|
new_bulletin_category: New Bulletin Category
|
||||||
picture: Cover Picture
|
picture: Cover Picture
|
||||||
|
|
|
@ -30,6 +30,8 @@ zh_tw:
|
||||||
search_result: 搜尋結果頁
|
search_result: 搜尋結果頁
|
||||||
image: 封面圖片
|
image: 封面圖片
|
||||||
image_note: 此處上傳的圖片不會在公告內文出現
|
image_note: 此處上傳的圖片不會在公告內文出現
|
||||||
|
image_size_note: 系統限制上傳500k以下的圖片
|
||||||
|
image_limit: 圖片上傳容量限制為500kB
|
||||||
link_name: 連結名稱
|
link_name: 連結名稱
|
||||||
new_bulletin_category: 新增公告類別
|
new_bulletin_category: 新增公告類別
|
||||||
picture: 刊頭圖片
|
picture: 刊頭圖片
|
||||||
|
|
Loading…
Reference in New Issue