diff --git a/config/locales/server.en.yml b/config/locales/server.en.yml
index dafbaaa4df6..ad3615c9aa0 100644
--- a/config/locales/server.en.yml
+++ b/config/locales/server.en.yml
@@ -216,13 +216,13 @@ en:
no_info_me: "
"
no_info_other: "%{name} hasn't entered anything in the About Me field of their profile yet
"
- vip_category_name: "Lounge"
+ vip_category_name: "lounge"
vip_category_description: "A category exclusive to members with trust level 3 and higher."
- meta_category_name: "Meta"
+ meta_category_name: "meta"
meta_category_description: "Discussion about this forum, its organization, how it works, and how we can improve it."
- staff_category_name: "Staff"
+ staff_category_name: "staff"
staff_category_description: "Private category for staff discussions. Topics are only visible to admins and moderators."
assets_topic_body: "This is a permanent topic, visible only to staff, for storing images and files used in the forum design. Don't delete it!\n\n\nHere's how:\n\n\n1. Reply to this topic.\n2. Upload all the images you wish to use for logos, favicons, and so forth here. (Use the upload toolbar icon in the post editor, or drag-and-drop or paste images.)\n3. Submit your reply to post it.\n4. Right click the images in your new post to get the path to the uploaded images, or click the edit icon to edit your post and retrieve the path to the images. Copy the image paths.\n5. Paste those image paths into [basic settings](/admin/site_settings/category/required).\n\n\nAlso, if you need to enable different file type uploads, edit `authorized_extensions` in the [file settings](/admin/site_settings/category/files)."
diff --git a/db/migrate/20140122043508_add_meta_category.rb b/db/migrate/20140122043508_add_meta_category.rb
index 959754f27df..7de9e648494 100644
--- a/db/migrate/20140122043508_add_meta_category.rb
+++ b/db/migrate/20140122043508_add_meta_category.rb
@@ -9,7 +9,7 @@ class AddMetaCategory < ActiveRecord::Migration
if Category.exec_sql("SELECT 1 FROM categories where name ilike '#{name}'").count == 0
result = execute "INSERT INTO categories
(name, color, text_color, created_at, updated_at, user_id, slug, description, read_restricted)
- VALUES ('#{name}', 'EEEEEE', '652D90', now(), now(), -1, '#{Slug.for(name)}', '#{description}', true)
+ VALUES ('#{name}', '808281', 'FFFFFF', now(), now(), -1, '#{Slug.for(name)}', '#{description}', true)
RETURNING id"
category_id = result[0]["id"].to_i