Index: trunk/phase3/languages/messages/MessagesFa.php |
— | — | @@ -2182,7 +2182,7 @@ |
2183 | 2183 | 'noimages' => 'چیزی برای دیدن نیست.', |
2184 | 2184 | 'ilsubmit' => 'جستجو', |
2185 | 2185 | 'bydate' => 'از روی تاریخ', |
2186 | | -'sp-newimages-showfrom' => 'نشاندادن تصویرهای جدید از $1 به بعد', |
| 2186 | +'sp-newimages-showfrom' => 'نشاندادن تصویرهای جدید از $2، $1 به بعد', |
2187 | 2187 | |
2188 | 2188 | # Bad image list |
2189 | 2189 | 'bad_image_list' => 'اطلاعات را باید به این شکل وارد کنید: |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2523,7 +2523,7 @@ |
2524 | 2524 | 'noimages' => 'Nothing to see.', |
2525 | 2525 | 'ilsubmit' => 'Search', |
2526 | 2526 | 'bydate' => 'by date', |
2527 | | -'sp-newimages-showfrom' => 'Show new files starting from $1', |
| 2527 | +'sp-newimages-showfrom' => 'Show new files starting from $2, $1', |
2528 | 2528 | |
2529 | 2529 | # Video information, used by Language::formatTimePeriod() to format lengths in the above messages |
2530 | 2530 | 'video-dims' => '$1, $2×$3', # only translate this message to other languages if you have to change it |
Index: trunk/phase3/includes/SpecialNewimages.php |
— | — | @@ -175,8 +175,9 @@ |
176 | 176 | $botpar=''; |
177 | 177 | } |
178 | 178 | $now = wfTimestampNow(); |
179 | | - $date = $wgLang->timeanddate( $now, true ); |
180 | | - $dateLink = $sk->makeKnownLinkObj( $titleObj, wfMsgHtml( 'sp-newimages-showfrom', $date ), 'from='.$now.$botpar.$searchpar ); |
| 179 | + $d = $wgLang->date( $now, true ); |
| 180 | + $t = $wgLang->time( $now, true ); |
| 181 | + $dateLink = $sk->makeKnownLinkObj( $titleObj, wfMsgHtml( 'sp-newimages-showfrom', $d, $t ), 'from='.$now.$botpar.$searchpar ); |
181 | 182 | |
182 | 183 | $botLink = $sk->makeKnownLinkObj($titleObj, wfMsgHtml( 'showhidebots', ($hidebots ? wfMsgHtml('show') : wfMsgHtml('hide'))),'hidebots='.($hidebots ? '0' : '1').$searchpar); |
183 | 184 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -105,6 +105,7 @@ |
106 | 106 | * (bug 12801) Fix link in subtitle message in AJAX search |
107 | 107 | * (bug 13428) Fix regression in protection form layout HTML validity |
108 | 108 | * (bug 9403) Sanitize newlines from search term input |
| 109 | +* (bug 13429) Separate date and time in message sp-newimages-showfrom |
109 | 110 | |
110 | 111 | |
111 | 112 | === API changes in 1.13 === |