1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use *;
/// Substitutes `{name}`-style placeholders in `template`
/// with values from `vars`.
///
/// Placeholder names may contain alphanumerics and
/// underscores. Missing placeholders are left as the
/// literal `{name}` token. No escaping is performed — the
/// literal text `{` in a translation is treated as the
/// start of a placeholder.
///
/// # Arguments
///
/// - `&str` - Shared reference to a `str`.
/// - `&HashMap<&'static str, &'static str>` - Shared reference to a `HashMap<&'static str, &'static str>`.
///
/// # Returns
///
/// - `String` - A `String` value.
pub