<?xml version="1.0" encoding="utf-8"?>
<!-- Novus example app - Japanese (ja) quantity strings.
     Install at res/values-ja/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 ja: other. -->
<resources>
    <!-- Item count in the status bar -->
    <plurals name="files">
        <item quantity="other">%1$d 件のファイル</item>
    </plurals>
    <!-- Selection summary -->
    <plurals name="folders_selected">
        <item quantity="other">%1$d 個のフォルダーを選択</item>
    </plurals>
    <!-- Undo toast after a delete -->
    <plurals name="deleted_items">
        <item quantity="other">%1$d 件のアイテムを削除しました</item>
    </plurals>
    <!-- Demo string chosen to show Welsh consonant mutation -->
    <plurals name="cats">
        <item quantity="other">%1$d 匹の猫</item>
    </plurals>
</resources>
