blob: e14ed7b16a57384a33941a3f27349f23ed1fa07e [file] [log] [blame] [edit]
use polib::po_file;
use std::env;
use std::error::Error;
use std::path::Path;
fn main() -> Result<(), Box<dyn Error>> {
let (input, output) = match (env::args().nth(1), env::args().nth(2)) {
(Some(input), Some(output)) => (input, output),
_ => {
println!("Usage: cargo run --example copy -- <input.po> <output.po>");
return Ok(());
}
};
let catalog = po_file::parse(Path::new(&input))?;
po_file::write(&catalog, Path::new(&output))?;
Ok(())
}