You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: locale/es-419/meta.lua
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -880,5 +880,5 @@ utf8.len =
880
880
'Retorna el número de caracteres en UTF-8 en el string `s` que empiezan entre las posiciones `i` y `j` (ambos inclusive).'
881
881
utf8.offset=
882
882
'Retorna la posición en bytes donde la codificación del caracter `n`-ésimo de `s` empieza, contado a partir de la posición `i`.'
883
-
utf8.offset[55] =-- TODO: need translate!
884
-
'Returns the position of the n-th character of s (counting from byte position i) as two integers: The index (in bytes) where its encoding starts and the index (in bytes) where it ends.'
883
+
utf8.offset[55] =
884
+
'Retorna la posición del carácter número `n` de `s` (contando desde la posición de byte `i`) como dos enteros: el índice (en bytes) donde empieza su codificación y el índice (en bytes) donde termina.'
'Returns the position of the n-th character of s (counting from byte position i) as two integers: The index (in bytes) where its encoding starts and the index (in bytes) where it ends.'
config.addonRepositoryPath=-- TODO: need translate!
10
-
"Specifies the addon repository path (not related to the addon manager)."
11
-
config.runtime.version=-- TODO: need translate!
12
-
"Lua runtime version."
13
-
config.runtime.path=-- TODO: need translate!
9
+
config.addonRepositoryPath=
10
+
"アドオンのリポジトリパスを指定します(アドオンマネージャーとは無関係です)。"
11
+
config.runtime.version=
12
+
"Lua のランタイムバージョン。"
13
+
config.runtime.path=
14
14
[[
15
-
When using `require`, how to find the file based on the input name.
16
-
Setting this config to `?/init.lua` means that when you enter `require 'myfile'`, `${workspace}/myfile/init.lua` will be searched from the loaded files.
17
-
if `runtime.pathStrict` is `false`, `${workspace}/**/myfile/init.lua` will also be searched.
18
-
If you want to load files outside the workspace, you need to set `Lua.workspace.library` first.
config.diagnostics.workspaceEvent=-- TODO: need translate!
91
-
"Set the time to trigger workspace diagnostics."
92
-
config.diagnostics.workspaceEvent.OnChange=-- TODO: need translate!
93
-
"Trigger workspace diagnostics when the file is changed."
94
-
config.diagnostics.workspaceEvent.OnSave=-- TODO: need translate!
95
-
"Trigger workspace diagnostics when the file is saved."
96
-
config.diagnostics.workspaceEvent.None=-- TODO: need translate!
97
-
"Disable workspace diagnostics."
98
-
config.diagnostics.workspaceDelay=-- TODO: need translate!
99
-
"Latency (milliseconds) for workspace diagnostics."
100
-
config.diagnostics.workspaceRate=-- TODO: need translate!
101
-
"Workspace diagnostics run rate (%). Decreasing this value reduces CPU usage, but also reduces the speed of workspace diagnostics. The diagnosis of the file you are currently editing is always done at full speed and is not affected by this setting."
102
-
config.diagnostics.libraryFiles=-- TODO: need translate!
103
-
"How to diagnose files loaded via `Lua.workspace.library`."
104
-
config.diagnostics.libraryFiles.Enable=-- TODO: need translate!
105
-
"Always diagnose these files."
106
-
config.diagnostics.libraryFiles.Opened=-- TODO: need translate!
107
-
"Only when these files are opened will it be diagnosed."
108
-
config.diagnostics.libraryFiles.Disable=-- TODO: need translate!
109
-
"These files are not diagnosed."
110
-
config.diagnostics.ignoredFiles=-- TODO: need translate!
111
-
"How to diagnose ignored files."
112
-
config.diagnostics.ignoredFiles.Enable=-- TODO: need translate!
113
-
"Always diagnose these files."
114
-
config.diagnostics.ignoredFiles.Opened=-- TODO: need translate!
115
-
"Only when these files are opened will it be diagnosed."
116
-
config.diagnostics.ignoredFiles.Disable=-- TODO: need translate!
117
-
"These files are not diagnosed."
118
-
config.diagnostics.disableScheme=-- TODO: need translate!
119
-
'Do not diagnose Lua files that use the following scheme.'
120
-
config.diagnostics.validScheme=-- TODO: need translate!
121
-
'Enable diagnostics for Lua files that use the following scheme.'
122
-
config.diagnostics.unusedLocalExclude=-- TODO: need translate!
123
-
'Do not diagnose `unused-local` when the variable name matches the following pattern.'
124
-
config.workspace.ignoreDir=-- TODO: need translate!
125
-
"Ignored files and directories (Use `.gitignore` grammar)."-- .. example.ignoreDir,
126
-
config.workspace.ignoreSubmodules=-- TODO: need translate!
127
-
"Ignore submodules."
128
-
config.workspace.useGitIgnore=-- TODO: need translate!
129
-
"Ignore files list in `.gitignore` ."
130
-
config.workspace.maxPreload=-- TODO: need translate!
131
-
"Max preloaded files."
90
+
config.diagnostics.workspaceEvent=
91
+
"ワークスペース診断をトリガーするタイミングを設定します。"
92
+
config.diagnostics.workspaceEvent.OnChange=
93
+
"ファイルが変更されたときにワークスペース診断をトリガーします。"
94
+
config.diagnostics.workspaceEvent.OnSave=
95
+
"ファイルが保存されたときにワークスペース診断をトリガーします。"
96
+
config.diagnostics.workspaceEvent.None=
97
+
"ワークスペース診断を無効にします。"
98
+
config.diagnostics.workspaceDelay=
99
+
"ワークスペース診断の待ち時間(ミリ秒)。"
100
+
config.diagnostics.workspaceRate=
101
+
"ワークスペース診断の実行レート(%)。この値を下げると CPU 使用率は低下しますが、ワークスペース診断の速度も低下します。現在編集中のファイルの診断は常に全速で行われ、この設定の影響を受けません。"
Copy file name to clipboardExpand all lines: locale/pt-br/meta.lua
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -881,5 +881,5 @@ utf8.len =
881
881
'Retorna o número de caracteres UTF-8 na string `s` que começa entre as posições `i` e `j` (ambos inclusos).'
882
882
utf8.offset=
883
883
'Retorna a posição (em bytes) onde a codificação do `n`-ésimo caractere de `s` inícia (contando a partir da posição `i`).'
884
-
utf8.offset[55] =-- TODO: need translate!
885
-
'Returns the position of the n-th character of s (counting from byte position i) as two integers: The index (in bytes) where its encoding starts and the index (in bytes) where it ends.'
884
+
utf8.offset[55] =
885
+
'Retorna a posição do n-ésimo caractere de `s` (contando a partir da posição de byte `i`) como dois inteiros: o índice (em bytes) onde sua codificação começa e o índice (em bytes) onde ela termina.'
'Returns the position of the n-th character of s (counting from byte position i) as two integers: The index (in bytes) where its encoding starts and the index (in bytes) where it ends.'
'Returns the position of the n-th character of s (counting from byte position i) as two integers: The index (in bytes) where its encoding starts and the index (in bytes) where it ends.'
0 commit comments