Skip to content

Commit 64a559a

Browse files
committed
hook, some file/io
1 parent b97bb30 commit 64a559a

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

locale/es-419/meta.lua

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -329,37 +329,37 @@ debug.upvaluejoin =
329329
'Hace que el `n1`-ésimo valor anterior de la clausura de Lua `f1` se refiera a el `n2`-ésimo valor anterior de la clausura de Lua `f2`.'
330330

331331
infowhat.n =
332-
'`name` and `namewhat`'
332+
'`name` y `namewhat`'
333333
infowhat.S =
334-
'`source`, `short_src`, `linedefined`, `lastlinedefined`, and `what`'
334+
'`source`, `short_src`, `linedefined`, `lastlinedefined`, y `what`'
335335
infowhat.l =
336336
'`currentline`'
337337
infowhat.t =
338338
'`istailcall`'
339339
infowhat.u['<5.1'] =
340340
'`nups`'
341341
infowhat.u['>5.2'] =
342-
'`nups`, `nparams`, and `isvararg`'
342+
'`nups`, `nparams`, y `isvararg`'
343343
infowhat.f =
344344
'`func`'
345345
infowhat.r =
346-
'`ftransfer` and `ntransfer`'
346+
'`ftransfer` y `ntransfer`'
347347
infowhat.L =
348348
'`activelines`'
349349

350350
hookmask.c =
351-
'Calls hook when Lua calls a function.'
351+
'Llama al hook cuando se llama a una función desde Lua.'
352352
hookmask.r =
353-
'Calls hook when Lua returns from a function.'
353+
'Llama al hook cuand se retorna de una función desde Lua.'
354354
hookmask.l =
355-
'Calls hook when Lua enters a new line of code.'
355+
'Llama al hook cuand se entra a una nueva línea de código desde Lua.'
356356

357357
file =
358358
''
359359
file[':close'] =
360-
'Close `file`.'
360+
'Cierra el archivo `file`.'
361361
file[':flush'] =
362-
'Saves any written data to `file`.'
362+
'Guarda la data escrita al archivo `file`.'
363363
file[':lines'] =
364364
[[
365365
------
@@ -370,29 +370,30 @@ end
370370
```
371371
]]
372372
file[':read'] =
373-
'Reads the `file`, according to the given formats, which specify what to read.'
373+
'Lee el archivo `file`, de acuerdo a los formatos provistos, los cuales especifican qué leer.'
374374
file[':seek'] =
375-
'Sets and gets the file position, measured from the beginning of the file.'
375+
'Fija y obtiene la posición del archivo, a contar del principio del archivo.'
376376
file[':setvbuf'] =
377-
'Sets the buffering mode for an output file.'
377+
'Fija el modo de buffer para un archivo de salida.'
378378
file[':write'] =
379-
'Writes the value of each of its arguments to `file`.'
379+
'Escribe el valor de cada uno de sus argumentos al archivo`file`.'
380380

381381
readmode.n =
382-
'Reads a numeral and returns it as number.'
382+
'Lee un numeral y lo devuelve como un número.'
383383
readmode.a =
384-
'Reads the whole file.'
384+
'Lee todo el archivo.'
385385
readmode.l =
386-
'Reads the next line skipping the end of line.'
386+
'Lee la siguiente línea, saltándose el fin-de-línea.'
387387
readmode.L =
388-
'Reads the next line keeping the end of line.'
388+
'Lee la siguiente línea, manteniendo el fin-de-línea.'
389389

390390
seekwhence.set =
391-
'Base is beginning of the file.'
391+
'Sitúa la posición base está al inicio del archivo.'
392392
seekwhence.cur =
393-
'Base is current position.'
393+
'Sitúa la posición base en la actual.'
394+
394395
seekwhence['.end'] =
395-
'Base is end of file.'
396+
'Sitúa la posición base al final del archivo.'
396397

397398
vbuf.no =
398399
'Output operation appears immediately.'

0 commit comments

Comments
 (0)