From 5063e7cad97e595436a33f78a97cd525446f7d17 Mon Sep 17 00:00:00 2001 From: Rodrigo Souto Date: Wed, 24 Oct 2012 16:57:08 -0200 Subject: [PATCH] Fixing typos on new content view --- app/models/event.rb | 2 +- app/models/raw_html_article.rb | 4 ++-- app/models/tiny_mce_article.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/models/event.rb b/app/models/event.rb index efaa12a..a2f24e4 100644 --- a/app/models/event.rb +++ b/app/models/event.rb @@ -38,7 +38,7 @@ class Event < Article filter_iframes :body, :link, :address, :whitelist => lambda { profile && profile.environment && profile.environment.trusted_sites_for_iframe } def self.description - _('A calendar event') + _('A calendar event.') end def self.short_description diff --git a/app/models/raw_html_article.rb b/app/models/raw_html_article.rb index a435b16..77186c2 100644 --- a/app/models/raw_html_article.rb +++ b/app/models/raw_html_article.rb @@ -5,11 +5,11 @@ class RawHTMLArticle < TextArticle end def self.short_description - _('Raw HTML text article.') + _('Raw HTML text article') end def self.description - _('Allows HTML without filter (only for admins)') + _('Allows HTML without filter (only for admins).') end xss_terminate :only => [ ] diff --git a/app/models/tiny_mce_article.rb b/app/models/tiny_mce_article.rb index 2f83470..ab2141a 100644 --- a/app/models/tiny_mce_article.rb +++ b/app/models/tiny_mce_article.rb @@ -1,7 +1,7 @@ class TinyMceArticle < TextArticle def self.short_description - _('Text article with visual editor.') + _('Text article with visual editor') end def self.description -- libgit2 0.21.2