Skip to content

Commit

Permalink
fix: added missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnsonRan committed Dec 30, 2024
1 parent 96a3fd5 commit 36a6698
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bin/imports/file-manage.nss
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

menu(separator="after" image=\uE290 title=title.select)
{
item(title="All" image=icon.select_all cmd=command.select_all)
item(title="Invert" image=icon.invert_selection cmd=command.invert_selection)
item(title="None" image=icon.select_none cmd=command.select_none)
item(title=loc.all image=icon.select_all cmd=command.select_all)
item(title=loc.invert image=icon.invert_selection cmd=command.invert_selection)
item(title=loc.none image=icon.select_none cmd=command.select_none)
}

item(type='file|dir|back.dir|drive' title=loc.take_ownership image=[\uE194,#f00] admin
Expand Down
3 changes: 3 additions & 0 deletions src/bin/imports/lang/en.nss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ windows_notepad="Windows notepad"

// file-manage.nss
file_manage="File manage"
loc.all="All"
loc.invert="Invert"
loc.none="None"
change_extension="Change extension"
take_ownership="Take ownership"
show_hide="Show/Hide"
Expand Down
3 changes: 3 additions & 0 deletions src/bin/imports/lang/zh-CN.nss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ windows_notepad="Windows 记事本"

// file-manage.nss
file_manage="文件管理"
loc.all="全选"
loc.invert="反选"
loc.none=""
change_extension="更改扩展名"
take_ownership="更改所有权"
show_hide="显示/隐藏"
Expand Down

0 comments on commit 36a6698

Please sign in to comment.