diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-03-31 18:45:38 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-04-03 08:57:06 +0100 |
| commit | 4e6225d53a8a7b56681ba35a19239662ca20d718 (patch) | |
| tree | 245c65d70359dc3dc318928bb33be1e492631e36 /app/Module/YahrzeitModule.php | |
| parent | 7231a557514e784a0eafe6ac24342f24bcf671ae (diff) | |
| download | webtrees-4e6225d53a8a7b56681ba35a19239662ca20d718.tar.gz webtrees-4e6225d53a8a7b56681ba35a19239662ca20d718.tar.bz2 webtrees-4e6225d53a8a7b56681ba35a19239662ca20d718.zip | |
Refactor static function from CalendarDate
Diffstat (limited to 'app/Module/YahrzeitModule.php')
| -rw-r--r-- | app/Module/YahrzeitModule.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Module/YahrzeitModule.php b/app/Module/YahrzeitModule.php index 00a4820daf..d7e444acc1 100644 --- a/app/Module/YahrzeitModule.php +++ b/app/Module/YahrzeitModule.php @@ -260,8 +260,8 @@ class YahrzeitModule extends AbstractModule implements ModuleBlockInterface { echo I18N::translate('Calendar'); echo '</td><td class="optionbox">'; echo select_edit_control('calendar', array( - 'jewish' => JewishDate::calendarName(), - 'gregorian'=> GregorianDate::calendarName(), + 'jewish' => /* I18N: The Hebrew/Jewish calendar */ I18N::translate('Jewish'), + 'gregorian'=> /* I18N: The gregorian calendar */ I18N::translate('Gregorian'), ), null, $calendar, ''); echo '</td></tr>'; |
