Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This is more complicated.</p> <p>Actually it seems that you need only to choose between singular and plural form (although languages could have multiple plural forms). So basically <code>Do you want to delete this file: %s?</code> or <code>Do you want to delete these files: %s?</code>. I cannot say for all languages but this would be OK in Polish.<br> However, if you want to put quantity (which is rather good idea), you would end up with multiple plural forms: <code>Do you want to delete this file: %s</code> (<code>Czy chcesz usunąć ten plik: {0}?</code> when translated) or <code>Do you want to translate these %n files: %s</code> translated either as <code>Czy chcesz usunąć te %n pliki: %s?</code> or <code>Czy chcesz usunąć tych %n plików: %s?</code>.</p> <p>As for lists, <a href="http://unicode.org/repos/cldr-tmp/trunk/diff/summary/root.html" rel="nofollow noreferrer">CLDR charts</a> might be a good source of information on how to handle them - look for <strong>listPattern</strong>. Below I am presenting a fragment from Polish charts: </p> <p><img src="https://i.stack.imgur.com/aL5W6.png" alt="enter image description here"></p> <p>{0} and {1} are placeholders, the list you provided would look like: <code>toto; tata i titi</code>. I am still not totally sure this is what it should like (in Polish I am more inclined to <code>toto, tata i titi</code>) but in theory you could use this information to create a list.<br> In another answer I claimed that it is actually impossible to create such lists in general case (regardless of the language) and people tend to use list view controls for selection or present data as vertical list to avoid problems. Your example would need to be modified to:</p> <pre><code>These file(s) would be deleted: toto tata titi Are you sure? </code></pre> <p>This might be problematic (it might not fit in the screen) but this is what people often do to avoid issues with lists in foreign languages.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload