Ticket #22337: 22337.minor-typo-fix.patch
File 22337.minor-typo-fix.patch, 985 bytes (added by , 12 years ago) |
---|
-
wp-includes/pomo/translations.php
81 81 /** 82 82 * Given the number of items, returns the 0-based index of the plural form to use 83 83 * 84 * Here, in the base Translations class, the common logic for English is impl mented:84 * Here, in the base Translations class, the common logic for English is implemented: 85 85 * 0 if there is one element, 1 otherwise 86 86 * 87 87 * This function should be overrided by the sub-classes. For example MO/PO can derive the logic … … 134 134 135 135 class Gettext_Translations extends Translations { 136 136 /** 137 * The gettext impl mentation of select_plural_form.137 * The gettext implementation of select_plural_form. 138 138 * 139 139 * It lives in this class, because there are more than one descendand, which will use it and 140 140 * they can't share it effectively.