We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce744e2 commit f4e5f65Copy full SHA for f4e5f65
1 file changed
src/SimpleSAML/Locale/Translate.php
@@ -84,6 +84,10 @@ public static function translateSingularGettext(?string $original): string
84
$text = TranslatorFunctions::getTranslator()->dgettext("core", $original);
85
if ($text === $original) {
86
$text = TranslatorFunctions::getTranslator()->dgettext("messages", $original);
87
+ // try attributes.po
88
+ if ($text === $original) {
89
+ $text = TranslatorFunctions::getTranslator()->dgettext("", $original);
90
+ }
91
}
92
93
if (func_num_args() === 1) {
0 commit comments