Woops
This commit is contained in:
parent
7b881a1ade
commit
1cb7ed65d7
@ -36,9 +36,11 @@ the files must look like this:
|
|||||||
|
|
||||||
Any number of languages can be added, but you should provide them for everything since it will panic if a language is not found when queried for a key.
|
Any number of languages can be added, but you should provide them for everything since it will panic if a language is not found when queried for a key.
|
||||||
|
|
||||||
In your app, jsut call the `t!` macro
|
In your app, just call the `t!` macro
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
|
use internationalization::t;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let lang = "en";
|
let lang = "en";
|
||||||
let res = t!("err.not_allowed", lang);
|
let res = t!("err.not_allowed", lang);
|
||||||
@ -51,6 +53,8 @@ You can use interpolation, any number of argument is OK but you should note that
|
|||||||
To use variables, call the `t!` macro like this:
|
To use variables, call the `t!` macro like this:
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
|
use internationalization::t;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let lang = "en";
|
let lang = "en";
|
||||||
let res = t!("err.user.not_found", email: "me@localhost", id: "1", lang);
|
let res = t!("err.user.not_found", email: "me@localhost", id: "1", lang);
|
||||||
|
@ -66,6 +66,8 @@
|
|||||||
//! To use variables, call the `t!` macro like this:
|
//! To use variables, call the `t!` macro like this:
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```rust
|
||||||
|
//! use internationalization::t;
|
||||||
|
//!
|
||||||
//! fn main() {
|
//! fn main() {
|
||||||
//! let lang = "en";
|
//! let lang = "en";
|
||||||
//! let res = t!("err.user.not_found", email: "me@localhost", id: "1", lang);
|
//! let res = t!("err.user.not_found", email: "me@localhost", id: "1", lang);
|
||||||
|
Loading…
Reference in New Issue
Block a user