]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/php/Image.php
Merge pull request #8135 from annando/brief
[friendica.git] / view / theme / frio / php / Image.php
index 2b3cf3be8c3593e3ca92c27d760eea39e10d2b30..34e9fc210d9931ec8c3d77475eed2815dfa9bfaf 100644 (file)
@@ -1,18 +1,18 @@
 <?php
 /**
  * @file view/theme/frio/php/Image.php
- * @brief contain methods to deal with images
+ * contain methods to deal with images
  */
 
 /**
- * @brief This class contains methods to deal with images
+ * This class contains methods to deal with images
  */
 use Friendica\Core\L10n;
 
 class Image
 {
        /**
-        * @brief Give all available options for the background image
+        * Give all available options for the background image
         *
         * @param array $arr Array with the present user settings
         *
@@ -21,10 +21,10 @@ class Image
        public static function get_options($arr)
        {
                $bg_image_options = [
-                       'repeat'  => ['frio_bg_image_option', L10n::t('Repeat the image'), 'repeat', L10n::t('Will repeat your image to fill the background.'), ($arr['bg_image_option'] == 'repeat')],
-                       'stretch' => ['frio_bg_image_option', L10n::t('Stretch'), 'stretch', L10n::t('Will stretch to width/height of the image.'), ($arr['bg_image_option'] == 'stretch')],
-                       'cover'   => ['frio_bg_image_option', L10n::t('Resize fill and-clip'), 'cover', L10n::t('Resize to fill and retain aspect ratio.'), ($arr['bg_image_option'] == 'cover')],
-                       'contain' => ['frio_bg_image_option', L10n::t('Resize best fit'), 'contain', L10n::t('Resize to best fit and retain aspect ratio.'), ($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;