ditolas Posted September 4, 2014 Share Posted September 4, 2014 Hi all, to see if someone can help me solve this problem that has arisen me. I created a page in prestashop 1.6 in which you can upload files. Well the problem I encounter is when translating the input. I can not find where to translate it. It appears in English and I would like it in french: my code is this: <form action="index.php?controller=subefotoconfirmar" method="POST" enctype="multipart/form-data" > <p style="display:inline;margin-right: 10px;">Nombre de Usuario:</p><label>{$cookie->customer_firstname}{$cookie->customer_lastname}</label> <input type="hidden" id="" name="fecha" value="{$smarty.now|date_format:'%Y-%m-%d'}"> <p id="subimos2" style="margin-right: 10px;">Diseño</p> <div id="subir" style="display:inline-block;"> <input name="foto" type="file" style="display:inline;"/> <input type="hidden" name="MAX_FILE_SIZE" value="50000000" /> <input id="botonsube" type="submit" value="Subir" style="padding-bottom: 4px;padding-top: 5px;padding-left:40px;padding-right:40px;"> </form> and the code that generates: <form action="index.php?controller=subefotoconfirmar" method="POST" enctype="multipart/form-data"> <p style="display:inline;margin-right: 10px;">Nombre de Usuario:</p><label>Eduardodel val</label> <input type="hidden" id="" name="NombreUsuario" value="Eduardo del val"> <p style="display:inline;margin-right: 10px;margin-left: 34px;">Fecha:</p><label>04-09-2014</label> <br> <input type="hidden" id="" name="fecha" value="2014-09-04"> <p id="subimos2" style="margin-right: 10px;">Diseño</p> <div id="subir" style="display:inline-block;"> <div class="uploader"><input name="foto" type="file" style="display:inline;"><span class="filename" style="-webkit-user-select: none;">No file selected</span><span class="action" style="-webkit-user-select: none;">Choose File</span></div> </div> <input type="hidden" name="MAX_FILE_SIZE" value="50000000"> <input id="botonsube" type="submit" value="Subir" style="padding-bottom: 4px;padding-top: 5px;padding-left:40px;padding-right:40px;"> </form> You know where I can put the translation? Link to comment Share on other sites More sharing options...
vekia Posted September 15, 2014 Share Posted September 15, 2014 input field file is not translatable in prestashop. this filed is generated by browser and it uses language defined in your browser. Link to comment Share on other sites More sharing options...
Recommended Posts