ソースを参照

Fix gender icon title.

mscherer 5 年 前
コミット
853f544349
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/View/Helper/FormatHelper.php

+ 1 - 1
src/View/Helper/FormatHelper.php

@@ -185,7 +185,7 @@ class FormatHelper extends Helper {
 		} elseif ($value == static::GENDER_MALE) {
 			$icon = $this->icon('male', $options, $attributes);
 		} else {
-			$icon = $this->icon('genderless', $options, $attributes + ['title' => __d('tools', 'Unknown')]);
+			$icon = $this->icon('genderless', $options, $attributes + ['title' => __d('tools', 'genderInter')]);
 		}
 		return $icon;
 	}