(self)
| 299 | |
| 300 | # French Polynesia. |
| 301 | def _populate_subdiv_pf_public_holidays(self): |
| 302 | # Good Friday. |
| 303 | self._add_good_friday(tr("Vendredi saint")) |
| 304 | |
| 305 | # Established on February 1st, 1978. |
| 306 | if self._year >= 1978: |
| 307 | # Missionary Day. |
| 308 | self._add_holiday_mar_5(tr("Arrivée de l'Évangile")) |
| 309 | |
| 310 | # Established on May 30th, 1985. |
| 311 | # Replaced by Matāri'i on April 30th, 2024. |
| 312 | if 1985 <= self._year <= 2024: |
| 313 | # Internal Autonomy Day. |
| 314 | self._add_holiday_jun_29(tr("Fête de l'autonomie")) |
| 315 | |
| 316 | # Established on April 30th, 2024. |
| 317 | if self._year >= 2025: |
| 318 | # Matāri'i. |
| 319 | self._add_holiday_nov_20(tr("Matāri'i")) |
| 320 | |
| 321 | # Wallis and Futuna. |
| 322 | def _populate_subdiv_wf_public_holidays(self): |
nothing calls this directly
no test coverage detected