Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing language SerbianLatin #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions Include/NsisMultiUserLang.nsh
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/*

NsisMultiUser.nsh - NSIS plugin that allows "per-user" (no admin required) and "per-machine" (asks elevation *only when necessary*) installations

Full source code, documentation and demos at https://github.com/Drizin/NsisMultiUser/

Copyright 2016-2019 Ricardo Drizin, Alex Mitev

File : Include\NsisMultiUserLang.nsh
Version: 2019-11-11

*/

!ifdef LANG_ENGLISH
LangString MULTIUSER_PAGE_TITLE ${LANG_ENGLISH} "Choose Users"
LangString MULTIUSER_INSTALL_PAGE_SUBTITLE ${LANG_ENGLISH} "Choose for which users to install $(^NameDA)."
Expand Down Expand Up @@ -1580,8 +1593,10 @@
LangString MULTIUSER_UNINSTALL_PAGE_SUBTITLE ${LANG_SERBIANLATIN} "Choose for which users to remove $(^NameDA)."
LangString MULTIUSER_INSTALL_HEADER ${LANG_SERBIANLATIN} "Select whether to install $(^NameDA) for all users or for current user."
LangString MULTIUSER_UNINSTALL_HEADER ${LANG_SERBIANLATIN} "$(^NameDA) is installed both for all users and for current user.$\r$\nSelect which installation to remove."
LangString MULTIUSER_ALL_USERS ${LANG_SERBIANLATIN} "For anyone who uses this computer (all users)"
LangString MULTIUSER_CURRENT_USER ${LANG_SERBIANLATIN} "For me ({USER})"
LangString MULTIUSER_ALL_USERS ${LANG_SERBIANLATIN} "For &anyone who uses this computer (all users)"
LangString MULTIUSER_CURRENT_USER ${LANG_SERBIANLATIN} "For &me ({USER})"
LangString MULTIUSER_ALL_USERS_UMUI ${LANG_SERBIANLATIN} "For anyone who uses this computer (all users)"
LangString MULTIUSER_CURRENT_USER_UMUI ${LANG_SERBIANLATIN} "For me ({USER})"
LangString MULTIUSER_NEW_INSTALLATION_ALL_USERS ${LANG_SERBIANLATIN} "Fresh install for all users."
LangString MULTIUSER_NEW_INSTALLATION_CURRENT_USER ${LANG_SERBIANLATIN} "Fresh install for current user."
LangString MULTIUSER_INSTALLED_ALL_USERS ${LANG_SERBIANLATIN} "Version {VERSION} is installed for all users in $\"{FOLDER}$\"."
Expand Down