<?xml version="1.0" encoding="utf-8"?>
<!-- Novus example app - English (en) quantity strings.
     Install at res/values/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 en: one, other. -->
<resources>
    <!-- Item count in the status bar -->
    <plurals name="files">
        <item quantity="one">%1$d file</item>
        <item quantity="other">%1$d files</item>
    </plurals>
    <!-- Selection summary -->
    <plurals name="folders_selected">
        <item quantity="one">%1$d folder selected</item>
        <item quantity="other">%1$d folders selected</item>
    </plurals>
    <!-- Undo toast after a delete -->
    <plurals name="deleted_items">
        <item quantity="one">Deleted %1$d item</item>
        <item quantity="other">Deleted %1$d items</item>
    </plurals>
    <!-- Demo string chosen to show Welsh consonant mutation -->
    <plurals name="cats">
        <item quantity="one">%1$d cat</item>
        <item quantity="other">%1$d cats</item>
    </plurals>
</resources>
