1 // This file is part of ICU4X. For terms of use, please see the file 2 // called LICENSE at the top level of the ICU4X source tree 3 // (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ). 4 5 #[allow(dead_code)] 6 pub const KEBAB_CASE_STRINGS: &[&str] = &[ 7 "ca", 8 "ca-ÉS", 9 "ca-ÉS-u-ca-buddhist", 10 "ca-ÉS-valencia", 11 "ca-ÉS-x-gbp", 12 "ca-ÉS-x-gbp-short", 13 "ca-ÉS-x-usd", 14 "ca-ÉS-xyzabc", 15 "ca-x-eur", 16 "cat", 17 "cat-bus", 18 "cat-", 19 "pl-Latn-PL", 20 "und", 21 "und-fonipa", 22 "und-u-ca-hebrew", 23 "und-u-ca-japanese", 24 "und-x-mxn", 25 "zh", 26 ]; 27