Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)RainerHHMay 3, 2020 at 12:50 PM#FILE stmt & LangStringHow can I install a file depending on the language? i.e.: LangString ReadMeStrg ${LANG_ENGLISH} "Readme.pdf" LangString ReadMeStrg ${LANG_German} "Liesmich.pdf" File $(ReadMeStrg) gives a error.
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)RainerHHMay 3, 2020 at 1:14 PM#so it works: StrCmp $LANGUAGE ${LANG_ENGLISH} 0 notEnglish File "Readme.pdf" goto end notEnglish: File "Liesmich.pdf" end: