rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - LeoNeeson

Pages: 1 ... 30 31 32 33 34 ... 56
466
HFS ~ HTTP File Server / Re: Problem with update 2.3k
« on: May 25, 2017, 11:34:04 AM »
Have you tried restarting your system?...

467
HTML & templates / Re: how to translate a template
« on: May 24, 2017, 02:10:04 AM »
I'm sorry but on the RAW template, I have not found how to change the language to French.
Do the following steps:

1) Open "RAWR-Template-0.1.3.tpl" using notepad or any text editor.
2) Locate the following section (you will find this at the beginning):

Quote
--- Available languages:
English   = en  Dutch     = nl
Spanish   = es  French    = fr
Italian   = it  Polish    = pl
Turkish   = tr  Russian   = ru
German    = de  Czech     = cz
Swedish   = se  Bulgarian = bg
Chinese   = cn  Ukrainian = ua
Chinese S = cs  Hungarian = hu
Chinese T = ct  Korean T  = kr

Automatic = auto (default, may not be reliable)

language=auto

Note: Feel free to translate your own or correct
      a value. Use the English language file.
      Post corrections or translations by forum
      or email us - contact[at]rawr-designs.com

3) Change the line marked in red color, to the following text:

Quote
language=fr

4) It's done! :) As simply as change "auto" to "fr"

Cheers,
Leo.-
 

468
Probably you did not understand me correctly?
Yes, you are right, I personally don't understand your configuration and what are you trying to achieve. It would be better if you share your HFS server IP, and your website URL, and give us a better explanation on how this it's supposed to work.

469
Français / Re: recherche source FR
« on: May 19, 2017, 01:50:56 PM »
rejetto peut-il proposer la même chose pour hfs  afin de ne pas avoir a le recompiler ?
(j'ai peu être loupé le tuto de traduction, pourtant j'ai fouillé)
Si vous êtes un développeur, aidez Rejetto à ajouter ce composant Delphi: "Kryvich's Delphi Localizer v3.2". Cela rendrait le multilinguisme HFS. En ajoutant ce composant, n'importe qui peut facilement traduire HFS vers n'importe quelle langue, en éditant simplement un fichier .ini.

If you are a developer, please help Rejetto to add this Delphi component: "Kryvich's Delphi Localizer v3.2". This would make HFS multilanguage. Adding this component, anyone could easily translate HFS to any language, by simply editing a .ini file.

470
Correct me if I'm mistaken, but using JavaScript only prevents the hotlinking of all resources loaded and contained on a HTML page, and NOT if a file is accessed directly. That's why I think this needs to be done using Macros at "file access" level (in the server), and not using JavaScript (which depends on a client side setting, on the user's browser).

471
HFS ~ HTTP File Server / Re: Links in new tab
« on: May 16, 2017, 10:18:39 AM »
Try this! :)

In this line...
Code: [Select]
<a href="%item-url%"><img src="%item-icon%"> %item-name%</a>
Add the code marked in red:
Quote
<a {.if| {.%folder% = / .} | target="_blank" .} href="%item-url%"><img src="%item-icon%"> %item-name%</a>

...but this is not working with subfolders! :( so, my code syntax must be bad!

I'm sure other users (which are more expert than me), will help you.

472
HFS ~ HTTP File Server / Re: HFS and DNS
« on: May 16, 2017, 08:18:28 AM »
Hello! :)

I'm afraid you are not doing this correctly. To use Menu > Dynamic DNS updater > DynDNS wizard... you must previously have a DynDNS account with them. DynDNS is not a free service anymore, and because that, I recommend you use No-IP instead.

Follow these steps:
- Sign up on No-IP.com to use their free Dynamic DNS service.
- If you feel lost doing this, use this tutorial: No-IP - Getting Started Guide.

Doing this you will get an User, Password and a Domain you have to put on HFS, going to Menu > Dynamic DNS updater > No-IP wizard...

Get in touch if you need more help!
Cheers,
Leo.-

473
HFS ~ HTTP File Server / Re: Links in new tab
« on: May 16, 2017, 07:58:01 AM »
Hi!, welcome to the forum! :D

This could be done by editing the template and using Macros. I don't know how to do it, but some other user will surely help you. Normally, in plain HTML, this is done by adding target="_blank" in a link. Example:

Quote
<a target="_blank" href="http://www.rejetto.com/hfs/">HFS</a>

