Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xwolfde committed Jan 11, 2022
1 parent 77eba8e commit e0f3daa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion functions/template-functions.php
Expand Up @@ -1853,7 +1853,7 @@ function fau_get_the_taglist($before = '', $sep = '', $after = '') {
// use list
$res .= '<li>';
}
$res .= '<a href="' . esc_url( $link ) . '" rel="tag" title="'.__('Schlagwort','fau').' '.$term->name.'">' . $term->name . '</a>';
$res .= '<a href="' . esc_url( $link ) . '" rel="tag" aria-label="'.__('Beiträge mit dem Schlagwort','fau').' '.$term->name.' '.__('aufrufen','fau').'">' . $term->name . '</a>';
if (empty($sep)) {
// use list
$res .= '<li>';
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "FAU-Einrichtungen",
"textdomain": "fau",
"version": "2.0.4-32",
"version": "2.0.4-33",
"keywords": [
"WordPress",
"Theme",
Expand Down
2 changes: 1 addition & 1 deletion single.php
Expand Up @@ -83,7 +83,7 @@
$typestr .= ': ';

foreach($categories as $category) {
$thiscatstr .= '<a href="'.get_category_link( $category->term_id ).'" title="'.__('Kategorie', 'fau').' '.$category->cat_name.'">'.$category->cat_name.'</a>'.$separator;
$thiscatstr .= '<a href="'.get_category_link( $category->term_id ).'" aria-label="'.__('Beiträge aus der Kategorie', 'fau').' '.$category->cat_name.' '.__('aufrufen','fau').'">'.$category->cat_name.'</a>'.$separator;
}
$typestr .= trim($thiscatstr, $separator);
$typestr .= '</span> ';
Expand Down
2 changes: 1 addition & 1 deletion style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e0f3daa

Please sign in to comment.