Ticket #1214 (closed defect: fixed)

Opened 3 months ago

Last modified 1 month ago

[PATCH] Fixes minor typos

Reported by: bribera Assigned to: scott
Priority: normal Milestone: 5.1
Component: frontend Version: 5.0
Severity: normal Keywords: patch
Cc: neuro

Description

Ah, the irony of there being typos in Typo. They're meta-typos! This patch fixes a few trivial UI issues that have been bothering me:

  • Blog index appends a needless ' : ' to the HTML page title even though @page_title is empty; this is due to faulty logic (checking for existence of @page_title instead of whether @page_title.blank? is true)
  • Two occurrences of the word 'excerpt' being misspelled as 'excertp'
  • Dashboard translation was searching on the translation key 'État' where it should have been looking for 'Published'

Attachments

minor_typo_fixes.diff (2.2 kB) - added by bribera on 03/01/08 00:40:58.

Change History

03/01/08 00:40:58 changed by bribera

  • attachment minor_typo_fixes.diff added.

03/03/08 21:03:49 changed by bribera

re [1671]:

First off, thanks for the commit! Just wanted to point out that the change in content_helper.rb should have been:

if !@page_title.blank?

or

unless @page_title.blank?

[1671] omits the ! from option 1.

04/06/08 18:58:29 changed by neuro

  • status changed from new to closed.
  • resolution set to fixed.