# HG changeset patch # User Chris Cannam # Date 1292849336 0 # Node ID e0c08b2211ac7f657171b12944783ba835792753 # Parent 3d405dd3a849d777f7805286e83dd44f7eed169b * Fix incorrect locale tag at top of en-GB locale file diff -r 3d405dd3a849 -r e0c08b2211ac app/models/issue.rb --- 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 diff -r 3d405dd3a849 -r e0c08b2211ac vendor/plugins/redmine_checkout/config/locales/en-GB.yml --- 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"