Skip to content

Commit

Permalink
Merge pull request LaravelRUS#47 from LaravelRUS/1.4
Browse files Browse the repository at this point in the history
1.4 Fix fir Turkish
  • Loading branch information
Amegatron committed Jan 30, 2015
2 parents b843e96 + 0a08dbf commit c69d218
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public function format($isNow, $isFuture, $delta, $unit)
$txt = $delta . ' ' . $unitStr;

if ($isNow) {
$txt = (($isFuture) ? 'sonra ' : 'önce ') . $txt;
$txt .= " " . (($isFuture) ? 'sonra ' : 'önce ');

return $txt;
}
Expand Down

0 comments on commit c69d218

Please sign in to comment.