-
-
Notifications
You must be signed in to change notification settings - Fork 405
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
Polish context menu - pixelorama.nsi #972
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
; Helper variables so that we don't change 20 instances of the version for every update | ||
|
||
!define APPNAME "Pixelorama" | ||
!define APPVERSION "v0.11.2" | ||
!define APPVERSION "v0.11.3" | ||
!define COMPANYNAME "Orama Interactive" | ||
|
||
|
||
|
@@ -81,7 +81,7 @@ | |
|
||
; Multilingual support | ||
|
||
!insertmacro MUI_LANGUAGE "English" | ||
!insertmacro MUI_LANGUAGE "Polski" | ||
;@INSERT_TRANSLATIONS@ | ||
|
||
|
||
|
@@ -152,7 +152,7 @@ | |
WriteRegStr HKCR "Pixelorama project\DefaultIcon" "" "$INSTDIR\pxo.ico" | ||
|
||
WriteRegStr HKCR "Pixelorama project\shell\open\command" "" '$INSTDIR\${APPNAME}.exe "%1"' | ||
WriteRegStr HKCR "Pixelorama project\shell\edit" "" "Edit project in ${APPNAME}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made a mistake, I could have added it immediately as a new file and added PR. Sorry, I'm still learning Github. I sent the correct (I hope) PR. |
||
WriteRegStr HKCR "Pixelorama project\shell\edit" "" "Edytuj projekt w ${APPNAME}" | ||
WriteRegStr HKCR "Pixelorama project\shell\edit\command" "" '$INSTDIR\${APPNAME}.exe "%1"' | ||
SectionEnd | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change looks incorrect to me, it seems to be replacing English with Polish rather than adding it as a new translation. I'm not entirely familiar with how .nsi files work so I'm not sure what the correct solution is here.