<?xml version="1.0" encoding="utf-8"?>
<!-- Novus example app - Arabic (ar) quantity strings.
     Install at res/values-ar/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 ar: zero, one, two, few, many, other. -->
<resources>
    <!-- Item count in the status bar -->
    <plurals name="files">
        <item quantity="zero">لا توجد ملفات</item>
        <item quantity="one">ملف واحد</item>
        <item quantity="two">ملفان</item>
        <item quantity="few">%1$d ملفات</item>
        <item quantity="many">%1$d ملفًا</item>
        <item quantity="other">%1$d ملف</item>
    </plurals>
    <!-- Selection summary -->
    <plurals name="folders_selected">
        <item quantity="zero">لم يتم تحديد أي مجلد</item>
        <item quantity="one">تم تحديد مجلد واحد</item>
        <item quantity="two">تم تحديد مجلدين</item>
        <item quantity="few">تم تحديد %1$d مجلدات</item>
        <item quantity="many">تم تحديد %1$d مجلدًا</item>
        <item quantity="other">تم تحديد %1$d مجلد</item>
    </plurals>
    <!-- Undo toast after a delete -->
    <plurals name="deleted_items">
        <item quantity="zero">لم يتم حذف أي عنصر</item>
        <item quantity="one">تم حذف عنصر واحد</item>
        <item quantity="two">تم حذف عنصرين</item>
        <item quantity="few">تم حذف %1$d عناصر</item>
        <item quantity="many">تم حذف %1$d عنصرًا</item>
        <item quantity="other">تم حذف %1$d عنصر</item>
    </plurals>
    <!-- Demo string chosen to show Welsh consonant mutation -->
    <plurals name="cats">
        <item quantity="zero">لا توجد قطط</item>
        <item quantity="one">قطة واحدة</item>
        <item quantity="two">قطتان</item>
        <item quantity="few">%1$d قطط</item>
        <item quantity="many">%1$d قطةً</item>
        <item quantity="other">%1$d قطة</item>
    </plurals>
</resources>
