]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/php/Image.php
spelling: image
[friendica.git] / view / theme / frio / php / Image.php
index 159f258e75f20363dae07fc11bf71a23d9a3c54e..e795e5f8ae2f1b1ac90a4f4e998d075e36cfde3c 100644 (file)
@@ -1,34 +1,47 @@
 <?php
-
 /**
- * @file view/theme/frio/php/Image.php
- * @brief contain methods to deal with images
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ * contain methods to deal with images
  */
 
+use Friendica\DI;
+
 /**
- * @brief This class contains methods to deal with images
+ * This class contains methods to deal with images
  */
-class Image {
-
+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
-        *
-        * @return array Array with the immage options
+        * @return array Array with the image options
         */
-       public static function get_options($arr) {
+       public static function get_options(array $arr): array
+       {
                $bg_image_options = [
-                                       'repeat' => [
-                                               'frio_bg_image_option', t("Repeat the image"),  "repeat",       t("Will repeat your image to fill the background."), ($arr["bg_image_option"] == "repeat")],
-                                       'stretch' => [
-                                               'frio_bg_image_option', t("Stretch"),           "stretch",      t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "stretch")],
-                                       'cover' => [
-                                               'frio_bg_image_option', t("Resize fill and-clip"), "cover",     t("Resize to fill and retain aspect ratio."),   ($arr["bg_image_option"] == "cover")],
-                                       'contain' => [
-                                               'frio_bg_image_option', t("Resize best fit"),   "contain",      t("Resize to best fit and retain aspect ratio."), ($arr["bg_image_option"] == "contain")],
+                       'stretch' => ['frio_bg_image_option', DI::l10n()->t('Top Banner'), 'stretch', DI::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', DI::l10n()->t('Full screen'), 'cover', DI::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', DI::l10n()->t('Single row mosaic'), 'contain', DI::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', DI::l10n()->t('Mosaic'), 'repeat', DI::l10n()->t('Repeat image to fill the screen.'), ($arr['bg_image_option'] == 'repeat')],
                ];
 
                return $bg_image_options;
        }
-}
\ No newline at end of file
+}