blob: 9e92f7e9920576b36aeb4c9874f8fee582eb43e3 (
plain) (
blame)
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
|
[en]
io_error_name = "IO Error: "
not_found = "not found: %{info}"
permission_denied = "permission denied: %{info}"
connection_refused = "connection refused: %{info}"
connection_reset = "connection reset: %{info}"
host_unreachable = "host unreachable: %{info}"
network_unreachable = "network unreachable: %{info}"
connection_aborted = "connection aborted: %{info}"
not_connected = "not connected: %{info}"
addr_in_use = "address in use: %{info}"
addr_not_available = "address not available: %{info}"
network_down = "network down: %{info}"
broken_pipe = "broken pipe: %{info}"
already_exists = "already exists: %{info}"
would_block = "would block: %{info}"
not_a_directory = "not a directory: %{info}"
is_a_directory = "is a directory: %{info}"
directory_not_empty = "directory not empty: %{info}"
read_only_filesystem = "read-only filesystem: %{info}"
stale_network_file_handle = "stale network file handle: %{info}"
invalid_input = "invalid input: %{info}"
invalid_data = "invalid data: %{info}"
timed_out = "timed out: %{info}"
write_zero = "write zero: %{info}"
storage_full = "storage full: %{info}"
not_seekable = "not seekable: %{info}"
quota_exceeded = "quota exceeded: %{info}"
file_too_large = "file too large: %{info}"
resource_busy = "resource busy: %{info}"
executable_file_busy = "executable file busy: %{info}"
deadlock = "deadlock: %{info}"
crosses_devices = "crosses devices: %{info}"
too_many_links = "too many links: %{info}"
invalid_filename = "invalid filename: %{info}"
argument_list_too_long = "argument list too long: %{info}"
interrupted = "interrupted: %{info}"
unsupported = "unsupported: %{info}"
unexpected_eof = "unexpected end of file: %{info}"
out_of_memory = "out of memory: %{info}"
other = "other error: %{info}"
[zh_CN]
io_error_name = "IO 错误: "
not_found = "未找到: %{info}"
permission_denied = "权限被拒绝: %{info}"
connection_refused = "连接被拒绝: %{info}"
connection_reset = "连接已重置: %{info}"
host_unreachable = "主机不可达: %{info}"
network_unreachable = "网络不可达: %{info}"
connection_aborted = "连接已中止: %{info}"
not_connected = "未连接: %{info}"
addr_in_use = "地址已在使用中: %{info}"
addr_not_available = "地址不可用: %{info}"
network_down = "网络已断开: %{info}"
broken_pipe = "管道破裂: %{info}"
already_exists = "对象已存在: %{info}"
would_block = "操作会阻塞,无法立即完成: %{info}"
not_a_directory = "路径不是一个目录: %{info}"
is_a_directory = "路径是一个目录: %{info}"
directory_not_empty = "目录非空,无法删除: %{info}"
read_only_filesystem = "文件系统为只读: %{info}"
stale_network_file_handle = "网络文件句柄已过期: %{info}"
invalid_input = "输入无效: %{info}"
invalid_data = "数据无效: %{info}"
timed_out = "操作超时: %{info}"
write_zero = "写入了零字节: %{info}"
storage_full = "存储空间已满: %{info}"
not_seekable = "不可定位: %{info}"
quota_exceeded = "超出配额限制: %{info}"
file_too_large = "文件过大,无法处理: %{info}"
resource_busy = "资源正忙,请稍后重试: %{info}"
executable_file_busy = "可执行文件忙,无法访问: %{info}"
deadlock = "发生死锁: %{info}"
crosses_devices = "跨设备操作: %{info}"
too_many_links = "链接数量过多: %{info}"
invalid_filename = "文件名无效: %{info}"
argument_list_too_long = "参数列表过长: %{info}"
interrupted = "操作被中断: %{info}"
unsupported = "不支持此操作: %{info}"
unexpected_eof = "意外地遇到了文件结尾: %{info}"
out_of_memory = "内存不足: %{info}"
other = "发生了其他错误: %{info}"
|