How to Set the Language of the WordPress Update?

1

Hello, everyone.

I would like to understand the following: when accessing the menu: Panel > Updates in a WordPress installation, there is the possibility to choose between updating the WP in the Portuguese version of Brazil and English: [ link ]. However, in another installation, there is only the option to upgrade / re-install to the English version: [ link ]. In the second example, a few days ago I manually updated to version 4.7.2 (Portuguese), so I do not understand why only the update option for the English language is displayed. Does anyone know where I can change this?

What determines if two languages are available on the update screen?

PS: Under Settings > Language is already set up the Portuguese language.

Thank you in advance!

    
asked by anonymous 08.03.2017 / 14:26

1 answer

0

Two factors determine whether you will have one or several installation options on your screen:

1) is the languages set in wordpress (via interface) or via code

define ('WPLANG', '');

wp-config.php ( see the manual for more details )

2) In addition to the above item, it is necessary that the official community has released the translated update, in case the update does not have a translation it will only show the update option in English.

    
08.03.2017 / 14:32