diff options
author | redmatrix <git@macgirvin.com> | 2016-06-27 16:50:06 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-27 16:50:06 -0700 |
commit | 3704ff57cb65dce6ddd17136580e3bf82e7d97f2 (patch) | |
tree | c713a977d1a878a68cc314e2f3d4193f258f95cd /include | |
parent | ee1d52749733c1de7e88ede6c63f155215e1ae1c (diff) | |
download | volse-hubzilla-3704ff57cb65dce6ddd17136580e3bf82e7d97f2.tar.gz volse-hubzilla-3704ff57cb65dce6ddd17136580e3bf82e7d97f2.tar.bz2 volse-hubzilla-3704ff57cb65dce6ddd17136580e3bf82e7d97f2.zip |
replace [+] and [-] with chevron icons
Diffstat (limited to 'include')
-rw-r--r-- | include/js_strings.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/js_strings.php b/include/js_strings.php index b1817f373..1b4668061 100644 --- a/include/js_strings.php +++ b/include/js_strings.php @@ -4,10 +4,10 @@ function js_strings() { return replace_macros(get_markup_template('js_strings.tpl'), array( '$delitem' => t('Delete this item?'), '$comment' => t('Comment'), - '$showmore' => t('[+] show all'), - '$showfewer' => t('[-] show less'), - '$divgrowmore' => t('[+] expand'), - '$divgrowless' => t('[-] collapse'), + '$showmore' => sprintf( t('%s show all'), '<i class=\'fa fa-chevron-down\'></i>'), + '$showfewer' => sprintf( t('%s show less'), '<i class=\'fa fa-chevron-up\'></i>'), + '$divgrowmore' => sprintf( t('%s expand'), '<i class=\'fa fa-chevron-down\'></i>'), + '$divgrowless' => sprintf( t('%s collapse'),'<i class=\'fa fa-chevron-up\'></i>'), '$pwshort' => t("Password too short"), '$pwnomatch' => t("Passwords do not match"), '$everybody' => t('everybody'), |