http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13794
--- Comment #10 from Jonathan Druart <[email protected]> --- Ok so, I tried to be sure no regression is added: $ git checkout bug_13794 $ cd misc/translator $ perl update es-ES $ perl install es-ES $ cp -r po/es-ES-i-staff-t-prog-v-3006000.po po/es-ES-opac-bootstrap.po po/es-ES-pref.po po/es-ES-staff-help.po ../../koha-tmpl/intranet-tmpl/prog/es-ES/ ../../koha-tmpl/opac-tmpl/bootstrap/es-ES /tmp/test_bug_13794 $ cd /tmp/test_bug_13794 $ git init;git add .; git commit -m"something" # back in my koha src $ git checkout master $ cd misc/translator $ perl update es-ES $ perl install es-ES $ cp -r po/es-ES-i-staff-t-prog-v-3006000.po po/es-ES-opac-bootstrap.po po/es-ES-pref.po po/es-ES-staff-help.po ../../koha-tmpl/intranet-tmpl/prog/es-ES/ ../../koha-tmpl/opac-tmpl/bootstrap/es-ES /tmp/test_bug_13794 $ cd /tmp/test_bug_13794 $ git diff | grep input | grep text | grep value | grep -v 'value=""' | grep -v 'value="\[\%'| vim - gives me the following: id="start_card" class="focus" title="NĂºmero de carnĂ© de inicio" size="5" name="start_card" value="1" /> - <label class="inline" for="basename">Nombre: </label> <input name="basename" value="Exportar" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label> <input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input value="Exportar" name="basename" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input name="basename" value="Exportar" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input type="text" id="basename" value="Exportar" name="basename" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input value="Exportar" name="basename" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input name="basename" value="Exportar" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input value="Exportar" name="basename" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input value="Exportar" name="basename" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input name="basename" value="Exportar" id="basename" type="text" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> - <label class="inline" for="basename">Nombre: </label><input name="basename" value="Exportar" type="text" id="basename" /> + <label class="inline" for="basename">Nombre: </label><input type="text" name="basename" id="basename" value="Export" /> con valor <input type="text" name="field_value" id="field_value" /> - <input value="Exportar" name="basename" type="text" id="basename" /> + <input type="text" name="basename" id="basename" value="Export" /> All looks good. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
