Skip to:
Content
Pages
Categories
Search
Top
Bottom

Change the name of the administrator


  • agarrod77
    Participant

    @agarrod77

    Hello

    When installing the plugin in a blog in Spanish, the administrator is shown as “super administrador”, what sounds a little bit strange. Is it possible to change the displayed name’s role to just “administrador”?

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)

  • Robin W
    Moderator

    @robin-w

    Try adding this to your functions file, it may/should work – have never tried it in a different language !

    //This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'super administrador' ) {
    	$translated_text = 'administrador';
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );

    The string Keymaster is being translated to Super Administrator(here)

    If you login to http://translate.wordpress.org using your wordpress.org/bbpress.org username and password you can also suggest an updated translation and the Spanish translation team will review the translation and accept it or not.

    The first link above is for the ‘development’ version of bbPress, upcoming 2.6 release, you should also suggest any translation updates for the current bbPress v2.5 here.

    Once you have done the above you should let the Spanish translation team know:

    Contacto

    p.s. Robin -> https://en-gb.wordpress.org/ 😉

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar