diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-25 17:12:20 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-25 17:12:20 (EST) |
commit | ac2e2808b0f734947654614076af94c62044bf6a (patch) | |
tree | 4cb28a6d9fbeec9b08a1849791108db375f4ad63 /lib/locale.sh | |
parent | dae60a03d3e91e56ea3847e046f58c1db9201853 (diff) |
lib/locale.sh: Remove unused functions.
Diffstat (limited to 'lib/locale.sh')
-rw-r--r-- | lib/locale.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/locale.sh b/lib/locale.sh index 30630f6..bf79507 100644 --- a/lib/locale.sh +++ b/lib/locale.sh @@ -26,16 +26,6 @@ _OH_DEFAULT_LOCALE='en_US' _OH_TEXT_DOMAIN='opkhelper' _OH_LOCALE_PATH='@@LOCALEDIR@@/%s/LC_MESSAGES/%s.ms' -oh_get_text_domain() -{ - if [ ${#} -ne 0 ]; then - return 125 - fi - - echo "${_OH_TEXT_DOMAIN}" - return 0 -} - oh_set_text_domain() { if [ ${#} -eq 1 ]; then @@ -71,21 +61,6 @@ oh_set_text_domain() return 0 } -oh_set_locale_path() -{ - local format= - - if [ ${#} -eq 1 ]; then - format="${1}" - else - return 125 - fi - - _OH_LOCALE_PATH="${format}" - - return 0 -} - oh_get_msg() { local msgid= |