Theme t() uses

Updatee t() calls in themes
This commit is contained in:
Adam Magness 2018-01-22 18:38:34 -05:00
parent f0725ae384
commit 27d5a7112a
1 changed files with 10 additions and 8 deletions

View File

@ -1,5 +1,4 @@
<?php
/**
* @file view/theme/frio/php/Image.php
* @brief contain methods to deal with images
@ -8,8 +7,10 @@
/**
* @brief This class contains methods to deal with images
*/
class Image {
use Friendica\Core\L10n;
class Image
{
/**
* @brief Give all available options for the background image
*
@ -17,18 +18,19 @@ class Image {
*
* @return array Array with the immage options
*/
public static function get_options($arr) {
public static function get_options($arr)
{
$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")],
'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', t("Stretch"), "stretch", t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "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', t("Resize fill and-clip"), "cover", t("Resize to fill and retain aspect ratio."), ($arr["bg_image_option"] == "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', t("Resize best fit"), "contain", t("Resize to best fit and retain aspect ratio."), ($arr["bg_image_option"] == "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")],
];
return $bg_image_options;
}
}
}