Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Did you create the translation for Filipino and put it in the correct location in your project? If so, where did you put it?</p> <blockquote> <p>Django looks for translations by following this algorithm:</p> <ul> <li>First, it looks for a locale directory in the application directory of the view that’s being called. If it finds a translation for the selected language, the translation will be installed.</li> <li>Next, it looks for a locale directory in the project directory. If it finds a translation, the translation will be installed.</li> <li>Finally, it checks the Django-provided base translation in django/conf/locale.</li> </ul> </blockquote> <p>Filipino isn't one of the django supported languages so you will need to add it yourself. Here is something that I got from the djangobook.com</p> <p><a href="http://www.djangobook.com/en/2.0/chapter19/" rel="nofollow">http://www.djangobook.com/en/2.0/chapter19/</a></p> <blockquote> <p>The LocaleMiddleware can only select languages for which there is a Django-provided base translation. If you want to provide translations for your application that aren’t already in the set of translations in Django’s source tree, you’ll want to provide at least basic translations for that language. For example, Django uses technical message IDs to translate date formats and time formats — so you will need at least those translations for the system to work correctly.</p> <p>A good starting point is to copy the English .po file and to translate at least the technical messages — maybe the validation messages, too.</p> <p>Technical message IDs are easily recognized; they’re all upper case. You don’t translate the message ID as with other messages, you provide the correct local variant on the provided English value. For example, with DATETIME_FORMAT (or DATE_FORMAT or TIME_FORMAT), this would be the format string that you want to use in your language. The format is identical to the format strings used by the now template tag.</p> </blockquote> <p>I'm not sure if that will solve your problem, but hopefully it will help you get there.</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. This table or related slice is empty.
    1. 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