From 2d6dafc0572a4fb3486f2cc158d5c74d5d1c37b6 Mon Sep 17 00:00:00 2001
From: Hypolite Petovan <mrpetovan@gmail.com>
Date: Thu, 26 Apr 2018 07:50:05 -0400
Subject: [PATCH] [frio] Improve background styles' description

---
 view/theme/frio/php/Image.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/view/theme/frio/php/Image.php b/view/theme/frio/php/Image.php
index 509c70348..72026cf02 100644
--- a/view/theme/frio/php/Image.php
+++ b/view/theme/frio/php/Image.php
@@ -21,10 +21,10 @@ class Image
 	public static function get_options($arr)
 	{
 		$bg_image_options = [
-			'stretch' => ['frio_bg_image_option', L10n::t('Stretch'), 'stretch', L10n::t('Resize image to the width of the screen and show background color below on long pages.'), ($arr['bg_image_option'] == 'stretch')],
-			'cover'   => ['frio_bg_image_option', L10n::t('Resize, fill and clip'), 'cover', L10n::t('Resize image to fill entire screen, clipping either the right or the bottom.'), ($arr['bg_image_option'] == 'cover')],
-			'repeat'  => ['frio_bg_image_option', L10n::t('Repeat'), 'repeat', L10n::t('Repeat image to fill the screen.'), ($arr['bg_image_option'] == 'repeat')],
-			'contain' => ['frio_bg_image_option', L10n::t('Repeat one row'), 'contain', L10n::t('Resize image to repeat it on a single row, either vertical or horizontal.'), ($arr['bg_image_option'] == 'contain')],
+			'stretch' => ['frio_bg_image_option', L10n::t('Top Banner'), 'stretch', L10n::t('Resize image to the width of the screen and show background color below on long pages.'), ($arr['bg_image_option'] == 'stretch')],
+			'cover'   => ['frio_bg_image_option', L10n::t('Full screen'), 'cover', L10n::t('Resize image to fill entire screen, clipping either the right or the bottom.'), ($arr['bg_image_option'] == 'cover')],
+			'contain' => ['frio_bg_image_option', L10n::t('Single row mosaic'), 'contain', L10n::t('Resize image to repeat it on a single row, either vertical or horizontal.'), ($arr['bg_image_option'] == 'contain')],
+			'repeat'  => ['frio_bg_image_option', L10n::t('Mosaic'), 'repeat', L10n::t('Repeat image to fill the screen.'), ($arr['bg_image_option'] == 'repeat')],
 		];
 
 		return $bg_image_options;