Commit 9ab4c2660ad32063b3da98f3115e77ae1bbe2117
1 parent
aff7d231
Exists in
master
and in
7 other branches
Substituição dos IDs para os textos das ferramenta por palavras-chave
Showing
2 changed files
with
12 additions
and
12 deletions
Show diff stats
ferramentas/animacao/dicionario.js
| 1 | //+$trad(1,i3GEOF.animacao.dicionario)+ | 1 | //+$trad(1,i3GEOF.animacao.dicionario)+ |
| 2 | i3GEOF.animacao.dicionario = { | 2 | i3GEOF.animacao.dicionario = { |
| 3 | 1: [{ | 3 | 1: [{ |
| 4 | -pt:"inicia", | 4 | +'inicia':"inicia", |
| 5 | en:"", | 5 | en:"", |
| 6 | es:"" | 6 | es:"" |
| 7 | }], | 7 | }], |
| 8 | -2: [{ | 8 | +'rebobina': [{ |
| 9 | pt:"rebobina", | 9 | pt:"rebobina", |
| 10 | en:"", | 10 | en:"", |
| 11 | es:"" | 11 | es:"" |
| 12 | }], | 12 | }], |
| 13 | -3: [{ | 13 | +'rapido': [{ |
| 14 | pt:"mais rapido", | 14 | pt:"mais rapido", |
| 15 | en:"", | 15 | en:"", |
| 16 | es:"" | 16 | es:"" |
| 17 | }], | 17 | }], |
| 18 | -4: [{ | 18 | +'lento': [{ |
| 19 | pt:"mais lento", | 19 | pt:"mais lento", |
| 20 | en:"", | 20 | en:"", |
| 21 | es:"" | 21 | es:"" |
| 22 | }], | 22 | }], |
| 23 | -5: [{ | 23 | +'ajuda': [{ |
| 24 | pt:"Marque as camadas que serão incluídas na animação e depois clique no botão <i>inicia</i>", | 24 | pt:"Marque as camadas que serão incluídas na animação e depois clique no botão <i>inicia</i>", |
| 25 | en:"", | 25 | en:"", |
| 26 | es:"" | 26 | es:"" |
| 27 | }] | 27 | }] |
| 28 | -}; | ||
| 29 | \ No newline at end of file | 28 | \ No newline at end of file |
| 29 | +}; |
ferramentas/animacao/index.js
| @@ -104,14 +104,14 @@ i3GEOF.animacao = { | @@ -104,14 +104,14 @@ i3GEOF.animacao = { | ||
| 104 | var ins = ""; | 104 | var ins = ""; |
| 105 | ins += "" + | 105 | ins += "" + |
| 106 | "<div style='text-align:center;position:relative;cursor:pointer' >" + | 106 | "<div style='text-align:center;position:relative;cursor:pointer' >" + |
| 107 | - " <img title='"+$trad(1,i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_inicia.png' onclick='i3GEOF.animacao.dispara()' /> " + | ||
| 108 | - " <img title='"+$trad(2,i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_para.png' onclick='i3GEOF.animacao.termina()' /> " + | ||
| 109 | - " <img title='"+$trad(3,i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_avanca.png' onclick='i3GEOF.animacao.maisrapido()' /> " + | ||
| 110 | - " <img title='"+$trad(4,i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_volta.png' onclick='i3GEOF.animacao.maislento()' /> " + | 107 | + " <img title='"+$trad('inicia',i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_inicia.png' onclick='i3GEOF.animacao.dispara()' /> " + |
| 108 | + " <img title='"+$trad('rebobina',i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_para.png' onclick='i3GEOF.animacao.termina()' /> " + | ||
| 109 | + " <img title='"+$trad('rapido',i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_avanca.png' onclick='i3GEOF.animacao.maisrapido()' /> " + | ||
| 110 | + " <img title='"+$trad('lento',i3GEOF.animacao.dicionario)+"' src='"+i3GEO.configura.locaplic+"/imagens/player_volta.png' onclick='i3GEOF.animacao.maislento()' /> " + | ||
| 111 | "</div>" + | 111 | "</div>" + |
| 112 | "<div id='i3GEOFanimacaoLista' ></div><br>" + | 112 | "<div id='i3GEOFanimacaoLista' ></div><br>" + |
| 113 | '<div id=i3GEOanimacaomen1 style="display:block;left:0px;">' + | 113 | '<div id=i3GEOanimacaomen1 style="display:block;left:0px;">' + |
| 114 | - ' <p class=paragrafo >'+$trad(5,i3GEOF.animacao.dicionario)+'</p>' + | 114 | + ' <p class=paragrafo >'+$trad('ajuda',i3GEOF.animacao.dicionario)+'</p>' + |
| 115 | '</div>'; | 115 | '</div>'; |
| 116 | return ins; | 116 | return ins; |
| 117 | }, | 117 | }, |
| @@ -284,4 +284,4 @@ i3GEOF.animacao = { | @@ -284,4 +284,4 @@ i3GEOF.animacao = { | ||
| 284 | $i("i3GEOanima"+cs[n].value).style.backgroundColor = "white"; | 284 | $i("i3GEOanima"+cs[n].value).style.backgroundColor = "white"; |
| 285 | } | 285 | } |
| 286 | } | 286 | } |
| 287 | -}; | ||
| 288 | \ No newline at end of file | 287 | \ No newline at end of file |
| 288 | +}; |