diff options
Diffstat (limited to 'app/Date/JulianDate.php')
| -rw-r--r-- | app/Date/JulianDate.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Date/JulianDate.php b/app/Date/JulianDate.php index 023a1c0969..ec535c15dc 100644 --- a/app/Date/JulianDate.php +++ b/app/Date/JulianDate.php @@ -81,13 +81,13 @@ class JulianDate extends CalendarDate { */ protected function formatLongYear() { if ($this->y < 0) { - return /* I18N: BCE=Before the Common Era, for Julian years < 0. See http://en.wikipedia.org/wiki/Common_Era */ + return /* I18N: BCE=Before the Common Era, for Julian years < 0. See http://en.wikipedia.org/wiki/Common_Era */ I18N::translate('%s BCE', I18N::digits(-$this->y)); } else { if ($this->new_old_style) { return I18N::translate('%s CE', I18N::digits(sprintf('%d/%02d', $this->y - 1, $this->y % 100))); } else { - return /* I18N: CE=Common Era, for Julian years > 0. See http://en.wikipedia.org/wiki/Common_Era */ + return /* I18N: CE=Common Era, for Julian years > 0. See http://en.wikipedia.org/wiki/Common_Era */ I18N::translate('%s CE', I18N::digits($this->y)); } } |
