Is it possible to change the text of the "Add to home screen" prompt of a PWA? [closed]

closed. this question is out of scope and is not currently accepting answers.

want to improve this question? Update the question so it's on-topic for Stack Overflow.

Closed 10 months ago .

improve this question

Is there any way to change the "Add to home screen" text of a PWA? I imagined that it was by the manifest of the PWA, but I did not find any specification, I have seen in some sites this text in Portuguese, is there a solution?

My PWA:

insert the description of the image here

Example of how I wanted:

insert the description of the image here

Follows my PWA configuration:

name: 'Meu App',
lang: 'pt-br',
scope: '/',
short_name: 'MeuApp',
description: 'Meu App PWA',
background_color: '#fff',
theme_color: '#fff',
display: 'standalone',
start_url: '/',
orientation: 'portrait',
icons: [
  {
    src: '/icons/icon-72x72.png',
    sizes: '72x72',
    type: 'image/png'
  },
  {
    src: '/icons/icon-96x96.png',
    sizes: '96x96',
    type: 'image/png'
  },
  {
    src: '/icons/icon-128x128.png',
    sizes: '128x128',
    type: 'image/png'
  },
  {
    src: '/icons/icon-144x144.png',
    sizes: '144x144',
    type: 'image/png'
  },
  {
    src: '/icons/icon-152x152.png',
    sizes: '152x152',
    type: 'image/png'
  },
  {
    src: '/icons/icon-192x192.png',
    sizes: '192x192',
    type: 'image/png'
  },
  {
    src: '/icons/icon-384x384.png',
    sizes: '384x384',
    type: 'image/png'
  },
  {
    src: '/icons/icon-512x512.png',
    sizes: '512x512',
    type: 'image/png'
  }
]
Author: haykou, 2020-04-07