forked from terreng/simple-web-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang.js
569 lines (568 loc) · 61.3 KB
/
lang.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
languages = {
"en": "English",
"ru": "Русский",
"zh_CN": "简体中文",
"ja": "日本語"
}
lang = {
"en": {
"settings": "Settings",
"stop_and_quit": "Stop & Quit",
"new_server": "New Server",
"delete_server": "Delete Server",
"delete_server_confirm": "Delete server?",
"delete_server_confirm_description": "This action cannot be undone.",
"prompt_confirm": "Confirm",
"cancel": "Cancel",
"save_changes": "Save Changes",
"get_started": "Get Started",
"prompt_done": "Done",
"back": "Back",
"help": "Help",
"setting_language": "Language",
"help_us_translate": "Help us translate",
"setting_background": "Keep running when closed",
"setting_background_description": "When enabled, the app will continue to run web servers in the background even when the window is closed. To stop the program while this option is enabled, click the \"Stop & Quit\" button.",
"setting_tray": "Show icon in system tray/menu bar",
"setting_tray_macos": "Show icon in menu bar",
"setting_tray_windows": "Show icon in system tray",
"setting_tray_description": "When enabled, adds a shortcut icon to the system tray or menu bar area whenever Simple Web Server is running.",
"setting_updates": "Check for updates",
"setting_updates_description": "Periodically check if there is a new version of the app available. Updates are not automatically installed.",
"setting_theme": "Appearance",
"setting_theme_description": "Change appearance (light/dark theme). By default the app follows your system theme.",
"setting_theme_system": "Automatic (System)",
"setting_theme_light": "Light",
"setting_theme_dark": "Dark",
"setting_plugins": "Plugins",
"setting_plugins_description": "Plugins allow you to further modify your web servers beyond the options that are available in the app. <a href='https://simplewebserver.org/docs/plugins.html'>Learn more about plugins.</a><br><br>To install a plugin, click \"Add Plugin\" and then choose a directory or ZIP file. After installing a plugin, you must specifically enable it for each server you want to use it with.<br><br>Plugins aren't sandboxed, and run with the same permissions as the app. Only install a plugin if you know and trust the developer.",
"add_plugin": "Add Plugin",
"plugin_choose_folder": "Choose folder",
"plugin_choose_zip": "Choose .zip file",
"add_plugin_confirm": "Add \"[NAME]\" plugin?",
"add_plugin_confirm_description": "Only install this plugin if you know and trust the developer.<br><br>Plugins aren't sandboxed, and run with the same permissions as the app.",
"add_plugin_failed": "Failed to install plugin",
"add_plugin_invalid": "Invalid plugin",
"add_plugin_failed_description": "We couldn't find a valid <code>plugin.json</code> file in the directory or ZIP file you selected.",
"remove_plugin": "Remove plugin",
"remove_plugin_confirm": "Remove \"[NAME]\" plugin?",
"remove_plugin_confirm_description": "All server options for this plugin will be cleared. If you want to update the plugin without resetting server options, just add the new version of the plugin instead of removing it first.",
"edit_server": "Edit Server",
"add_server": "Add Server",
"create_server": "Create Server",
"option_path": "Folder path",
"option_path_description": "Directory to serve files from. If the directory is within a hidden folder, then make sure to enable <a href='https://simplewebserver.org/docs/options.html#serve-hidden-dot-files'>Serve hidden/dot files</a>.",
"choose_folder": "Choose folder",
"path_missing": "Please choose folder path",
"option_port": "Port",
"option_port_description": "A number between 1 - 65535. Port that the local web server is accessible on. Access the website at <code>http://localhost:[PORT]</code>.",
"port_invalid": "Enter a number between 1 and 65535",
"port_in_use": "Port is already in use",
"option_localnetwork": "Accessible on local network",
"option_localnetwork_description": "Makes the web server accessible over LAN to other computers on the network. Access it from another computer using the host computer's local IP address and the specified port. The LAN IP address will appear under web server URLs.<br><br>Enabling this option requires local network access. You may see a firewall permission prompt when enabling this option, and you must allow access in order for the web server to work over LAN.",
"option_localnetwork_abbreviation": "LAN",
"section_basic_rules": "Basic Rules",
"option_showIndex": "Automatically show index.html",
"option_showIndex_description": "When no file path is specified, automatically serve <code>index.html</code> (if it exists).",
"option_spa": "Single page rewrite (for SPAs)",
"option_spa_description": "Automatically rewrite all paths that don't exist to a single page. For <a href='https://developer.mozilla.org/en-US/docs/Glossary/SPA'>Single Page Applications</a>.",
"option_rewriteTo": "Rewrite to (for SPAs)",
"option_rewriteTo_description": "If the Single page rewrite option is enabled, specify what file to rewrite to. For <a href='https://developer.mozilla.org/en-US/docs/Glossary/SPA'>Single Page Applications</a>.",
"option_directoryListing": "Show directory listing",
"option_directoryListing_description": "Show a list of files in the specified directory instead of a 404 page.",
"option_excludeDotHtml": "Exclude .html extension",
"option_excludeDotHtml_description": "Exclude .htm and .html extensions from URLs. For example, <code>/example.html</code> will redirect to <code>/example</code>. If a file exists at the path without an extension, the HTML file will still be rendered instead.",
"section_advanced_rules": "Advanced Rules",
"option_ipv6": "Listen on IPV6",
"option_ipv6_description": "Listen over IPV6 instead of the default, which is IPV4. This will change the web server URL(s) to be IPV6 instead of IPV4, however some IPV4 addresses will remain functional when LAN is enabled.",
"option_ipv6_abbreviation": "IPV6",
"option_cacheControl": "Cache-Control header value",
"option_cacheControl_description": "Optionally specify a custom <code>Cache-Control</code> HTTP header value. <a href='https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control'>Learn more about the Cache-Control header.</a>",
"option_cors": "Set CORS headers",
"option_cors_description": "Allow cross origin requests. Sets <code>Access-Control-Allow-Origin</code> header to <code>*</code>, <code>Access-Control-Allow-Methods</code> to <code>GET, POST, PUT, DELETE</code>, and <code>Access-Control-Max-Age</code> to <code>120</code>. <a href='https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS'>Learn more about Cross-Origin Resource Sharing.</a>",
"option_hiddenDotFiles": "Serve hidden/dot files",
"option_hiddenDotFiles_description": "Allow requesting hidden/dot files. These are files or folders with names that begin with a <code>.</code> character.",
"option_upload": "Allow file upload",
"option_upload_description": "Allows PUT/POST requests. Includes hidden/dot files if they are enabled.",
"option_replace": "Allow replacing files",
"option_replace_description": "If file upload is enabled, allows replacing files that already exist. Includes hidden/dot files if they are enabled.",
"option_delete": "Allow deleting files",
"option_delete_description": "Allows DELETE requests. Includes hidden/dot files if they are enabled.",
"option_staticDirectoryListing": "Always use static directory listing",
"option_staticDirectoryListing_description": "Disables JavaScript enhancement of the directory listing page.",
"option_hiddenDotFilesDirectoryListing": "Show hidden/dot files in directory listing",
"option_hiddenDotFilesDirectoryListing_description": "If hidden/dot files are enabled, determines if they will additionally be shown in the directory listing. This includes <code>.swshtaccess</code> files.",
"option_precompression": "Serve precompressed .gz and .br files",
"option_precompression_description": "Check for and serve precompressed versions of files stored in the same directory with .gz or .br appended to the file extension. Supports Gzip and/or Brotli compression. For example, if a request is made for <code>example.txt</code>, the server will first check for <code>example.txt.gz</code> or <code>example.txt.br</code> and serve those if they exist and if the client indicates it supports that compression method via the <code>Accept-Encoding</code> header.",
"option_htaccess": "Enable .swshtaccess configuration files",
"option_htaccess_description": "You can use <code>.swshtaccess</code> files to set additional rules on a per-directory basis. See <a href='https://simplewebserver.org/docs/swsaccess.html'>Advanced configuration using .swshtaccess files</a>.<br><br>This functionality is experimental and may change in future releases. Consider using <a href='https://simplewebserver.org/docs/plugins.html'>plugins</a> instead.",
"section_error_pages": "Error Pages",
"option_custom404": "Custom 404 page file path",
"option_custom404_description": "File path to a custom 404 page. Will fallback to a generic 404 page if this value is empty or specified path is not valid.",
"option_custom403": "Custom 403 page file path",
"option_custom403_description": "File path to a custom 403 page. Will fallback to a generic 403 page if this value is empty or specified path is not valid.",
"option_custom401": "Custom 401 page file path",
"option_custom401_description": "File path to a custom 401 page. Will fallback to a generic 401 page if this value is empty or specified path is not valid.",
"option_customErrorReplaceString": "Custom error path variable",
"option_customErrorReplaceString_description": "Optionally specify a custom string that will be looked for in your error pages and replaced with the current path. For example, if your custom 404 page included: <code>The file at {{PATH}} does not exist</code> and you set this option to <code>{{PATH}}</code>, when your custom page is served it would say <code>The file at /example.txt does not exist</code>.",
"section_security": "Security",
"option_https": "Use HTTPS",
"option_https_description": "Make server accessible over a secure connection (https) instead of http. Uses the same single port, so you cannot use both http and https at the same time. See <a href='https://simplewebserver.org/docs/https.html'>Using HTTPS</a>.",
"option_https_abbreviation": "HTTPS",
"option_httpsCert": "SSL/TLS certificate",
"option_httpsCert_description": "Optionally override this option to provide a custom HTTPS certificate. See <a href='https://simplewebserver.org/docs/https.html'>Using HTTPS</a>.",
"option_httpsKey": "SSL/TLS private key",
"option_httpsKey_description": "Optionally override this option to provide a custom HTTPS private key. See <a href='https://simplewebserver.org/docs/https.html'>Using HTTPS</a>.",
"generate_crypto": "Generate dummy cert",
"generate_crypto_overwrite": "Overwrite certificate and private key?",
"generate_crypto_overwrite_description": "A certificate and private key already exist. This action will overwrite them.",
"option_httpAuth": "Enable HTTP Basic authentication",
"option_httpAuth_description": "Require authentication using the HTTP Basic authentication protocol. Specify a username and password in the HTTP Basic auth username and HTTP Basic auth password options. If either the username or password option is missing or invalid, the web server will become inaccessible.",
"option_httpAuthUsername": "HTTP Basic auth username",
"option_httpAuthUsername_description": "Username for HTTP Basic authentication. Cannot contain a colon (<code>:</code>) character or control characters.",
"httpAuthUsername_invalid": "Username cannot contain <code>:</code> or control characters",
"httpAuthPassword_invalid": "Password cannot contain control characters",
"option_httpAuthPassword": "HTTP Basic auth password",
"option_httpAuthPassword_description": "Password for HTTP Basic authentication. Stored in plain text. Cannot contain control characters.",
"option_ipThrottling": "Maximum connections per IP address",
"option_ipThrottling_description": "Limits the number of incoming connections per IP address. Set to 0 for unlimited connections.",
"ipThrottling_invalid": "Enter a number greater than or equal to 0",
"state_stopped": "Stopped",
"state_starting": "Starting...",
"state_running": "Running",
"state_error": "Error",
"update_available": "An updated version of Simple Web Server is available",
"enabled_switch": "Enabled",
"no_servers": "You haven't created any servers yet",
"error_port_in_use": "Port in use",
"error_port_in_use_description": "Web server failed to start because port [PORT] is already in use by another program.",
"error_file_system": "File system error",
"error_plugins": "Error starting plugins",
"error_generic": "Error",
"version": "Version",
"documentation": "Documentation",
"issues_and_suggestions": "Issues & Suggestions",
"web_server_url": "Web server URL",
"ignore_update": "Ignore this update"
},
"ru": {
"settings": "Настройки",
"stop_and_quit": "Остановить и выйти",
"new_server": "Новый север",
"delete_server": "Удалить сервер",
"delete_server_confirm": "Удалить сервер?",
"delete_server_confirm_description": "Это будет не отменить.",
"prompt_confirm": "Подтвердить",
"cancel": "Отменить",
"save_changes": "Сохранить изменения",
"get_started": "Начнём",
"prompt_done": "Готово",
"back": "Назад",
"help": "Помощь",
"setting_language": "Язык",
"help_us_translate": "Помогите с переводом",
"setting_background": "Оставить запущенным при закрытии",
"setting_background_description": "Это приложение продолжит работать в фоне даже если его окно закрыто. Чтобы остановить программу нажмите кнопку \"Остановить и выйти\".",
"setting_tray": "Показывать значок в трее или меню",
"setting_tray_macos": "Показывать значок в меню",
"setting_tray_windows": "Показывать значок в трее",
"setting_tray_description": "В области уведомлений будет оказываться значок если Simple Web Server запущен.",
"setting_updates": "Проверять обновления",
"setting_updates_description": "Периодически проверять обновления. Они не будут установлены автоматически.",
"setting_theme": "Внешний вид",
"setting_theme_description": "Изменить тему оформления (светлая или тёмная). По умолчанию используется системная.",
"setting_theme_system": "Автоматически как в системе",
"setting_theme_light": "Светлая",
"setting_theme_dark": "Тёмная",
"setting_plugins": "Дополнения",
"setting_plugins_description": "Плагины позволяют расширять функциональность веб сервера. <a href='https://simplewebserver.org/docs/plugins.html'>Узнать больше про плагины.</a><br><br>Чтобы установить плагин нажмите \"Добавить плагин\" и выберите папку с плагином или его файл ZIP. После установки плагина его следует явно включить чтобы начать использовать.<br><br>Плагины не изолированы и запускаются с теми же разрешениями что и сам веб сервер. Устанавливайте плагин только если доверяете его разработчику.",
"add_plugin": "Добавить плагин",
"plugin_choose_folder": "Выберете папку",
"plugin_choose_zip": "Выберете файл .zip",
"add_plugin_confirm": "Добавить плагин \"[NAME]\"?",
"add_plugin_confirm_description": "Устанавливайте плагины только от тех кому доверяете.<br><br>Плагины не изолированы и имеют тот же доступ что и это приложение.",
"add_plugin_failed": "Не удалось установить плагин",
"add_plugin_invalid": "Неправильный плагин",
"add_plugin_failed_description": "В папке или ZIP файле плагина не найдено описание плагина <code>plugin.json</code>.",
"remove_plugin": "Удалить плагин",
"remove_plugin_confirm": "Удалить плагин \"[NAME]\"?",
"remove_plugin_confirm_description": "Все настройки этого плагина будут удалены. Если вы просто хотите обновить тогда добавьте новую версию плагина не удаляя его старую версию",
"edit_server": "Изменить сервер",
"add_server": "Добавить сервер",
"create_server": "Создать сервер",
"option_path": "Путь к папке",
"option_path_description": "Папка в которой лежат файлы самого сайта. Если сама папка внутри скрытой папки тогда убедитесь что включили опцию <a href='https://simplewebserver.org/docs/options.html#serve-hidden-dot-files'>Показывать скрытые файлы</a>.",
"choose_folder": "Выберете папку",
"path_missing": "Пожалуйста выберете путь к папке",
"option_port": "Порт",
"option_port_description": "Номер от 1 до 65535. Открыть в браузере сайт можно будет по адресу <code>http://localhost:[ПОРТ]</code>.",
"port_invalid": "Выберете порт в диапазоне от 1 до 65535",
"port_in_use": "Порт уже занят",
"option_localnetwork": "Доступен из локальной сети",
"option_localnetwork_description": "Делает этот веб сервер доступным для других компьютеров в локальной сети. Открыть из другого компьютера можно по локальному IP адресу и указанному порт. Этот локальный IP адрес показан в списке адресов веб сервера.<br><br>Включение этой опции требует доступа по локальной сети. Ваш фаервол запросит подтверждение и вам следует разрешить это.",
"option_localnetwork_abbreviation": "LAN",
"section_basic_rules": "Основные правила",
"option_showIndex": "Показывать index.html",
"option_showIndex_description": "Если конкретный файл в папке не указан то автоматически показывать <code>index.html</code> (если он существует).",
"option_spa": "Перенаправлять запросы для одностраничных сайтов SPA",
"option_spa_description": "Автоматически перенаправлять все пути которые не существую на единую страницу SPA. Подробнее <a href='https://ru.wikipedia.org/wiki/Одностраничное_приложение'>Одностраничное приложение</a>.",
"option_rewriteTo": "Перенаправлять запросы на эту страницу",
"option_rewriteTo_description": "Если перенаправление для одностраничных сайтов SPA включено то укажите страницу куда перенаправлять.",
"option_directoryListing": "Показывать файлы в папке",
"option_directoryListing_description": "Показывать список файлов в указаной папке вместо страницы 404й ошибки.",
"option_excludeDotHtml": "Убирать расширение .html",
"option_excludeDotHtml_description": "Убирать из URL расширение .htm и .html файлов. Например, <code>/example.html</code> будет перенаправлен нао <code>/example</code>. Даже если существует такой файл без расширения т.е. <code>example</code> то всё равно будет показан HTML файл <code>example.html</code>.",
"section_advanced_rules": "Расширенные правила",
"option_ipv6": "Слушать на IPV6 адресе",
"option_ipv6_description": "Использовать IPV6 вместо IPV4. Это изменит URL веб сервера.",
"option_ipv6_abbreviation": "IPV6",
"option_cacheControl": "Значение для заголовка Cache-Control",
"option_cacheControl_description": "Значение для заголовка <a href='https://developer.mozilla.org/ru/docs/Web/HTTP/Headers/Cache-Control'>Cache-Control</a>.",
"option_cors": "Установить заголовки CORS",
"option_cors_description": "Разрешить <a href='https://developer.mozilla.org/ru/docs/Web/HTTP/CORS'>межсайтовые запросы</a>. Устанавливает заголовок <code>Access-Control-Allow-Origin</code> в значение <code>*</code>, <code>Access-Control-Allow-Methods</code> в <code>GET, POST, PUT, DELETE</code>, и <code>Access-Control-Max-Age</code> на <code>120</code> секунд.",
"option_hiddenDotFiles": "Показывать скрытые файлы",
"option_hiddenDotFiles_description": "Позволяет просматривать скрытые файлы чьих название начинается с точки <code>.</code>.",
"option_upload": "Разрешить загрузку файлов",
"option_upload_description": "Позволяет запросы PUT/POST для загрузки или изменения файлов.",
"option_replace": "Разрешить перетирание файлов",
"option_replace_description": "Если загрузка файлов разрешена то позволяет перетирать файлы которые уже существуют.",
"option_delete": "Разрешить удаление файлов",
"option_delete_description": "Разрешить запросы DELETE для удаления файлов.",
"option_staticDirectoryListing": "Использовать чисто статический HTML для листинга папок",
"option_staticDirectoryListing_description": "Убирает JavaScript улучшения для сгенерированных страниц с списком файлов в папке.",
"option_hiddenDotFilesDirectoryListing": "Показывать скрытые файлы в листинге папок",
"option_hiddenDotFilesDirectoryListing_description": "Если показ скрытых файлов включен то они также будут отображены в листинге папок. Это включает также и файлы <code>.swshtaccess</code>.",
"option_precompression": "Serve precompressed .gz and .br files",
"option_precompression_description": "Check for and serve precompressed versions of files stored in the same directory with .gz or .br appended to the file extension. Supports Gzip and/or Brotli compression. For example, if a request is made for <code>example.txt</code>, the server will first check for <code>example.txt.gz</code> or <code>example.txt.br</code> and serve those if they exist and if the client indicates it supports that compression method via the <code>Accept-Encoding</code> header.",
"option_htaccess": "Включить файлы конфигурации папок .swshtaccess",
"option_htaccess_description": "Вы можете использовать файлы <code>.swshtaccess</code> чтобы установить правила конкретным папкам. Подробнее в <a href='https://simplewebserver.org/docs/swsaccess.html'>Продвинтуая конфигурация с помощью файла .swshtaccess</a>.<br><br>Эта функциональность экспериментальная и может менятся в будущих версиях.",
"section_error_pages": "Страницы ошибок",
"option_custom404": "Страница ошибки 404",
"option_custom404_description": "*.html файл со страницей 404 page. Если файла нет то будет использоваться стандартная по умолчанию",
"option_custom403": "Страница ошибки 403",
"option_custom403_description": "*.html файл со страницей 403 page. Если файла нет то будет использоваться стандартная по умолчанию",
"option_custom401": "Страница ошибки 401",
"option_custom401_description": "*.html файл со страницей 401 page. Если файла нет то будет использоваться стандартная по умолчанию",
"option_customErrorReplaceString": "Переменная окружения с файлом",
"option_customErrorReplaceString_description": "Опционально укажите строку вместо которой следует вставить текущий путь к файлу на котором возникла ошибка. Например, если в странице 404 написано: <code>Файл {{PATH}} не существует</code> и вы установили эту опцию в <code>{{PATH}}</code>, тогда в пользователь увидит <code>Файл /example.txt не существует</code>.",
"section_security": "Безопасность",
"option_https": "Использовать HTTPS",
"option_https_description": "Использовать безопасное шифрованное соединение HTTPS вместо HTTP. Использует тот-же порт поэтому вы не можете одновременно использовать HTTP и HTTPS. Подробнее про <a href='https://simplewebserver.org/docs/https.html'>Использование HTTPS</a>.",
"option_https_abbreviation": "HTTPS",
"option_httpsCert": "SSL/TLS сертификат",
"option_httpsCert_description": "Если вы хотите использовать существующий сертификат HTTPS то вставьте его текст сюда. Подробнее про <a href='https://simplewebserver.org/docs/https.html'>Использование HTTPS</a>.",
"option_httpsKey": "SSL/TLS приватный ключ",
"option_httpsKey_description": "Если вы хотите использовать существующий приватный ключ HTTPS то вставьте его текст сюда. Подробнее про <a href='https://simplewebserver.org/docs/https.html'>Использование HTTPS</a>.",
"generate_crypto": "Сгенерировать сертификат-заглушку",
"generate_crypto_overwrite": "Перетереть сертификат и приватный ключ?",
"generate_crypto_overwrite_description": "Уже есть сертификат и приватный ключ. Это действие перетрёт их.",
"option_httpAuth": "Включить HTTP Basic авторизацию",
"option_httpAuth_description": "Требовать <a href='https://developer.mozilla.org/ru/docs/Web/HTTP/Authentication'>HTTP Basic авторизацию</a>.",
"option_httpAuthUsername": "Имя пользователя HTTP Basic авторизации",
"option_httpAuthUsername_description": "Имя пользователя для HTTP Basic авторизации. Не может содержать двоеточия (<code>:</code>).",
"httpAuthUsername_invalid": "Имя пользователя не может содержать <code>:</code>",
"httpAuthPassword_invalid": "Password cannot contain control characters",
"option_httpAuthPassword": "Пароль HTTP Basic авторизации",
"option_httpAuthPassword_description": "Пароль для HTTP Basic авторизации. Хранится в чистом виде.",
"option_ipThrottling": "Предел соединений по IP адресу",
"option_ipThrottling_description": "Ограничить количество входящих соединений по IP адресу. Установите в 0 если неограничено.",
"ipThrottling_invalid": "Должно быть 0 если неограничено или больше ноля",
"state_stopped": "Остановлено",
"state_starting": "Запуск...",
"state_running": "Запущено",
"state_error": "Ошибка",
"update_available": "Вышла новая версия Simple Web Server",
"enabled_switch": "Включено",
"no_servers": "Вы ещё не создали северов",
"error_port_in_use": "Порт уже занят",
"error_port_in_use_description": "Веб сервер не смог запуститься поскольку порт [PORT] уже занят другой программой.",
"error_file_system": "Ошибка файловой системы",
"error_plugins": "Ошибка при запуске плагинов",
"error_generic": "Ошибка",
"version": "Версия",
"documentation": "Документация",
"issues_and_suggestions": "Проблемы и предложения",
"web_server_url": "URL вебсервера",
"ignore_update": "Пропустить обновление"
},
"zh_CN": {
"settings": "设置",
"stop_and_quit": "停止并退出",
"new_server": "新服务",
"delete_server": "删除服务",
"delete_server_confirm": "删除此服务吗?",
"delete_server_confirm_description": "此操作无法撤消。",
"prompt_confirm": "确认",
"cancel": "取消",
"save_changes": "保存更改",
"get_started": "开始使用",
"prompt_done": "知道了",
"back": "返回",
"help": "帮助",
"setting_language": "语言",
"help_us_translate": "帮助我们翻译",
"setting_background": "保持后台运行",
"setting_background_description": "启用后,即使窗口关闭,应用程序也将继续在后台运行Web服务器。要在启用此选项时停止程序,请单击\"停止并退出\"按钮。",
"setting_tray": "在系统托盘/菜单栏中显示图标",
"setting_tray_macos": "在菜单栏中显示图标",
"setting_tray_windows": "在系统托盘中显示图标",
"setting_tray_description": "启用后,运行Simple Web Server时,会在系统托盘或菜单栏区域中显示图标。",
"setting_updates": "更新检查",
"setting_updates_description": "定期检查是否有新版本可用。不会自动安装更新。",
"setting_theme": "外观",
"setting_theme_description": "更改外观(浅/深色主题)。默认跟随系统主题。",
"setting_theme_system": "自动(跟随系统)",
"setting_theme_light": "浅色",
"setting_theme_dark": "深色",
"setting_plugins": "插件",
"setting_plugins_description": "插件允许您进一步修改应用程序中可用选项,进一步修改Web服务器。<a href='https://simplewebserver.org/docs/plugins.html'>了解有关插件的更多信息。</a><br><br>要安装插件,请点击 \"添加插件\" 然后选择目录或ZIP文件。安装插件后,须为需要的服务专门启用它。<br><br>插件没有隔离,并且以与应用程序相同的权限运行。您只有在了解并信任开发人员的情况下才安装插件",
"add_plugin": "添加插件",
"plugin_choose_folder": "选择文件夹",
"plugin_choose_zip": "选择.zip文件",
"add_plugin_confirm": "要添加 \"[NAME]\" 插件吗?",
"add_plugin_confirm_description": "只有在您了解并信任开发人员的情况下才能安装此插件<br><br>插件没有隔离,并且以与应用程序相同的权限运行。",
"add_plugin_failed": "无法安装插件",
"add_plugin_invalid": "无效插件",
"add_plugin_failed_description": "在您选择的目录或ZIP文件中找不到有效的<code>plugin.json</code>文件。",
"remove_plugin": "移除插件",
"remove_plugin_confirm": "要移除 \"[NAME]\" 插件吗?",
"remove_plugin_confirm_description": "将清除此插件的所有服务器选项。如果您想在不重置服务器选项的情况下更新插件,只需添加插件的新版本,而不是先删除它。",
"edit_server": "编辑服务",
"add_server": "新建服务",
"create_server": "创建服务",
"option_path": "文件夹路径",
"option_path_description": "提供文件的目录。要使用隐藏的文件夹,请确保启用 <a href='https://simplewebserver.org/docs/options.html#serve-hidden-dot-files'>提供隐藏/.文件的访问(高级规则)</a>.",
"choose_folder": "选择文件夹",
"path_missing": "请选择文件夹路径",
"option_port": "端口",
"option_port_description": "介于1到65535之间的数字。此端口可访问本机Web服务器。 访问网站:<code>http://localhost:[PORT]</code>.",
"port_invalid": "输入一个介于1到65535之间的数字",
"port_in_use": "端口已被占用",
"option_localnetwork": "可通过局域网访问",
"option_localnetwork_description": "使局域网上的其他计算机可以通过LAN访问此Web服务器。使用主机的局域网IP地址和指定端口从另一台计算机访问它。LAN IP地址将显示在Web服务器URL下<br><br>启用此选项需要本地网络访问权限。 启用此选项时,您可能会看到防火墙权限提示,您必须允许访问,Web服务器才能通过LAN工作。",
"option_localnetwork_abbreviation": "LAN",
"section_basic_rules": "基本规则",
"option_showIndex": "自动显示index.html页面",
"option_showIndex_description": "如果未指定文件路径,则自动提供<code>index.html</code>(如果存在)。",
"option_spa": "单页重写 (for SPAs)",
"option_spa_description": "自动将不存在的所有路径重写为单个页面。参见 <a href='https://developer.mozilla.org/zh-CN/docs/Glossary/SPA'>单页应用</a>.",
"option_rewriteTo": "重写到 (for SPAs)",
"option_rewriteTo_description": "如果启用了单页重写选项,请指定要重写到的文件。参见 <a href='https://developer.mozilla.org/zh-CN/docs/Glossary/SPA'>单页应用</a>.",
"option_directoryListing": "显示文件列表",
"option_directoryListing_description": "显示指定目录中的文件列表,而不是404页面。",
"option_excludeDotHtml": "排除.html扩展名",
"option_excludeDotHtml_description": "从URL中排除.htm和.html扩展名。例如,访问<code>/example.html</code>将重定向到<code>/example</code>。如果路径上存在一个没有扩展名的文件,HTML文件仍然会被呈现。",
"section_advanced_rules": "高级规则",
"option_ipv6": "监听IPV6",
"option_ipv6_description": "监听IPV6而不是默认的IPV4。这会将Web服务器URL更改为IPV6而不是IPV4,但是当启用LAN时,某些IPV4地址仍将正常工作。",
"option_ipv6_abbreviation": "IPV6",
"option_cacheControl": "Cache-Control 通用消息头字段",
"option_cacheControl_description": "(可选)指定自定义<code>Cache-Control</code>通用消息头字段。<a href='https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Headers/Cache-Control'>了解更多有关 Cache-Control header.</a>",
"option_cors": "设置跨域请求头(CORS)",
"option_cors_description": "允许跨域请求。<br>设置 <code>Access-Control-Allow-Origin</code> header to <code>*</code>;<br><code>Access-Control-Allow-Methods</code> to <code>GET, POST, PUT, DELETE</code>;<br><code>Access-Control-Max-Age</code> to <code>120</code>.<br><a href='https://developer.mozilla.org/zh-CN/docs/Web/HTTP/CORS'>了解更多有关 Cross-Origin Resource Sharing.</a>",
"option_hiddenDotFiles": "提供隐藏/.文件的访问",
"option_hiddenDotFiles_description": "允许请求隐藏/.文件。这些文件或文件夹的名称以.字符开头。注意:要在文件列表中显示它们请开启 \"在文件列表中显示隐藏的/.文件\"",
"option_upload": "允许上传文件",
"option_upload_description": "允许PUT/POST请求。若包含隐藏/.文件,请确保开启\"提供隐藏/.文件的访问\"。",
"option_replace": "允许替换文件",
"option_replace_description": "如果启用了文件上传,允许替换已存在的文件。若包含隐藏/.文件,请确保开启\"提供隐藏/.文件的访问\"。",
"option_delete": "允许删除文件",
"option_delete_description": "允许DELETE请求。 若包含隐藏/.文件,请确保开启\"提供隐藏/.文件的访问\"。",
"option_staticDirectoryListing": "始终使用静态文件列表",
"option_staticDirectoryListing_description": "禁用文件列表页的JavaScript增强。",
"option_hiddenDotFilesDirectoryListing": "在文件列表中显示隐藏的/.文件",
"option_hiddenDotFilesDirectoryListing_description": "如果启用了提供隐藏/.文件的访问,并勾选此选项,则它们会显示在文件列表中,其中包括<code>.swshtaccess</code>文件。",
"option_precompression": "Serve precompressed .gz and .br files",
"option_precompression_description": "Check for and serve precompressed versions of files stored in the same directory with .gz or .br appended to the file extension. Supports Gzip and/or Brotli compression. For example, if a request is made for <code>example.txt</code>, the server will first check for <code>example.txt.gz</code> or <code>example.txt.br</code> and serve those if they exist and if the client indicates it supports that compression method via the <code>Accept-Encoding</code> header.",
"option_htaccess": "启用.swshttaccess配置文件",
"option_htaccess_description": "您可以使用<code>.swshtaccess</code>文件 设置每个目录的附加规则。 参见 <a href='https://simplewebserver.org/docs/swsaccess.html'>高级配置.swshtaccess文件</a>.<br><br>此功能是实验性的,可能会在将来的版本中移除。考虑使用 <a href='https://simplewebserver.org/docs/plugins.html'>插件</a> 取而代之.",
"section_error_pages": "错误页面",
"option_custom404": "自定义404页文件",
"option_custom404_description": "自定义404页面的文件路径。如果此值为空或指定的路径无效,将使用通用404页。",
"option_custom403": "自定义403页文件",
"option_custom403_description": "自定义403页面的文件路径。如果此值为空或指定的路径无效,将使用通用403页。",
"option_custom401": "自定义401页文件",
"option_custom401_description": "自定义401页面的文件。如果此值为空或指定的路径无效,将使用通用401页。",
"option_customErrorReplaceString": "自定义error path变量",
"option_customErrorReplaceString_description": "(可选)指定将在错误页面中查找并替换为当前路径的自定义字符串。 例如:您的自定义404页面内容中包含:<code>\"位于{{PATH}}的文件不存在\"</code>这样的字符串,并且您将此选项设置为<code>{{PATH}}</code>(默认),则当您的自定义页面被提供时,它将显示<code>位于/example.txt的文件不不存在</code>。",
"section_security": "安全",
"option_https": "使用 HTTPS",
"option_https_description": "使服务器只能通过安全连接(HTTPS)而不是HTTP访问。服务使用单个端口,因此您不能同时同时使用HTTP和HTTPS。 参见 <a href='https://simplewebserver.org/docs/https.html'>使用 HTTPS</a>.",
"option_https_abbreviation": "HTTPS",
"option_httpsCert": "SSL/TLS 证书",
"option_httpsCert_description": "可以选择重写此选项以使用自定义 HTTPS 证书。 参见 <a href='https://simplewebserver.org/docs/https.html'>使用 HTTPS</a>.",
"option_httpsKey": "SSL/TLS 私钥",
"option_httpsKey_description": "可以选择重写此选项以使用自定义 HTTPS 私钥。 参见 <a href='https://simplewebserver.org/docs/https.html'>使用 HTTPS</a>.",
"generate_crypto": "生成虚拟证书",
"generate_crypto_overwrite": "是否覆盖证书和私钥?",
"generate_crypto_overwrite_description": "证书和私钥已存在。此操作将覆盖它们。",
"option_httpAuth": "启用HTTP基本身份验证",
"option_httpAuth_description": "需要使用HTTP基本身份验证协议进行身份验证。在HTTP基本身份验证用户名和密码选项中设定用户名和密码。如果用户名或密码项缺失或无效,Web服务器将无法访问。",
"option_httpAuthUsername": "HTTP基本身份验证用户名",
"option_httpAuthUsername_description": "HTTP基本身份验证的用户名。不能包含冒号(<code>:</code>)字符。",
"httpAuthUsername_invalid": "用户名不能包含 <code>:</code>",
"httpAuthPassword_invalid": "Password cannot contain control characters",
"option_httpAuthPassword": "HTTP基本身份验证密码",
"option_httpAuthPassword_description": "HTTP基本身份验证的密码。以纯文本形式存储。",
"option_ipThrottling": "每个IP地址的最大连接数",
"option_ipThrottling_description": "限制每个IP地址的传入连接数。0表示无限制。",
"ipThrottling_invalid": "输入大于或等于0的数字",
"state_stopped": "已停止",
"state_starting": "启动中...",
"state_running": "运行中",
"state_error": "错误",
"update_available": "有 Simple Web Server 的新版本可用",
"enabled_switch": "启用",
"no_servers": "您尚未创建任何服务器",
"error_port_in_use": "使用中的端口",
"error_port_in_use_description": "Web服务器无法启动,因为端口[PORT]已被其他程序使用。",
"error_file_system": "文件系统错误",
"error_plugins": "启动插件时出错",
"error_generic": "错误",
"version": "版本",
"documentation": "文档",
"issues_and_suggestions": "疑问与建议",
"web_server_url": "Web server URL",
"ignore_update": "忽略此更新"
},
"ja": {
"settings": "設定",
"stop_and_quit": "停止・終了",
"new_server": "新規サーバー",
"delete_server": "サーバー削除",
"delete_server_confirm": "サーバーを削除しますか?",
"delete_server_confirm_description": "この操作は元に戻せません。",
"prompt_confirm": "確定",
"cancel": "キャンセル",
"save_changes": "変更を保存",
"get_started": "使用開始",
"prompt_done": "完了",
"back": "戻る",
"help": "ヘルプ",
"setting_language": "言語",
"help_us_translate": "翻訳を手伝ってください",
"setting_background": "バックグラウンド実行",
"setting_background_description": "有効にすると、このアプリを閉じてもサーバーは止まりません。バックグラウンド実行中のサーバーを止めるには「停止・終了」ボタンを押してください。",
"setting_tray": "システムトレイ/メニューバーにアイコンを表示",
"setting_tray_macos": "メニューバーにアイコンを表示",
"setting_tray_windows": "システムトレイにアイコンを表示",
"setting_tray_description": "有効にすると、Simple Web Server起動中はシステムトレイ/メニューバーにショートカットアイコンを表示します。",
"setting_updates": "更新を確認する",
"setting_updates_description": "アプリの更新がないか定期的に確認します。インストールは自動的には行いません。",
"setting_theme": "外観",
"setting_theme_description": "外観の変更(ライト/ダーク テーマ)。デフォルトはシステムのテーマに従います。",
"setting_theme_system": "自動 (システム)",
"setting_theme_light": "ライト",
"setting_theme_dark": "ダーク",
"setting_plugins": "プラグイン",
"setting_plugins_description": "プラグインは設定画面でできること以上の高度なカスタマイズを可能にします。 <a href='https://simplewebserver.org/docs/plugins.html'>プラグインの詳細について。</a><br><br>プラグインをインストールするには、「プラグイン追加」ボタンをクリックしてディレクトリまたはZIPファイルを選択してください。インストールしたプラグインは適用したいサーバーごとに個別に有効にする必要があります。<br><br>プラグインはサンドボックス化されておらず、本アプリと同じパーミッションで動作します。信頼できる開発者が提供するプラグイン以外はインストールしないでください。",
"add_plugin": "プラグイン追加",
"plugin_choose_folder": "フォルダ選択",
"plugin_choose_zip": ".zipファイル選択",
"add_plugin_confirm": "プラグイン \"[NAME]\" を追加しますか?",
"add_plugin_confirm_description": "あなたがよく知る、信頼できる開発者のプラグイン以外はインストールしないでください。<br><br>プラグインはサンドボックス化されておらず、本アプリと同じパーミッションで動作します。",
"add_plugin_failed": "プラグインのインストールに失敗しました",
"add_plugin_invalid": "無効なプラグイン",
"add_plugin_failed_description": "選択されたディレクトリまたはZIPファイルのなかに <code>plugin.json</code> が見つかりませんでした。",
"remove_plugin": "プラグイン削除",
"remove_plugin_confirm": "プラグイン \"[NAME]\" を削除しますか?",
"remove_plugin_confirm_description": "すべてのサーバーのこのプラグインに関する設定がクリアされます。All server Enabling this option requires local network access. You may see a firewall permission prompt when enabling this option, and you must allow access in order for the web server to work over LAN.options for this plugin will be cleared. If you want to update the plugin without resetting server options, just add the new version of the plugin instead of removing it first.",
"edit_server": "サーバー編集",
"add_server": "サーバー追加",
"create_server": "サーバー作成",
"option_path": "フォルダのパス",
"option_path_description": "サーバーで公開するファイルのあるディレクトリ。もしディレクトリが隠しフォルダの場合は、<a href='https://simplewebserver.org/docs/options.html#serve-hidden-dot-files'>隠しファイル/dotファイルを公開する</a>オプションを有効にしてください。",
"choose_folder": "フォルダ選択",
"path_missing": "フォルダのパスを選択してください",
"option_port": "ポート",
"option_port_description": "このローカルサーバーにアクセスできるポート番号(1~65535の整数)。 <code>http://localhost:[PORT]</code> でウエブサイトにアクセスできます。",
"port_invalid": "1~65535の整数を入れてください",
"port_in_use": "このポートは既に使用中です",
"option_localnetwork": "ローカルネットワークに公開",
"option_localnetwork_description": "このウェブサーバーをLAN内の他のPCからもアクセス可能にします。他のPCからは、このPCのローカルIPアドレスと指定したポート番号でアクセスしてください。ローカルIPアドレスはサーバーURLの下に表示されています。<br><br>このオプションを利用するには、ローカルネットワークアクセスが必要です。このオプションを有効にすると、ファイアウォールがアクセスの許可を求めるメッセージを表示する場合があります。ウェブサーバーをLAN経由で利用するには、アクセスを許可する必要があります。",
"option_localnetwork_abbreviation": "LAN",
"section_basic_rules": "基本設定",
"option_showIndex": "index.html自動表示",
"option_showIndex_description": "ファイルパスが指定されていない場合は、(もしあれば)自動的に<code>index.html</code>を表示します。",
"option_spa": "単一ページ書き換え(SPA用)",
"option_spa_description": "存在しないパスをすべて単一のページへのパスに自動的に書き換えます。<a href='https://developer.mozilla.org/ja/docs/Glossary/SPA'>Single Page Applications 参照</a>。",
"option_rewriteTo": "書き換え先(SPA用)",
"option_rewriteTo_description": "単一ページ書き換えを有効にした時、書き換え先のファイルを指定します。<a href='https://developer.mozilla.org/ja/docs/Glossary/SPA'>Single Page Applications 参照</a>。",
"option_directoryListing": "ディレクトリ内一覧表示",
"option_directoryListing_description": "ディレクトリを指定したとき404ページではなく、ディレクトリ内のファイル一覧を表示します。",
"option_excludeDotHtml": "拡張子 .html を除外",
"option_excludeDotHtml_description": "URLの拡張子 .htm および .html を除外します。例えば <code>/example.html</code> は <code>/example</code> にリダイレクトされます。もしそこに拡張子がない同名ファイルが存在してもHTMLファイルの方を表示します。",
"section_advanced_rules": "拡張設定",
"option_ipv6": "IPV6で待ち受け",
"option_ipv6_description": "デフォルトのIPV4ではなくIPV6で待ち受けます。ウェブサーバーのURLもIPV4ではなくIPV6用になりますが、LAN内では一部のIPV4アドレスも依然有効です。",
"option_ipv6_abbreviation": "IPV6",
"option_cacheControl": "Cache-Controlヘッダーの値",
"option_cacheControl_description": "HTTPヘッダーの<code>Cache-Control</code>の値をカスタマイズします。 <a href='https://developer.mozilla.org/ja/docs/Web/HTTP/Headers/Cache-Control'>Cache-Controlヘッダーの詳細について。</a>",
"option_cors": "CORSヘッダー付与",
"option_cors_description": "クロスオリジン要求を許可します。 <code>Access-Control-Allow-Origin</code>ヘッダーを<code>*</code>、 <code>Access-Control-Allow-Methods</code>ヘッダーを<code>GET, POST, PUT, DELETE</code>、 <code>Access-Control-Max-Age</code>ヘッダーを<code>120</code>に設定します。 <a href='https://developer.mozilla.org/ja/docs/Web/HTTP/CORS'>オリジン間リソース共有(CORS)の詳細について。</a>",
"option_hiddenDotFiles": "隠しファイル/dotファイルを公開する",
"option_hiddenDotFiles_description": "隠しファイル/dotファイルへのアクセスを許可します。 名前が<code>.</code>で始まるファイルまたはフォルダが該当します。",
"option_upload": "ファイルのアップロードを許可",
"option_upload_description": "PUT/POSTリクエストを許可します。隠しファイル/dotファイルが有効な場合は、それらも含まれます。",
"option_replace": "ファイルの置き換え許可",
"option_replace_description": "ファイルのアップロードが可能な時、ファイルが既に存在する場合に置き換えを可能にします。隠しファイル/dotファイルが有効な場合は、それらも含まれます。",
"option_delete": "ファイルの削除を許可",
"option_delete_description": "DELETEリクエストを許可します。隠しファイル/dotファイルが有効な場合は、それらも含まれます。",
"option_staticDirectoryListing": "常に静的なディレクトリ内一覧を使用",
"option_staticDirectoryListing_description": "ディレクトリ内一覧ページでのJavaScriptによる機能強化を無効化します。",
"option_hiddenDotFilesDirectoryListing": "ディレクトリ内一覧に隠しファイル/dotファイルを表示",
"option_hiddenDotFilesDirectoryListing_description": "隠しファイル/dotファイルが有効な場合、ディレクトリ内一覧ページでもそれらを表示します。この対象には<code>.swshtaccess</code>ファイルも含まれます。",
"option_precompression": "Serve precompressed .gz and .br files",
"option_precompression_description": "Check for and serve precompressed versions of files stored in the same directory with .gz or .br appended to the file extension. Supports Gzip and/or Brotli compression. For example, if a request is made for <code>example.txt</code>, the server will first check for <code>example.txt.gz</code> or <code>example.txt.br</code> and serve those if they exist and if the client indicates it supports that compression method via the <code>Accept-Encoding</code> header.",
"option_htaccess": ".swshtaccessファイル適用",
"option_htaccess_description": "<code>.swshtaccess</code>ファイルを使って、ディレクトリごとに追加のルールを設定できます。<a href='https://simplewebserver.org/docs/swsaccess.html'>.swshtaccessファイルを使用した拡張設定について</a>。<br><br>これは実験的機能であり、今後仕様変更される場合があります。代わりに<a href='https://simplewebserver.org/docs/plugins.html'>プラグイン</a>の利用もご検討ください。",
"section_error_pages": "エラーページ",
"option_custom404": "カスタム404ページのファイルパス",
"option_custom404_description": "独自の404ページ用ファイルのパスです。空の場合や無効なパスの場合は、汎用の404ページが表示されます。",
"option_custom403": "カスタム403ページのファイルパス",
"option_custom403_description": "独自の403ページ用ファイルのパスです。空の場合や無効なパスの場合は、汎用の403ページが表示されます。",
"option_custom401": "カスタム401ページのファイルパス",
"option_custom401_description": "独自の401ページ用ファイルのパスです。空の場合や無効なパスの場合は、汎用の401ページが表示されます。",
"option_customErrorReplaceString": "カスタムエラーパス変数",
"option_customErrorReplaceString_description": "カスタムエラーページ内に指定した文字列があれば、その部分を現在のパスに置き換えます。例えば、カスタム404ページに <code>ファイル {{PATH}} が見つかりません</code> という文があり、このオプションの値を <code>{{PATH}}</code> に設定していた場合、実際にエラーページが表示されるときは <code>ファイル /example.txt が見つかりません</code> のように書き換えられます。",
"section_security": "セキュリティ",
"option_https": "HTTPSを使用する",
"option_https_description": "サーバーへのアクセスにhttpではなくセキュア通信(https)を使用します。同一のポートを使うため、httpとhttpsを同時には使用できません。<a href='https://simplewebserver.org/docs/https.html'>HTTPSの使用について</a>。",
"option_https_abbreviation": "HTTPS",
"option_httpsCert": "SSL/TLS証明書",
"option_httpsCert_description": "必要に応じて、指定したHTTPS証明書の使用を強制できます。<a href='https://simplewebserver.org/docs/https.html'>HTTPSの使用について</a>。",
"option_httpsKey": "SSL/TLSプライベートキー",
"option_httpsKey_description": "必要に応じて、指定したHTTPSプライベートキーの使用を強制できます。 <a href='https://simplewebserver.org/docs/https.html'>HTTPSの使用について</a>。",
"generate_crypto": "ダミー証明書生成",
"generate_crypto_overwrite": "証明書とプライベートキーを設定したものに置き換えますか?",
"generate_crypto_overwrite_description": "証明書とプライベートキーはすでに存在します。この操作によってそれらを置き換えます。",
"option_httpAuth": "HTTPベーシック認証の有効化",
"option_httpAuth_description": "HTTPベーシック認証プロトコルを使用した認証を要求します。 認証に使用する[ベーシック認証ユーザー名]と[ベーシック認証パスワード]を指定してください。ユーザー名またはパスワードが空、または無効な場合、ウェブサーバーにアクセスできなくなります。",
"option_httpAuthUsername": "ベーシック認証ユーザー名",
"option_httpAuthUsername_description": "ベーシック認証のユーザー名。<code>:</code>を含んでいてはいけません。",
"httpAuthUsername_invalid": "ユーザー名に<code>:</code>を含めることはできません。",
"httpAuthPassword_invalid": "Password cannot contain control characters",
"option_httpAuthPassword": "ベーシック認証パスワード",
"option_httpAuthPassword_description": "ベーシック認証のパスワード。平文で保存されます。",
"option_ipThrottling": "IPアドレスごとの最大接続数",
"option_ipThrottling_description": "IPアドレスごとのサーバー接続数を制限できます。0 を指定すると接続数は無制限になります。",
"ipThrottling_invalid": "0 より大きい数字を入れてください",
"state_stopped": "停止中",
"state_starting": "起動中...",
"state_running": "稼働中",
"state_error": "エラー",
"update_available": "Simple Web Serverの新しいバージョンが利用可能です",
"enabled_switch": "有効",
"no_servers": "まだサーバーが作成されていません",
"error_port_in_use": "ポートが使用中です",
"error_port_in_use_description": "ポート [PORT] が既にほかのプログラムに使用されているため、ウェブサーバーを開始できませんでした。",
"error_file_system": "ファイルシステムエラー",
"error_plugins": "プラグイン開始エラー",
"error_generic": "エラー",
"version": "バージョン",
"documentation": "ドキュメント",
"issues_and_suggestions": "問題の報告や提案",
"web_server_url": "ウェブサーバーURL",
"ignore_update": "更新を無視する"
}
}