From 634aa7b09a92633c9ec5e4961d18bd9a054a8b22 Mon Sep 17 00:00:00 2001
From: Alex Chvatal <m.chvatal@gmail.com>
Date: Mon, 13 Jul 2015 21:40:54 -0400
Subject: [PATCH] capitalize Wiki in the links sidebar. closes #6188

closes #6193
---
 Changelog.md                 | 1 +
 app/views/shared/_links.haml | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Changelog.md b/Changelog.md
index 48d4659abf..843dfcf4d4 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -12,6 +12,7 @@
 * Fix wrong closing a-tag [#6111](https://github.com/diaspora/diaspora/pull/6111)
 * Fix mobile more-button wording when there are less than 15 posts [#6118](https://github.com/diaspora/diaspora/pull/6118)
 * Fix reappearing flash boxes during sign-in [#6146](https://github.com/diaspora/diaspora/pull/6146)
+* Capitalize Wiki link [#6193](https://github.com/diaspora/diaspora/pull/6193)
 
 ## Features
 * Add configuration options for some debug logs [#6090](https://github.com/diaspora/diaspora/pull/6090)
diff --git a/app/views/shared/_links.haml b/app/views/shared/_links.haml
index d131efb083..1567e01594 100644
--- a/app/views/shared/_links.haml
+++ b/app/views/shared/_links.haml
@@ -1,5 +1,5 @@
 %li= link_to 'diasporafoundation.org', "https://diasporafoundation.org"
-%li= link_to 'wiki', "https://wiki.diasporafoundation.org"
+%li= link_to 'Wiki', "https://wiki.diasporafoundation.org"
 %li= link_to t('layouts.application.whats_new'), changelog_url
 %li= link_to t('layouts.header.code') + " " + pod_version, "#{source_url}", {:title => t('layouts.application.source_package')}
 %li= link_to t("layouts.application.statistics_link"), statistics_path
-- 
GitLab