474
@surikat, wait a minute:

                           
"Calling to Doctor Mars, calling to Doctor Mars,
please report yourself at this ward...
A patient is awaiting your help...
" ;D


> Sorry for the joke, this forum needs a little fun!!.... :D
(I don't know the solution, but this must be very easy)

  

475
HTML & templates / Re: how to translate a template
« on: May 09, 2017, 10:02:25 AM »
Although is nice to be able to translate the default template, RAWR-Designs Templates currently have support for more than 11 languages (English, Spanish, Italian, French, Dutch, German, Swedish, Polish, Russian, Czech, Bulgarian, Ukrainian, Hungarian, Turkish, Chinese and Korean), so that's the best option for anyone who wants to have your HFS server website in your own language. ;)

476
HTML & templates / Re: How to add more Option on template??
« on: May 09, 2017, 09:40:53 AM »
Do the following steps:

1) Open "RAWR-Template-0.1.3.tpl" using notepad or any text editor.
2) Locate the following section (you can search for the word "navbar"):

Quote
<div id="navbar">
   {.if not|%user%|<div class="bigBtn"><a href="~login"><span>{.!lv_login.}</span></a></div>.}
   <div class="bigBtn">
      <a href="javascript:void(0);" onclick="window.open('/~progress','{.!lv_transfers.}','width=300,height=500,left=100,top=100,scrollbars=1,resizable=1');" class="hide"><span>{.!lv_transfers.}</span></a>
      <noscript><a href="/~progress" target="_blank"><span>{.!lv_transfers.}</span></a></noscript>
   </div>
   {.if|{.get|can upload.}|<div class="bigBtn"><a href="~upload" title="{.!lv_uploadTitle.}"><span>{.!lv_upload.}</span></a></div>.}
   {.if|{.{.!btn_back.}=on.}|{.if not|{.%folder%=/ .}|<div id="backBtn"><a href=".."><span>{.!lv_back.}</span></a></div>.}.}
        <div class="bigBtn"><a href="https://www.google.com/"><span>Google</span></a></div>
        <div class="bigBtn"><a href="https://www.example.com/"><span>Example</span></a></div>
</div>

3) Add the text marked in red color, for example, this adds a link to Google.
4) If you need another button, you add another line there (like the text marked in blue color):

Quote
        <div class="bigBtn"><a href="https://www.example.com/"><span>Example</span></a></div>

I've attached an example, so you can see the changes (it's easy to add more buttons if you need it).

Please report back if this solves your question. :)

Cheers,
Leo.-

477
HTML & templates / Re: How to add more Option on template??
« on: May 09, 2017, 04:20:31 AM »
@sofeullah: What template are you using?...

478
HTML & templates / Re: how to translate a template
« on: May 04, 2017, 09:10:54 AM »
@Mars: Great work! Your translate.ini file makes it very easy to translate all the strings. I've updated my Spanish translation above, and also made some modifications to your edited 'hfs.tpl' file. The following were my modifications (marked in bold the changed part and in green the corrected line):
Quote
<span id='selected-number'>0</span> items selected</p>
<span id='selected-number'>0</span> {.!items selected.}</p>

<img src="/~img8"> {.!Folder.}</legend>
<img src="/~img8"> {.!Folder1|Folder.}</legend>

<td class='nosize'>{.!folder.}<td>
<td class='nosize'>{.!folder2|folder.}<td>

<div id='progress'>in progress...</div>
<div id='progress'>{.!in progress....}</div>

<li> Uploading %total% @ %speed-kb% KB/s
<li> {.!Uploading.} %total% @ %speed-kb% KB/s

{.add to log|{.!User.} %user% {.!renamed.} "{.^x.}" to "{.^y.}".}
{.add to log|{.!User.} %user% {.!renamed.} "{.^x.}" {.!to.} "{.^y.}".}
This completes all the modifications done by Mars! :)

« Last Edit: 04-05-2017, 06:30:04 by LeoNeeson »
I've updated my Spanish translation above and uploaded a fixed 'hfs.tpl' file.

« Last Edit: 08-05-2017, 05:55:35 by LeoNeeson »
Added the following reminder to Rejetto about all this.



@Rejetto: Don't forget to check and use my updated 'hfs.tpl file, or apply the modifications listed above.

i will fix the default template for next release
Cool 8) Thanks...
 

