Mercurial > hg > soundsoftware-site
changeset 112:e0c08b2211ac live
* Fix incorrect locale tag at top of en-GB locale file
author | Chris Cannam |
---|---|
date | Mon, 20 Dec 2010 12:48:56 +0000 |
parents | 3d405dd3a849 |
children | cede720e8f53 |
files | app/models/issue.rb vendor/plugins/redmine_checkout/config/locales/en-GB.yml |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/app/models/issue.rb Mon Dec 20 12:43:59 2010 +0000 +++ b/app/models/issue.rb Mon Dec 20 12:48:56 2010 +0000 @@ -527,7 +527,8 @@ # Returns a string of css classes that apply to the issue def css_classes - s = "issue status-#{status.position} priority-#{priority.position}" + s = "issue status-#{status.position} " + s << "priority-#{priority.position}" s << ' closed' if closed? s << ' overdue' if overdue? s << ' created-by-me' if User.current.logged? && author_id == User.current.id
--- a/vendor/plugins/redmine_checkout/config/locales/en-GB.yml Mon Dec 20 12:43:59 2010 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/en-GB.yml Mon Dec 20 12:48:56 2010 +0000 @@ -1,4 +1,4 @@ -en: +en-GB: label_checkout: "Checkout" setting_checkout_display_checkout_info: "Display checkout information"