X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Fphp%2FImage.php;h=2c232ee4b2891af327da4b45d54b786cbd1e8c20;hb=53e38b03130ea798bba44db44ccb7f331dc4b91d;hp=b1877393b98ec19573e92a206fa467fde6d4190e;hpb=86e4690b5f4c5e8ac765b034c1ef25ef4a1669c6;p=friendica.git diff --git a/view/theme/frio/php/Image.php b/view/theme/frio/php/Image.php index b1877393b9..2c232ee4b2 100644 --- a/view/theme/frio/php/Image.php +++ b/view/theme/frio/php/Image.php @@ -1,18 +1,34 @@ . + * + * 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 */ -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 +37,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', 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;