Rename "My Cup Runneth Over" to "Higher Love". Winwood!

This commit is contained in:
Robin Ward 2016-03-17 11:42:22 -04:00
parent 99b1059537
commit d9080b9d69
3 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ class Badge < ActiveRecord::Base
Admired = 31
OutOfLove = 33
MyCupRunnethOver = 34
HigherLove = 34
CrazyInLove = 35
ThankYou = 38

View File

@ -2976,8 +2976,8 @@ en:
out_of_love:
name: Out of Love
description: Used the maximum amount of likes in a day
my_cup_runneth_over:
name: My Cup Runneth Over
higher_love:
name: Higher Love
description: Used the maximum amount of likes in a day 5 times
crazy_in_love:
name: Crazy in Love

View File

@ -334,9 +334,9 @@ end
end
[
[Badge::OutOfLove, "Out of Love", BadgeType::Bronze, 1],
[Badge::MyCupRunnethOver, "My Cup Runneth Over", BadgeType::Silver, 5],
[Badge::CrazyInLove, "Crazy in Love", BadgeType::Gold, 20],
[Badge::OutOfLove, "Out of Love", BadgeType::Bronze, 1],
[Badge::HigherLove, "Higher Love", BadgeType::Silver, 5],
[Badge::CrazyInLove, "Crazy in Love", BadgeType::Gold, 20],
].each do |spec|
id, name, level, count = spec
Badge.seed do |b|