From 75c4f9cbc92ee1197e11a18a3eeda591dca5dda9 Mon Sep 17 00:00:00 2001 From: Erickson Silva Date: Sun, 6 Sep 2015 15:47:39 -0300 Subject: [PATCH] Modificação valor do parametro language de 'libras' para 'glosa' --- main.cpp | 4 ++-- util/src/argParser.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/main.cpp b/main.cpp index d54ca13..246fc32 100644 --- a/main.cpp +++ b/main.cpp @@ -343,7 +343,7 @@ void help() << "\n\tText -T, --text [filePath]" << "\n\tSubtitles only -S, --subtitle [filePath]" << "\n\nOptions:" - << "\n\t-l, --language [portugues,libras]" + << "\n\t-l, --language [portugues,glosa]" << "\n\t-b, --background [opaque,transp]" << "\n\t-r, --resolution [small,medium,large]" << "\n\t-p, --position [top_left,top_right,bottom_left,bottom_right]" @@ -354,4 +354,4 @@ void help() << "\n\nSee man vlibras for detailed descriptions." << std::endl; exit(0); -} \ No newline at end of file +} diff --git a/util/src/argParser.cpp b/util/src/argParser.cpp index 6857934..353c56d 100644 --- a/util/src/argParser.cpp +++ b/util/src/argParser.cpp @@ -168,7 +168,7 @@ ArgParser::Languages ArgParser::languageFromString(const string& language) { if(language == "portugues") return _PORTUGUESE; - if(language == "libras") + if(language == "glosa") return _GLOSA; returnErr("--language"); @@ -279,4 +279,4 @@ string ArgParser::getId() util::logLevel ArgParser::getLog() { return globalArgs.l_level; -} \ No newline at end of file +} -- libgit2 0.21.2