diff --git a/CHANGELOG.md b/CHANGELOG.md
index 59341474..5f1fe920 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,5 @@
+## [0.8.4] - 2019-01-xx
+
## [0.8.3] - 2019-01-16
### Added
- Admin Panel: New Gorgeous Light Theme for Admin panel!
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index fe7a9e9e..bbe2660e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -7,3 +7,4 @@ Flextype is an open source project and community contributions are essential to
* Find and [report issues.](https://github.com/flextype/flextype/issues)
* Link back to [Flextype](http://flextype.org).
* [Donate to keep Flextype free.](http://flextype.org/about/sponsors)
+* [Join Flextype International Translator Team](https://crowdin.com/project/flextype/invite)
diff --git a/README.md b/README.md
index fee804bb..8e89c30b 100755
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
-
+
diff --git a/flextype/Entries.php b/flextype/Entries.php
index c14a0d61..9b7ba12d 100755
--- a/flextype/Entries.php
+++ b/flextype/Entries.php
@@ -118,7 +118,7 @@ class Entries
/**
* Get current entry
*
- * $entry = Entries::getCurrentPage();
+ * $entry = Entries::getCurrentEntry();
*
* @access public
* @return array
diff --git a/flextype/Flextype.php b/flextype/Flextype.php
index 561308ca..91f04317 100755
--- a/flextype/Flextype.php
+++ b/flextype/Flextype.php
@@ -144,7 +144,7 @@ class Flextype
*/
private static function setConfig() : void
{
- // Set empty site settings array
+ // Set empty settings array
Registry::set('settings', []);
// Set settings files path
diff --git a/flextype/Images.php b/flextype/Images.php
index 33c93358..3d303d4c 100644
--- a/flextype/Images.php
+++ b/flextype/Images.php
@@ -216,7 +216,7 @@ class Images
* @param array $params Image params
* @return string
*/
- public static function getImageUrl($path, array $params)
+ public static function getImageUrl(string $path, array $params) : string
{
if (file_exists(PATH['entries'] . '/' . $path)) {
return Http::getBaseUrl() . '/site/cache/glide/' . Images::$server->makeImage($path, $params);
@@ -237,7 +237,7 @@ class Images
* @param array $attributes Image html attributes
* @return string
*/
- public static function getImage($path, array $params, array $attributes = [])
+ public static function getImage(string $path, array $params, array $attributes = []) : string
{
if (file_exists(PATH['entries'] . '/' . $path)) {
return '
';