@@ -, +, @@ - Add a new subscription in the serials module - Create a subscription for 1/3 months, seasonal - Begins with and inner counter should both be 0 - Year can be 2013 and second row empty - Pick de* as a locale[1] - Test the prediction pattern - it should tell you German seasons now - Save the subscription - make sure the issues are crated with German seasons as well system locale noted on the field didn't work for me. --- C4/Serials.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/C4/Serials.pm +++ a/C4/Serials.pm @@ -2690,6 +2690,8 @@ sub _numeration { [qw(Spring Summer Fall Winter)], "fr"=> [qw(Printemps Été Automne Hiver)], + "de"=> + [qw(Frühling Sommer Herbst Winter)], ); $value = $value % 4; $string = ($seasons{$seasonlocale}) --