2022-04-02 00:55:38 +02:00
|
|
|
<?PHP
|
|
|
|
/**
|
|
|
|
* Constains lists for categorizing misspelled sizes.
|
|
|
|
*
|
|
|
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
|
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides lists for categorizing misspelled sizes.
|
|
|
|
*/
|
|
|
|
final class MDConcLengths {
|
|
|
|
|
|
|
|
const LENGTHS_LIST = [
|
|
|
|
"cn" => "cm",
|
2022-09-02 02:10:36 +02:00
|
|
|
",cm" => "cm",
|
|
|
|
"5cm" => "cm",
|
|
|
|
|
|
|
|
"inch" => "in",
|
|
|
|
"Zoll" => "in",
|
|
|
|
"zoll" => "in",
|
2022-04-02 00:55:38 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
}
|