summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/librefetch/librefetch10
-rwxr-xr-xsrc/libremessages8
2 files changed, 8 insertions, 10 deletions
diff --git a/src/librefetch/librefetch b/src/librefetch/librefetch
index d09c57b..1d4dd5c 100755
--- a/src/librefetch/librefetch
+++ b/src/librefetch/librefetch
@@ -293,14 +293,4 @@ modified_srcbuild() {
printf '%s\n' "$new"
}
-# "Library" crap ###############################################################
-
-print() {
- local fmt=$1
- shift
- printf -- "$(gettext "$fmt")\n" "$@"
-}
-
-################################################################################
-
main "$@"
diff --git a/src/libremessages b/src/libremessages
index 7ef5dfb..3910c94 100755
--- a/src/libremessages
+++ b/src/libremessages
@@ -39,6 +39,14 @@ export TEXTDOMAINDIR='/usr/share/locale'
# Own functions #
################################################################################
+# Usage: print fmt arg1 arg2...
+# Like printf, but gettext-aware, and prints a trailing newline
+print() {
+ local fmt=$1
+ shift
+ printf -- "$(gettext "$fmt")\n" "$@"
+}
+
# Usage: term_title This will be the term title
# Sets the terminal title
term_title() {