node config: avoid "allow" annotation

We rename those anyway for serialization so we do not need to bother
with spelling them in an non-idiomatic way just because i18n has it
like that.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-01-27 16:08:53 +01:00
parent 68811af9f9
commit 70ba718ce9

View File

@ -61,7 +61,6 @@ pub struct AcmeConfig {
/// pt_BR, zh_CN, and zh_TW use the same case in the translation files. /// pt_BR, zh_CN, and zh_TW use the same case in the translation files.
// TODO: auto-generate from available translations // TODO: auto-generate from available translations
#[api] #[api]
#[allow(non_camel_case_types)]
#[derive(Serialize, Deserialize)] #[derive(Serialize, Deserialize)]
#[serde(rename_all="lowercase")] #[serde(rename_all="lowercase")]
pub enum Translation { pub enum Translation {
@ -103,7 +102,7 @@ pub enum Translation {
Pl, Pl,
/// Portuguese (Brazil) /// Portuguese (Brazil)
#[serde(rename="pt_BR")] #[serde(rename="pt_BR")]
Pt_Br, PtBr,
/// Russian /// Russian
Ru, Ru,
/// Slovenian /// Slovenian
@ -114,10 +113,10 @@ pub enum Translation {
Tr, Tr,
/// Chinese (simplified) /// Chinese (simplified)
#[serde(rename="zh_CN")] #[serde(rename="zh_CN")]
Zh_Cn, ZhCn,
/// Chinese (traditional) /// Chinese (traditional)
#[serde(rename="zh_TW")] #[serde(rename="zh_TW")]
Zh_Tw, ZhTw,
} }
#[api( #[api(