Add translations for color set; options for getting unsorted color,

gender lists
This commit is contained in:
2022-12-14 16:11:49 +01:00
parent a19f18a193
commit be67089b74
4 changed files with 69 additions and 2 deletions

2
l18n

Submodule l18n updated: 5b72321de7...6d624efcd9

View File

@ -30,6 +30,26 @@ final class MDColorsSet extends MDValueSet {
"aqua",
];
const COLOR_NAMES_AND_EMPTY = [
'',
"black",
"green",
"silver",
"lime",
"gray",
"olive",
"white",
"yellow",
"maroon",
"navy",
"red",
"blue",
"purple",
"teal",
"fuchsia",
"aqua",
];
const COLORS_RGB = [
"black" => [0, 0, 0],
"green" => [0, 128, 0],
@ -49,4 +69,27 @@ final class MDColorsSet extends MDValueSet {
"aqua" => [0, 255, 255],
];
/**
* Gets an unsorted list of the entries in a translated version.
*
* @param MDTlLoader $tlLoader Translation loader.
*
* @return array<string>
*/
public static function getUnsortedList(MDTlLoader $tlLoader):array {
return parent::getTlUnsortedList($tlLoader, self::GENDERS, "gender_set", "gender_set");
}
/**
* Gets a list of the entries in a translated version.
*
* @param MDTlLoader $tlLoader Translation loader.
*
* @return array<string>
*/
public static function getSortedList(MDTlLoader $tlLoader):array {
return parent::getTlSortedList($tlLoader, self::COLOR_NAMES, "colors_set", "colors_set");
}
}

View File

@ -15,9 +15,21 @@ final class MDGenderSet extends MDValueSet {
'',
'female',
'male',
'gender',
'other',
];
/**
* Gets an unsorted list of the entries in a translated version.
*
* @param MDTlLoader $tlLoader Translation loader.
*
* @return array<string>
*/
public static function getUnsortedList(MDTlLoader $tlLoader):array {
return parent::getTlUnsortedList($tlLoader, self::GENDERS, "gender_set", "gender_set");
}
/**
* Gets a sorted list of the entries in a translated version.
*

View File

@ -20,6 +20,18 @@ final class MDObjectFormSet extends MDValueSet {
'cylinder',
];
/**
* Gets an unsorted list of the entries in a translated version.
*
* @param MDTlLoader $tlLoader Translation loader.
*
* @return array<string>
*/
public static function getUnsortedList(MDTlLoader $tlLoader):array {
return parent::getTlUnsortedList($tlLoader, self::FORMS, "object_form_set", "object_form_set");
}
/**
* Gets a sorted list of the entries in a translated version.
*