<?xml version="1.0" encoding="utf-8"?>
<!-- Novus example app - Welsh (cy) quantity strings.
     Install at res/values-cy/plurals.xml.

     Android resolves <plurals> through the CLDR rules for the resource folder's locale,
     NOT through the numbers in the item text: getQuantityString(R.plurals.files, 2)
     returns the "few" item in values-pl/ and the "other" item in values/. A quantity
     the locale never selects is legal and simply dead — English never selects "zero",
     "two", "few" or "many", which is why the default folder below carries only two items.
     Categories used by cy: zero, one, two, few, many, other. -->
<resources>
    <!-- Item count in the status bar -->
    <plurals name="files">
        <item quantity="zero">%1$d ffeil</item>
        <item quantity="one">%1$d ffeil</item>
        <item quantity="two">%1$d ffeil</item>
        <item quantity="few">%1$d ffeil</item>
        <item quantity="many">%1$d ffeil</item>
        <item quantity="other">%1$d ffeil</item>
    </plurals>
    <!-- Selection summary -->
    <plurals name="folders_selected">
        <item quantity="zero">Dewiswyd %1$d ffolder</item>
        <item quantity="one">Dewiswyd %1$d ffolder</item>
        <item quantity="two">Dewiswyd %1$d ffolder</item>
        <item quantity="few">Dewiswyd %1$d ffolder</item>
        <item quantity="many">Dewiswyd %1$d ffolder</item>
        <item quantity="other">Dewiswyd %1$d ffolder</item>
    </plurals>
    <!-- Undo toast after a delete -->
    <plurals name="deleted_items">
        <item quantity="zero">Dilewyd %1$d eitem</item>
        <item quantity="one">Dilewyd %1$d eitem</item>
        <item quantity="two">Dilewyd %1$d eitem</item>
        <item quantity="few">Dilewyd %1$d eitem</item>
        <item quantity="many">Dilewyd %1$d eitem</item>
        <item quantity="other">Dilewyd %1$d eitem</item>
    </plurals>
    <!-- Demo string chosen to show Welsh consonant mutation -->
    <plurals name="cats">
        <item quantity="zero">%1$d cath</item>
        <item quantity="one">%1$d gath</item>
        <item quantity="two">%1$d gath</item>
        <item quantity="few">%1$d cath</item>
        <item quantity="many">%1$d chath</item>
        <item quantity="other">%1$d cath</item>
    </plurals>
</resources>
