Skip to content

Commit

Permalink
Merge pull request #2963 from briannesbitt/revert-2941-master
Browse files Browse the repository at this point in the history
Revert "Fix Persian translation for before and after"
  • Loading branch information
kylekatarnls authored Mar 13, 2024
2 parents 56746f0 + 61ef036 commit 7e76ee8
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions src/Carbon/Lang/fa.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
's' => ':count ثانیه',
'ago' => ':time پیش',
'from_now' => ':time دیگر',
'after' => ':time بعد',
'before' => ':time قبل',
'after' => ':time پس از',
'before' => ':time پیش از',
'diff_now' => 'اکنون',
'diff_today' => 'امروز',
'diff_today_regexp' => 'امروز(?:\\s+ساعت)?',
Expand Down
8 changes: 4 additions & 4 deletions tests/Localization/FaAfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,19 +347,19 @@ class FaAfTest extends LocalizationTestCase

// Carbon::now()->addSecond()->diffForHumans(Carbon::now())
// '1 second after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)
// '1s after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond())
// '1 second before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)
// '1s before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)
// '1 second',
Expand Down
8 changes: 4 additions & 4 deletions tests/Localization/FaIrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,19 +347,19 @@ class FaIrTest extends LocalizationTestCase

// Carbon::now()->addSecond()->diffForHumans(Carbon::now())
// '1 second after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)
// '1s after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond())
// '1 second before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)
// '1s before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)
// '1 second',
Expand Down
8 changes: 4 additions & 4 deletions tests/Localization/FaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,19 +347,19 @@ class FaTest extends LocalizationTestCase

// Carbon::now()->addSecond()->diffForHumans(Carbon::now())
// '1 second after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)
// '1s after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond())
// '1 second before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)
// '1s before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)
// '1 second',
Expand Down
8 changes: 4 additions & 4 deletions tests/Localization/MznTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,19 +347,19 @@ class MznTest extends LocalizationTestCase

// Carbon::now()->addSecond()->diffForHumans(Carbon::now())
// '1 second after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)
// '1s after',
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond())
// '1 second before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)
// '1s before',
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)
// '1 second',
Expand Down
8 changes: 4 additions & 4 deletions tests/Localization/UzArabTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,19 +347,19 @@ class UzArabTest extends LocalizationTestCase

// Carbon::now()->addSecond()->diffForHumans(Carbon::now())
// '1 second after'
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), false, true)
// '1s after'
'1 ثانیه بعد',
'1 ثانیه پس از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond())
// '1 second before'
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->diffForHumans(Carbon::now()->addSecond(), false, true)
// '1s before'
'1 ثانیه قبل',
'1 ثانیه پیش از',

// Carbon::now()->addSecond()->diffForHumans(Carbon::now(), true)
// '1 second'
Expand Down

0 comments on commit 7e76ee8

Please sign in to comment.