[][src]Macro internationalization::t

macro_rules! t {
    ( "err.not_allowed" , $ lang : expr ) => { ... };
    ( "inconsistent.vars" , name : $ name : expr , ok : $ ok : expr , thing : $ thing : expr , $ lang : expr ) => { ... };
    ( "inconsistent.vars" , $ ( $ e : tt ) * ) => { ... };
    ( "err.user.not_found" , email : $ email : expr , id : $ id : expr , $ lang : expr ) => { ... };
    ( "err.user.not_found" , $ ( $ e : tt ) * ) => { ... };
    ( "hello" , name : $ name : expr , $ lang : expr ) => { ... };
    ( "hello" , $ ( $ e : tt ) * ) => { ... };
    ( "key.test" , $ lang : expr ) => { ... };
    ( "multiple.vars" , bingo : $ bingo : expr , name : $ name : expr , thing : $ thing : expr , $ lang : expr ) => { ... };
    ( "multiple.vars" , $ ( $ e : tt ) * ) => { ... };
    ( $ key : expr , $ lang : expr ) => { ... };
}