Commit 75c4f9cbc92ee1197e11a18a3eeda591dca5dda9
1 parent
c4881e2d
Exists in
master
and in
1 other branch
Modificação valor do parametro language de 'libras' para 'glosa'
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
main.cpp
... | ... | @@ -343,7 +343,7 @@ void help() |
343 | 343 | << "\n\tText -T, --text [filePath]" |
344 | 344 | << "\n\tSubtitles only -S, --subtitle [filePath]" |
345 | 345 | << "\n\nOptions:" |
346 | - << "\n\t-l, --language [portugues,libras]" | |
346 | + << "\n\t-l, --language [portugues,glosa]" | |
347 | 347 | << "\n\t-b, --background [opaque,transp]" |
348 | 348 | << "\n\t-r, --resolution [small,medium,large]" |
349 | 349 | << "\n\t-p, --position [top_left,top_right,bottom_left,bottom_right]" |
... | ... | @@ -354,4 +354,4 @@ void help() |
354 | 354 | << "\n\nSee man vlibras for detailed descriptions." |
355 | 355 | << std::endl; |
356 | 356 | exit(0); |
357 | -} | |
358 | 357 | \ No newline at end of file |
358 | +} | ... | ... |
util/src/argParser.cpp
... | ... | @@ -168,7 +168,7 @@ ArgParser::Languages ArgParser::languageFromString(const string& language) |
168 | 168 | { |
169 | 169 | if(language == "portugues") |
170 | 170 | return _PORTUGUESE; |
171 | - if(language == "libras") | |
171 | + if(language == "glosa") | |
172 | 172 | return _GLOSA; |
173 | 173 | |
174 | 174 | returnErr("--language"); |
... | ... | @@ -279,4 +279,4 @@ string ArgParser::getId() |
279 | 279 | util::logLevel ArgParser::getLog() |
280 | 280 | { |
281 | 281 | return globalArgs.l_level; |
282 | -} | |
283 | 282 | \ No newline at end of file |
283 | +} | ... | ... |