<?xml version="1.0" encoding="utf-8"?>
<!-- Novus example app - Polish (pl) quantity strings.
     Install at res/values-pl/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 pl: one, few, many, other. -->
<resources>
    <!-- Item count in the status bar -->
    <plurals name="files">
        <item quantity="one">%1$d plik</item>
        <item quantity="few">%1$d pliki</item>
        <item quantity="many">%1$d plików</item>
        <item quantity="other">%1$d pliku</item>
    </plurals>
    <!-- Selection summary -->
    <plurals name="folders_selected">
        <item quantity="one">Wybrano %1$d folder</item>
        <item quantity="few">Wybrano %1$d foldery</item>
        <item quantity="many">Wybrano %1$d folderów</item>
        <item quantity="other">Wybrano %1$d folderu</item>
    </plurals>
    <!-- Undo toast after a delete -->
    <plurals name="deleted_items">
        <item quantity="one">Usunięto %1$d element</item>
        <item quantity="few">Usunięto %1$d elementy</item>
        <item quantity="many">Usunięto %1$d elementów</item>
        <item quantity="other">Usunięto %1$d elementu</item>
    </plurals>
    <!-- Demo string chosen to show Welsh consonant mutation -->
    <plurals name="cats">
        <item quantity="one">%1$d kot</item>
        <item quantity="few">%1$d koty</item>
        <item quantity="many">%1$d kotów</item>
        <item quantity="other">%1$d kota</item>
    </plurals>
</resources>
