Making WordPress.org

Opened 2 years ago

Closed 8 weeks ago

#7583 closed defect (bug) (fixed)

Fix singular/plural form for Persian language on WP Site

Reported by: farhad0 Owned by: obenland
Priority: high Milestone:
Component: WordPress.org Site Keywords: has-patch has-test-info
Cc:

Description

Hi,

Currently the form of singular and plural for Persian language on translate.wordpress.org site is not correct,
Previously we fixed this on GlotPress but it seems WP site missed this fix

https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/mu-plugins/pub/locales/locales.php?rev=12939#L1027

https://github.com/GlotPress/GlotPress/pull/1012

Correct form for Persian languages:

$fa->nplurals = 2;
$fa->plural_expression = 'n > 1';

$fa_af->nplurals = 2;
$fa_af->plural_expression = 'n > 1';

Change History (5)

This ticket was mentioned in PR #247 on WordPress/wordpress.org by @farhad0.


2 years ago
#2

Hi,
Currently the form of singular and plural for Persian language on translate.wordpress.org site is not correct, Previously we fixed this on GlotPress but it seems WP site missed this fix https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/mu-plugins/pub/locales/locales.php?rev=12939#L1027 https://github.com/GlotPress/GlotPress/pull/1012
Correct form for Persian languages:
$fa->nplurals = 2;
$fa->plural_expression = 'n > 1';

$fa_af->nplurals = 2;
$fa_af->plural_expression = 'n > 1';

The ticket is:
https://meta.trac.wordpress.org/ticket/7583

#3 @dd32
16 months ago

  • Keywords has-test-info added; has-testing-info removed

Updating renamed keywords. See #7935

#4 @obenland
8 weeks ago

  • Owner set to obenland
  • Status newreviewing

#5 @obenland
8 weeks ago

  • Resolutionfixed
  • Status reviewingclosed

In 14973:

Fix plural expression for Persian locales.

Props farhad0.
Fixes #7583.
Closes https://github.com/WordPress/wordpress.org/pull/247.

Note: See TracTickets for help on using tickets.