File tree Expand file tree Collapse file tree 6 files changed +20
-8
lines changed Expand file tree Collapse file tree 6 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -223,9 +223,9 @@ <h5>sel.meta</h5>
223
223
</ section >
224
224
< section id ="sel.lnk " class ="my-5 ">
225
225
< h5 > sel.lnk</ h5 >
226
- < p > Return a path from the shortcut</ p >
226
+ < p > Return the target file/dir path from the selected shortcut</ p >
227
227
< p > Syntax</ p >
228
- < code > sel.lnk(path) </ code >
228
+ < code > sel.lnk</ code >
229
229
</ section >
230
230
< section id ="sel.lnk.type " class ="my-5 ">
231
231
< h5 > sel.lnk.type</ h5 >
Original file line number Diff line number Diff line change 2
2
{
3
3
menu (separator=" after" title=title.copy_path image=icon.copy_path )
4
4
{
5
- item (where=sel.count > 1 title=' Copy (@sel.count) items selected ' cmd=command.copy (sel (false , " \n " )))
5
+ item (where=sel.count > 1 title=loc. copy_multiple_paths cmd=command.copy (sel (false , " \n " )))
6
6
item (mode=" single" title=@sel.path tip=sel.path cmd=command.copy (sel.path ))
7
- item (mode=" single" type=' file' separator=" before" find= ' .lnk' title=' open file location ' )
7
+ item (mode=" single" type=' file' separator=" before" where= length (sel .lnk )> 0 title=sel. lnk cmd=command. copy (sel. lnk ) )
8
8
separator
9
9
item (mode=" single" where=@sel.parent .len >3 title=sel.parent cmd=@command.copy (sel.parent ))
10
10
separator
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ windows_notepad="Windows notepad"
14
14
15
15
// file-manage.nss
16
16
file_manage=" File manage"
17
+ copy_multiple_paths=' Copy (@sel.count) items selected'
17
18
all=" All"
18
19
invert=" Invert"
19
20
none=" None"
@@ -73,6 +74,7 @@ apps="Apps"
73
74
paint=" Paint"
74
75
edge=" Edge"
75
76
calculator=" Calculator"
77
+ windows=" windows"
76
78
cascade_windows=" Cascade windows"
77
79
Show_windows_stacked=" Show windows stacked"
78
80
Show_windows_side_by_side=" Show windows side by side"
Original file line number Diff line number Diff line change 1
1
/*
2
2
Simplified Chinese
3
3
by: github.com/JohnsonRan
4
+ github.com/XY0797
4
5
*/
5
6
7
+ xxx=" 欢迎用中文"
6
8
// shell.nss
7
9
pin_unpin=" 固定/取消固定"
8
10
@@ -13,6 +15,7 @@ windows_notepad="Windows 记事本"
13
15
14
16
// file-manage.nss
15
17
file_manage=" 文件管理"
18
+ copy_multiple_paths=' 复制选中的 (@sel.count) 个项目'
16
19
all=" 全选"
17
20
invert=" 反选"
18
21
none=" 全不选"
@@ -35,7 +38,7 @@ accessed="访问时间"
35
38
new_folder=" 新建文件夹"
36
39
new_file=" 新建文件"
37
40
datetime=" 当前时间"
38
- guid=" GUID "
41
+ guid=" Guid "
39
42
40
43
// goto.nss
41
44
folder=" 文件夹"
@@ -66,6 +69,7 @@ ethernet="以太网"
66
69
wifi=" WLAN"
67
70
connections=" 网络连接"
68
71
72
+
69
73
// taskbar.nss
70
74
apps=" 应用"
71
75
paint=" 画图"
Original file line number Diff line number Diff line change 10
10
11
11
// localization
12
12
$loc_path=' imports\l ang\'
13
- import lang if(path.exists(loc_path + sys.lang + ".nss"),
14
- loc_path + sys.lang + ".nss",
15
- loc_path + "\\ en.nss")
13
+ import lang loc_path + "en.nss"
14
+ import lang if(path.exists(loc_path + sys.lang + ".nss"),
15
+ loc_path + sys.lang + ".nss",
16
+ loc_path + "en.nss")
16
17
17
18
// or import lang ' imports/lang/en.nss'
18
19
Original file line number Diff line number Diff line change 78
78
<Component Id =' LANG' Guid =' {FF987BEA-6195-4C05-8523-00936A1BD092}' NeverOverwrite =' yes' >
79
79
<File Id =' en.nss' Source =' $(var.bin)\imports\lang\en.nss' />
80
80
<File Id =' ar.nss' Source =' $(var.bin)\imports\lang\ar.nss' />
81
+ <File Id =' de_DE.nss' Source =' $(var.bin)\imports\lang\de-DE.nss' />
82
+ <File Id =' ko.nss' Source =' $(var.bin)\imports\lang\ko.nss' />
83
+ <File Id =' no.nss' Source =' $(var.bin)\imports\lang\no.nss' />
84
+ <File Id =' pt_BR.nss' Source =' $(var.bin)\imports\lang\pt-BR.nss' />
85
+ <File Id =' zh_CN.nss' Source =' $(var.bin)\imports\lang\zh-CN.nss' />
81
86
</Component >
82
87
</Directory >
83
88
</Directory >
You can’t perform that action at this time.
0 commit comments