From dd44b3a3a794939ab8d09819b6c9e89a0c8e7c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20M=C3=B6ller?= Date: Wed, 2 Mar 2011 23:15:24 +0100 Subject: [PATCH] Add explaination for translators. We are hit by a Transifex issue here: http://getsatisfaction.com/indifex/topics/number_of_arguments_check_must_be_forcable --- htdocs/feed.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/feed.php b/htdocs/feed.php index d164508f..151da22c 100644 --- a/htdocs/feed.php +++ b/htdocs/feed.php @@ -136,7 +136,9 @@ function caldav_get_feed( $request, $collection ) { $dt_end = new RepeatRuleDateTime($event->dtend); if ( $dt_end != null ) { $p_time .= ' - ' . ( $dt_end->AsDate() == $dt_start->AsDate() + # Translators: his is the formatting of just the time. See http://php.net/manual/en/function.strftime.php ? strftime(translate('%T'), $dt_end->epoch()) + # Translators: this is the formatting of a date with time. See http://php.net/manual/en/function.strftime.php : strftime(translate('%F %T'), $dt_end->epoch()) ); }