File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,3 +79,38 @@ pub fn data_exceeded_translation(language: Language) -> &'static str {
7979 _ => "Data threshold exceeded" ,
8080 }
8181}
82+
83+ #[ allow( dead_code) ]
84+ pub fn bits_exceeded_translation ( language : Language ) -> & ' static str {
85+ match language {
86+ Language :: EN => "Bits threshold exceeded" ,
87+ Language :: IT => "Soglia di bit superata" ,
88+ _ => "Bits threshold exceeded" ,
89+ }
90+ }
91+
92+ #[ allow( dead_code) ]
93+ pub fn bits_translation ( language : Language ) -> & ' static str {
94+ match language {
95+ Language :: EN | Language :: IT => "Bits" ,
96+ _ => "Bits" ,
97+ }
98+ }
99+
100+ #[ allow( dead_code) ]
101+ pub fn pause_translation ( language : Language ) -> & ' static str {
102+ match language {
103+ Language :: EN => "Pause" ,
104+ Language :: IT => "Pausa" ,
105+ _ => "Pause" ,
106+ }
107+ }
108+
109+ #[ allow( dead_code) ]
110+ pub fn resume_translation ( language : Language ) -> & ' static str {
111+ match language {
112+ Language :: EN => "Resume" ,
113+ Language :: IT => "Riprendi" ,
114+ _ => "Resume" ,
115+ }
116+ }
You can’t perform that action at this time.
0 commit comments