Commit 5063e7cad97e595436a33f78a97cd525446f7d17
1 parent
b1cfe255
Exists in
master
and in
29 other branches
Fixing typos on new content view
Showing
3 changed files
with
4 additions
and
4 deletions
Show diff stats
app/models/event.rb
@@ -38,7 +38,7 @@ class Event < Article | @@ -38,7 +38,7 @@ class Event < Article | ||
38 | filter_iframes :body, :link, :address, :whitelist => lambda { profile && profile.environment && profile.environment.trusted_sites_for_iframe } | 38 | filter_iframes :body, :link, :address, :whitelist => lambda { profile && profile.environment && profile.environment.trusted_sites_for_iframe } |
39 | 39 | ||
40 | def self.description | 40 | def self.description |
41 | - _('A calendar event') | 41 | + _('A calendar event.') |
42 | end | 42 | end |
43 | 43 | ||
44 | def self.short_description | 44 | def self.short_description |
app/models/raw_html_article.rb
@@ -5,11 +5,11 @@ class RawHTMLArticle < TextArticle | @@ -5,11 +5,11 @@ class RawHTMLArticle < TextArticle | ||
5 | end | 5 | end |
6 | 6 | ||
7 | def self.short_description | 7 | def self.short_description |
8 | - _('Raw HTML text article.') | 8 | + _('Raw HTML text article') |
9 | end | 9 | end |
10 | 10 | ||
11 | def self.description | 11 | def self.description |
12 | - _('Allows HTML without filter (only for admins)') | 12 | + _('Allows HTML without filter (only for admins).') |
13 | end | 13 | end |
14 | 14 | ||
15 | xss_terminate :only => [ ] | 15 | xss_terminate :only => [ ] |
app/models/tiny_mce_article.rb