replace [+] and [-] with chevron icons

This commit is contained in:
redmatrix
2016-06-27 16:50:06 -07:00
parent ee1d527497
commit 3704ff57cb
2 changed files with 5 additions and 5 deletions

View File

@@ -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'),