Manage multiple languages through CSV tables.
In this walkthrough, we'll be using Google Sheets as a tool.
As you can see, a table with IDs in the first column, and languages in the first row should be created. This should be relatively easy to comprehend.
Rust
[dependencies]
// Assign latest version (Might not be the one saying)
csvlm = "0.1.2"
cargo install
use csvlm::Manager; ```
Now we need a manager that parses the information for us ```Rust // The parameters are directory, filename & extension // My file is located outside of the project let mut manag = Manager::new("..", "test_table", ".txt");
// Then parse the file assigned manag.parse(); ```