479
HTML & templates / Re: how to translate a template
« on: April 30, 2017, 04:58:41 AM »
Good information and a very important first step in making HFS multilingual. :)

EDIT: I've updated my Spanish translation, to be used with the fixed default template by Mars (and to be pasted on: Home folder > Properties > Diff template):
Code: [Select]
[+special:strings]
Actions=Acciones
All=Todo
Archive=Archivar
Back=Atrás
Bytes=B
Cancel=Cancelar
Change password=Cambiar contraseña
Comment=Comentarios
Delete=Eliminar
Download limit=Límite de descarga
Downloading=Descargando
Either your user name and password do not match, or you are not permitted to access this resource.=Su nombre de usuario y contraseña son incorrectos, o no tiene permitido el acceso a este recurso.
Enter the destination folder=Ingrese la carpeta de destino
Error=Error
Folder1=Carpeta
Forbidden=Prohibido
Get list=Listado
HFS=HFS
Hits=Accesos
Home=Inicio
Invert=Invertir
Login=Ingresar
Mask=Filtrar
Messages=Mensajes
Move=Mover
Moving items to=Moviendo a
Name=Nombre
New folder=Nueva carpeta
No file exchange in progress.=No hay subidas o bajadas de archivos en curso.
No file selected=Ningún archivo fue seleccionado
No file was moved.=Ningún archivo fue movido.
No pages=Mostrar todo
Not found=No encontrado
Page=Página
Paged list=Listar páginas
Password changed, you'll have to login again.=Contraseña cambiada, deberá ingresar nuevamente.
Please enter the file mask to select=Ingrese un filtro para seleccionar archivos
Rename=Renombrar
Search=Buscar
Select=Seleccionar
Server Too Busy=Servidor muy ocupado
Server information=Información del servidor
Server time=Hora del servidor
Server uptime=Tiempo activo
Size=Tamaño
The server is too busy to handle your request at this time. Retry later=El servidor está demasiado ocupado para aceptar su solicitud en este momento. Reintente más tarde
This resource is not accessible.=Este recurso no es accesible.
Timestamp=Fecha y hora
Time left=Tiempo restante
Unauthorized=No autorizado
Up=Arriba
Upload results=Resultados de subida
Upload=Subir
Uploading=Subiendo
User=Usuario
We met the following problems:=Encontramos los siguientes problemas:
Where to search=Dónde buscar
You are banned=Has sido expulsado
.extension=.extensión
already exists=ya existe
bad session=mala sesión
confirm=¿Está usted seguro?
created folder=crear carpeta
entire server=todo el servidor
exists=existe
failed=falló
files failed=archivo/s fallaron
files uploaded correctly.=archivo/s subidos correctamente.
files were moved.=archivo/s fueron movidos.
files=archivos
folder2=carpeta
folders=carpetas
forbidden=Prohibido
go to root=Ir al inicio
go=Ir
in progress...=en progreso...
item folder=en carpeta
items selected=elementos seleccionados
link=enlace
max s dl msg=Existe un límite en el número de descargas <b>simultáneas</b> en este servidor.<br>Ese límite ha sido alcanzado. Intente nuevamente más tarde.
not authorized=no autorizado
no files=No hay archivos en esta carpeta
not found=no encontrado
no results=No hay elementos que coincidan con su búsqueda
ok=Aceptar
renamed=ha renombrado
retry later=Por favor, intente otra vez más tarde.
this folder and sub-folders=ésta carpeta y subcarpetas
this folder only=ésta carpeta unicamente
to=a
uploaded by=subido por
@Rejetto: Currently, the following strings can't be translated:

Login=Ingresar
MBytes=Megas
Ok=Aceptar
items selected=elementos seleccionados
(and the text 'folder' (in italics), located below 'Size', also can't be translated)

Do you know how to translate them?...

Thank you! :D

480
Pусский / Re: Шаблон для HFS puro
« on: April 30, 2017, 04:10:13 AM »
Вопрос #1 - почему шаблон тупо не работает? Папка HFS в корне системного диска, папка puro в папке HFS, настройки сброшены в дефолт и при попытке открыть - хрень, будто нет ни таблиц ни настроек.
Она неполная. Этот шаблон не закончена.
It's incomplete. This template is not finished.

Pages: 1 ... 30 31 32 33 34 ... 56