-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
130 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
*.sub text working-tree-encoding=cp852 | ||
*.sub text working-tree-encoding=cp850 | ||
.gitattributes export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: perform-release | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
permissions: | ||
contents: read | ||
|
||
|
||
# Check that pushed tag points to latest master commit, then build release and create GitHub release alongside. | ||
jobs: | ||
check-tag-latest: | ||
name: Compare tag with master | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tag_hash: ${{ github.sha }} | ||
master_hash: ${{ steps.master-commit-hash.outputs.master_hash }} | ||
permissions: | ||
contents: read | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: master | ||
sparse-checkout: . | ||
|
||
- name: Get latest master commit hash | ||
id: master-commit-hash | ||
run: | | ||
hash=$(git log -n1 --format=format:"%H") | ||
echo "master_hash=$hash" >> "$GITHUB_OUTPUT" | ||
gh-release: | ||
needs: [check-tag-latest] | ||
name: Create GitHub release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Set tag name to env | ||
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
|
||
- name: Push GitHub release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
generateReleaseNotes: true | ||
skipIfReleaseExists: true | ||
tag: ${{ env.RELEASE_VERSION }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
######################## | ||
#SS2 Untertitel Deutsch# | ||
######################## | ||
|
||
Diese Mod fügt System Shock 2 deutsche Untertitel hinzu. Die Untertitel stehen dabei sowohl für die offizielle deutsche Übersetzung als auch das Shock Community Project (https://www.systemshock.org/index.php?topic=7116.0) bereit. | ||
|
||
Das Timing der Untertitel entspricht der offiziellen deutschen Audioausgabe. | ||
|
||
|
||
Anwendung | ||
1. Patche deine SS2-Installation mit SS2Tool (https://www.systemshock.org/index.php?topic=4141.0). Dabei sollte die Option "Game Options" -> "Enable subtitle support" aktiviert sein. | ||
2. Aktiviere diese Mod im Mod-Manager (siehe https://pshjt.github.io/dmm/). | ||
|
||
|
||
Troubleshooting | ||
# Ich kann keine Untertitel sehen. | ||
--> Stelle sicher, dass die Mod aktiviert ist und Untertitel verfügbar sind. In der cam_ext.cfg sollte am Ende folgender Eintrag auftauchen: | ||
enable_subtitles | ||
; subtitles_hide_types movie+player+convo+bark+nonverbal | ||
subtitles_hide_types nonverbal | ||
subtitles_dim 20 80 86 | ||
subtitles_font_dir fonts\ | ||
subtitles_font_name mainaa | ||
subtitles_spacing 1 | ||
;subtitles_bg_color 0 0 0 0 | ||
subtitles_show_descr | ||
subtitles_max_dist_bark 50 | ||
subtitles_extra_time 800 | ||
|
||
# Ich möchte Untertitel vom Typ "X" entfernen. | ||
--> Ändere die Zeile beginnend mit "subtitles_hide_types" in cam_ext.cfg. Um z.B. Geräusche und Gegnerkommentare zu entfernen, würde die Zeile "subtitles_hide_types bark+nonverbal" lauten. Siehe auch die Dokumentation in docs\newdark\subtitles.txt. | ||
|
||
# Ich habe ein ungeklärts Problem - Hilfe! | ||
--> Support gibt es auf SystemShock.org: https://www.systemshock.org/index.php?topic=8395 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 pshjt | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
## About | ||
This mod adds German subtitles to System Shock 2 based on the official German translation and audio. | ||
|
||
See the [official thread](https://www.systemshock.org/index.php?topic=8395.0 "German subtitles@SystemShock.org") for more information. | ||
See the [official thread](https://www.systemshock.org/index.php?topic=8395.0 "SS2 Untertitel Deutsch@SystemShock.org") for more information. | ||
|
||
## Installation | ||
Use the [SS2Tool](https://www.systemshock.org/index.php?topic=4141.0) with the "Enable subtitles" option and run SS2BMM. Extract the release archive to the DMM folder. | ||
For subtitle development, refer to the official newdark documentation that ships with every modern SS2 install in `docs/newdark/subtitles.txt` | ||
|
||
Refer to the Newdark documentation for an in-depth explanation about subtitle support in Dark engine games. | ||
## Contribute | ||
You want to improve the translation or otherwise help with development? Great! Contributions are always welcome. | ||
Create your own branch, use a rebase workflow, and open a pull request once you're good to go. | ||
|
||
## License | ||
SS2 Untertitel Deutsch is licensed under the MIT License. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters