| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function locale_updateMessages { |
| |
| |
| |
| cli_checkFiles $WORKDIR |
| |
| local ACTIONNAM='' |
| |
| |
| |
| |
| |
| if [[ $ACTIONVAL =~ "^$(cli_getRepoTLDir)/(Manuals|Identity/Models)/.*$" ]];then |
| |
| |
| |
| |
| ${CLI_FUNCNAME}_updateMessageXml |
| |
| elif [[ $ACTIONVAL =~ "^$(cli_getRepoTLDir)/Scripts$" ]];then |
| |
| |
| |
| |
| ${CLI_FUNCNAME}_updateMessageShell |
| |
| else |
| |
| cli_printMessage "`gettext "The path provided does not support localization."`" --as-error-line |
| |
| fi |
| |
| } |